/* =================================================================
   DAR MANSOUR — Morocco's Kitchen, Koh Phangan
   Design system: contemporary Moroccan Art de Vivre
   Palette: brand green (#00837D) + warm neutrals only
   ================================================================= */

/* ---------- 1. Design Tokens ---------- */
:root {
  /* Green scale (brand) */
  --green:        #00837D;   /* brand teal-green */
  --green-600:    #0A6C67;
  --green-deep:   #0B403C;   /* deep forest — footer, dark sections */
  --green-darker: #072B29;
  --green-tint:   #E5F0EE;   /* pale wash */
  --green-tint-2: #D3E5E2;

  /* Warm neutrals */
  --bone:   #FBF8F1;         /* primary background */
  --sand:   #F3ECDF;         /* secondary background */
  --cream:  #FDFBF6;
  --linen:  #EFE7D8;

  /* Ink / text */
  --ink:    #23302E;         /* body text (warm near-black green) */
  --ink-soft:#4C5A57;
  --muted:  #7A857F;
  --line:   rgba(35,48,46,.14);
  --on-dark:#F4EFE4;
  --on-dark-soft: rgba(244,239,228,.72);

  /* Type */
  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans:  'Mulish', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Rhythm */
  --wrap: 1280px;
  --wrap-narrow: 820px;
  --gutter: clamp(1.25rem, 5vw, 4rem);
  --section: clamp(4.5rem, 10vw, 8.5rem);

  /* Motion */
  --ease: cubic-bezier(.22,.61,.36,1);
  --header-h: 88px;
}

/* ---------- 2. Reset ---------- */
*,*::before,*::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-weight: 400;
  color: var(--ink);
  background: var(--bone);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img,video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; padding: 0; }
::selection { background: var(--green); color: #fff; }

/* ---------- 3. Typography ---------- */
h1,h2,h3,h4 { font-family: var(--serif); font-weight: 500; line-height: 1.08; letter-spacing: -.01em; color: var(--green-deep); }
.display {
  font-size: clamp(2.9rem, 8vw, 6.2rem);
  font-weight: 500;
  line-height: .98;
}
h2 { font-size: clamp(2rem, 4.6vw, 3.4rem); }
h3 { font-size: clamp(1.4rem, 2.6vw, 1.9rem); }

.eyebrow {
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--green);
  display: inline-block;
}
.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  line-height: 1.7;
  color: var(--ink-soft);
}
p { max-width: 62ch; }

/* Ornamental diamond divider ◇◇◇ (brand element) */
.divider {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  color: var(--green);
}
.divider::before, .divider::after {
  content: ""; height: 1px; width: clamp(40px, 12vw, 120px);
  background: currentColor; opacity: .5;
}
.divider span { font-size: .7rem; letter-spacing: .3em; }
.divider--light { color: var(--green-tint-2); }

/* ---------- 4. Layout ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.wrap--narrow { max-width: var(--wrap-narrow); }
.section { padding-block: var(--section); }
.center { text-align: center; }
.stack > * + * { margin-top: 1.25rem; }

/* ---------- 5. Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--sans); font-weight: 700;
  font-size: .78rem; letter-spacing: .12em; text-transform: uppercase;
  padding: 1.05rem 2rem; border-radius: 2px;
  transition: background .35s var(--ease), color .35s var(--ease), transform .35s var(--ease), border-color .35s var(--ease);
  min-height: 48px;
}
.btn svg { width: 16px; height: 16px; }
.btn--primary { background: var(--green); color: #fff; }
.btn--primary:hover { background: var(--green-deep); transform: translateY(-2px); }
.btn--ghost { border: 1px solid var(--line); color: var(--ink); }
.btn--ghost:hover { border-color: var(--green); color: var(--green); }
.btn--light { border: 1px solid rgba(244,239,228,.4); color: var(--on-dark); }
.btn--light:hover { background: var(--on-dark); color: var(--green-deep); }

.textlink {
  display: inline-flex; align-items: center; gap: .5rem;
  font-weight: 700; font-size: .8rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--green); position: relative;
}
.textlink svg { width: 15px; transition: transform .35s var(--ease); }
.textlink:hover svg { transform: translateX(5px); }

/* Inline contextual link (in-body internal linking) */
.ilink { color: var(--green); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; text-decoration-color: rgba(0,131,125,.38); transition: text-decoration-color .3s var(--ease); }
.ilink:hover { text-decoration-color: var(--green); }

/* ---------- 6. Header ---------- */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 130;
  height: var(--header-h);
  display: flex; align-items: center;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), height .4s var(--ease);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.brand { display: flex; align-items: center; line-height: 1; z-index: 2; }
.brand__name { font-family: var(--serif); font-size: 1.45rem; letter-spacing: .16em; color: #fff; transition: color .4s var(--ease); }
.brand__sub { font-size: .58rem; letter-spacing: .34em; text-transform: uppercase; color: rgba(255,255,255,.75); margin-top: 4px; transition: color .4s var(--ease); }
/* Full wordmark logo in the header: white over the hero, green when solid/menu-open */
.brand__full { display: block; height: clamp(54px, 6.4vw, 72px); width: auto; transition: height .4s var(--ease); }
.brand__full--color { display: none; }
.header.is-solid .brand__full { height: 62px; }
.header.is-solid .brand__full--white,
body.menu-open .brand__full--white { display: none; }
.header.is-solid .brand__full--color,
body.menu-open .brand__full--color { display: block; }

/* Brand logo (icon mark), swaps white/colour with header context */
.brand__logo { display: block; height: clamp(46px, 5.4vw, 56px); width: auto; transition: height .4s var(--ease); }
.brand__logo--color { display: none; }
.header.is-solid .brand__logo { height: 48px; }
.header.is-solid .brand__logo--white,
body.menu-open .brand__logo--white { display: none; }
.header.is-solid .brand__logo--color,
body.menu-open .brand__logo--color { display: block; }

.nav { display: flex; align-items: center; gap: 2.1rem; }
.nav a { font-size: .78rem; font-weight: 600; letter-spacing: .06em; color: rgba(255,255,255,.9); transition: color .3s var(--ease); position: relative; }
.nav a::after { content:""; position:absolute; left:0; bottom:-6px; width:0; height:1px; background: currentColor; transition: width .3s var(--ease); }
.nav a:hover::after { width: 100%; }

.header__cta { display: flex; align-items: center; gap: 1rem; }
.header .btn { padding: .8rem 1.4rem; min-height: 44px; }

/* scrolled state */
.header.is-solid { background: var(--bone); height: 74px; box-shadow: 0 1px 0 var(--line); }
.header.is-solid .brand__name { color: var(--green-deep); }
.header.is-solid .brand__sub { color: var(--green); }
.header.is-solid .nav a { color: var(--ink); }
.header.is-solid .btn--light { border-color: var(--line); color: var(--ink); }
.header.is-solid .btn--light:hover { background: var(--green); color: #fff; border-color: var(--green); }

/* menu toggle (visible on every screen) */
.menu-toggle { display: inline-flex; align-items: center; gap: .6rem; height: 44px; padding: 0 .3rem; z-index: 140; position: relative; }
.menu-toggle__lines { display: flex; flex-direction: column; justify-content: center; gap: 5px; width: 24px; }
.menu-toggle__lines span { display: block; height: 1.5px; width: 24px; background: #fff; transition: transform .35s var(--ease), opacity .3s var(--ease), background .4s var(--ease); }
.menu-toggle__label { font-size: .74rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: #fff; transition: color .4s var(--ease); }
.header.is-solid .menu-toggle__lines span { background: var(--green-deep); }
.header.is-solid .menu-toggle__label { color: var(--green-deep); }
/* open state -> X (always dark over light overlay) */
body.menu-open .menu-toggle__lines span { background: var(--green-deep); }
body.menu-open .menu-toggle__label { color: var(--green-deep); }
body.menu-open .menu-toggle__lines span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
body.menu-open .menu-toggle__lines span:nth-child(2) { opacity: 0; }
body.menu-open .menu-toggle__lines span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* full-screen mega menu */
.mega {
  position: fixed; inset: 0; z-index: 110;
  background: var(--bone);
  opacity: 0; visibility: hidden; transform: translateY(-14px);
  transition: opacity .4s var(--ease), transform .55s var(--ease), visibility .4s;
  overflow-y: auto;
}
body.menu-open .mega { opacity: 1; visibility: visible; transform: none; }
body.menu-open { overflow: hidden; }
.mega__inner { min-height: 100%; display: flex; flex-direction: column; gap: 2.5rem; max-width: var(--wrap); margin-inline: auto; padding: calc(var(--header-h) + 2.5rem) var(--gutter) 3rem; }
.mega__groups { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.8rem 3rem; flex: 1; align-content: center; }
.mega__group h4 { font-family: var(--sans); font-size: .72rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--green); margin-bottom: 1.2rem; }
.mega__group ul { display: grid; gap: .55rem; }
.mega__group a { font-family: var(--serif); font-size: clamp(1.35rem, 2vw, 1.75rem); color: var(--green-deep); line-height: 1.25; transition: color .3s var(--ease), padding-left .3s var(--ease); display: inline-block; }
.mega__group a:hover { color: var(--green); padding-left: .4rem; }
.mega__foot { display: grid; grid-template-columns: 1fr 1fr auto; gap: 1.5rem 2rem; align-items: center; border-top: 1px solid var(--line); padding-top: 2rem; }
.mega__foot p { font-size: .92rem; color: var(--ink-soft); margin-top: .5rem; }
.mega__foot a { color: var(--ink-soft); }
.mega__foot a:hover { color: var(--green); }
/* staggered reveal of links */
.mega__group a { opacity: 0; transform: translateY(10px); transition: opacity .5s var(--ease), transform .5s var(--ease), color .3s var(--ease), padding-left .3s var(--ease); }
body.menu-open .mega__group a { opacity: 1; transform: none; }
body.menu-open .mega__group:nth-child(1) a { transition-delay: .12s; }
body.menu-open .mega__group:nth-child(2) a { transition-delay: .2s; }
body.menu-open .mega__group:nth-child(3) a { transition-delay: .28s; }

/* ---------- 7. Hero ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; color: #fff; overflow: hidden; }
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img, .hero__media video { width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content:""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(7,43,41,.45) 0%, rgba(7,43,41,.15) 40%, rgba(7,43,41,.78) 100%);
}
.hero__inner { padding-bottom: clamp(3rem, 9vh, 7rem); padding-top: calc(var(--header-h) + 2rem); }
.hero .eyebrow { color: #fff; opacity: .9; }
.hero__title { color: #fff; max-width: 15ch; margin: 1.2rem 0 1.5rem; }
.hero__sub { font-size: clamp(1.05rem, 1.8vw, 1.35rem); max-width: 46ch; color: rgba(255,255,255,.92); font-weight: 300; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.2rem; }
.hero__scroll { position: absolute; bottom: 1.8rem; left: 50%; transform: translateX(-50%); font-size: .62rem; letter-spacing: .28em; text-transform: uppercase; opacity: .8; display: flex; flex-direction: column; align-items: center; gap: .6rem; }
.hero__scroll::after { content:""; width: 1px; height: 40px; background: #fff; animation: scrollpulse 2.2s var(--ease) infinite; }
@keyframes scrollpulse { 0%{transform:scaleY(0);transform-origin:top} 40%{transform:scaleY(1);transform-origin:top} 60%{transform:scaleY(1);transform-origin:bottom} 100%{transform:scaleY(0);transform-origin:bottom} }

/* ---------- 8. Marquee / trust strip ---------- */
.trust { background: var(--green-deep); color: var(--on-dark); padding-block: 1.4rem; }
.trust__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1rem 2.6rem; text-align: center; }
.trust__item { font-size: .74rem; letter-spacing: .18em; text-transform: uppercase; color: var(--on-dark-soft); }
.trust__item strong { color: var(--on-dark); font-weight: 700; }

/* ---------- 9. Split (image + text) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(2rem, 6vw, 6rem); }
.split--reverse .split__text { order: 2; }
.split__media { position: relative; }
.split__media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: 2px; }
.split__media .tag { position: absolute; bottom: 1.2rem; left: 1.2rem; background: rgba(11,64,60,.86); color: var(--on-dark); font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; padding: .6rem 1rem; }
.split__text .eyebrow { margin-bottom: 1.2rem; }
.split__text h2 { margin-bottom: 1.4rem; }
.split__text .btn, .split__text .textlink { margin-top: 1.8rem; }

/* ---------- 10. Cuisine grid ---------- */
.dishes { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2.5vw, 1.6rem); }
.dish { position: relative; overflow: hidden; border-radius: 2px; }
.dish img { aspect-ratio: 3/4; object-fit: cover; width: 100%; transition: transform 1.1s var(--ease); }
.dish:hover img { transform: scale(1.05); }
.dish::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, transparent 40%, rgba(7,43,41,.82)); }
.dish__label { position: absolute; left: 1.3rem; right: 1.3rem; bottom: 1.3rem; z-index: 2; color: #fff; }
.dish__label h3 { color: #fff; font-size: 1.5rem; margin-bottom: .2rem; }
.dish__label p { font-size: .82rem; color: rgba(255,255,255,.82); max-width: none; }

/* ---------- 11. Dark editorial band ---------- */
.band-dark { background: var(--green-deep); color: var(--on-dark); }
.band-dark h2, .band-dark h3 { color: #fff; }
.band-dark .lead { color: var(--on-dark-soft); }
.band-dark .eyebrow { color: var(--green-tint-2); }

/* Quote */
.quote { text-align: center; }
.quote blockquote {
  font-family: var(--serif); font-weight: 500; font-style: italic;
  font-size: clamp(1.8rem, 4.4vw, 3.2rem); line-height: 1.2; color: #fff;
  max-width: 20ch; margin-inline: auto;
}
.quote cite { display: block; margin-top: 1.6rem; font-family: var(--sans); font-style: normal; font-size: .74rem; letter-spacing: .22em; text-transform: uppercase; color: var(--green-tint-2); }

/* ---------- 12. Feature list (concept) ---------- */
.features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2.5rem 3.5rem; }
.feature { border-top: 1px solid var(--line); padding-top: 1.4rem; }
.band-dark .feature { border-color: rgba(244,239,228,.18); }
.feature__num { font-family: var(--serif); font-size: 1.1rem; color: var(--green); display: block; margin-bottom: .6rem; }
.band-dark .feature__num { color: var(--green-tint-2); }
.feature h3 { font-size: 1.25rem; margin-bottom: .5rem; }
.feature p { font-size: .95rem; }
.band-dark .feature p { color: var(--on-dark-soft); }

/* ---------- 13. Private dining ---------- */
.pd { position: relative; color: #fff; overflow: hidden; }
.pd__bg { position: absolute; inset: 0; z-index: -2; }
.pd__bg img { width: 100%; height: 100%; object-fit: cover; }
.pd::after { content:""; position:absolute; inset:0; z-index:-1; background: linear-gradient(90deg, rgba(7,43,41,.9) 0%, rgba(7,43,41,.55) 60%, rgba(7,43,41,.35)); }
.pd .eyebrow { color: var(--green-tint-2); }
.pd h2 { color: #fff; }
.pd__tags { display: flex; flex-wrap: wrap; gap: .6rem; margin: 1.8rem 0; }
.pd__tags li { border: 1px solid rgba(244,239,228,.35); border-radius: 40px; padding: .5rem 1.1rem; font-size: .78rem; letter-spacing: .04em; color: var(--on-dark); }

/* ---------- 14. Reviews ---------- */
.reviews__head { text-align: center; margin-bottom: clamp(2.5rem, 6vw, 4rem); }
.rating { display: inline-flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: .35rem .7rem; margin-top: 1.2rem; }
.rating__stars { color: var(--green); letter-spacing: .1em; font-size: 1.1rem; }
.rating span { font-size: .82rem; color: var(--muted); letter-spacing: .04em; }
.reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 1fr; gap: 1.6rem; }
.review { background: var(--cream); border: 1px solid var(--line); border-radius: 3px; padding: 2rem 1.8rem; display: flex; flex-direction: column; }
.review p { font-family: var(--serif); font-size: 1.28rem; line-height: 1.4; color: var(--green-deep); font-style: italic; max-width: none; margin: 0 0 1.3rem; }
.review footer { margin-top: auto; display: flex; align-items: center; gap: .7rem; }
.review .avatar { width: 34px; height: 34px; border-radius: 50%; background: var(--green-tint); color: var(--green-deep); display: grid; place-items: center; font-family: var(--sans); font-weight: 700; font-size: .85rem; }
.review cite { font-style: normal; font-weight: 700; font-size: .84rem; letter-spacing: .04em; }

/* ---------- 15. Recognition ---------- */
.reco { text-align: center; }
.reco__logos { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem 2.5rem; margin-top: 2rem; }
.reco__logos li { font-family: var(--serif); font-size: 1.15rem; color: var(--ink-soft); opacity: .85; }

/* ---------- 16. Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: clamp(140px, 20vw, 260px); gap: 10px; }
.gallery a { overflow: hidden; border-radius: 2px; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.gallery a:hover img { transform: scale(1.06); }
.gallery .g-tall { grid-row: span 2; }
.gallery .g-wide { grid-column: span 2; }

/* ---------- 17. Reservation CTA ---------- */
.book { text-align: center; background: var(--sand); }
.book h2 { max-width: 16ch; margin: 1.3rem auto 1.4rem; }
.book .lead { max-width: 52ch; margin-inline: auto; }
.book__actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-top: 2.4rem; }
.book__meta { margin-top: 2.6rem; margin-inline: auto; font-size: .82rem; letter-spacing: .04em; color: var(--muted); }

/* ---------- 18. Footer ---------- */
.footer { background: var(--green-darker); color: var(--on-dark); padding-top: clamp(4rem, 8vw, 6rem); }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 2.5rem 3rem; padding-bottom: 3.5rem; border-bottom: 1px solid rgba(244,239,228,.14); }
.footer h4 { color: #fff; font-family: var(--sans); font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; margin-bottom: 1.3rem; font-weight: 700; }
.footer__brand .brand__name { color: #fff; font-size: 1.6rem; }
.footer__brand .brand__sub { color: var(--green-tint-2); }
.footer__logo { display: block; width: clamp(180px, 42%, 215px); height: auto; }
.footer__brand .footer__brand-sub { color: var(--green-tint-2); font-family: var(--sans); font-size: .62rem; letter-spacing: .32em; text-transform: uppercase; margin-top: .95rem; }
.footer__brand p { color: var(--on-dark-soft); font-size: .92rem; margin-top: 1.2rem; max-width: 34ch; }
.footer ul li { margin-bottom: .7rem; }
.footer ul a, .footer address a, .footer address { color: var(--on-dark-soft); font-size: .92rem; font-style: normal; transition: color .3s var(--ease); }
.footer ul a:hover, .footer address a:hover { color: #fff; }
.footer address p { margin-bottom: .7rem; max-width: none; }
.footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; padding-block: 2rem; font-size: .78rem; color: var(--on-dark-soft); }
.footer__social { display: flex; gap: 1.4rem; }
.footer__social a { color: var(--on-dark-soft); }
.footer__social a:hover { color: #fff; }

/* ---------- 19. Floating WhatsApp ---------- */
.wa-float {
  position: fixed; right: clamp(1rem, 3vw, 2rem); bottom: clamp(1rem, 3vw, 2rem); z-index: 90;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--green); color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 10px 30px rgba(11,64,60,.35);
  transition: transform .35s var(--ease), background .35s var(--ease);
}
.wa-float:hover { transform: scale(1.08) translateY(-2px); background: var(--green-deep); }
.wa-float svg { width: 30px; height: 30px; }

/* ---------- 20. Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .1s; }
.reveal[data-delay="2"] { transition-delay: .2s; }
.reveal[data-delay="3"] { transition-delay: .3s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .hero__scroll::after { animation: none; }
}

/* ---------- 21. Responsive ---------- */
/* header state while full menu is open (over light overlay) */
body.menu-open .brand__name { color: var(--green-deep); }
body.menu-open .brand__sub { color: var(--green); }
body.menu-open .nav a { color: var(--ink); }
body.menu-open .header__cta .btn--light { border-color: var(--line); color: var(--ink); }

@media (max-width: 980px) {
  .nav, .header__cta .btn { display: none; }
  .split { grid-template-columns: 1fr; gap: 2.5rem; }
  .split--reverse .split__text { order: 0; }
  .split__media img { aspect-ratio: 16/11; }
  .features { grid-template-columns: 1fr; gap: 2rem; }
  .reviews__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .mega__groups { grid-template-columns: repeat(2, 1fr); align-content: start; }
  .mega__foot { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .hero__scroll { display: none; }
  .press { grid-template-columns: 1fr; }
  .dishes { grid-template-columns: 1fr; }
  .reviews__grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: clamp(140px, 42vw, 200px); }
  .gallery .g-tall { grid-row: auto; }
  .gallery .g-wide { grid-column: auto; }
  .footer__grid { grid-template-columns: 1fr; }
  .trust__inner { gap: .8rem 1.6rem; }
  .mega__groups { grid-template-columns: 1fr; gap: 2rem; }
  .mega__group a { font-size: 1.5rem; }
}
@media (max-width: 560px) {
  /* compact brand mark — keep it on one tidy line, no wrap */
  .brand__name { font-size: 1.2rem; letter-spacing: .1em; }
  .brand__sub { font-size: .5rem; letter-spacing: .16em; white-space: nowrap; }
  .header__inner { gap: 1rem; }
  .footer__brand .brand__sub { white-space: normal; }
}

/* =================================================================
   22. INTERIOR PAGES
   ================================================================= */

/* Page hero (shorter than homepage hero) */
.subhero { position: relative; min-height: 60vh; display: flex; align-items: flex-end; color: #fff; overflow: hidden; }
.subhero--tall { min-height: 72vh; }
.subhero__media { position: absolute; inset: 0; z-index: -2; }
.subhero__media img { width: 100%; height: 100%; object-fit: cover; }
.subhero::after { content:""; position:absolute; inset:0; z-index:-1; background: linear-gradient(180deg, rgba(7,43,41,.5) 0%, rgba(7,43,41,.15) 45%, rgba(7,43,41,.8) 100%); }
.subhero__inner { padding-top: calc(var(--header-h) + 3rem); padding-bottom: clamp(2.5rem, 6vh, 4.5rem); }
.subhero .eyebrow { color: #fff; opacity: .92; }
.subhero h1 { color: #fff; margin: 1rem 0 1rem; font-size: clamp(2.4rem, 6vw, 4.6rem); max-width: 18ch; }
.subhero__sub { font-size: clamp(1.05rem, 1.7vw, 1.3rem); color: rgba(255,255,255,.9); max-width: 50ch; font-weight: 300; }

/* Breadcrumb — overlaid over the subhero image (full-bleed under the header) */
.breadcrumb { position: absolute; z-index: 6; left: 0; right: 0; top: calc(var(--header-h) + .2rem); padding-top: 0; padding-bottom: 0; }
.breadcrumb ol { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: .5rem; font-size: .76rem; letter-spacing: .04em; color: rgba(255,255,255,.82); }
.breadcrumb a { color: rgba(255,255,255,.82); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb li[aria-current] { color: #fff; }
.breadcrumb .sep { opacity: .55; }

/* Editorial prose block */
.prose { max-width: 720px; margin-inline: auto; }
.prose > * + * { margin-top: 1.3rem; }
.prose h2 { margin-top: 2.4rem; }
.prose h3 { margin-top: 1.8rem; color: var(--green-deep); }
.prose p { max-width: none; }
.prose ul.bullets { display: grid; gap: .8rem; }
.prose ul.bullets li { position: relative; padding-left: 1.6rem; color: var(--ink-soft); }
.prose ul.bullets li::before { content:"◇"; position: absolute; left: 0; color: var(--green); font-size: .8rem; top: .15rem; }
.prose strong { color: var(--green-deep); }

/* Callout / note box */
.note { background: var(--green-tint); border-left: 3px solid var(--green); padding: 1.4rem 1.6rem; border-radius: 2px; }
.note p { max-width: none; margin: 0; color: var(--green-deep); }

/* Press features */
.press { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem; margin-top: 1.6rem; }
.press__card { background: var(--cream); border: 1px solid var(--line); border-radius: 3px; padding: 1.9rem 1.8rem; display: flex; flex-direction: column; }
.press__source { font-size: .72rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--green); }
.press__quote { font-family: var(--serif); font-size: 1.22rem; line-height: 1.45; color: var(--green-deep); font-style: italic; max-width: none; margin: .9rem 0 1.4rem; }
.press__card .textlink { margin-top: auto; align-self: flex-start; }

/* Info steps (reservation, concept) */
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.6rem; }
.step { background: var(--cream); border: 1px solid var(--line); border-radius: 3px; padding: 2rem 1.6rem; }
.step__num { font-family: var(--serif); font-size: 2rem; color: var(--green); line-height: 1; }
.step h3 { font-size: 1.2rem; margin: .8rem 0 .5rem; }
.step p { font-size: .92rem; margin: 0; }

/* =============== MENU =============== */
.menu-legend { display: flex; flex-wrap: wrap; gap: .7rem 1.4rem; justify-content: center; padding: 1.4rem; background: var(--cream); border: 1px solid var(--line); border-radius: 3px; }
.menu-legend span { font-size: .74rem; letter-spacing: .04em; color: var(--ink-soft); display: inline-flex; align-items: center; gap: .45rem; }
.mtag { display: inline-flex; align-items: center; justify-content: center; font-size: .58rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; padding: .18rem .5rem; border-radius: 40px; border: 1px solid var(--green); color: var(--green); white-space: nowrap; line-height: 1.4; }
.mtag--solid { background: var(--green); color: #fff; }

.menu-section { margin-top: clamp(3rem, 6vw, 4.5rem); }
.menu-section__head { text-align: center; max-width: 640px; margin: 0 auto 2.4rem; }
.menu-section__head h2 { margin-bottom: .8rem; }
.menu-section__head p { margin-inline: auto; font-size: .98rem; color: var(--ink-soft); }
.menu-list { max-width: 780px; margin-inline: auto; }
.menu-item { padding: 1.4rem 0; border-bottom: 1px solid var(--line); }
.menu-item:last-child { border-bottom: none; }
.menu-item__head { display: flex; align-items: baseline; gap: .8rem; }
.menu-item__name { font-family: var(--serif); font-size: 1.4rem; font-weight: 500; color: var(--green-deep); line-height: 1.2; }
.menu-item__leader { flex: 1; border-bottom: 1px dotted var(--line); transform: translateY(-4px); min-width: 20px; }
.menu-item__price { font-family: var(--serif); font-size: 1.25rem; color: var(--green); white-space: nowrap; font-weight: 500; }
.menu-item__desc { margin-top: .5rem; font-size: .95rem; color: var(--ink-soft); max-width: 62ch; }
.menu-item__tags { display: inline-flex; flex-wrap: wrap; gap: .4rem; margin-top: .7rem; }
.menu-note { max-width: 780px; margin: 2rem auto 0; }

/* =============== WINE / COCKTAILS =============== */
.drink-group { max-width: 820px; margin: 0 auto; }
.drink-group + .drink-group { margin-top: clamp(2.5rem,5vw,3.5rem); }
.drink-group__title { font-family: var(--serif); font-size: 1.5rem; color: var(--green-deep); padding-bottom: .7rem; border-bottom: 2px solid var(--green); margin-bottom: 1.4rem; display: inline-block; }
.wine-card { padding: 1.3rem 0; border-bottom: 1px solid var(--line); }
.wine-card:last-child { border-bottom: none; }
.wine-card__head { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; }
.wine-card__name { font-weight: 700; font-size: 1.02rem; color: var(--green-deep); }
.wine-card__origin { font-weight: 400; color: var(--muted); font-size: .88rem; }
.wine-card__price { font-family: var(--serif); font-size: 1.1rem; color: var(--green); white-space: nowrap; }
.wine-card__meta { font-size: .9rem; color: var(--ink-soft); margin-top: .5rem; }
.wine-card__meta b { color: var(--green-deep); font-weight: 700; }
.wine-card--feature { background: var(--green-tint); border: 1px solid var(--green-tint-2); border-radius: 3px; padding: 1.6rem; border-bottom: 1px solid var(--green-tint-2); }

/* =============== PANTRY =============== */
.pantry { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem 3rem; }
.pantry__item { border-top: 1px solid var(--line); padding-top: 1.3rem; }
.pantry__item h3 { font-size: 1.35rem; margin-bottom: .5rem; }
.pantry__item p { font-size: .95rem; color: var(--ink-soft); }

/* =============== Journal cards + article =============== */
.jgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.jcard { display: flex; flex-direction: column; background: var(--cream); border: 1px solid var(--line); border-radius: 4px; overflow: hidden; transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.jcard:hover { transform: translateY(-4px); box-shadow: 0 18px 40px -24px rgba(11,64,60,.4); }
.jcard__img { display: block; aspect-ratio: 3 / 2; overflow: hidden; }
.jcard__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.jcard:hover .jcard__img img { transform: scale(1.05); }
.jcard__body { display: flex; flex-direction: column; gap: .55rem; padding: 1.4rem 1.5rem 1.6rem; }
.jcard__date { font-size: .7rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--green); }
.jcard__title { font-family: var(--serif); font-size: 1.5rem; line-height: 1.12; color: var(--green-deep); }
.jcard__desc { font-size: .92rem; color: var(--ink-soft); line-height: 1.6; }
.jcard .textlink { margin-top: .3rem; }
.article__meta { font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--green); margin-bottom: 1.6rem; }

@media (max-width: 900px) { .jgrid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .jgrid { grid-template-columns: 1fr; } }

/* =============== FAQ =============== */
.faq { max-width: 780px; margin-inline: auto; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item summary { cursor: pointer; list-style: none; padding: 1.4rem 2.5rem 1.4rem 0; position: relative; font-family: var(--serif); font-size: 1.25rem; color: var(--green-deep); transition: color .3s var(--ease); }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content:"+"; position: absolute; right: .3rem; top: 50%; transform: translateY(-50%); font-family: var(--sans); font-size: 1.5rem; color: var(--green); transition: transform .3s var(--ease); }
.faq__item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq__item summary:hover { color: var(--green); }
.faq__answer { padding: 0 0 1.5rem; color: var(--ink-soft); }
.faq__answer p { max-width: none; }
.faq__answer a { color: var(--green); font-weight: 600; }

/* =============== CONTACT =============== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem,5vw,4rem); align-items: start; }
.contact-info dl { display: grid; gap: 1.4rem; }
.contact-info dt { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--green); font-weight: 700; margin-bottom: .3rem; }
.contact-info dd { font-size: 1.05rem; color: var(--ink); }
.contact-info dd a { color: var(--ink); border-bottom: 1px solid var(--green); }
.contact-info dd a:hover { color: var(--green); }
.contact-map { border-radius: 3px; overflow: hidden; border: 1px solid var(--line); min-height: 420px; }
.contact-map iframe { width: 100%; height: 100%; min-height: 420px; border: 0; display: block; }

/* Related pages */
.related { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.4rem; }
.related__card { position: relative; overflow: hidden; border-radius: 3px; min-height: 240px; display: flex; align-items: flex-end; color: #fff; padding: 1.6rem; }
.related__card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform 1s var(--ease); }
.related__card::after { content:""; position:absolute; inset:0; z-index:-1; background: linear-gradient(180deg, transparent 30%, rgba(7,43,41,.85)); }
.related__card:hover img { transform: scale(1.06); }
.related__card span { font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; opacity: .85; display: block; margin-bottom: .3rem; }
.related__card h3 { color: #fff; font-size: 1.35rem; }

@media (max-width: 900px) {
  .steps { grid-template-columns: 1fr; }
  .pantry { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .related { grid-template-columns: 1fr; }
}
