/* ==========================================================================
   BÁYRŪT — design system
   Brand palette + type lifted from bayrut.ca, modernized.
   NOTE: display font is Sentient (Fontshare) as a stand-in for IvyMode
   (Adobe Fonts). At the WordPress stage, swap --font-display to the
   client's Typekit kit — everything else follows.
   ========================================================================== */

:root {
  --cream: #f1f0e6;
  --paper: #f7f6ef;
  --olive: #90946f;        /* brand sage — decorative use on light bg only */
  --olive-strong: #6b6f4e; /* button fills: white text = 5.2:1 (AA) */
  --olive-ink: #63674a;    /* small olive text on cream/paper = 5.1:1 (AA) */
  --olive-soft: #a9ac8d;
  --olive-deep: #3e4028;
  --olive-night: #33351f;
  --ink: #48492f;
  --gold: #cfb476;         /* gold text: dark backgrounds only (fails on cream) */
  --gold-bright: #dab573;
  --white: #ffffff;
  --line: rgba(72, 73, 47, 0.16);

  --font-display: "Sentient", "IvyMode", Georgia, serif;
  --font-body: "Satoshi", -apple-system, "Helvetica Neue", Arial, sans-serif;

  --size-hero: clamp(2.6rem, 6.5vw, 5.2rem);
  --size-h2: clamp(2rem, 4.2vw, 3.4rem);
  --size-h3: clamp(1.35rem, 2.2vw, 1.75rem);
  --size-body: 1.0625rem;
  --size-small: 0.875rem;

  --space-section: clamp(4.5rem, 10vw, 8.5rem);
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --max-w: 76rem;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--size-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, iframe { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.12;
  margin: 0 0 1rem;
  letter-spacing: 0.005em;
  text-wrap: balance;
}
h1 { font-size: var(--size-hero); }
h2 { font-size: var(--size-h2); }
h3 { font-size: var(--size-h3); }
p { margin: 0 0 1.1rem; }
:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 3px;
  border-radius: 2px;
}
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--olive-deep); color: var(--cream);
  padding: 0.6rem 1rem; text-decoration: none;
}
.skip-link:focus { left: 0.75rem; top: 0.75rem; }

.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ---------- signature: gold diacritic eyebrow ---------- */
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--olive-ink);
  margin-bottom: 1.4rem;
}
.eyebrow::before {              /* ⁄ ○ motif from the brand pattern band;
                                   block display inherits text-align, so it
                                   self-centers above centered headings */
  content: "\2044 \25CB";
  display: block;
  font-size: 1.2em;
  font-weight: 700;
  -webkit-text-stroke: 0.8px var(--gold-bright);
  letter-spacing: 0.2em;
  color: var(--gold-bright);
  margin-bottom: 0.45rem;
}
.section--dark .eyebrow { color: var(--olive-soft); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.9rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1.5px solid var(--olive-strong);
  background: var(--olive-strong);
  color: var(--white);
  cursor: pointer;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease),
              color 0.25s var(--ease), transform 0.25s var(--ease);
}
.btn:hover { background: var(--olive-deep); border-color: var(--olive-deep); transform: translateY(-1px); }
.btn--outline { background: transparent; color: var(--ink); }
.btn--outline:hover { background: var(--olive-strong); color: var(--white); transform: translateY(-1px); }
.btn--gold { background: var(--gold-bright); border-color: var(--gold-bright); color: var(--olive-night); }
.btn--gold:hover { background: var(--gold); border-color: var(--gold); color: var(--olive-night); }
.btn--ghost-light { background: transparent; border-color: rgba(241, 240, 230, 0.5); color: var(--cream); }
.btn--ghost-light:hover { background: var(--cream); border-color: var(--cream); color: var(--olive-deep); }
.btn--lg { padding: 1.15rem 2.4rem; font-size: 1rem; }

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(241, 240, 230, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.site-header.is-scrolled { border-bottom-color: var(--line); }
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 0.9rem;
}
.site-header__logo img { height: 34px; width: auto; }
.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.1rem, 2.4vw, 2.1rem);
}
.site-nav a:not(.btn) {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-decoration: none;
  color: var(--ink);
  position: relative;
  padding-block: 0.3rem;
}
.site-nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1.5px;
  background: var(--gold-bright);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.site-nav a:not(.btn):hover::after,
.site-nav a[aria-current="page"]::after { transform: scaleX(1); }
.site-nav .btn { padding: 0.65rem 1.3rem; font-size: 0.8125rem; }
.lang-switch {
  font-weight: 700 !important;
  letter-spacing: 0.14em !important;
  color: var(--olive-ink) !important;
}
/* single reservation path above the fold: on pages with a video hero,
   the nav CTA appears only after scrolling past the hero button */
body.at-hero .site-header .btn {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.site-header .btn { transition: opacity 0.35s var(--ease), visibility 0.35s; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--ink);
  margin: 5px 0;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  /* solid header on mobile: backdrop-filter would become the containing
     block for the fixed nav panel and collapse it to header height */
  .site-header {
    background: var(--cream);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .site-header__logo, .nav-toggle { position: relative; z-index: 96; }
  .site-nav {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    gap: 1.9rem;
    background: var(--cream);
    transform: translateY(-100%);
    transition: transform 0.4s var(--ease), visibility 0s 0.4s;
    z-index: 95;
    visibility: hidden;
    padding-top: 3rem;
  }
  .site-nav.is-open {
    transform: translateY(0);
    transition: transform 0.4s var(--ease);
    visibility: visible;
  }
  .site-nav.is-open { transform: translateY(0); }
  .site-nav a:not(.btn) { font-size: 1.35rem; font-family: var(--font-display); letter-spacing: 0.02em; }
  body.nav-locked { overflow: hidden; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  padding-block: clamp(5rem, 12vh, 9rem) clamp(4rem, 9vh, 7rem);
  text-align: center;
  overflow: hidden;
}
.hero__accents {                 /* floating diacritics from the logotype */
  position: absolute;
  inset: 0;
  pointer-events: none;
  font-family: var(--font-display);
  color: var(--gold-bright);
}
.hero__accents span {
  position: absolute;
  font-size: clamp(3rem, 7vw, 6rem);
  opacity: 0.55;
  animation: drift 9s var(--ease) infinite alternate;
}
.hero__accents span:nth-child(1) { top: 12%; left: 12%; animation-delay: 0s; }
.hero__accents span:nth-child(2) { top: 22%; right: 14%; animation-delay: -3s; }
.hero__accents span:nth-child(3) { bottom: 18%; left: 20%; animation-delay: -6s; }
@keyframes drift {
  from { transform: translateY(-6px); }
  to   { transform: translateY(10px); }
}
@media (prefers-reduced-motion: reduce) {
  .hero__accents span { animation: none; }
}
.hero h1 {
  max-width: 17ch;
  margin-inline: auto;
}
/* what-and-where clarifier: lives inside the h1 for SEO, renders as an
   eyebrow. Cold visitors learn "Lebanese, Griffintown" before the poetry. */
.hero__kicker {
  display: block;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 2.6rem;
}
/* in video heroes the kicker pins near the header, out of the
   headline's way — the brand line stays the focal point */
.hero--video .hero__kicker {
  position: absolute;
  top: clamp(1.4rem, 5vh, 3rem);
  left: 0;
  right: 0;
  z-index: 2;
  margin: 0;
  text-align: center;
  padding-inline: var(--gutter);
}
.hero__kicker::before {
  content: "\2044 \25CB";
  display: block;
  font-size: 1.25em;
  font-weight: 700;
  -webkit-text-stroke: 0.8px var(--gold-bright);
  letter-spacing: 0.2em;
  color: var(--gold-bright);
  margin: 0 auto 0.7rem;
}
.hero__hours {
  margin-top: 0.6rem !important;
}
.hero__hours a { font-weight: 700; }
.hero--video .hero__lead {
  max-width: 40rem;
  margin: 0 auto 2.2rem;
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(241, 240, 230, 0.88);
}
/* little review line in the hero (replaces the address block) */
.hero__rating {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 2.4rem;
  font-size: var(--size-small);
  letter-spacing: 0.06em;
  color: rgba(241, 240, 230, 0.85);
  text-decoration: none;
}
.hero__rating .stars { color: var(--gold-bright); letter-spacing: 0.2em; }
.hero__rating strong { color: var(--cream); }
.hero__rating:hover strong { color: var(--gold-bright); }

/* address + hours line inside the menus section */
.info-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.6rem;
  font-size: var(--size-small);
  color: var(--olive-ink);
  margin-top: 0.4rem;
}
.info-line a { font-weight: 700; text-decoration: none; color: var(--ink); }
.info-line a:hover { color: var(--olive-ink); }
.hero h1 em {
  font-style: italic;
  color: var(--olive-ink);
}
.hero__tag {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--olive-ink); /* gold only on dark (video hero overrides) */
  margin: 1.4rem 0 2.2rem;
}
.hero__tag b { color: var(--olive-ink); font-weight: 500; }
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
}
.hero__meta {
  margin-top: 2.6rem;
  font-size: var(--size-small);
  letter-spacing: 0.08em;
  color: var(--olive-ink);
}
.hero__meta a { text-decoration: none; font-weight: 700; }
.hero__meta a:hover { color: var(--olive-deep); }

/* ---------- video hero ---------- */
.hero--video {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  overflow: hidden;
}
.hero--video .hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero--video::after {          /* legibility scrim, olive-tinted */
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(38, 40, 24, 0.55) 0%,
    rgba(38, 40, 24, 0.35) 45%,
    rgba(38, 40, 24, 0.62) 100%
  );
}
.hero--video .container { position: relative; z-index: 2; }
.hero--video h1 { color: var(--cream); text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35); }
.hero--video h1 em { color: var(--gold-bright); }
.hero--video .hero__tag { color: rgba(241, 240, 230, 0.85); }
.hero--video .hero__tag b { color: var(--gold-bright); }
.hero--video .hero__meta { color: rgba(241, 240, 230, 0.75); }
.hero--video .hero__meta a { color: var(--cream); }
.hero--video .btn--outline { border-color: rgba(241, 240, 230, 0.6); color: var(--cream); }
.hero--video .btn--outline:hover { background: var(--cream); color: var(--olive-deep); border-color: var(--cream); }
@media (prefers-reduced-motion: reduce) {
  .hero--video .hero__bg { display: none; }
  .hero--video { background: var(--olive-deep); }
  .hero--video .hero__poster-fallback {
    display: block;
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
  }
}
.hero__poster-fallback { display: none; }

/* scroll cue at hero bottom — gold macron that drifts down */
.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 1.6rem;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  text-decoration: none;
  color: rgba(241, 240, 230, 0.75);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}
.scroll-cue::after {
  content: "";
  width: 2px;
  height: 2.4rem;
  background: linear-gradient(to bottom, var(--gold-bright), transparent);
  animation: cue-drift 2.2s var(--ease) infinite;
}
@keyframes cue-drift {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(0.8rem); opacity: 0.2; }
  100% { transform: translateY(0.8rem); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .scroll-cue::after { animation: none; }
}

/* ---------- parallax image bands ("touts") ---------- */
.tout {
  position: relative;
  min-height: clamp(26rem, 78vh, 42rem);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: var(--cream);
}
.tout__img {
  position: absolute;
  left: 0;
  top: -12%;
  width: 100%;
  height: 124%;          /* taller than the band: travel room for parallax */
  object-fit: cover;
  z-index: 0;
  will-change: transform;
}
.tout::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(38, 40, 24, 0.66),
    rgba(38, 40, 24, 0.54) 50%,
    rgba(38, 40, 24, 0.7)
  );
}
.tout__content {
  position: relative;
  z-index: 2;
  padding-block: clamp(4rem, 9vh, 6rem);
}
.tout h2 { color: var(--cream); text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3); }
.tout .lead { color: rgba(241, 240, 230, 0.85); }
.tout .eyebrow { color: var(--olive-soft); }
.tout .book-band__phone { color: var(--olive-soft); }
.tout .book-band__phone a { color: var(--cream); }
.tout .book-band__phone a:hover { color: var(--gold-bright); }

/* parallax-driven photos: JS sets --plx; scale gives crop buffer */
.js-plx .photo-frame img,
.js-plx .menu-card__img img {
  transform: scale(1.12) translate3d(0, var(--plx, 0px), 0);
  will-change: transform;
}
.js-plx .photo-frame:hover img,
.js-plx .menu-card:hover .menu-card__img img {
  transform: scale(1.12) translate3d(0, var(--plx, 0px), 0); /* parallax replaces hover zoom */
}
.js-plx .hero--video .hero__bg {
  transform: translate3d(0, var(--plx, 0px), 0) scale(1.06);
  will-change: transform;
}

/* staggered reveals for card grids */
.menu-grid .reveal:nth-child(2), .steps .reveal:nth-child(2), .props .reveal:nth-child(2) { transition-delay: 0.12s; }
.menu-grid .reveal:nth-child(3), .steps .reveal:nth-child(3), .props .reveal:nth-child(3) { transition-delay: 0.24s; }
.menu-grid .reveal:nth-child(4), .steps .reveal:nth-child(4), .props .reveal:nth-child(4) { transition-delay: 0.36s; }

/* ---------- photos ---------- */
.photo-frame {
  overflow: hidden;
  border: 1px solid var(--line);
}
.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.photo-frame:hover img { transform: scale(1.035); }
.split__photo {
  aspect-ratio: 4 / 5;
  max-width: 26rem;
}
.menu-card__img {
  margin: -2.2rem -1.8rem 1.2rem;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.menu-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.menu-card:hover .menu-card__img img { transform: scale(1.05); }

/* gallery strip — continuous marquee (auto-rotating carousel) */
.gallery-strip {
  overflow: hidden;
  margin-top: 2.6rem;          /* air under the section heading */
  padding-bottom: 1rem;
}
.gallery-strip__track {
  display: flex;
  width: max-content;
  animation: gallery-marquee 55s linear infinite;
}
.gallery-strip:hover .gallery-strip__track,
.gallery-strip:focus-within .gallery-strip__track {
  animation-play-state: paused;
}
.gallery-strip__group {
  display: flex;
  gap: 0.8rem;
  padding-right: 0.8rem;
}
@keyframes gallery-marquee {
  to { transform: translateX(-50%); }
}
.gallery-strip figure {
  margin: 0;
  flex: 0 0 clamp(15rem, 30vw, 24rem);
}
.gallery-strip .photo-frame { aspect-ratio: 4 / 3; }
.gallery-strip figcaption {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--olive-ink);
  margin-top: 0.5rem;
}
@media (prefers-reduced-motion: reduce) {
  .gallery-strip { overflow-x: auto; scrollbar-width: thin; }
  .gallery-strip__track { animation: none; }
}

/* ---------- reviews ---------- */
.reviews { text-align: center; }
.section.reviews { padding-block: clamp(2.8rem, 5.5vw, 4.2rem); } /* thinner band */

/* review cards marquee (reuses the gallery marquee track/clone machinery);
   full-bleed: cards run edge to edge of the screen */
.reviews .gallery-strip {
  margin-top: 2.2rem;
  padding-bottom: 0;
  margin-inline: calc(50% - 50vw);
}
.review-card {
  flex: 0 0 clamp(17rem, 30vw, 23rem);
  background: rgba(241, 240, 230, 0.06);
  border: 1px solid rgba(241, 240, 230, 0.16);
  padding: 1.8rem 1.6rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.review-card .stars { color: var(--gold-bright); letter-spacing: 0.2em; font-size: 0.9rem; }
.review-card p {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.06rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--cream);
}
.review-card footer {
  margin-top: auto;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--olive-soft);
}

/* ---------- instagram feed: profile-style 3-across vertical grid ---------- */
.ig-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin-top: 2.6rem;
  max-width: 60rem;
  margin-inline: auto;
}
.ig-grid a {
  position: relative;
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
}
.ig-grid img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease), filter 0.6s var(--ease);
}
.ig-grid a::after {
  content: "";
  position: absolute; inset: 0;
  background: rgba(38, 40, 24, 0);
  transition: background 0.4s var(--ease);
}
.ig-grid a:hover::after { background: rgba(38, 40, 24, 0.35); }
.ig-grid a:hover img { transform: scale(1.05); }
.ig-grid svg {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 30px; height: 30px;
  fill: var(--cream);
  opacity: 0;
  z-index: 2;
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.ig-grid a:hover svg { opacity: 1; transform: translate(-50%, -50%) scale(1); }
/* centered story-teaser photo pair */
.story-photos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  max-width: 54rem;
  margin: 2.8rem auto 0;
}
.story-photos .photo-frame { aspect-ratio: 4 / 5; }
@media (max-width: 620px) { .story-photos { grid-template-columns: 1fr; } }

/* ---------- menu page tabs ---------- */
.menu-block.is-hidden { display: none; }

/* ---------- cookie banner (bottom-left) ---------- */
.cookie-banner {
  position: fixed;
  left: 1rem;
  bottom: 1rem;
  z-index: 120;
  max-width: 22rem;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: 0 12px 40px rgba(38, 40, 24, 0.18);
  padding: 1.2rem 1.3rem;
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--ink);
}
.cookie-banner p { margin: 0 0 0.9rem; }
.cookie-banner__actions { display: flex; gap: 0.5rem; }
.cookie-banner .btn { padding: 0.55rem 1rem; font-size: 0.75rem; }
@media (max-width: 520px) {
  .cookie-banner { left: 0.6rem; right: 0.6rem; bottom: 4.8rem; max-width: none; }
}

/* ---------- newsletter ---------- */
.nl-form {
  display: flex;
  gap: 0.6rem;
  max-width: 30rem;
}
.nl-form input[type="email"] {
  flex: 1;
  min-width: 0;
  padding: 0.85rem 1rem;
  font: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: 0;
}
.nl-form input:focus { outline: none; border-color: var(--olive-strong); }
.nl-form .btn { padding: 0.85rem 1.4rem; font-size: 0.8rem; white-space: nowrap; }
.nl-note { font-size: 0.78rem; color: var(--olive-ink); margin-top: 0.6rem; }
.nl-success { font-weight: 700; color: var(--olive-ink); }
/* footer variant on dark */
.footer-nl { padding-bottom: 2.4rem; }
.footer-nl h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 0.9rem;
}
.footer-nl .nl-form input[type="email"] {
  background: rgba(241, 240, 230, 0.08);
  border-color: rgba(241, 240, 230, 0.25);
  color: var(--cream);
}
.footer-nl .nl-note { color: rgba(241, 240, 230, 0.55); }
.footer-nl .nl-success { color: var(--gold-bright); }
/* newsletter topics on home */
.nl-topics {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin: 1.6rem 0 2.2rem;
}
.nl-topics span {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--olive-ink);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.45rem 1rem;
  background: var(--white);
}

/* ---------- landing / booking polish ---------- */
#ot-widget-container {
  display: flex;
  justify-content: center;
}
.landing-widget { width: 100%; }
/* props separation: paper band + vertical rules between the three */
.props > div { padding-inline: 1.8rem; }
@media (min-width: 761px) {
  .props > div + div { border-left: 1px solid var(--line); }
}
/* widget card inside the dark booking tout */
.tout .landing-widget { margin-top: 1.8rem; text-align: center; }
.tout .reviews__stars { margin-bottom: 0.4rem; }
.reviews__stars {
  color: var(--gold-bright);
  font-size: 1.4rem;
  letter-spacing: 0.35em;
  margin-bottom: 1.6rem;
}
.reviews blockquote {
  max-width: 42rem;
  margin: 0 auto 1.2rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.8vw, 2rem);
  font-style: italic;
  line-height: 1.45;
}
.reviews figcaption {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--olive-soft);
}
.reviews__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2.2rem;
  font-size: var(--size-small);
  color: var(--olive-soft);
  text-decoration: none;
}
.reviews__badge strong { color: var(--cream); }
.reviews__badge:hover strong { color: var(--gold-bright); }

/* photo band (full-bleed) */
.photo-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}
.photo-band .photo-frame { aspect-ratio: 1; border: none; }
@media (max-width: 620px) {
  .photo-band { grid-template-columns: repeat(3, 1fr); }
  .photo-band .photo-frame:nth-child(n+4) { display: none; }
}

/* ---------- sourced-in-lebanon band ---------- */
.source-band figure { margin: 0; }
.source-band figcaption {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--olive-ink);
  margin-top: 0.55rem;
  text-align: center;
}

/* brand pattern divider — rolls slowly, like a woven band in motion */
.pattern-strip {
  height: 38px;
  background-image: url("../assets/brand/pattern-banner.svg");
  background-repeat: repeat-x;
  background-size: auto 100%;
  background-position: 0 center;
  opacity: 0.85;
}
.pattern-strip--roll {
  animation: pattern-roll 48s linear infinite;
}
@keyframes pattern-roll {
  to { background-position-x: -1000px; }
}
@media (prefers-reduced-motion: reduce) {
  .pattern-strip--roll { animation: none; }
}

/* ---------- sections ---------- */
.section { padding-block: var(--space-section); }
.section--paper { background: var(--paper); }
.section--dark {
  background: var(--olive-deep);
  color: var(--cream);
}
.section--dark h2, .section--dark h3 { color: var(--cream); }
.section--dark .lead { color: rgba(241, 240, 230, 0.82); }
.section-head { max-width: 44rem; }
.section-head--center { margin-inline: auto; text-align: center; }
.lead { font-size: 1.16rem; line-height: 1.7; }

/* story split */
.split {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(2rem, 6vw, 5.5rem);
  align-items: start;
}
.split__aside { position: sticky; top: 6.5rem; }
/* direct-child only: sizes the decorative script SVGs, NOT photos
   nested inside .photo-frame */
.split__aside > img { width: min(240px, 60%); opacity: 0.9; }
@media (max-width: 760px) {
  .split { grid-template-columns: 1fr; }
  .split__aside { position: static; }
  .split__aside > img { width: 160px; }
}
.story-more { overflow: hidden; max-height: 0; transition: max-height 0.6s var(--ease); }
.story-more.is-open { max-height: 3000px; }
.link-more {
  background: none; border: none; padding: 0;
  font: inherit; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.85rem;
  color: var(--olive-ink); cursor: pointer;
  border-bottom: 2px solid var(--gold-bright);
  padding-bottom: 2px;
}
.link-more:hover { color: var(--olive-deep); }
a.link-more { text-decoration: none; display: inline-block; }

/* perk banner */
.perk {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.6rem 1.4rem;
  text-align: center;
  background: var(--gold-bright);
  color: var(--olive-night);
  padding: 1.1rem var(--gutter);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.9rem;
}
.perk strong { font-weight: 700; letter-spacing: 0.18em; }

/* ---------- menu cards ---------- */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 1.1rem;
  margin-top: 3rem;
}
.menu-card {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 2.2rem 1.8rem 1.9rem;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  min-height: 13.5rem;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease), border-color 0.3s var(--ease);
}
.menu-card:hover { background: var(--white); border-color: var(--gold); transform: translateY(-4px); }
.menu-card__kicker {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--olive-ink); /* gold fails contrast on light bg (1.9:1) */
}
.menu-card h3 { margin-bottom: 0.3rem; }
.menu-card p { font-size: var(--size-small); color: var(--olive-ink); margin-bottom: 0; }
.menu-card__action {
  margin-top: auto;
  padding-top: 1.2rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
}
.menu-card__action::after { content: " ↓"; color: var(--gold); }
.section--dark .menu-card { background: rgba(241, 240, 230, 0.05); border-color: rgba(241, 240, 230, 0.16); }
.section--dark .menu-card:hover { background: rgba(241, 240, 230, 0.1); border-color: var(--gold); }
.section--dark .menu-card h3 { color: var(--cream); }
.section--dark .menu-card__action { color: var(--cream); }

/* ---------- booking band ---------- */
.book-band { text-align: center; }
.book-band .btn { margin-top: 1.6rem; }
.book-band__phone {
  margin-top: 1.4rem;
  font-size: var(--size-small);
  letter-spacing: 0.06em;
  color: var(--olive-soft);
}
.book-band__phone a { color: var(--cream); font-weight: 700; text-decoration: none; }
.book-band__phone a:hover { color: var(--gold-bright); }

/* ---------- hours / find us ---------- */
.findus {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
@media (max-width: 760px) { .findus { grid-template-columns: 1fr; } }
.hours { width: 100%; border-collapse: collapse; margin-top: 0.5rem; }
.hours th, .hours td {
  text-align: left;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.975rem;
  vertical-align: top;
}
.hours th { font-weight: 700; letter-spacing: 0.04em; white-space: nowrap; padding-right: 1.5rem; }
.hours td { color: var(--olive-ink); }
.hours .is-closed td { color: var(--olive-ink); font-weight: 700; font-style: italic; }
.findus address {
  font-style: normal;
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 1.2rem;
}
.findus address strong { font-family: var(--font-display); font-weight: 400; font-size: 1.2rem; }
.map-embed {
  border: 1px solid var(--line);
  aspect-ratio: 4 / 3;
  width: 100%;
}
.map-embed iframe { width: 100%; height: 100%; border: 0; }

/* ---------- forms ---------- */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem 1.2rem;
}
.form-grid .field--full { grid-column: 1 / -1; }
@media (max-width: 620px) { .form-grid { grid-template-columns: 1fr; } }
.field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.45rem;
  color: var(--ink);
}
.field label .opt { color: var(--olive-ink); font-weight: 500; text-transform: none; letter-spacing: 0.02em; }
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: 0;
  transition: border-color 0.2s var(--ease);
  appearance: none;
}
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%2390946F' stroke-width='2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.6rem;
}
.field textarea { min-height: 9rem; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--olive-ink);
}
.field input[aria-invalid="true"], .field textarea[aria-invalid="true"] { border-color: #b0523c; }
.field .err {
  display: none;
  font-size: 0.8rem;
  color: #a34a35;
  margin-top: 0.3rem;
}
.field.has-error .err { display: block; }
.form-note { font-size: var(--size-small); color: var(--olive-ink); margin-top: 1rem; }
.section--dark .field label { color: var(--cream); }
.section--dark .field label .opt { color: var(--olive-soft); }
.section--dark .field .err { color: #e8b39c; }
.form-success {
  display: none;
  background: var(--paper);
  border: 1px solid var(--gold);
  padding: 2.4rem 2rem;
  text-align: center;
}
.form-success.is-visible { display: block; }
form.is-hidden { display: none; }
.form-success h3 { color: var(--olive-deep); }
.form-success p { margin-bottom: 0; color: var(--olive-ink); }

/* ---------- lunch box page ---------- */
.lunch-hero { text-align: left; }
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
  gap: 1.1rem;
  margin-top: 2.6rem;
}
.step {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 1.9rem 1.6rem;
}
.step h3 { font-size: 1.25rem; }
.step p { font-size: var(--size-small); color: var(--olive-ink); margin: 0; }
.step__mark {                   /* ⁄ ○ — marks traced from pattern-banner.svg */
  height: 1.7rem;
  color: var(--gold-bright);
  display: flex;
  align-items: center;
  margin-bottom: 0.9rem;
}
.step__mark svg { display: block; fill: currentColor; }

/* ---------- landing (ad traffic) ---------- */
.landing-header .site-header__inner { justify-content: space-between; }
.landing-hero {
  text-align: center;
  padding-block: clamp(3.5rem, 8vh, 6rem) clamp(2.5rem, 5vh, 4rem);
}
.landing-hero h1 { max-width: 20ch; margin-inline: auto; }
.landing-widget {
  max-width: 27rem;
  margin: 0 auto;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 1.6rem 1.4rem 1.2rem;
}
.landing-widget__title {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
  color: var(--olive-ink);
  margin-bottom: 1rem;
}
.landing-widget .btn { width: 100%; }
.landing-widget__alt {
  text-align: center;
  font-size: var(--size-small);
  color: var(--olive-ink);
  margin-top: 0.9rem;
}
.landing-widget__alt a { font-weight: 700; text-decoration: none; color: var(--ink); }
.props {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 2.6rem;
  text-align: center;
}
.props h3 { font-size: clamp(1.5rem, 2.3vw, 1.9rem); margin-bottom: 0.6rem; }
.props p { font-size: 1.02rem; line-height: 1.7; color: var(--olive-ink); margin: 0; }
.section--dark .props p { color: var(--olive-soft); }
.prop__glyph {                  /* ⁄ ○ — marks traced from pattern-banner.svg */
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-bright);
  margin-bottom: 1rem;
}
.prop__glyph svg { display: block; fill: currentColor; }
.quote {
  max-width: 40rem;
  margin-inline: auto;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.6vw, 1.8rem);
  font-style: italic;
  line-height: 1.5;
}
.quote footer {
  margin-top: 1.2rem;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--olive-ink);
}

/* ---------- menu page ---------- */
.menu-nav {
  position: sticky;
  top: 62px;                 /* below the site header */
  z-index: 50;
  background: rgba(241, 240, 230, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-block: 1px solid var(--line);
  overflow-x: auto;
  scrollbar-width: none;
}
.menu-nav::-webkit-scrollbar { display: none; }
.menu-nav__inner {
  display: flex;
  gap: 0.4rem;
  padding-block: 0.65rem;
  width: max-content;
  margin-inline: auto;
}
.menu-nav a {
  padding: 0.5rem 1.1rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--olive-ink);
  border: 1px solid transparent;
  border-radius: 999px;
  white-space: nowrap;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease);
}
.menu-nav a:hover { border-color: var(--olive-strong); }
.menu-nav a.is-active { background: var(--olive-strong); color: var(--white); }

.menu-block { scroll-margin-top: 8.5rem; }
.menu-block__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem 2rem;
  margin-bottom: 2.6rem;
}
.menu-block__head p { margin: 0; color: var(--olive-ink); font-size: var(--size-small); }
.menu-block__pdf {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 2px solid var(--gold-bright);
  padding-bottom: 2px;
  white-space: nowrap;
}
.menu-block__pdf:hover { color: var(--olive-ink); }

.menu-course {
  margin-bottom: 3.2rem;
}
.menu-course > h3 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--olive-ink);
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.7rem;
  margin-bottom: 1.6rem;
  position: relative;
}
.menu-course > h3::before {
  content: "";
  position: absolute;
  bottom: -1px; left: 0;
  width: 2.6rem; height: 3px;
  background: var(--gold-bright);
}
.dish-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem 3rem;
}
@media (max-width: 760px) { .dish-grid { grid-template-columns: 1fr; } }
.dish h4 {
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 400;
  margin-bottom: 0.25rem;
}
.dish h4 .tag {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--olive-ink);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.15rem 0.55rem;
  vertical-align: 0.2em;
  margin-left: 0.4rem;
  white-space: nowrap;
}
.dish p { margin: 0; font-size: var(--size-small); color: var(--olive-ink); line-height: 1.6; }
.menu-note {
  text-align: center;
  font-size: var(--size-small);
  color: var(--olive-ink);
  max-width: 44rem;
  margin: 0 auto;
}

/* ---------- footer ---------- */
.site-footer {
  background: var(--olive-night);
  color: rgba(241, 240, 230, 0.78);
  padding-block: 3.8rem 2.2rem;
  font-size: var(--size-small);
}
.site-footer a { color: var(--cream); text-decoration: none; }
.site-footer a:hover { color: var(--gold-bright); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr 1.6fr;
  gap: 2.2rem;
  padding-bottom: 2.6rem;
  border-bottom: 1px solid rgba(241, 240, 230, 0.14);
}
@media (max-width: 1020px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
/* newsletter as a grid column: stack the form vertically */
.footer-grid .footer-nl { padding-bottom: 0; }
.footer-grid .nl-form { flex-direction: column; align-items: stretch; max-width: none; }
.footer-grid .nl-form .btn { width: 100%; }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 1rem;
}
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { margin-bottom: 0.55rem; }
.footer-brand img { height: 40px; width: auto; margin-bottom: 1.1rem; filter: brightness(0) saturate(100%) invert(93%) sepia(7%) saturate(303%) hue-rotate(21deg) brightness(103%) contrast(90%); }
.footer-brand p { max-width: 26ch; line-height: 1.6; }
.socials { display: flex; gap: 0.8rem; margin-top: 0.4rem; }
.socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border: 1px solid rgba(241, 240, 230, 0.25);
  border-radius: 50%;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}
.socials a:hover { border-color: var(--gold-bright); background: rgba(218, 181, 115, 0.12); }
.socials svg { width: 18px; height: 18px; fill: var(--cream); }
.socials a:hover svg { fill: var(--gold-bright); }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem;
  padding-top: 1.8rem;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: rgba(241, 240, 230, 0.5);
}

/* ---------- mobile sticky booking bar ---------- */
.sticky-book {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  background: var(--olive-deep);
  padding: 0.7rem var(--gutter);
  padding-bottom: calc(0.7rem + env(safe-area-inset-bottom));
  gap: 0.7rem;
}
.sticky-book .btn { flex: 1; padding: 0.85rem 1rem; font-size: 0.85rem; }
@media (max-width: 760px) {
  .sticky-book { display: flex; }
  body { padding-bottom: 4.4rem; }
  .site-footer { padding-bottom: 3rem; }
}

/* ---------- reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-inview { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}
