:root {
    --gold: #f9a605;
    --orange: #f87723;
    --champagne: #eacea9;
    --whiskey: #d39758;
    --wood: #85441e;
    --balsamico: #150d0b;
    --ink: #241511;
    --cream: #fff7eb;
    --white: #fffdf9;
    --muted: #715e57;
    --font-display: "Amperzand", "Cormorant Garamond", Georgia, serif;
    --font-sans: "Gilroy", "Poppins", Arial, sans-serif;
    --container: min(1180px, calc(100% - 40px));
    --shadow: 0 24px 70px rgba(21, 13, 11, .16);
    --header-height: 112px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 120px; }
body { margin: 0; background: var(--cream); color: var(--ink); font-family: var(--font-sans); font-size: 16px; line-height: 1.75; -webkit-font-smoothing: antialiased; }
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.05; }
h1, h2 { font-family: var(--font-display); font-weight: 600; }
h2 { margin-bottom: 24px; font-size: clamp(2.6rem, 5vw, 4.75rem); letter-spacing: -.035em; }
h3 { font-size: 1.35rem; }
p:last-child { margin-bottom: 0; }
address { font-style: normal; }
.container { width: var(--container); margin-inline: auto; }
.section { padding: clamp(84px, 10vw, 150px) 0; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 9999; left: 16px; top: -100px; padding: 10px 16px; background: var(--gold); color: var(--balsamico); }
.skip-link:focus { top: 16px; }
.flash-message { position: fixed; z-index: 300; top: 128px; left: 50%; transform: translateX(-50%); max-width: min(560px, calc(100% - 32px)); padding: 14px 22px; border: 1px solid rgba(249,166,5,.45); background: var(--balsamico); color: var(--white); box-shadow: var(--shadow); }

.eyebrow { margin-bottom: 18px; color: var(--gold); font-size: .73rem; font-weight: 600; letter-spacing: .28em; text-transform: uppercase; }
.eyebrow::before { display: inline-block; width: 42px; height: 1px; margin: 0 13px 4px 0; background: currentColor; content: ""; }
.eyebrow--dark { color: var(--wood); }
.lead { font-size: clamp(1.16rem, 2vw, 1.45rem); line-height: 1.65; }

.button { display: inline-flex; min-height: 54px; align-items: center; justify-content: center; gap: 9px; padding: 14px 28px; border: 1px solid transparent; border-radius: 0; font-size: .74rem; font-weight: 600; letter-spacing: .14em; line-height: 1.2; text-align: center; text-transform: uppercase; transition: transform .25s ease, background .25s ease, border-color .25s ease, color .25s ease; }
.button:hover { transform: translateY(-2px); }
.button--gold { border-color: var(--gold); background: var(--gold); color: var(--balsamico); }
.button--gold:hover { border-color: var(--orange); background: var(--orange); }
.button--glass { border-color: rgba(255,255,255,.55); background: rgba(21,13,11,.22); color: var(--white); backdrop-filter: blur(8px); }
.button--glass:hover { border-color: var(--gold); color: var(--gold); }
.button--outline { border-color: rgba(234,206,169,.45); color: var(--champagne); }
.button--outline-dark { border-color: rgba(21,13,11,.4); color: var(--balsamico); }
.button--small { min-height: 44px; padding: 11px 20px; font-size: .68rem; }
.button--full { width: 100%; }
.button-row { display: flex; flex-wrap: wrap; gap: 14px; }
.button-row--center { justify-content: center; }
.text-link { display: inline-flex; align-items: center; gap: 12px; margin-top: 22px; border-bottom: 1px solid currentColor; color: var(--wood); font-size: .78rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }
.text-link--light { color: var(--champagne); }

.site-header { position: fixed; z-index: 100; top: 0; left: 0; width: 100%; color: var(--white); transition: background .35s ease, box-shadow .35s ease; }
.is-inner .site-header, .site-header.is-scrolled, .nav-open .site-header { background: rgba(21,13,11,.97); box-shadow: 0 10px 38px rgba(0,0,0,.18); backdrop-filter: blur(12px); }
.top-strip { border-bottom: 1px solid rgba(234,206,169,.16); background: rgba(21,13,11,.45); font-size: .66rem; letter-spacing: .12em; text-transform: uppercase; }
.top-strip__inner { display: flex; height: 32px; align-items: center; justify-content: space-between; }
.top-strip a { color: var(--gold); }
.site-nav { display: flex; height: 80px; align-items: center; justify-content: space-between; }
.brand { position: relative; z-index: 3; display: flex; width: 126px; height: 72px; align-items: center; }
.brand img { width: 100%; max-height: 68px; object-fit: contain; }
.nav-panel, .nav-links { display: flex; align-items: center; }
.nav-panel { gap: 32px; }
.nav-links { gap: clamp(18px, 2.5vw, 34px); }
.nav-links a { position: relative; padding: 11px 0; font-size: .72rem; font-weight: 500; letter-spacing: .09em; text-transform: uppercase; }
.nav-links a::after { position: absolute; right: 0; bottom: 5px; left: 0; height: 1px; background: var(--gold); content: ""; transform: scaleX(0); transition: transform .25s ease; }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-toggle { display: none; width: 46px; height: 46px; border: 0; background: transparent; }
.nav-toggle span:not(.sr-only) { display: block; width: 26px; height: 1px; margin: 6px auto; background: currentColor; transition: transform .25s ease, opacity .25s ease; }

.hero { position: relative; display: grid; min-height: 100svh; overflow: hidden; align-items: center; background: var(--balsamico); color: var(--white); }
.hero-slides, .hero-slide, .hero-overlay { position: absolute; inset: 0; }
.hero-slide { background-position: center 44%; background-size: cover; opacity: 0; transform: scale(1.04); transition: opacity 1.2s ease, transform 7s linear; }
.hero-slide.is-active { opacity: 1; transform: scale(1); }
.hero-overlay { background: linear-gradient(90deg, rgba(21,13,11,.95) 0%, rgba(21,13,11,.75) 42%, rgba(21,13,11,.36) 72%, rgba(21,13,11,.46) 100%), linear-gradient(0deg, rgba(21,13,11,.75), transparent 52%); }
.hero-content { position: relative; z-index: 2; padding-top: calc(var(--header-height) + 45px); padding-bottom: 80px; }
.hero-content .eyebrow { margin-bottom: 25px; }
.hero h1 { max-width: 940px; margin: 0 0 18px; font-size: clamp(4rem, 9.2vw, 8.6rem); font-weight: 500; letter-spacing: -.055em; text-shadow: 0 12px 45px rgba(0,0,0,.3); }
.hero h1 span { display: block; color: var(--gold); font-style: italic; }
.hero-tagline { margin-bottom: 34px; color: var(--champagne); font-family: var(--font-display); font-size: clamp(1.45rem, 2.8vw, 2.25rem); font-style: italic; }
.hero-progress { position: absolute; z-index: 3; right: max(22px, calc((100vw - 1180px)/2)); bottom: 38px; display: flex; gap: 8px; }
.hero-progress button { width: 40px; height: 3px; padding: 0; border: 0; background: rgba(255,255,255,.35); transition: width .3s ease, background .3s ease; }
.hero-progress button.is-active { width: 70px; background: var(--gold); }
.hero-scroll { position: absolute; z-index: 3; bottom: 30px; left: max(22px, calc((100vw - 1180px)/2)); display: flex; align-items: center; gap: 13px; color: rgba(255,255,255,.7); font-size: .62rem; letter-spacing: .16em; text-transform: uppercase; }
.hero-scroll span { display: block; width: 1px; height: 38px; background: var(--gold); animation: scrollLine 1.8s ease-in-out infinite; transform-origin: top; }
@keyframes scrollLine { 0%,100% { transform: scaleY(.35); } 50% { transform: scaleY(1); } }

.story-section { overflow: hidden; background: var(--cream); }
.split-layout { display: grid; grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr); gap: clamp(54px, 8vw, 110px); align-items: center; }
.image-frame { position: relative; min-height: 650px; }
.image-frame::before { position: absolute; z-index: 0; top: -24px; right: -24px; width: 72%; height: 72%; border: 1px solid var(--whiskey); content: ""; }
.image-frame img { position: absolute; z-index: 1; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.image-stamp { position: absolute; z-index: 2; right: -30px; bottom: 38px; display: grid; width: 126px; height: 126px; place-content: center; background: var(--gold); color: var(--balsamico); text-align: center; transform: rotate(3deg); }
.image-stamp strong { font-size: .65rem; letter-spacing: .16em; text-transform: uppercase; }
.image-stamp span { font-family: var(--font-display); font-size: 2.6rem; line-height: 1; }
.story-copy { max-width: 600px; }
.story-copy p { color: #5f4c45; }
.story-copy .lead { color: var(--ink); }

.signature-section { position: relative; overflow: hidden; background: var(--balsamico); color: var(--white); }
.signature-section::before { position: absolute; top: -130px; right: -100px; width: 420px; height: 420px; border: 1px solid rgba(249,166,5,.12); border-radius: 50%; content: ""; }
.section-heading { display: flex; margin-bottom: 62px; align-items: end; justify-content: space-between; gap: 30px; }
.section-heading h2 { max-width: 700px; margin-bottom: 0; }
.section-heading--dark { color: var(--ink); }
.signature-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(234,206,169,.22); border-left: 1px solid rgba(234,206,169,.22); }
.dish-card { min-height: 300px; padding: 36px 30px; border-right: 1px solid rgba(234,206,169,.22); border-bottom: 1px solid rgba(234,206,169,.22); transition: background .3s ease, transform .3s ease; }
.dish-card:hover { background: var(--wood); transform: translateY(-7px); }
.dish-number { display: block; margin-bottom: 70px; color: var(--gold); font-size: .7rem; letter-spacing: .12em; }
.dish-card h3 { color: var(--champagne); font-family: var(--font-display); font-size: 2rem; font-weight: 500; }
.dish-card p { color: rgba(255,255,255,.65); font-size: .89rem; }
.dish-card strong { color: var(--gold); }

.experience-section { background: var(--champagne); }
.experience-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(52px, 8vw, 110px); align-items: center; }
.experience-copy h2 em { color: var(--wood); font-weight: 500; }
.experience-copy > p:not(.eyebrow) { max-width: 560px; color: #6c5148; }
.feature-list { margin-top: 40px; border-top: 1px solid rgba(21,13,11,.18); }
.feature-list div { display: grid; grid-template-columns: 55px 1fr; padding: 19px 0; border-bottom: 1px solid rgba(21,13,11,.18); align-items: center; }
.feature-list strong { color: var(--wood); font-size: .7rem; letter-spacing: .1em; }
.feature-list span { font-family: var(--font-display); font-size: 1.35rem; }
.mosaic { position: relative; min-height: 690px; }
.mosaic img { position: absolute; object-fit: cover; box-shadow: var(--shadow); }
.mosaic-main { top: 0; right: 0; width: 78%; height: 82%; }
.mosaic-small { bottom: 0; left: 0; width: 54%; height: 36%; border: 9px solid var(--champagne); }

.history-banner { padding: 70px 0; background: var(--wood); color: var(--white); }
.history-banner__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.history-stat { padding: 8px 34px; border-right: 1px solid rgba(255,255,255,.22); text-align: center; }
.history-stat:last-child { border-right: 0; }
.history-stat strong { display: block; color: var(--gold); font-family: var(--font-display); font-size: clamp(2.8rem, 5vw, 4.7rem); font-weight: 500; line-height: 1; }
.history-stat span { display: block; margin-top: 12px; color: var(--champagne); font-size: .7rem; letter-spacing: .08em; text-transform: uppercase; }

.celebrations-teaser { display: grid; padding: 0; grid-template-columns: 1.05fr .95fr; background: var(--cream); }
.celebration-image { min-height: 720px; }
.celebration-image img { width: 100%; height: 100%; object-fit: cover; }
.celebration-copy { display: flex; padding: clamp(60px, 8vw, 120px); align-items: flex-start; justify-content: center; flex-direction: column; }
.celebration-copy p:not(.eyebrow) { max-width: 560px; color: var(--muted); }

.closing-cta { position: relative; display: grid; min-height: 660px; place-items: center; overflow: hidden; color: var(--white); text-align: center; }
.closing-cta--short { min-height: 560px; }
.closing-cta__image, .closing-cta__overlay { position: absolute; inset: 0; }
.closing-cta__image { background-position: center; background-size: cover; transform: scale(1.06); }
.closing-cta__overlay { background: rgba(21,13,11,.78); }
.closing-cta__content { position: relative; z-index: 1; }
.closing-cta h2 { max-width: 900px; margin-inline: auto; }

.page-hero { position: relative; display: grid; min-height: 70svh; place-items: center; overflow: hidden; background-color: var(--balsamico); background-position: center; background-size: cover; color: var(--white); text-align: center; }
.page-hero__overlay { position: absolute; inset: 0; background: linear-gradient(rgba(21,13,11,.67), rgba(21,13,11,.82)); }
.page-hero__content { position: relative; z-index: 1; padding-top: 150px; }
.page-hero h1 { max-width: 1000px; margin: 0 auto 18px; color: var(--gold); font-size: clamp(4rem, 9vw, 8rem); font-style: italic; letter-spacing: -.045em; }
.page-hero p:not(.eyebrow) { max-width: 720px; margin: 0 auto; color: var(--champagne); font-family: var(--font-display); font-size: clamp(1.25rem, 2.5vw, 1.9rem); }
.page-hero--menu { background-position: center 58%; }
.page-hero--celebrations { background-position: center 35%; }

.menu-page, .contact-section, .reservation-section { background: var(--cream); }
.menu-intro { max-width: 760px; margin: 0 auto 54px; text-align: center; }
.menu-intro p:last-child { color: var(--muted); }
.menu-tabs { position: sticky; z-index: 20; top: 112px; display: flex; margin-bottom: 80px; overflow-x: auto; border-block: 1px solid rgba(21,13,11,.15); background: rgba(255,247,235,.96); scrollbar-width: none; }
.menu-tabs a { flex: 0 0 auto; padding: 20px 26px; color: var(--wood); font-size: .7rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.menu-tabs a:hover { color: var(--orange); }
.menu-category { display: grid; grid-template-columns: .42fr 1fr; gap: 60px; padding: 76px 0; border-top: 1px solid rgba(21,13,11,.15); }
.menu-category__heading { display: grid; grid-template-columns: 42px 1fr; gap: 12px; align-items: start; }
.menu-category__heading > span { padding-top: 13px; color: var(--wood); font-size: .7rem; letter-spacing: .1em; }
.menu-category__heading h2 { margin: 0; font-size: clamp(2.4rem, 4vw, 4rem); }
.menu-category__heading p { color: var(--muted); }
.menu-item { display: grid; grid-template-columns: 1fr auto; gap: 26px; padding: 25px 0; border-bottom: 1px solid rgba(21,13,11,.12); }
.menu-item h3 { margin-bottom: 8px; font-family: var(--font-display); font-size: 1.65rem; font-weight: 600; }
.menu-item h3 span { margin-left: 8px; color: var(--orange); font-family: var(--font-sans); font-size: .54rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; vertical-align: middle; }
.menu-item p { margin: 0; color: var(--muted); font-size: .88rem; }
.menu-item small { color: var(--wood); }
.menu-item > strong { color: var(--wood); white-space: nowrap; }
.menu-note, .empty-state { margin-top: 60px; padding: 42px; border: 1px solid rgba(133,68,30,.25); background: #f7e5ce; text-align: center; }
.menu-note p { margin: 8px 0 0; color: var(--muted); }
.empty-state h2 { font-size: 2.7rem; }

.mini-cta { padding: 75px 0; background: var(--wood); color: var(--white); }
.mini-cta__inner { display: flex; align-items: center; justify-content: space-between; gap: 35px; }
.mini-cta h2 { margin: 0; font-size: clamp(2.4rem, 5vw, 4.3rem); }

.editorial-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(50px, 9vw, 130px); }
.editorial-title { position: sticky; top: 150px; align-self: start; }
.editorial-copy { padding-top: 52px; color: var(--muted); }
.editorial-copy .lead { color: var(--ink); }
.timeline-section { background: #f5e0c5; }
.timeline { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 70px; gap: 38px; }
.timeline::before { position: absolute; top: 28px; right: 0; left: 0; height: 1px; background: rgba(133,68,30,.35); content: ""; }
.timeline-item { position: relative; padding-top: 68px; }
.timeline-item::before { position: absolute; top: 21px; left: 0; width: 15px; height: 15px; border: 4px solid #f5e0c5; border-radius: 50%; background: var(--wood); box-shadow: 0 0 0 1px var(--wood); content: ""; }
.timeline-item span { color: var(--wood); font-size: .7rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; }
.timeline-item h3 { margin: 18px 0 12px; font-family: var(--font-display); font-size: 2rem; }
.timeline-item p { color: var(--muted); font-size: .9rem; }
.values-section { background: var(--balsamico); color: var(--white); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid rgba(234,206,169,.2); }
.value-card { min-height: 340px; padding: 48px 42px; border-right: 1px solid rgba(234,206,169,.2); }
.value-card:last-child { border-right: 0; }
.value-card span { color: var(--gold); font-size: .7rem; }
.value-card h3 { margin-top: 90px; color: var(--champagne); font-family: var(--font-display); font-size: 2.1rem; }
.value-card p { color: rgba(255,255,255,.62); }

.package-section { background: var(--cream); }
.package-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.package-card { min-height: 420px; padding: 42px; border: 1px solid rgba(21,13,11,.14); background: var(--white); transition: transform .3s ease, background .3s ease, color .3s ease; }
.package-card:hover { background: var(--wood); color: var(--white); transform: translateY(-6px); }
.package-card--wide { grid-column: 1 / -1; min-height: 290px; }
.package-card > span { color: var(--orange); font-size: .7rem; letter-spacing: .1em; }
.package-card h3 { margin: 70px 0 20px; font-family: var(--font-display); font-size: 2.5rem; }
.package-card--wide h3 { margin-top: 50px; }
.package-card p, .package-card li { color: var(--muted); }
.package-card:hover p, .package-card:hover li { color: var(--champagne); }
.package-card ul { margin: 25px 0 0; padding: 0; list-style: none; }
.package-card li { padding: 8px 0; border-top: 1px solid rgba(21,13,11,.12); font-size: .85rem; }
.inquiry-section { background: var(--balsamico); color: var(--white); }
.inquiry-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(55px, 8vw, 110px); }
.inquiry-copy { padding-top: 32px; }
.inquiry-copy h2 { color: var(--champagne); }
.inquiry-copy > p:not(.eyebrow) { color: rgba(255,255,255,.65); }
.contact-pill { display: flex; margin-top: 38px; padding: 18px 0; border-block: 1px solid rgba(234,206,169,.2); justify-content: space-between; gap: 18px; font-size: .78rem; }
.contact-pill a { color: var(--gold); }

.form-card { padding: clamp(28px, 5vw, 58px); border: 1px solid rgba(234,206,169,.22); background: #201310; box-shadow: var(--shadow); }
.form-card--light { background: var(--white); color: var(--ink); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.form-span { grid-column: 1 / -1; }
.form-card label { display: flex; flex-direction: column; gap: 8px; }
.form-card label > span { font-size: .67rem; font-weight: 600; letter-spacing: .11em; text-transform: uppercase; }
.form-card input, .form-card select, .form-card textarea { width: 100%; border: 0; border-bottom: 1px solid rgba(234,206,169,.3); border-radius: 0; outline: 0; background: transparent; color: var(--white); transition: border-color .2s ease; }
.form-card input, .form-card select { height: 48px; }
.form-card textarea { padding: 12px 0; resize: vertical; }
.form-card select option { color: var(--ink); }
.form-card input:focus, .form-card select:focus, .form-card textarea:focus { border-color: var(--gold); }
.form-card--light input, .form-card--light select, .form-card--light textarea { border-color: rgba(21,13,11,.24); color: var(--ink); }
.form-card small { color: #ffaf8a; }
.form-card .button { margin-top: 32px; }
.form-disclaimer { margin-top: 16px; color: var(--muted); font-size: .76rem; text-align: center; }

.contact-grid, .reservation-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(52px, 8vw, 110px); }
.contact-details h2, .reservation-copy h2 { max-width: 580px; }
.contact-block { padding: 23px 0; border-top: 1px solid rgba(21,13,11,.14); }
.contact-block > span { display: block; margin-bottom: 9px; color: var(--wood); font-size: .67rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.contact-block a { color: var(--wood); }
.contact-columns { display: grid; grid-template-columns: repeat(2, 1fr); gap: 25px; }
.map-card { position: relative; min-height: 680px; overflow: hidden; }
.map-card img { width: 100%; height: 100%; object-fit: cover; }
.map-card > div { position: absolute; right: 28px; bottom: 28px; left: 28px; padding: 28px; background: rgba(21,13,11,.9); color: var(--white); backdrop-filter: blur(10px); }
.map-card p { color: var(--champagne); font-family: var(--font-display); font-size: 1.6rem; }
.reservation-copy { padding-top: 24px; }
.reservation-copy > p:not(.eyebrow) { color: var(--muted); }
.reservation-notes { margin: 34px 0; border-top: 1px solid rgba(21,13,11,.14); }
.reservation-notes div { display: flex; padding: 17px 0; border-bottom: 1px solid rgba(21,13,11,.14); flex-direction: column; gap: 4px; }
.reservation-notes strong { color: var(--wood); font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; }
.reservation-notes span { color: var(--muted); font-size: .85rem; }

.confirmation-page { display: grid; min-height: 100svh; padding: 180px 20px 90px; place-items: center; background: var(--champagne); }
.confirmation-card { width: min(760px, 100%); padding: clamp(35px, 7vw, 75px); background: var(--white); box-shadow: var(--shadow); text-align: center; }
.confirmation-mark { display: grid; width: 78px; height: 78px; margin: 0 auto 28px; place-items: center; border: 1px solid var(--gold); border-radius: 50%; color: var(--wood); font-family: var(--font-display); font-size: 1.8rem; }
.confirmation-card h1 { font-size: clamp(2.8rem, 7vw, 5rem); }
.confirmation-card > p { color: var(--muted); }
.confirmation-details { display: grid; grid-template-columns: repeat(2, 1fr); margin: 36px 0; border-top: 1px solid rgba(21,13,11,.15); border-left: 1px solid rgba(21,13,11,.15); }
.confirmation-details div { padding: 20px; border-right: 1px solid rgba(21,13,11,.15); border-bottom: 1px solid rgba(21,13,11,.15); }
.confirmation-details dt { color: var(--wood); font-size: .65rem; letter-spacing: .1em; text-transform: uppercase; }
.confirmation-details dd { margin: 5px 0 0; font-weight: 600; }
.confirmation-note { display: inline-block; padding: 8px 18px; background: #f7e5ce; }

.site-footer { padding: 88px 0 25px; background: var(--balsamico); color: rgba(255,255,255,.65); }
.footer-grid { display: grid; grid-template-columns: 1.35fr 1fr .85fr 1fr; gap: 55px; }
.footer-brand img { width: 150px; margin-bottom: 25px; }
.footer-brand p { max-width: 330px; }
.site-footer h2 { margin-bottom: 24px; color: var(--gold); font-family: var(--font-sans); font-size: .68rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }
.footer-link { display: block; margin: 9px 0; color: var(--champagne); }
.footer-emphasis { color: var(--white); font-family: var(--font-display); font-size: 1.35rem; }
.social-links { display: flex; gap: 9px; }
.social-links a { display: grid; width: 40px; height: 40px; place-items: center; border: 1px solid rgba(234,206,169,.3); border-radius: 50%; color: var(--champagne); font-size: .65rem; }
.social-links a:hover { border-color: var(--gold); color: var(--gold); }
.footer-bottom { display: flex; margin-top: 70px; padding-top: 22px; border-top: 1px solid rgba(234,206,169,.16); justify-content: space-between; gap: 30px; font-size: .68rem; }

.whatsapp-float { position: fixed; z-index: 80; right: 22px; bottom: 22px; display: flex; min-height: 48px; align-items: center; gap: 10px; padding: 8px 16px 8px 8px; border-radius: 40px; background: #25d366; color: #082e15; box-shadow: 0 10px 30px rgba(0,0,0,.25); font-size: .7rem; }
.whatsapp-float span { display: grid; width: 32px; height: 32px; place-items: center; border: 1px solid rgba(0,0,0,.22); border-radius: 50%; font-size: .6rem; }

.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1050px) {
    :root { --container: min(100% - 34px, 920px); }
    .nav-panel { gap: 20px; }
    .nav-links { gap: 16px; }
    .signature-grid { grid-template-columns: repeat(2, 1fr); }
    .dish-number { margin-bottom: 45px; }
    .history-banner__grid { grid-template-columns: repeat(2, 1fr); gap: 38px 0; }
    .history-stat:nth-child(2) { border-right: 0; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .inquiry-grid, .contact-grid, .reservation-grid { grid-template-columns: 1fr; }
    .reservation-copy { max-width: 700px; }
}

@media (max-width: 860px) {
    :root { --header-height: 100px; }
    .top-strip { display: none; }
    .site-nav { height: 82px; }
    .brand { width: 112px; }
    .nav-toggle { position: relative; z-index: 3; display: block; color: var(--white); }
    .nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
    .nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .nav-panel { position: fixed; z-index: 2; inset: 0; display: flex; padding: 130px 28px 50px; background: var(--balsamico); align-items: flex-start; flex-direction: column; opacity: 0; pointer-events: none; transform: translateY(-12px); transition: opacity .25s ease, transform .25s ease; }
    .nav-open .nav-panel { opacity: 1; pointer-events: auto; transform: none; }
    .nav-links { width: 100%; align-items: flex-start; flex-direction: column; gap: 0; }
    .nav-links a { width: 100%; padding: 15px 0; border-bottom: 1px solid rgba(234,206,169,.15); font-family: var(--font-display); font-size: 2.2rem; font-weight: 500; letter-spacing: 0; text-transform: none; }
    .nav-links a::after { display: none; }
    .nav-panel .button { margin-top: 25px; }
    .hero-content { padding-top: 140px; }
    .hero h1 { font-size: clamp(3.7rem, 14vw, 7rem); }
    .split-layout, .experience-grid, .editorial-grid { grid-template-columns: 1fr; }
    .image-frame { min-height: 600px; }
    .story-copy { max-width: none; }
    .mosaic { min-height: 650px; }
    .celebrations-teaser { grid-template-columns: 1fr; }
    .celebration-image { min-height: 560px; }
    .section-heading { align-items: flex-start; flex-direction: column; }
    .menu-tabs { top: 82px; }
    .menu-category { grid-template-columns: 1fr; gap: 25px; }
    .editorial-title { position: static; }
    .editorial-copy { padding-top: 0; }
    .timeline { grid-template-columns: 1fr; }
    .timeline::before { top: 0; bottom: 0; left: 7px; width: 1px; height: auto; }
    .timeline-item { padding: 0 0 0 50px; }
    .timeline-item::before { top: 7px; left: 0; }
    .values-grid { grid-template-columns: 1fr; }
    .value-card { min-height: 260px; border-right: 0; border-bottom: 1px solid rgba(234,206,169,.2); }
    .value-card:last-child { border-bottom: 0; }
    .value-card h3 { margin-top: 55px; }
    .map-card { min-height: 580px; }
}

@media (max-width: 640px) {
    :root { --container: calc(100% - 30px); }
    body { font-size: 15px; }
    .section { padding: 78px 0; }
    h2 { font-size: clamp(2.45rem, 12vw, 3.7rem); }
    .hero { min-height: 760px; }
    .hero-overlay { background: linear-gradient(90deg, rgba(21,13,11,.92), rgba(21,13,11,.48)), linear-gradient(0deg, rgba(21,13,11,.78), transparent 58%); }
    .hero h1 { font-size: clamp(3.55rem, 17vw, 5.2rem); }
    .hero-tagline { font-size: 1.35rem; }
    .hero .button-row .button { width: 100%; }
    .hero-progress { right: 15px; bottom: 18px; }
    .hero-scroll { display: none; }
    .image-frame { min-height: 510px; }
    .image-frame::before { right: -9px; }
    .image-stamp { right: -4px; bottom: 20px; width: 108px; height: 108px; }
    .signature-grid { grid-template-columns: 1fr; }
    .dish-card { min-height: 250px; }
    .mosaic { min-height: 500px; }
    .mosaic-main { width: 88%; }
    .mosaic-small { width: 62%; }
    .history-banner__grid { grid-template-columns: 1fr; gap: 0; }
    .history-stat { padding: 28px 12px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.18); }
    .history-stat:last-child { border-bottom: 0; }
    .celebration-image { min-height: 500px; }
    .celebration-copy { padding: 72px 22px; }
    .closing-cta { min-height: 600px; }
    .closing-cta .button { width: 100%; }
    .page-hero { min-height: 620px; }
    .page-hero h1 { font-size: clamp(3.6rem, 18vw, 5rem); }
    .menu-tabs { margin-inline: -15px; }
    .menu-category { padding: 56px 0; }
    .menu-item { grid-template-columns: 1fr; gap: 8px; }
    .mini-cta__inner { align-items: flex-start; flex-direction: column; }
    .package-grid { grid-template-columns: 1fr; }
    .package-card--wide { grid-column: auto; }
    .package-card { min-height: 360px; padding: 32px; }
    .form-grid { grid-template-columns: 1fr; }
    .form-span { grid-column: auto; }
    .form-card { padding: 29px 22px; }
    .contact-columns { grid-template-columns: 1fr; gap: 0; }
    .map-card { min-height: 520px; }
    .confirmation-details { grid-template-columns: 1fr; }
    .confirmation-card .button { width: 100%; }
    .footer-grid { grid-template-columns: 1fr; gap: 42px; }
    .footer-bottom { align-items: flex-start; flex-direction: column; gap: 0; }
    .whatsapp-float { width: 48px; height: 48px; padding: 8px; justify-content: center; }
    .whatsapp-float strong { display: none; }
}

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


/* =========================================================
   MOBILE NAV — FULL SCREEN FIX
   ========================================================= */

@media (max-width: 860px) {

    /*
     * backdrop-filter on the parent header can trap
     * position:fixed children on some mobile browsers.
     */
    body.nav-open .site-header {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        transform: none !important;
    }


    /* Header remains above the page */
    .site-header {
        z-index: 1000;
    }

    .site-nav {
        position: relative;
    }


    /* Logo stays visible above menu */
    .brand {
        position: relative;
        z-index: 10003 !important;
    }


    /* Hamburger / close X */
    .nav-toggle {
        position: relative !important;
        z-index: 10004 !important;

        display: block !important;

        width: 46px;
        height: 46px;

        color: #fff !important;

        opacity: 1 !important;
        visibility: visible !important;
    }


    /*
     * Full-screen menu
     */
    .nav-panel {
        position: fixed !important;

        top: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        left: 0 !important;

        width: 100vw !important;
        height: 100vh !important;
        height: 100dvh !important;

        z-index: 10002 !important;

        display: flex !important;

        padding:
            125px
            24px
            calc(35px + env(safe-area-inset-bottom))
            24px !important;

        background: #150d0b !important;

        overflow-x: hidden;
        overflow-y: auto;

        align-items: flex-start !important;
        flex-direction: column !important;

        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;

        transform: translateY(-15px) !important;

        transition:
            opacity .35s ease,
            transform .45s cubic-bezier(.22,1,.36,1),
            visibility 0s linear .45s !important;
    }


    body.nav-open .nav-panel {
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;

        transform: translateY(0) !important;

        transition:
            opacity .35s ease,
            transform .45s cubic-bezier(.22,1,.36,1),
            visibility 0s !important;
    }


    /*
     * Menu links
     */
    .nav-links {
        display: flex !important;

        width: 100% !important;

        align-items: stretch !important;
        flex-direction: column !important;

        gap: 0 !important;
    }


    .nav-links a {
        display: block !important;

        width: 100% !important;

        padding: 14px 0 !important;

        border-bottom:
            1px solid rgba(234,206,169,.15) !important;

        color: #fffdf9;

        font-family: var(--font-display);
        font-size: clamp(2rem, 10vw, 2.8rem) !important;

        line-height: 1.1;
    }


    .nav-links a.active {
        color: var(--gold) !important;
    }


    /*
     * Reservation button
     */
    .nav-panel > .button {
        display: inline-flex !important;

        width: auto !important;

        margin-top: 28px !important;

        padding: 13px 24px !important;
    }


    /*
     * Hamburger becomes X
     */
    body.nav-open .nav-toggle span:nth-child(1) {
        transform: translateY(7px) rotate(45deg) !important;
    }

    body.nav-open .nav-toggle span:nth-child(2) {
        opacity: 0 !important;
    }

    body.nav-open .nav-toggle span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg) !important;
    }
}



/* =========================================================
   TERRA KULTURE — SUBTLE IMAGE PARALLAX
   Desktop / tablet only
   ========================================================= */

@media (min-width: 861px) {

    .image-frame > img,
    .mosaic-main,
    .mosaic-small,
    .celebration-image > img,
    .closing-cta__image {
        will-change: transform;
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
    }

    /* Story image */
    .image-frame > img {
        transform:
            translate3d(0, var(--tk-parallax-y, 0px), 0)
            scale(1.06);
    }

    /* Large food image */
    .mosaic-main {
        transform:
            translate3d(0, var(--tk-parallax-y, 0px), 0)
            scale(1.035);
    }

    /* Smaller brunch image moves slightly more */
    .mosaic-small {
        transform:
            translate3d(0, var(--tk-parallax-y, 0px), 0)
            scale(1.045);
    }

    /* Celebration image */
    .celebration-image > img {
        transform:
            translate3d(0, var(--tk-parallax-y, 0px), 0)
            scale(1.05);
    }

    /*
     * Keep the original closing CTA enlargement
     * while adding vertical movement.
     */
    .closing-cta__image {
        transform:
            translate3d(0, var(--tk-parallax-y, 0px), 0)
            scale(1.10);
    }
}


/* No parallax for reduced-motion users */
@media (prefers-reduced-motion: reduce) {

    .image-frame > img,
    .mosaic-main,
    .mosaic-small,
    .celebration-image > img {
        transform: none !important;
    }

    .closing-cta__image {
        transform: scale(1.06) !important;
    }
}



/* =========================================================
   TERRA KULTURE — SAFE PRELOADER V2
   Does NOT animate/hide header, main or footer
   ========================================================= */

.site-preloader {
    position: fixed;
    z-index: 99999;
    inset: 0;

    display: grid;
    place-items: center;

    background:
        radial-gradient(
            circle at 50% 45%,
            rgba(249,166,5,.07),
            transparent 34%
        ),
        #150d0b;

    opacity: 1;
    visibility: visible;

    /*
     * Never trap the visitor.
     * The page underneath remains functional.
     */
    pointer-events: none;

    /*
     * CSS-only fail-safe:
     * disappears even if JavaScript fails.
     */
    animation:
        tkLoaderFailsafe 3.5s
        cubic-bezier(.22,1,.36,1)
        forwards;
}

.site-preloader.is-loaded {
    animation:
        tkLoaderExit .85s
        cubic-bezier(.22,1,.36,1)
        forwards;
}

.site-preloader__inner {
    width: min(320px, calc(100% - 60px));
    text-align: center;
}

.site-preloader__logo {
    width: min(220px, 70vw);
    max-height: 180px;

    margin: 0 auto 28px;

    object-fit: contain;

    opacity: 0;

    transform:
        translateY(28px)
        scale(.94);

    animation:
        tkLoaderLogo 1s
        .12s
        cubic-bezier(.22,1,.36,1)
        forwards;
}

.site-preloader__line {
    width: 150px;
    height: 1px;

    margin: 0 auto 20px;

    overflow: hidden;

    background: rgba(234,206,169,.15);
}

.site-preloader__line span {
    display: block;

    width: 100%;
    height: 100%;

    background: var(--gold);

    transform: translateX(-105%);

    animation:
        tkLoaderLine 1.35s
        .38s
        cubic-bezier(.22,1,.36,1)
        forwards;
}

.site-preloader p {
    margin: 0;

    color: var(--champagne);

    font-size: .65rem;
    font-weight: 500;

    letter-spacing: .25em;
    text-transform: uppercase;

    opacity: 0;

    transform: translateY(12px);

    animation:
        tkLoaderText .8s
        .7s
        ease
        forwards;
}


@keyframes tkLoaderLogo {

    to {
        opacity: 1;

        transform:
            translateY(0)
            scale(1);
    }
}


@keyframes tkLoaderLine {

    0% {
        transform: translateX(-105%);
    }

    60% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(105%);
    }
}


@keyframes tkLoaderText {

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


@keyframes tkLoaderExit {

    0% {
        opacity: 1;
        visibility: visible;
    }

    99% {
        opacity: 0;
        visibility: visible;
    }

    100% {
        opacity: 0;
        visibility: hidden;
    }
}


@keyframes tkLoaderFailsafe {

    0%,
    70% {
        opacity: 1;
        visibility: visible;
    }

    100% {
        opacity: 0;
        visibility: hidden;
    }
}


/* =========================================================
   SAFE PROMINENT SCROLL ANIMATIONS
   ========================================================= */

/*
 * Stronger reveals.
 * These affect content only — never the fixed header.
 */

.reveal {
    opacity: 0;

    transform:
        translateY(52px)
        scale(.985);

    transition:
        opacity .9s cubic-bezier(.22,1,.36,1),
        transform 1s cubic-bezier(.22,1,.36,1);
}

.reveal.is-visible {
    opacity: 1;
    transform: none;
}


/* Story image enters from left */

.image-frame.reveal {
    transform:
        translateX(-55px)
        translateY(20px)
        scale(.985);
}

.image-frame.reveal.is-visible {
    transform: none;
}


/* Story / editorial copy enters from right */

.story-copy.reveal,
.editorial-copy.reveal,
.form-card.reveal,
.map-card.reveal {
    transform:
        translateX(55px)
        translateY(20px);
}

.story-copy.reveal.is-visible,
.editorial-copy.reveal.is-visible,
.form-card.reveal.is-visible,
.map-card.reveal.is-visible {
    transform: none;
}


/* Celebration image */

.celebration-image.reveal {
    transform:
        translateX(-45px)
        scale(.985);
}

.celebration-image.reveal.is-visible {
    transform: none;
}


/* Celebration copy */

.celebration-copy.reveal {
    transform:
        translateX(45px);
}

.celebration-copy.reveal.is-visible {
    transform: none;
}


/* Mosaic */

.mosaic.reveal {
    transform:
        translateY(50px)
        scale(.94);
}

.mosaic.reveal.is-visible {
    transform: none;
}


/* ---------------------------------------------------------
   Stagger repeated cards
   --------------------------------------------------------- */

.dish-card.reveal:nth-child(2),
.timeline-item.reveal:nth-child(2),
.value-card.reveal:nth-child(2),
.package-card.reveal:nth-child(2) {
    transition-delay: .10s;
}

.dish-card.reveal:nth-child(3),
.timeline-item.reveal:nth-child(3),
.value-card.reveal:nth-child(3),
.package-card.reveal:nth-child(3) {
    transition-delay: .20s;
}

.dish-card.reveal:nth-child(4),
.package-card.reveal:nth-child(4) {
    transition-delay: .30s;
}

.package-card.reveal:nth-child(5) {
    transition-delay: .40s;
}


/* =========================================================
   HOMEPAGE HERO OPENING ANIMATION
   Does NOT transform the header or page wrapper
   ========================================================= */

body.is-home .hero-content .eyebrow {
    opacity: 0;
    transform: translateY(28px);

    animation:
        tkSafeHeroRise .8s
        1.25s
        cubic-bezier(.22,1,.36,1)
        forwards;
}

body.is-home .hero-content h1 {
    opacity: 0;
    transform: translateY(55px);

    animation:
        tkSafeHeroRise 1s
        1.40s
        cubic-bezier(.22,1,.36,1)
        forwards;
}

body.is-home .hero-tagline {
    opacity: 0;
    transform: translateY(30px);

    animation:
        tkSafeHeroRise .9s
        1.58s
        cubic-bezier(.22,1,.36,1)
        forwards;
}

body.is-home .hero .button-row .button {
    opacity: 0;
    transform:
        translateY(25px)
        scale(.97);

    animation:
        tkSafeHeroButton .8s
        cubic-bezier(.22,1,.36,1)
        forwards;
}

body.is-home .hero .button-row .button:nth-child(1) {
    animation-delay: 1.76s;
}

body.is-home .hero .button-row .button:nth-child(2) {
    animation-delay: 1.90s;
}

body.is-home .hero-progress {
    opacity: 0;

    animation:
        tkSafeHeroFade .7s
        2.05s
        ease
        forwards;
}


@keyframes tkSafeHeroRise {

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


@keyframes tkSafeHeroButton {

    to {
        opacity: 1;

        transform:
            translateY(0)
            scale(1);
    }
}


@keyframes tkSafeHeroFade {

    to {
        opacity: 1;
    }
}


/* ---------------------------------------------------------
   Inner-page hero entrance
   --------------------------------------------------------- */

body.is-inner .page-hero__content .eyebrow {
    opacity: 0;
    transform: translateY(25px);

    animation:
        tkSafeHeroRise .75s
        .95s
        cubic-bezier(.22,1,.36,1)
        forwards;
}

body.is-inner .page-hero__content h1 {
    opacity: 0;
    transform: translateY(45px);

    animation:
        tkSafeHeroRise .9s
        1.10s
        cubic-bezier(.22,1,.36,1)
        forwards;
}

body.is-inner .page-hero__content > p:last-child {
    opacity: 0;
    transform: translateY(25px);

    animation:
        tkSafeHeroRise .8s
        1.28s
        cubic-bezier(.22,1,.36,1)
        forwards;
}


/* ---------------------------------------------------------
   Mobile: retain animation but use smaller movement
   --------------------------------------------------------- */

@media (max-width: 860px) {

    .reveal {
        transform:
            translateY(32px)
            scale(.99);
    }

    .image-frame.reveal,
    .story-copy.reveal,
    .editorial-copy.reveal,
    .form-card.reveal,
    .map-card.reveal,
    .celebration-image.reveal,
    .celebration-copy.reveal,
    .mosaic.reveal {
        transform:
            translateY(32px)
            scale(.99);
    }

    .image-frame.reveal.is-visible,
    .story-copy.reveal.is-visible,
    .editorial-copy.reveal.is-visible,
    .form-card.reveal.is-visible,
    .map-card.reveal.is-visible,
    .celebration-image.reveal.is-visible,
    .celebration-copy.reveal.is-visible,
    .mosaic.reveal.is-visible {
        transform: none;
    }
}


/* ---------------------------------------------------------
   Accessibility
   --------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {

    .site-preloader {
        display: none !important;
    }

    .reveal,
    .reveal.is-visible,
    .image-frame.reveal,
    .story-copy.reveal,
    .editorial-copy.reveal,
    .form-card.reveal,
    .map-card.reveal,
    .celebration-image.reveal,
    .celebration-copy.reveal,
    .mosaic.reveal {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    body.is-home .hero-content .eyebrow,
    body.is-home .hero-content h1,
    body.is-home .hero-tagline,
    body.is-home .hero .button-row .button,
    body.is-home .hero-progress,
    body.is-inner .page-hero__content .eyebrow,
    body.is-inner .page-hero__content h1,
    body.is-inner .page-hero__content > p:last-child {
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
    }
}



/* =========================================================
   CELEBRATION IMAGE PARALLAX CONTAINMENT
   ========================================================= */

.celebration-image {
    position: relative;
    overflow: hidden;
}

.celebration-image > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}



/* =========================================================
   TERRA KULTURE — MENU GROUPS
   ========================================================= */

.menu-group-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;

    margin: 0 auto 30px;
}

.menu-group-tabs a {
    padding: 11px 18px;

    border: 1px solid rgba(133,68,30,.28);

    color: var(--wood);

    font-size: .68rem;
    font-weight: 600;

    letter-spacing: .1em;
    text-transform: uppercase;

    transition:
        background .25s ease,
        color .25s ease,
        border-color .25s ease,
        transform .25s ease;
}

.menu-group-tabs a:hover {
    border-color: var(--wood);
    background: var(--wood);
    color: var(--white);

    transform: translateY(-2px);
}

.menu-group-name {
    display: block;

    margin-bottom: 10px;

    color: var(--orange);

    font-family: var(--font-sans);
    font-size: .62rem;
    font-weight: 600;

    letter-spacing: .13em;
    text-transform: uppercase;
}

.menu-item p {
    white-space: pre-line;
}

.menu-item > strong {
    text-align: right;
}

@media (max-width: 640px) {

    .menu-group-tabs {
        justify-content: flex-start;

        overflow-x: auto;
        flex-wrap: nowrap;

        margin-inline: -15px;
        padding-inline: 15px;

        scrollbar-width: none;
    }

    .menu-group-tabs::-webkit-scrollbar {
        display: none;
    }

    .menu-group-tabs a {
        flex: 0 0 auto;
        white-space: nowrap;
    }

    .menu-item > strong {
        text-align: left;
    }
}



/* =========================================================
   TERRA KULTURE — INTERACTIVE MENU
   Accordion + category tabs + WhatsApp selection
   ========================================================= */

.restaurant-menu-accordion {
    margin-top: 30px;
}


/* Main menu groups */

.restaurant-menu-group {
    margin-bottom: 20px;

    border: 1px solid rgba(21,13,11,.16);

    background: rgba(255,255,255,.38);
}


.restaurant-menu-group__toggle {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    padding: 30px 34px;

    border: 0;

    background: transparent;

    color: var(--ink);

    cursor: pointer;

    text-align: left;

    transition:
        background .3s ease,
        color .3s ease;
}


.restaurant-menu-group__toggle:hover,
.restaurant-menu-group.is-open
.restaurant-menu-group__toggle {
    background: var(--wood);
    color: var(--white);
}


.restaurant-menu-group__title {
    display: flex;
    align-items: center;

    gap: 20px;
}


.restaurant-menu-group__title small {
    color: var(--orange);

    font-size: .65rem;
    font-weight: 600;

    letter-spacing: .12em;
}


.restaurant-menu-group__title strong {
    font-family: var(--font-display);

    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 600;
}


.restaurant-menu-group__icon {
    display: grid;

    width: 42px;
    height: 42px;

    flex: 0 0 42px;

    place-items: center;

    border: 1px solid currentColor;
    border-radius: 50%;

    font-size: 1.5rem;

    transition:
        transform .35s ease;
}


.restaurant-menu-group.is-open
.restaurant-menu-group__icon {
    transform: rotate(180deg);
}


.restaurant-menu-group__body {
    padding:
        0
        clamp(20px, 4vw, 42px)
        42px;
}


.restaurant-menu-group__body[hidden] {
    display: none !important;
}


/* Category navigation */

.menu-tabs--accordion {
    position: sticky;

    top: 112px;

    z-index: 20;

    margin: 0 0 40px;

    background: rgba(255,247,235,.97);
}


.menu-tabs--accordion button {
    flex: 0 0 auto;

    padding: 20px 24px;

    border: 0;

    background: transparent;

    color: var(--wood);

    cursor: pointer;

    font-family: var(--font-sans);

    font-size: .68rem;
    font-weight: 600;

    letter-spacing: .1em;
    text-transform: uppercase;

    white-space: nowrap;

    transition:
        color .25s ease,
        background .25s ease;
}


.menu-tabs--accordion button:hover {
    color: var(--orange);
}


.menu-tabs--accordion button.is-active {
    background: var(--wood);
    color: var(--white);
}


/* Only one category is visible at a time */

.menu-category--panel {
    padding-top: 30px;
}


.menu-category--panel[hidden] {
    display: none !important;
}


/* Selectable item */

.menu-item--selectable {
    grid-template-columns:
        28px
        minmax(0, 1fr)
        auto;

    align-items: start;

    cursor: pointer;

    transition:
        background .25s ease,
        padding .25s ease,
        border-color .25s ease,
        box-shadow .25s ease;
}


.menu-item--selectable:hover {
    background: rgba(247,229,206,.48);

    padding-inline: 15px;
}


.menu-select-checkbox {
    width: 20px;
    height: 20px;

    margin-top: 5px;

    accent-color: var(--orange);

    cursor: pointer;
}


.menu-item--selectable.is-selected {
    padding-inline: 18px;

    border-bottom-color: var(--orange);

    background: #f7e5ce;

    box-shadow:
        inset 3px 0 0
        var(--orange);
}


.menu-item__info {
    min-width: 0;
}


.menu-select-note {
    display: block;

    margin-top: 9px;

    color: var(--orange) !important;

    font-size: .62rem !important;
    font-weight: 600;

    letter-spacing: .06em;
    text-transform: uppercase;
}


.menu-item__price {
    text-align: right;
}


/* =========================================================
   WHATSAPP ORDER BAR
   ========================================================= */

.menu-order-bar {
    position: fixed;

    z-index: 10001;

    left: 50%;
    bottom: 22px;

    width: min(940px, calc(100% - 34px));

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 24px;

    padding: 16px 18px;

    border:
        1px solid
        rgba(255,255,255,.14);

    background: #150d0b;

    color: var(--white);

    box-shadow:
        0 24px 70px
        rgba(0,0,0,.35);

    opacity: 0;

    pointer-events: none;

    transform:
        translateX(-50%)
        translateY(150%);

    transition:
        opacity .35s ease,
        transform .45s cubic-bezier(.22,1,.36,1);
}


.menu-order-bar.is-active {
    opacity: 1;

    pointer-events: auto;

    transform:
        translateX(-50%)
        translateY(0);
}


.menu-order-bar__summary strong {
    display: block;

    margin-bottom: 4px;

    color: var(--gold);

    font-family: var(--font-display);
    font-size: 1.25rem;
}


.menu-order-bar__summary span {
    color: rgba(255,255,255,.65);

    font-size: .72rem;
}


.menu-order-bar__actions {
    display: flex;
    align-items: center;

    gap: 10px;
}


.menu-order-bar button {
    min-height: 45px;

    padding: 10px 18px;

    border: 0;

    cursor: pointer;

    font-size: .7rem;
    font-weight: 600;

    letter-spacing: .05em;

    transition:
        transform .25s ease,
        background .25s ease;
}


.menu-order-bar button:hover {
    transform: translateY(-2px);
}


.menu-order-clear {
    border:
        1px solid
        rgba(255,255,255,.25)
        !important;

    background: transparent;

    color: var(--white);
}


.menu-order-whatsapp {
    background: #25d366;
    color: #082e15;
}


/*
 * Move the site's normal WhatsApp button above
 * the order bar when selections are active.
 */

body.menu-order-active
.whatsapp-float {
    bottom: 105px;
}


/* =========================================================
   MOBILE INTERACTIVE MENU
   ========================================================= */

@media (max-width: 860px) {

    .restaurant-menu-group__toggle {
        padding: 23px 20px;
    }

    .restaurant-menu-group__title {
        gap: 12px;
    }

    .restaurant-menu-group__body {
        padding:
            0
            18px
            30px;
    }

    .menu-tabs--accordion {
        top: 82px;

        margin-inline: -18px;

        padding-inline: 18px;
    }
}


@media (max-width: 640px) {

    .menu-item--selectable {
        grid-template-columns:
            24px
            minmax(0, 1fr);

        gap: 8px 12px;
    }

    .menu-item__price {
        grid-column: 2;

        text-align: left;
    }

    .menu-order-bar {
        bottom: 12px;

        flex-direction: column;

        align-items: stretch;

        gap: 12px;

        padding: 15px;
    }

    .menu-order-bar__summary {
        text-align: center;
    }

    .menu-order-bar__actions {
        width: 100%;

        flex-direction: column;
    }

    .menu-order-bar button {
        width: 100%;
    }

    body.menu-order-active
    .whatsapp-float {
        bottom: 205px;
    }
}



/* =========================================================
   MENU ACCORDION — USE RESERVATION BUTTON ORANGE
   ========================================================= */

.restaurant-menu-group__toggle:hover,
.restaurant-menu-group.is-open .restaurant-menu-group__toggle {
    background: var(--gold) !important;
    color: #150d0b !important;
}

.restaurant-menu-group.is-open .restaurant-menu-group__title small,
.restaurant-menu-group__toggle:hover .restaurant-menu-group__title small {
    color: #150d0b !important;
}

.restaurant-menu-group.is-open .restaurant-menu-group__icon,
.restaurant-menu-group__toggle:hover .restaurant-menu-group__icon {
    color: #150d0b !important;
    border-color: #150d0b !important;
}


/* Optional: make active category tabs match too */
.menu-tabs--accordion button.is-active {
    background: var(--gold) !important;
    color: #150d0b !important;
}

