:root {
    --ink: #1a1715;
    --ink-soft: #24201d;
    --cream: #f3eee5;
    --paper: #e8dfd2;
    --paper-soft: #f7f2ea;
    --wine: #983f37;
    --wine-dark: #733029;
    --brass: #c79b59;
    --olive: #666c58;
    --line: rgba(26, 23, 21, 0.14);
    --light-line: rgba(243, 238, 229, 0.18);
    --display: "Cormorant Garamond", Georgia, serif;
    --sans: "Manrope", Arial, sans-serif;
    --page-x: clamp(20px, 5vw, 76px);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 86px;
}

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    background: var(--cream);
    color: var(--ink);
    font-family: var(--sans);
    -webkit-font-smoothing: antialiased;
}

body.modal-open {
    overflow: hidden;
}

::selection {
    background: var(--wine);
    color: #fff;
}

a,
button,
input,
select,
textarea {
    font: inherit;
}

a,
button {
    -webkit-tap-highlight-color: transparent;
}

img {
    display: block;
    max-width: 100%;
}

/* =============================
   HEADER — floating navigation islands
============================= */
.header {
    position: fixed;
    inset: 16px 0 auto;
    z-index: 1000;
    padding: 0 var(--page-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    color: var(--cream);
    pointer-events: none;
}

.brand,
.header nav {
    pointer-events: auto;
    background: rgba(19, 16, 14, .88);
    border: 1px solid rgba(243, 238, 229, .13);
    box-shadow: 0 12px 38px rgba(0, 0, 0, .18);
    -webkit-backdrop-filter: blur(18px) saturate(125%);
    backdrop-filter: blur(18px) saturate(125%);
    transition: background .3s ease, border-color .3s ease, transform .3s ease, box-shadow .3s ease;
}

.header.is-scrolled .brand,
.header.is-scrolled nav {
    background: rgba(19, 16, 14, .96);
    border-color: rgba(243, 238, 229, .2);
    box-shadow: 0 16px 46px rgba(0, 0, 0, .28);
    transform: translateY(-3px);
}

.brand {
    min-height: 56px;
    padding: 11px 15px 10px;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 3px;
    color: inherit;
    text-decoration: none;
    border-radius: 16px;
}

.logo {
    font-family: var(--display);
    font-size: 24px;
    font-weight: 600;
    line-height: .9;
    letter-spacing: -.02em;
}

.sublogo {
    color: rgba(243, 238, 229, .56);
    font-size: 8px;
    font-weight: 600;
    letter-spacing: .19em;
    text-transform: uppercase;
}

.header nav {
    min-height: 56px;
    padding: 6px;
    display: flex;
    align-items: center;
    gap: 2px;
    border-radius: 16px;
}

.header nav a {
    position: relative;
    padding: 11px 13px;
    border-radius: 10px;
    color: rgba(243, 238, 229, .68);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .075em;
    text-decoration: none;
    text-transform: uppercase;
    transition: color .2s ease, background .2s ease, transform .2s ease;
}

.header nav a:not(.booking-link):hover,
.header nav a:not(.booking-link).is-active {
    color: var(--cream);
    background: rgba(243, 238, 229, .08);
}

.header nav a:not(.booking-link).is-active::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 5px;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--brass);
    transform: translateX(-50%);
}

.header nav .booking-link {
    margin-left: 4px;
    padding: 11px 15px;
    background: var(--wine);
    border: 1px solid var(--wine);
    color: var(--cream);
}

.header nav .booking-link:hover {
    background: var(--cream);
    border-color: var(--cream);
    color: var(--ink);
    transform: translateY(-1px);
}

/* =============================
   HERO — no generated image
============================= */
.main {
    --mx: 0px;
    --my: 0px;
    --scroll-y: 0px;
    position: relative;
    min-height: 100svh;
    padding: 132px var(--page-x) 48px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        radial-gradient(circle at 72% 34%, rgba(152, 63, 55, .16), transparent 28%),
        radial-gradient(circle at 12% 88%, rgba(199, 155, 89, .08), transparent 24%),
        #171311;
    color: var(--cream);
}

.main::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .26;
    background-image:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,.9), transparent 90%);
}

.main::after {
    content: "";
    position: absolute;
    width: min(52vw, 760px);
    aspect-ratio: 1;
    right: -8vw;
    top: 50%;
    border: 1px solid rgba(243, 238, 229, .09);
    border-radius: 50%;
    transform: translate(calc(var(--mx) * .35), calc(-50% + var(--my) * .35 + var(--scroll-y)));
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: min(1120px, 100%);
    margin: 0 auto;
}

.hero-meta {
    position: absolute;
    z-index: 4;
    top: 112px;
    color: rgba(243, 238, 229, .52);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.hero-meta-left {
    left: var(--page-x);
}

.hero-meta-right {
    right: var(--page-x);
    display: flex;
    align-items: center;
    gap: 9px;
}

.hero-status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #8da36e;
    box-shadow: 0 0 0 4px rgba(141, 163, 110, .1);
}

.text1 {
    margin: 0 0 22px;
    color: var(--brass);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .28em;
    text-transform: uppercase;
}

.text2 {
    position: relative;
    width: min-content;
    margin: 0;
    font-family: var(--display);
    font-weight: 500;
    line-height: .72;
    letter-spacing: -.055em;
    text-transform: uppercase;
}

.hero-title-solid,
.hero-title-outline {
    display: block;
    white-space: nowrap;
}

.hero-title-solid {
    font-size: clamp(82px, 12.5vw, 190px);
    color: var(--cream);
}

.hero-title-outline {
    margin-left: clamp(42px, 8vw, 135px);
    font-size: clamp(84px, 13.6vw, 204px);
    color: transparent;
    -webkit-text-stroke: 1.25px rgba(243, 238, 229, .78);
    text-stroke: 1.25px rgba(243, 238, 229, .78);
}

.hero-bottom {
    width: min(680px, 72%);
    margin: 50px 0 0 clamp(110px, 22vw, 330px);
    display: block;
}

.text3 {
    margin: 0;
    color: rgba(243, 238, 229, .68);
    font-family: var(--display);
    font-size: clamp(21px, 2vw, 30px);
    font-style: italic;
    line-height: 1.25;
}

.main-buttons {
    width: fit-content;
    margin-top: 28px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.button1,
.button2 {
    min-width: 206px;
    padding: 15px 18px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: var(--cream);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .14em;
    text-decoration: none;
    text-transform: uppercase;
    border: 1px solid rgba(243, 238, 229, .25);
    transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}

.button1::after,
.button2::after {
    content: "↗";
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0;
}

.button1 {
    background: var(--wine);
    border-color: var(--wine);
}

.button2 {
    color: rgba(243, 238, 229, .72);
}

.button1:hover,
.button2:hover {
    transform: translateX(6px);
}

.button1:hover {
    background: var(--cream);
    border-color: var(--cream);
    color: var(--ink);
}

.button2:hover {
    color: var(--cream);
    border-color: rgba(243, 238, 229, .58);
}

.hero-orbit {
    position: absolute;
    z-index: 1;
    right: clamp(-180px, -5vw, -40px);
    top: 50%;
    width: min(48vw, 690px);
    aspect-ratio: 1;
    transform: translate(calc(var(--mx) * .75), calc(-50% + var(--my) * .75 + var(--scroll-y)));
    pointer-events: none;
}

.hero-orbit-ring,
.hero-orbit-ring::before,
.hero-orbit-ring::after {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    content: "";
}

.hero-orbit-ring {
    border: 1px solid rgba(199, 155, 89, .24);
    animation: slowSpin 36s linear infinite;
}

.hero-orbit-ring::before {
    inset: 10%;
    border: 1px solid rgba(243, 238, 229, .08);
}

.hero-orbit-ring::after {
    inset: 24%;
    border: 1px solid rgba(152, 63, 55, .36);
}

.hero-orbit-mark {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--brass);
}

.hero-orbit-mark:nth-child(2) { left: 13%; top: 22%; }
.hero-orbit-mark:nth-child(3) { right: 10%; bottom: 32%; background: var(--wine); }

.hero-orbit-copy {
    position: absolute;
    right: 14%;
    bottom: 10%;
    color: rgba(243, 238, 229, .38);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    transform: rotate(-90deg);
    transform-origin: right bottom;
}

.hero-dish-preview {
    position: absolute;
    z-index: 5;
    right: clamp(80px, 10vw, 170px);
    top: 50%;
    width: clamp(170px, 18vw, 260px);
    padding: 9px;
    background: rgba(243, 238, 229, .95);
    color: var(--ink);
    box-shadow: 0 22px 80px rgba(0,0,0,.28);
    opacity: 0;
    transform: translate(calc(28px + var(--mx) * 1.2), calc(-25% + var(--my) * 1.2)) rotate(3deg) scale(.96);
    pointer-events: none;
    transition: opacity .25s ease, transform .35s cubic-bezier(.2,.8,.2,1);
}

.main.show-preview .hero-dish-preview {
    opacity: 1;
    transform: translate(calc(var(--mx) * 1.2), calc(-25% + var(--my) * 1.2)) rotate(1deg) scale(1);
}

.hero-dish-preview img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.hero-dish-preview span {
    display: block;
    padding: 8px 3px 2px;
    font-family: var(--display);
    font-size: 18px;
    font-style: italic;
}

.hero-scroll {
    position: absolute;
    z-index: 4;
    left: var(--page-x);
    bottom: 28px;
    display: flex;
    align-items: center;
    gap: 9px;
    color: rgba(243, 238, 229, .38);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .18em;
}

.hero-scroll span {
    animation: scrollHint 1.8s ease-in-out infinite;
}

.hero-reveal {
    opacity: 0;
    transform: translateY(24px);
    animation: heroIn .8s cubic-bezier(.2,.8,.2,1) forwards;
}

.hero-delay-1 { animation-delay: .08s; }
.hero-delay-2 { animation-delay: .18s; }
.hero-delay-3 { animation-delay: .3s; }

@keyframes heroIn { to { opacity: 1; transform: translateY(0); } }
@keyframes slowSpin { to { transform: rotate(360deg); } }
@keyframes scrollHint { 50% { transform: translateY(5px); } }

/* =============================
   TICKER
============================= */
.ticker {
    overflow: hidden;
    background: var(--wine);
    color: var(--cream);
    border-block: 1px solid rgba(255,255,255,.1);
}

.ticker-track {
    width: max-content;
    display: flex;
    align-items: center;
    gap: 26px;
    padding: 13px 0;
    animation: ticker 26s linear infinite;
}

.ticker span {
    display: inline-flex;
    align-items: center;
    gap: 26px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    white-space: nowrap;
}

.ticker span::after {
    content: "✦";
    color: var(--brass);
}

@keyframes ticker { to { transform: translateX(-50%); } }

/* =============================
   SHARED SECTION MOTION
============================= */
.reveal {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity .7s ease, transform .7s cubic-bezier(.2,.8,.2,1);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* =============================
   ABOUT
============================= */
.about {
    position: relative;
    padding: clamp(96px, 11vw, 170px) var(--page-x);
    background: var(--paper-soft);
}

.about-container {
    width: min(1240px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, .78fr);
    gap: clamp(56px, 8vw, 124px);
    align-items: center;
}

.about-label,
.menu-label,
.text9,
.text11 {
    margin: 0 0 20px;
    color: var(--wine);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
}

.about-title,
.menu-title,
.text10,
.text12 {
    margin: 0;
    font-family: var(--display);
    font-size: clamp(50px, 5.7vw, 86px);
    font-weight: 500;
    line-height: .93;
    letter-spacing: -.045em;
}

.about-description {
    max-width: 670px;
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.about-description p {
    margin: 0;
    color: rgba(26,23,21,.67);
    font-size: 14px;
    line-height: 1.75;
}

.about-stats {
    margin-top: 54px;
    padding-top: 22px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line);
}

.about-stat {
    min-width: 0;
}

.about-stat h3 {
    margin: 0;
    font-family: var(--display);
    font-size: clamp(38px, 4vw, 58px);
    font-weight: 500;
    line-height: 1;
}

.about-stat p {
    margin: 7px 0 0;
    color: rgba(26,23,21,.48);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.about-image-wrap {
    position: relative;
    padding: 0 0 34px 34px;
}

.about-image-wrap::before {
    content: "LOCAL / SEASONAL / HONEST";
    position: absolute;
    z-index: 2;
    left: 0;
    bottom: 0;
    padding: 15px 18px;
    background: var(--ink);
    color: var(--cream);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .15em;
}

.about-image-wrap::after {
    content: "";
    position: absolute;
    inset: -22px 22px 22px -22px;
    border: 1px solid rgba(152,63,55,.22);
    pointer-events: none;
}

.about-image-wrap img {
    position: relative;
    z-index: 1;
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    filter: saturate(.86) contrast(1.03);
}

/* =============================
   MENU
============================= */
.menu {
    padding: clamp(96px, 10vw, 150px) var(--page-x);
    background: var(--cream);
}

.menu-container {
    width: min(1280px, 100%);
    margin: 0 auto;
}

.menu-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 40px;
}

.menu-filters {
    margin-top: 46px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.menu-filter {
    padding: 10px 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: transparent;
    color: rgba(26,23,21,.58);
    cursor: pointer;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.menu-filter:hover,
.menu-filter.active {
    border-color: var(--ink);
    background: var(--ink);
    color: var(--cream);
}

.position {
    margin-top: 52px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 54px 24px;
}

.menu-item {
    position: relative;
    min-width: 0;
    cursor: pointer;
    border-top: 1px solid var(--ink);
    transition: opacity .28s ease, transform .28s ease;
}

.menu-item.hidden {
    display: none;
}

.menu-item.is-entering {
    animation: menuIn .42s ease both;
}

@keyframes menuIn {
    from { opacity: 0; transform: translateY(14px) scale(.985); }
    to { opacity: 1; transform: none; }
}

.onefood,
.twofood,
.threefood,
.fourfood,
.fivefood,
.sixfood {
    margin-top: 12px;
    overflow: hidden;
    background: #d7cec1;
}

.onefood img,
.twofood img,
.threefood img,
.fourfood img,
.fivefood img,
.sixfood img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform .7s cubic-bezier(.2,.8,.2,1), filter .4s ease;
}

.menu-item:hover img {
    transform: scale(1.045);
    filter: saturate(1.04);
}

.onename,
.twoname,
.threename,
.fourname,
.fivename,
.sixname {
    width: calc(100% - 80px);
    margin: 18px 0 0;
    font-family: var(--display);
    font-size: 26px;
    font-weight: 600;
    line-height: 1.02;
}

.oneprice,
.twoprice,
.threeprice,
.fourprice,
.fiveprice,
.sixprice {
    position: absolute;
    top: calc((100% - 92px) * 0 + 0px);
    right: 0;
    margin: 18px 0 0;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .04em;
}

.onedescription,
.twodescription,
.threedescription,
.fourdescription,
.fivedescription,
.sixdescription {
    margin: 9px 0 0;
    padding-right: 30px;
    color: rgba(26,23,21,.52);
    font-size: 12px;
    line-height: 1.55;
}

.mark {
    width: max-content;
    margin: 13px 0 0;
    padding: 5px 8px;
    border: 1px solid rgba(102,108,88,.35);
    color: var(--olive);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.more {
    margin: 18px 0 0;
    color: var(--wine);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    transition: transform .2s ease;
}

.menu-item:hover .more {
    transform: translateX(6px);
}

/* =============================
   MODAL
============================= */
.dish-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    padding: 24px;
    display: grid;
    place-items: center;
    background: rgba(18,15,13,.78);
    backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease, visibility .25s ease;
}

.dish-modal.open {
    opacity: 1;
    visibility: visible;
}

.dish-modal-content {
    position: relative;
    width: min(880px, 100%);
    max-height: calc(100svh - 48px);
    overflow: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--paper-soft);
    box-shadow: 0 30px 100px rgba(0,0,0,.34);
    transform: translateY(18px) scale(.985);
    transition: transform .3s ease;
}

.dish-modal.open .dish-modal-content {
    transform: none;
}

.dish-modal-image {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
}

.dish-modal-body {
    padding: clamp(32px, 5vw, 64px);
    align-self: center;
}

.dish-modal-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--line);
}

.dish-modal-heading h3 {
    margin: 0;
    font-family: var(--display);
    font-size: 38px;
    font-weight: 600;
    line-height: .98;
}

.dish-modal-heading p {
    margin: 4px 0 0;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}

.dish-modal-description {
    margin: 26px 0 0;
    color: rgba(26,23,21,.68);
    font-size: 14px;
    line-height: 1.7;
}

.dish-modal-allergens {
    margin: 28px 0 0;
    color: rgba(26,23,21,.42);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.dish-modal-close {
    position: absolute;
    z-index: 2;
    top: 14px;
    right: 14px;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 50%;
    background: rgba(243,238,229,.92);
    color: var(--ink);
    cursor: pointer;
    font-size: 24px;
    line-height: 1;
}

/* =============================
   SPECIAL OFFER
============================= */
.special {
    position: relative;
    padding: clamp(88px, 10vw, 150px) var(--page-x);
    overflow: hidden;
    background: var(--ink);
    color: var(--cream);
}

.special::before {
    content: "49";
    position: absolute;
    right: -1vw;
    top: -15%;
    color: transparent;
    -webkit-text-stroke: 1px rgba(243,238,229,.07);
    font-family: var(--display);
    font-size: clamp(280px, 42vw, 650px);
    font-weight: 500;
    line-height: 1;
}

.offer {
    position: relative;
    z-index: 1;
    width: min(1180px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.25fr .8fr;
    grid-template-areas:
        "label price"
        "title price"
        "desc price"
        "button price";
    gap: 16px 60px;
}

.text6 {
    grid-area: label;
    margin: 0;
    color: var(--brass);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
}

.text7 {
    grid-area: title;
    margin: 6px 0 0;
    font-family: var(--display);
    font-size: clamp(62px, 8vw, 118px);
    font-weight: 500;
    line-height: .85;
    letter-spacing: -.05em;
}

.text8 {
    grid-area: desc;
    max-width: 560px;
    margin: 24px 0 0;
    color: rgba(243,238,229,.56);
    font-size: 14px;
    line-height: 1.7;
}

.price-block {
    grid-area: price;
    margin: 0;
    align-self: center;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.pricebig {
    font-family: var(--display);
    font-size: clamp(112px, 16vw, 230px);
    font-weight: 500;
    line-height: .8;
    letter-spacing: -.06em;
}

.pricesmall {
    margin: 14px 0 0 8px;
    color: rgba(243,238,229,.44);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.bron {
    grid-area: button;
    width: max-content;
    margin-top: 26px;
    padding: 14px 18px;
    border: 1px solid rgba(243,238,229,.32);
    color: var(--cream);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .15em;
    text-decoration: none;
    text-transform: uppercase;
    transition: background .2s ease, color .2s ease;
}

.bron:hover {
    background: var(--cream);
    color: var(--ink);
}

/* =============================
   REVIEWS
============================= */
.reviews {
    padding: clamp(96px, 10vw, 150px) var(--page-x);
    overflow: hidden;
    background: var(--paper);
}

.texts {
    width: min(1240px, 100%);
    margin: 0 auto;
}

.remark,
.remark2 {
    margin: 20px 0 0;
    color: rgba(26,23,21,.4);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .05em;
}

.reviews-toolbar {
    width: min(1240px, 100%);
    margin: 34px auto 0;
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}

.reviews-nav {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(26,23,21,.22);
    background: transparent;
    color: var(--ink);
    cursor: pointer;
    font-size: 18px;
    transition: background .2s ease, color .2s ease;
}

.reviews-nav:hover {
    background: var(--ink);
    color: var(--cream);
}

.reviews-list {
    width: min(1240px, 100%);
    margin: 14px auto 0;
    padding-bottom: 12px;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(360px, 47%);
    gap: 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: rgba(26,23,21,.28) transparent;
}

.review {
    min-height: 300px;
    padding: 34px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    scroll-snap-align: start;
    background: rgba(247,242,234,.7);
    border: 1px solid rgba(26,23,21,.1);
}

.stars {
    margin: 0;
    color: var(--wine);
    font-size: 12px;
    letter-spacing: .13em;
}

.review-text {
    margin: 38px 0;
    font-family: var(--display);
    font-size: clamp(28px, 2.5vw, 38px);
    font-style: italic;
    line-height: 1.05;
}

.review-bottom {
    padding-top: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid var(--line);
}

.review-name,
.review-date {
    margin: 0;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.review-date {
    color: rgba(26,23,21,.4);
}

/* =============================
   BOOKING
============================= */
.last {
    padding: clamp(96px, 10vw, 150px) var(--page-x);
    display: grid;
    grid-template-columns: minmax(0, .78fr) minmax(460px, 1fr);
    gap: clamp(60px, 9vw, 140px);
    align-items: start;
    background: var(--paper-soft);
}

.booking-copy {
    position: sticky;
    top: 110px;
}

.booking-copy .text12 {
    max-width: 510px;
}

.booking-form {
    width: 100%;
    display: grid;
    gap: 22px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-field {
    display: grid;
    gap: 9px;
}

.form-field label {
    color: rgba(26,23,21,.5);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .13em;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 15px 0;
    border: 0;
    border-bottom: 1px solid rgba(26,23,21,.24);
    border-radius: 0;
    outline: none;
    background: transparent;
    color: var(--ink);
    font-size: 14px;
    transition: border-color .2s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: var(--wine);
}

.form-field textarea {
    min-height: 94px;
    resize: vertical;
}

.booking-button {
    margin-top: 12px;
    padding: 17px 20px;
    border: 0;
    background: var(--ink);
    color: var(--cream);
    cursor: pointer;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    transition: background .2s ease, transform .2s ease;
}

.booking-button:hover {
    background: var(--wine);
    transform: translateY(-2px);
}

.form-error {
    min-height: 18px;
    margin: -4px 0 0;
    color: var(--wine);
    font-size: 11px;
}

.booking-form.hide {
    display: none;
}

.booking-success {
    display: none;
    min-height: 420px;
    padding: clamp(34px, 5vw, 64px);
    align-content: center;
    background: var(--ink);
    color: var(--cream);
}

.booking-success.show {
    display: grid;
}

.success-icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(243,238,229,.34);
    border-radius: 50%;
    color: var(--brass);
    font-size: 20px;
}

.success-title {
    margin: 30px 0 0;
    font-family: var(--display);
    font-size: 46px;
    font-weight: 500;
    line-height: .95;
}

.success-date {
    margin: 30px 0 0;
    font-size: 16px;
}

.success-guests,
.success-note {
    margin: 7px 0 0;
    color: rgba(243,238,229,.56);
    font-size: 12px;
}

.success-reset {
    width: max-content;
    margin-top: 34px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--brass);
    cursor: pointer;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .13em;
}

/* =============================
   FOOTER
============================= */
.footer {
    padding: 72px var(--page-x) 28px;
    background: #151210;
    color: var(--cream);
}

.footer-container {
    width: min(1240px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr .7fr;
    gap: 60px;
}

.footer-logo {
    margin: 0 0 18px;
    font-family: var(--display);
    font-size: 42px;
    font-weight: 500;
    line-height: .9;
}

.footer-column h4 {
    margin: 0 0 18px;
    color: var(--brass);
    font-size: 9px;
    letter-spacing: .16em;
}

.footer-column p,
.footer-nav a {
    margin: 6px 0;
    color: rgba(243,238,229,.5);
    font-size: 11px;
    line-height: 1.7;
    text-decoration: none;
}

.footer-nav {
    display: grid;
    gap: 3px;
}

.footer-nav a:hover {
    color: var(--cream);
}

.footer-bottom {
    width: min(1240px, 100%);
    margin: 58px auto 0;
    padding-top: 22px;
    border-top: 1px solid rgba(243,238,229,.1);
    color: rgba(243,238,229,.28);
    font-size: 9px;
    letter-spacing: .1em;
}

/* =============================
   RESPONSIVE
============================= */
@media (max-width: 1050px) {
    .header nav a:not(.booking-link) {
        display: none;
    }

    .hero-orbit {
        right: -26vw;
        width: 72vw;
    }

    .hero-dish-preview {
        right: 7vw;
    }

    .about-container {
        grid-template-columns: 1fr;
    }

    .about-right {
        width: min(620px, 80%);
        margin-left: auto;
    }

    .position {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .last {
        grid-template-columns: 1fr;
    }

    .booking-copy {
        position: static;
    }
}

@media (max-width: 760px) {
    :root {
        --page-x: 18px;
    }

    html {
        scroll-padding-top: 70px;
    }

    .header {
        inset: 10px 0 auto;
        padding: 0 12px;
        gap: 8px;
    }

    .header.is-scrolled .brand,
    .header.is-scrolled nav {
        transform: none;
    }

    .brand {
        min-height: 50px;
        padding: 10px 12px;
        border-radius: 14px;
    }

    .logo {
        font-size: 20px;
    }

    .sublogo {
        display: none;
    }

    .header nav {
        min-height: 50px;
        padding: 5px;
        border-radius: 14px;
    }

    .header nav .booking-link {
        margin-left: 0;
        padding: 9px 11px;
        font-size: 8px;
        white-space: nowrap;
    }

    .main {
        min-height: 100svh;
        padding: 108px 18px 50px;
        align-items: flex-start;
    }

    .main::after {
        width: 112vw;
        right: -58vw;
        top: 56%;
    }

    .hero-meta {
        top: 82px;
        font-size: 8px;
    }

    .hero-meta-left {
        left: 18px;
    }

    .hero-meta-right {
        right: 18px;
    }

    .hero-meta-left {
        display: none;
    }

    .hero-orbit {
        right: -62vw;
        top: 62%;
        width: 125vw;
        opacity: .75;
    }

    .text1 {
        margin-top: 28px;
        font-size: 9px;
        letter-spacing: .2em;
    }

    .text2 {
        width: 100%;
        line-height: .78;
    }

    .hero-title-solid {
        font-size: clamp(64px, 24vw, 104px);
    }

    .hero-title-outline {
        margin-left: 9vw;
        font-size: clamp(68px, 25vw, 110px);
        -webkit-text-stroke-width: 1px;
    }

    .hero-bottom {
        width: 100%;
        margin: 42px 0 0;
    }

    .text3 {
        width: min(92%, 440px);
        font-size: 22px;
    }

    .main-buttons {
        width: 100%;
        margin-top: 24px;
        flex-direction: row;
        gap: 8px;
    }

    .button1,
    .button2 {
        min-width: 0;
        width: 50%;
        padding: 13px 12px;
        font-size: 8px;
        letter-spacing: .1em;
    }

    .hero-dish-preview,
    .hero-scroll {
        display: none;
    }

    .ticker-track {
        animation-duration: 20s;
    }

    .about,
    .menu,
    .reviews,
    .last,
    .special {
        padding-top: 82px;
        padding-bottom: 82px;
    }

    .about-title,
    .menu-title,
    .text10,
    .text12 {
        font-size: clamp(46px, 15vw, 66px);
    }

    .about-description {
        margin-top: 30px;
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .about-stats {
        margin-top: 38px;
        gap: 14px;
    }

    .about-stat h3 {
        font-size: 36px;
    }

    .about-stat p {
        font-size: 7px;
    }

    .about-right {
        width: 100%;
    }

    .about-image-wrap {
        padding: 0 0 26px 24px;
    }

    .about-image-wrap::after {
        inset: -12px 12px 12px -12px;
    }

    .menu-heading {
        display: block;
    }

    .menu-filters {
        margin-top: 28px;
        gap: 7px;
    }

    .menu-filter {
        padding: 8px 10px;
        font-size: 8px;
    }

    .position {
        margin-top: 36px;
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .onename,
    .twoname,
    .threename,
    .fourname,
    .fivename,
    .sixname {
        font-size: 25px;
    }

    .dish-modal {
        padding: 12px;
    }

    .dish-modal-content {
        grid-template-columns: 1fr;
    }

    .dish-modal-image {
        min-height: 0;
        aspect-ratio: 4 / 3;
    }

    .dish-modal-body {
        padding: 28px 22px 32px;
    }

    .dish-modal-heading h3 {
        font-size: 32px;
    }

    .offer {
        grid-template-columns: 1fr;
        grid-template-areas: "label" "title" "desc" "price" "button";
        gap: 10px;
    }

    .text7 {
        font-size: clamp(62px, 20vw, 90px);
    }

    .price-block {
        margin-top: 32px;
    }

    .pricebig {
        font-size: 120px;
    }

    .reviews-toolbar {
        margin-top: 24px;
    }

    .reviews-list {
        grid-auto-columns: 88%;
    }

    .review {
        min-height: 320px;
        padding: 26px;
    }

    .review-text {
        font-size: 29px;
    }

    .last {
        gap: 46px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .footer {
        padding: 58px 18px 24px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .footer-bottom {
        margin-top: 42px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}

/* Editorial menu layout correction */
.menu-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    column-gap: 16px;
}

.onefood,
.twofood,
.threefood,
.fourfood,
.fivefood,
.sixfood {
    grid-column: 1 / -1;
}

.onename,
.twoname,
.threename,
.fourname,
.fivename,
.sixname {
    grid-column: 1;
    width: auto;
}

.oneprice,
.twoprice,
.threeprice,
.fourprice,
.fiveprice,
.sixprice {
    position: static;
    grid-column: 2;
    margin: 21px 0 0;
}

.onedescription,
.twodescription,
.threedescription,
.fourdescription,
.fivedescription,
.sixdescription,
.mark,
.more {
    grid-column: 1 / -1;
}
