/* ==========================================================================
   NOURISH — Mediterranean Kitchen
   Brand: gold leaf mark on ink, served on warm cream.
   ========================================================================== */

:root {
  /* surfaces */
  --cream:      #f2eee6;
  --cream-deep: #e9e3d8;
  --paper:      #fbf9f5;
  --white:      #ffffff;

  /* ink */
  --ink:        #16130e;
  --ink-2:      #221d15;
  --ink-3:      #3b342a;
  --body:       #5b5347;
  --muted:      #8b8375;

  /* gold */
  --gold:       #a8813a;
  --gold-mid:   #c9a24b;
  --gold-lt:    #e3c983;
  --gold-wash:  #f6efdf;

  /* accents */
  --olive:      #6a7350;
  --clay:       #a8563c;

  /* lines & shadow */
  --hair:       rgba(22, 19, 14, 0.09);
  --hair-2:     rgba(22, 19, 14, 0.16);
  --sh-sm:      0 2px 10px rgba(31, 26, 17, 0.05);
  --sh:         0 14px 34px -14px rgba(31, 26, 17, 0.22);
  --sh-lg:      0 34px 70px -28px rgba(31, 26, 17, 0.38);

  /* type */
  --serif:  "Fraunces", "Playfair Display", Georgia, serif;
  --script: "Pinyon Script", cursive;
  --sans:   "Jost", "Helvetica Neue", Arial, sans-serif;

  --r-sm: 12px;
  --r:    20px;
  --r-lg: 30px;
  --r-xl: 42px;

  --shell: 1240px;
  --gutter: clamp(18px, 4.4vw, 54px);
}

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

/* `clip` (not `hidden`) — hidden turns the root into a scroll container,
   which silently breaks position:sticky for the video hero. */
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
::selection { background: var(--gold-lt); color: var(--ink); }

.shell { width: min(var(--shell), calc(100% - var(--gutter) * 2)); margin-inline: auto; }
.hide { display: none !important; }

/* ---------- type scale ---------- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.018em;
  color: var(--ink);
  font-variation-settings: "SOFT" 0, "WONK" 0;
}
h1 { font-size: clamp(2.7rem, 6.4vw, 5.1rem); }
h2 { font-size: clamp(2rem, 4vw, 3.3rem); }
h3 { font-size: clamp(1.15rem, 1.7vw, 1.45rem); }

p { color: var(--body); }
.lede { font-size: clamp(1.02rem, 1.35vw, 1.16rem); color: var(--body); max-width: 56ch; }

.script { font-family: var(--script); font-weight: 400; letter-spacing: 0.01em; }
em.script { font-style: normal; }

.kicker {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.kicker::before {
  content: ""; width: 26px; height: 1px; background: currentColor; opacity: 0.55;
}
.kicker.solo::before { display: none; }

.center { text-align: center; }
.center .kicker::after {
  content: ""; width: 26px; height: 1px; background: currentColor; opacity: 0.55;
}
.center .lede { margin-inline: auto; }

/* ---------- buttons ---------- */
.btn {
  --btn-bg: var(--ink);
  --btn-fg: var(--gold-lt);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-size: 0.83rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  white-space: nowrap;
  border: 1px solid transparent;
  transition: transform .3s cubic-bezier(.2,.8,.3,1), box-shadow .3s, background .3s, color .3s, border-color .3s;
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--sh); }
.btn:active { transform: translateY(0); }
.btn svg { width: 17px; height: 17px; }

.btn--gold { --btn-bg: linear-gradient(135deg, #c9a24b, #e3c983 48%, #b08b3c); --btn-fg: #24190a; }
.btn--line { --btn-bg: transparent; --btn-fg: var(--ink); border-color: var(--hair-2); }
.btn--line:hover { border-color: var(--ink); background: var(--ink); color: var(--gold-lt); }
.btn--light { --btn-bg: var(--white); --btn-fg: var(--ink); box-shadow: var(--sh-sm); }
.btn--sm { padding: 11px 22px; font-size: 0.75rem; }
.btn--wide { width: 100%; }

/* ==========================================================================
   HEADER
   ========================================================================== */
.topline {
  background: var(--ink);
  color: rgba(242, 238, 230, 0.72);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
}
.topline__in {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  height: 38px;
}
.topline b { color: var(--gold-lt); font-weight: 500; }
.topline__set { display: flex; align-items: center; gap: 22px; }
.topline__item { display: inline-flex; align-items: center; gap: 7px; white-space: nowrap; }
.topline__item svg { width: 13px; height: 13px; color: var(--gold); }
.dot-live {
  width: 6px; height: 6px; border-radius: 50%; background: #6fbf73;
  box-shadow: 0 0 0 3px rgba(111,191,115,.22);
}
.dot-live.shut { background: #b9704f; box-shadow: 0 0 0 3px rgba(185,112,79,.22); }

.masthead {
  position: sticky; top: 0; z-index: 90;
  background: rgba(242, 238, 230, 0.86);
  backdrop-filter: saturate(150%) blur(14px);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .35s, box-shadow .35s, background .35s;
}
.masthead.stuck { border-bottom-color: var(--hair); box-shadow: 0 10px 30px -22px rgba(31,26,17,.5); }
.masthead__in { display: flex; align-items: center; gap: 26px; height: 78px; }

.logo { display: flex; align-items: center; gap: 12px; flex: none; }
.logo__plate {
  width: 46px; height: 46px; border-radius: 13px; overflow: hidden;
  background: var(--ink); flex: none;
  box-shadow: 0 6px 16px -8px rgba(31,26,17,.7);
}
.logo__plate img { width: 100%; height: 100%; object-fit: cover; }
.logo__type { line-height: 1; }
.logo__name {
  font-family: var(--serif); font-size: 1.28rem; font-weight: 600;
  letter-spacing: 0.2em; color: var(--ink);
}
.logo__sub {
  font-size: 0.53rem; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gold); margin-top: 4px;
}

.mainnav { margin-left: auto; }
.mainnav ul { display: flex; align-items: center; gap: 6px; list-style: none; }
.mainnav a {
  display: block; padding: 10px 15px; border-radius: 999px;
  font-size: 0.84rem; letter-spacing: 0.055em; color: var(--ink-3);
  transition: color .25s, background .25s;
}
.mainnav a:hover { color: var(--ink); background: rgba(22,19,14,.05); }
.mainnav a.on { color: var(--gold); font-weight: 500; }

.headtools { display: flex; align-items: center; gap: 10px; flex: none; }

.cartbtn {
  position: relative; width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid var(--hair-2); display: grid; place-items: center;
  transition: background .25s, border-color .25s, transform .25s;
}
.cartbtn:hover { background: var(--ink); border-color: var(--ink); color: var(--gold-lt); transform: translateY(-1px); }
.cartbtn svg { width: 19px; height: 19px; }
.cartbtn__n {
  position: absolute; top: -3px; right: -3px; min-width: 20px; height: 20px;
  border-radius: 999px; background: var(--gold); color: #241a06;
  font-size: 0.66rem; font-weight: 600; display: grid; place-items: center;
  padding: 0 5px; border: 2px solid var(--cream);
}
.cartbtn__n:empty, .cartbtn__n[data-n="0"] { display: none; }

.burger {
  display: none; width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid var(--hair-2); place-items: center;
}
.burger span { display: block; width: 17px; height: 1.5px; background: var(--ink); transition: .3s; }
.burger span + span { margin-top: 4.5px; }
.burger.on span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger.on span:nth-child(2) { opacity: 0; }
.burger.on span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ==========================================================================
   THE TURNING PLATE
   A loaded bowl on a slowly rotating disc, ringed in gold. Lives in the
   "Build Your Own" section — the one block on the home page that was pure
   text, and the one place a literal plate belongs.
   ========================================================================== */
.plate { position: relative; }

/* The window stays still and the photo turns inside it.
   Do NOT rotate .plate__disc itself: its box is square, and a rotating square
   has a bounding box up to 41% wider than its side, which silently stretches
   the page — by a different amount at every angle, so it looks like a
   phantom intermittent overflow bug. Clipping the rotation inside a fixed
   circle keeps layout perfectly stable. */
.plate__disc {
  position: relative; margin: 5%;
  aspect-ratio: 1 / 1;
  border-radius: 50%; overflow: hidden;
  box-shadow: 0 50px 90px -40px rgba(31, 26, 17, 0.6);
}
.plate__disc img {
  /* A square whose side equals the circle's diameter has that circle as its
     inscribed circle, and a square's inradius doesn't change when it spins —
     so a plain 100% square photo covers the window at every angle. No
     oversizing needed (scaling it up just crops the food harder). */
  width: 100%; height: 100%; object-fit: cover;
  animation: slowspin 60s linear infinite;
}
@keyframes slowspin { to { transform: rotate(360deg); } }

.plate__ring {
  position: absolute; inset: -1%;
  border: 1px solid var(--hair-2); border-radius: 50%;
  pointer-events: none;
}
.plate__ring::after {
  content: ""; position: absolute; inset: 5%;
  border: 1px dashed rgba(168, 129, 58, 0.32); border-radius: 50%;
}

/* floating cards + the ink seal */
.plate__tag {
  position: absolute; z-index: 3;
  background: var(--white);
  border-radius: 18px;
  padding: 13px 17px;
  box-shadow: var(--sh);
  display: flex; align-items: center; gap: 12px;
  animation: bob 6s ease-in-out infinite;
}
.plate__tag b { font-size: 0.86rem; font-weight: 600; display: block; line-height: 1.25; }
.plate__tag span { font-size: 0.72rem; color: var(--muted); }
.plate__ico {
  width: 34px; height: 34px; border-radius: 11px; flex: none;
  background: var(--gold-wash); color: var(--gold);
  display: grid; place-items: center;
}
.plate__ico svg { width: 17px; height: 17px; }
.plate__tag--a { top: 4%; right: -6%; }
.plate__tag--b { bottom: 12%; left: -8%; animation-delay: 2s; }
.plate__seal {
  position: absolute; z-index: 3;
  bottom: 2%; right: 2%;
  border-radius: 50%; width: 106px; height: 106px;
  display: grid; place-content: center; text-align: center; line-height: 1.22;
  background: var(--ink); color: var(--gold-lt);
  border: 1px solid rgba(227,201,131,.28);
  animation: bob 6s ease-in-out infinite; animation-delay: 1s;
}
.plate__seal b { font-family: var(--serif); font-size: 0.86rem; letter-spacing: .05em; display: block; }
.plate__seal span { font-size: 0.58rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(227,201,131,.72); }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

@media (prefers-reduced-motion: reduce) {
  .plate__disc img, .plate__tag, .plate__seal { animation: none; }
}

/* numbered steps beside the plate */
.buildlist { list-style: none; counter-reset: bl; margin-top: 8px; }
.buildlist li {
  display: grid; grid-template-columns: 46px 1fr; gap: 18px;
  padding: 20px 0; border-bottom: 1px solid var(--hair);
}
.buildlist li:last-child { border-bottom: 0; }
.buildlist li::before {
  counter-increment: bl; content: "0" counter(bl);
  font-family: var(--serif); font-size: 1.25rem; color: var(--gold);
  line-height: 1.35;
}
.buildlist h3 { font-size: 1.2rem; margin-bottom: 5px; }
.buildlist p { font-size: 0.92rem; }

/* ==========================================================================
   SCROLL-SCRUBBED VIDEO HERO
   .vhero is a tall scroll track; .vhero__stage pins inside it.
   Without a video it collapses to a normal one-screen still hero.
   ========================================================================== */
/* Track length = how far you scroll to play the whole film.
   height - 100vh is the actual travel, so 190vh means the film completes in
   about 0.9 of a screen. Longer than ~2 screens feels sluggish. */
.vhero { position: relative; height: 190vh; background: var(--ink); }
/* height must never exceed the viewport or sticky can't pin */
.vhero__stage {
  position: sticky; top: 0; height: 100vh; height: 100svh;
  overflow: hidden; display: grid; place-items: center;
}
.vhero__video, .vhero__poster {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.vhero__video { opacity: 0; transition: opacity .6s ease; }
.vhero--live .vhero__video { opacity: 1; }
.vhero--live .vhero__poster { opacity: 0; transition: opacity .6s ease; }

/* Still hero — used both as the fallback when a film is missing and as the
   deliberate treatment on Our Story and Visit. No track, no pinning; the stage
   sizes to its content so the copy can never be clipped on a short screen. */
.vhero--still { height: auto; }
.vhero--still .vhero__stage {
  position: relative;
  height: auto;
  min-height: 78vh;
  padding: clamp(90px, 13vh, 140px) 0 clamp(56px, 9vh, 96px);
}

/* menu page: same full-screen stage, but a much shorter scroll track — people
   came to read the menu, so the film must not stand between them and the food.
   (Only the track shortens; the stage must stay 100vh or the sticky element
   leaves a gap of bare track showing beneath it.) */
.vhero--short { height: 160vh; }
/* must out-specify .vhero--short, or the still fallback keeps the tall track
   and leaves a slab of bare background under the stage */
.vhero--short.vhero--still { height: auto; }
.vhero--short .vhero__copy h1 { font-size: clamp(2.4rem, 5.4vw, 4.2rem); }

/* order page: shortest track of the three. This is the page where people are
   trying to get something done — the film gets one quick beat, then gets out
   of the way of the builder. */
/* Our Story: has its own film, but a calmer one than the food pages */
.vhero--story { height: 170vh; }
.vhero--story.vhero--still { height: auto; }

/* Visit: no film — the same full-bleed plate so the site still reads as one
   piece, just without a fourth video to produce and load. */
.vhero--plate.vhero--still .vhero__stage { min-height: 70vh; }

.vhero--tight { height: 145vh; }
.vhero--tight.vhero--still { height: auto; }
.vhero--tight .vhero__copy h1 { font-size: clamp(2.2rem, 4.8vw, 3.8rem); }
.vhero--tight .vhero__copy p { font-size: 1rem; }

.vhero__veil {
  position: absolute; inset: 0; z-index: 1;
  /* tuned for the bright cream-toned hero film: just enough to hold white
     text, not so much that the food goes muddy */
  background:
    linear-gradient(to top, rgba(14,11,7,.62) 0%, rgba(14,11,7,.16) 42%, rgba(14,11,7,.34) 100%),
    radial-gradient(58% 50% at 50% 46%, rgba(14,11,7,.34) 0%, rgba(14,11,7,.12) 60%, transparent 100%);
}

.vhero__copy {
  position: relative; z-index: 2; text-align: center; color: var(--cream);
  width: min(880px, calc(100% - var(--gutter) * 2));
  will-change: transform, opacity;
}
.vhero__copy .kicker { color: var(--gold-lt); justify-content: center; }
.vhero__copy .kicker::after { content: ""; width: 26px; height: 1px; background: currentColor; opacity: .55; }
.vhero__copy h1 {
  color: #fff; margin: 18px 0 0;
  text-shadow: 0 1px 2px rgba(14,11,7,.4), 0 4px 28px rgba(14,11,7,.55);
}
.vhero__copy h1 .script { display: block; color: var(--gold-lt); font-size: 1.06em; margin: 2px 0 -2px; }
.vhero__copy p {
  color: rgba(255,255,255,.94); margin: 20px auto 0; max-width: 52ch; font-size: 1.06rem;
  text-shadow: 0 1px 12px rgba(14,11,7,.6);
}
.vhero__copy .kicker { text-shadow: 0 1px 10px rgba(14,11,7,.6); }
.vhero__cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 32px; }
.vhero__cta .btn--line { color: var(--cream); border-color: rgba(242,238,230,.4); }
.vhero__cta .btn--line:hover { background: var(--cream); color: var(--ink); border-color: var(--cream); }

.vhero__cue {
  position: absolute; z-index: 2; bottom: 26px; left: 50%; transform: translateX(-50%);
  display: grid; justify-items: center; gap: 8px;
  color: rgba(242,238,230,.62); font-size: .68rem; letter-spacing: .26em; text-transform: uppercase;
}
.vhero__cue span {
  width: 1px; height: 40px; background: linear-gradient(rgba(242,238,230,.5), transparent);
  animation: cue 2.2s ease-in-out infinite;
}
@keyframes cue { 0%,100% { transform: scaleY(.35); transform-origin: top; opacity: .35 } 50% { transform: scaleY(1); opacity: 1 } }

/* Landscape phones: the stage is exactly one viewport tall, and a viewport
   only ~360px high cannot hold the full-size headline, paragraph and buttons —
   the copy gets clipped. Scale the type down for short screens only. */
@media (max-height: 560px) and (orientation: landscape) {
  .vhero__copy h1 { font-size: clamp(1.5rem, 4.6vw, 2.3rem); }
  .vhero__copy h1 .script { font-size: 1.02em; }
  .vhero__copy p { font-size: 0.88rem; margin-top: 10px; max-width: 46ch; }
  .vhero__copy .kicker { font-size: 0.6rem; margin-bottom: 0; }
  .vhero__cta { margin-top: 16px; }
  .vhero__cta .btn { padding: 10px 20px; font-size: 0.72rem; }
  .vhero__cue { display: none; }
  .vhero--still .vhero__stage { padding: 76px 0 40px; min-height: 0; }
}

/* facts strip under the hero */
.factbar { background: var(--ink-2); border-bottom: 1px solid rgba(227,201,131,.13); }
.factbar__in { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; padding: 26px 0; }
.fact { display: flex; align-items: center; gap: 12px; color: var(--cream); }
.fact__ico {
  width: 38px; height: 38px; border-radius: 11px; flex: none; display: grid; place-items: center;
  background: rgba(227,201,131,.1); color: var(--gold-lt);
}
.fact__ico svg { width: 18px; height: 18px; }
.fact b { display: block; font-size: .88rem; font-weight: 600; line-height: 1.3; }
.fact span { font-size: .76rem; color: rgba(242,238,230,.55); }

@media (max-width: 1080px) { .factbar__in { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) {
  /* Shorter tracks on a phone — a thumb covers less ground per swipe.
     :not(.vhero--still) is required: these rules sit later in the file than
     `.vhero--still { height: auto }`, so without it they would win on mobile
     and give a still hero a tall track with a slab of bare ink beneath it. */
  .vhero:not(.vhero--still) { height: 155vh; }
  .vhero--short:not(.vhero--still) { height: 145vh; }
  .vhero--tight:not(.vhero--still) { height: 135vh; }

  /* Still heroes grow with their content on small screens so nothing is ever
     cut off. min-height keeps them looking generous on a tall phone. */
  .vhero--still .vhero__stage {
    min-height: 74vh;
    padding: 96px 0 54px;
  }
  .vhero--plate.vhero--still .vhero__stage { min-height: 68vh; }

  .vhero__copy h1 { font-size: clamp(2.15rem, 10.5vw, 3rem); }
  .vhero__copy p { font-size: 0.98rem; margin-top: 16px; }
  .vhero__cta { display: grid; gap: 10px; margin-top: 26px; }
  .vhero__cta .btn { width: 100%; }
  .vhero__cue { bottom: 16px; }
  .vhero__cue span { height: 28px; }

  .factbar__in { grid-template-columns: 1fr; gap: 14px; }
}

/* ==========================================================================
   SECTIONS
   ========================================================================== */
section { position: relative; }
.band { padding: clamp(58px, 8vw, 104px) 0; }
.band--paper { background: var(--paper); }
.band--deep { background: var(--cream-deep); }
.band--ink { background: var(--ink); color: var(--cream); }
.band--ink h1, .band--ink h2, .band--ink h3 { color: var(--cream); }
.band--ink p { color: rgba(242, 238, 230, 0.66); }

.sechead { display: flex; align-items: flex-end; justify-content: space-between; gap: 26px; margin-bottom: 40px; }
.sechead__txt { max-width: 640px; }
.sechead h2 { margin-top: 14px; }
.sechead p { margin-top: 12px; }
.sechead.center { flex-direction: column; align-items: center; text-align: center; }
.sechead.center .sechead__txt { max-width: 620px; }

/* ==========================================================================
   DISH CARDS  (photo disc overflowing the card — per reference)
   ========================================================================== */
.rail { position: relative; }
.rail__track {
  display: grid; grid-auto-flow: column; grid-auto-columns: minmax(252px, 1fr);
  gap: 22px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 78px 4px 28px; margin: 0 -4px;
  scrollbar-width: none;
}
.rail__track::-webkit-scrollbar { display: none; }
.rail__nav { display: flex; gap: 9px; }
.rail__nav button {
  width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--hair-2);
  display: grid; place-items: center; transition: .25s;
}
.rail__nav button:hover { background: var(--ink); border-color: var(--ink); color: var(--gold-lt); }
.rail__nav svg { width: 16px; height: 16px; }

.dish {
  position: relative; scroll-snap-align: start;
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 106px 22px 22px;
  text-align: center;
  box-shadow: var(--sh-sm);
  transition: transform .4s cubic-bezier(.2,.8,.3,1), box-shadow .4s;
  display: flex; flex-direction: column;
}
.dish:hover { transform: translateY(-7px); box-shadow: var(--sh-lg); }
.dish__pic {
  position: absolute; top: -60px; left: 50%; transform: translateX(-50%);
  width: 152px; height: 152px; border-radius: 50%; overflow: hidden;
  box-shadow: 0 22px 38px -18px rgba(31,26,17,.55);
  background: var(--cream-deep);
}
.dish__pic img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.8,.3,1); }
.dish:hover .dish__pic img { transform: scale(1.09); }
.dish__flag {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  background: var(--ink); color: var(--gold-lt);
  font-size: 0.6rem; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 5px 11px; border-radius: 999px;
}
.dish h3 { font-size: 1.12rem; letter-spacing: -0.01em; }
.dish__note { font-size: 0.82rem; color: var(--muted); margin-top: 6px; flex: 1;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.dish__foot { display: flex; align-items: center; justify-content: space-between; margin-top: 16px; }
.price { font-family: var(--serif); font-size: 1.2rem; font-weight: 600; color: var(--ink); }
.price s { color: var(--muted); font-size: 0.78em; margin-right: 6px; font-weight: 400; }
.addbtn {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--ink); color: var(--gold-lt);
  display: grid; place-items: center; transition: .28s;
}
.addbtn:hover { background: var(--gold); color: var(--ink); transform: scale(1.09) rotate(90deg); }
.addbtn svg { width: 16px; height: 16px; }

/* ==========================================================================
   CATEGORY TILES
   ========================================================================== */
.cats { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.cat {
  position: relative; border-radius: var(--r); overflow: hidden;
  aspect-ratio: 0.82; display: flex; align-items: flex-end;
  box-shadow: var(--sh-sm); transition: transform .4s cubic-bezier(.2,.8,.3,1), box-shadow .4s;
}
.cat:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }
.cat img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.8,.3,1); }
.cat:hover img { transform: scale(1.07); }
.cat::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(14,12,8,.86) 6%, rgba(14,12,8,.34) 42%, rgba(14,12,8,.06) 72%);
}
.cat__txt { position: relative; z-index: 2; padding: 20px; color: var(--cream); }
.cat__txt h3 { color: var(--white); font-size: 1.08rem; }
.cat__txt span { font-size: 0.73rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-lt); }

/* ==========================================================================
   SPLIT / STORY
   ========================================================================== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 72px); align-items: center; }
.split--wide { grid-template-columns: 0.9fr 1.1fr; }
.split__copy h2 { margin: 16px 0 18px; }
.split__copy p + p { margin-top: 14px; }
.split__copy .btn { margin-top: 26px; }

.artstack { position: relative; }
.artstack__main { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-lg); aspect-ratio: 1/1.06; }
.artstack__main img { width: 100%; height: 100%; object-fit: cover; }
.artstack__chip {
  position: absolute; right: -22px; bottom: 34px; width: 46%;
  border-radius: var(--r); overflow: hidden; border: 7px solid var(--cream);
  box-shadow: var(--sh); aspect-ratio: 1/0.86;
}
.artstack__chip img { width: 100%; height: 100%; object-fit: cover; }
.band--paper .artstack__chip { border-color: var(--paper); }

.stat-row { display: flex; gap: 34px; margin-top: 34px; flex-wrap: wrap; }
.stat b { font-family: var(--serif); font-size: 2rem; font-weight: 600; color: var(--gold); display: block; line-height: 1; }
.stat span { font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }

/* ==========================================================================
   STEPS (build your own)
   ========================================================================== */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; counter-reset: s; }
.stepcard {
  background: var(--white); border-radius: var(--r); padding: 30px 26px;
  box-shadow: var(--sh-sm); position: relative; overflow: hidden;
}
.stepcard::before {
  counter-increment: s; content: "0" counter(s);
  position: absolute; top: 16px; right: 20px;
  font-family: var(--serif); font-size: 3.1rem; font-weight: 600;
  color: rgba(168,129,58,.13); line-height: 1;
}
.stepcard h3 { margin-bottom: 9px; }
.stepcard p { font-size: 0.9rem; }
.stepcard__ico { width: 44px; height: 44px; border-radius: 13px; background: var(--gold-wash); color: var(--gold); display: grid; place-items: center; margin-bottom: 16px; }
.stepcard__ico svg { width: 21px; height: 21px; }

/* ==========================================================================
   HAPPY HOUR BAND
   ========================================================================== */
.hh {
  border-radius: var(--r-xl); overflow: hidden; position: relative;
  background: var(--ink); color: var(--cream);
  display: grid; grid-template-columns: 1.1fr 0.9fr; align-items: center;
}
.hh__copy { padding: clamp(30px, 4vw, 54px); position: relative; z-index: 2; }
.hh h2 { color: var(--cream); }
.hh h2 .script { color: var(--gold-lt); }
.hh p { color: rgba(242,238,230,.68); margin-top: 12px; max-width: 46ch; }
.hh__list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.hh__pill {
  font-size: 0.74rem; letter-spacing: 0.05em; padding: 7px 14px; border-radius: 999px;
  border: 1px solid rgba(227,201,131,.28); color: var(--gold-lt);
}
.hh__when {
  display: inline-flex; align-items: center; gap: 9px; margin-top: 26px;
  background: rgba(227,201,131,.12); border: 1px solid rgba(227,201,131,.25);
  border-radius: 999px; padding: 9px 18px; font-size: 0.8rem; color: var(--gold-lt);
}
.hh__when svg { width: 15px; height: 15px; }
.hh__pic { position: relative; align-self: stretch; min-height: 260px; }
.hh__pic img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hh__pic::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, var(--ink), transparent 42%); }

/* ==========================================================================
   MENU PAGE
   ========================================================================== */
.pagehead { padding: clamp(42px, 6vw, 76px) 0 clamp(24px, 3vw, 38px); text-align: center; }
.pagehead h1 { margin: 16px 0 14px; }
.pagehead .lede { margin-inline: auto; }
.orn { display: flex; align-items: center; justify-content: center; gap: 12px; color: var(--gold); margin: 18px 0 0; }
.orn::before, .orn::after { content: ""; height: 1px; width: clamp(40px, 9vw, 96px); background: currentColor; opacity: .4; }
.orn svg { width: 17px; height: 17px; }

.filters {
  position: sticky; top: 78px; z-index: 70;
  background: rgba(242,238,230,.9); backdrop-filter: blur(14px);
  border-block: 1px solid var(--hair);
  padding: 13px 0;
}
.filters__in { display: flex; align-items: center; gap: 9px; overflow-x: auto; scrollbar-width: none; }
.filters__in::-webkit-scrollbar { display: none; }
.chip {
  flex: none; padding: 9px 19px; border-radius: 999px; border: 1px solid var(--hair-2);
  font-size: 0.8rem; letter-spacing: 0.04em; color: var(--ink-3); transition: .25s; white-space: nowrap;
}
.chip:hover { border-color: var(--ink); }
.chip.on { background: var(--ink); border-color: var(--ink); color: var(--gold-lt); }

.msec { padding: clamp(44px, 6vw, 70px) 0 0; scroll-margin-top: 150px; }
.msec__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 30px; padding-bottom: 20px; border-bottom: 1px solid var(--hair); }
.msec__head h2 { font-size: clamp(1.7rem, 3vw, 2.5rem); }
.msec__head p { margin-top: 8px; font-size: 0.92rem; }
.msec__count { font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); white-space: nowrap; }

.mgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.mcard {
  background: var(--white); border-radius: var(--r); overflow: hidden;
  display: flex; flex-direction: column; box-shadow: var(--sh-sm);
  transition: transform .38s cubic-bezier(.2,.8,.3,1), box-shadow .38s;
}
.mcard:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); }
.mcard__pic { position: relative; aspect-ratio: 1.42; overflow: hidden; background: var(--cream-deep); }
.mcard__pic img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.8,.3,1); }
.mcard:hover .mcard__pic img { transform: scale(1.06); }
.mcard__flag {
  position: absolute; top: 13px; left: 13px;
  background: rgba(22,19,14,.86); color: var(--gold-lt); backdrop-filter: blur(4px);
  font-size: 0.6rem; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 5px 11px; border-radius: 999px;
}
.mcard__hh {
  position: absolute; top: 13px; right: 13px;
  background: linear-gradient(135deg,#c9a24b,#e3c983); color: #24190a;
  font-size: 0.58rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 999px;
}
.mcard__body { padding: 19px 20px 20px; display: flex; flex-direction: column; flex: 1; }
.mcard h3 { font-size: 1.06rem; line-height: 1.25; }
.mcard__note { font-size: 0.855rem; color: var(--muted); margin-top: 8px; flex: 1; line-height: 1.55; }
.mcard__foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 18px; }
.mcard__add {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--ink); color: var(--gold-lt);
  padding: 10px 17px; border-radius: 999px;
  font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase;
  transition: .28s;
}
.mcard__add:hover { background: var(--gold); color: var(--ink); }
.mcard__add svg { width: 14px; height: 14px; }
.mcard__add.done { background: var(--olive); color: #fff; }

/* BYO callout inside menu */
.byo-note {
  grid-column: 1 / -1;
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  background: var(--gold-wash); border: 1px dashed rgba(168,129,58,.4);
  border-radius: var(--r); padding: 22px 26px;
}
.byo-note h3 { font-size: 1.1rem; }
.byo-note p { font-size: 0.88rem; margin-top: 4px; }
.byo-note .btn { margin-left: auto; }

/* ==========================================================================
   ORDER / BUILDER
   ========================================================================== */
.builder { display: grid; grid-template-columns: 1fr 364px; gap: 30px; align-items: start; }
.builder > * { min-width: 0; }

.modeswitch { display: flex; gap: 10px; margin-bottom: 30px; flex-wrap: wrap; }
.modeswitch button {
  flex: 1 1 190px; min-width: 0;
  border: 1px solid var(--hair-2); border-radius: var(--r-sm);
  background: var(--white); padding: 16px 18px; text-align: left; transition: .28s;
}
.modeswitch button b { display: block; font-size: 0.98rem; font-weight: 600; }
.modeswitch button span { font-size: 0.78rem; color: var(--muted); }
.modeswitch button.on { border-color: var(--gold); background: var(--gold-wash); }
.modeswitch button.on b { color: var(--gold); }

#build { scroll-margin-top: 96px; }
.bstep { margin-bottom: 34px; min-width: 0; }
.bstep__head { display: flex; align-items: center; gap: 13px; margin-bottom: 16px; flex-wrap: wrap; }
.bstep__n {
  width: 30px; height: 30px; border-radius: 50%; flex: none;
  background: var(--ink); color: var(--gold-lt);
  display: grid; place-items: center; font-size: 0.8rem; font-family: var(--serif);
}
.bstep__head h3 { font-size: 1.18rem; }
.bstep__hint { margin-left: auto; font-size: 0.78rem; color: var(--muted); text-align: right; }

.picks { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; min-width: 0; }
.picks > * { min-width: 0; }
.picks--tight { grid-template-columns: repeat(auto-fill, minmax(148px, 1fr)); }

.pick {
  border: 1px solid var(--hair); border-radius: var(--r-sm); overflow: hidden;
  background: var(--white); text-align: left; transition: .25s; position: relative;
  display: flex; flex-direction: column; align-items: stretch; padding: 0;
}
.pick__body { flex: 1; }
.pick:hover { border-color: var(--hair-2); transform: translateY(-2px); }
.pick.on { border-color: var(--gold); box-shadow: 0 0 0 2px rgba(168,129,58,.2); }
.pick__pic { display: block; aspect-ratio: 1.5; overflow: hidden; background: var(--cream-deep); }
.pick__pic img { width: 100%; height: 100%; object-fit: cover; }
.pick__body { display: block; padding: 11px 13px 13px; }
.pick b { display: block; font-size: 0.88rem; font-weight: 600; line-height: 1.3; }
.pick small { display: block; font-size: 0.74rem; color: var(--muted); margin-top: 2px; }
.pick .pick__price { font-family: var(--serif); font-size: 0.98rem; color: var(--gold); margin-top: 7px; display: block; }
.pick__tick {
  position: absolute; top: 9px; right: 9px; width: 22px; height: 22px; border-radius: 50%;
  background: var(--gold); color: #fff; display: none; place-items: center;
}
.pick__tick svg { width: 12px; height: 12px; }
.pick.on .pick__tick { display: grid; }
.pick__prem { display: block; font-size: 0.68rem; color: var(--gold); letter-spacing: .05em; margin-top: 3px; }

.tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  padding: 9px 16px; border-radius: 999px; border: 1px solid var(--hair-2);
  background: var(--white); font-size: 0.82rem; color: var(--ink-3); transition: .22s;
}
.tag:hover { border-color: var(--gold); }
.tag.on { background: var(--ink); border-color: var(--ink); color: var(--gold-lt); }

.buildbar {
  position: sticky; bottom: 16px;
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
  background: var(--white); border-radius: var(--r); padding: 16px 20px;
  box-shadow: var(--sh-lg); margin-top: 8px;
}
.buildbar__sum b { font-family: var(--serif); font-size: 1.5rem; }
.buildbar__sum span { display: block; font-size: 0.76rem; color: var(--muted); }
.buildbar .btn { margin-left: auto; }

/* order summary aside */
.aside {
  position: sticky; top: 100px;
  background: var(--white); border-radius: var(--r); box-shadow: var(--sh);
  overflow: hidden;
}
.aside__head { padding: 19px 22px; border-bottom: 1px solid var(--hair); display: flex; align-items: center; gap: 11px; }
.aside__head h3 { font-size: 1.08rem; }
.aside__head svg { width: 19px; height: 19px; color: var(--gold); }
.aside__n { margin-left: auto; font-size: 0.78rem; color: var(--muted); }
.aside__body { padding: 8px 22px; max-height: 44vh; overflow-y: auto; }
.aside__foot { padding: 18px 22px 22px; border-top: 1px solid var(--hair); display: grid; gap: 11px; }

.qadd { margin-top: 56px; }
.qadd__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 12px; margin-top: 20px; }
.qrow {
  display: flex; align-items: center; gap: 12px;
  background: var(--white); border-radius: var(--r-sm); padding: 10px;
  box-shadow: var(--sh-sm); transition: .28s;
}
.qrow:hover { transform: translateY(-2px); box-shadow: var(--sh); }
.qrow__pic { width: 54px; height: 54px; border-radius: 10px; overflow: hidden; flex: none; background: var(--cream-deep); }
.qrow__pic img { width: 100%; height: 100%; object-fit: cover; }
.qrow__txt { min-width: 0; flex: 1; }
.qrow b { display: block; font-size: 0.85rem; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.qrow span { font-family: var(--serif); font-size: 0.9rem; color: var(--gold); }
.qrow button {
  width: 33px; height: 33px; border-radius: 50%; flex: none;
  background: var(--ink); color: var(--gold-lt); display: grid; place-items: center; transition: .25s;
}
.qrow button:hover { background: var(--gold); color: var(--ink); }
.qrow button svg { width: 14px; height: 14px; }

/* ==========================================================================
   CART DRAWER
   ========================================================================== */
.scrim {
  position: fixed; inset: 0; z-index: 190;
  background: rgba(14, 12, 8, 0.44); backdrop-filter: blur(3px);
  opacity: 0; visibility: hidden; transition: opacity .35s, visibility .35s;
}
.scrim.open { opacity: 1; visibility: visible; }

/* Off-canvas panel. `visibility: hidden` while closed matters for two reasons
   beyond looks: a fixed element parked off-screen to the right can widen the
   page on mobile, and without it every control inside the closed drawer is
   still reachable by Tab. */
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 200;
  width: min(420px, 100%); max-width: 100vw;
  background: var(--paper);
  display: flex; flex-direction: column;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform .42s cubic-bezier(.3,.9,.3,1), visibility .42s;
  box-shadow: -30px 0 70px -30px rgba(31,26,17,.5);
}
.drawer.open { transform: none; visibility: visible; }
.drawer__head {
  display: flex; align-items: center; gap: 12px;
  padding: 22px 24px; border-bottom: 1px solid var(--hair);
}
.drawer__head > svg { width: 21px; height: 21px; color: var(--gold); flex: none; }
.drawer__head h3 { font-size: 1.25rem; white-space: nowrap; }
.drawer__x { margin-left: auto; width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center; border: 1px solid var(--hair-2); transition: .25s; }
.drawer__x:hover { background: var(--ink); color: var(--cream); }
.drawer__x svg { width: 15px; height: 15px; }
.drawer__body { flex: 1; overflow-y: auto; padding: 8px 24px; }
.drawer__foot { padding: 20px 24px 24px; border-top: 1px solid var(--hair); background: var(--white); display: grid; gap: 12px; }

.line { display: flex; align-items: center; justify-content: space-between; gap: 12px; font-size: 0.9rem; color: var(--body); }
.line--total { border-top: 1px solid var(--hair); padding-top: 13px; margin-top: 4px; color: var(--ink); font-size: 1rem; }
.line--total .price { font-size: 1.42rem; }
.line--save { color: var(--gold); }
.line small { color: var(--muted); font-size: 0.8rem; }

.citem { display: flex; gap: 13px; padding: 15px 0; border-bottom: 1px solid var(--hair); }
.citem:last-child { border-bottom: 0; }
.citem__pic { width: 62px; height: 62px; border-radius: 12px; overflow: hidden; flex: none; background: var(--cream-deep); }
.citem__pic img { width: 100%; height: 100%; object-fit: cover; }
.citem__txt { flex: 1; min-width: 0; }
.citem b { font-size: 0.9rem; font-weight: 600; display: block; line-height: 1.3; }
.citem__mods { font-size: 0.74rem; color: var(--muted); margin-top: 4px; line-height: 1.45; }
.citem__row { display: flex; align-items: center; justify-content: space-between; margin-top: 9px; gap: 10px; }
.stepper { display: flex; align-items: center; gap: 3px; border: 1px solid var(--hair-2); border-radius: 999px; padding: 2px; }
.stepper button { width: 24px; height: 24px; border-radius: 50%; display: grid; place-items: center; font-size: 0.9rem; line-height: 1; color: var(--ink-3); transition: .2s; }
.stepper button:hover { background: var(--ink); color: var(--cream); }
.stepper b { min-width: 20px; text-align: center; font-size: 0.82rem; }
.citem__price { font-family: var(--serif); font-size: 1rem; font-weight: 600; }

.empty { text-align: center; padding: 54px 20px; }
.empty svg { width: 46px; height: 46px; color: var(--gold); margin: 0 auto 16px; opacity: .55; }
.empty p { font-size: 0.9rem; }

/* ==========================================================================
   MODAL
   ========================================================================== */
.modal {
  position: fixed; inset: 0; z-index: 210;
  display: none; align-items: center; justify-content: center; padding: 20px;
  background: rgba(14,12,8,.5); backdrop-filter: blur(5px);
}
.modal.open { display: flex; }
.modal__card {
  width: min(500px, 100%); max-height: 90vh; overflow-y: auto;
  background: var(--paper); border-radius: var(--r-lg); padding: 34px 34px 30px;
  position: relative; box-shadow: var(--sh-lg);
  animation: pop .35s cubic-bezier(.2,.9,.3,1);
}
@keyframes pop { from { opacity: 0; transform: translateY(16px) scale(.98); } }
.modal__x { position: absolute; top: 16px; right: 16px; width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; color: var(--muted); transition: .25s; }
.modal__x:hover { background: var(--cream-deep); color: var(--ink); }
.modal h3 { font-size: 1.6rem; }
.modal__sub { font-size: 0.88rem; color: var(--muted); margin: 6px 0 22px; }

.field { margin-bottom: 15px; }
.field label { display: block; font-size: 0.72rem; letter-spacing: 0.13em; text-transform: uppercase; color: var(--gold); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; background: var(--white); border: 1px solid var(--hair-2);
  border-radius: var(--r-sm); padding: 13px 15px; font-size: 0.94rem; transition: border-color .25s, box-shadow .25s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(168,129,58,.13);
}
.field textarea { resize: vertical; min-height: 62px; }
.grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }

/* validation + send errors */
.err { display: none; font-size: 0.78rem; color: var(--clay); margin-top: 6px; }
.err.on { display: block; }
.err--block.on { display: block; margin: 0 0 14px; padding: 11px 14px; border-radius: var(--r-sm);
  background: rgba(168, 86, 60, .08); border: 1px solid rgba(168, 86, 60, .28); }
.field.bad input, .field.bad select, .field.bad textarea { border-color: var(--clay); }
.field.bad label { color: var(--clay); }

/* submit button busy state */
.btn:disabled { opacity: .6; cursor: progress; transform: none; }
#placeBtn:disabled .btn__label::after {
  content: ""; display: inline-block; width: 12px; height: 12px; margin-left: 9px;
  vertical-align: -2px; border: 2px solid currentColor; border-right-color: transparent;
  border-radius: 50%; animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.done-seal { width: 66px; height: 66px; border-radius: 50%; background: var(--gold-wash); color: var(--gold); display: grid; place-items: center; margin: 0 auto 18px; }
.done-seal svg { width: 32px; height: 32px; }
.ordernum { font-family: var(--serif); font-size: 2.1rem; color: var(--gold); text-align: center; letter-spacing: .06em; }

/* ==========================================================================
   VISIT
   ========================================================================== */
.visit { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 26px; align-items: stretch; }
.infocard { background: var(--white); border-radius: var(--r); padding: 32px; box-shadow: var(--sh-sm); display: flex; flex-direction: column; gap: 26px; }
.info { display: flex; gap: 15px; }
.info__ico { width: 40px; height: 40px; border-radius: 12px; background: var(--gold-wash); color: var(--gold); display: grid; place-items: center; flex: none; }
.info__ico svg { width: 19px; height: 19px; }
.info h3 { font-size: 1.02rem; margin-bottom: 5px; }
.info p { font-size: 0.9rem; }
.info .soft { color: var(--muted); font-size: 0.82rem; }
.hours { width: 100%; border-collapse: collapse; }
.hours td { padding: 5px 0; font-size: 0.88rem; color: var(--body); }
.hours td:last-child { text-align: right; color: var(--ink); font-weight: 500; }
.hours .whisper td { color: var(--gold); font-family: var(--script); font-size: 1.05rem; padding-top: 0; }
.mapwrap { border-radius: var(--r); overflow: hidden; box-shadow: var(--sh); min-height: 460px; background: var(--cream-deep); }
.mapwrap iframe { width: 100%; height: 100%; min-height: 460px; border: 0; }

/* ==========================================================================
   VALUES / ABOUT
   ========================================================================== */
.values { display: grid; gap: 0; }
.value {
  display: grid; grid-template-columns: 90px 1fr; gap: 26px;
  padding: 30px 0; border-bottom: 1px solid var(--hair); align-items: start;
}
.value:last-child { border-bottom: 0; }
.value__n { font-family: var(--serif); font-size: 1.7rem; color: var(--gold); }
.value h3 { margin-bottom: 8px; font-size: 1.3rem; }
.value p { max-width: 62ch; }

.pullquote { text-align: center; padding: clamp(60px, 8vw, 100px) 0; }
.pullquote blockquote { font-family: var(--serif); font-size: clamp(1.5rem, 3.4vw, 2.5rem); font-style: italic; line-height: 1.3; max-width: 20ch; margin: 0 auto 20px; }
.pullquote cite { font-style: normal; font-size: 0.76rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); }

/* 5 images tile a 4×2 grid exactly: hero takes 2×2, four squares fill the rest */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.gallery figure { border-radius: var(--r-sm); overflow: hidden; aspect-ratio: 1; margin: 0; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.8,.3,1); }
.gallery figure:hover img { transform: scale(1.08); }
.gallery figure:first-child { grid-column: span 2; grid-row: span 2; }

/* ==========================================================================
   CTA + FOOTER
   ========================================================================== */
.closer { text-align: center; padding: clamp(64px, 8vw, 108px) 0; }
.closer h2 { margin: 16px auto 14px; max-width: 16ch; }
.closer p { margin: 0 auto 30px; max-width: 48ch; }
.closer__btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

footer { background: var(--ink); color: rgba(242,238,230,.7); padding: 66px 0 26px; }
footer h4 { font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; font-weight: 500; }
.foot { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.1fr; gap: 40px; padding-bottom: 44px; }
.foot ul { list-style: none; display: grid; gap: 10px; }
.foot a { font-size: 0.88rem; transition: color .25s; }
.foot a:hover { color: var(--gold-lt); }
.foot li { font-size: 0.88rem; }
.foot__logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.foot__logo .logo__plate { background: rgba(255,255,255,.05); }
.foot__logo .logo__name { color: var(--cream); }
.foot__blurb { font-size: 0.88rem; max-width: 32ch; }
.socials { display: flex; gap: 9px; margin-top: 18px; }
.socials a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(242,238,230,.16); display: grid; place-items: center; transition: .25s; }
.socials a:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.socials svg { width: 16px; height: 16px; }
.footbar { border-top: 1px solid rgba(242,238,230,.1); padding-top: 22px; display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-size: 0.78rem; }
.footbar .script { font-size: 1.15rem; color: var(--gold); }

/* ==========================================================================
   TOAST + REVEAL
   ========================================================================== */
.toast {
  position: fixed; left: 50%; bottom: 26px; z-index: 240;
  transform: translate(-50%, 22px); opacity: 0; pointer-events: none;
  background: var(--ink); color: var(--cream);
  border-radius: 999px; padding: 13px 24px; font-size: 0.86rem;
  display: flex; align-items: center; gap: 10px;
  box-shadow: var(--sh-lg); transition: .35s cubic-bezier(.2,.9,.3,1);
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }
.toast svg { width: 16px; height: 16px; color: var(--gold-lt); }

.rise { opacity: 0; transform: translateY(20px); transition: opacity .8s cubic-bezier(.2,.8,.3,1), transform .8s cubic-bezier(.2,.8,.3,1); }
.rise.seen { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .rise { opacity: 1; transform: none; transition: none; }
  * { animation-duration: .001s !important; }
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1080px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__art { max-width: 440px; margin: 10px auto 0; }
  .floater--a { left: 0; } .floater--b { right: 0; }
  .cats { grid-template-columns: repeat(3, 1fr); }
  .mgrid { grid-template-columns: repeat(2, 1fr); }
  .builder { grid-template-columns: 1fr; }
  .aside { position: static; }
  .picks { grid-template-columns: repeat(3, 1fr); }
  .visit { grid-template-columns: 1fr; }
  .foot { grid-template-columns: 1fr 1fr; }
  .hh { grid-template-columns: 1fr; }
  .hh__pic { min-height: 220px; order: -1; }
  .hh__pic::after { background: linear-gradient(0deg, var(--ink), transparent 55%); }
}

@media (max-width: 860px) {
  .topline__set--wide { display: none; }
  /* full-height offset so translateY(-100%) hides the panel completely */
  .mainnav {
    position: fixed; left: 0; right: 0; top: 0; z-index: 88;
    background: var(--paper); border-bottom: 1px solid var(--hair);
    padding: 130px var(--gutter) 26px;
    transform: translateY(-100%); transition: transform .4s cubic-bezier(.3,.9,.3,1);
    box-shadow: var(--sh);
  }
  .mainnav.open { transform: none; }
  .mainnav ul { flex-direction: column; align-items: stretch; gap: 2px; }
  .mainnav a { padding: 13px 8px; font-size: 0.98rem; border-bottom: 1px solid var(--hair); border-radius: 0; }
  .burger { display: grid; }
  .headtools { margin-left: auto; }
  .trust { grid-template-columns: repeat(2, auto); }
  .split, .split--wide { grid-template-columns: 1fr; }
  .plate { max-width: 460px; margin: 8px auto 0; }
  .picks { grid-template-columns: repeat(2, 1fr); }
  .bstep__hint { margin-left: 0; width: 100%; text-align: left; }
  .artstack { max-width: 460px; margin-inline: auto; }
  .artstack__chip { right: 0; width: 42%; }
  .steps { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .filters { top: 66px; }
}

@media (max-width: 620px) {
  body { font-size: 15.4px; }
  .masthead__in { height: 66px; }
  .logo__plate { width: 40px; height: 40px; }
  .logo__name { font-size: 1.1rem; letter-spacing: .16em; }
  /* header must never exceed the phone width — the nav panel carries Order */
  .logo__sub { display: none; }
  #headOrder { display: none; }
  .headtools { gap: 8px; }
  .mainnav { padding-top: 116px; }
  .trust { grid-template-columns: 1fr; gap: 14px; }
  .hero__cta { display: grid; grid-template-columns: 1fr; gap: 10px; }
  .hero__cta .btn { width: 100%; }
  .cats { grid-template-columns: repeat(2, 1fr); }
  .mgrid { grid-template-columns: 1fr; }
  .picks { grid-template-columns: repeat(2, 1fr); }
  .msec__head { flex-direction: column; align-items: flex-start; }
  .value { grid-template-columns: 56px 1fr; gap: 14px; }
  /* keep the floating cards inside the frame on a phone */
  .plate__tag { padding: 10px 13px; gap: 9px; }
  .plate__tag b { font-size: 0.78rem; }
  .plate__tag span { font-size: 0.66rem; }
  .plate__ico { width: 28px; height: 28px; border-radius: 9px; }
  /* pull the ring flush on a phone so nothing pokes past the column */
  .plate__ring { inset: 0; }
  .plate__tag--a { top: 1%; right: 0; }
  .plate__tag--b { bottom: 8%; left: 0; }
  .plate__seal { width: 84px; height: 84px; bottom: 0; right: 0; }
  .plate__seal b { font-size: 0.72rem; }
  .plate__seal span { font-size: 0.5rem; }
  .buildlist li { grid-template-columns: 38px 1fr; gap: 12px; padding: 17px 0; }
  .foot { grid-template-columns: 1fr; gap: 30px; }
  .buildbar { position: static; }
  .modal__card { padding: 28px 22px 24px; }
  .grid2 { grid-template-columns: 1fr; }
  .floater--a { top: 2%; }
  .floater--seal { width: 88px; height: 88px; left: -2%; }
  .floater--seal b { font-size: .74rem; }
}
