:root {
  --cream: #f5f0e7;
  --paper: #e8ddcd;
  --ink: #142723;
  --ink-2: #0e1c19;
  --olive: #52663f;
  --olive-dark: #344532;
  --terracotta: #b95f37;
  --terracotta-hover: #9f4d2b;
  --mist: #d9e1d7;
  --body-copy: #43504b;
  --muted: #69716d;
  --line: rgba(20, 39, 35, 0.18);
  --max: 1280px;
  --pad: clamp(20px, 5vw, 72px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--cream); color: var(--ink); font-family: 'Manrope', sans-serif; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
h1, h2, p { margin: 0; }

:focus-visible { outline: 3px solid var(--terracotta); outline-offset: 4px; }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.2,.6,.25,1), transform .7s cubic-bezier(.2,.6,.25,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}
.favourites-grid .reveal:nth-child(2), .menu-grid .reveal:nth-child(2), .our-place-grid .reveal:nth-child(2) { transition-delay: .08s; }
.favourites-grid .reveal:nth-child(3), .menu-grid .reveal:nth-child(3), .our-place-grid .reveal:nth-child(3) { transition-delay: .16s; }
.favourites-grid .reveal:nth-child(4), .menu-grid .reveal:nth-child(4) { transition-delay: .24s; }
.eyebrow { color: inherit; font-size: 12px; font-weight: 900; letter-spacing: .16em; line-height: 1.35; margin: 0 0 15px; text-transform: uppercase; }
.eyebrow-dark { color: var(--ink); }
.eyebrow-accent { color: var(--terracotta); }
.section-title { color: inherit; font-family: 'DM Serif Display', Georgia, serif; font-size: clamp(40px, 10vw, 44px); font-weight: 400; letter-spacing: -.045em; line-height: .95; }
.section-title-light { color: inherit; }
.section-title-tight { line-height: .92; }

[data-section-bg] { isolation: isolate; overflow: hidden; position: relative; }
[data-section-bg] > * { position: relative; z-index: 1; }
[data-section-bg]::before { color: rgba(20, 39, 35, .045); content: attr(data-section-bg); font: 400 94px/.82 'DM Serif Display', Georgia, serif; letter-spacing: 0; opacity: 0; pointer-events: none; position: absolute; right: var(--pad); top: 20px; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; white-space: nowrap; z-index: 0; }
[data-section-bg].section-active::before { opacity: 1; transform: translateY(0); }
.book-cta::before { color: rgba(245, 240, 231, .055); }
.star-accent, .star-green { color: var(--terracotta); }

.btn { align-items: center; border: 1px solid transparent; cursor: pointer; display: inline-flex; font: 800 13px/1 'Manrope', sans-serif; gap: 10px; letter-spacing: .11em; text-transform: uppercase; transition: background-color .2s ease, border-color .2s ease, color .2s ease, transform .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-pill { border-radius: 2px; min-height: 48px; padding: 0 19px; }
.btn-sm { min-height: 42px; padding: 0 14px; }
.btn-lg { min-height: 58px; padding: 0 30px; }
.btn-accent { background: var(--terracotta); color: #fff; }
.btn-accent:hover { background: var(--terracotta-hover); color: #fff; }
.btn-accent-green { background: var(--terracotta); color: #fff; }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--olive); color: #fff; }
.btn-outline { border-color: rgba(245, 240, 231, .72); color: var(--cream); }
.btn-outline:hover { background: var(--cream); border-color: var(--cream); color: var(--ink); }
.text-link { align-items: center; border-bottom: 1px solid currentColor; display: inline-flex; font-size: 11px; font-weight: 800; gap: 10px; letter-spacing: .13em; padding-bottom: 5px; text-transform: uppercase; }
.text-link:hover { color: var(--terracotta); }
.text-link-dark { color: var(--ink); }

/* Navigation */
.site-header { background: var(--olive-dark); color: var(--cream); }
.nav-wrap { align-items: center; display: flex; justify-content: space-between; margin: 0 auto; max-width: var(--max); padding: 19px var(--pad); position: relative; }
.logo-block { display: block; flex-shrink: 0; height: 64px; line-height: 1; overflow: hidden; width: 180px; }
.logo-image { display: block; height: auto; max-width: none; transform: translate(-57px, -17px); width: 300px; }
.nav-links { align-items: center; display: flex; gap: clamp(20px, 2.8vw, 42px); margin-left: auto; margin-right: clamp(20px, 3vw, 48px); }
.nav-link { font-size: 13px; font-weight: 800; letter-spacing: .12em; padding: 10px 0; }
.nav-link:hover, .mobile-link:hover { color: #d5b092; }
.nav-book { white-space: nowrap; }
.side-visit { display: none; }
.nav-mobile-controls { align-items: center; display: none; gap: 10px; }
.nav-social-icon { align-items: center; border: 1px solid rgba(245, 240, 231, .45); color: rgba(245, 240, 231, .86); display: inline-flex; flex: 0 0 42px; height: 42px; justify-content: center; margin: 0; width: 42px; }
.nav-social-icon svg { fill: none; height: 18px; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; width: 18px; }
.nav-social-icon--facebook svg { fill: currentColor; stroke: none; }
.nav-social-icon:hover { background: rgba(245, 240, 231, .1); border-color: #d5b092; color: #d5b092; }
.side-social-links { align-items: center; display: flex; gap: 10px; margin-top: 18px; }
.hamburger { align-items: center; background: transparent; border: 1px solid rgba(245, 240, 231, .7); border-radius: 0; cursor: pointer; display: flex; flex-direction: column; gap: 5px; height: 42px; justify-content: center; width: 42px; }
.hamburger span { background: var(--cream); display: block; height: 1px; width: 17px; }
.mobile-menu-panel { background: var(--olive-dark); border-top: 1px solid rgba(245, 240, 231, .2); display: flex; flex-direction: column; gap: 7px; left: 0; padding: 18px var(--pad) 28px; position: absolute; right: 0; top: 100%; z-index: 20; }
.mobile-menu-panel[hidden] { display: none; }
.mobile-link { font-size: 14px; font-weight: 800; letter-spacing: .12em; padding: 12px 0; }
.mobile-menu-actions { align-items: center; border-top: 1px solid rgba(245, 240, 231, .18); display: flex; gap: 10px; margin-top: 6px; padding-top: 18px; }
.mobile-phone-button { align-items: center; background: var(--terracotta); color: #fff; display: inline-flex; font-size: 13px; font-weight: 800; gap: 8px; justify-content: center; letter-spacing: .1em; margin-left: auto; min-height: 42px; padding: 0 16px; }
.mobile-phone-button svg { fill: none; height: 15px; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 2; width: 15px; }
.mobile-phone-button:hover { background: var(--terracotta-hover); }

/* Home hero */
.hero { background: var(--ink); color: var(--cream); overflow: hidden; }
.hero-inner { align-items: stretch; display: grid; grid-template-columns: minmax(0, .96fr) minmax(360px, 1.04fr); margin: 0 auto; max-width: var(--max); min-height: clamp(490px, 61vh, 650px); }
.hero-text { align-self: center; max-width: 570px; padding: clamp(52px, 6vw, 82px) var(--pad); padding-right: clamp(28px, 5vw, 70px); }
.hero-kicker { color: #d5b092; font-size: 9px; font-weight: 800; letter-spacing: .18em; margin-bottom: 19px; }
.hero-title { color: var(--cream); font-family: 'DM Serif Display', Georgia, serif; font-size: clamp(48px, 13vw, 56px); font-weight: 400; letter-spacing: -.055em; line-height: .88; }
.hero-copy { color: rgba(245, 240, 231, .78); font-size: clamp(16px, 1.3vw, 18px); line-height: 1.65; margin: 23px 0 25px; max-width: 430px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 11px; }
.hero-hours { border-top: 1px solid rgba(245, 240, 231, .25); color: rgba(245, 240, 231, .72); font-size: 8px; font-weight: 800; letter-spacing: .14em; line-height: 1.5; margin-top: 35px; padding-top: 14px; }
.hero-media { height: clamp(490px, 61vh, 650px); min-width: 0; }
.hero-image-wrap { height: 100%; min-height: 0; overflow: hidden; position: relative; }
.hero-image-wrap img { height: 100%; object-fit: cover; object-position: center; width: 100%; }

/* Home feature cards */
.favourites { background: var(--paper); color: var(--ink); padding: clamp(58px, 6vw, 82px) var(--pad); }
.favourites-inner { display: grid; gap: clamp(34px, 4vw, 58px); grid-template-columns: minmax(220px, .72fr) minmax(0, 1.8fr); margin: 0 auto; max-width: var(--max); }
.favourites-intro { align-self: start; max-width: 360px; padding-top: 9px; }
.favourites-copy { color: var(--body-copy); font-size: 16px; line-height: 1.7; margin: 21px 0; }
.favourites-grid { display: grid; gap: 23px 20px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.fav-card { border-top: 1px solid var(--line); padding-top: 12px; }
.fav-image { background: #d3c4b1; height: clamp(175px, 17vw, 235px); margin-bottom: 13px; overflow: hidden; }
.fav-image img { height: 100%; object-fit: cover; transition: transform .5s ease; width: 100%; }
.fav-card:hover .fav-image img { transform: scale(1.03); }
.fav-image-empty, .img-missing { align-items: center; border: 1px dashed var(--line); display: flex; justify-content: center; }
.fav-image-empty::after, .img-missing::after { color: var(--muted); content: attr(data-placeholder); font-size: 11px; font-weight: 700; padding: 12px; text-align: center; }
.fav-name { color: var(--ink); font-size: 11px; font-weight: 800; letter-spacing: .14em; margin-bottom: 8px; }
.fav-desc { color: var(--body-copy); font-size: 15px; line-height: 1.55; margin-bottom: 10px; max-width: 260px; }
.fav-price { color: var(--terracotta); font-size: 10px; font-weight: 800; letter-spacing: .12em; }

/* Home menu edit */
.menu-highlights { color: var(--ink); margin: 0 auto; max-width: var(--max); padding: clamp(58px, 6vw, 82px) var(--pad); }
.menu-head { align-items: end; display: flex; flex-wrap: wrap; gap: 24px; justify-content: space-between; margin-bottom: 33px; }
.menu-highlights-copy { color: var(--body-copy); font-size: 16px; line-height: 1.7; margin-top: 18px; max-width: 420px; }
.menu-grid { display: grid; gap: 20px; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.menu-card { border-top: 1px solid var(--line); padding-top: 13px; }
.menu-num { color: var(--terracotta); display: flex; font: 400 18px/1 'DM Serif Display', Georgia, serif; margin-bottom: 15px; }
.menu-image { background: #d1c6b7; height: clamp(175px, 18vw, 245px); margin-bottom: 14px; overflow: hidden; }
.menu-image img { height: 100%; object-fit: cover; transition: transform .5s ease; width: 100%; }
.menu-card:hover .menu-image img { transform: scale(1.03); }
.menu-name { color: var(--ink); font-size: 13px; font-weight: 800; letter-spacing: .08em; margin-bottom: 8px; text-transform: uppercase; }
.menu-desc { border-bottom: 1px solid var(--line); color: var(--muted); font-size: 15px; line-height: 1.58; min-height: 70px; padding-bottom: 16px; }
.menu-price { color: var(--terracotta); font-size: 11px; font-weight: 800; letter-spacing: .1em; margin-top: 12px; }

.menu-coffee-card { align-items: center; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; gap: 24px; margin-top: 28px; padding-top: 24px; }
.menu-coffee-image { background: #d1c6b7; flex: 0 0 160px; height: 110px; overflow: hidden; width: 160px; }
.menu-coffee-image img { height: 100%; object-fit: cover; width: 100%; }
.menu-coffee-body { flex: 1 1 260px; min-width: 0; }
.menu-coffee-label { color: var(--terracotta); font-size: 10px; font-weight: 800; letter-spacing: .14em; margin-bottom: 12px; text-transform: uppercase; }
.menu-coffee-items { display: flex; flex-wrap: wrap; gap: 10px 34px; }
.menu-coffee-item { align-items: baseline; display: flex; gap: 10px; }
.menu-coffee-item span:first-child { color: var(--ink); font-size: 13px; font-weight: 800; }
.menu-coffee-item span:last-child { color: var(--terracotta); font-size: 12px; font-weight: 700; }

/* Our place */
.our-place { background: var(--olive); color: var(--cream); margin: 0 auto; max-width: none; padding: clamp(58px, 6vw, 82px) var(--pad); }
.our-place::before { color: rgba(245, 240, 231, .07); }
.our-place .eyebrow { color: #d5b092; }
.our-place-inner { display: grid; gap: clamp(34px, 4vw, 58px); grid-template-columns: minmax(220px, .72fr) minmax(0, 1.8fr); margin: 0 auto; max-width: var(--max); }
.our-place-intro { align-self: start; max-width: 360px; padding-top: 9px; }
.our-place-copy { color: rgba(245, 240, 231, .78); font-size: 16px; line-height: 1.7; margin-top: 18px; }
.our-place-grid { display: grid; gap: 20px; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.our-place-image { aspect-ratio: 4 / 5; background: var(--olive-dark); box-shadow: 0 18px 44px rgba(14, 28, 25, .18); overflow: hidden; }
.our-place-image img { height: 100%; object-fit: cover; width: 100%; }

/* FAQ */
.faq { color: var(--ink); margin: 0 auto; max-width: var(--max); padding: clamp(50px, 6vw, 76px) var(--pad); }
.faq-inner { margin: 0 auto; max-width: 760px; }
.faq-list { margin-top: 30px; }
.faq-item { border-top: 1px solid var(--line); padding: 20px 0; }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item summary { align-items: center; cursor: pointer; display: flex; font-size: 14px; font-weight: 800; gap: 16px; justify-content: space-between; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { color: var(--terracotta); content: '+'; flex-shrink: 0; font-family: 'DM Serif Display', Georgia, serif; font-size: 20px; }
.faq-item[open] summary::after { content: '\2212'; }
.faq-item p { color: var(--muted); font-size: 16px; line-height: 1.7; margin-top: 14px; max-width: 620px; }

/* Reservation and visit */
.book-cta { background: var(--olive-dark); color: var(--cream); display: block; margin: 0 auto; max-width: var(--max); padding: clamp(42px, 5vw, 64px) var(--pad); width: 100%; }
.book-cta-inner { align-items: center; display: flex; flex-wrap: wrap; gap: clamp(30px, 5vw, 68px); justify-content: space-between; }
.book-cta-head { flex: 1 1 270px; }
.book-note { color: rgba(245, 240, 231, .76); font-size: 16px; line-height: 1.65; margin-top: 24px; max-width: 300px; }
.book-icons { display: none; }
.book-cta-action { align-items: center; display: flex; flex-direction: column; flex: 1 1 280px; gap: 14px; }
.book-widget-fallback { color: rgba(245, 240, 231, .6); font-size: 11px; line-height: 1.5; text-align: center; }
.book-widget-fallback a { color: #d5b092; font-weight: 800; text-decoration: underline; }

.book-now-sticky { background: var(--terracotta); border: none; border-radius: 999px; bottom: max(20px, calc(env(safe-area-inset-bottom) + 12px)); box-shadow: 0 4px 20px rgba(185, 95, 55, .45), 0 2px 8px rgba(0, 0, 0, .3); color: #fff; cursor: pointer; display: none; font: 800 12px/1 'Manrope', sans-serif; letter-spacing: .1em; padding: 14px 24px; position: fixed; right: 16px; text-transform: uppercase; white-space: nowrap; z-index: 98; }
.book-now-sticky:hover { background: var(--terracotta-hover); }
@media (max-width: 768px) {
  .book-now-sticky { display: block; }
}

.visit { background: var(--ink); color: var(--cream); margin-top: 0; overflow: hidden; padding: clamp(58px, 6vw, 78px) var(--pad) 31px; }
.visit-decor { display: none; }
.visit-inner { margin: 0 auto; max-width: var(--max); }
.visit-grid { display: grid; gap: 24px; grid-template-columns: 1.2fr .85fr 1.1fr .8fr; margin-bottom: 52px; }
.visit-image, .visit-map { background: var(--olive-dark); min-height: 215px; overflow: hidden; }
.visit-image img { height: 100%; object-fit: cover; width: 100%; }
.visit-map iframe { border: 0; filter: grayscale(1) contrast(.9) brightness(.82); height: 100%; min-height: 215px; width: 100%; }
.visit-block { padding-top: 4px; }
.visit .eyebrow { color: #d5b092; }
.visit-heading { color: var(--cream); font: 400 26px/1 'DM Serif Display', Georgia, serif; margin-bottom: 12px; }
.visit-bizname { color: #d5b092; font-size: 11px; font-weight: 800; letter-spacing: .1em; margin-bottom: 10px; text-transform: uppercase; }
.visit-address { color: rgba(245, 240, 231, .86); font-size: 13px; font-weight: 500; line-height: 2; }
.visit-address a { border-bottom: 1px solid rgba(245, 240, 231, .4); }
.visit-address a:hover { color: #d5b092; }
.visit-description { color: rgba(245, 240, 231, .68); font-size: 13px; line-height: 1.65; margin-top: 14px; max-width: 280px; }
.visit-hours-label { color: var(--cream); font-size: 12px; font-weight: 800; letter-spacing: .08em; margin: 20px 0 5px; text-transform: uppercase; }
.visit-hours { color: rgba(245, 240, 231, .72); font-size: 13px; line-height: 1.85; }
.visit-links { display: flex; flex-direction: column; gap: 8px; margin-top: 18px; }
.visit-links a { color: #d5b092; font-size: 12px; font-weight: 800; letter-spacing: .08em; }
.visit-links a:hover { color: var(--cream); }
.visit-instagram { color: rgba(245, 240, 231, .82); font-size: 14px; font-weight: 500; margin-bottom: 22px; }
.visit-footer-bar { align-items: center; border-top: 1px solid rgba(245, 240, 231, .2); display: flex; flex-wrap: wrap; gap: 14px 24px; justify-content: space-between; padding-top: 22px; }
.visit-footer-bar span, .visit-footer-links a { color: rgba(245, 240, 231, .64); font-size: 9px; font-weight: 800; letter-spacing: .12em; }
.visit-footer-links { display: flex; flex-wrap: wrap; gap: 17px; }
.visit-footer-links a:hover { color: #d5b092; }
.site-credit { align-items: center; background: rgba(0, 0, 0, .14); border: 1px solid rgba(245, 240, 231, .22); border-radius: 14px; color: rgba(245, 240, 231, .7); display: inline-flex; gap: 9px; justify-content: center; min-height: 42px; padding: 0 15px; transition: background-color .2s ease, border-color .2s ease, color .2s ease, transform .2s ease; white-space: nowrap; }
.site-credit:hover { background: rgba(245, 240, 231, .08); border-color: rgba(245, 240, 231, .48); color: var(--cream); transform: translateY(-1px); }
.site-credit-mark { color: var(--terracotta); height: 18px; width: 18px; }
.visit-footer-bar .site-credit-label { color: rgba(245, 240, 231, .62); font-size: 13px; font-weight: 600; letter-spacing: 0; }
.site-credit-name { color: var(--cream); font-size: 14px; font-weight: 800; letter-spacing: .01em; }
.site-credit-external { color: rgba(245, 240, 231, .52); height: 15px; margin-left: 1px; width: 15px; }

/* Menu page */
.menu-page-hero { height: clamp(270px, 32vw, 420px); overflow: hidden; position: relative; }
.menu-page-hero > img { height: 100%; object-fit: cover; object-position: center 42%; width: 100%; }
.menu-page-hero-overlay { align-items: center; background: rgba(14, 28, 25, .46); color: #fff; display: flex; flex-direction: column; inset: 0; justify-content: center; padding: 24px; position: absolute; text-align: center; }
.menu-page-hero-copy { color: rgba(255, 255, 255, .9); font-size: 16px; line-height: 1.65; margin-top: 18px; max-width: 540px; }
.menu-tabs { align-items: center; background: rgba(245, 240, 231, .96); border-bottom: 1px solid var(--line); display: flex; gap: 10px; justify-content: center; padding: 13px var(--pad); position: sticky; top: 0; z-index: 15; }
.menu-tabs-label { color: var(--muted); flex: 0 0 auto; font-size: 10px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.menu-tabs a { align-items: center; border: 1px solid rgba(20, 39, 35, .18); color: var(--ink); display: inline-flex; flex: 0 0 auto; font-size: 10px; font-weight: 800; justify-content: center; letter-spacing: .08em; min-height: 38px; padding: 0 14px; text-transform: uppercase; white-space: nowrap; }
.menu-tabs a:hover, .menu-tabs a:focus-visible { background: var(--ink); border-color: var(--ink); color: var(--cream); }
.menu-page { margin: 0 auto; max-width: 930px; padding: 0 var(--pad); }
.menu-catalog { max-width: 1120px; }
.menu-catalog .reveal { opacity: 1; transform: none; }
.menu-catalog-intro { align-items: end; border-bottom: 1px solid var(--line); display: flex; gap: clamp(24px, 7vw, 108px); justify-content: space-between; padding: clamp(44px, 6vw, 72px) 0 34px; }
.menu-catalog-intro > div { flex: 1 1 360px; }
.menu-intro-copy { color: var(--body-copy); flex: 0 1 430px; font-size: 15px; line-height: 1.75; margin: 0 0 4px; }
.menu-intro-copy p + p { margin-top: 10px; }
.menu-section { padding: clamp(50px, 6vw, 76px) 0; scroll-margin-top: 96px; }
.menu-section-tint { background: var(--paper); margin: 0 calc(var(--pad) * -1); padding-left: var(--pad); padding-right: var(--pad); }
.menu-section-head { margin-bottom: 31px; max-width: 620px; }
.menu-subhead { color: var(--ink); font: 400 30px/1 'DM Serif Display', Georgia, serif; margin: 36px 0 16px; }
.menu-subhead:first-of-type { margin-top: 0; }
.menu-section-copy { color: var(--body-copy); font-size: 14px; line-height: 1.65; margin-top: -4px; }
.menu-list { display: flex; flex-direction: column; gap: 20px; }
.menu-item-list { display: grid; gap: 0 clamp(30px, 5vw, 70px); grid-template-columns: repeat(2, minmax(0, 1fr)); }
.dish-row { align-items: flex-start; display: flex; gap: 17px; }
.dish-row-plain { min-width: 0; }
.dish-thumb { background: #d1c6b7; flex: 0 0 76px; height: 76px; overflow: hidden; width: 76px; }
.dish-thumb img { height: 100%; object-fit: cover; width: 100%; }
.dish-thumb-empty { align-items: center; border: 1px dashed var(--line); display: flex; justify-content: center; }
.dish-thumb-empty::after { color: var(--muted); content: attr(data-placeholder); font-size: 8px; font-weight: 700; line-height: 1.3; padding: 5px; text-align: center; }
.dish-body { border-bottom: 1px solid var(--line); flex: 1; min-width: 0; padding-bottom: 18px; }
.dish-line { align-items: baseline; display: flex; gap: 12px; justify-content: space-between; }
.dish-name { color: var(--ink); font-size: 14px; font-weight: 800; }
.dish-tags { color: var(--terracotta); font-size: 9px; letter-spacing: .09em; margin-left: 7px; white-space: nowrap; }
.dish-price { color: var(--terracotta); font-size: 12px; font-weight: 800; white-space: nowrap; }
.dish-desc { color: var(--muted); font-size: 12px; line-height: 1.62; margin-top: 6px; }
.coming-soon-badge { background: var(--olive); color: #fff; font-size: 9px; font-weight: 800; letter-spacing: .08em; padding: 5px 8px; text-transform: uppercase; white-space: nowrap; }
.addon-box { background: rgba(20, 39, 35, .06); margin-top: 30px; padding: 22px; }
.addon-box-accent { background: rgba(82, 102, 63, .14); }
.addon-title { font-size: 10px; font-weight: 800; letter-spacing: .14em; margin-bottom: 13px; text-transform: uppercase; }
.addon-grid { color: var(--body-copy); display: flex; flex-wrap: wrap; font-size: 12px; gap: 9px 27px; }
.addon-tea { color: var(--body-copy); font-size: 13px; line-height: 1.7; }
.drinks-table { display: flex; flex-direction: column; }
.drinks-table-head, .drinks-row { display: grid; grid-template-columns: 1fr 70px 70px; }
.drinks-table-head { border-bottom: 1px solid var(--line); color: var(--terracotta); font-size: 9px; font-weight: 800; letter-spacing: .11em; padding: 0 4px 9px; text-transform: uppercase; }
.drinks-row { border-bottom: 1px solid var(--line); color: var(--muted); font-size: 13px; padding: 13px 4px; }
.drinks-row span:first-child { color: var(--ink); font-weight: 800; }
.drinks-row span:not(:first-child) { font-weight: 600; }
.drinks-table-single .drinks-row { grid-template-columns: 1fr 70px; }
.menu-note, .menu-legend { color: var(--muted); font-size: 11px; line-height: 1.65; margin-top: 14px; }
.menu-legend { border-top: 1px solid var(--line); margin: 0; padding: 24px 0 clamp(48px, 6vw, 72px); }

@media (max-width: 1099px) {
  .nav-links, .nav-book { display: none; }
  .nav-mobile-controls { display: flex; }
  .hero-inner { grid-template-columns: 1fr; }
  /* Keep the visual story image-first on stacked layouts; the copy then
     follows in normal document flow as the visitor scrolls. */
  .hero-media { order: -1; }
  .hero-text { max-width: none; padding-bottom: 54px; padding-top: 62px; }
  .hero-media, .hero-image-wrap { height: min(82vw, 600px); min-height: 0; }
  .hero-image-wrap img { object-position: center 55%; }
  .favourites-inner, .our-place-inner { grid-template-columns: 1fr; }
  .favourites-intro, .our-place-intro { max-width: 500px; }
  .menu-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .visit-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 1100px) {
  body { padding-left: 250px; }
  .site-header { bottom: 0; left: 0; position: fixed; top: 0; width: 250px; z-index: 50; }
  .nav-wrap { align-items: flex-start; flex-direction: column; height: 100%; max-width: none; padding: 29px 22px 25px; }
  .logo-block { height: 84px; width: 190px; }
  .logo-image { transform: translate(-63px, -19px); width: 334px; }
  .nav-links { align-items: flex-start; flex-direction: column; gap: 0; margin: 43px 0 0; width: 100%; }
  .nav-link { border-bottom: 1px solid rgba(245, 240, 231, .18); padding: 13px 0; width: 100%; }
  .nav-book { justify-content: center; margin-top: 22px; width: 100%; }
  .section-title { font-size: clamp(58px, 4.7vw, 68px); }
  .side-visit { border-top: 1px solid rgba(245, 240, 231, .22); color: rgba(245, 240, 231, .7); display: block; font-size: 12px; font-weight: 700; letter-spacing: .09em; line-height: 1.75; margin-top: auto; padding-top: 18px; }
  .side-visit p + p { margin-top: 13px; }
  .side-visit > a { color: #d5b092; display: inline-block; margin-top: 13px; }
  .side-social-links .nav-social-icon { display: inline-flex; margin-top: 0; }
  .side-visit-links { display: flex; flex-direction: column; gap: 8px; margin-top: 14px; }
  .side-visit-links a { color: rgba(245, 240, 231, .78); font-size: 12px; letter-spacing: .08em; margin-top: 0; }
  .side-visit-links a:hover { color: #d5b092; }
  .hero-inner, .favourites-inner, .menu-highlights, .our-place, .faq, .book-cta, .visit-inner { max-width: none; }
  .hero { background: var(--ink-2); }
  .hero-inner { display: block; min-height: max(650px, 100svh); position: relative; }
  .hero-media { height: 100%; inset: 0; position: absolute; width: 100%; }
  .hero-image-wrap::after { background: rgba(14, 28, 25, .16); content: ''; inset: 0; position: absolute; }
  .hero-text { align-items: flex-start; background: linear-gradient(90deg, rgba(159, 77, 43, .76), rgba(159, 77, 43, .8)); bottom: 0; display: flex; flex-direction: column; justify-content: center; max-width: min(50%, 710px); padding: clamp(64px, 7vw, 122px) clamp(54px, 6vw, 106px); position: absolute; right: 0; top: 0; width: 50%; z-index: 1; }
  .hero-title { font-size: clamp(80px, 6.1vw, 92px); }
  .hero-kicker { color: rgba(255, 244, 235, .84); }
  .hero-copy { color: rgba(255, 250, 246, .88); max-width: 410px; }
  .hero-hours { border-color: rgba(255, 244, 235, .38); color: rgba(255, 250, 246, .8); max-width: 410px; width: 100%; }
  .hero .btn-accent { background: var(--ink); }
  .hero .btn-accent:hover { background: var(--olive-dark); }
  .favourites-inner { gap: 48px; grid-template-columns: minmax(220px, .8fr) minmax(0, 2.2fr); }
  .favourites-grid { gap: 0; grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .fav-card { border-bottom: 1px solid var(--line); padding: 0 16px 19px; }
  .fav-card + .fav-card { border-left: 1px solid var(--line); }
  .fav-image { height: 168px; }
  .fav-desc { max-width: none; }
  .menu-grid { gap: 0; }
  .menu-card { padding: 0 22px 0 0; }
  .menu-card + .menu-card { border-left: 1px solid var(--line); padding-left: 22px; }
  .menu-image { height: 150px; }
  .menu-desc { min-height: 0; }
  .our-place { padding-top: 76px; }
  .our-place::before { right: clamp(28px, 6vw, 88px); top: -8px; }
  .our-place-inner { align-items: start; gap: clamp(44px, 5vw, 66px); grid-template-columns: minmax(440px, .98fr) minmax(0, 1.65fr); }
  .our-place-intro { max-width: 520px; padding-top: 6px; }
  .our-place .section-title { font-size: clamp(58px, 4.1vw, 66px); max-width: 520px; }
  .our-place-grid { gap: 26px; }
  .our-place-image { aspect-ratio: 4 / 5; }
  .visit { padding-top: 64px; }
}

@media (max-width: 600px) {
  .nav-wrap { padding-bottom: 15px; padding-top: 15px; }
  .logo-block { height: 56px; width: 145px; }
  .logo-image { transform: translate(-52px, -16px); width: 270px; }
  [data-section-bg]::before { font-size: 46px; left: var(--pad); right: auto; top: 18px; white-space: normal; }
  .hero-text { padding-bottom: 48px; padding-top: 50px; }
  .hero-title { font-size: clamp(46px, 13.5vw, 61px); }
  .hero-copy { margin-top: 24px; }
  .hero-hours { line-height: 1.7; margin-top: 30px; }
  .btn-pill { min-height: 46px; padding: 0 15px; }
  .favourites, .menu-highlights, .our-place, .visit { padding-bottom: 58px; padding-top: 58px; }
  .favourites-grid, .menu-grid, .our-place-grid { grid-template-columns: 1fr; }
  .fav-image, .menu-image { height: min(85vw, 390px); }
  .menu-head { align-items: flex-start; flex-direction: column; margin-bottom: 34px; }
  .menu-desc { min-height: 0; }
  .book-cta { padding-bottom: 55px; padding-top: 55px; }
  .book-cta-action { flex-basis: 100%; min-width: 0; }
  .visit-grid { grid-template-columns: 1fr; }
  .visit-image, .visit-map, .visit-map iframe { min-height: 230px; }
  .visit-footer-bar { align-items: flex-start; flex-direction: column; }
  .menu-tabs { justify-content: flex-start; overflow-x: auto; padding-left: var(--pad); padding-right: var(--pad); }
  .menu-tabs a { flex-shrink: 0; }
  .menu-catalog-intro { align-items: flex-start; flex-direction: column; gap: 18px; padding-bottom: 28px; }
  .menu-catalog-intro > div, .menu-intro-copy { flex: 0 0 auto; }
  .menu-intro-copy { max-width: 450px; }
  .menu-item-list { display: flex; flex-direction: column; gap: 0; }
  .dish-thumb { flex-basis: 62px; height: 62px; width: 62px; }
  .dish-line { align-items: flex-start; }
  .dish-tags { display: block; margin: 5px 0 0; white-space: normal; }
  .coming-soon-badge { font-size: 8px; }
  .drinks-table-head, .drinks-row { grid-template-columns: 1fr 54px 54px; }
  .drinks-table-single .drinks-row { grid-template-columns: 1fr 54px; }
}
