/* Simple NYC styles. See Tasks 3+. */
@import url('./tokens.css');

/* === Typography base === */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 0.94;
  letter-spacing: var(--tr-display);
  margin: 0;
  color: inherit;
}
h1 { font-size: var(--t-hero); line-height: 0.92; letter-spacing: var(--tr-display); }
h2 { font-size: var(--t-h2); }
h3 { font-size: var(--t-h3); letter-spacing: var(--tr-tight); }
h4 { font-size: var(--t-h4); letter-spacing: var(--tr-tight); }

p { margin: 0; }

.eyebrow {
  font-family: var(--font-body);
  font-size: var(--t-eyebrow);
  letter-spacing: var(--tr-eyebrow);
  text-transform: uppercase;
  opacity: 0.6;
  display: inline-block;
  color: inherit;
}

/* Opt-in dot variant — for the rare case a section wants the marker back */
.eyebrow--dot {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow--dot::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--brand);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Eyebrow variants — vary across sections to break the dot-pattern monotony */
.eyebrow--rule {
  font-family: var(--font-body);
  font-size: var(--t-eyebrow);
  letter-spacing: var(--tr-eyebrow);
  text-transform: uppercase;
  opacity: 0.6;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.eyebrow--rule::before { display: none; }
.eyebrow--rule::after {
  content: '';
  width: 60px;
  height: 1px;
  background: currentColor;
  opacity: 0.4;
  display: inline-block;
}

.eyebrow--num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: none;
  opacity: 0.85;
  color: var(--brand);
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
}
.eyebrow--num::before { display: none; }
.eyebrow--num .num {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0;
  color: var(--brand);
}

.eyebrow--bracket {
  font-family: var(--font-body);
  font-size: var(--t-eyebrow);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  opacity: 0.55;
  display: inline-flex;
  align-items: center;
  gap: 0;
}
.eyebrow--bracket::before {
  content: '[';
  margin-right: 10px;
  color: var(--brand);
  font-weight: 400;
  width: auto;
  height: auto;
  background: transparent;
  border-radius: 0;
}
.eyebrow--bracket::after {
  content: ']';
  margin-left: 10px;
  color: var(--brand);
  font-weight: 400;
}

.eyebrow--star {
  font-family: var(--font-body);
  font-size: var(--t-eyebrow);
  letter-spacing: var(--tr-eyebrow);
  text-transform: uppercase;
  opacity: 0.6;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow--star::before {
  content: '✱';
  color: var(--brand);
  font-size: 13px;
  width: auto;
  height: auto;
  background: transparent;
  border-radius: 0;
  line-height: 1;
}

/* Subtle paper grain — faint noise overlay for cream sections so they don't read as flat CSS */
.has-grain { position: relative; isolation: isolate; }
.has-grain::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200' viewBox='0 0 200 200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.114 0 0 0 0 0.114 0 0 0 0 0.137 0 0 0 0.5 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.035;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: multiply;
}
.has-grain > * { position: relative; z-index: 2; }

/* Editorial margin note — small italic Playfair aside, positioned in the gutter */
.margin-note {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 400;
  font-size: 13px;
  line-height: 1.5;
  color: var(--brand);
  opacity: 0.85;
  display: inline-block;
  position: relative;
  padding-left: 14px;
  max-width: 280px;
}
.margin-note::before {
  content: '*';
  position: absolute;
  left: 0;
  top: 0;
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 500;
  font-size: 18px;
  line-height: 1;
  color: var(--brand);
}
.margin-note--right {
  position: absolute;
  right: var(--section-pad-x);
  top: 40%;
  text-align: left;
  max-width: 220px;
}
.margin-note--inline { display: block; margin-top: 18px; }
@media (max-width: 1100px) {
  .margin-note--right { position: static; max-width: 100%; margin-top: 14px; }
}

/* Drop cap — used on the Chef Kim quote and any other editorial pull-quote that earns it */
.dropcap::first-letter {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 500;
  font-size: 5.4em;
  float: left;
  line-height: 0.82;
  padding: 6px 14px 0 0;
  color: var(--brand);
}

/* Set Bricolage variable-axis optical sizing for display-size headlines */
.hero-h, .page-hero-h, .legal-hero-h, .press-hero-h, .gallery-hero-h, .gifts-hero-h,
.chapter-h, .closer-h, .story-h, .menu-cat-h, .bowls-h, .locations-h,
.about-kim-h, .about-pillars-h, .about-timeline-h, .about-team-h, .about-cta-h,
.contact-form-h, .contact-allergen-h, .press-quotes-h, .press-kit-h, .press-contact-h,
.menu-allergens-h, .menu-order-h, .loc-detail-h, .loc-cta-h, .career-values-h,
.career-openings-h, .career-spec-app-h, .order-page-hero-h, .order-apps-h, .order-pickup-h,
.gifts-denominations-h, .gifts-how-h, .shop-h, .sb-mega {
  font-variation-settings: "opsz" 96;
}

.editorial-em {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 500;
  color: var(--brand);
}

.jp {
  font-family: var(--font-jp);
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--brand);
}

/* === Buttons === */
.cta-primary,
.cta-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--t-small);
  white-space: nowrap;
  transition: background var(--dur-fast), border-color var(--dur-fast), transform var(--dur-fast);
  cursor: pointer;
}
.cta-primary {
  background: var(--brand);
  color: var(--ink);
  border: none;
}
.cta-primary:hover { background: var(--brand-hover); color: #fff; }
.cta-ghost {
  background: transparent;
  border: 1px solid rgba(246, 243, 238, 0.4);
  color: var(--cream);
}
.cta-ghost.on-light { border-color: rgba(29, 29, 35, 0.2); color: var(--ink); }
.cta-ghost:hover { transform: translateX(2px); }

/* === Motion utility classes === */
.fx-rise { opacity: 0; transform: translateY(40px); }
.fx-rise.is-in { opacity: 1; transform: translateY(0); transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out); }

.fx-stagger > * { opacity: 0; transform: translateY(40px); }
.fx-stagger.is-in > * {
  opacity: 1;
  transform: translateY(0);
  transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out);
}
.fx-stagger.is-in > *:nth-child(1) { transition-delay: 0ms; }
.fx-stagger.is-in > *:nth-child(2) { transition-delay: 50ms; }
.fx-stagger.is-in > *:nth-child(3) { transition-delay: 100ms; }
.fx-stagger.is-in > *:nth-child(4) { transition-delay: 150ms; }
.fx-stagger.is-in > *:nth-child(5) { transition-delay: 200ms; }
.fx-stagger.is-in > *:nth-child(6) { transition-delay: 250ms; }

/* === Reduced motion === */
@media (prefers-reduced-motion: reduce) {
  .fx-rise, .fx-stagger > * { opacity: 1; transform: none; transition: none; }
}

/* === Section 01 · Hero === */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--ink-deep);
  color: var(--cream);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 70% 55%, rgba(196, 104, 42, 0.33) 0%, transparent 60%),
    linear-gradient(135deg, #2a1e16 0%, #1a1410 50%, #0d0a08 100%);
  z-index: 0;
}
.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 75% center;
  z-index: 1;
}
/* Subtle left scrim to lift the text off the photo's natural slate area */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,
      rgba(13, 10, 8, 0.55) 0%,
      rgba(13, 10, 8, 0.3) 22%,
      rgba(13, 10, 8, 0.1) 38%,
      transparent 55%
    ),
    linear-gradient(180deg,
      transparent 0%,
      transparent 78%,
      rgba(13, 10, 8, 0.4) 94%,
      rgba(13, 10, 8, 0.7) 100%
    );
  z-index: 2;
  pointer-events: none;
}

.top-nav {
  position: relative;
  z-index: 5;
  padding: 22px var(--section-pad-x);
  display: flex;
  align-items: center;
  gap: 44px;
  font-family: var(--font-body);
}
.nav-order { margin-left: auto; }
.logo {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}
.logo img {
  display: block;
  width: 52px;
  height: 52px;
  filter: invert(1);
  mix-blend-mode: screen;
  transition: transform var(--dur-fast) var(--ease-out);
}
.logo:hover img { transform: rotate(-4deg) scale(1.04); }
.primary-nav { display: flex; gap: 28px; font-size: 12px; font-weight: 500; }
.primary-nav a { color: var(--cream); opacity: 0.85; }
.primary-nav a:hover { opacity: 1; color: var(--brand); }
.nav-order { padding: 9px 18px; font-size: 12px; }

.hero-text {
  position: absolute;
  left: var(--section-pad-x);
  top: 22%;
  max-width: 52%;
  z-index: 4;
}
.hero-h-line { display: block; }
.hero-h-accent { color: var(--brand); }
.hero-text .eyebrow { margin-bottom: 14px; }
.hero-h {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--t-hero);
  margin: 0 0 22px;
}
.hero-sub {
  font-size: 14px;
  line-height: 1.55;
  max-width: 380px;
  opacity: 0.85;
  margin: 0 0 26px;
}
.hero-ctas { display: flex; gap: 14px; align-items: center; }


.hero-ticker {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 14px var(--section-pad-x);
  display: flex;
  justify-content: space-between;
  opacity: 0.55;
  font-size: var(--t-micro);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-top: 1px solid rgba(246, 243, 238, 0.1);
  z-index: 4;
}

@media (max-width: 900px) {
  .primary-nav { display: none; }
  .hero-text { left: 22px; right: 22px; max-width: none; bottom: 32%; }
  .top-nav .logo img { width: 44px; height: 44px; }
  .hero-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-position: 70% center;
  }
  .hero::after {
    background: linear-gradient(180deg,
      transparent 0%,
      transparent 30%,
      rgba(13, 10, 8, 0.6) 55%,
      rgba(13, 10, 8, 0.92) 82%,
      rgba(13, 10, 8, 0.98) 100%
    );
  }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .cta-primary, .hero-ctas .cta-ghost { justify-content: center; }
  .hero-ticker { flex-direction: column; gap: 4px; text-align: center; padding-bottom: 18px; }
}

/* === Section 02 · Signature Bowls === */
.bowls {
  position: relative;
  background: var(--cream);
  color: var(--ink);
  padding: 80px var(--section-pad-x) 80px;
}
.bowls-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 36px;
}
.bowls-head-left { max-width: 55%; }
.bowls-head-left .eyebrow { margin-bottom: 14px; }
.bowls-h { font-size: var(--t-h2-bowls); }
.bowls-head-right {
  max-width: 32%;
  font-size: 13px;
  line-height: 1.6;
  opacity: 0.75;
}
.bowls-link {
  display: inline-block;
  margin-top: 14px;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-thickness: 1.5px;
  color: var(--ink);
}

.bowl-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.bowl-card {
  background: var(--cream-warm);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 0 var(--cream-deep);
  transition: transform var(--dur-fast) var(--ease-out);
}
.bowl-card:hover { transform: translateY(-4px); }
.bowl-photo {
  position: relative;
  aspect-ratio: 5/4;
  overflow: hidden;
  background: var(--ink-deep);
}
.bowl-photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--dur-base) var(--ease-out);
}
.bowl-card:hover .bowl-photo img { transform: scale(1.04); }
.bowl-tag {
  position: absolute; top: 14px; left: 14px;
  padding: 5px 11px;
  background: var(--cream-warm);
  color: var(--ink);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.bowl-tag-warm { background: var(--brand); color: var(--ink); }
.bowl-tag-cool {
  background: var(--accent-green);
  color: var(--ink);
}
.bowl-tag-ink {
  background: var(--ink);
  color: var(--cream);
}
.bowl-price {
  position: absolute; bottom: 14px; right: 14px;
  padding: 8px 12px;
  background: var(--ink);
  color: var(--cream);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}
.bowl-info { padding: 20px 22px 22px; }
.bowl-info h3 { margin: 0 0 8px; }
.bowl-info p { font-size: 12.5px; line-height: 1.55; opacity: 0.7; margin: 0 0 14px; }
.bowl-ings { display: flex; flex-wrap: wrap; gap: 6px; }
.bowl-ings span {
  font-size: 10px;
  letter-spacing: 0.06em;
  padding: 3px 8px;
  border: 1px solid var(--cream-deep);
  border-radius: 999px;
  opacity: 0.75;
}

@media (max-width: 900px) {
  .bowls-head { flex-direction: column; align-items: stretch; }
  .bowls-head-left, .bowls-head-right { max-width: none; }
  .bowl-grid {
    grid-template-columns: none;
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 12px;
    margin: 0 calc(-1 * var(--section-pad-x));
    padding: 0 var(--section-pad-x);
  }
  .bowl-card {
    flex: 0 0 78%;
    scroll-snap-align: start;
  }
}

/* === Section 03 · The Day at the Kitchen (single pinned story) === */
.story {
  position: relative;
  height: 100vh;
  background: var(--ink-deep);
  color: var(--cream);
  overflow: hidden;
  isolation: isolate;
}

/* Top progress bar — sits inside the story now */
.story-progress-bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: rgba(246, 243, 238, 0.08);
  z-index: 10;
}
.story-progress-fill {
  display: block;
  height: 100%;
  width: 0%;
  background: var(--brand);
  transform-origin: left center;
}

/* Stacked background photos */
.story-photos {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
  width: 56%;
  max-width: 800px;
  aspect-ratio: 1 / 1;
  border-radius: 0;
  overflow: hidden;
  z-index: 1;
  will-change: transform;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 30%, #000 100%);
          mask-image: linear-gradient(to right, transparent 0%, #000 30%, #000 100%);
}
.story-photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.05);
  will-change: opacity, transform;
}
.story-photo-1 { opacity: 1; transform: scale(1); }

.story-vignette {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(13, 10, 8, 0.92) 0%, rgba(13, 10, 8, 0.65) 30%, transparent 55%);
  z-index: 2;
  pointer-events: none;
}
.story-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 700px 500px at 75% 50%, rgba(196, 104, 42, 0.18) 0%, transparent 65%);
  z-index: 2;
  pointer-events: none;
}

/* Right-edge rail */
.story-rail {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  z-index: 5;
  padding: 10px 0;
}
.story-rail-line {
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent 0%, rgba(246, 243, 238, 0.12) 12%, rgba(246, 243, 238, 0.12) 88%, transparent 100%);
  transform: translateX(-50%);
  z-index: -1;
}
.story-rail-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(246, 243, 238, 0.18);
  transition: background var(--dur-fast), box-shadow var(--dur-fast), transform var(--dur-fast);
}
.story-rail-dot.is-current {
  background: var(--brand);
  box-shadow: 0 0 0 4px rgba(219, 148, 35, 0.18);
  transform: scale(1.15);
}
.story-rail-label {
  writing-mode: vertical-rl;
  font-family: var(--font-body);
  font-size: var(--t-micro);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  opacity: 0.5;
  margin-top: 8px;
}

/* Anchor block — headline holds across all beats */
.story-anchor {
  position: absolute;
  left: var(--section-pad-x);
  top: 30%;
  z-index: 4;
  max-width: 50%;
}
.story-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 12px;
  color: var(--brand);
  letter-spacing: 0.06em;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.story-num::after {
  content: '';
  flex: 1;
  max-width: 60px;
  height: 1px;
  background: rgba(219, 148, 35, 0.4);
}
.story-h {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--t-h2-story);
  line-height: 0.9;
  letter-spacing: -0.04em;
  margin: 0;
}
.story-h-line2 {
  color: var(--brand);
  display: inline-block;
}

/* Beat container — covers bottom-half of section, has explicit width on desktop */
.story-beats {
  position: absolute;
  left: var(--section-pad-x);
  top: 52%;
  width: calc(50% - var(--section-pad-x));
  max-width: 720px;
  height: 44%;
  z-index: 4;
}

.story-beat {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 450ms var(--ease-out);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.story-beat.is-active {
  opacity: 1;
  pointer-events: auto;
}

/* Per-element reveal mechanism — CSS transitions driven by the .is-active class */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
}
.story-beat.is-active .reveal { opacity: 1; transform: translateY(0); }
.story-beat.is-active .reveal-1 { transition-delay: 80ms; }
.story-beat.is-active .reveal-2 { transition-delay: 220ms; }
.story-beat.is-active .reveal-3 { transition-delay: 360ms; }
.story-beat.is-active .reveal-4 { transition-delay: 500ms; }

/* Shared atoms */
.sb-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.6;
  display: inline-block;
}
.sb-detail {
  font-size: 14px;
  line-height: 1.7;
  opacity: 0.78;
  max-width: 540px;
  margin: 0;
}
.sb-detail-small {
  font-size: 13px;
  line-height: 1.65;
  opacity: 0.7;
  max-width: 440px;
  margin: 0;
}
.sb-detail-italic {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.4;
  opacity: 0.78;
  margin: 0;
}
.sb-phrase {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 38px;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin: 0;
  max-width: 100%;
}
.sb-lead-bold {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 32px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin: 0;
  max-width: 520px;
}
.sb-pullquote {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 500;
  font-size: 44px;
  line-height: 1.04;
  letter-spacing: -0.01em;
  color: var(--brand);
  margin: 0;
}

/* Chips (round, brand-numbered) */
.sb-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.sb-chips.compact { gap: 6px; margin-top: 6px; }
.sb-chip {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(246, 243, 238, 0.16);
  background: rgba(246, 243, 238, 0.04);
  font-size: 11px;
  letter-spacing: 0.04em;
  font-family: var(--font-body);
}
.sb-chip b {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  color: var(--brand);
  letter-spacing: -0.01em;
}
.sb-chip span {
  opacity: 0.65;
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0.12em;
}

/* Tags (rectangle, neutral) */
.sb-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}
.sb-tag {
  padding: 4px 10px;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid rgba(246, 243, 238, 0.18);
  border-radius: 4px;
  opacity: 0.75;
  font-family: var(--font-body);
}

/* === Layout · quote-split === */
[data-layout="quote-split"] {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 32px;
  align-items: start;
}
.sb-split-left { display: flex; flex-direction: column; gap: 12px; }
.sb-split-right { display: flex; flex-direction: column; gap: 12px; }

/* === Layout · inventory-list === */
.sb-ol {
  list-style: none;
  padding: 0;
  margin: 4px 0 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.sb-ol li {
  font-family: var(--font-body);
  font-size: 14.5px;
  line-height: 1.4;
  opacity: 0.86;
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.sb-ol li b {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--brand);
  font-size: 13px;
  letter-spacing: 0.04em;
  flex-shrink: 0;
  width: 22px;
}

/* === Layout · hero-number === */
[data-layout="hero-number"] {
  justify-content: center;
}
.sb-mega {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 180px;
  line-height: 0.88;
  letter-spacing: -0.06em;
  color: var(--brand);
  margin: 0;
}
.sb-mega-sub {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--cream);
  max-width: 460px;
  margin: 4px 0 0;
}

/* === Layout · bottom-banner === */
[data-layout="bottom-banner"] {
  justify-content: flex-end;
}

/* === Layout · centered-outro === */
[data-layout="centered-outro"] {
  justify-content: center;
  align-items: flex-start;
  gap: 14px;
}
.sb-since {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.55;
  margin-top: 18px;
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
}
.sb-since b {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  color: var(--brand);
  letter-spacing: -0.01em;
}

/* === Mobile === */
@media (max-width: 900px) {
  .story-photos {
    width: 78%;
    right: 0;
    top: 16%;
    transform: none;
    aspect-ratio: 1 / 1;
    border-radius: 0;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 22%, #000 100%);
            mask-image: linear-gradient(to right, transparent 0%, #000 22%, #000 100%);
  }
  .story-vignette {
    background: linear-gradient(180deg, rgba(13, 10, 8, 1) 0%, rgba(13, 10, 8, 0.4) 30%, rgba(13, 10, 8, 1) 88%);
  }
  .story-anchor { top: auto; bottom: 56%; max-width: none; right: var(--section-pad-x); }
  .story-h { font-size: var(--t-h2-story); }
  .story-beats {
    left: var(--section-pad-x);
    right: var(--section-pad-x);
    width: auto;
    top: auto;
    bottom: 36px;
    height: auto;
    max-height: 60%;
  }
  .story-rail { display: none; }
  .sb-phrase { font-size: 26px; }
  .sb-lead-bold { font-size: 24px; }
  .sb-pullquote { font-size: 28px; }
  .sb-mega { font-size: 96px; }
  .sb-mega-sub { font-size: 18px; }
  [data-layout="quote-split"] { grid-template-columns: 1fr; gap: 16px; }
  .sb-chip span { display: none; }
}

/* === Reduced motion: show only beat 1 statically === */
@media (prefers-reduced-motion: reduce) {
  .story { height: auto; min-height: 100vh; padding-bottom: 60px; }
  .story-beat { opacity: 1; position: relative; }
  .story-beat:not([data-beat="1"]) { display: none; }
  .story-photo:not(.story-photo-1) { display: none; }
  .story-rail { display: none; }
  .story-progress-bar { display: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* === Section 04 · Locations === */
.locations {
  position: relative;
  background: var(--cream);
  color: var(--ink);
  padding: 80px var(--section-pad-x) 80px;
}
.locations-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 34px;
}
.locations-head-left { max-width: 55%; }
.locations-head-left .eyebrow { margin-bottom: 14px; }
.locations-h { font-size: var(--t-h2); }
.locations-em { color: var(--brand); font-style: normal; }
.locations-head-right { font-size: 13px; line-height: 1.6; opacity: 0.75; max-width: 34%; padding-bottom: 6px; }

.bands { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.band {
  display: block;
  padding: 44px 44px 40px;
  background: var(--cream-warm);
  border-radius: 18px;
  box-shadow: 0 1px 0 var(--cream-deep);
}
/* The two bands share a layout now — no flip mirror. */
.band-flip { text-align: left; }
.band-flip .band-info { margin-left: 0; }
.band-flip .band-meta { grid-template-columns: auto 1fr; }
.band-flip .band-meta dt { text-align: left; }
.band-flip .band-meta dd { text-align: left; }
.band-flip .band-ctas { justify-content: flex-start; }

.band-info {
  padding: 0;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.band-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 11px;
  color: var(--brand);
  letter-spacing: 0.08em;
}
.band-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 42px;
  line-height: 0.94;
  letter-spacing: -0.03em;
  margin: 0;
}
.band-sub {
  color: var(--brand);
  font-style: normal;
  font-size: 0.55em;
  display: block;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 6px;
  opacity: 0.85;
}
.band-addr { font-size: 14px; line-height: 1.55; opacity: 0.75; margin: 0; max-width: 90%; }
.band-meta {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px 16px;
  font-size: 13px;
  margin: 0;
}
.band-meta dt {
  opacity: 0.5;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 10px;
  align-self: center;
}
.band-meta dd { margin: 0; font-weight: 600; }
.band-ctas { display: flex; gap: 10px; margin-top: 6px; }

@media (max-width: 900px) {
  .locations-head { flex-direction: column; align-items: stretch; }
  .locations-head-left, .locations-head-right { max-width: none; }
  .bands { grid-template-columns: 1fr; gap: 14px; }
  .band, .band-flip { padding: 28px 24px; }
  .band-info { padding: 0; }
  .band-name { font-size: 28px; }
}

/* === Section 05 · Said by others === */
.press {
  position: relative;
  background: var(--ink-deep);
  color: var(--cream);
  padding: 60px var(--section-pad-x) 30px;
  overflow: hidden;
}
.press-grain {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(219, 148, 35, 0.13) 0%, transparent 50%),
    radial-gradient(ellipse at 10% 90%, rgba(196, 104, 42, 0.13) 0%, transparent 50%);
  pointer-events: none;
}
.press-grid {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  margin-bottom: 40px;
}
.press-qmark {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 140px;
  line-height: 0.5;
  color: var(--brand);
  opacity: 0.7;
  margin-bottom: -10px;
  height: 36px;
}
.press-text {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 46px;
  line-height: 1.08;
  letter-spacing: var(--tr-tight);
  margin: 0 0 28px;
}
.press-cite {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.65;
}
.press-cite b { color: var(--brand); font-weight: 700; margin-right: 8px; }

.press-stats {
  display: flex; flex-direction: column;
  justify-content: center;
  gap: 22px;
  padding-left: 32px;
  border-left: 1px solid rgba(246, 243, 238, 0.1);
}
.press-stat {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: baseline;
}
.press-stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 46px;
  color: var(--brand);
  letter-spacing: var(--tr-tight);
  line-height: 1;
}
.press-stat-meta { font-size: 12px; line-height: 1.5; opacity: 0.75; }
.press-stat-meta b {
  color: var(--cream);
  font-weight: 600;
  display: block;
  margin-bottom: 2px;
  letter-spacing: var(--tr-tight);
  font-family: var(--font-display);
  font-size: 13px;
}
.press-stars { color: var(--brand); letter-spacing: 2px; font-size: 14px; }

.press-order {
  position: relative; z-index: 3;
  display: flex;
  justify-content: center;
  padding-top: 40px;
}
.press-order-apps { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.app-chip {
  padding: 9px 16px;
  border: 1px solid rgba(246, 243, 238, 0.13);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: border-color var(--dur-fast), background var(--dur-fast);
}
.app-chip:hover { border-color: var(--brand); background: rgba(219, 148, 35, 0.08); }
.app-chip .swatch {
  width: 14px; height: 14px;
  border-radius: 3px;
  display: inline-block;
}
.sw-doordash { background: #eb1700; }
.sw-grubhub { background: #f63440; }
.sw-postmates { background: #000; border: 1px solid rgba(246, 243, 238, 0.27); }
.sw-uber { background: #000; border: 1px solid rgba(246, 243, 238, 0.27); }
.sw-deliv { background: #fff; }

@media (max-width: 900px) {
  .press-grid { grid-template-columns: 1fr; gap: 30px; }
  .press-stats { padding-left: 0; border-left: none; border-top: 1px solid rgba(246, 243, 238, 0.1); padding-top: 22px; }
  .press-text { font-size: 24px; line-height: 1.1; }
  .press-qmark { font-size: 60px; height: 18px; }
  .press-order { flex-direction: column; align-items: stretch; gap: 14px; }
  .press-order-apps { gap: 6px; }
  .app-chip { padding: 7px 12px; font-size: 10px; }
}

/* === Section 06 · The Closer === */
.closer {
  position: relative;
  background: radial-gradient(ellipse 1200px 600px at 50% 120%, #3a2418 0%, #1a1410 40%, #0a0706 80%);
  color: var(--cream);
  padding: 80px var(--section-pad-x) 40px;
  overflow: hidden;
  isolation: isolate;
}
.closer-vignette {
  position: absolute; inset: 0;
  box-shadow: inset 0 0 200px rgba(0, 0, 0, 0.7);
  pointer-events: none;
  z-index: 1;
}
.closer-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 800px 300px at 50% 110%, rgba(219, 148, 35, 0.27) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}
.closer-grain {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(0deg, transparent 0, transparent 2px, rgba(255, 255, 255, 0.012) 3px);
  pointer-events: none;
  z-index: 1;
}

.closer-hero {
  position: relative; z-index: 3;
  text-align: center;
  margin-top: 0;
  margin-bottom: 64px;
}
.closer-h {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--t-h2-closer);
  line-height: 0.92;
  letter-spacing: -0.04em;
  margin: 0;
}

.closer-cols {
  position: relative; z-index: 3;
  display: grid;
  grid-template-columns: 1.1fr 1fr 1.4fr 1fr;
  gap: 50px;
  margin-bottom: 30px;
}
.closer-col h4 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: var(--tr-eyebrow);
  text-transform: uppercase;
  color: var(--brand);
  margin: 0 0 14px;
}
.closer-col ul li { font-size: 13px; line-height: 1.8; opacity: 0.85; }
.closer-col ul li b {
  font-family: var(--font-display);
  font-weight: 700;
  display: block;
  margin-bottom: 2px;
  color: var(--cream);
}
.closer-col .muted { opacity: 0.55; font-size: 12px; }
.closer-col a { transition: color var(--dur-fast); }
.closer-col a:hover { color: var(--brand); }

.closer-col-blurb { font-size: 13px; opacity: 0.75; line-height: 1.55; margin: 0 0 8px; }
.closer-nl {
  display: flex;
  align-items: center;
  border-bottom: 1.5px solid rgba(246, 243, 238, 0.27);
  padding-bottom: 10px;
  margin-top: 6px;
}
.closer-nl input {
  background: transparent;
  border: none;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 14px;
  padding: 6px 0;
  width: 100%;
  outline: none;
}
.closer-nl input::placeholder { color: rgba(246, 243, 238, 0.33); }
.closer-nl-arrow {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--brand);
  color: var(--ink);
  border: none;
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
  animation: pulse-arrow 3s ease-in-out infinite;
}
@keyframes pulse-arrow {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
.closer-nl-note { font-size: 11px; opacity: 0.5; margin-top: 10px; line-height: 1.5; }

.closer-social { display: flex; flex-direction: column; gap: 10px; font-size: 13px; }
.closer-social a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  opacity: 0.85;
}
.closer-social a:hover { opacity: 1; }
.social-mark {
  width: 22px; height: 22px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  flex-shrink: 0;
}
.mark-ig { background: linear-gradient(135deg, #feda75, #fa7e1e 25%, #d62976 50%, #962fbf 75%, #4f5bd5); }
.mark-fb { background: #1877f2; border-radius: 50%; font-size: 13px; }
.mark-tt { background: #000; }

.closer-copy {
  position: relative; z-index: 4;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--t-micro);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.45;
}
.closer-copy ul { display: flex; gap: 18px; }
.closer-copy a:hover { color: var(--brand); }

@media (max-width: 900px) {
  .closer-hero { margin-top: 40px; margin-bottom: 36px; }
  .closer-cols { grid-template-columns: 1fr; gap: 28px; margin-bottom: 30px; }
  .closer-copy { flex-direction: column; gap: 8px; }
  .closer-copy ul { flex-wrap: wrap; justify-content: center; gap: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  .closer-nl-arrow { animation: none; }
}

/* === Fixed nav (appears after hero) === */
.top-nav.is-fixed {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: var(--cream);
  border-bottom: 1px solid var(--cream-deep);
  padding-top: 14px;
  padding-bottom: 14px;
  z-index: 100;
  animation: nav-drop var(--dur-base) var(--ease-out);
}
@keyframes nav-drop {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}
/* Restore the primary nav once we have a light background to anchor it */
.top-nav.is-fixed .primary-nav { display: flex; }
.top-nav.is-fixed .primary-nav a { color: var(--ink); opacity: 0.7; }
.top-nav.is-fixed .primary-nav a:hover { opacity: 1; color: var(--brand); }
.top-nav.is-fixed .primary-nav a.is-current { color: var(--brand); opacity: 1; }
.top-nav.is-fixed .nav-order { padding: 8px 16px; font-size: 11px; }
.top-nav.is-fixed .logo img {
  width: 40px;
  height: 40px;
  /* Logo is now on cream, so undo the dark-bg invert + screen treatment */
  filter: none;
  mix-blend-mode: normal;
}

@media (prefers-reduced-motion: reduce) {
  .top-nav.is-fixed { animation: none; }
  .closer-word { opacity: 1 !important; transform: none !important; }
  .hero-word { opacity: 1 !important; transform: none !important; }
}

/* === /menu === */

/* Sticky category nav */
.menu-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(13, 10, 8, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(246, 243, 238, 0.08);
}
.menu-nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 16px var(--section-pad-x);
  max-width: 1440px;
  margin: 0 auto;
  overflow-x: auto;
}
.menu-nav-link {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--cream);
  opacity: 0.55;
  white-space: nowrap;
  letter-spacing: -0.005em;
  transition: opacity var(--dur-fast), color var(--dur-fast);
}
.menu-nav-link:hover { opacity: 1; }
.menu-nav-link.is-active { color: var(--brand); opacity: 1; }
.menu-nav-link.menu-nav-mute { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; opacity: 0.45; }
.menu-nav-spacer { flex: 1; }

/* Category section */
.menu-category {
  background: var(--cream);
  color: var(--ink);
  padding: 100px var(--section-pad-x) 80px;
}
.menu-category-alt {
  background: var(--ink-deep);
  color: var(--cream);
}
.menu-category-alt .menu-item {
  background: rgba(246, 243, 238, 0.04);
  border: 1px solid rgba(246, 243, 238, 0.08);
}
.menu-category-alt .menu-item-allergens {
  border-top-color: rgba(246, 243, 238, 0.08);
}
.menu-category-alt .menu-item-tags span {
  border-color: rgba(246, 243, 238, 0.18);
}

.menu-cat-head { margin-bottom: 48px; max-width: 720px; }
.menu-cat-head .eyebrow { margin-bottom: 12px; }
.menu-cat-h {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 56px;
  line-height: 0.94;
  letter-spacing: var(--tr-display);
  margin: 0 0 14px;
}
.menu-cat-sub {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.75;
  max-width: 560px;
  margin: 0;
}

/* Item grid */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.menu-grid-tight { grid-template-columns: repeat(4, 1fr); }

.menu-item {
  background: var(--cream-warm);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--dur-fast) var(--ease-out);
  border: 1px solid var(--cream-deep);
}
.menu-item:hover { transform: translateY(-4px); }
.menu-item-photo {
  position: relative;
  aspect-ratio: 5/4;
  overflow: hidden;
  background: var(--ink-deep);
}
.menu-item-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-base) var(--ease-out);
}
.menu-item:hover .menu-item-photo img { transform: scale(1.04); }
.menu-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  background: var(--cream-warm);
  color: var(--ink);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  z-index: 2;
}
.menu-tag-warm { background: var(--brand); color: var(--ink); }
.menu-item-body {
  padding: 18px 20px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.menu-item-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}
.menu-item-head h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -0.015em;
  margin: 0;
}
.menu-item-price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 17px;
  color: var(--brand);
  letter-spacing: -0.01em;
  flex-shrink: 0;
}
.menu-item-desc {
  font-size: 12.5px;
  line-height: 1.55;
  opacity: 0.72;
  margin: 0 0 12px;
  flex: 1;
}
.menu-item-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 10px;
}
.menu-item-tags span {
  font-size: 9px;
  letter-spacing: 0.08em;
  padding: 3px 8px;
  border: 1px solid var(--cream-deep);
  border-radius: 999px;
  opacity: 0.7;
  text-transform: uppercase;
}
.menu-item-allergens {
  font-size: 10px;
  opacity: 0.55;
  letter-spacing: 0.04em;
  padding-top: 10px;
  border-top: 1px solid var(--cream-deep);
}

/* Side variants (no photo for extras) */
.menu-item-side .menu-item-photo { aspect-ratio: 4/3; }
.menu-item-extra .menu-item-body {
  padding: 22px 20px;
  justify-content: center;
}

/* Allergens section */
.menu-allergens {
  background: var(--ink-deep);
  color: var(--cream);
  padding: 100px var(--section-pad-x);
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: start;
}
.menu-allergens-head .eyebrow { margin-bottom: 12px; }
.menu-allergens-h {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 40px;
  line-height: 1;
  letter-spacing: var(--tr-display);
  margin: 0;
}
.menu-allergens-body p {
  font-size: 15px;
  line-height: 1.7;
  opacity: 0.85;
  margin: 0 0 16px;
  max-width: 640px;
}
.menu-allergens-callout {
  margin-top: 28px;
  padding: 22px 26px;
  background: rgba(219, 148, 35, 0.08);
  border: 1px solid rgba(219, 148, 35, 0.3);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 520px;
}
.menu-allergens-callout-label {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand);
  font-weight: 600;
}
.menu-allergens-callout-phones {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  font-size: 14px;
}
.menu-allergens-callout-phones b {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--brand);
  margin-right: 6px;
}

/* Order CTA */
.menu-order-cta {
  background: var(--cream);
  color: var(--ink);
  padding: 120px var(--section-pad-x);
  text-align: center;
}
.menu-order-inner { max-width: 720px; margin: 0 auto; }
.menu-order-inner .eyebrow {
  margin-bottom: 14px;
  justify-content: center;
}
.menu-order-h {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 60px;
  letter-spacing: var(--tr-display);
  margin: 0 0 18px;
}
.menu-order-sub {
  font-size: 15px;
  line-height: 1.65;
  opacity: 0.75;
  margin: 0 0 30px;
}
.menu-order-apps {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 26px;
}
.menu-order-apps .app-chip {
  border-color: rgba(29, 29, 35, 0.15);
  color: var(--ink);
}
.menu-order-apps .app-chip:hover {
  border-color: var(--brand);
  background: rgba(219, 148, 35, 0.08);
}
.menu-order-or { margin-top: 12px; }

/* Mobile */
@media (max-width: 900px) {
  .menu-nav-inner { gap: 18px; padding: 12px var(--section-pad-x); }
  .menu-nav-link { font-size: 12px; }
  .menu-nav-spacer { display: none; }

  .menu-category, .menu-category-alt { padding: 60px var(--section-pad-x); }
  .menu-cat-h { font-size: 32px; }

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

  .menu-allergens { grid-template-columns: 1fr; gap: 24px; padding: 60px var(--section-pad-x); }
  .menu-allergens-h { font-size: 28px; }
  .menu-allergens-callout-phones { flex-direction: column; gap: 6px; }

  .menu-order-cta { padding: 60px var(--section-pad-x); }
  .menu-order-h { font-size: 36px; }
}

/* === SHARED · Sub-page hero === */
.page-hero {
  position: relative;
  min-height: 100vh;
  background: var(--ink-deep);
  color: var(--cream);
  overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 70% 55%, rgba(196, 104, 42, 0.30) 0%, transparent 60%),
    linear-gradient(135deg, #2a1e16 0%, #1a1410 50%, #0d0a08 100%);
  z-index: 0;
}
.page-hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 75% center;
  z-index: 1;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg,
      rgba(13, 10, 8, 0.7) 0%,
      rgba(13, 10, 8, 0.45) 22%,
      rgba(13, 10, 8, 0.18) 40%,
      transparent 60%
    ),
    linear-gradient(180deg,
      transparent 0%,
      transparent 78%,
      rgba(13, 10, 8, 0.4) 94%,
      rgba(13, 10, 8, 0.75) 100%
    );
  z-index: 2;
  pointer-events: none;
}
.page-hero-corner {
  position: absolute;
  top: 90px; right: var(--section-pad-x);
  color: var(--cream);
  opacity: 0.55;
  font-family: var(--font-body);
  font-size: var(--t-micro);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  z-index: 4;
}
.page-hero-text {
  position: absolute;
  left: var(--section-pad-x);
  top: 24%;
  max-width: 52%;
  z-index: 3;
}
.page-hero-h-line { display: block; }
.page-hero-h-accent { color: var(--brand); }
.page-hero-text .eyebrow { margin-bottom: 18px; }
.page-hero-h {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--t-hero);
  line-height: 0.92;
  letter-spacing: var(--tr-display);
  margin: 0 0 22px;
}
.page-hero-sub {
  font-size: 15px;
  line-height: 1.65;
  max-width: 480px;
  opacity: 0.82;
  margin: 0;
}
/* Active nav state */
.primary-nav a.is-current { color: var(--brand); opacity: 1; }

/* === /about-us — Chef Kim section === */
.about-kim {
  background: var(--cream);
  color: var(--ink);
  padding: 100px var(--section-pad-x);
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: center;
}
.about-kim-portrait {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 14px;
  max-width: 480px;
}
.about-kim-portrait img { width: 100%; height: 100%; object-fit: cover; }
.about-kim-body .eyebrow { margin-bottom: 16px; }
.about-kim-h {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 52px;
  line-height: 0.96;
  letter-spacing: -0.03em;
  margin: 0 0 32px;
}
.about-kim-quote {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  line-height: 1.5;
  color: var(--ink);
  opacity: 0.85;
  margin: 0 0 28px;
  max-width: 640px;
}
.about-kim-sign {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.6;
}
.about-kim-sign b {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--brand);
  margin-right: 6px;
}

/* === Pillars === */
.about-pillars {
  background: var(--ink-deep);
  color: var(--cream);
  padding: 120px var(--section-pad-x);
}
.about-pillars-head { margin-bottom: 60px; max-width: 720px; }
.about-pillars-head .eyebrow { margin-bottom: 14px; }
.about-pillars-h {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--t-h2);
  line-height: 0.94;
  letter-spacing: var(--tr-display);
  margin: 0;
}
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px 48px;
}
.pillar { padding: 28px 0; border-top: 1px solid rgba(246, 243, 238, 0.12); }
.pillar-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 12px;
  color: var(--brand);
  letter-spacing: 0.05em;
  margin-bottom: 14px;
}
.pillar-h {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
}
.pillar p { font-size: 14.5px; line-height: 1.7; opacity: 0.78; margin: 0; max-width: 480px; }

/* === Timeline === */
.about-timeline {
  background: var(--cream);
  color: var(--ink);
  padding: 120px var(--section-pad-x);
}
.about-timeline-head { margin-bottom: 56px; max-width: 720px; }
.about-timeline-h {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--t-h2);
  letter-spacing: var(--tr-display);
  margin: 0;
}
.timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 100px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: linear-gradient(180deg, var(--brand) 0%, rgba(219, 148, 35, 0.15) 100%);
}
.timeline-step {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 56px;
  padding: 18px 0 32px;
  position: relative;
}
.timeline-step::before {
  content: '';
  position: absolute;
  left: 94px;
  top: 28px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 4px var(--cream), 0 0 0 5px rgba(219, 148, 35, 0.3);
}
.timeline-year {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--brand);
  padding-top: 16px;
}
.timeline-body h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
  line-height: 1.2;
  max-width: 560px;
}
.timeline-body p {
  font-size: 14.5px;
  line-height: 1.7;
  opacity: 0.72;
  margin: 0;
  max-width: 620px;
}

/* === Team === */
.about-team {
  background: var(--ink-deep);
  color: var(--cream);
  padding: 100px var(--section-pad-x);
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: center;
}
.about-team-head .eyebrow { margin-bottom: 14px; }
.about-team-h {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 44px;
  line-height: 0.96;
  letter-spacing: -0.03em;
  margin: 0 0 22px;
}
.about-team-sub {
  font-size: 14.5px;
  line-height: 1.7;
  opacity: 0.78;
  max-width: 440px;
  margin: 0;
}
.about-team-photo {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  border-radius: 18px;
}
.about-team-photo img { width: 100%; height: 100%; object-fit: cover; }

/* === Pre-footer CTA === */
.about-cta {
  background: var(--cream);
  color: var(--ink);
  padding: 120px var(--section-pad-x);
  text-align: center;
}
.about-cta-inner { max-width: 640px; margin: 0 auto; }
.about-cta-inner .eyebrow {
  margin-bottom: 14px;
  justify-content: center;
}
.about-cta-h {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 64px;
  letter-spacing: var(--tr-display);
  margin: 0 0 18px;
}
.about-cta-sub {
  font-size: 15px;
  line-height: 1.65;
  opacity: 0.75;
  margin: 0 0 32px;
}
.about-cta-ctas {
  display: inline-flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

/* === Mobile overrides for sub-pages === */
@media (max-width: 900px) {
  .page-hero-text { max-width: none; right: var(--section-pad-x); top: 18%; }
  .page-hero-photo { width: 100%; opacity: 1; }
  .page-hero-overlay {
    background: linear-gradient(180deg,
      transparent 0%,
      transparent 30%,
      rgba(13, 10, 8, 0.6) 55%,
      rgba(13, 10, 8, 0.92) 82%,
      rgba(13, 10, 8, 0.98) 100%);
  }
  .page-hero-corner { display: none; }

  .about-kim { grid-template-columns: 1fr; gap: 32px; padding: 60px var(--section-pad-x); }
  .about-kim-portrait { max-width: none; aspect-ratio: 4/3; }
  .about-kim-h { font-size: 32px; }
  .about-kim-quote { font-size: 18px; }

  .about-pillars { padding: 60px var(--section-pad-x); }
  .pillar-grid { grid-template-columns: 1fr; gap: 8px; }
  .pillar-h { font-size: 22px; }

  .about-timeline { padding: 60px var(--section-pad-x); }
  .timeline::before { left: 60px; }
  .timeline-step { grid-template-columns: 60px 1fr; gap: 24px; }
  .timeline-step::before { left: 54px; }
  .timeline-year { font-size: 16px; padding-top: 12px; }
  .timeline-body h3 { font-size: 18px; }

  .about-team { grid-template-columns: 1fr; gap: 28px; padding: 60px var(--section-pad-x); }
  .about-team-h { font-size: 30px; }

  .about-cta { padding: 60px var(--section-pad-x); }
  .about-cta-h { font-size: 36px; }
}

/* === /location === */

/* Hero jump links inside the page-hero block */
.page-hero-jump {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.page-hero-jump .cta-ghost { border-color: rgba(246, 243, 238, 0.3); }

/* Hours strip */
.loc-hours-strip {
  background: var(--ink-deep);
  color: var(--cream);
  padding: 28px var(--section-pad-x);
  border-top: 1px solid rgba(246, 243, 238, 0.08);
  border-bottom: 1px solid rgba(246, 243, 238, 0.08);
}
.loc-hours-strip-inner {
  display: flex;
  gap: 48px;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1440px;
  margin: 0 auto;
}
.loc-hours-block { display: flex; flex-direction: column; gap: 4px; }
.loc-hours-label {
  font-family: var(--font-body);
  font-size: var(--t-micro);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.5;
}
.loc-hours-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.01em;
}

/* Per-location detail section */
.loc-detail {
  background: var(--cream);
  color: var(--ink);
  padding: 100px var(--section-pad-x) 80px;
}
.loc-detail-alt {
  background: var(--ink-deep);
  color: var(--cream);
}
.loc-detail-alt .loc-info-list dt { color: var(--brand); }
.loc-detail-alt .loc-info-list dd { color: var(--cream); }
.loc-detail-alt .loc-info-list dd a { color: var(--cream); border-bottom-color: rgba(246, 243, 238, 0.25); }
.loc-detail-alt .loc-info-list dd a:hover { color: var(--brand); border-bottom-color: var(--brand); }
.loc-detail-alt .loc-info-row { border-color: rgba(246, 243, 238, 0.1); }
.loc-detail-alt .loc-photo figcaption { color: rgba(246, 243, 238, 0.55); }
.loc-detail-alt .loc-nearby-list li { color: rgba(246, 243, 238, 0.78); }
.loc-detail-alt .loc-nearby-list li b { color: var(--brand); }

.loc-detail-head { margin-bottom: 48px; max-width: 760px; }
.loc-detail-marker {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 12px;
  color: var(--brand);
  letter-spacing: 0.06em;
  margin-bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.loc-detail-marker::after {
  content: '';
  width: 60px;
  height: 1px;
  background: var(--brand);
  opacity: 0.4;
}
.loc-detail-h {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 64px;
  line-height: 0.94;
  letter-spacing: var(--tr-display);
  margin: 0;
}

/* Grid: photos left + info right (LES); flipped for Brooklyn */
.loc-detail-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 56px;
}
.loc-detail-grid-flip { grid-template-columns: 1fr 1.5fr; }

.loc-detail-photos {
  display: grid;
  grid-template-rows: 2fr 1fr;
  gap: 16px;
  min-height: 540px;
}
.loc-photo { margin: 0; position: relative; overflow: hidden; border-radius: 16px; }
.loc-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.loc-photo figcaption {
  position: absolute;
  left: 18px;
  bottom: 16px;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  padding: 6px 12px;
  background: rgba(13, 10, 8, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 999px;
}
.loc-photo-large { min-height: 360px; }
.loc-photo-small { min-height: 160px; }

/* Info aside */
.loc-detail-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 4px 0;
}
.loc-info-list {
  margin: 0;
  display: flex;
  flex-direction: column;
}
.loc-info-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--cream-deep);
}
.loc-info-row:last-child { border-bottom: none; }
.loc-info-list dt {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--charcoal);
  opacity: 0.7;
}
.loc-info-list dd {
  margin: 0;
  font-family: var(--font-body);
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink);
}
.loc-info-list dd b {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--brand);
  letter-spacing: -0.01em;
}
.loc-info-list dd a {
  color: var(--ink);
  border-bottom: 1px solid var(--cream-deep);
  transition: border-color var(--dur-fast), color var(--dur-fast);
}
.loc-info-list dd a:hover { color: var(--brand); border-bottom-color: var(--brand); }

/* MTA-colored subway badges in info dd */
.loc-train {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  font-family: Helvetica, sans-serif;
  font-weight: 800;
  font-size: 12px;
  color: #fff;
  margin-right: 8px;
  vertical-align: -3px;
}
.loc-train.F { background: #ff6319; }
.loc-train.J, .loc-train.Z { background: #996633; }
.loc-train.A, .loc-train.C { background: #0039a6; }
.loc-train.R { background: #fccc0a; color: var(--ink); }

.loc-info-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }

/* Nearby */
.loc-nearby {
  padding-top: 28px;
  border-top: 1px solid var(--cream-deep);
}
.loc-detail-alt .loc-nearby { border-top-color: rgba(246, 243, 238, 0.12); }
.loc-nearby .eyebrow { margin-bottom: 16px; }
.loc-nearby-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 36px;
  margin: 0;
  padding: 0;
  list-style: none;
  max-width: 880px;
}
.loc-nearby-list li {
  font-size: 14px;
  line-height: 1.5;
  opacity: 0.82;
}
.loc-nearby-list li b {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--brand);
  margin-right: 8px;
  font-size: 13px;
  letter-spacing: 0.04em;
}

/* Pre-footer CTA */
.loc-cta {
  background: var(--cream);
  color: var(--ink);
  padding: 120px var(--section-pad-x);
  text-align: center;
}
.loc-cta-inner { max-width: 720px; margin: 0 auto; }
.loc-cta-inner .eyebrow {
  margin-bottom: 14px;
  justify-content: center;
}
.loc-cta-h {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 60px;
  letter-spacing: var(--tr-display);
  margin: 0 0 18px;
}
.loc-cta-sub {
  font-size: 15px;
  line-height: 1.65;
  opacity: 0.75;
  margin: 0 0 30px;
}
.loc-cta-apps {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 26px;
}
.loc-cta-apps .app-chip { border-color: rgba(29, 29, 35, 0.15); color: var(--ink); }
.loc-cta-apps .app-chip:hover { border-color: var(--brand); background: rgba(219, 148, 35, 0.08); }
.loc-cta-or { margin-top: 12px; }

/* Mobile */
@media (max-width: 900px) {
  .loc-hours-strip { padding: 22px var(--section-pad-x); }
  .loc-hours-strip-inner { gap: 24px; }
  .loc-hours-value { font-size: 14px; }

  .loc-detail { padding: 60px var(--section-pad-x); }
  .loc-detail-h { font-size: 36px; }

  .loc-detail-grid, .loc-detail-grid-flip {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .loc-detail-grid-flip .loc-detail-photos { order: 1; }
  .loc-detail-grid-flip .loc-detail-info { order: 2; }

  .loc-detail-photos {
    grid-template-rows: auto auto;
    min-height: 0;
  }
  .loc-photo-large { aspect-ratio: 16/10; min-height: 0; }
  .loc-photo-small { aspect-ratio: 16/10; min-height: 0; }

  .loc-info-row { grid-template-columns: 80px 1fr; gap: 16px; padding: 14px 0; }
  .loc-info-list dt { font-size: 10px; letter-spacing: 0.18em; }

  .loc-nearby-list { grid-template-columns: 1fr; gap: 8px; }

  .loc-cta { padding: 60px var(--section-pad-x); }
  .loc-cta-h { font-size: 36px; }
}

/* === /contact-us === */

/* Quick-pick contact strip */
.contact-quick {
  background: var(--cream);
  color: var(--ink);
  padding: 80px var(--section-pad-x);
}
.contact-quick-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.contact-quick-card {
  background: var(--cream-warm);
  border: 1px solid var(--cream-deep);
  border-radius: 16px;
  padding: 28px 30px 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform var(--dur-fast), border-color var(--dur-fast);
}
.contact-quick-card:hover { transform: translateY(-3px); border-color: rgba(219, 148, 35, 0.25); }
.contact-quick-label {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brand);
  font-weight: 600;
}
.contact-quick-h {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 26px;
  letter-spacing: -0.02em;
  margin: 0;
}
.contact-quick-sub {
  font-size: 13px;
  line-height: 1.55;
  opacity: 0.7;
  margin: 0;
  max-width: 320px;
}
.contact-quick-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}
.contact-quick-line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 10px 0;
  border-top: 1px solid var(--cream-deep);
  transition: color var(--dur-fast);
}
.contact-quick-line:hover { color: var(--brand); }
.cql-label {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.65;
}
.cql-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.01em;
}
.contact-quick-apps {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}
.contact-quick-apps .app-chip {
  border-color: rgba(29, 29, 35, 0.15);
  color: var(--ink);
  padding: 6px 12px;
  font-size: 11px;
}
.contact-quick-apps .app-chip:hover { border-color: var(--brand); background: rgba(219, 148, 35, 0.08); }

/* Form section */
.contact-form-section {
  background: var(--ink-deep);
  color: var(--cream);
  padding: 120px var(--section-pad-x);
}
.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
  max-width: 1300px;
  margin: 0 auto;
}
.contact-form-head .eyebrow { margin-bottom: 14px; }
.contact-form-h {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 52px;
  line-height: 0.96;
  letter-spacing: var(--tr-display);
  margin: 0 0 22px;
}
.contact-form-sub {
  font-size: 14.5px;
  line-height: 1.7;
  opacity: 0.78;
  margin: 0 0 36px;
  max-width: 440px;
}
.contact-form-side {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(246, 243, 238, 0.1);
}
.contact-side-block { display: flex; flex-direction: column; gap: 4px; }
.contact-side-label {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.5;
}
.contact-side-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.01em;
  color: var(--cream);
  border-bottom: 1px solid rgba(246, 243, 238, 0.18);
  display: inline-block;
  width: fit-content;
  padding-bottom: 2px;
  transition: color var(--dur-fast), border-color var(--dur-fast);
}
.contact-side-value:hover { color: var(--brand); border-bottom-color: var(--brand); }

/* The form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.contact-row-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.contact-field { display: flex; flex-direction: column; gap: 8px; }
.contact-field-label {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.55;
}
.contact-field input,
.contact-field select,
.contact-field textarea {
  background: transparent;
  border: none;
  border-bottom: 1.5px solid rgba(246, 243, 238, 0.18);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 15px;
  padding: 10px 0;
  outline: none;
  transition: border-color var(--dur-fast);
}
.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus { border-bottom-color: var(--brand); }
.contact-field textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}
.contact-field select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background-image: linear-gradient(45deg, transparent 50%, var(--brand) 50%), linear-gradient(135deg, var(--brand) 50%, transparent 50%);
  background-position: calc(100% - 18px) calc(50% - 1px), calc(100% - 13px) calc(50% - 1px);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 28px;
}
.contact-field select option { background: var(--ink-deep); color: var(--cream); }

.contact-radio-row { display: flex; flex-wrap: wrap; gap: 14px; padding-top: 6px; }
.contact-radio {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  padding: 8px 14px;
  border: 1px solid rgba(246, 243, 238, 0.15);
  border-radius: 999px;
  font-size: 13px;
  transition: border-color var(--dur-fast), background var(--dur-fast);
}
.contact-radio:has(input:checked) {
  border-color: var(--brand);
  background: rgba(219, 148, 35, 0.1);
  color: var(--brand);
}
.contact-radio input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.contact-form-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.contact-form-actions .cta-primary { border: none; cursor: pointer; }
.contact-form-note {
  font-size: 12px;
  opacity: 0.55;
  margin: 0;
  max-width: 280px;
  line-height: 1.5;
}

/* Allergen strip */
.contact-allergen-strip {
  background: var(--cream);
  color: var(--ink);
  padding: 100px var(--section-pad-x);
}
.contact-allergen-inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.contact-allergen-inner .eyebrow {
  margin-bottom: 14px;
  justify-content: center;
}
.contact-allergen-h {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 48px;
  letter-spacing: var(--tr-display);
  margin: 0 0 22px;
}
.contact-allergen-sub {
  font-size: 15px;
  line-height: 1.7;
  opacity: 0.78;
  margin: 0 0 36px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.contact-allergen-phones {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}
.contact-allergen-phone {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 28px;
  border: 1px solid rgba(29, 29, 35, 0.15);
  border-radius: 14px;
  transition: border-color var(--dur-fast), background var(--dur-fast);
}
.contact-allergen-phone:hover {
  border-color: var(--brand);
  background: rgba(219, 148, 35, 0.08);
}
.cap-label {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.65;
}
.cap-value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  color: var(--brand);
  letter-spacing: -0.01em;
}
.contact-allergen-link {
  font-size: 12px;
  opacity: 0.55;
  margin: 24px 0 0;
}
.contact-allergen-link a { color: var(--ink); text-decoration: underline; text-underline-offset: 4px; }
.contact-allergen-link a:hover { color: var(--brand); }

/* Mobile */
@media (max-width: 900px) {
  .contact-quick { padding: 50px var(--section-pad-x); }
  .contact-quick-inner { grid-template-columns: 1fr; gap: 14px; }
  .contact-quick-card { padding: 22px; }
  .contact-quick-h { font-size: 22px; }

  .contact-form-section { padding: 60px var(--section-pad-x); }
  .contact-form-grid { grid-template-columns: 1fr; gap: 36px; }
  .contact-form-h { font-size: 32px; }
  .contact-row-two { grid-template-columns: 1fr; }

  .contact-allergen-strip { padding: 60px var(--section-pad-x); }
  .contact-allergen-h { font-size: 28px; }
  .contact-allergen-phones { flex-direction: column; gap: 10px; }
}

/* === SHARED · Legal / info page pattern === */
.legal-hero {
  position: relative;
  background: var(--ink-deep);
  color: var(--cream);
  padding: 200px var(--section-pad-x) 80px;
  border-bottom: 1px solid rgba(246, 243, 238, 0.08);
}
.legal-hero .top-nav {
  position: absolute;
  top: 0; left: 0; right: 0;
}
.legal-hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 30%, rgba(196, 104, 42, 0.12) 0%, transparent 60%);
  pointer-events: none;
}
.legal-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}
.legal-hero-inner .eyebrow { margin-bottom: 14px; }
.legal-hero-h {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 64px;
  line-height: 0.94;
  letter-spacing: var(--tr-display);
  margin: 0 0 18px;
  max-width: 880px;
}
.legal-hero-sub {
  font-size: 15px;
  line-height: 1.65;
  opacity: 0.78;
  max-width: 640px;
  margin: 0 0 14px;
}
.legal-hero-meta {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.5;
  margin-top: 18px;
}

.legal-body {
  background: var(--cream);
  color: var(--ink);
  padding: 80px var(--section-pad-x) 120px;
}
.legal-body-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 80px;
  align-items: start;
}
.legal-toc {
  position: sticky;
  top: 24px;
  font-family: var(--font-body);
}
.legal-toc-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--charcoal);
  opacity: 0.6;
  margin-bottom: 18px;
  display: block;
}
.legal-toc ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.legal-toc a {
  font-size: 13px;
  line-height: 1.4;
  color: var(--ink);
  opacity: 0.7;
  display: flex;
  gap: 10px;
  transition: color var(--dur-fast), opacity var(--dur-fast);
  padding-left: 14px;
  border-left: 1px solid var(--cream-deep);
}
.legal-toc a:hover { opacity: 1; color: var(--brand); border-left-color: var(--brand); }
.legal-toc a.is-active {
  opacity: 1;
  color: var(--brand);
  border-left-color: var(--brand);
  font-weight: 600;
}
.legal-toc a b {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  opacity: 0.5;
  letter-spacing: 0.06em;
}

.legal-content {
  max-width: 720px;
  font-family: var(--font-body);
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--ink);
}
.legal-content h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 32px;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 56px 0 18px;
  scroll-margin-top: 24px;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content h2 .legal-num {
  display: inline-block;
  color: var(--brand);
  font-size: 18px;
  letter-spacing: 0.04em;
  vertical-align: 4px;
  margin-right: 14px;
}
.legal-content h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.01em;
  margin: 30px 0 10px;
}
.legal-content p { margin: 0 0 16px; opacity: 0.85; }
.legal-content p:last-child { margin-bottom: 0; }
.legal-content ul, .legal-content ol { margin: 0 0 18px 0; padding-left: 20px; }
.legal-content ul li, .legal-content ol li { margin-bottom: 6px; opacity: 0.85; }
.legal-content a {
  color: var(--ink);
  border-bottom: 1px solid var(--cream-deep);
  transition: color var(--dur-fast), border-color var(--dur-fast);
}
.legal-content a:hover { color: var(--brand); border-bottom-color: var(--brand); }
.legal-content b, .legal-content strong { color: var(--ink); font-weight: 600; }
.legal-content .legal-callout {
  background: rgba(219, 148, 35, 0.08);
  border-left: 3px solid var(--brand);
  padding: 18px 22px;
  border-radius: 0 8px 8px 0;
  margin: 24px 0;
}
.legal-content .legal-callout p { margin: 0; }

/* FAQ-specific accordion */
.faq-list { margin: 0; padding: 0; list-style: none; }
.faq-item {
  border-bottom: 1px solid var(--cream-deep);
  padding: 22px 0;
}
.faq-item:first-child { border-top: 1px solid var(--cream-deep); }
.faq-question {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.015em;
  line-height: 1.3;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  color: var(--ink);
  transition: color var(--dur-fast);
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
  content: '+';
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 26px;
  color: var(--brand);
  flex-shrink: 0;
  transition: transform var(--dur-fast);
  line-height: 0.8;
}
.faq-item[open] .faq-question { color: var(--brand); }
.faq-item[open] .faq-question::after { content: '–'; }
.faq-answer {
  font-size: 14.5px;
  line-height: 1.7;
  opacity: 0.8;
  padding-top: 14px;
  max-width: 640px;
}
.faq-answer p { margin: 0 0 12px; }
.faq-answer p:last-child { margin-bottom: 0; }

/* Allergen table */
.allergen-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
  margin: 24px 0;
}
.allergen-table thead th {
  text-align: left;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--charcoal);
  opacity: 0.7;
  padding: 10px 12px 10px 0;
  border-bottom: 1.5px solid var(--ink);
}
.allergen-table tbody td {
  padding: 12px 12px 12px 0;
  border-bottom: 1px solid var(--cream-deep);
  vertical-align: top;
}
.allergen-table tbody tr:hover { background: rgba(219, 148, 35, 0.04); }
.allergen-table .item-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.allergen-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 800;
  margin-right: 4px;
  color: #fff;
}
.allergen-mark.yes { background: var(--brand); }
.allergen-mark.no { background: rgba(29, 29, 35, 0.1); color: rgba(29, 29, 35, 0.4); }

/* Mobile */
@media (max-width: 900px) {
  .legal-hero { padding: 140px var(--section-pad-x) 50px; }
  .legal-hero-h { font-size: 36px; }
  .legal-body { padding: 40px var(--section-pad-x) 60px; }
  .legal-body-inner { grid-template-columns: 1fr; gap: 28px; }
  .legal-toc { position: static; }
  .legal-toc ol { flex-direction: row; flex-wrap: wrap; gap: 8px; }
  .legal-toc a {
    padding: 6px 12px;
    border-left: none;
    border: 1px solid var(--cream-deep);
    border-radius: 999px;
    font-size: 11px;
  }
  .legal-content h2 { font-size: 24px; margin-top: 36px; }
  .legal-content h2 .legal-num { font-size: 14px; margin-right: 10px; }
  .allergen-table { font-size: 12px; }
  .allergen-table thead th, .allergen-table tbody td { padding: 8px 6px; }
}

/* === /press === */
.press-hero { /* Reuses .legal-hero look, with subtle product photo overlay */
  position: relative;
  background: var(--ink-deep);
  color: var(--cream);
  padding: 200px var(--section-pad-x) 80px;
  overflow: hidden;
}
.press-hero .top-nav { position: absolute; top: 0; left: 0; right: 0; }
.press-hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 75% 50%, rgba(196, 104, 42, 0.20) 0%, transparent 55%),
    linear-gradient(135deg, #2a1e16 0%, #0d0a08 100%);
}
.press-hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 75% center;
  opacity: 1;
}
.press-hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg,
      rgba(13, 10, 8, 0.7) 0%,
      rgba(13, 10, 8, 0.45) 22%,
      rgba(13, 10, 8, 0.18) 40%,
      transparent 60%
    ),
    linear-gradient(180deg,
      transparent 0%,
      transparent 78%,
      rgba(13, 10, 8, 0.4) 94%,
      rgba(13, 10, 8, 0.75) 100%
    );
  pointer-events: none;
}
.press-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}
.press-hero-inner .eyebrow { margin-bottom: 14px; }
.press-hero-h {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 64px;
  line-height: 0.94;
  letter-spacing: var(--tr-display);
  margin: 0 0 18px;
  max-width: 760px;
}
.press-hero-sub {
  font-size: 15px;
  line-height: 1.65;
  opacity: 0.78;
  max-width: 560px;
  margin: 0;
}

.press-quotes {
  background: var(--cream);
  color: var(--ink);
  padding: 100px var(--section-pad-x);
}
.press-quotes-head { max-width: 720px; margin: 0 auto 48px; text-align: center; }
.press-quotes-head .eyebrow { justify-content: center; margin-bottom: 14px; }
.press-quotes-h {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 48px;
  letter-spacing: var(--tr-display);
  margin: 0;
}
.press-quote-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.press-quote-card {
  background: var(--cream-warm);
  border: 1px solid var(--cream-deep);
  border-radius: 16px;
  padding: 36px 36px 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.press-quote-mark {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 500;
  font-size: 60px;
  color: var(--brand);
  line-height: 0.4;
  height: 24px;
  margin-bottom: -10px;
}
.press-quote-text {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 24px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin: 0;
}
.press-quote-text em {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 500;
  color: var(--brand);
}
.press-quote-cite {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-top: auto;
}
.press-quote-cite b { color: var(--brand); font-weight: 700; margin-right: 8px; }

.press-kit {
  background: var(--ink-deep);
  color: var(--cream);
  padding: 100px var(--section-pad-x);
}
.press-kit-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.press-kit-head .eyebrow { margin-bottom: 14px; }
.press-kit-h {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 40px;
  letter-spacing: var(--tr-display);
  margin: 0 0 18px;
  line-height: 0.96;
}
.press-kit-sub {
  font-size: 14.5px;
  line-height: 1.7;
  opacity: 0.78;
  margin: 0;
}
.press-kit-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.press-kit-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 22px 24px;
  border: 1px solid rgba(246, 243, 238, 0.12);
  border-radius: 12px;
  background: rgba(246, 243, 238, 0.04);
  transition: border-color var(--dur-fast);
}
.press-kit-row:hover { border-color: var(--brand); }
.press-kit-row-info { display: flex; flex-direction: column; gap: 4px; }
.press-kit-row-info h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.01em;
  margin: 0;
}
.press-kit-row-info p {
  font-size: 12px;
  opacity: 0.6;
  margin: 0;
}
.press-kit-row .download-btn {
  padding: 10px 18px;
  background: var(--brand);
  color: var(--ink);
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.press-contact {
  background: var(--cream);
  color: var(--ink);
  padding: 100px var(--section-pad-x);
  text-align: center;
}
.press-contact-inner { max-width: 640px; margin: 0 auto; }
.press-contact-inner .eyebrow { justify-content: center; margin-bottom: 14px; }
.press-contact-h {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 44px;
  letter-spacing: var(--tr-display);
  margin: 0 0 22px;
}
.press-contact-email {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--brand);
  border-bottom: 1.5px solid var(--brand);
  padding-bottom: 4px;
  margin-top: 12px;
}
.press-contact-email:hover { color: var(--brand-hover); border-bottom-color: var(--brand-hover); }

/* === /career === */
.career-hero { /* uses page-hero pattern with team photo */ }

.career-values {
  background: var(--cream);
  color: var(--ink);
  padding: 100px var(--section-pad-x);
}
.career-values-head { max-width: 720px; margin: 0 auto 48px; text-align: center; }
.career-values-head .eyebrow { justify-content: center; margin-bottom: 14px; }
.career-values-h {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 52px;
  letter-spacing: var(--tr-display);
  margin: 0 0 18px;
}
.career-values-sub {
  font-size: 15px;
  line-height: 1.65;
  opacity: 0.75;
  margin: 0;
}
.career-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}
.career-value {
  border-top: 2px solid var(--brand);
  padding: 22px 0 0;
}
.career-value h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
}
.career-value p {
  font-size: 14px;
  line-height: 1.7;
  opacity: 0.78;
  margin: 0;
}

.career-openings {
  background: var(--ink-deep);
  color: var(--cream);
  padding: 100px var(--section-pad-x);
}
.career-openings-head { max-width: 720px; margin: 0 auto 48px; }
.career-openings-head .eyebrow { margin-bottom: 14px; }
.career-openings-h {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 48px;
  letter-spacing: var(--tr-display);
  margin: 0;
}
.career-openings-list {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.career-opening {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 24px 28px;
  border: 1px solid rgba(246, 243, 238, 0.12);
  border-radius: 14px;
  background: rgba(246, 243, 238, 0.03);
  transition: border-color var(--dur-fast), transform var(--dur-fast);
}
.career-opening:hover { border-color: var(--brand); transform: translateX(4px); }
.career-opening-info { display: flex; flex-direction: column; gap: 6px; }
.career-opening-info h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.01em;
  margin: 0;
}
.career-opening-meta {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 12px;
  opacity: 0.7;
  letter-spacing: 0.04em;
}
.career-opening-meta span b { color: var(--brand); font-family: var(--font-display); font-weight: 700; margin-right: 4px; }
.career-opening-apply {
  padding: 11px 22px;
  background: var(--brand);
  color: var(--ink);
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
}
.career-empty {
  text-align: center;
  padding: 40px 20px;
  opacity: 0.6;
  font-size: 14px;
}
.career-empty b {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--brand);
  display: block;
  font-size: 18px;
  margin-bottom: 6px;
}

.career-spec-app {
  background: var(--cream);
  color: var(--ink);
  padding: 100px var(--section-pad-x);
  text-align: center;
}
.career-spec-app-inner { max-width: 640px; margin: 0 auto; }
.career-spec-app-inner .eyebrow { justify-content: center; margin-bottom: 14px; }
.career-spec-app-h {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 44px;
  letter-spacing: var(--tr-display);
  margin: 0 0 18px;
}
.career-spec-app-sub {
  font-size: 15px;
  line-height: 1.65;
  opacity: 0.75;
  margin: 0 0 28px;
}

/* Mobile */
@media (max-width: 900px) {
  .press-hero { padding: 140px var(--section-pad-x) 50px; }
  .press-hero-h { font-size: 36px; }
  .press-hero-photo { width: 100%; opacity: 0.2; }
  .press-quotes, .press-kit, .press-contact { padding: 60px var(--section-pad-x); }
  .press-quote-grid { grid-template-columns: 1fr; }
  .press-quotes-h { font-size: 30px; }
  .press-kit-inner { grid-template-columns: 1fr; gap: 28px; }
  .press-kit-h { font-size: 28px; }
  .press-contact-h { font-size: 30px; }

  .career-values, .career-openings, .career-spec-app { padding: 60px var(--section-pad-x); }
  .career-values-h { font-size: 32px; }
  .career-values-grid { grid-template-columns: 1fr; gap: 22px; }
  .career-openings-h { font-size: 30px; }
  .career-opening { grid-template-columns: 1fr; gap: 14px; }
  .career-opening-apply { width: fit-content; }
  .career-spec-app-h { font-size: 28px; }
}

/* === /order-les & /order-brooklyn === */
.order-page-hero {
  position: relative;
  min-height: 80vh;
  background: var(--ink-deep);
  color: var(--cream);
  overflow: hidden;
}
.order-page-hero .top-nav { position: relative; z-index: 5; }
.order-page-hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 75% 60%, rgba(196, 104, 42, 0.22) 0%, transparent 60%),
    linear-gradient(135deg, #2a1e16 0%, #0d0a08 100%);
  z-index: 0;
}
.order-page-hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 75% center;
  opacity: 1;
  z-index: 1;
}
.order-page-hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg,
      rgba(13, 10, 8, 0.7) 0%,
      rgba(13, 10, 8, 0.45) 22%,
      rgba(13, 10, 8, 0.18) 40%,
      transparent 60%
    ),
    linear-gradient(180deg,
      transparent 0%,
      transparent 78%,
      rgba(13, 10, 8, 0.4) 94%,
      rgba(13, 10, 8, 0.75) 100%
    );
  z-index: 2;
  pointer-events: none;
}
.order-page-hero-inner {
  position: relative;
  z-index: 4;
  padding: 80px var(--section-pad-x);
  max-width: 1200px;
  margin: 0 auto;
}
.order-loc-marker {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 12px;
  color: var(--brand);
  letter-spacing: 0.06em;
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.order-loc-marker::after {
  content: '';
  width: 50px;
  height: 1px;
  background: var(--brand);
  opacity: 0.5;
}
.order-page-hero-h {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 80px;
  line-height: 0.94;
  letter-spacing: var(--tr-display);
  margin: 0 0 22px;
}
.order-page-hero-sub {
  font-size: 15px;
  line-height: 1.65;
  opacity: 0.78;
  max-width: 560px;
  margin: 0 0 22px;
}
.order-page-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  font-size: 13px;
  margin-top: 14px;
}
.order-page-hero-meta span {
  display: flex;
  align-items: baseline;
  gap: 8px;
  opacity: 0.85;
}
.order-page-hero-meta span b {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.55;
  font-weight: 600;
}

/* App tiles */
.order-apps-section {
  background: var(--cream);
  color: var(--ink);
  padding: 100px var(--section-pad-x);
}
.order-apps-head { max-width: 880px; margin: 0 auto 48px; text-align: center; }
.order-apps-head .eyebrow { justify-content: center; margin-bottom: 14px; }
.order-apps-h {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 48px;
  letter-spacing: var(--tr-display);
  margin: 0;
}
.order-apps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1100px;
  margin: 0 auto;
}
.order-app-tile {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 32px 28px;
  background: var(--cream-warm);
  border: 1px solid var(--cream-deep);
  border-radius: 16px;
  transition: transform var(--dur-fast), border-color var(--dur-fast), box-shadow var(--dur-fast);
}
.order-app-tile:hover {
  transform: translateY(-4px);
  border-color: var(--brand);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.08);
}
.order-app-mark {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  color: #fff;
  letter-spacing: -0.02em;
}
.order-app-mark.mark-doordash { background: #eb1700; }
.order-app-mark.mark-grubhub { background: #f63440; }
.order-app-mark.mark-postmates { background: #000; }
.order-app-mark.mark-uber { background: #000; }
.order-app-mark.mark-deliv { background: var(--ink); color: var(--brand); }
.order-app-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.01em;
  margin: 0;
}
.order-app-eta {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.6;
}
.order-app-eta b { color: var(--brand); font-family: var(--font-display); font-weight: 700; margin-right: 6px; }
.order-app-cta {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--cream-deep);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  color: var(--ink);
}
.order-app-cta::after {
  content: '→';
  color: var(--brand);
  font-size: 18px;
  transition: transform var(--dur-fast);
}
.order-app-tile:hover .order-app-cta::after { transform: translateX(4px); }

/* Pickup callout */
.order-pickup {
  background: var(--ink-deep);
  color: var(--cream);
  padding: 80px var(--section-pad-x);
}
.order-pickup-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: center;
}
.order-pickup-head .eyebrow { margin-bottom: 14px; }
.order-pickup-h {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 44px;
  letter-spacing: var(--tr-display);
  margin: 0 0 18px;
  line-height: 0.96;
}
.order-pickup-sub {
  font-size: 14.5px;
  line-height: 1.7;
  opacity: 0.78;
  margin: 0;
}
.order-pickup-actions {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.order-pickup-call {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 22px 26px;
  background: rgba(246, 243, 238, 0.04);
  border: 1px solid rgba(246, 243, 238, 0.12);
  border-radius: 14px;
  transition: border-color var(--dur-fast), background var(--dur-fast);
}
.order-pickup-call:hover { border-color: var(--brand); background: rgba(219, 148, 35, 0.08); }
.order-pickup-call-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--brand);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
}
.order-pickup-call-info { display: flex; flex-direction: column; gap: 4px; }
.order-pickup-call-info b {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--cream);
  letter-spacing: -0.01em;
}
.order-pickup-call-info span {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.55;
}
.order-pickup-call-cta {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  color: var(--brand);
}

/* Cross-shop link */
.order-other {
  background: var(--cream);
  color: var(--ink);
  padding: 70px var(--section-pad-x);
  text-align: center;
  border-top: 1px solid var(--cream-deep);
}
.order-other-h {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.01em;
  margin: 0 0 16px;
}
.order-other p {
  font-size: 14px;
  opacity: 0.65;
  margin: 0 0 20px;
}

/* Mobile */
@media (max-width: 900px) {
  .order-page-hero-inner { padding: 50px var(--section-pad-x); }
  .order-page-hero-h { font-size: 44px; }
  .order-page-hero-photo { width: 100%; opacity: 0.3; }

  .order-apps-section { padding: 60px var(--section-pad-x); }
  .order-apps-h { font-size: 30px; }
  .order-apps-grid { grid-template-columns: 1fr; gap: 12px; }

  .order-pickup { padding: 50px var(--section-pad-x); }
  .order-pickup-inner { grid-template-columns: 1fr; gap: 24px; }
  .order-pickup-h { font-size: 28px; }

  .order-other { padding: 40px var(--section-pad-x); }
}


/* === /gallery === */
.gallery-hero {
  position: relative;
  background: var(--ink-deep);
  color: var(--cream);
  padding: 180px var(--section-pad-x) 60px;
  overflow: hidden;
}
.gallery-hero .top-nav { position: absolute; top: 0; left: 0; right: 0; }
.gallery-hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(196, 104, 42, 0.13) 0%, transparent 70%);
}
.gallery-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}
.gallery-hero-inner .eyebrow { margin-bottom: 14px; }
.gallery-hero-h {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 64px;
  line-height: 0.94;
  letter-spacing: var(--tr-display);
  margin: 0 0 18px;
}
.gallery-hero-sub {
  font-size: 15px;
  line-height: 1.65;
  opacity: 0.78;
  max-width: 560px;
  margin: 0;
}

.gallery-grid-section {
  background: var(--cream);
  color: var(--ink);
  padding: 60px var(--section-pad-x) 100px;
}
.gallery-grid {
  column-count: 4;
  column-gap: 14px;
  max-width: 1400px;
  margin: 0 auto;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 14px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  display: block;
  background: var(--cream-deep);
  transition: transform var(--dur-fast), box-shadow var(--dur-fast);
}
.gallery-item:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(0, 0, 0, 0.10); }
.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform var(--dur-base) var(--ease-out);
}
.gallery-item:hover img { transform: scale(1.03); }
.gallery-item-caption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 6px 12px;
  background: rgba(13, 10, 8, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: 999px;
  opacity: 0;
  transition: opacity var(--dur-fast);
}
.gallery-item:hover .gallery-item-caption { opacity: 1; }

/* Specific aspect treatment per item via inline height for variety */
.gallery-item-tall { aspect-ratio: 3/4; }
.gallery-item-wide { aspect-ratio: 4/3; }
.gallery-item-square { aspect-ratio: 1/1; }
.gallery-item-tall img,
.gallery-item-wide img,
.gallery-item-square img {
  width: 100%; height: 100%; object-fit: cover;
}

@media (max-width: 1100px) { .gallery-grid { column-count: 3; } }
@media (max-width: 800px) { .gallery-grid { column-count: 2; } }
@media (max-width: 500px) { .gallery-grid { column-count: 1; } }


/* === /gifts === */
.gifts-hero {
  position: relative;
  background: var(--ink-deep);
  color: var(--cream);
  padding: 180px var(--section-pad-x) 60px;
  overflow: hidden;
}
.gifts-hero .top-nav { position: absolute; top: 0; left: 0; right: 0; }
.gifts-hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 75% 50%, rgba(196, 104, 42, 0.22) 0%, transparent 60%),
    linear-gradient(135deg, #2a1e16 0%, #0d0a08 100%);
}
.gifts-hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 75% center;
  opacity: 1;
}
.gifts-hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg,
      rgba(13, 10, 8, 0.7) 0%,
      rgba(13, 10, 8, 0.45) 22%,
      rgba(13, 10, 8, 0.18) 40%,
      transparent 60%
    ),
    linear-gradient(180deg,
      transparent 0%,
      transparent 78%,
      rgba(13, 10, 8, 0.4) 94%,
      rgba(13, 10, 8, 0.75) 100%
    );
  pointer-events: none;
}
.gifts-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}
.gifts-hero-inner .eyebrow { margin-bottom: 14px; }
.gifts-hero-h {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 72px;
  line-height: 0.94;
  letter-spacing: var(--tr-display);
  margin: 0 0 18px;
}
.gifts-hero-sub {
  font-size: 15px;
  line-height: 1.65;
  opacity: 0.78;
  max-width: 540px;
  margin: 0;
}

.gifts-denominations {
  background: var(--cream);
  color: var(--ink);
  padding: 100px var(--section-pad-x);
}
.gifts-denominations-head { max-width: 880px; margin: 0 auto 48px; text-align: center; }
.gifts-denominations-head .eyebrow { justify-content: center; margin-bottom: 14px; }
.gifts-denominations-h {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 48px;
  letter-spacing: var(--tr-display);
  margin: 0 0 16px;
}
.gifts-denominations-sub {
  font-size: 14.5px;
  line-height: 1.7;
  opacity: 0.75;
  margin: 0;
}
.gifts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 1200px;
  margin: 0 auto;
}
.gift-card {
  background: linear-gradient(135deg, var(--ink) 0%, #2a1e16 100%);
  color: var(--cream);
  border-radius: 18px;
  padding: 32px 28px 28px;
  position: relative;
  overflow: hidden;
  transition: transform var(--dur-fast);
  display: flex;
  flex-direction: column;
  min-height: 240px;
}
.gift-card:hover { transform: translateY(-4px) rotate(-1deg); }
.gift-card::before {
  content: '';
  position: absolute;
  right: -20%;
  top: -20%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(219, 148, 35, 0.4) 0%, transparent 70%);
  pointer-events: none;
}
.gift-card-jp {
  position: absolute;
  right: 20px;
  bottom: 20px;
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 14px;
  color: var(--brand);
  opacity: 0.45;
  letter-spacing: 0.3em;
}
.gift-card-eyebrow {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 12px;
  font-weight: 600;
}
.gift-card-amount {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 64px;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--cream);
  margin: 0 0 6px;
}
.gift-card-amount sup {
  font-size: 26px;
  font-weight: 700;
  color: var(--brand);
  vertical-align: 0.7em;
  margin-right: 4px;
}
.gift-card-desc {
  font-size: 12.5px;
  opacity: 0.7;
  line-height: 1.5;
  margin: 0 0 16px;
  max-width: 90%;
}
.gift-card-cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  color: var(--brand);
  letter-spacing: 0.02em;
}
.gift-card.custom {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-warm) 100%);
  color: var(--ink);
}
.gift-card.custom .gift-card-eyebrow { color: var(--ink); opacity: 0.7; }
.gift-card.custom .gift-card-amount { color: var(--ink); font-size: 36px; line-height: 1.05; }
.gift-card.custom .gift-card-desc { color: var(--ink); opacity: 0.8; }
.gift-card.custom .gift-card-cta { color: var(--ink); }
.gift-card.custom::before { background: radial-gradient(circle, rgba(255, 255, 255, 0.35) 0%, transparent 70%); }

.gifts-how {
  background: var(--ink-deep);
  color: var(--cream);
  padding: 100px var(--section-pad-x);
}
.gifts-how-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: start;
}
.gifts-how-head .eyebrow { margin-bottom: 14px; }
.gifts-how-h {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 40px;
  letter-spacing: var(--tr-display);
  line-height: 0.96;
  margin: 0;
}
.gifts-how-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.gifts-how-step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  align-items: start;
  padding: 22px 24px;
  border: 1px solid rgba(246, 243, 238, 0.12);
  border-radius: 14px;
  background: rgba(246, 243, 238, 0.04);
}
.gifts-how-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 32px;
  color: var(--brand);
  line-height: 1;
  letter-spacing: -0.02em;
}
.gifts-how-step h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
  margin: 0 0 6px;
}
.gifts-how-step p {
  font-size: 13.5px;
  line-height: 1.65;
  opacity: 0.78;
  margin: 0;
}


/* === /shop === */
.shop-hero {
  position: relative;
  min-height: 100vh;
  background: var(--ink-deep);
  color: var(--cream);
  overflow: hidden;
}
.shop-hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(196, 104, 42, 0.20) 0%, transparent 65%),
    radial-gradient(ellipse at 30% 80%, rgba(219, 148, 35, 0.12) 0%, transparent 70%),
    linear-gradient(180deg, #1a1410 0%, #0a0706 100%);
}
.shop-hero-grain {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(0deg, transparent 0, transparent 2px, rgba(255,255,255,0.012) 3px);
  pointer-events: none;
}
.shop-hero-inner {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 100px var(--section-pad-x);
  text-align: center;
}
.shop-hero-content { max-width: 720px; }
.shop-jp-mark {
  display: block;
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 80px;
  color: var(--brand);
  opacity: 0.85;
  letter-spacing: 0.3em;
  margin-bottom: 24px;
  line-height: 1;
}
.shop-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--brand);
  opacity: 0.85;
  margin-bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.shop-eyebrow::before, .shop-eyebrow::after {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--brand);
  opacity: 0.5;
}
.shop-h {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 96px;
  line-height: 0.92;
  letter-spacing: -0.04em;
  margin: 0 0 28px;
}
.shop-h em {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 500;
  color: var(--brand);
}
.shop-sub {
  font-size: 17px;
  line-height: 1.6;
  opacity: 0.82;
  max-width: 560px;
  margin: 0 auto 36px;
}
.shop-notify-form {
  display: flex;
  align-items: center;
  gap: 0;
  max-width: 440px;
  margin: 0 auto;
  border-bottom: 1.5px solid rgba(246, 243, 238, 0.3);
  padding-bottom: 10px;
}
.shop-notify-form input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 15px;
  padding: 8px 0;
  outline: none;
  text-align: left;
}
.shop-notify-form input::placeholder { color: rgba(246, 243, 238, 0.4); }
.shop-notify-form button {
  background: var(--brand);
  color: var(--ink);
  border: none;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  padding: 11px 22px;
  cursor: pointer;
}
.shop-notify-note {
  font-size: 11px;
  opacity: 0.5;
  margin-top: 18px;
}
.shop-meta {
  margin-top: 50px;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.45;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.shop-meta::before, .shop-meta::after {
  content: '·';
  opacity: 0.5;
}

/* Mobile */
@media (max-width: 900px) {
  .gallery-hero { padding: 130px var(--section-pad-x) 40px; }
  .gallery-hero-h { font-size: 36px; }
  .gallery-grid-section { padding: 40px var(--section-pad-x) 60px; }

  .gifts-hero { padding: 130px var(--section-pad-x) 40px; }
  .gifts-hero-h { font-size: 38px; }
  .gifts-hero-photo { width: 100%; opacity: 0.25; }
  .gifts-denominations { padding: 60px var(--section-pad-x); }
  .gifts-denominations-h { font-size: 30px; }
  .gifts-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .gift-card-amount { font-size: 44px; }
  .gifts-how { padding: 60px var(--section-pad-x); }
  .gifts-how-inner { grid-template-columns: 1fr; gap: 24px; }
  .gifts-how-h { font-size: 28px; }

  .shop-h { font-size: 52px; }
  .shop-jp-mark { font-size: 50px; }
  .shop-sub { font-size: 15px; }
}

/* === Maker's stamp — top-right corner of the footer === */
.closer-stamp {
  position: absolute;
  top: 22px;
  right: var(--section-pad-x);
  z-index: 4;
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 400;
  font-size: 11px;
  color: var(--brand);
  opacity: 0.6;
  letter-spacing: 0.02em;
  transform: rotate(-2deg);
  transform-origin: right center;
  pointer-events: none;
}
.closer-stamp::before {
  content: '— ';
  opacity: 0.6;
}
@media (max-width: 900px) {
  .closer-stamp {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    text-align: center;
    opacity: 0.5;
    margin-top: 22px;
  }
}

/* === About-us pillars — editorial variation per pillar, not a card grid === */
.pillar-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px 80px;
}
.pillar-row .pillar {
  padding: 0;
  border-top: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.pillar-row .pillar-num {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 500;
  font-size: 24px;
  color: var(--brand);
  letter-spacing: 0;
  margin-bottom: 0;
  display: inline-block;
  width: auto;
}
.pillar-row .pillar-h {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 38px;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0;
  color: var(--cream);
  max-width: 480px;
}
.pillar-row .pillar-h-small { font-size: 26px; line-height: 1.15; }
.pillar-row .pillar-h-quote {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 500;
  color: var(--brand);
  font-size: 40px;
}
.pillar-row .pillar-detail {
  font-size: 14.5px;
  line-height: 1.7;
  opacity: 0.78;
  max-width: 460px;
  margin: 0;
}

.pillar-row .pillar-stat {
  display: inline-flex;
  align-items: baseline;
  gap: 14px;
  margin-top: 8px;
  padding-top: 22px;
  border-top: 1px solid rgba(246, 243, 238, 0.15);
}
.pillar-row .pillar-stat-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 56px;
  letter-spacing: -0.04em;
  color: var(--brand);
  line-height: 0.9;
}
.pillar-row .pillar-stat-lbl {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.6;
  max-width: 100px;
}

.pillar-row .pillar-num-hero {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 132px;
  line-height: 0.85;
  letter-spacing: -0.06em;
  color: var(--brand);
  margin: 0 0 4px;
  position: relative;
}
.pillar-row .pillar-num-hero-unit {
  display: block;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--cream);
  opacity: 0.65;
  margin-top: 6px;
  font-family: var(--font-body);
}

.pillar-row .pillar-list {
  list-style: none;
  padding: 0;
  margin: 4px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14.5px;
  line-height: 1.45;
  opacity: 0.82;
  max-width: 460px;
}
.pillar-row .pillar-list li {
  padding-left: 20px;
  position: relative;
}
.pillar-row .pillar-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 1px;
  background: var(--brand);
}

/* Specific per-pillar tweaks */
.pillar-row .pillar--02 .pillar-h { order: 3; }
.pillar-row .pillar--02 .pillar-num-hero { order: 2; margin-top: 4px; }
.pillar-row .pillar--02 .pillar-num { order: 1; }
.pillar-row .pillar--02 .pillar-detail { order: 4; }

@media (max-width: 900px) {
  .pillar-row { grid-template-columns: 1fr; gap: 40px; }
  .pillar-row .pillar-h { font-size: 26px; }
  .pillar-row .pillar-h-quote { font-size: 28px; }
  .pillar-row .pillar-num-hero { font-size: 80px; }
}

/* === Paper grain on cream sections (broad selector — no HTML changes needed) === */
.bowls, .locations, .about-kim, .about-timeline, .about-cta,
.menu-category:not(.menu-category-alt), .menu-allergens, .menu-order-cta,
.loc-detail:not(.loc-detail-alt), .loc-cta,
.contact-quick, .contact-allergen-strip,
.press-quotes, .press-contact,
.career-values, .career-spec-app,
.gallery-grid-section,
.gifts-denominations,
.legal-body {
  position: relative;
  isolation: isolate;
}
.bowls::after, .locations::after, .about-kim::after, .about-timeline::after, .about-cta::after,
.menu-category:not(.menu-category-alt)::after, .menu-allergens::after, .menu-order-cta::after,
.loc-detail:not(.loc-detail-alt)::after, .loc-cta::after,
.contact-quick::after, .contact-allergen-strip::after,
.press-quotes::after, .press-contact::after,
.career-values::after, .career-spec-app::after,
.gallery-grid-section::after,
.gifts-denominations::after,
.legal-body::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200' viewBox='0 0 200 200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.114 0 0 0 0 0.114 0 0 0 0 0.137 0 0 0 0.5 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.04;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: multiply;
}
.bowls > *, .locations > *, .about-kim > *, .about-timeline > *, .about-cta > *,
.menu-category > *, .menu-allergens > *, .menu-order-cta > *,
.loc-detail > *, .loc-cta > *,
.contact-quick > *, .contact-allergen-strip > *,
.press-quotes > *, .press-contact > *,
.career-values > *, .career-spec-app > *,
.gallery-grid-section > *,
.gifts-denominations > *,
.legal-body > * {
  position: relative;
  z-index: 2;
}

/* === Intentional asymmetric section padding — overrides uniform 80–100px === */
.bowls { padding: 110px var(--section-pad-x) 80px; }
.locations { padding: 90px var(--section-pad-x) 100px; }
.press { padding: 70px var(--section-pad-x) 40px; }
.about-kim { padding: 130px var(--section-pad-x) 90px; }
.about-pillars { padding: 100px var(--section-pad-x) 130px; }
.about-timeline { padding: 130px var(--section-pad-x) 100px; }
.about-team { padding: 90px var(--section-pad-x) 110px; }
.about-cta { padding: 140px var(--section-pad-x) 120px; }
.menu-category { padding: 110px var(--section-pad-x) 70px; }
.menu-category-alt { padding: 90px var(--section-pad-x) 90px; }
.menu-allergens { padding: 110px var(--section-pad-x) 90px; }
.menu-order-cta { padding: 130px var(--section-pad-x) 110px; }
.loc-detail { padding: 110px var(--section-pad-x) 80px; }
.loc-detail-alt { padding: 90px var(--section-pad-x) 100px; }
.loc-cta { padding: 130px var(--section-pad-x) 110px; }

@media (max-width: 900px) {
  .bowls, .locations, .press, .about-kim, .about-pillars, .about-timeline,
  .about-team, .about-cta, .menu-category, .menu-category-alt, .menu-allergens,
  .menu-order-cta, .loc-detail, .loc-detail-alt, .loc-cta {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
