/* =========================================================================
   EXCEDA — Become More
   Monochrome editorial design system. Black (#000) + White (#FFF) only.
   Neutral steps are produced exclusively through opacity.
   ========================================================================= */

/* -------------------------------------------------------------------------
   01 — TOKENS
   ---------------------------------------------------------------------- */
:root {
  color-scheme: dark;

  /* Foundational brand colours */
  --black: #000000;
  --white: #ffffff;

  /* Neutral steps (opacity only) */
  --w-88: rgba(255, 255, 255, 0.88);
  --w-72: rgba(255, 255, 255, 0.72);
  --w-56: rgba(255, 255, 255, 0.56);
  --w-48: rgba(255, 255, 255, 0.48);
  --w-32: rgba(255, 255, 255, 0.32);
  --w-20: rgba(255, 255, 255, 0.20);
  --w-14: rgba(255, 255, 255, 0.14);
  --w-08: rgba(255, 255, 255, 0.08);
  --w-04: rgba(255, 255, 255, 0.04);
  --k-84: rgba(0, 0, 0, 0.84);

  /* Lines */
  --hairline: 1px solid var(--w-14);
  --hairline-soft: 1px solid var(--w-08);

  /* Type */
  --font-display: Didot, "Didot LT STD", "Bodoni 72", "Bodoni MT", "Hoefler Text",
    Garamond, "Times New Roman", Times, serif;
  --font-ui: "Helvetica Neue", Helvetica, Arial, "Segoe UI", Roboto, sans-serif;

  --step--2: 0.6875rem;                          /* 11px micro labels */
  --step--1: 0.8125rem;                          /* 13px small ui     */
  --step-0: clamp(0.9375rem, 0.9rem + 0.2vw, 1.0625rem);
  --step-1: clamp(1.0625rem, 1rem + 0.35vw, 1.25rem);
  --step-4: clamp(1.9rem, 1.05rem + 3.4vw, 4.25rem);
  --step-hero: clamp(2rem, 9vw, 8.5rem);

  /* Layout */
  --maxw: 1440px;
  --measure-wide: 62ch;
  --gutter: clamp(1.25rem, 4.4vw, 4.5rem);
  --section-y: clamp(4.5rem, 9vw, 9.5rem);
  --header-h: 68px;

  /* Motion */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

@media (min-width: 900px) {
  :root { --header-h: 78px; }
}

/* -------------------------------------------------------------------------
   02 — RESET
   ---------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

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

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-ui);
  font-size: var(--step-0);
  line-height: 1.65;
  font-weight: 400;
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.is-locked { overflow: hidden; }

h1, h2, h3, h4, p, figure, blockquote, dl, dd, ol, ul { margin: 0; }
ul, ol { padding: 0; list-style: none; }

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

a { color: inherit; text-decoration: none; }

/* The platform default tap highlight is blue; keep every state monochrome. */
a, button, summary, label, [tabindex] { -webkit-tap-highlight-color: rgba(255, 255, 255, 0.12); }

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

address { font-style: normal; }

::selection { background: var(--white); color: var(--black); }

:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 3px;
  border-radius: 1px;
}

/* -------------------------------------------------------------------------
   03 — UTILITIES
   ---------------------------------------------------------------------- */
.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

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

.skip-link {
  position: absolute;
  top: 0; left: 50%;
  transform: translate(-50%, -140%);
  z-index: 200;
  padding: 0.9rem 1.5rem;
  background: var(--white);
  color: var(--black);
  font-size: var(--step--1);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: transform 0.2s var(--ease);
}
.skip-link:focus { transform: translate(-50%, 0); }

.shell {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { position: relative; padding-block: var(--section-y); }
.section + .section { border-top: var(--hairline-soft); }

[id] { scroll-margin-top: calc(var(--header-h) + 1.5rem); }

/* -------------------------------------------------------------------------
   04 — TYPOGRAPHY PRIMITIVES
   ---------------------------------------------------------------------- */
.display {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  text-wrap: balance;
}

.display--hero {
  font-size: var(--step-hero);
  line-height: 0.88;
  letter-spacing: -0.025em;
}

/* For hero headlines with a longer first line, so it still sets on two lines. */
.display--hero-sm { font-size: clamp(1.85rem, 6.6vw, 5.9rem); }

.display--xl { font-size: var(--step-4); }
.eyebrow {
  font-family: var(--font-ui);
  font-size: var(--step--2);
  font-weight: 700;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--w-56);
  margin: 0;
}

.label {
  font-family: var(--font-ui);
  font-size: var(--step--2);
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--w-72);
}

.lede {
  font-size: var(--step-1);
  line-height: 1.62;
  color: var(--w-72);
  max-width: var(--measure-wide);
}

.body--narrow { max-width: 46ch; }

.section-index {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 9vw, 8rem);
  line-height: 0.8;
  color: transparent;
  -webkit-text-stroke: 1px var(--w-20);
  letter-spacing: 0.01em;
  user-select: none;
}

.section-head {
  display: flex;
  align-items: baseline;
  gap: clamp(0.75rem, 2vw, 1.5rem);
  padding-bottom: 1.5rem;
  border-bottom: var(--hairline);
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
  flex-wrap: wrap;
}
.section-head .eyebrow { flex: 1 1 auto; }
.section-head .section-head__no {
  font-family: var(--font-display);
  font-size: var(--step--1);
  letter-spacing: 0.2em;
  color: var(--w-48);
}

/* Rotated micro label — large screens only */
.vertical-label {
  display: none;
  position: absolute;
  top: 0; left: 0;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: var(--step--2);
  font-weight: 700;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--w-20);
  pointer-events: none;
}

@media (min-width: 1400px) {
  .vertical-label { display: block; }
}

/* -------------------------------------------------------------------------
   05 — BUTTONS
   ---------------------------------------------------------------------- */
.btn {
  --btn-pad-y: 1rem;
  --btn-pad-x: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  min-height: 48px;
  padding: var(--btn-pad-y) var(--btn-pad-x);
  border: 1px solid var(--white);
  border-radius: 2px;
  font-family: var(--font-ui);
  font-size: var(--step--1);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 0.28s var(--ease), color 0.28s var(--ease),
    border-color 0.28s var(--ease);
}

.btn--primary { background: var(--white); color: var(--black); }
.btn--primary:hover,
.btn--primary:focus-visible { background: var(--black); color: var(--white); }

.btn--secondary { background: transparent; color: var(--white); border-color: var(--w-48); }
.btn--secondary:hover,
.btn--secondary:focus-visible { background: var(--white); color: var(--black); border-color: var(--white); }

.btn--sm { --btn-pad-y: 0.7rem; --btn-pad-x: 1.25rem; min-height: 44px; font-size: var(--step--2); letter-spacing: 0.16em; }

.btn--block { width: 100%; }

.btn__arrow { width: 12px; height: 12px; flex: none; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  align-items: center;
}

/* -------------------------------------------------------------------------
   06 — STATUS INDICATOR (never colour-only)
   ---------------------------------------------------------------------- */
.status {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: var(--step--2);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--w-72);
  margin: 0;
}

.status__dot {
  width: 7px; height: 7px;
  flex: none;
  margin-top: 0.5em;
  border-radius: 50%;
  border: 1px solid var(--w-48);
  background: transparent;
}

.status.is-open { color: var(--white); }
.status.is-open .status__dot { background: var(--white); border-color: var(--white); }

.status--framed {
  border: var(--hairline);
  border-radius: 2px;
  padding: 0.6rem 1rem;
}

/* -------------------------------------------------------------------------
   07 — HEADER
   ---------------------------------------------------------------------- */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background-color 0.35s var(--ease), border-color 0.35s var(--ease);
  padding-top: env(safe-area-inset-top, 0px);
}

.header.is-scrolled {
  background: var(--k-84);
  border-bottom-color: var(--w-14);
}

@supports (backdrop-filter: blur(8px)) {
  .header.is-scrolled { backdrop-filter: blur(14px) saturate(120%); }
}

.header__inner {
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.5rem);
}

.wordmark {
  display: inline-flex;
  flex-direction: column;
  gap: 0.15rem;
  line-height: 1;
  flex: none;
}
.wordmark__name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  padding-left: 0.26em; /* optical balance for tracking */
}
.wordmark__tag {
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--w-48);
  padding-left: 0.34em;
}

.header__nav { display: none; margin-left: auto; }

.header__nav ul {
  display: flex;
  align-items: center;
  gap: clamp(1.1rem, 2.2vw, 2.25rem);
}

.navlink {
  position: relative;
  display: inline-block;
  padding: 0.5rem 0;
  font-size: var(--step--2);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--w-72);
  transition: color 0.25s var(--ease);
}
.navlink::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--white);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.navlink:hover, .navlink:focus-visible { color: var(--white); }
.navlink:hover::after, .navlink:focus-visible::after { transform: scaleX(1); }
.navlink[aria-current="page"] { color: var(--white); }
.navlink[aria-current="page"]::after { transform: scaleX(1); background: var(--w-48); }

.header__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: auto;
}
.header__nav + .header__actions { margin-left: 0; }

.header__status { display: none; }

.header__order { display: none; }

/* Menu toggle */
.navtoggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  margin-right: -0.5rem;
  border: 1px solid var(--w-20);
  border-radius: 2px;
  flex: none;
  transition: border-color 0.25s var(--ease), background-color 0.25s var(--ease);
}
.navtoggle:hover { border-color: var(--w-48); }

.navtoggle__bars { position: relative; width: 18px; height: 10px; }
.navtoggle__bars span {
  position: absolute; left: 0;
  width: 100%; height: 1px;
  background: var(--white);
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}
.navtoggle__bars span:first-child { top: 0; }
.navtoggle__bars span:last-child { bottom: 0; }
.navtoggle[aria-expanded="true"] .navtoggle__bars span:first-child { transform: translateY(4.5px) rotate(45deg); }
.navtoggle[aria-expanded="true"] .navtoggle__bars span:last-child { transform: translateY(-4.5px) rotate(-45deg); }

.header__order-mobile { display: inline-flex; }

@media (min-width: 900px) {
  .header__nav { display: block; }
  .header__order { display: inline-flex; }
  .header__order-mobile { display: none; }
  .navtoggle { display: none; }
}

@media (min-width: 1280px) {
  .header__status { display: inline-flex; }
}

/* -------------------------------------------------------------------------
   08 — MOBILE NAVIGATION PANEL
   ---------------------------------------------------------------------- */
.mobilenav {
  position: fixed;
  inset: 0;
  z-index: 99;
  display: flex;
  flex-direction: column;
  background: var(--black);
  padding: calc(var(--header-h) + env(safe-area-inset-top, 0px) + 2rem) var(--gutter)
    calc(2rem + env(safe-area-inset-bottom, 0px));
  overflow-y: auto;
  overscroll-behavior: contain;
}

.mobilenav[hidden] { display: none; }

.mobilenav__list { border-top: var(--hairline-soft); }

.mobilenav__list a {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 1.15rem 0;
  border-bottom: var(--hairline-soft);
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 8vw, 2.5rem);
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--w-88);
}
.mobilenav__list a[aria-current="page"] { color: var(--white); }
.mobilenav__list .idx {
  font-family: var(--font-ui);
  font-size: var(--step--2);
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--w-48);
}

.mobilenav__foot {
  margin-top: auto;
  padding-top: 2.5rem;
  display: grid;
  gap: 1.25rem;
}

.mobilenav__meta {
  display: grid;
  gap: 0.4rem;
  font-size: var(--step--1);
  color: var(--w-56);
  letter-spacing: 0.04em;
}

@media (prefers-reduced-motion: no-preference) {
  .mobilenav:not([hidden]) { animation: nav-in 0.32s var(--ease) both; }
  .mobilenav:not([hidden]) .mobilenav__list a { animation: nav-item 0.4s var(--ease) both; }
  .mobilenav__list li:nth-child(1) a { animation-delay: 0.04s; }
  .mobilenav__list li:nth-child(2) a { animation-delay: 0.08s; }
  .mobilenav__list li:nth-child(3) a { animation-delay: 0.12s; }
  .mobilenav__list li:nth-child(4) a { animation-delay: 0.16s; }
  .mobilenav__list li:nth-child(5) a { animation-delay: 0.20s; }
}

@keyframes nav-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes nav-item { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

@media (min-width: 900px) {
  .mobilenav { display: none !important; }
}

/* -------------------------------------------------------------------------
   09 — X MOTIF / BACKDROPS
   ---------------------------------------------------------------------- */
.x-motif {
  position: absolute;
  pointer-events: none;
  color: var(--white);
  opacity: 0.06;
}
.x-motif svg { width: 100%; height: 100%; }

.grid-texture {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.055) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.055) 1px, transparent 1px);
  background-size: 72px 72px;
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 0%, transparent 72%);
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 0%, transparent 72%);
}

.glow {
  position: absolute;
  pointer-events: none;
  background: radial-gradient(circle at center, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0.03) 38%, transparent 68%);
}

/* -------------------------------------------------------------------------
   10 — HERO
   ---------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 85svh;
  display: flex;
  align-items: flex-end;
  padding-top: calc(var(--header-h) + clamp(2.25rem, 6.5vh, 4.5rem));
  padding-bottom: clamp(2.25rem, 5vh, 4rem);
  overflow: hidden;
  isolation: isolate;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero .x-motif {
  top: 50%;
  left: 50%;
  width: min(120vh, 96vw);
  aspect-ratio: 1;
  transform: translate(-50%, -52%);
  opacity: 0.075;
}

.hero .glow {
  top: -22%;
  left: 50%;
  width: min(140vw, 1400px);
  aspect-ratio: 1.35;
  transform: translateX(-50%);
}

.hero__inner {
  width: 100%;
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.hero__eyebrow::after {
  content: "";
  flex: 1 1 auto;
  height: 1px;
  max-width: 260px;
  background: linear-gradient(to right, var(--w-32), transparent);
}

.hero__title { margin: 0; }
.hero__title .l1, .hero__title .l2 { display: block; }
.hero__title .l2 { color: var(--w-56); }

/* Two-line display headings outside the hero (e.g. a question and its answer). */
.display .l1, .display .l2 { display: block; }
.display .l2 { color: var(--w-56); }

.hero__grid {
  display: grid;
  gap: clamp(1.75rem, 4vw, 3rem);
  align-items: end;
}

.hero__copy { display: grid; gap: clamp(1.1rem, 2vw, 1.6rem); }

.hero__micro {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: var(--step--2);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--w-48);
}
.hero__micro::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--w-32);
  flex: none;
}

/* Logo lockup — blends the supplied dark JPEG into the page */
.logo-lockup {
  position: relative;
  width: 100%;
  max-width: 460px;
  justify-self: center;
}

.logo-lockup__img {
  width: 100%;
  height: auto;
  /* The supplied JPEG's field sits around #111111–#28292b rather than true black.
     A contrast pass drops it to #000 without touching the white artwork, and
     screen blending then dissolves it into whatever sits behind the logo. */
  filter: brightness(0.94) contrast(1.6);
  mix-blend-mode: screen;
  /* Trims the flat empty margin of the square file. Proportions are uniform. */
  clip-path: inset(9% 5% 33% 5%);
  margin-block: -5% -19%;
}

.logo-lockup__caption {
  display: block;
  text-align: center;
  margin-top: 0.25rem;
  font-size: var(--step--2);
  font-weight: 700;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--w-48);
}

@media (min-width: 760px) {
  .hero__grid { grid-template-columns: minmax(0, 1fr) minmax(0, 0.62fr); align-items: end; }
  .logo-lockup { justify-self: end; max-width: 340px; }
}

@media (min-width: 1100px) {
  .hero { align-items: center; }
  .hero__grid { grid-template-columns: minmax(0, 1fr) minmax(0, 0.5fr); }
  .logo-lockup { max-width: 380px; }
}

/* Scroll cue */
.scroll-cue {
  display: none;
  position: absolute;
  right: var(--gutter);
  bottom: clamp(2.5rem, 6vh, 5rem);
  align-items: center;
  gap: 0.75rem;
  font-size: var(--step--2);
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--w-48);
  writing-mode: vertical-rl;
}
.scroll-cue::after {
  content: "";
  width: 1px; height: 54px;
  background: linear-gradient(to bottom, var(--w-32), transparent);
}
@media (min-width: 1100px) and (min-height: 700px) {
  .scroll-cue { display: flex; }
}

/* -------------------------------------------------------------------------
   11 — MARQUEE BAND
   ---------------------------------------------------------------------- */
.marquee {
  position: relative;
  overflow: hidden;
  border-block: var(--hairline-soft);
  padding-block: clamp(0.9rem, 1.8vw, 1.4rem);
}

.marquee__track {
  display: flex;
  width: max-content;
  gap: 0;
}

.marquee__row {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding-right: 2.5rem;
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 1.6vw, 1.35rem);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--w-48);
  white-space: nowrap;
}

.marquee__x { width: 11px; height: 11px; flex: none; opacity: 0.6; }

@media (prefers-reduced-motion: no-preference) {
  .marquee__track { animation: marquee 46s linear infinite; }
  .marquee:hover .marquee__track { animation-play-state: paused; }
}

@keyframes marquee {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

/* -------------------------------------------------------------------------
   12 — EDITORIAL SPLIT (brand statement)
   ---------------------------------------------------------------------- */
.split {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
}

.split__index { display: flex; align-items: flex-start; gap: 1.25rem; }

.split__body {
  display: grid;
  gap: 1.5rem;
  padding-top: 0.25rem;
}

.split__note {
  font-family: var(--font-display);
  font-size: var(--step-1);
  letter-spacing: 0.02em;
  color: var(--w-88);
  padding-top: 1.5rem;
  border-top: var(--hairline);
  max-width: 40ch;
}

@media (min-width: 900px) {
  .split {
    grid-template-columns: auto minmax(0, 1fr);
    column-gap: clamp(1.5rem, 3vw, 3rem);
    row-gap: clamp(1.75rem, 3vw, 2.5rem);
    align-items: start;
  }
  .split__index { grid-column: 1; grid-row: 1; }
  .split > h2 { grid-column: 2; grid-row: 1; }
  .split__body {
    grid-column: 2;
    grid-row: 2;
    padding-left: clamp(1.5rem, 3vw, 3rem);
    border-left: var(--hairline);
  }
}

/* -------------------------------------------------------------------------
   13 — SIGNATURE GRID (hairline grid, no gaps)
   ---------------------------------------------------------------------- */
.signature__intro {
  display: grid;
  gap: 1.5rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

@media (min-width: 900px) {
  .signature__intro {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
    column-gap: clamp(2rem, 5vw, 4rem);
    row-gap: clamp(1.5rem, 3vw, 2.25rem);
  }
  .signature__intro > h2 { grid-column: 1 / -1; }
  .signature__intro > .lede { grid-column: 2; }
}

.sig-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--w-14);
  border: var(--hairline);
}

.sig-card {
  position: relative;
  background: var(--black);
  padding: clamp(1.5rem, 2.6vw, 2.25rem);
  display: grid;
  gap: 0.75rem;
  align-content: start;
  min-height: 100%;
  transition: background-color 0.35s var(--ease);
}

.sig-card:hover { background: var(--w-04); }

.sig-card__no {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px var(--w-32);
  transition: color 0.35s var(--ease), -webkit-text-stroke-color 0.35s var(--ease);
}
.sig-card:hover .sig-card__no {
  color: var(--w-14);
  -webkit-text-stroke-color: var(--w-56);
}

.sig-card__name {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.1vw, 1.6rem);
  line-height: 1.08;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  font-weight: 400;
  transition: transform 0.35s var(--ease);
}
.sig-card:hover .sig-card__name { transform: translateX(4px); }

.sig-card__ing {
  font-size: var(--step--1);
  line-height: 1.55;
  color: var(--w-48);
  letter-spacing: 0.02em;
  margin: 0;
}

.sig-card__x {
  position: absolute;
  top: clamp(1.5rem, 2.6vw, 2.25rem);
  right: clamp(1.5rem, 2.6vw, 2.25rem);
  width: 12px; height: 12px;
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}
.sig-card:hover .sig-card__x { opacity: 0.42; }

@media (min-width: 560px) { .sig-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1100px) { .sig-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); } }

.signature__outro {
  margin-top: clamp(2.25rem, 4vw, 3.5rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.signature__outro p {
  font-family: var(--font-display);
  font-size: var(--step-1);
  color: var(--w-72);
  letter-spacing: 0.02em;
  margin: 0;
  max-width: 34ch;
}

/* -------------------------------------------------------------------------
   14 — MENU
   ---------------------------------------------------------------------- */
.menu__intro {
  display: grid;
  gap: 1.5rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

@media (min-width: 900px) {
  .menu__intro {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
    column-gap: clamp(2rem, 5vw, 4rem);
    row-gap: clamp(1.5rem, 3vw, 2.25rem);
    align-items: end;
  }
  .menu__intro > h2 { grid-column: 1; }
  .menu__intro > .lede { grid-column: 2; }
}

.menu-grid {
  display: grid;
  gap: 1px;
  background: var(--w-14);
  border: var(--hairline);
}

@media (min-width: 760px) {
  .menu-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  /* Three columns into two: the third runs full width so no cell is left empty
     (an empty cell would expose the hairline colour behind the grid). */
  .menu-grid > :last-child { grid-column: 1 / -1; }
}

@media (min-width: 1100px) {
  .menu-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .menu-grid > :last-child { grid-column: auto; }
}

.menu-col {
  background: var(--black);
  padding: clamp(1.75rem, 3vw, 2.75rem);
  display: grid;
  gap: 1.5rem;
  align-content: start;
}

.menu-col__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1.1rem;
  border-bottom: var(--hairline);
}

.menu-col__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  line-height: 1;
  text-transform: uppercase;
  font-weight: 400;
  margin: 0;
}

.menu-col__size {
  font-size: var(--step--2);
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--w-48);
  white-space: nowrap;
}

.menu-col__copy {
  font-size: var(--step--1);
  line-height: 1.6;
  color: var(--w-56);
  margin: 0;
  max-width: 42ch;
}

.menu-col__group { display: grid; gap: 0.9rem; align-content: start; }

.section-lead { margin-bottom: clamp(2.5rem, 5vw, 4rem); }

.flavor-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.flavor-list li {
  border: 1px solid var(--w-14);
  border-radius: 2px;
  padding: 0.42rem 0.75rem;
  font-size: var(--step--2);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--w-72);
}

/* Tea builds — name over the ingredients that define the tier. */
.tier-list { display: grid; }

.tier {
  display: grid;
  gap: 0.3rem;
  padding-block: 0.95rem;
  border-bottom: var(--hairline-soft);
}
.tier:first-child { padding-top: 0; }
.tier:last-child { border-bottom: 0; }

.tier__name {
  font-size: var(--step-0);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.tier__desc {
  font-size: var(--step--1);
  line-height: 1.5;
  color: var(--w-48);
  margin: 0;
}

.addon-list { display: grid; }
.addon-list li {
  padding-block: 0.72rem;
  border-bottom: var(--hairline-soft);
  font-size: var(--step--1);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--w-72);
}
.addon-list li:last-child { border-bottom: 0; }

/* While the add-ons column runs full width, split the list into two files. */
@media (min-width: 760px) and (max-width: 1099px) {
  .menu-grid > :last-child .addon-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: clamp(1.75rem, 4vw, 3.5rem);
  }
  .menu-grid > :last-child .addon-list li:nth-last-child(-n + 2) { border-bottom: 0; }
}

.menu__foot {
  margin-top: clamp(2.25rem, 4vw, 3.5rem);
  display: grid;
  gap: 1.75rem;
}

@media (min-width: 900px) {
  .menu__foot {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 2.5rem;
  }
}

.menu__disclaimer {
  font-size: var(--step--1);
  color: var(--w-48);
  max-width: 56ch;
  margin: 0;
}

/* Original-menu thumbnail trigger */
.menu-thumb {
  display: grid;
  gap: 1rem;
  margin-top: clamp(2rem, 4vw, 3rem);
  padding-top: clamp(2rem, 4vw, 3rem);
  border-top: var(--hairline);
}

@media (min-width: 760px) {
  .menu-thumb { grid-template-columns: minmax(0, 260px) minmax(0, 1fr); gap: clamp(1.5rem, 3vw, 2.5rem); align-items: center; }
}

.menu-thumb__frame {
  border: var(--hairline);
  padding: 8px;
  background: var(--black);
}
.menu-thumb__frame img {
  width: 100%;
  height: auto;
  filter: grayscale(1) brightness(1.25) contrast(1.05);
  opacity: 0.8;
  transition: opacity 0.35s var(--ease), filter 0.35s var(--ease);
}
.menu-thumb__trigger { display: grid; gap: 1rem; align-content: start; justify-items: start; }
.menu-thumb__trigger p { font-size: var(--step--1); color: var(--w-48); margin: 0; max-width: 46ch; }
.menu-thumb:hover .menu-thumb__frame img { opacity: 1; filter: grayscale(1) brightness(1.4) contrast(1.05); }

/* -------------------------------------------------------------------------
   14b — PHOTOGRAPHY
   Interface chrome stays black and white. Photographs are content, so they
   keep their own colour, pulled together by one shared grade.
   ---------------------------------------------------------------------- */
.photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.04);
}

/* Full-bleed cinematic band ------------------------------------------------ */
.band {
  position: relative;
  margin: clamp(3rem, 6vw, 5rem) 0 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  isolation: isolate;
}

@media (min-width: 640px) { .band { aspect-ratio: 16 / 8; } }
@media (min-width: 1100px) { .band { aspect-ratio: 21 / 8; } }

/* Feathers the frame into the page so it reads as art direction, not a box. */
.band::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0) 26%,
      rgba(0,0,0,0) 58%, rgba(0,0,0,0.9) 100%),
    linear-gradient(to right, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 22%,
      rgba(0,0,0,0) 78%, rgba(0,0,0,0.6) 100%);
}

.band__caption {
  position: absolute;
  left: var(--gutter);
  bottom: clamp(1.25rem, 3vw, 2.25rem);
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin: 0;
  font-size: var(--step--2);
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--w-72);
}
.band__caption::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--w-48);
  flex: none;
}

/* Lookbook trio ------------------------------------------------------------ */
.lookbook {
  display: grid;
  gap: clamp(0.75rem, 1.6vw, 1.25rem);
  margin-top: clamp(2.5rem, 5vw, 4rem);
}

@media (min-width: 600px) { .lookbook { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

.lookbook__item {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: var(--hairline);
  background: var(--black);
}

@media (max-width: 599px) { .lookbook__item { aspect-ratio: 3 / 2; } }

.lookbook__item .photo { transition: transform 0.9s var(--ease), filter 0.6s var(--ease); }
.lookbook__item:hover .photo { transform: scale(1.035); filter: saturate(0.95) contrast(1.05); }

.lookbook__item::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0) 40%,
    rgba(0,0,0,0) 55%, rgba(0,0,0,0.78) 100%);
}

.lookbook__no {
  position: absolute;
  top: clamp(0.75rem, 1.6vw, 1.15rem);
  left: clamp(0.75rem, 1.6vw, 1.15rem);
  z-index: 1;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  line-height: 1;
  color: var(--white);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.9);
}

.lookbook__head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding-bottom: 1.1rem;
  border-bottom: var(--hairline);
}

@media (min-width: 600px) {
  .lookbook__head {
    flex-direction: row;
    align-items: baseline;
    justify-content: space-between;
    gap: 1.5rem;
  }
}
.lookbook__head p {
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--step-1);
  letter-spacing: 0.02em;
  color: var(--w-72);
}

/* Photographic CTA backdrop ------------------------------------------------ */
.cta--media { overflow: hidden; }

.cta__media {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.cta__media .photo {
  filter: saturate(0.78) contrast(1.02) brightness(0.95);
  object-position: 32% center;
}

/* Keeps white type far above AA contrast while the photograph still reads. */
.cta__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 62% 74% at 46% 50%, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.7) 62%, rgba(0,0,0,0.62) 100%),
    linear-gradient(to bottom, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.4) 38%,
      rgba(0,0,0,0.4) 62%, rgba(0,0,0,0.94) 100%);
}

.cta--media .x-motif { opacity: 0.09; }

/* Contact hero portrait ---------------------------------------------------- */
.hero-photo {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border: var(--hairline);
  background: var(--black);
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0) 45%);
}

@media (min-width: 900px) {
  .page-hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.62fr);
    gap: clamp(2rem, 4vw, 3.5rem);
    align-items: center;
  }
  /* A fixed height fills the column edge to edge and keeps the hero
     inside one screen; object-fit handles the crop. */
  .hero-photo { aspect-ratio: auto; height: min(48svh, 440px); }
}

.page-hero__grid { display: grid; gap: clamp(1.75rem, 4vw, 2.5rem); }
.page-hero__copy { display: grid; gap: clamp(1.25rem, 2.5vw, 2rem); align-content: start; }
.page-hero__copy .btn-row { justify-self: start; }

/* -------------------------------------------------------------------------
   15 — DIALOG
   ---------------------------------------------------------------------- */
.dialog {
  width: min(1200px, calc(100vw - 2rem));
  max-width: calc(100vw - 2rem);
  max-height: calc(100svh - 2rem);
  padding: 0;
  border: var(--hairline);
  border-radius: 2px;
  background: var(--black);
  color: var(--white);
  overflow: hidden;
}

.dialog::backdrop { background: rgba(0, 0, 0, 0.88); }

@supports (backdrop-filter: blur(4px)) {
  .dialog::backdrop { backdrop-filter: blur(6px); }
}

.dialog__inner {
  display: flex;
  flex-direction: column;
  max-height: calc(100svh - 2rem);
}

.dialog__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1rem, 2.5vw, 1.75rem);
  border-bottom: var(--hairline);
  flex: none;
}

.dialog__title {
  font-family: var(--font-ui);
  font-size: var(--step--2);
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin: 0;
  color: var(--w-72);
}

.dialog__close {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  min-height: 44px;
  padding: 0.5rem 1rem;
  border: 1px solid var(--w-32);
  border-radius: 2px;
  font-size: var(--step--2);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background-color 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.dialog__close:hover, .dialog__close:focus-visible {
  background: var(--white); color: var(--black); border-color: var(--white);
}

.dialog__body {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: clamp(0.75rem, 2vw, 1.5rem);
  background: var(--black);
}
.dialog__body img {
  width: 100%;
  height: auto;
  margin-inline: auto;
}

.dialog__foot {
  padding: 0.9rem clamp(1rem, 2.5vw, 1.75rem);
  border-top: var(--hairline);
  font-size: var(--step--2);
  letter-spacing: 0.08em;
  color: var(--w-56);
  flex: none;
}

/* -------------------------------------------------------------------------
   15b — FEE BREAKDOWN + DIRECT COMPARISON
   Used by the marketplace landing pages. Still black and white: the segments
   are separated by opacity and hairlines, never by colour.
   ---------------------------------------------------------------------- */
.feebar {
  display: flex;
  height: clamp(44px, 6vw, 64px);
  border: var(--hairline);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 0.9rem;
}

.feebar__seg {
  flex: 0 0 var(--w);
  border-right: 1px solid var(--black);
}
.feebar__seg--a { background: var(--w-72); }
.feebar__seg--b { background: var(--w-48); }
.feebar__seg--c { background: var(--w-32); }

.feebar__rest {
  flex: 1 1 auto;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.05) 0 1px, transparent 1px 7px);
}

.feebar__key {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  font-size: var(--step--2);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--w-48);
  margin: 0 0 clamp(2rem, 4vw, 3rem);
}
.feebar__key span { display: inline-flex; align-items: center; gap: 0.5rem; }
.feebar__key span::before {
  content: "";
  width: 10px; height: 10px;
  flex: none;
  border: 1px solid var(--w-20);
}
.feebar__key .k-a::before { background: var(--w-72); }
.feebar__key .k-b::before { background: var(--w-48); }
.feebar__key .k-c::before { background: var(--w-32); }

.feelist {
  display: grid;
  gap: 1px;
  background: var(--w-14);
  border: var(--hairline);
}

.fee {
  background: var(--black);
  display: grid;
  gap: 0.4rem 1.5rem;
  padding: clamp(1.4rem, 2.6vw, 2rem);
  align-items: baseline;
}

.fee__no {
  font-family: var(--font-display);
  font-size: var(--step--1);
  letter-spacing: 0.2em;
  color: var(--w-48);
}

.fee__pct {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  line-height: 0.95;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.fee h3 {
  font-size: var(--step-0);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 0.35rem;
}
.fee p { font-size: var(--step--1); line-height: 1.6; color: var(--w-48); margin: 0; max-width: 54ch; }

@media (min-width: 760px) {
  .fee {
    grid-template-columns: auto minmax(0, 0.32fr) minmax(0, 1fr);
    align-items: center;
  }
}

.fee--total { background: var(--w-04); }
.fee--total .fee__pct { color: var(--white); }
.fee--total p { color: var(--w-72); }

.fee__note {
  margin: clamp(1.1rem, 2.2vw, 1.5rem) 0 0;
  font-size: var(--step--1);
  line-height: 1.6;
  color: var(--w-56);
  max-width: 74ch;
}

/* Marketplace vs direct ---------------------------------------------------- */
.compare {
  display: grid;
  gap: 1px;
  background: var(--w-14);
  border: var(--hairline);
}

@media (min-width: 820px) { .compare { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

.compare__col {
  background: var(--black);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  display: grid;
  gap: 1.25rem;
  align-content: start;
}

.compare__col h3 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 1.9rem);
  line-height: 1.05;
  text-transform: uppercase;
  font-weight: 400;
  margin: 0;
  padding-bottom: 1rem;
  border-bottom: var(--hairline);
}

.compare__list { display: grid; gap: 0.85rem; }
.compare__list li {
  display: flex;
  align-items: baseline;
  gap: 0.85rem;
  font-size: var(--step--1);
  line-height: 1.55;
  color: var(--w-56);
}
.compare__list li::before {
  content: "";
  width: 14px; height: 1px;
  flex: none;
  background: var(--w-32);
  transform: translateY(-4px);
}

.compare__col--direct { background: var(--w-04); }
.compare__col--direct h3 { color: var(--white); }
.compare__col--direct .compare__list li { color: var(--w-88); }
.compare__col--direct .compare__list li::before { background: var(--white); }

.compare__tag {
  font-size: var(--step--2);
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--w-48);
}
.compare__col--direct .compare__tag { color: var(--w-72); }

/* Small print -------------------------------------------------------------- */
.legal {
  margin-top: clamp(2rem, 4vw, 3rem);
  padding-top: clamp(1.25rem, 2.5vw, 1.75rem);
  border-top: var(--hairline-soft);
  font-size: var(--step--2);
  line-height: 1.7;
  letter-spacing: 0.02em;
  color: var(--w-56);
  max-width: 82ch;
}
.legal strong { color: var(--w-56); font-weight: 700; }
.legal p { margin: 0 0 0.65rem; }
.legal p:last-child { margin-bottom: 0; }

/* -------------------------------------------------------------------------
   15c — REVIEW FORM
   The form itself is injected by a third-party script, so this only provides
   the surrounding frame and a sensible reserved height to avoid layout shift.
   ---------------------------------------------------------------------- */
.reviewgrid {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: start;
}

@media (min-width: 960px) {
  .reviewgrid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.52fr);
    gap: clamp(2rem, 4vw, 3.5rem);
  }
}

.reviewform {
  /* The provider's own card (max-width 576px) is the visual container, so this
     wrapper only sets the column width and reserves height against layout shift. */
  max-width: 600px;
  min-height: 320px;
  /* The provider paints its card a blue-grey (rgb(45,55,72)) from a brand setting
     in their dashboard. `filter` crosses the shadow boundary that CSS cannot, so
     one line keeps the page monochrome without touching their markup. Contrast is
     unaffected: white on their card measures 12:1 before and after. Set the colour
     to a neutral in the reviews dashboard and this line can be deleted. */
  filter: grayscale(1);
}

.reviewform emr-collect-review-form { display: block; }

.reviewform__fallback {
  border: var(--hairline);
  border-radius: 2px;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  font-size: var(--step-0);
  line-height: 1.65;
  color: var(--w-72);
  margin: 0;
  max-width: 52ch;
}
.reviewform__fallback a {
  background-image: linear-gradient(var(--w-48), var(--w-48));
  background-size: 100% 1px;
  background-position: 0 100%;
  background-repeat: no-repeat;
}

.reviewaside {
  border: var(--hairline);
  border-radius: 2px;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  display: grid;
  gap: 1.25rem;
  align-content: start;
}

.reviewaside__list { display: grid; gap: 0.9rem; }
.reviewaside__list li {
  display: flex;
  align-items: baseline;
  gap: 0.85rem;
  font-size: var(--step--1);
  line-height: 1.6;
  color: var(--w-56);
}
.reviewaside__list li::before {
  content: "";
  width: 14px; height: 1px;
  flex: none;
  background: var(--w-32);
  transform: translateY(-4px);
}

.reviewaside__note {
  margin: 0;
  padding-top: 1.1rem;
  border-top: var(--hairline);
  font-family: var(--font-display);
  font-size: var(--step-1);
  line-height: 1.35;
  letter-spacing: 0.02em;
  color: var(--w-88);
}

/* A hero with no photograph beside it needs less vertical room. */
.page-hero--compact { min-height: 0; padding-bottom: clamp(2.5rem, 6vh, 4.5rem); }

/* -------------------------------------------------------------------------
   16 — PILLARS
   ---------------------------------------------------------------------- */
.pillars {
  display: grid;
  gap: 1px;
  background: var(--w-14);
  border-block: var(--hairline);
}
@media (min-width: 860px) { .pillars { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

.pillar {
  background: var(--black);
  padding: clamp(1.75rem, 3vw, 2.75rem) clamp(1.5rem, 2.5vw, 2.5rem);
  display: grid;
  gap: 1rem;
  align-content: start;
}
.pillar__no {
  font-family: var(--font-display);
  font-size: var(--step--1);
  letter-spacing: 0.2em;
  color: var(--w-48);
}
.pillar h3 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  line-height: 1.05;
  text-transform: uppercase;
  font-weight: 400;
  margin: 0;
}
.pillar p { font-size: var(--step--1); line-height: 1.62; color: var(--w-56); margin: 0; max-width: 38ch; }

/* -------------------------------------------------------------------------
   17 — CTA BAND
   ---------------------------------------------------------------------- */
.cta {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  text-align: center;
}
.cta .x-motif {
  top: 50%; left: 50%;
  width: min(70vh, 70vw);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  opacity: 0.05;
}
.cta__inner { display: grid; gap: 1.75rem; justify-items: center; }
.cta .btn-row { justify-content: center; }
.cta .lede { margin-inline: auto; text-align: center; max-width: 52ch; }

/* -------------------------------------------------------------------------
   18 — VISIT / LOCATION
   ---------------------------------------------------------------------- */
.visit {
  display: grid;
  gap: clamp(2.5rem, 5vw, 4rem);
}

@media (min-width: 960px) {
  .visit { grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr); align-items: start; }
}

.visit__copy { display: grid; gap: 1.75rem; align-content: start; }

.visit__address {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.visit__address a { transition: color 0.25s var(--ease); }
.visit__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  letter-spacing: 0.02em;
}

.hours {
  border: var(--hairline);
  border-radius: 2px;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  display: grid;
  gap: 1.5rem;
  align-content: start;
}

.hours__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-bottom: 1.1rem;
  border-bottom: var(--hairline);
}

.hours__list { display: grid; }

.hours__row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: baseline;
  gap: 0.75rem;
  padding-block: 0.78rem;
  border-bottom: var(--hairline-soft);
  font-size: var(--step--1);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--w-48);
}
.hours__row:last-child { border-bottom: 0; }

.hours__row .marker {
  width: 14px;
  height: 1px;
  background: transparent;
  transform: translateY(-4px);
}

.hours__row.is-today {
  color: var(--white);
  font-weight: 700;
}
.hours__row.is-today .marker { background: var(--white); }

.hours__row .time { font-variant-numeric: tabular-nums; white-space: nowrap; }

.hours__note {
  font-size: var(--step--1);
  color: var(--w-48);
  margin: 0;
  padding-top: 0.25rem;
}

.hours__fallback { font-size: var(--step--1); color: var(--w-56); }

/* -------------------------------------------------------------------------
   19 — CONTACT PAGE
   ---------------------------------------------------------------------- */
.page-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding-top: calc(var(--header-h) + clamp(4rem, 12vh, 8rem));
  padding-bottom: clamp(3.5rem, 8vh, 6.5rem);
  min-height: min(62svh, 620px);
  display: flex;
  align-items: center;
}
.page-hero .x-motif {
  top: 50%; right: -6%;
  width: min(78vh, 62vw);
  aspect-ratio: 1;
  transform: translateY(-50%);
  opacity: 0.055;
}
.page-hero .glow {
  top: -40%; left: 12%;
  width: min(110vw, 1100px);
  aspect-ratio: 1.4;
}
.page-hero__inner { display: grid; gap: clamp(1.75rem, 3.5vw, 2.5rem); width: 100%; }
.page-hero__inner .btn-row { justify-self: start; }
.contact-hero__status { justify-self: start; }

.contact-grid {
  display: grid;
  gap: 1px;
  background: var(--w-14);
  border: var(--hairline);
}
@media (min-width: 820px) { .contact-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

.contact-card {
  background: var(--black);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  display: grid;
  gap: 1.1rem;
  /* icon · heading · key detail · supporting copy (flexible) · action */
  grid-template-rows: auto auto auto 1fr auto;
  transition: background-color 0.35s var(--ease);
}
.contact-card:hover { background: var(--w-04); }
.contact-card__icon { width: 24px; height: 24px; color: var(--w-56); }
.contact-card h3 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  text-transform: uppercase;
  font-weight: 400;
  line-height: 1.05;
  margin: 0;
}
.contact-card__key {
  font-size: var(--step-1);
  line-height: 1.45;
  color: var(--white);
  letter-spacing: 0.02em;
}
.contact-card__key a { background-image: linear-gradient(var(--w-32), var(--w-32)); background-size: 100% 1px; background-position: 0 100%; background-repeat: no-repeat; }
.contact-card__key a:hover { background-image: linear-gradient(var(--white), var(--white)); }
.contact-card p { font-size: var(--step--1); line-height: 1.6; color: var(--w-48); margin: 0; }
.contact-card .btn { justify-self: start; align-self: end; margin-top: 0.35rem; }

/* Address / directions panel */
.directions {
  display: grid;
  gap: clamp(2rem, 4vw, 3.5rem);
}
@media (min-width: 960px) {
  .directions { grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr); align-items: center; }
}

.directions__copy { display: grid; gap: 1.75rem; align-content: start; justify-items: start; }

.streetgrid {
  position: relative;
  aspect-ratio: 4 / 3;
  border: var(--hairline);
  border-radius: 2px;
  overflow: hidden;
  background: var(--black);
  display: grid;
  place-items: center;
}
.streetgrid__lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.09) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.09) 1px, transparent 1px),
    linear-gradient(to right, rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 132px 132px, 132px 132px, 33px 33px, 33px 33px;
  -webkit-mask-image: radial-gradient(circle at 50% 50%, #000 12%, rgba(0,0,0,0.5) 55%, transparent 82%);
  mask-image: radial-gradient(circle at 50% 50%, #000 12%, rgba(0,0,0,0.5) 55%, transparent 82%);
}
.streetgrid__road {
  position: absolute;
  left: -10%;
  top: 58%;
  width: 120%;
  height: 1px;
  background: var(--w-32);
  transform: rotate(-12deg);
}
.streetgrid__road--2 { top: 30%; transform: rotate(-12deg); background: var(--w-14); }
.streetgrid__road--v { left: 34%; top: -10%; width: 1px; height: 120%; transform: rotate(6deg); background: var(--w-14); }

.streetgrid__pin {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 0.75rem;
  text-align: center;
  padding: 1rem;
}
.streetgrid__pin svg { width: 28px; height: 28px; color: var(--white); }
.streetgrid__pin span {
  font-size: var(--step--2);
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--w-72);
}
.streetgrid__ring {
  position: absolute;
  top: 8px; left: 50%;
  width: 78px; height: 78px;
  margin-left: -39px;
  border: 1px solid var(--w-14);
  border-radius: 50%;
}

/* Delivery radius diagram --------------------------------------------------
   A schematic, not a map: concentric rings around the shop, no street claims. */
.radius {
  position: relative;
  aspect-ratio: 1;
  border: var(--hairline);
  border-radius: 2px;
  overflow: hidden;
  background: var(--black);
  display: grid;
  place-items: center;
  color: var(--white);
}

.radius__svg {
  position: relative;
  width: min(100%, 460px);
  height: auto;
}

.radius__pin {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 14%);
  display: grid;
  justify-items: center;
  gap: 0.5rem;
  text-align: center;
  padding-top: 0.75rem;
  pointer-events: none;
}
.radius__pin svg { width: 22px; height: 22px; color: var(--white); }
.radius__pin span {
  font-size: var(--step--2);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--w-72);
  white-space: nowrap;
}

.radius__note {
  margin: clamp(1.25rem, 2.5vw, 1.75rem) 0 0;
  font-size: var(--step--1);
  color: var(--w-56);
}

/* FAQ */
.faq { display: grid; border-top: var(--hairline); max-width: 78ch; }

.faq__item { border-bottom: var(--hairline); }

.faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.35rem 0;
  min-height: 48px;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--w-88);
  transition: color 0.25s var(--ease);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--white); }

.faq__sign {
  position: relative;
  width: 14px; height: 14px;
  flex: none;
}
.faq__sign::before, .faq__sign::after {
  content: "";
  position: absolute;
  background: var(--white);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.faq__sign::before { top: 50%; left: 0; width: 100%; height: 1px; margin-top: -0.5px; }
.faq__sign::after { left: 50%; top: 0; height: 100%; width: 1px; margin-left: -0.5px; }
.faq__item[open] .faq__sign::after { transform: scaleY(0); }

.faq__answer {
  padding: 0 0 1.6rem;
  color: var(--w-56);
  font-size: var(--step-0);
  line-height: 1.65;
  max-width: 62ch;
  margin: 0;
}

@media (prefers-reduced-motion: no-preference) {
  .faq__item[open] .faq__answer { animation: faq-in 0.3s var(--ease) both; }
}
@keyframes faq-in { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

/* -------------------------------------------------------------------------
   20 — FOOTER
   ---------------------------------------------------------------------- */
.footer {
  border-top: var(--hairline);
  padding-block: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 3vw, 2rem);
  padding-bottom: calc(clamp(1.5rem, 3vw, 2rem) + env(safe-area-inset-bottom, 0px));
}

.footer__top {
  display: grid;
  gap: clamp(2.25rem, 5vw, 3.5rem);
}

@media (min-width: 640px) {
  .footer__top { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 1040px) {
  .footer__top {
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.7fr) minmax(0, 0.8fr) minmax(0, 0.9fr);
  }
}

.footer__brand { display: grid; gap: 1.25rem; align-content: start; }
.footer__brand .wordmark__name { font-size: clamp(1.75rem, 4vw, 2.5rem); letter-spacing: 0.28em; }
.footer__brand .wordmark__tag { font-size: var(--step--2); letter-spacing: 0.36em; }
.footer__brand p { font-size: var(--step--1); color: var(--w-48); margin: 0; max-width: 34ch; }

.footer__col { display: grid; gap: 1rem; align-content: start; }
.footer__col h2 {
  font-size: var(--step--2);
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--w-48);
  margin: 0;
}
.footer__links { display: grid; gap: 0.7rem; }
.footer__links a {
  font-size: var(--step--1);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--w-72);
  transition: color 0.25s var(--ease);
  padding-block: 0.2rem;
}
.footer__links a:hover, .footer__links a:focus-visible { color: var(--white); }

.footer__contact { display: grid; gap: 0.6rem; font-size: var(--step--1); color: var(--w-72); line-height: 1.6; }
.footer__contact a { transition: color 0.25s var(--ease); }
.footer__contact a:hover { color: var(--white); }

.footer__order { justify-self: start; margin-top: 0.5rem; }

.socials { display: flex; gap: 0.6rem; margin-top: 0.4rem; }
.socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border: 1px solid var(--w-14);
  border-radius: 2px;
  color: var(--w-72);
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease), background-color 0.25s var(--ease);
}
.socials a:hover, .socials a:focus-visible { color: var(--black); background: var(--white); border-color: var(--white); }
.socials svg { width: 17px; height: 17px; }

.footer__bottom {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding-top: 1.5rem;
  border-top: var(--hairline-soft);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: var(--step--2);
  letter-spacing: 0.12em;
  color: var(--w-48);
  text-transform: uppercase;
}

/* -------------------------------------------------------------------------
   21 — SCROLL REVEAL (progressive enhancement only)
   ---------------------------------------------------------------------- */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}
.js [data-reveal].is-visible { opacity: 1; transform: none; }

/* Section rules draw themselves in from the left as they enter view. */
.js .section-head[data-reveal] { position: relative; }
.js .section-head[data-reveal]::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 1px;
  background: var(--w-32);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.9s var(--ease) 0.12s;
}
.js .section-head[data-reveal].is-visible::after { transform: scaleX(1); }

@media (prefers-reduced-motion: reduce) {
  .js [data-reveal],
  .js [data-reveal].is-visible {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .js .section-head[data-reveal]::after { transform: scaleX(1) !important; transition: none !important; }
  .marquee__track { animation: none !important; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

/* -------------------------------------------------------------------------
   22 — NARROW-VIEWPORT REFINEMENTS
   ---------------------------------------------------------------------- */
@media (max-width: 360px) {
  :root { --gutter: 1.15rem; }
  .btn { --btn-pad-x: 1.35rem; font-size: 0.6875rem; letter-spacing: 0.14em; }
  .btn-row { gap: 0.7rem; }
  .btn-row .btn { flex: 1 1 100%; }
  .wordmark__name { font-size: 1.2rem; letter-spacing: 0.2em; }
  .flavor-list li { letter-spacing: 0.08em; }
}

@media (max-width: 480px) {
  .hero__title { word-break: normal; overflow-wrap: break-word; hyphens: none; }
  .signature__outro { align-items: flex-start; }
}
