:root {
  --ink: #1e211d;
  --cream: #f2ede3;
  --paper: #faf7f0;
  --sage: #7e8971;
  --clay: #b65f42;
  --line: rgba(30, 33, 29, 0.18);
  --serif: "Newsreader", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--sans); font-size: 16px; line-height: 1.6; }
body.modal-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button { color: inherit; }
img { display: block; width: 100%; }
h1, h2, h3, h4, p { margin-top: 0; }
h1, h2 { font-family: var(--serif); font-weight: 400; line-height: .98; letter-spacing: -.04em; }
h2 { font-size: clamp(3.2rem, 7vw, 7.2rem); }
:focus-visible { outline: 3px solid #e7a07f; outline-offset: 4px; }
.sr-only { position: absolute; width: 1px; height: 1px; clip: rect(0,0,0,0); overflow: hidden; white-space: nowrap; }
.skip-link { position: fixed; top: 10px; left: 10px; z-index: 100; padding: 10px 14px; background: white; transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }

.demo-bar { position: fixed; z-index: 60; inset: 0 0 auto; height: 32px; padding: 0 4vw; display: flex; align-items: center; justify-content: center; gap: 18px; color: #34372f; background: #e5ddce; border-bottom: 1px solid rgba(30,33,29,.12); font-size: .64rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.demo-bar a { padding-bottom: 1px; border-bottom: 1px solid currentColor; }

.site-header { position: fixed; inset: 32px 0 auto; z-index: 50; height: 86px; padding: 0 4vw; display: flex; align-items: center; justify-content: space-between; color: white; transition: background .35s, height .35s, color .35s; }
.site-header.scrolled { height: 68px; color: var(--ink); background: rgba(250,247,240,.94); border-bottom: 1px solid var(--line); backdrop-filter: blur(14px); }
.brand { display: inline-flex; align-items: center; gap: 10px; font-size: .92rem; font-weight: 600; letter-spacing: .12em; }
.brand svg { width: 27px; fill: var(--clay); }
.brand i { font-family: var(--serif); font-weight: 400; font-size: 1.25em; }
nav { display: flex; align-items: center; gap: 32px; font-size: .86rem; font-weight: 500; }
nav > a { position: relative; }
nav > a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -4px; height: 1px; background: currentColor; transition: right .25s; }
nav > a:hover::after { right: 0; }
.nav-toggle { display: none; border: 0; background: none; padding: 10px; }
.nav-toggle span { display: block; width: 24px; height: 1px; margin: 5px 0; background: currentColor; }

.button { display: inline-flex; justify-content: center; align-items: center; min-height: 52px; padding: 0 25px; border: 1px solid transparent; border-radius: 100px; font-size: .82rem; font-weight: 600; letter-spacing: .04em; cursor: pointer; transition: transform .2s, background .2s, color .2s; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: white; background: var(--clay); }
.button-primary:hover { background: #984a34; }
.button-small { min-height: 42px; padding: 0 20px; }
.button-light { color: var(--ink); background: var(--cream); }
.site-header.scrolled .button-light { color: white; background: var(--ink); }
.text-link { display: inline-flex; gap: 12px; align-items: center; padding-bottom: 5px; border-bottom: 1px solid currentColor; font-size: .86rem; font-weight: 500; }
.text-link span { transition: transform .2s; }
.text-link:hover span { transform: translate(3px, 3px); }
.text-link.dark { margin-top: 22px; }
.eyebrow { margin-bottom: 20px; font-size: .72rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; }
.section { padding: 130px 7vw; }

.hero { position: relative; min-height: 100svh; display: flex; align-items: center; color: white; background: url("assets/hero.png") center / cover no-repeat; overflow: hidden; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(13,14,12,.77) 0%, rgba(13,14,12,.37) 44%, rgba(13,14,12,.08) 78%), linear-gradient(0deg, rgba(13,14,12,.38), transparent 45%); }
.hero-content { position: relative; z-index: 1; width: min(830px, 85vw); margin-left: 7vw; padding-top: 50px; }
.hero h1 { margin-bottom: 30px; font-size: clamp(4.4rem, 9vw, 9.2rem); }
.hero h1 em { color: #df9c7d; font-weight: 400; }
.hero-copy { max-width: 530px; margin-bottom: 36px; color: rgba(255,255,255,.82); font-size: 1.1rem; }
.hero-actions { display: flex; align-items: center; gap: 28px; }
.hero-note { position: absolute; z-index: 1; right: 5vw; bottom: 52px; display: flex; gap: 14px; align-items: center; font-size: .8rem; }
.hero-note span::before { content: ""; display: inline-block; width: 7px; height: 7px; margin-right: 9px; border-radius: 50%; background: #a8bd8c; box-shadow: 0 0 0 5px rgba(168,189,140,.15); }
.scroll-cue { position: absolute; z-index: 1; left: 50%; bottom: 46px; width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.45); border-radius: 50%; animation: bob 2s infinite; }
@keyframes bob { 50% { transform: translateY(6px); } }

.intro { background: var(--cream); }
.intro-grid { display: grid; grid-template-columns: 1.55fr .7fr; gap: 10vw; align-items: end; }
.intro h2 { margin-bottom: 0; font-size: clamp(3.8rem, 7vw, 7.6rem); }
.intro-copy { max-width: 480px; padding-bottom: 12px; font-size: 1.08rem; }

.menu-section { background: var(--paper); }
.section-heading { display: flex; align-items: end; justify-content: space-between; padding-bottom: 38px; border-bottom: 1px solid var(--line); }
.section-heading h2 { margin: 0; }
.menu-tabs { display: flex; gap: 6px; padding: 5px; border: 1px solid var(--line); border-radius: 100px; }
.menu-tab { padding: 10px 20px; border: 0; border-radius: 100px; background: transparent; cursor: pointer; font-size: .82rem; }
.menu-tab.active { color: white; background: var(--ink); }
.menu-panel { display: grid; grid-template-columns: repeat(3, 1fr); gap: 5vw; padding-top: 60px; }
.menu-panel[hidden] { display: none; }
.menu-panel#panel-lunch { grid-template-columns: 1fr 1fr; }
.menu-column h3 { margin-bottom: 30px; color: var(--clay); font-family: var(--serif); font-size: 1.9rem; font-weight: 400; }
.menu-item { display: flex; justify-content: space-between; gap: 25px; padding: 20px 0; border-top: 1px solid var(--line); }
.menu-item h4 { margin-bottom: 4px; font-size: .98rem; font-weight: 600; }
.menu-item h4 span { display: inline-grid; place-items: center; width: 20px; height: 20px; margin-left: 5px; border: 1px solid var(--sage); border-radius: 50%; color: var(--sage); font-size: .58rem; }
.menu-item p { margin: 0; color: #64685f; font-size: .82rem; }
.menu-item strong { font-family: var(--serif); font-size: 1.15rem; font-weight: 500; }
.lunch-note { align-self: center; padding: 50px; background: var(--cream); }
.lunch-note p { margin-bottom: 6px; font-family: var(--serif); font-size: 2.2rem; }
.lunch-note span { color: #666b63; }
.allergy-note { margin: 52px 0 0; color: #70736d; font-size: .75rem; }

.feature-image { position: relative; margin: 0 3vw; height: min(76vw, 860px); overflow: hidden; }
.feature-image img { height: 100%; object-fit: cover; transition: transform 1s cubic-bezier(.2,.8,.2,1); }
.feature-image:hover img { transform: scale(1.025); }
.image-caption { position: absolute; left: 34px; bottom: 32px; padding: 18px 22px; color: white; background: rgba(30,33,29,.8); backdrop-filter: blur(10px); }
.image-caption span, .image-caption strong { display: block; }
.image-caption span { margin-bottom: 2px; color: #d8cfc0; font-size: .68rem; letter-spacing: .15em; text-transform: uppercase; }
.image-caption strong { font-family: var(--serif); font-size: 1.3rem; font-weight: 400; }

.story { display: grid; grid-template-columns: 1.05fr .95fr; gap: 8vw; align-items: center; color: white; background: var(--ink); }
.story-image { min-height: 720px; overflow: hidden; }
.story-image img { height: 100%; min-height: 720px; object-fit: cover; }
.story-copy { max-width: 620px; padding-right: 4vw; }
.story-copy h2 { margin-bottom: 36px; color: #f0e8da; }
.story-copy > p:not(.eyebrow) { max-width: 530px; color: #c9c9c1; }
blockquote { margin: 52px 0 10px; padding-top: 38px; border-top: 1px solid rgba(255,255,255,.18); font-family: var(--serif); font-size: clamp(1.7rem, 3vw, 2.6rem); line-height: 1.2; }
.signature { color: #a6a99f; font-size: .8rem; }

.reviews { background: var(--cream); }
.reviews-header { display: flex; align-items: end; justify-content: space-between; margin-bottom: 55px; }
.reviews-header h2 { margin: 0; font-size: clamp(3.5rem, 6vw, 6.3rem); }
.demo-pill { margin-bottom: 10px; padding: 8px 13px; border: 1px solid var(--line); border-radius: 100px; color: #6f736b; font-size: .68rem; }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.review-card { min-height: 300px; padding: 35px; display: flex; flex-direction: column; background: var(--paper); }
.stars { margin-bottom: 35px; color: var(--clay); letter-spacing: .16em; font-size: .75rem; }
.review-card p { flex: 1; font-family: var(--serif); font-size: 1.5rem; line-height: 1.28; }
.review-card span { color: #72766f; font-size: .76rem; }

.visit { display: grid; grid-template-columns: 1fr 1fr; gap: 7vw; align-items: center; }
.visit-copy h2 { margin-bottom: 55px; }
.visit-details { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-bottom: 45px; }
.visit-details span { display: block; margin-bottom: 12px; color: var(--clay); font-size: .68rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.visit-details p { font-size: .83rem; }
.visit-details small { color: #898d85; font-size: .65rem; }
.map-card { position: relative; min-height: 650px; overflow: hidden; background: #d8d4c5; }
.map-grid { position: absolute; inset: 0; opacity: .25; background-image: linear-gradient(rgba(30,33,29,.2) 1px, transparent 1px), linear-gradient(90deg, rgba(30,33,29,.2) 1px, transparent 1px); background-size: 70px 70px; transform: rotate(-8deg) scale(1.3); }
.map-road { position: absolute; height: 34px; background: var(--paper); border: 1px solid rgba(30,33,29,.1); transform-origin: left; }
.road-a { width: 130%; left: -15%; top: 33%; transform: rotate(18deg); }
.road-b { width: 120%; left: -10%; top: 68%; transform: rotate(-14deg); }
.road-c { width: 100%; left: 43%; top: -10%; transform: rotate(75deg); }
.map-water { position: absolute; width: 55%; height: 30%; right: -15%; bottom: -7%; border-radius: 50% 0 0 0; background: #9eafb0; }
.map-pin { position: absolute; top: 46%; left: 48%; width: 64px; height: 64px; display: grid; place-items: center; border-radius: 50% 50% 50% 0; background: var(--clay); box-shadow: 0 10px 28px rgba(30,33,29,.22); transform: rotate(-45deg); }
.map-pin svg { width: 30px; fill: white; transform: rotate(45deg); }
.map-label { position: absolute; top: calc(46% + 80px); left: calc(48% - 17px); padding: 8px 12px; background: var(--paper); font-family: var(--serif); font-size: 1.1rem; box-shadow: 0 6px 18px rgba(30,33,29,.12); }

footer { padding: 80px 7vw 28px; display: grid; grid-template-columns: 1fr 1fr auto; gap: 30px; align-items: start; color: white; background: var(--ink); }
.footer-brand { font-size: 1.05rem; }
footer p { color: #a9aca3; font-size: .8rem; }
footer > div { display: flex; gap: 25px; font-size: .78rem; }
footer small { grid-column: 1 / -1; margin-top: 55px; padding-top: 25px; border-top: 1px solid rgba(255,255,255,.15); color: #82867d; font-size: .67rem; }
.mobile-booking { display: none; }

.booking-dialog { width: min(650px, calc(100% - 30px)); max-height: 92vh; padding: 54px; border: 0; color: var(--ink); background: var(--paper); box-shadow: 0 30px 100px rgba(0,0,0,.35); }
.booking-dialog::backdrop { background: rgba(18,20,17,.75); backdrop-filter: blur(6px); }
.dialog-close { position: absolute; top: 17px; right: 20px; border: 0; background: none; font-family: var(--serif); font-size: 2rem; cursor: pointer; }
.booking-dialog h2 { margin-bottom: 15px; font-size: 3.2rem; }
.booking-intro > p:last-child { color: #777b73; font-size: .8rem; }
form { display: grid; gap: 18px; margin-top: 32px; }
label { display: grid; gap: 7px; font-size: .72rem; font-weight: 600; letter-spacing: .06em; }
input, select { width: 100%; min-height: 50px; padding: 0 14px; border: 1px solid var(--line); border-radius: 0; color: var(--ink); background: white; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
form .button { margin-top: 8px; }
.booking-success { padding: 60px 0 10px; text-align: center; }
.booking-success > span { display: grid; place-items: center; width: 60px; height: 60px; margin: 0 auto 25px; border-radius: 50%; color: white; background: var(--sage); font-size: 1.5rem; }
.booking-success p { color: #70736d; }

.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s ease, transform .8s ease; }
.js .reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
  .site-header { height: 70px; }
  .nav-toggle { display: block; z-index: 2; }
  nav { position: fixed; inset: 0; padding: 110px 7vw; display: none; flex-direction: column; align-items: flex-start; gap: 28px; color: var(--ink); background: var(--cream); font-family: var(--serif); font-size: 2.6rem; }
  nav.open { display: flex; }
  nav .button { margin-top: 20px; font-family: var(--sans); font-size: .8rem; }
  .site-header.menu-open { color: var(--ink); }
  .section { padding: 90px 6vw; }
  .hero-content { margin-left: 6vw; }
  .intro-grid, .story, .visit { grid-template-columns: 1fr; }
  .intro-grid { gap: 42px; }
  .menu-panel { grid-template-columns: 1fr; gap: 30px; }
  .story { gap: 55px; }
  .story-image, .story-image img { min-height: 500px; }
  .story-copy { padding: 0 0 20px; }
  .review-grid { grid-template-columns: 1fr; }
  .visit-details { grid-template-columns: repeat(2, 1fr); }
  .map-card { min-height: 500px; }
  footer { grid-template-columns: 1fr 1fr; }
  footer > div { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  .demo-bar { padding: 0 12px; justify-content: space-between; gap: 8px; letter-spacing: .06em; }
  .brand span { font-size: .77rem; }
  .hero { align-items: flex-end; padding-bottom: 120px; background-position: 64% center; }
  .hero-shade { background: linear-gradient(0deg, rgba(13,14,12,.88) 0%, rgba(13,14,12,.42) 70%, rgba(13,14,12,.2)); }
  .hero-content { width: 88vw; padding-top: 0; }
  .hero h1 { font-size: clamp(3.7rem, 17vw, 5.8rem); }
  .hero-copy { font-size: .96rem; }
  .hero-actions .button { display: none; }
  .hero-note { left: 6vw; right: auto; bottom: 35px; }
  .scroll-cue { display: none; }
  .section-heading { align-items: flex-start; flex-direction: column; gap: 28px; }
  .menu-tabs { width: 100%; }
  .menu-tab { flex: 1; }
  .menu-panel#panel-lunch { grid-template-columns: 1fr; }
  .feature-image { height: 115vw; margin: 0; }
  .image-caption { left: 16px; right: 16px; bottom: 16px; }
  .story-image, .story-image img { min-height: 430px; }
  .reviews-header { align-items: flex-start; flex-direction: column; gap: 20px; }
  .visit-details { grid-template-columns: 1fr 1fr; }
  .map-card { min-height: 420px; }
  footer { grid-template-columns: 1fr; padding-bottom: 100px; }
  footer > div { grid-column: auto; }
  .mobile-booking { position: fixed; z-index: 40; left: 16px; right: 16px; bottom: 14px; min-height: 54px; display: block; border: 0; border-radius: 100px; color: white; background: var(--clay); box-shadow: 0 10px 35px rgba(30,33,29,.32); font-size: .82rem; font-weight: 600; }
  .booking-dialog { padding: 44px 24px 28px; }
  .booking-dialog h2 { font-size: 2.7rem; }
  .field-row { grid-template-columns: 1fr; }
}

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

@media (hover: none) {
  .button:hover { transform: none; }
  .feature-image:hover img { transform: none; }
}
