/* =====================================================================
   BAMBOO HOUSE — West Des Moines, IA
   styles.css

   Contents
   01. Tokens
   02. Reset & base
   03. Typography
   04. Utilities & decorative motifs
   05. Buttons & links
   06. Header & navigation
   07. Homepage — hero
   08. Homepage — intro statement
   09. Homepage — featured flavors
   10. Homepage — menu range band
   11. Homepage — visit teaser (+ status module, gold panel)
   12. Final CTA
   13. Contact — hero, details, hours, map
   14. Footer
   15. Motion, reveal & reduced-motion
   16. Print

   Palette is limited to lacquer red, warm gold, black and white.
   Any other value in this file is one of those four at partial opacity,
   or a mix of two of them (documented inline).
   ===================================================================== */

/* ── 01. TOKENS ─────────────────────────────────────────────────────── */

:root {
  /* Brand palette */
  --red:        #8B1412;
  --gold:       #F2D97E;
  --black:      #000000;
  --white:      #FFFFFF;

  /* Lacquer red mixed with black — used for deep fields and offset shadows */
  --red-deep:   #4C0B0A;
  /* Lacquer red mixed with black, darker still — marquee bed */
  --red-ink:    #2B0605;

  /* Opacity variations */
  --gold-08:  rgba(242, 217, 126, .08);
  --gold-16:  rgba(242, 217, 126, .16);
  --gold-28:  rgba(242, 217, 126, .28);
  --gold-45:  rgba(242, 217, 126, .45);
  --gold-70:  rgba(242, 217, 126, .70);
  --white-72: rgba(255, 255, 255, .72);
  --white-84: rgba(255, 255, 255, .84);
  --ink-08:   rgba(0, 0, 0, .08);
  --ink-14:   rgba(0, 0, 0, .14);
  --ink-55:   rgba(0, 0, 0, .55);

  /* Type */
  --display: "Bodoni Moda", "Didot", "Bodoni MT", "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: "Archivo", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;

  --fs-display: clamp(2.6rem, 9.2vw, 7.5rem);
  --fs-h2:      clamp(2.05rem, 5.6vw, 4.4rem);
  --fs-h3:      clamp(1.35rem, 2.6vw, 2rem);
  --fs-body:    clamp(1rem, .955rem + .22vw, 1.14rem);
  --fs-lede:    clamp(1.06rem, .98rem + .48vw, 1.4rem);
  --fs-label:   clamp(.7rem, .672rem + .12vw, .8rem);

  /* Space */
  --gutter:  clamp(1.15rem, 4vw, 3.5rem);
  --section: clamp(4.25rem, 10vw, 9rem);
  --maxw:    78rem;

  /* Controls */
  --btn-shadow: rgba(0, 0, 0, .85);
  --focus: var(--gold);
}

/* ── 02. RESET & BASE ───────────────────────────────────────────────── */

*, *::before, *::after { box-sizing: border-box; }

* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 6.5rem;
}

body {
  min-height: 100%;
  background: var(--black);
  color: var(--white);
  font-family: var(--sans);
  font-size: var(--fs-body);
  line-height: 1.62;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, iframe { display: block; max-width: 100%; }
img { height: auto; }

a { color: inherit; }

button { font: inherit; color: inherit; background: none; border: 0; }

ul, ol { list-style: none; padding: 0; }

address { font-style: normal; }

dl, dd { margin: 0; }

:target { scroll-margin-top: 7rem; }

/* Paper grain — a single tiny inline SVG, fixed, never intercepts input.
   Kept at very low opacity so it cannot affect text contrast. */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
  opacity: .045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 160px 160px;
}

/* ── 03. TYPOGRAPHY ─────────────────────────────────────────────────── */

.display {
  font-family: var(--display);
  font-weight: 900;
  line-height: .96;
  letter-spacing: -.015em;
}

h1, h2, h3 { text-wrap: balance; }
p { text-wrap: pretty; }

.section-title {
  font-size: var(--fs-h2);
  color: var(--white);
  max-width: 16ch;
}

.lede {
  font-size: var(--fs-lede);
  line-height: 1.5;
  color: var(--white-84);
  max-width: 52ch;
}

.note {
  font-size: .82rem;
  line-height: 1.55;
  color: var(--white-72);
  max-width: 46ch;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: .85rem;
  font-size: var(--fs-label);
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: clamp(1rem, 2.5vw, 1.6rem);
}
.eyebrow__rule {
  width: clamp(1.75rem, 5vw, 3.5rem);
  height: 2px;
  background: currentColor;
  flex: none;
}
.eyebrow--onRed { color: var(--gold); }
.eyebrow--onDark { color: var(--gold); }

.service-line {
  font-size: var(--fs-label);
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--white-84);
}

/* ── 04. UTILITIES & DECORATIVE MOTIFS ──────────────────────────────── */

.shell {
  width: min(100% - (var(--gutter) * 2), var(--maxw));
  margin-inline: auto;
}

.section {
  position: relative;
  padding-block: var(--section);
  overflow: hidden;
}

.section--black { background: var(--black); --btn-shadow: var(--red-deep); }
.section--red   { background: var(--red);   --btn-shadow: rgba(0, 0, 0, .8); }

.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100%;
  z-index: 300;
  padding: .85rem 1.25rem;
  background: var(--gold);
  color: var(--black);
  font-weight: 800;
  font-size: .85rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid var(--black);
}
.skip-link:focus { top: 1rem; }

/* Oversized outlined section numeral — decorative only */
.sec-num {
  position: absolute;
  top: clamp(.75rem, 2.5vw, 2rem);
  left: var(--gutter);
  z-index: 0;
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(5rem, 17vw, 13rem);
  line-height: .78;
  color: transparent;
  -webkit-text-stroke: 1px var(--gold-16);
  pointer-events: none;
  user-select: none;
}
.sec-num--right { left: auto; right: var(--gutter); }
.section--red .sec-num { -webkit-text-stroke-color: rgba(242, 217, 126, .30); }

/* Vertical edge label */
.vlabel {
  position: absolute;
  top: 50%;
  right: calc(var(--gutter) * .35);
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .38em;
  text-transform: uppercase;
  color: var(--gold-45);
  pointer-events: none;
  user-select: none;
  display: none;
}

/* Thin double rule */
.rule-double {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 5px;
  background:
    linear-gradient(var(--gold-45), var(--gold-45)) 0 0 / 100% 1px no-repeat,
    linear-gradient(var(--gold-16), var(--gold-16)) 0 100% / 100% 1px no-repeat;
}

/* Bamboo rhythm: vertical stalks with node marks, pure CSS */
.bamboo-strip {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 16px;
  background-image:
    repeating-linear-gradient(90deg, transparent 0 25px, var(--gold-45) 25px 27px),
    repeating-linear-gradient(90deg, transparent 0 12px, var(--gold-16) 12px 13px);
  border-top: 1px solid var(--gold-28);
  border-bottom: 1px solid var(--gold-28);
  pointer-events: none;
}
.bamboo-strip--top { top: 0; bottom: auto; }

/* Corner keyline marks */
.corner {
  position: absolute;
  z-index: 3;
  width: clamp(14px, 2.5vw, 22px);
  aspect-ratio: 1;
  border: 2px solid var(--gold);
  pointer-events: none;
}
.corner--tl { top: -8px; left: -8px;  border-right: 0; border-bottom: 0; }
.corner--tr { top: -8px; right: -8px; border-left: 0;  border-bottom: 0; }
.corner--bl { bottom: -8px; left: -8px;  border-right: 0; border-top: 0; }
.corner--br { bottom: -8px; right: -8px; border-left: 0;  border-top: 0; }
.corner--ink { border-color: var(--black); }

/* Inside the gold panel the marks sit on the gold field rather than hanging
   off the edge onto the section background, where black would read as a
   stray glitch. */
.panel .corner { width: clamp(12px, 2vw, 16px); }
.panel .corner--tl { top: 9px;    left: 9px; }
.panel .corner--tr { top: 9px;    right: 9px; }
.panel .corner--bl { bottom: 9px; left: 9px; }
.panel .corner--br { bottom: 9px; right: 9px; }

.section-head { margin-bottom: clamp(2.5rem, 6vw, 4.5rem); position: relative; z-index: 1; }
.section-head--center { text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.section-head--center .section-title { margin-inline: auto; }

/* ── 05. BUTTONS & LINKS ────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55em;
  min-height: 48px;
  padding: .85rem 1.55rem;
  font-family: var(--sans);
  font-size: .84rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  border: 2px solid var(--black);
  border-radius: 2px;
  box-shadow: 6px 6px 0 var(--btn-shadow);
  transition: transform .18s ease, box-shadow .18s ease,
              background-color .18s ease, color .18s ease;
}
.btn--sm { min-height: 44px; padding: .6rem 1.05rem; font-size: .75rem; box-shadow: 4px 4px 0 var(--btn-shadow); }
.btn--lg { min-height: 56px; padding: 1.05rem 2.1rem; font-size: .92rem; }

.btn--gold      { background: var(--gold); color: var(--black); border-color: var(--black); }
.btn--red       { background: var(--red);  color: var(--white); border-color: var(--gold); }
.btn--ghostGold { background: transparent; color: var(--gold);  border-color: var(--gold); box-shadow: 6px 6px 0 rgba(242, 217, 126, .22); }
.btn--ghostInk  { background: transparent; color: var(--black); border-color: var(--black); }

.btn:hover {
  transform: translate(3px, 3px);
  box-shadow: 3px 3px 0 var(--btn-shadow);
}
.btn--sm:hover  { transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--btn-shadow); }
.btn--ghostGold:hover { background: var(--gold); color: var(--black); box-shadow: 3px 3px 0 rgba(242, 217, 126, .22); }
.btn--ghostInk:hover  { background: var(--black); color: var(--gold); }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(.75rem, 1.8vw, 1.1rem);
  margin-top: clamp(1.75rem, 4vw, 2.5rem);
}
.btn-row--tight { margin-top: 1.5rem; gap: .7rem; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  min-height: 44px;
  font-size: .85rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 2px solid var(--gold-45);
  padding-block: .35rem;
  transition: border-color .18s ease, gap .18s ease;
}
.link-arrow:hover { border-bottom-color: var(--gold); gap: .95rem; }
.link-arrow .ico { flex: none; }

.util-phone {
  display: none;
  align-items: center;
  gap: .5rem;
  min-height: 44px;
  padding-inline: .5rem;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--white-84);
  text-decoration: none;
  white-space: nowrap;
  transition: color .18s ease;
}
.util-phone:hover { color: var(--gold); }

/* Focus — always visible, never colour-only */
:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}
.on-gold :focus-visible,
.panel :focus-visible { outline-color: var(--black); }

/* ── 06. HEADER & NAVIGATION ────────────────────────────────────────── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(180deg, rgba(0, 0, 0, .92), rgba(0, 0, 0, .55) 70%, transparent);
  transition: background-color .3s ease, box-shadow .3s ease;
}
.site-header.is-scrolled {
  background: var(--black);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .6);
}
.site-header__keyline {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-28), var(--gold), var(--gold-28));
  opacity: 0;
  transition: opacity .3s ease;
}
.site-header.is-scrolled .site-header__keyline { opacity: 1; }

.site-header__inner {
  width: min(100% - (var(--gutter) * 2), var(--maxw));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: clamp(.6rem, 1.6vw, .9rem);
}

/* The supplied logo draws its wordmark in black over transparency, so it
   needs a light plaque behind it to stay legible on the dark UI. This adds
   a field around the artwork — it does not recolour or crop the logo. */
.brand {
  display: block;
  flex: none;
  background: var(--white);
  border: 2px solid var(--gold);
  padding: 2px 6px;
  line-height: 0;
  text-decoration: none;
}
.brand__logo {
  width: auto;
  height: clamp(40px, 7.5vw, 58px);
}
.brand--footer .brand__logo { height: clamp(52px, 9vw, 74px); }

.nav-toggle {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  min-height: 44px;
  min-width: 44px;
  padding: .5rem .8rem;
  cursor: pointer;
  border: 2px solid var(--gold);
  color: var(--gold);
  background: rgba(0, 0, 0, .35);
}
.nav-toggle__label {
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.nav-toggle__bars {
  display: grid;
  gap: 4px;
  width: 20px;
}
.nav-toggle__bars span {
  display: block;
  height: 2px;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(.5rem, 1.6vw, 1.4rem);
}
.primary-nav__list {
  display: flex;
  align-items: center;
  gap: clamp(.4rem, 1.4vw, 1.1rem);
}
.primary-nav__link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding-inline: .7rem;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--white);
  position: relative;
  transition: color .18s ease;
}
.primary-nav__link::after {
  content: "";
  position: absolute;
  left: .7rem; right: .7rem; bottom: 9px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s ease;
}
.primary-nav__link:hover { color: var(--gold); }
.primary-nav__link:hover::after { transform: scaleX(1); }
.primary-nav__link[aria-current="page"] { color: var(--gold); }
.primary-nav__link[aria-current="page"]::after { transform: scaleX(1); }

/* Mobile / tablet navigation */
@media (max-width: 1023px) {
  .primary-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: .35rem;
    padding: 1rem var(--gutter) 1.5rem;
    background: var(--black);
    border-top: 2px solid var(--gold);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .65);
    max-height: calc(100vh - 100%);
    overflow-y: auto;
    display: none;
  }
  .primary-nav.is-open { display: flex; }

  .primary-nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .primary-nav__link {
    min-height: 52px;
    padding-inline: 0;
    font-size: .95rem;
    border-bottom: 1px solid var(--gold-16);
  }
  .primary-nav__link::after { left: 0; right: 0; bottom: 12px; }

  /* The brief only asks for the phone as a desktop utility link, but on a
     phone-sized screen calling is the likeliest action, so it stays in the
     panel rather than being hidden. */
  .util-phone {
    display: inline-flex;
    min-height: 52px;
    padding-inline: 0;
    font-size: .95rem;
    color: var(--gold);
    border-bottom: 1px solid var(--gold-16);
  }

  .primary-nav .btn { margin-top: .6rem; }

  /* Without JavaScript the panel cannot be toggled, so it is laid out inline
     as a full-width row under the logo, and the taller header stops being
     sticky so it never covers the hero. */
  .no-js .nav-toggle { display: none; }
  .no-js .primary-nav {
    position: static;
    display: flex;
    width: 100%;
    align-items: stretch;
    box-shadow: none;
    border-top: 1px solid var(--gold-16);
    margin-top: .75rem;
    padding: .75rem 0 .25rem;
    max-height: none;
  }
  .no-js .site-header {
    position: static;
    background: var(--black);
  }
  .no-js .site-header__inner { flex-wrap: wrap; }
  .no-js .hero { margin-top: 0; }
}

@media (min-width: 1024px) {
  .nav-toggle { display: none; }
  .util-phone { display: inline-flex; }
}

/* ── 07. HOMEPAGE — HERO ────────────────────────────────────────────── */

.hero {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: flex-end;
  min-height: 86vh;
  min-height: 86svh;
  padding-block: clamp(7rem, 16vh, 11rem) clamp(2.75rem, 7vh, 5rem);
  margin-top: calc(-1 * clamp(3.1rem, 10vw, 4.6rem));
  background: var(--black);
  overflow: hidden;
  --btn-shadow: var(--red-deep);
}
.hero__media {
  position: absolute;
  inset: -8% 0;
  z-index: -2;
}
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% center;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(0,0,0,.88) 0%, rgba(0,0,0,.42) 26%, rgba(0,0,0,.58) 58%, rgba(0,0,0,.94) 100%),
    linear-gradient(90deg, rgba(0,0,0,.92) 0%, rgba(0,0,0,.72) 38%, rgba(0,0,0,.22) 100%);
}
.hero__bamboo {
  position: absolute;
  inset: 0 0 0 auto;
  width: clamp(60px, 12vw, 160px);
  z-index: -1;
  background-image:
    repeating-linear-gradient(90deg, transparent 0 25px, var(--gold-16) 25px 27px);
  mask-image: linear-gradient(180deg, transparent, #000 35%, #000 65%, transparent);
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 35%, #000 65%, transparent);
  pointer-events: none;
}
.hero__inner { position: relative; z-index: 1; }

.hero__title {
  font-family: var(--display);
  font-weight: 900;
  font-size: var(--fs-display);
  line-height: .88;
  letter-spacing: -.02em;
  color: var(--white);
  margin-bottom: clamp(1.15rem, 2.6vw, 1.9rem);
}
.hero__line { display: block; }
.hero__line + .hero__line { margin-left: clamp(0px, 3vw, 3.5rem); }

.hero__body { max-width: 46ch; }

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(.75rem, 2.5vw, 2rem);
  margin-top: clamp(1.75rem, 4vw, 2.5rem);
  padding-top: clamp(1.1rem, 2.5vw, 1.5rem);
  border-top: 1px solid var(--gold-28);
  max-width: 60ch;
}
.own-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: var(--fs-label);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
}
.own-badge .ico { flex: none; }

/* The outlined line drops to a light weight: outlining a 900-weight Bodoni
   turns every stem into a pair of hairlines and the word stops reading. */
@media (min-width: 768px) {
  .hero__line--outline {
    font-weight: 400;
    color: transparent;
    -webkit-text-stroke: 2px var(--gold);
  }
}
@media (max-width: 767px) {
  .hero__line--outline { color: var(--gold); }
}

/* ── 08. HOMEPAGE — INTRO STATEMENT ─────────────────────────────────── */

.intro__grid { position: relative; z-index: 1; }

.intro__title {
  font-size: clamp(2.75rem, 10vw, 8rem);
  color: var(--gold);
  margin-bottom: clamp(1.75rem, 4vw, 3rem);
}

.intro__body {
  display: grid;
  gap: 1.35rem;
  max-width: 62ch;
  margin-left: auto;
  font-size: var(--fs-lede);
  line-height: 1.55;
  color: var(--white-84);
  padding-left: clamp(0px, 3vw, 3rem);
  border-left: 2px solid var(--gold-28);
}
.intro__close {
  font-family: var(--display);
  font-weight: 700;
  font-style: italic;
  font-size: clamp(1.35rem, 3vw, 2.1rem);
  line-height: 1.2;
  color: var(--white);
}

@media (min-width: 900px) {
  .vlabel { display: block; }
  .intro__body { padding-left: 3rem; }
}

/* ── 09. HOMEPAGE — FEATURED FLAVORS ────────────────────────────────── */

.feature .section-title { color: var(--white); max-width: 18ch; }

.feature__grid {
  display: grid;
  gap: clamp(2.75rem, 7vw, 4rem);
  position: relative;
  z-index: 1;
}

.dish__frame {
  position: relative;
  border: 2px solid var(--gold);
  outline: 1px solid var(--gold-28);
  outline-offset: 7px;
  box-shadow: 14px 14px 0 rgba(0, 0, 0, .45);
  overflow: hidden;
  background: var(--black);
}
.dish__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
}
.dish--a .dish__frame { aspect-ratio: 4 / 5; }
.dish--b .dish__frame { aspect-ratio: 3 / 2; }

.dish__text { margin-top: clamp(1.5rem, 3.5vw, 2.25rem); max-width: 42ch; }
.dish__index {
  font-family: var(--display);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .18em;
  color: var(--gold);
  margin-bottom: .35rem;
}
.dish__title {
  font-family: var(--display);
  font-weight: 900;
  font-size: var(--fs-h3);
  line-height: 1.05;
  color: var(--white);
  margin-bottom: .7rem;
}
.dish__text p { color: rgba(255, 255, 255, .88); }

.feature__foot {
  position: relative;
  z-index: 1;
  margin-top: clamp(3rem, 7vw, 5rem);
  padding-top: clamp(1.5rem, 3vw, 2rem);
  border-top: 1px solid var(--gold-45);
  display: grid;
  gap: 1rem;
  justify-items: start;
}
.feature .note { color: rgba(255, 255, 255, .8); }

@media (min-width: 900px) {
  .feature__grid {
    grid-template-columns: repeat(12, 1fr);
    align-items: start;
    gap: clamp(2rem, 4vw, 3.5rem);
  }
  .dish--a { grid-column: 1 / 6; }
  .dish--b { grid-column: 7 / 13; margin-top: clamp(3.5rem, 10vw, 8rem); }

  .feature__foot {
    grid-template-columns: auto 1fr;
    align-items: center;
    justify-items: start;
    gap: 2.5rem;
  }
  .feature__foot .note { justify-self: end; text-align: right; }
}

/* ── 10. HOMEPAGE — MENU RANGE BAND ─────────────────────────────────── */

.range { padding-bottom: calc(var(--section) + 16px); }

.marquee {
  position: relative;
  overflow: hidden;
  background: var(--red-ink);
  border-block: 2px solid var(--gold);
  padding-block: clamp(.6rem, 1.8vw, 1.15rem);
  margin-bottom: clamp(2.75rem, 7vw, 5rem);
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee-slide 42s linear infinite;
}
.marquee:hover .marquee__track,
.marquee:focus-within .marquee__track { animation-play-state: paused; }

.marquee__list {
  display: flex;
  align-items: center;
  gap: clamp(1.4rem, 3.5vw, 2.75rem);
  padding-inline: clamp(.7rem, 1.75vw, 1.4rem);
}
.marquee__list li {
  display: flex;
  align-items: center;
  gap: clamp(1.4rem, 3.5vw, 2.75rem);
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(1.7rem, 5.2vw, 4rem);
  line-height: 1;
  letter-spacing: .01em;
  color: var(--gold);
  white-space: nowrap;
}
.marquee__list li::after {
  content: "";
  flex: none;
  width: .22em;
  height: .22em;
  background: var(--gold);
  transform: rotate(45deg);
  opacity: .85;
}
/* Light weight for the same reason as the hero: outlining a 900-weight
   Bodoni stem produces two hairlines and the word stops reading. */
.marquee__list .is-outline {
  font-weight: 400;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--gold);
}
.marquee__list .is-outline::after { -webkit-text-stroke: 0; }

@keyframes marquee-slide { to { transform: translateX(-50%); } }

.range__grid { position: relative; z-index: 1; display: grid; gap: clamp(1.5rem, 4vw, 2.5rem); }
.range__body { display: grid; gap: 1.5rem; justify-items: start; max-width: 56ch; color: var(--white-84); font-size: var(--fs-lede); line-height: 1.55; }

@media (min-width: 900px) {
  .range__grid { grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: start; }
}

/* ── 11. HOMEPAGE — VISIT TEASER ────────────────────────────────────── */

.visit {
  position: relative;
  background: var(--black);
  padding-block: var(--section);
  overflow: hidden;
  --btn-shadow: rgba(0, 0, 0, .8);
}
.visit::before {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  width: 100%;
  background: var(--red-deep);
  z-index: 0;
  clip-path: polygon(0 18%, 100% 0, 100% 100%, 0 100%);
  opacity: .85;
}
.visit__grid { position: relative; z-index: 1; display: grid; gap: clamp(2.5rem, 6vw, 4rem); align-items: center; }
.visit__lede { color: var(--white-84); }

/* Shared rhythm for an eyebrow + headline + lede stack */
.visit__intro,
.hours__intro { display: grid; gap: clamp(1rem, 2.4vw, 1.5rem); align-content: start; }
.visit__intro .eyebrow,
.hours__intro .eyebrow { margin-bottom: 0; }

@media (min-width: 900px) {
  .visit::before { width: 58%; clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%); }
  .visit__grid { grid-template-columns: 1fr 1fr; gap: clamp(3rem, 7vw, 6rem); }
}

/* Gold information panel */
.panel {
  position: relative;
  background: var(--gold);
  color: var(--black);
  padding: clamp(1.5rem, 4.5vw, 2.75rem);
  border: 2px solid var(--black);
  box-shadow: 12px 12px 0 rgba(0, 0, 0, .5);
  --btn-shadow: rgba(0, 0, 0, .85);
}
.panel__label {
  font-size: var(--fs-label);
  font-weight: 800;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--black);
  padding-bottom: .85rem;
  margin-bottom: 1.25rem;
  border-bottom: 2px solid var(--black);
}
.panel__address { display: grid; gap: .6rem; margin-bottom: 1.25rem; }
.panel__addressLink {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.25rem, 2.6vw, 1.75rem);
  line-height: 1.22;
  color: var(--black);
  text-decoration: none;
  border-bottom: 2px solid var(--ink-14);
  justify-self: start;
  transition: border-color .18s ease;
}
.panel__addressLink:hover { border-bottom-color: var(--black); }
.panel__phone {
  justify-self: start;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--black);
  text-decoration: none;
  border-bottom: 2px solid var(--ink-14);
  transition: border-color .18s ease;
}
.panel__phone:hover { border-bottom-color: var(--black); }
.panel__service {
  margin-top: 1.5rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--ink-14);
  font-size: var(--fs-label);
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, .78);
}

/* Open / closed status — shape + text, never colour alone */
.status {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  line-height: 1.35;
  color: rgba(0, 0, 0, .82);
}
.status__dot {
  flex: none;
  width: 10px;
  height: 10px;
  border: 2px solid currentColor;
  border-radius: 50%;
  background: transparent;
}
.status.is-open .status__dot { background: currentColor; box-shadow: 0 0 0 3px rgba(0, 0, 0, .12); }
.status--onDark, .status--onRed { color: var(--gold); margin-top: clamp(1.5rem, 3vw, 2rem); }
.status--onDark.is-open .status__dot,
.status--onRed.is-open .status__dot { box-shadow: 0 0 0 3px var(--gold-16); }
.status--sm { font-size: .72rem; color: var(--gold); }

/* ── 12. FINAL CTA ──────────────────────────────────────────────────── */

.final { text-align: center; }
.final__inner { position: relative; z-index: 1; display: grid; justify-items: center; gap: clamp(1.1rem, 2.5vw, 1.6rem); }
.final__title {
  font-size: clamp(2.4rem, 7.5vw, 5.75rem);
  color: var(--gold);
  max-width: 16ch;
}
.final__body { color: rgba(255, 255, 255, .9); max-width: 44ch; }
.final .btn { margin-top: .75rem; }

/* ── 13. CONTACT PAGE ───────────────────────────────────────────────── */

/* Contact hero */
.chero {
  position: relative;
  background: var(--black);
  padding-block: clamp(3rem, 9vw, 6rem) calc(clamp(3.5rem, 9vw, 6.5rem) + 16px);
  overflow: hidden;
  --btn-shadow: var(--red-deep);
}
/* The offset red field is a desktop layer: on narrow screens its edge lands
   mid-content, so the section simplifies to black instead. */
.chero::before {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  width: 100%;
  background: var(--red-deep);
  opacity: .75;
  z-index: 0;
  display: none;
}
.chero__grid { position: relative; z-index: 1; display: grid; gap: clamp(2.25rem, 6vw, 4rem); align-items: center; }
.chero__title { font-size: clamp(2.35rem, 7vw, 5rem); color: var(--white); max-width: 14ch; margin-bottom: clamp(1rem, 2.5vw, 1.5rem); }

.chero__figure {
  position: relative;
  border: 2px solid var(--gold);
  outline: 1px solid var(--gold-28);
  outline-offset: 7px;
  box-shadow: 14px 14px 0 rgba(0, 0, 0, .5);
  background: var(--black);
  aspect-ratio: 16 / 11;
  overflow: hidden;
}
.chero__img { width: 100%; height: 100%; object-fit: cover; object-position: center 62%; }

@media (min-width: 900px) {
  .chero::before { display: block; width: 52%; }
  .chero__grid { grid-template-columns: 1.05fr 1fr; gap: clamp(2.5rem, 6vw, 5rem); }
}

/* Visit details */
.details__grid { position: relative; z-index: 1; }
.details .section-title { color: var(--gold); margin-bottom: clamp(2.25rem, 5vw, 3.5rem); max-width: 20ch; }
.details__cols { display: grid; gap: clamp(2rem, 4vw, 2.75rem); }

.detail {
  padding-top: 1.35rem;
  border-top: 2px solid var(--gold-45);
  display: grid;
  gap: .9rem;
  justify-items: start;
  align-content: start;
}
.detail__h {
  font-size: var(--fs-label);
  font-weight: 800;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold);
}
.detail__body {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  line-height: 1.35;
  color: var(--white);
}
.detail__body strong { font-weight: 900; }
.detail__body.service-line {
  font-family: var(--sans);
  font-size: var(--fs-label);
  letter-spacing: .16em;
  line-height: 1.7;
}
.detail__big {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(1.5rem, 3.4vw, 2.15rem);
  color: var(--white);
  text-decoration: none;
  border-bottom: 2px solid var(--gold-45);
  transition: border-color .18s ease, color .18s ease;
}
.detail__big:hover { color: var(--gold); border-bottom-color: var(--gold); }

@media (min-width: 800px) {
  .details__cols { grid-template-columns: repeat(3, 1fr); gap: clamp(1.75rem, 3.5vw, 3rem); }
}

/* Hours */
.hours__grid { position: relative; z-index: 1; display: grid; gap: clamp(2.5rem, 6vw, 4rem); align-items: start; }
.hours .section-title { max-width: 14ch; }
.hours .lede { color: rgba(255, 255, 255, .9); }

@media (min-width: 900px) {
  .hours__grid { grid-template-columns: 1fr 1fr; gap: clamp(3rem, 7vw, 5.5rem); }
}

.hours-list { display: grid; }
.hours-list > div {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: .35rem 1rem;
  padding: .8rem .6rem;
  margin-inline: -.6rem;
  border-bottom: 1px solid var(--ink-14);
}
.hours-list > div:last-child { border-bottom: 0; }
.hours-list dt {
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--black);
}
.hours-list dd {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.02rem;
  color: rgba(0, 0, 0, .86);
  font-variant-numeric: tabular-nums;
}
.hours-list > div.is-today { background: var(--ink-08); }
.hours-list > div.is-today dt,
.hours-list > div.is-today dd { color: var(--black); font-weight: 900; }
.hours-list dt .today-flag {
  display: inline-block;
  margin-left: .5rem;
  padding: .18em .45em;
  background: var(--red);
  color: var(--white);
  font-family: var(--sans);
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .12em;
  vertical-align: .12em;
}

/* Narrow screens: shrink the row type just enough that day and time always
   stay on one line, so the schedule reads as an aligned column. */
@media (max-width: 479px) {
  .hours-list > div { padding-inline: .4rem; margin-inline: -.4rem; gap: .3rem .6rem; }
  .hours-list dt { font-size: .74rem; letter-spacing: .06em; }
  .hours-list dd { font-size: .9rem; }
}

.hours__holiday {
  margin-top: 1.5rem;
  padding-top: 1.1rem;
  border-top: 2px solid var(--black);
  font-size: .82rem;
  line-height: 1.55;
  color: rgba(0, 0, 0, .8);
}

/* Map */
.map__frame {
  position: relative;
  border: 2px solid var(--gold);
  outline: 1px solid var(--gold-28);
  outline-offset: 7px;
  background: var(--red-ink);
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.map__embed { width: 100%; height: 100%; border: 0; filter: saturate(.85) contrast(1.05); }
.map__fallback { margin-top: clamp(1.75rem, 4vw, 2.5rem); text-align: center; }

@media (min-width: 800px) {
  .map__frame { aspect-ratio: 21 / 9; }
}

/* ── 14. FOOTER ─────────────────────────────────────────────────────── */

.site-footer {
  position: relative;
  background: var(--black);
  padding-block: calc(clamp(3rem, 8vw, 5.5rem) + 16px) clamp(1.75rem, 4vw, 2.5rem);
  --btn-shadow: var(--red-deep);
}
.site-footer__grid { display: grid; gap: clamp(2.25rem, 5vw, 3rem); }

.site-footer__tag {
  font-family: var(--display);
  font-weight: 700;
  font-style: italic;
  font-size: clamp(1.2rem, 2.6vw, 1.6rem);
  line-height: 1.25;
  color: var(--gold);
  margin-top: 1.15rem;
}
.site-footer__service,
.site-footer__own {
  font-size: var(--fs-label);
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--white-72);
  margin-top: .7rem;
}
.site-footer__own { color: var(--gold-70); }

.site-footer__h {
  font-size: var(--fs-label);
  font-weight: 800;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold);
  padding-bottom: .8rem;
  margin-bottom: 1.1rem;
  border-bottom: 1px solid var(--gold-28);
}
.site-footer__col address { display: grid; gap: .5rem; justify-items: start; }
/* :not(.btn) so the Order Online button keeps its own fill and ink colour */
.site-footer__col a:not(.btn) {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  min-width: 44px;
  color: var(--white-84);
  text-decoration: none;
  line-height: 1.5;
  border-bottom: 1px solid transparent;
  transition: color .18s ease, border-color .18s ease;
}
.site-footer__col address a { align-items: flex-start; }
.site-footer__col a:not(.btn):hover { color: var(--gold); border-bottom-color: var(--gold-45); }
.site-footer__col .btn { margin-top: 1.1rem; }

.hours-compact { display: grid; gap: .5rem; }
.hours-compact > div { display: flex; flex-wrap: wrap; gap: .2rem .75rem; justify-content: space-between; }
.hours-compact dt { font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--white); }
.hours-compact dd { font-size: .88rem; color: var(--white-72); font-variant-numeric: tabular-nums; }
.site-footer .status { margin-top: 1.1rem; }

.site-footer__nav { display: grid; gap: .1rem; }
.site-footer__nav a[aria-current="page"] { color: var(--gold); }

.site-footer__base {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  padding-top: 1.5rem;
  border-top: 1px solid var(--gold-28);
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.5rem;
  justify-content: space-between;
  font-size: .78rem;
  color: var(--white-72);
}
.site-footer__note { letter-spacing: .1em; text-transform: uppercase; font-size: .72rem; }

@media (min-width: 700px) {
  .site-footer__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .site-footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: clamp(2rem, 4vw, 3.5rem); }
}

/* ── 15. MOTION, REVEAL & REDUCED MOTION ────────────────────────────── */

.js [data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s cubic-bezier(.22, .61, .36, 1),
              transform .7s cubic-bezier(.22, .61, .36, 1);
}
.js [data-reveal].is-revealed { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }

  .js [data-reveal] { opacity: 1; transform: none; }

  /* The marquee stops and wraps into a readable stacked composition. */
  .marquee__track { animation: none; width: 100%; flex-wrap: wrap; justify-content: center; }
  .marquee__list { flex-wrap: wrap; justify-content: center; }
  .marquee__list[aria-hidden="true"] { display: none; }

  .btn:hover, .btn--sm:hover { transform: none; }
  .link-arrow:hover { gap: .6rem; }
}

/* ── 16. PRINT ──────────────────────────────────────────────────────── */

@media print {
  body { background: #fff; color: #000; }
  body::after,
  .site-header, .hero__media, .hero__scrim, .marquee,
  .sec-num, .vlabel, .bamboo-strip, .corner, .map__frame { display: none !important; }
  .section, .hero, .visit, .chero, .site-footer { background: #fff !important; padding-block: 1rem; }
  .display, .section-title, .hero__title, h1, h2, h3, p, dt, dd, a { color: #000 !important; -webkit-text-stroke: 0 !important; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: .75em; word-break: break-all; }
}
