:root {
  --ink: #151611;
  --paper: #f0ede4;
  --paper-deep: #e4dfd2;
  --moss: #283426;
  --sage: #9fab89;
  --gold: #d4b273;
  --white: #fffdf7;
  --muted: #aaa99f;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 86px; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--sans); line-height: 1.6; }
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
address { font-style: normal; }
::selection { color: var(--ink); background: var(--gold); }
.container { width: var(--container); margin-inline: auto; }
.section { padding: clamp(88px, 11vw, 160px) 0; }
.skip-link { position: fixed; z-index: 1000; top: 10px; left: 10px; padding: 10px 14px; background: var(--white); transform: translateY(-150%); transition: transform .2s; }
.skip-link:focus { transform: translateY(0); }

.site-header { position: fixed; z-index: 100; top: 0; left: 0; width: 100%; height: 82px; display: flex; align-items: center; justify-content: space-between; padding: 0 max(20px, 4vw); color: var(--white); border-bottom: 1px solid transparent; transition: background .3s, height .3s, border-color .3s; }
.site-header.scrolled { height: 70px; background: rgba(16,17,14,.93); border-color: rgba(255,255,255,.12); backdrop-filter: blur(16px); }
.brand { display: inline-flex; align-items: center; gap: 12px; line-height: 1; }
.brand-mark { width: 40px; aspect-ratio: 1; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.42); border-radius: 50%; font: 700 13px var(--serif); letter-spacing: .08em; }
.brand-copy { display: grid; gap: 5px; }
.brand-copy strong { font: 600 17px var(--serif); }
.brand-copy small { font-size: 9px; letter-spacing: .16em; text-transform: uppercase; opacity: .68; }
.main-nav { display: flex; align-items: center; gap: clamp(20px, 2.5vw, 38px); font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.main-nav a { position: relative; padding: 10px 0; }
.main-nav a:not(.nav-call)::after { content: ""; position: absolute; right: 0; bottom: 5px; left: 0; height: 1px; background: var(--gold); transform: scaleX(0); transform-origin: right; transition: transform .25s; }
.main-nav a:hover::after, .main-nav a:focus-visible::after, .main-nav a.active::after { transform: scaleX(1); transform-origin: left; }
.main-nav .nav-call { padding: 11px 18px; border: 1px solid rgba(255,255,255,.46); border-radius: 100px; }
.nav-toggle { display: none; width: 44px; height: 44px; padding: 0; border: 0; background: transparent; }
.nav-toggle span { display: block; width: 25px; height: 1px; margin: 7px auto; background: currentColor; transition: transform .25s; }

.hero { position: relative; min-height: 100svh; display: grid; align-items: end; overflow: hidden; color: var(--white); background: #111; }
.hero-media, .hero-shade, .hero-grain { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 54%; animation: heroZoom 18s ease-out both; }
.hero-media picture { display: block; width: 100%; height: 100%; }
.hero-shade { background: linear-gradient(90deg, rgba(12,12,10,.85) 0%, rgba(12,12,10,.48) 48%, rgba(12,12,10,.08) 82%), linear-gradient(0deg, rgba(10,10,8,.78) 0%, transparent 48%, rgba(10,10,8,.3)); }
.hero-grain { opacity: .12; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E"); mix-blend-mode: soft-light; pointer-events: none; }
.hero-content { position: relative; z-index: 2; padding-bottom: clamp(100px, 13vh, 150px); }
.eyebrow { margin: 0 0 24px; color: #6f745f; font-size: 11px; font-weight: 800; letter-spacing: .22em; text-transform: uppercase; }
.hero-kicker { color: var(--gold); animation: rise .8s .15s both; }
.hero h1 { max-width: 900px; margin: 0; font: 400 clamp(72px, 11.5vw, 174px)/.77 var(--serif); letter-spacing: -.065em; animation: rise .9s .25s both; }
.hero h1 span { display: block; font-style: italic; font-weight: 400; }
.hero-lead { margin: 34px 0 0; max-width: 520px; color: rgba(255,255,255,.82); font: 400 clamp(18px, 2vw, 25px)/1.4 var(--serif); animation: rise .9s .35s both; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; animation: rise .9s .45s both; }
.button { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; padding: 0 24px; border: 1px solid transparent; border-radius: 100px; font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; transition: background .25s, color .25s, border-color .25s, transform .25s; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--ink); background: var(--gold); }
.button-primary:hover { background: #e2c58d; }
.button-ghost { color: var(--white); border-color: rgba(255,255,255,.5); }
.button-ghost:hover { background: var(--white); color: var(--ink); }
.button-dark { color: var(--white); background: var(--ink); }
.scroll-cue { position: absolute; z-index: 3; right: max(20px, 4vw); bottom: 40px; display: flex; align-items: center; gap: 12px; font-size: 9px; letter-spacing: .18em; text-transform: uppercase; }
.scroll-cue span { width: 34px; height: 1px; background: currentColor; animation: pulseLine 1.8s infinite; }

.section-heading h2 { margin: 0; font: 400 clamp(44px, 6.5vw, 88px)/.98 var(--serif); letter-spacing: -.04em; }
.intro { background: var(--paper); }
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8vw; align-items: start; }
.intro-copy { padding-top: 40px; max-width: 540px; }
.intro-copy p { color: #525349; }
.intro-copy .lead { margin-top: 0; color: var(--ink); font: 400 clamp(21px, 2.2vw, 28px)/1.45 var(--serif); }
.text-link { display: inline-flex; gap: 14px; align-items: center; margin-top: 24px; padding-bottom: 5px; border-bottom: 1px solid currentColor; font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.text-link span { transition: transform .2s; }
.text-link:hover span { transform: translate(3px,-3px); }
.facts { display: grid; grid-template-columns: repeat(3,1fr); margin-top: clamp(70px, 9vw, 130px); border-top: 1px solid #c8c3b7; }
.facts article { padding: 30px 30px 0 0; }
.facts article + article { padding-left: 30px; border-left: 1px solid #c8c3b7; }
.facts span { color: #8e8e82; font: italic 16px var(--serif); }
.facts h3 { margin: 36px 0 6px; font: 400 26px var(--serif); }
.facts p { margin: 0; color: #68695f; font-size: 13px; }

.flavours { position: relative; overflow: hidden; color: var(--white); background: var(--moss); }
.flavours .eyebrow { color: var(--gold); }
.mountain-line { position: absolute; inset: 0 0 auto; height: 100%; opacity: .12; background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 500' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M-10 330 L160 210 270 280 450 80 600 240 755 145 950 330 1130 115 1450 340' fill='none' stroke='%23fff' stroke-width='1'/%3E%3Cpath d='M-10 370 L180 250 320 330 470 145 620 285 770 190 940 370 1140 165 1450 380' fill='none' stroke='%23fff' stroke-width='1'/%3E%3C/svg%3E") center/cover no-repeat; }
.flavours .container { position: relative; }
.flavour-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; margin-top: 80px; background: rgba(255,255,255,.15); }
.flavour-card { min-height: 320px; padding: 34px; background: var(--moss); }
.flavour-card > span { color: var(--gold); font: italic 17px var(--serif); }
.flavour-card h3 { margin: 110px 0 15px; font: 400 27px var(--serif); }
.flavour-card p { margin: 0; max-width: 280px; color: rgba(255,255,255,.64); font-size: 14px; }

.menu { background: var(--paper-deep); }
.menu-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(380px, .86fr); gap: clamp(45px, 8vw, 120px); align-items: center; }
.menu-visual { position: relative; min-height: 720px; overflow: hidden; }
.menu-visual picture, .menu-visual img { width: 100%; height: 100%; }
.menu-visual img { position: absolute; object-fit: cover; object-position: 67% center; transition: transform .7s ease; }
.menu-visual:hover img { transform: scale(1.025); }
.image-note { position: absolute; bottom: 16px; left: 18px; padding: 8px 11px; color: var(--white); background: rgba(15,15,12,.72); font-size: 9px; letter-spacing: .13em; text-transform: uppercase; }
.menu .section-heading h2 { font-size: clamp(48px, 5.5vw, 76px); }
.dish-list { margin-top: 48px; border-top: 1px solid #bbb6a9; }
.dish { display: flex; justify-content: space-between; gap: 25px; padding: 24px 0; border-bottom: 1px solid #bbb6a9; }
.dish h3 { margin: 0 0 5px; font: 400 23px var(--serif); }
.dish p { margin: 0; color: #6c6b61; font-size: 13px; }
.dish > span { align-self: center; color: #7e7a6f; font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.menu-note { margin: 25px 0; color: #6b6b62; font-size: 12px; }

.gallery { color: var(--white); background: #11120f; }
.gallery .eyebrow { color: var(--gold); }
.split-heading { display: grid; grid-template-columns: 1.2fr .6fr; align-items: end; gap: 8vw; }
.split-heading > p { max-width: 390px; margin: 0 0 8px; color: var(--muted); font-size: 14px; }
.gallery-grid { height: clamp(560px, 70vw, 850px); display: grid; grid-template-columns: 1.05fr .7fr; grid-template-rows: 1fr .72fr; gap: 14px; margin-top: 75px; }
.gallery-grid figure { position: relative; margin: 0; overflow: hidden; background: #25251f; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.gallery-grid figure:hover img { transform: scale(1.035); }
.gallery-a { grid-row: 1 / 3; }
.gallery-a img { object-position: 5% center; }
.gallery-b img { object-position: 88% 72%; }
.gallery-c img { object-position: 66% 35%; }

.place { position: relative; color: var(--white); background: #1f261f; text-align: center; overflow: hidden; }
.place::before { content: ""; position: absolute; width: 750px; aspect-ratio: 1; top: 50%; left: 50%; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; transform: translate(-50%,-50%); box-shadow: 0 0 0 100px rgba(255,255,255,.025), 0 0 0 200px rgba(255,255,255,.018); }
.place-inner { position: relative; }
.place .eyebrow { color: var(--gold); }
.place h2 { margin: 0; font: 400 clamp(48px, 7vw, 94px)/.98 var(--serif); letter-spacing: -.045em; }
.place p:not(.eyebrow) { max-width: 620px; margin: 35px auto 0; color: rgba(255,255,255,.66); }
.text-link.light { color: var(--white); }

.location { color: var(--white); background: var(--ink); }
.location-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(45px, 8vw, 120px); align-items: stretch; }
.location .eyebrow { color: var(--gold); }
.location h2 { margin: 0; font: 400 clamp(52px, 6vw, 82px)/.96 var(--serif); letter-spacing: -.04em; }
.location address { margin-top: 48px; color: rgba(255,255,255,.68); }
.location address strong { color: var(--white); font: 400 24px var(--serif); }
.contact-links { display: grid; gap: 18px; margin-top: 38px; }
.contact-links a { display: grid; gap: 4px; }
.contact-links small { color: var(--gold); font-size: 9px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.contact-links strong { font-size: 16px; font-weight: 500; }
.hours-note { margin-top: 38px; padding-top: 25px; border-top: 1px solid rgba(255,255,255,.15); }
.hours-note strong { font: 400 18px var(--serif); }
.hours-note p { margin: 7px 0 0; color: rgba(255,255,255,.55); font-size: 12px; }
.location-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 34px; }
.map-wrap { min-height: 680px; filter: grayscale(1) contrast(1.05); }
.map-wrap iframe { width: 100%; height: 100%; min-height: inherit; }

.footer { padding: 55px 0 35px; color: rgba(255,255,255,.68); background: #0b0c09; font-size: 12px; }
.footer-grid { display: grid; grid-template-columns: 1fr auto auto; gap: 35px; align-items: center; }
.footer .brand { color: var(--white); }
.footer a:hover { color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; margin-top: 42px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); }
.mobile-bar { display: none; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s ease; }
.reveal.visible { opacity: 1; transform: none; }
@keyframes heroZoom { from { transform: scale(1.05); } to { transform: scale(1.13); } }
@keyframes rise { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
@keyframes pulseLine { 50% { transform: scaleX(.45); opacity: .5; } }

@media (max-width: 900px) {
  :root { --container: min(100% - 32px, 700px); }
  .site-header { height: 70px; padding: 0 18px; }
  .site-header.scrolled { backdrop-filter: none; }
  .nav-toggle { display: block; position: relative; z-index: 2; }
  .nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .main-nav { position: fixed; inset: 0 auto auto 0; width: 100vw; height: 100dvh; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 12px; padding: 90px 9vw; color: var(--white); background: #11120f; transform: translateX(100%); visibility: hidden; transition: transform .35s ease, visibility .35s; }
  .main-nav.open { transform: none; visibility: visible; }
  .main-nav a { font: 400 clamp(34px, 10vw, 55px)/1.15 var(--serif); letter-spacing: -.02em; text-transform: none; }
  .main-nav .nav-call { margin-top: 25px; padding: 11px 22px; font: 700 11px var(--sans); letter-spacing: .12em; text-transform: uppercase; }
  .hero-shade { background: linear-gradient(90deg, rgba(12,12,10,.78), rgba(12,12,10,.18)), linear-gradient(0deg, rgba(10,10,8,.78), transparent 55%, rgba(10,10,8,.25)); }
  .hero h1 { font-size: clamp(70px, 21vw, 118px); }
  .hero-media img { object-position: 64% center; }
  .intro-grid, .menu-grid, .location-grid, .split-heading { grid-template-columns: 1fr; }
  .intro-copy { padding-top: 0; }
  .facts { grid-template-columns: 1fr; }
  .facts article { padding: 24px 0; border-bottom: 1px solid #c8c3b7; }
  .facts article + article { padding-left: 0; border-left: 0; }
  .facts h3 { margin: 8px 0 4px; }
  .flavour-grid { grid-template-columns: 1fr; }
  .flavour-card { min-height: auto; }
  .flavour-card h3 { margin-top: 55px; }
  .menu-visual { min-height: 560px; }
  .menu-content { max-width: 620px; }
  .split-heading > p { margin-top: -40px; justify-self: end; }
  .location-copy { max-width: 600px; }
  .map-wrap { min-height: 520px; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  body { padding-bottom: 62px; }
  .section { padding: 82px 0; }
  .brand-copy { display: none; }
  .site-header .brand-mark { width: 38px; }
  .hero-content { padding-bottom: 112px; text-align: center; }
  .hero-kicker { max-width: 290px; margin: 0 auto 18px; }
  .hero h1 { font-size: clamp(66px, 23vw, 96px); }
  .hero-lead { margin: 25px auto 0; max-width: 330px; font-size: 18px; }
  .hero-actions { align-items: stretch; flex-direction: column; max-width: 310px; margin: 34px auto 0; }
  .button { min-height: 50px; }
  .scroll-cue { display: none; }
  .section-heading h2 { font-size: 44px; }
  .intro .section-heading, .intro-copy { text-align: center; }
  .intro-copy .lead { font-size: 21px; }
  .intro-copy .text-link { margin-top: 20px; }
  .facts article { text-align: center; }
  .flavours .section-heading { text-align: center; }
  .flavour-grid { margin-top: 52px; }
  .flavour-card { text-align: center; }
  .flavour-card p { margin-inline: auto; }
  .menu-visual { min-height: 440px; }
  .menu-content .section-heading { text-align: center; }
  .dish h3 { font-size: 20px; }
  .dish > span { display: none; }
  .gallery .split-heading { text-align: center; }
  .split-heading > p { margin: 25px auto 0; justify-self: auto; }
  .gallery-grid { height: 740px; grid-template-columns: 1fr 1fr; grid-template-rows: 1.1fr .72fr; }
  .gallery-a { grid-column: 1 / 3; grid-row: auto; }
  .gallery-a img { object-position: 17% 52%; }
  .place::before { width: 420px; }
  .place h2 { font-size: 47px; }
  .location-copy { text-align: center; }
  .contact-links a { justify-items: center; }
  .location-actions { justify-content: center; }
  .location-actions .button { flex: 1; padding-inline: 15px; }
  .map-wrap { min-height: 420px; }
  .footer { padding-bottom: 40px; }
  .footer-grid { justify-items: center; text-align: center; }
  .footer-bottom { gap: 20px; }
  .mobile-bar { position: fixed; z-index: 90; right: 0; bottom: 0; left: 0; height: 62px; display: grid; grid-template-columns: 1fr 1fr; color: var(--white); background: rgba(11,12,9,.97); border-top: 1px solid rgba(255,255,255,.14); }
  .mobile-bar a { display: flex; align-items: center; justify-content: center; gap: 9px; font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
  .mobile-bar a + a { border-left: 1px solid rgba(255,255,255,.14); }
  .mobile-bar span { color: var(--gold); font-size: 16px; }
}

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