:root {
    --background: #f4f0e7;
    --surface: #fbf9f4;
    --text: #24241f;
    --muted: #716d64;
    --green: #3f5441;
    --green-dark: #29382b;
    --green-deep: #1d291f;
    --brown: #836348;
    --accent: #a45b38;
    --cream: #e8dfd0;
    --border: #d8d0c2;
    --white: #fff;
    --serif: "Source Serif 4", Georgia, serif;
    --sans: "Manrope", Arial, sans-serif;
    --shadow: 0 24px 60px rgba(41, 56, 43, .13);
    --container: min(90rem, calc(100% - 3rem));
    --header-offset: 9rem;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-offset); }
body { margin: 0; overflow-x: clip; color: var(--text); background: var(--background); font-family: var(--sans); font-size: 1rem; line-height: 1.68; -webkit-font-smoothing: antialiased; }
body.menu-open, body.lightbox-open { overflow: hidden; }
img { display: block; max-width: 100%; object-fit: cover; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
p, h1, h2, h3, blockquote, figure { margin-top: 0; }
h1, h2, h3 { font-family: var(--serif); line-height: 1.03; text-wrap: balance; }
h1 { font-size: clamp(3.4rem, 6.6vw, 7.2rem); font-weight: 600; letter-spacing: -.055em; }
h2 { font-size: clamp(2.5rem, 4.8vw, 5.3rem); font-weight: 600; letter-spacing: -.045em; }
h3 { font-size: clamp(1.4rem, 2vw, 2rem); font-weight: 600; }
::selection { color: var(--white); background: var(--green); }

.container { width: var(--container); margin-inline: auto; }
.section { padding: clamp(5rem, 9vw, 9rem) 0; }
.eyebrow { margin-bottom: 1.2rem; color: var(--accent); font-size: .73rem; font-weight: 700; letter-spacing: .16em; line-height: 1.3; text-transform: uppercase; }
.lead { font-family: var(--serif); font-size: clamp(1.35rem, 2vw, 1.8rem); line-height: 1.52; }
.skip-link { position: fixed; z-index: 9999; top: .75rem; left: .75rem; padding: .75rem 1rem; color: var(--white); background: var(--green-dark); transform: translateY(-200%); }
.skip-link:focus { transform: none; }
:focus-visible { outline: 3px solid #c67a50; outline-offset: 4px; }

.button { display: inline-flex; min-height: 3.4rem; align-items: center; justify-content: center; gap: .7rem; padding: .85rem 1.4rem; border: 1px solid transparent; border-radius: 0; font-size: .84rem; font-weight: 700; letter-spacing: .025em; line-height: 1; text-decoration: none; transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease; cursor: pointer; }
.button:hover { transform: translateY(-2px); }
.button-small { min-height: 2.8rem; padding: .65rem 1rem; font-size: .75rem; }
.button-solid { color: var(--white); background: var(--green-dark); }
.button-solid:hover { background: var(--green); }
.button-outline { border-color: var(--green-dark); color: var(--green-dark); background: transparent; }
.button-outline:hover { color: var(--white); background: var(--green-dark); }
.button-outline-light { border-color: rgba(255,255,255,.7); color: var(--white); }
.button-outline-light:hover { color: var(--green-dark); background: var(--white); }
.button-cream { color: var(--green-dark); background: var(--cream); }
.button-cream:hover { background: var(--white); }
.button-text, .button-text-light { min-height: auto; padding: .75rem 0; border-bottom-color: currentColor; }
.button-text { color: var(--green-dark); }
.button-text-light { color: var(--white); }
.button-row { display: flex; flex-wrap: wrap; align-items: center; gap: 1.25rem; }
.text-link { display: inline-flex; align-items: center; gap: .7rem; padding-bottom: .25rem; border-bottom: 1px solid currentColor; color: var(--green-dark); font-size: .86rem; font-weight: 700; text-decoration: none; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(.25rem); }

/* Header */
.site-header { position: sticky; z-index: 100; top: 0; width: 100%; color: var(--green-dark); background: var(--surface); transition: box-shadow .25s ease; }
.site-header.is-scrolled { box-shadow: 0 8px 35px rgba(29,41,31,.12); }
.header-status { color: var(--cream); background: var(--green-dark); font-size: .72rem; font-weight: 600; letter-spacing: .04em; }
.header-status__inner { display: flex; min-height: 2.15rem; align-items: center; gap: .55rem; }
.header-status__inner a { margin-left: auto; color: inherit; text-decoration: none; }
.status-dot { width: .48rem; height: .48rem; flex: 0 0 auto; border: 1px solid currentColor; border-radius: 50%; background: var(--accent); }
.status-dot.is-open { background: #9db987; box-shadow: 0 0 0 3px rgba(157,185,135,.14); }
.header-main { border-bottom: 1px solid var(--border); }
.header-main__inner { display: flex; min-height: 5.65rem; align-items: center; gap: 2rem; }
.brand { display: inline-flex; align-items: center; gap: .85rem; flex: 0 0 auto; text-decoration: none; }
.brand-mark { display: grid; width: 2.7rem; height: 2.7rem; place-items: center; border: 1px solid currentColor; border-radius: 50%; font-family: var(--serif); font-size: 1.5rem; font-style: italic; }
.brand-copy { display: grid; gap: .12rem; }
.brand-copy strong { font-family: var(--serif); font-size: 1.35rem; letter-spacing: .035em; line-height: 1; }
.brand-copy small { font-size: .53rem; font-weight: 700; letter-spacing: .16em; }
.desktop-nav { display: flex; align-self: stretch; align-items: center; justify-content: center; gap: clamp(.9rem, 1.6vw, 1.9rem); margin-left: auto; }
.desktop-nav a { position: relative; display: grid; height: 100%; place-items: center; font-size: .75rem; font-weight: 700; text-decoration: none; }
.desktop-nav a::after { position: absolute; right: 0; bottom: -1px; left: 0; height: 2px; background: var(--accent); content: ""; transform: scaleX(0); transform-origin: right; transition: transform .25s ease; }
.desktop-nav a:hover::after, .desktop-nav a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.header-actions { display: flex; align-items: center; gap: .8rem; }
.menu-toggle { display: none; width: 2.9rem; height: 2.9rem; padding: .65rem; border: 1px solid var(--border); background: transparent; cursor: pointer; }
.menu-toggle span { display: block; width: 100%; height: 1px; margin: .3rem 0; background: currentColor; transition: transform .25s ease, opacity .25s ease; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(.3rem) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-.3rem) rotate(-45deg); }
.mobile-menu { position: fixed; z-index: 99; inset: 7.8rem 0 0; padding: 1.5rem; color: var(--white); background: var(--green-dark); overflow-y: auto; }
.mobile-menu[hidden] { display: none; }
.mobile-menu nav { display: grid; }
.mobile-menu nav a { display: flex; align-items: center; justify-content: space-between; padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,.14); font-family: var(--serif); font-size: clamp(1.7rem, 7vw, 2.6rem); text-decoration: none; }
.mobile-menu__contact { display: grid; gap: .4rem; margin-top: 2rem; color: var(--cream); font-size: .85rem; }
.mobile-menu__contact a { font-size: 1.2rem; font-weight: 700; text-decoration: none; }

/* Hero */
.hero { position: relative; min-height: calc(100svh - var(--header-offset)); color: var(--white); background: var(--green-dark); overflow: hidden; }
.hero-media, .hero-shade { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; }
.hero-shade { background: linear-gradient(90deg, rgba(23,31,24,.72) 0%, rgba(23,31,24,.28) 62%, rgba(23,31,24,.1) 100%), linear-gradient(0deg, rgba(23,31,24,.55), transparent 45%); }
.hero-layout { position: relative; display: flex; min-height: calc(100svh - var(--header-offset)); align-items: flex-end; justify-content: space-between; gap: 3rem; padding-top: 7rem; padding-bottom: 4.4rem; }
.hero-card { width: min(50rem, 76%); min-width: 0; }
.hero-card .eyebrow { color: #dbc7af; }
.hero h1 { margin-bottom: 1.8rem; max-width: 13ch; font-size: clamp(4rem, 7.8vw, 8.6rem); text-shadow: 0 2px 18px rgba(0,0,0,.18); }
.hero h1 em { color: var(--cream); font-weight: 500; }
.hero-intro { max-width: 39rem; margin-bottom: 2rem; font-size: clamp(1.05rem, 1.5vw, 1.3rem); line-height: 1.65; }
.hero .button-solid { color: var(--green-dark); background: var(--cream); }
.hero .button-text { color: var(--white); }
.hero-hours { display: flex; flex-wrap: wrap; align-items: center; gap: .65rem; margin-top: 2.5rem; padding-top: 1.15rem; border-top: 1px solid rgba(255,255,255,.3); font-size: .8rem; }
.hero-hours span:last-child { margin-left: 1.1rem; padding-left: 1.6rem; border-left: 1px solid rgba(255,255,255,.32); }
.hero-caption { margin: 0; writing-mode: vertical-rl; color: rgba(255,255,255,.74); font-size: .62rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }

.quick-facts { color: var(--cream); background: var(--green-dark); }
.quick-facts__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.quick-fact { display: flex; min-height: 7.4rem; align-items: center; gap: 1rem; padding: 1.5rem; border-right: 1px solid rgba(255,255,255,.15); text-decoration: none; }
.quick-fact:first-child { border-left: 1px solid rgba(255,255,255,.15); }
.quick-fact span:not(.quick-icon) { display: block; margin-bottom: .23rem; color: #bdb9ad; font-size: .65rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.quick-fact strong { display: block; color: var(--white); font-size: .86rem; line-height: 1.35; }
.quick-icon { display: grid; width: 2.7rem; height: 2.7rem; flex: 0 0 auto; place-items: center; border: 1px solid rgba(255,255,255,.32); border-radius: 50%; font-family: var(--serif); font-size: 1rem; }

/* Intro */
.welcome-section { background: var(--surface); }
.split-layout { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, .82fr); align-items: center; gap: clamp(4rem, 9vw, 10rem); }
.image-composition { position: relative; padding: 0 8% 8% 0; }
.image-main { width: 100%; aspect-ratio: 4 / 5; }
.image-composition::before { position: absolute; z-index: -1; right: 0; bottom: 0; width: 55%; height: 55%; background: var(--cream); content: ""; }
.image-note { position: absolute; right: 0; bottom: 0; display: grid; min-width: 12rem; gap: .2rem; padding: 1.35rem; color: var(--white); background: var(--green-dark); }
.image-note strong { font-family: var(--serif); font-size: 1.25rem; }
.image-note span { font-size: .65rem; letter-spacing: .12em; text-transform: uppercase; }
.section-copy h2 { max-width: 10ch; }
.section-copy > p:not(.eyebrow) { max-width: 40rem; color: #47463f; }
.trust-list { display: flex; flex-wrap: wrap; gap: .6rem 1.3rem; margin: 2rem 0; padding: 1.4rem 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.trust-list span { position: relative; padding-left: 1rem; color: var(--green-dark); font-size: .76rem; font-weight: 700; }
.trust-list span::before { position: absolute; left: 0; color: var(--accent); content: "•"; }

.section-heading { margin-bottom: clamp(2.5rem, 5vw, 5rem); }
.section-heading h2 { margin-bottom: 0; }
.section-heading-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 3rem; }
.section-heading-row > p { max-width: 28rem; margin: 0 0 .5rem; color: var(--muted); }

/* Dishes */
.classics-section { background: var(--background); }
.classics-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 2.2rem 1.4rem; }
.dish-card { grid-column: span 4; }
.dish-card-large { grid-column: span 6; }
.dish-image { overflow: hidden; background: var(--cream); }
.dish-card .dish-image { aspect-ratio: 1.18 / 1; }
.dish-card-large .dish-image { aspect-ratio: 1.5 / 1; }
.dish-image img { width: 100%; height: 100%; transition: transform .5s ease; }
.dish-card:hover .dish-image img { transform: scale(1.025); }
.dish-copy { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; padding: 1.2rem 0; border-bottom: 1px solid var(--border); }
.dish-copy h3 { margin-bottom: .35rem; font-size: 1.45rem; }
.dish-copy p { margin: 0; color: var(--muted); font-size: .78rem; }
.dish-copy > strong { flex: 0 0 auto; color: var(--green-dark); font-size: .9rem; }
.centered-action { display: flex; justify-content: center; margin-top: 3.8rem; }

/* Daily */
.daily-section { color: var(--cream); background: var(--green-dark); }
.daily-layout { display: grid; grid-template-columns: minmax(0,.7fr) minmax(0,1.15fr); gap: clamp(3rem, 8vw, 8rem); }
.daily-intro { position: sticky; top: 10rem; align-self: start; }
.daily-intro .eyebrow { color: #c99876; }
.daily-intro h2 { max-width: 8ch; }
.daily-intro p:not(.eyebrow) { max-width: 30rem; color: #c5c4bc; }
.daily-intro small { display: block; margin-top: 2rem; font-weight: 700; }
.daily-board { padding: clamp(1.8rem, 4vw, 3.5rem); color: var(--text); background: var(--cream); box-shadow: var(--shadow); }
.daily-board__top { display: flex; justify-content: space-between; padding-bottom: 1rem; border-bottom: 2px solid var(--green-dark); font-size: .7rem; font-weight: 700; letter-spacing: .12em; }
.menu-line { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; padding: 1.8rem 0; border-bottom: 1px solid rgba(41,56,43,.24); }
.menu-line h3 { margin: .45rem 0 .35rem; }
.menu-line p { margin: 0; color: var(--muted); font-size: .82rem; }
.menu-line > strong { flex: 0 0 auto; }
.menu-badge { color: var(--accent); font-size: .6rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.daily-board .text-link { margin-top: 2rem; }

/* Lunch */
.lunch-section { background: var(--cream); }
.lunch-layout { display: grid; grid-template-columns: .46fr 1fr; gap: clamp(3rem, 9vw, 10rem); }
.lunch-label { display: flex; min-height: 28rem; flex-direction: column; justify-content: space-between; padding: 2rem; color: var(--cream); background: var(--accent); }
.lunch-label span { font-size: .68rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.lunch-label strong { font-family: var(--serif); font-size: clamp(2.6rem, 5vw, 5rem); font-weight: 500; line-height: .95; }
.lunch-main { align-self: center; max-width: 50rem; }
.lunch-main h2 { margin-bottom: 1rem; }
.compact-menu { margin: 2rem 0; border-top: 1px solid rgba(41,56,43,.22); }
.compact-menu > div { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid rgba(41,56,43,.22); }
.compact-menu span { display: grid; }
.compact-menu small { color: var(--muted); font-size: .72rem; }

/* Beer garden */
.beer-garden { position: relative; min-height: 52rem; color: var(--white); background: var(--green-dark); overflow: hidden; }
.beer-garden__image { position: absolute; inset: 0; }
.beer-garden__image::after { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(24,36,26,.8), rgba(24,36,26,.08) 70%); content: ""; }
.beer-garden__image img { width: 100%; height: 100%; }
.beer-garden__image img, .gallery-item:nth-child(2) img, .room-row:last-child .room-image img { object-position: 72% center; }
.beer-garden__content { position: relative; display: flex; min-height: 52rem; align-items: center; }
.beer-garden__card { max-width: 42rem; padding: clamp(2.2rem, 5vw, 4.5rem); background: rgba(29,41,31,.92); }
.beer-garden__card .eyebrow { color: #dbb18f; }
.beer-garden__card h2 { font-size: clamp(3rem, 5vw, 5.4rem); }
.beer-garden__card > p:not(.eyebrow,.weather-note) { color: #d0d0c9; }
.fact-chips { display: flex; flex-wrap: wrap; gap: .6rem; margin: 2rem 0; padding: 0; list-style: none; }
.fact-chips li { padding: .5rem .75rem; border: 1px solid rgba(255,255,255,.25); font-size: .69rem; font-weight: 700; }
.weather-note { display: grid; grid-template-columns: auto 1fr; margin: 2rem 0; padding: 1.2rem 0; border-top: 1px solid rgba(255,255,255,.2); border-bottom: 1px solid rgba(255,255,255,.2); }
.weather-note > span { grid-row: span 2; margin-right: 1rem; font-size: 1.8rem; }
.weather-note small { color: #b9bdb7; }

.beer-specials { background: var(--surface); }
.menu-list-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 0 3rem; border-top: 1px solid var(--border); }
.menu-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 1.5rem; padding: 1.25rem 0; border-bottom: 1px solid var(--border); }
.menu-row > span { display: grid; }
.menu-row strong { font-family: var(--serif); font-size: 1.18rem; }
.menu-row small { margin-top: .18rem; color: var(--muted); font-size: .76rem; }
.menu-row b { flex: 0 0 auto; font-size: .85rem; }

/* Celebrations & events */
.celebrations-teaser { background: var(--background); }
.celebration-layout { display: grid; grid-template-columns: minmax(0,.8fr) minmax(0,1fr); align-items: center; gap: clamp(4rem, 9vw, 9rem); }
.celebration-copy h2 { max-width: 10ch; }
.celebration-copy > p:not(.eyebrow) { max-width: 38rem; }
.room-strip { display: flex; gap: clamp(1.4rem, 3vw, 3rem); margin: 2.3rem 0; padding: 1.5rem 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.room-strip div { display: grid; }
.room-strip strong { color: var(--green); font-family: var(--serif); font-size: 2rem; }
.room-strip span { color: var(--muted); font-size: .65rem; font-weight: 700; text-transform: uppercase; }
.celebration-images { position: relative; padding: 0 0 10% 12%; }
.celebration-images img:first-child { width: 100%; aspect-ratio: 4 / 5; }
.celebration-images img:last-child { position: absolute; bottom: 0; left: 0; width: 48%; aspect-ratio: 4 / 3; border: .65rem solid var(--background); }

.events-section { background: var(--cream); }
.events-list { border-top: 1px solid rgba(41,56,43,.25); }
.event-row { display: grid; grid-template-columns: 4rem minmax(12rem,.8fr) minmax(15rem,1fr) auto; align-items: center; gap: 2rem; padding: 1.8rem 1rem; border-bottom: 1px solid rgba(41,56,43,.25); transition: color .2s ease, background .2s ease; }
.event-row:hover { color: var(--white); background: var(--green); }
.event-number { color: var(--accent); font-family: var(--serif); font-size: .9rem; }
.event-row h3 { margin: .15rem 0 0; }
.event-row p { margin: 0; font-size: .8rem; }
.event-row > div p { color: var(--accent); font-size: .63rem; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.event-row:hover .event-number, .event-row:hover > div p { color: #f0c7aa; }
.event-row a { font-size: .75rem; font-weight: 700; text-decoration: none; }

.seasonal-section { background: var(--surface); }
.seasonal-layout { display: grid; grid-template-columns: .84fr 1fr; align-items: center; gap: clamp(4rem, 9vw, 10rem); }
.seasonal-image img { width: 100%; aspect-ratio: 4 / 5; }
.seasonal-copy > p:not(.eyebrow) { max-width: 38rem; }
.season-list { margin: 2.5rem 0 0; padding: 0; border-top: 1px solid var(--border); list-style: none; }
.season-list li { display: grid; grid-template-columns: 3rem 1fr auto; align-items: center; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--border); }
.season-list li span { color: var(--accent); font-size: .65rem; }
.season-list li strong { font-family: var(--serif); font-size: 1.3rem; }
.season-list li em { color: var(--muted); font-family: var(--serif); font-size: 1rem; }

/* Gallery */
.gallery-section { background: var(--background); }
.gallery-grid { display: grid; grid-auto-rows: 16rem; grid-template-columns: repeat(4, 1fr); gap: .8rem; }
.gallery-item { position: relative; padding: 0; border: 0; background: var(--cream); overflow: hidden; cursor: zoom-in; }
.gallery-item:nth-child(1), .gallery-item:nth-child(7) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(4), .gallery-item:nth-child(9) { grid-column: span 2; }
.gallery-item img { width: 100%; height: 100%; transition: transform .45s ease; }
.gallery-item span { position: absolute; right: 0; bottom: 0; left: 0; padding: 2.5rem 1rem 1rem; color: var(--white); background: linear-gradient(transparent, rgba(20,27,21,.78)); font-size: .73rem; font-weight: 700; text-align: left; transform: translateY(20%); opacity: 0; transition: transform .25s ease, opacity .25s ease; }
.gallery-item:hover img { transform: scale(1.035); }
.gallery-item:hover span, .gallery-item:focus-visible span { transform: none; opacity: 1; }

.lightbox { position: fixed; z-index: 1000; inset: 0; display: grid; grid-template-columns: 5rem minmax(0,1fr) 5rem; align-items: center; padding: 2rem; color: var(--white); background: rgba(14,20,15,.97); }
.lightbox[hidden] { display: none; }
.lightbox figure { display: grid; max-width: 78rem; max-height: calc(100vh - 4rem); margin: auto; place-items: center; }
.lightbox img { max-height: calc(100vh - 8rem); }
.lightbox figcaption { margin-top: .8rem; font-size: .8rem; }
.lightbox button { width: 3rem; height: 3rem; border: 1px solid rgba(255,255,255,.4); color: var(--white); background: transparent; font-size: 1.5rem; cursor: pointer; }
.lightbox-close { position: absolute; top: 1.2rem; right: 1.2rem; }
.lightbox-prev { justify-self: start; }
.lightbox-next { justify-self: end; }

/* Reviews & CTA */
.reviews-section { color: var(--cream); background: var(--green-dark); }
.reviews-layout { display: grid; grid-template-columns: .55fr 1fr; gap: clamp(3rem, 8vw, 8rem); }
.review-score .eyebrow { color: #d5a382; }
.stars { color: #d8b169; font-size: 1.1rem; letter-spacing: .22em; }
.review-score > strong { display: block; margin: 1rem 0; font-family: var(--serif); font-size: clamp(4rem, 8vw, 8rem); font-weight: 500; line-height: .8; }
.review-score > strong span { color: #aeb4ab; font-size: 1.2rem; }
.review-score small { color: #afb2ab; }
.reviews-list { border-top: 1px solid rgba(255,255,255,.2); }
.reviews-list blockquote { display: grid; grid-template-columns: 1fr auto; gap: 2rem; margin: 0; padding: 1.7rem 0; border-bottom: 1px solid rgba(255,255,255,.2); }
.reviews-list blockquote p { margin: 0; font-family: var(--serif); font-size: clamp(1.25rem, 2vw, 1.7rem); line-height: 1.45; }
.reviews-list cite { color: #b8bcb6; font-size: .72rem; font-style: normal; }
.cta-section { padding: clamp(4rem, 7vw, 7rem) 0; color: var(--white); background: var(--accent); }
.cta-layout { display: grid; grid-template-columns: 1fr 1fr; align-items: end; gap: 4rem; }
.cta-layout .eyebrow { color: #f2d5c2; }
.cta-layout h2 { margin-bottom: 0; }
.cta-layout > div:last-child > p { max-width: 32rem; }

/* Subpage hero */
.subhero { position: relative; padding: clamp(5rem, 9vw, 9rem) 0; overflow: hidden; }
.subhero::after { position: absolute; z-index: -1; right: -10%; bottom: -28rem; width: 44rem; height: 44rem; border: 1px solid rgba(41,56,43,.12); border-radius: 50%; content: ""; }
.subhero-layout { display: grid; grid-template-columns: .8fr 1fr; align-items: center; gap: clamp(3rem, 8vw, 8rem); }
.subhero-layout h1 { font-size: clamp(3.8rem, 7vw, 7.4rem); }
.subhero-layout > div:first-child > p:last-child { max-width: 33rem; }
.subhero-image { position: relative; padding: 0 0 8% 8%; }
.subhero-image::before { position: absolute; z-index: -1; bottom: 0; left: 0; width: 55%; height: 55%; background: var(--cream); content: ""; }
.subhero-image img { width: 100%; aspect-ratio: 5 / 4; }
.subhero-daily, .subhero-reservation, .subhero-contact, .subhero-legal { color: var(--cream); background: var(--green-dark); }
.subhero-daily .eyebrow, .subhero-reservation .eyebrow, .subhero-contact .eyebrow, .subhero-legal .eyebrow { color: #d49d78; }
.narrow-heading { max-width: 70rem; text-align: center; }
.narrow-heading h1 { margin-bottom: 1.4rem; }
.narrow-heading > p:last-child { max-width: 46rem; margin-inline: auto; color: #caccc7; }

/* Menu page */
.menu-page-section { background: var(--surface); }
.menu-page-layout { display: grid; grid-template-columns: 15rem 1fr; align-items: start; gap: clamp(3rem, 8vw, 8rem); }
.menu-index { position: sticky; top: 9.5rem; padding: 1.5rem 0; border-top: 2px solid var(--green-dark); border-bottom: 1px solid var(--border); }
.menu-index > p { font-size: .65rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.menu-index nav { display: grid; }
.menu-index nav a { padding: .45rem 0; color: var(--muted); font-family: var(--serif); text-decoration: none; }
.menu-index nav a:hover { color: var(--accent); }
.menu-index small { display: block; margin-top: 1.5rem; color: var(--muted); font-size: .7rem; }
.menu-category { margin-bottom: 5rem; scroll-margin-top: 10rem; }
.menu-category__title { display: flex; align-items: center; gap: 1rem; padding-bottom: 1rem; border-bottom: 2px solid var(--green-dark); }
.menu-category__title span { color: var(--accent); }
.menu-category h2 { margin: 0; font-size: clamp(2.3rem, 4vw, 4rem); }
.menu-note-section { padding: 3rem 0; color: var(--cream); background: var(--green); }
.menu-note-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 3rem; }
.menu-note-grid div { display: grid; gap: .35rem; }
.menu-note-grid strong { font-family: var(--serif); font-size: 1.3rem; }
.menu-note-grid span { color: #d4d7d1; font-size: .75rem; }

/* Tageskarte page */
.daily-page-section { background: var(--cream); }
.daily-page-layout { display: grid; grid-template-columns: .45fr 1fr; gap: clamp(3rem, 8vw, 8rem); }
.daily-page-note { align-self: start; padding: 2rem; color: var(--cream); background: var(--green-dark); }
.daily-page-note > span { font-size: .63rem; font-weight: 700; letter-spacing: .14em; }
.daily-page-note p { margin: 8rem 0 0; font-family: var(--serif); font-size: 1.4rem; }
.daily-page-menu { border-top: 2px solid var(--green-dark); }
.daily-page-dish { display: grid; grid-template-columns: 3.5rem 1fr auto; align-items: end; gap: 1.5rem; padding: 2.2rem 0; border-bottom: 1px solid rgba(41,56,43,.28); }
.daily-page-dish > span { align-self: start; color: var(--accent); font-family: var(--serif); }
.daily-page-dish small { color: var(--accent); font-size: .62rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.daily-page-dish h2 { margin: .4rem 0 .3rem; font-size: clamp(2rem, 4vw, 3.6rem); }
.daily-page-dish p { margin: 0; color: var(--muted); }
.daily-page-dish > strong { font-size: 1rem; }
.lunch-page { background: var(--surface); }
.lunch-page-layout { display: grid; grid-template-columns: .8fr 1fr; align-items: center; gap: clamp(4rem, 9vw, 10rem); }
.lunch-page-image img { width: 100%; aspect-ratio: 4 / 5; }
.lunch-page .menu-list { margin: 2rem 0; border-top: 1px solid var(--border); }
.fine-note { color: var(--muted); font-size: .75rem; }
.empty-state { text-align: center; }

/* Contact */
.contact-section { background: var(--surface); }
.contact-layout { display: grid; grid-template-columns: .8fr 1fr; align-items: stretch; gap: clamp(3rem, 8vw, 8rem); }
.contact-main address { margin: 1.5rem 0 2rem; font-family: var(--serif); font-size: clamp(2rem, 4vw, 3.7rem); font-style: normal; line-height: 1.15; }
.contact-links { display: grid; margin: 2rem 0; border-top: 1px solid var(--border); }
.contact-links a { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--border); text-decoration: none; }
.contact-links span { color: var(--muted); font-size: .7rem; text-transform: uppercase; }
.contact-facts { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem 1rem; margin: 2rem 0 0; padding: 0; list-style: none; }
.contact-facts li { position: relative; padding-left: 1rem; font-size: .75rem; }
.contact-facts li::before { position: absolute; left: 0; color: var(--accent); content: "•"; }
.map-placeholder { min-height: 37rem; display: grid; grid-template-rows: 1fr auto; border: 1px solid var(--border); background: var(--cream); }
.map-pattern { position: relative; min-height: 25rem; background-color: #d8d7c8; background-image: linear-gradient(30deg, transparent 47%, rgba(63,84,65,.18) 48%, rgba(63,84,65,.18) 52%, transparent 53%), linear-gradient(120deg, transparent 47%, rgba(63,84,65,.12) 48%, rgba(63,84,65,.12) 52%, transparent 53%); background-size: 8rem 8rem; }
.map-pin { position: absolute; top: 45%; left: 54%; display: grid; width: 3.8rem; height: 3.8rem; place-items: center; border: 5px solid var(--cream); border-radius: 50%; color: var(--white); background: var(--accent); font-family: var(--serif); font-size: 1.4rem; box-shadow: 0 10px 25px rgba(41,56,43,.25); }
.map-pin::after { position: absolute; bottom: -.65rem; left: 50%; border-top: .8rem solid var(--accent); border-right: .55rem solid transparent; border-left: .55rem solid transparent; content: ""; transform: translateX(-50%); }
.map-placeholder > div:last-child { padding: 1.5rem; }
.map-placeholder > div:last-child > span { font-family: var(--serif); font-size: 1.3rem; font-weight: 700; }
.map-placeholder > div:last-child p { margin: .3rem 0 1rem; color: var(--muted); font-size: .75rem; }
.hours-section { background: var(--background); }
.hours-layout { display: grid; grid-template-columns: .8fr 1fr; gap: clamp(4rem, 8vw, 8rem); }
.hours-table { margin: 0; border-top: 2px solid var(--green-dark); }
.hours-table div { display: flex; justify-content: space-between; gap: 1.5rem; padding: .85rem 0; border-bottom: 1px solid var(--border); }
.hours-table dt { font-weight: 700; }
.hours-table dt span { margin-left: .5rem; padding: .15rem .4rem; color: var(--white); background: var(--accent); font-size: .55rem; text-transform: uppercase; }
.hours-table dd { margin: 0; color: var(--muted); text-align: right; }
.hours-table .is-today { color: var(--green-dark); background: rgba(63,84,65,.07); }

/* Forms */
.form-section, .event-form-section { background: var(--surface); }
.form-layout { display: grid; grid-template-columns: .58fr 1fr; align-items: start; gap: clamp(3rem, 8vw, 8rem); }
.form-side { position: sticky; top: 10rem; }
.form-side h2 { font-size: clamp(2.8rem, 5vw, 4.8rem); }
.form-side ul { display: grid; gap: .7rem; margin: 2rem 0; padding: 1.5rem 0 0; border-top: 1px solid var(--border); list-style: none; }
.form-side li { position: relative; padding-left: 1rem; font-size: .78rem; }
.form-side li::before { position: absolute; left: 0; color: var(--accent); content: "•"; }
.phone-card { display: grid; gap: .2rem; margin-top: 2rem; padding: 1.2rem; color: var(--cream); background: var(--green-dark); text-decoration: none; }
.phone-card span { font-size: .65rem; letter-spacing: .1em; text-transform: uppercase; }
.phone-card strong { font-family: var(--serif); font-size: 1.8rem; }
.form-panel { padding: clamp(1.6rem, 4vw, 3.5rem); border: 1px solid var(--border); background: var(--background); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.field { display: grid; align-content: start; gap: .4rem; }
.field-wide { grid-column: 1 / -1; }
.field label, .field legend { color: var(--green-dark); font-size: .72rem; font-weight: 700; }
.field label span { color: var(--muted); font-weight: 400; }
.field input, .field select, .field textarea { width: 100%; min-height: 3.25rem; padding: .75rem .85rem; border: 1px solid var(--border); border-radius: 0; color: var(--text); background: var(--surface); }
.field textarea { min-height: 8rem; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--green); outline: 2px solid rgba(63,84,65,.16); outline-offset: 0; }
.field [aria-invalid="true"] { border-color: #a33f32; }
.field-error { color: #8e3026; font-size: .68rem; font-weight: 700; }
.field-hint { color: var(--muted); font-size: .68rem; }
fieldset.field { min-width: 0; margin: 0; padding: 0; border: 0; }
.radio-group { display: flex; flex-wrap: wrap; gap: .6rem; }
.radio-group label { position: relative; cursor: pointer; }
.radio-group input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.radio-group span { display: inline-flex; min-height: 3rem; align-items: center; padding: .7rem 1rem; border: 1px solid var(--border); background: var(--surface); }
.radio-group input:checked + span { border-color: var(--green-dark); color: var(--white); background: var(--green-dark); }
.radio-group input:focus-visible + span { outline: 3px solid #c67a50; outline-offset: 3px; }
.consent { display: flex; align-items: flex-start; gap: .8rem; margin: 1.5rem 0; color: var(--muted); font-size: .72rem; }
.consent input { width: 1.1rem; height: 1.1rem; flex: 0 0 auto; margin-top: .2rem; accent-color: var(--green); }
.button-submit { width: 100%; }
.demo-note { margin: .8rem 0 0; color: var(--muted); font-size: .65rem; text-align: center; }
.form-summary, .form-alert { display: grid; margin-bottom: 1.3rem; padding: 1rem; border-left: 4px solid #a33f32; color: #68231d; background: #f3ded8; font-size: .76rem; }
.success-message { display: grid; min-height: 30rem; align-content: center; justify-items: start; }
.success-message > span { display: grid; width: 4rem; height: 4rem; margin-bottom: 2rem; place-items: center; border-radius: 50%; color: var(--white); background: var(--green); font-size: 1.8rem; }
.success-message h2 { font-size: clamp(2.4rem, 5vw, 4.3rem); }

/* Celebration page */
.celebration-hero { position: relative; min-height: calc(100svh - var(--header-offset)); color: var(--white); overflow: hidden; }
.celebration-hero__image, .celebration-hero__shade { position: absolute; inset: 0; }
.celebration-hero__image img { width: 100%; height: 100%; }
.celebration-hero__shade { background: linear-gradient(90deg, rgba(24,34,25,.78), rgba(24,34,25,.1)); }
.celebration-hero__content { position: relative; display: flex; min-height: calc(100svh - var(--header-offset)); flex-direction: column; align-items: flex-start; justify-content: center; }
.celebration-hero__content .eyebrow { color: #e2b99e; }
.celebration-hero__content h1 { margin-bottom: 1.5rem; }
.celebration-hero__content p:not(.eyebrow) { max-width: 38rem; font-size: 1.1rem; }
.celebration-intro { background: var(--surface); }
.intro-editorial { display: grid; grid-template-columns: .35fr 1fr .65fr; align-items: start; gap: 3rem; }
.intro-editorial h2 { margin: 0; }
.intro-editorial > p:last-child { color: var(--muted); }
.rooms-section { padding-bottom: clamp(5rem, 10vw, 10rem); background: var(--surface); }
.rooms-list { display: grid; gap: clamp(4rem, 9vw, 9rem); }
.room-row { display: grid; grid-template-columns: 3rem 1fr .72fr; align-items: center; gap: clamp(2rem, 5vw, 5rem); }
.room-row > span { align-self: start; color: var(--accent); font-family: var(--serif); }
.room-row-reverse { grid-template-columns: 3rem .72fr 1fr; }
.room-row-reverse .room-image { grid-column: 3; }
.room-row-reverse > div:last-child { grid-column: 2; grid-row: 1; }
.room-image img { width: 100%; aspect-ratio: 4 / 3; }
.room-row h2 { margin-bottom: 1rem; font-size: clamp(2.7rem, 5vw, 5rem); }
.room-row > div:last-child p:last-child { color: var(--muted); }
.celebration-services { color: var(--cream); background: var(--green-dark); }
.celebration-services .eyebrow { color: #d49d78; }
.service-lines { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid rgba(255,255,255,.2); }
.service-lines div { display: grid; gap: 6rem; padding: 1.5rem; border-right: 1px solid rgba(255,255,255,.2); }
.service-lines strong { font-family: var(--serif); font-size: 1.35rem; }
.service-lines span { color: #bdc1bb; font-size: .72rem; }

/* Legal */
.legal-section { background: var(--surface); }
.legal-content { max-width: 54rem; }
.legal-content h2 { margin-top: 3rem; font-size: 2rem; letter-spacing: -.02em; }
.legal-content p { color: #4f4d46; }
.demo-banner { margin-bottom: 3rem; padding: 1.2rem; border-left: 4px solid var(--accent); background: var(--cream); }

/* Footer */
.site-footer { padding: 5rem 0 1.2rem; color: var(--cream); background: var(--green-deep); }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr 1.2fr .65fr; gap: clamp(2.5rem, 5vw, 5rem); }
.brand-footer { color: var(--cream); }
.footer-brand > p { max-width: 24rem; margin-top: 1.5rem; color: #aeb3aa; font-size: .78rem; }
.site-footer h2 { margin-bottom: 1.3rem; color: var(--white); font-family: var(--sans); font-size: .67rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.site-footer address { color: #c4c7c0; font-size: .75rem; font-style: normal; }
.site-footer a { text-decoration: none; }
.footer-socials { display: flex; gap: 1.2rem; }
.footer-socials a { border-bottom: 1px solid rgba(255,255,255,.4); font-size: .7rem; }
.footer-detail { color: #92988f; font-size: .65rem; }
.footer-hours { margin: 0; }
.footer-hours div { display: flex; justify-content: space-between; gap: 1.2rem; padding: .26rem 0; color: #aeb3aa; font-size: .67rem; }
.footer-hours dt { font-weight: 700; }
.footer-hours dd { margin: 0; text-align: right; }
.footer-hours .is-today { color: var(--white); }
.footer-nav { display: grid; gap: .42rem; color: #b5b9b1; font-size: .72rem; }
.footer-nav a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; gap: 2rem; margin-top: 4rem; padding-top: 1.2rem; border-top: 1px solid rgba(255,255,255,.13); color: #858c82; font-size: .62rem; }
.mobile-bottom-bar { display: none; }

/* Reveal */
[data-reveal] { opacity: 0; transform: translateY(1.5rem); transition: opacity .65s ease, transform .65s ease; }
[data-reveal].is-visible { opacity: 1; transform: none; }

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