/* ──────────────────────────────────────────────────────────────────────────
   PURPLE AVE — PREMIUM POLISH LAYER
   Universal refinements applied AFTER all section styles. Loaded last.
   ────────────────────────────────────────────────────────────────────────── */

/* Render serif body & display with proper optical sizing. Strip italic family */
body { font-feature-settings: "ss01", "ss02", "cv11", "calt"; }

/* Hero — premium tightening */
.hero__wordmark {
  font-weight: 350;
  font-variation-settings: "opsz" 144;
}

.hero__wordmark .ave {
  /* Caveat already applied via universal selector. Add organic underline accent. */
  position: relative;
}

.hero__wordmark .dot {
  background: var(--purple-bright);
  box-shadow: 0 0 24px var(--purple-bright);
}

.hero__sub {
  padding-top: clamp(40px, 6vh, 72px);
  padding-bottom: clamp(40px, 6vh, 72px);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline-soft);
}

.hero__sub-center {
  font-family: var(--serif);
  font-weight: 350;
  text-wrap: balance;
}

/* Conviction — deepen visual rhythm */
.conviction__body p {
  text-wrap: pretty;
}

.conviction__quote {
  font-weight: 350;
  text-wrap: balance;
  font-variation-settings: "opsz" 144;
}

.conviction__quote .line {
  position: relative;
  padding: 0.04em 0;
}

/* Manifesto — premium centered pin */
.manifesto__beat {
  font-weight: 350;
  font-variation-settings: "opsz" 144;
  text-wrap: balance;
}

/* Section indices — refined chrome */
.section-index {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: clamp(56px, 9vh, 112px);
  padding-top: 12px;
}
.section-index::before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--purple-bright);
  opacity: 0.6;
}
.section-index .num {
  color: var(--purple-bright);
  font-weight: 500;
}

/* All section titles — balance and breathe */
.pillars__title,
.food__title,
.bev__title,
.store__title,
.ritual__title,
.machine__title,
.streams__title,
.horizon__title {
  font-weight: 350;
  text-wrap: balance;
  font-variation-settings: "opsz" 144;
}

/* All section ledes — pretty wrap and proper measure */
.pillars__lede,
.food__lede,
.bev__lede,
.store__lede,
.ritual__lede,
.streams__lede,
.horizon__lede {
  text-wrap: pretty;
  line-height: 1.55;
  color: var(--fg-muted);
}

/* Pillars — refine borders and depth */
.pillars__grid {
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  background:
    linear-gradient(180deg,
      transparent 0%,
      oklch(0.14 0.030 295 / 0.4) 100%);
}

.pillar {
  position: relative;
  padding: clamp(32px, 4vw, 56px);
  border-right: 1px solid var(--hairline);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: background 400ms var(--ease-out);
}
.pillar:last-child { border-right: none; }
.pillar:hover {
  background: oklch(0.20 0.080 290 / 0.3);
}

.pillar__num {
  font-family: var(--hand);
  font-weight: 500;
  font-size: clamp(80px, 7vw, 128px);
  line-height: 1;
  color: var(--purple-bright);
  letter-spacing: 0;
  margin-bottom: 8px;
}

.pillar__name {
  font-family: var(--serif);
  font-weight: 350;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  text-wrap: balance;
}

.pillar__body {
  color: var(--fg-muted);
  font-size: 14.5px;
  line-height: 1.55;
  text-wrap: pretty;
}

.pillar__label {
  margin-top: auto;
  color: var(--purple-bright);
  font-size: 10px;
  letter-spacing: 0.18em;
  padding-top: 16px;
  border-top: 1px solid var(--hairline-soft);
}

/* Frame edge chrome — refined hairlines + tighter spacing */
.frame-edge {
  position: fixed;
  z-index: 50;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px 28px;
  pointer-events: none;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.frame-edge--tl { top: 0; left: 0; }
.frame-edge--tr { top: 0; right: 0; align-items: flex-end; }
.frame-edge--bl { bottom: 0; left: 0; }
.frame-edge--br { bottom: 0; right: 0; align-items: flex-end; }

/* Scroll progress — purple gradient instead of flat */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg,
    var(--purple-bright) 0%,
    oklch(0.78 0.22 320) 100%);
  z-index: 60;
  box-shadow: 0 0 12px var(--purple-bright);
  transition: width 80ms linear;
}

/* Anchor links and CTAs — premium underline reveal */
a.cta,
button.cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border: 1px solid var(--hairline-bright);
  background: rgba(168, 130, 255, 0.04);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg);
  transition: all 400ms var(--ease-out);
}
a.cta:hover,
button.cta:hover {
  background: var(--purple);
  border-color: var(--purple-bright);
  color: var(--fg);
  box-shadow: 0 8px 32px -8px var(--purple-bright);
}

/* Selection — premium tint */
::selection { background: var(--purple); color: var(--fg); text-shadow: 0 0 8px rgba(168, 130, 255, 0.6); }

/* Smooth focus rings */
:focus-visible {
  outline: 2px solid var(--purple-bright);
  outline-offset: 4px;
  border-radius: 2px;
}

/* Hairlines now have subtle gradient for depth */
.hairline {
  background: linear-gradient(90deg,
    transparent 0%,
    var(--hairline) 15%,
    var(--hairline) 85%,
    transparent 100%);
  height: 1px;
  border: 0;
}

/* Stream cards — premium polish */
.stream {
  padding: clamp(32px, 4vw, 56px);
  border: 1px solid var(--hairline);
  background:
    linear-gradient(180deg,
      oklch(0.16 0.035 290) 0%,
      oklch(0.10 0.020 295) 100%);
  transition: border-color 400ms var(--ease-out), transform 400ms var(--ease-out);
}
.stream:hover {
  border-color: var(--hairline-bright);
  transform: translateY(-2px);
}

/* Ritual cards — premium polish */
.ritual__card {
  padding: clamp(24px, 3vw, 40px);
  border: 1px solid var(--hairline);
  background: linear-gradient(180deg,
    oklch(0.15 0.030 290) 0%,
    oklch(0.09 0.018 295) 100%);
  transition: border-color 400ms var(--ease-out), transform 400ms var(--ease-out);
}
.ritual__card:hover {
  border-color: var(--hairline-bright);
  transform: translateY(-2px);
}

/* Store cards — premium polish */
.store__card {
  border: 1px solid var(--hairline);
  background: linear-gradient(180deg,
    oklch(0.16 0.035 290) 0%,
    oklch(0.10 0.020 295) 100%);
}

/* All placeholders refined — premium texture */
.ph {
  background:
    repeating-linear-gradient(
      135deg,
      oklch(0.20 0.020 290) 0 1px,
      transparent 1px 10px
    ),
    linear-gradient(
      180deg,
      oklch(0.22 0.025 290) 0%,
      oklch(0.12 0.018 295) 100%);
  border: 1px solid var(--hairline-soft);
}

.ph::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 30% 30%,
    rgba(168, 130, 255, 0.4) 0%,
    transparent 55%);
  opacity: 0.5;
  mix-blend-mode: screen;
}

.ph::after {
  content: "";
  position: absolute;
  top: 16px;
  left: 16px;
  width: 18px;
  height: 18px;
  border: 1px solid var(--purple-bright);
  border-radius: 50%;
  opacity: 0.4;
}

/* Form fields — premium */
input[type="email"] {
  font-family: var(--grotesque);
  font-size: 16px;
  border-bottom: 1px solid var(--hairline);
  padding: 14px 0;
  transition: border-color 300ms var(--ease-out);
}
input[type="email"]:focus {
  border-bottom-color: var(--purple-bright);
  outline: none;
}

/* Refined typography for body copy */
p { text-wrap: pretty; }

/* Fix hero subline to not be italic */
.hero__sub-center .serif-it,
.hero__sub-center em { font-family: var(--hand) !important; font-style: normal; font-weight: 500; font-size: 1.18em; color: var(--purple-bright); }
.hero__wordmark,
.conviction__quote,
.manifesto__beat,
.pillars__title,
.food__title,
.bev__title,
.store__title,
.store__card-title,
.store__final,
.ritual__title,
.ritual__name,
.machine__title,
.machine__quote,
.machine__node-name,
.streams__title,
.stream__name,
.horizon__title,
.signoff__lockup,
.pillar__name,
.food__layer-name,
.bev__tile-name,
.bev__tile--statement .stmt {
  font-family: var(--serif);
  font-style: normal;
  font-weight: 350;
  font-size: clamp(28px, 2.4vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--fg);
  position: relative;
  font-variation-settings: "opsz" 144;
  text-wrap: balance;
}
.hero__wordmark { font-weight: 350; letter-spacing: -0.045em; }
.signoff__lockup { font-weight: 350; letter-spacing: -0.04em; }

/* ──────────────────────────────────────────────────────────────────────────
   Universal handwritten accents — every italic em inside a title or display
   line uses Caveat. Modern, warm, off-system feel.
   ────────────────────────────────────────────────────────────────────────── */
em.hand,
.hand-em,
.hero__wordmark .ave,
.conviction__quote .line--em,
.manifesto__beat .em-fast,
.pillars__title em,
.food__title em,
.bev__title em,
.bev__tile--statement .stmt em,
.store__title em,
.store__card-title em,
.store__final em,
.ritual__title em,
.machine__title em,
.machine__quote em,
.streams__title em,
.stream__name em,
.horizon__title em,
.signoff__lockup em {
  font-family: var(--hand);
  font-style: normal;
  font-weight: 500;
  color: var(--purple-bright);
  letter-spacing: 0.005em;
  font-size: 1.18em;
  line-height: inherit;
  vertical-align: -0.04em;
}

.conviction__body em {
  font-family: var(--hand);
  font-style: normal;
  font-weight: 500;
  color: var(--purple-bright);
  font-size: 1.25em;
  letter-spacing: 0.005em;
  line-height: 0.95;
}

/* ──────────────────────────────────────────────────────────────────────────
   Background atmosphere — animated dot grid + drifting purple glow
   ────────────────────────────────────────────────────────────────────────── */
.atmos-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
  background: var(--canvas);
}

.atmos-bg__dots {
  position: absolute;
  inset: -10%;
  background-image:
    radial-gradient(circle, rgba(180, 145, 255, 0.55) 1.4px, transparent 1.8px),
    radial-gradient(circle, rgba(220, 200, 255, 0.18) 0.6px, transparent 1px);
  background-size: 28px 28px, 14px 14px;
  background-position: 0 0, 7px 7px;
  opacity: 1;
  animation: dotsDrift 90s linear infinite;
  mask-image: radial-gradient(ellipse 90% 75% at 50% 50%, #000 30%, rgba(0,0,0,0.35) 75%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 90% 75% at 50% 50%, #000 30%, rgba(0,0,0,0.35) 75%, transparent 100%);
}

.atmos-bg__glow-1,
.atmos-bg__glow-2 {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  mix-blend-mode: screen;
  pointer-events: none;
}

.atmos-bg__glow-1 {
  width: 70vmax;
  height: 70vmax;
  left: -15%;
  top: 5%;
  background: radial-gradient(circle, rgba(110, 60, 220, 0.55) 0%, rgba(110, 60, 220, 0) 60%);
  animation: glowDrift1 32s ease-in-out infinite alternate;
}

.atmos-bg__glow-2 {
  width: 55vmax;
  height: 55vmax;
  right: -10%;
  bottom: -10%;
  background: radial-gradient(circle, rgba(80, 30, 180, 0.45) 0%, rgba(80, 30, 180, 0) 60%);
  animation: glowDrift2 48s ease-in-out infinite alternate;
}

@keyframes dotsDrift {
  0%   { background-position: 0 0; }
  100% { background-position: 260px 260px; }
}

@keyframes glowDrift1 {
  0%   { transform: translate(0, 0) scale(1); opacity: 0.7; }
  100% { transform: translate(8vw, 6vh) scale(1.15); opacity: 1; }
}

@keyframes glowDrift2 {
  0%   { transform: translate(0, 0) scale(1); opacity: 0.5; }
  100% { transform: translate(-6vw, -10vh) scale(1.2); opacity: 0.85; }
}

/* ── 01. HERO ─────────────────────────────────────────────────────────────── */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 var(--gutter);
  overflow: hidden;
}

.hero__atmos {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero__atmos::before {
  content: "";
  position: absolute;
  width: 80vw;
  height: 80vw;
  left: 50%;
  top: 55%;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    circle,
    var(--purple-glow) 0%,
    var(--purple-deep) 30%,
    transparent 65%
  );
  filter: blur(100px);
  opacity: 0.85;
}

.hero__atmos::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      0deg,
      transparent 0,
      transparent 80px,
      oklch(0.30 0.05 290 / 0.06) 80px,
      oklch(0.30 0.05 290 / 0.06) 81px
    );
  mix-blend-mode: screen;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-block);
}

.hero__eyebrow {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
}

.hero__wordmark {
  font-family: var(--serif);
  font-size: var(--t-mega);
  line-height: 0.85;
  letter-spacing: -0.05em;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hero__wordmark .row { display: flex; align-items: baseline; gap: 0.04em; padding-bottom: 0.05em; }
/* .hero__wordmark .ave handled by universal hand selector */
.hero__wordmark .dot {
  display: inline-block;
  width: 0.18em;
  height: 0.18em;
  background: var(--purple-bright);
  border-radius: 50%;
  margin-left: 0.06em;
  align-self: center;
  margin-bottom: 0.06em;
}

.hero__sub {
  display: grid;
  grid-template-columns: minmax(0, 320px) 1fr minmax(0, 280px);
  gap: 32px;
  align-items: end;
  padding-top: 48px;
  border-top: 1px solid var(--hairline);
}

.hero__sub-left   { color: var(--fg-muted); }
.hero__sub-center { font-family: var(--serif); font-weight: 350; font-size: clamp(20px, 1.7vw, 26px); line-height: 1.3; letter-spacing: -0.01em; color: var(--fg-muted); }
.hero__sub-right  { text-align: right; color: var(--fg-muted); }

.scroll-cue {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.scroll-cue__line { width: 36px; height: 1px; background: var(--fg-muted); }


/* ── 02. THE CONVICTION ──────────────────────────────────────────────────── */

.conviction {
  position: relative;
  padding: var(--space-section) var(--gutter);
}

.conviction__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(48px, 8vw, 160px);
  align-items: start;
}

.conviction__body {
  max-width: 52ch;
  font-size: var(--t-body-lg);
  line-height: 1.55;
  color: var(--fg-muted);
}
.conviction__body p { margin-bottom: 1.4em; }
.conviction__body strong { color: var(--fg); font-weight: 500; }
.conviction__body em { font-family: var(--hand); font-style: normal; font-weight: 500; color: var(--purple-bright); font-size: 1.25em; letter-spacing: 0.005em; }

.conviction__quote {
  position: sticky;
  top: 12vh;
  font-family: var(--serif);
  font-size: clamp(56px, 7vw, 120px);
  line-height: 0.96;
  letter-spacing: -0.025em;
}

.conviction__quote .line { display: block; }
/* line--em handled by universal hand selector */
.conviction__quote .line--strike {
  position: relative;
  display: inline-block;
}
.conviction__quote .line--strike::after {
  content: "";
  position: absolute;
  left: -2%;
  right: -2%;
  top: 52%;
  height: 4px;
  background: var(--purple-bright);
  transform-origin: left;
}


/* ── 03. MANIFESTO MOMENT ────────────────────────────────────────────────── */

.manifesto {
  position: relative;
  background: var(--canvas-deep);
}

.manifesto__pin {
  height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 var(--gutter);
  text-align: center;
}

.manifesto__stage {
  position: relative;
  width: 100%;
  max-width: 1400px;
}

.manifesto__beat {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: clamp(80px, 14vw, 220px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  opacity: 0;
}

.manifesto__beat--1 { position: relative; }
/* em-fast handled by universal hand selector */

.manifesto__not {
  position: relative;
  display: inline-block;
}
.manifesto__not::after {
  content: "";
  position: absolute;
  left: -3%;
  right: -3%;
  top: 50%;
  height: 6px;
  background: var(--purple-bright);
  transform: scaleX(0);
  transform-origin: left center;
}
.manifesto__not.is-struck::after { transform: scaleX(1); transition: transform 600ms var(--ease-out); }

.manifesto__caption {
  position: absolute;
  bottom: 8vh;
  left: 50%;
  transform: translateX(-50%);
  color: var(--fg-muted);
}


/* ── 04. THE FOUR PILLARS ────────────────────────────────────────────────── */

.pillars {
  padding: var(--space-section) var(--gutter);
}

.pillars__head {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(48px, 8vw, 160px);
  margin-bottom: clamp(80px, 12vh, 160px);
  align-items: end;
}

.pillars__title { font-family: var(--serif); font-size: var(--t-opener); line-height: 0.95; letter-spacing: -0.025em; }
.pillars__title em { font-style: italic; color: var(--purple-bright); }

.pillars__lede { color: var(--fg-muted); font-size: var(--t-body-lg); max-width: 50ch; }

.pillars__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

.pillar {
  position: relative;
  padding: clamp(40px, 5vw, 64px) clamp(24px, 2.5vw, 40px);
  border-right: 1px solid var(--hairline);
  display: flex;
  flex-direction: column;
  gap: 32px;
  min-height: 480px;
  transition: background 400ms var(--ease-out);
}
.pillar:last-child { border-right: 0; }
.pillar:hover { background: var(--surface); }

.pillar__num {
  font-family: var(--hand);
  font-weight: 500;
  font-size: clamp(72px, 6.5vw, 110px);
  line-height: 1;
  color: var(--purple-bright);
  letter-spacing: 0;
}

.pillar__name {
  font-family: var(--serif);
  font-size: clamp(28px, 2.4vw, 36px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin-top: auto;
}

.pillar__body {
  color: var(--fg-muted);
  font-size: 16px;
  line-height: 1.55;
}

.pillar__label {
  margin-top: auto;
  color: var(--fg-dim);
}


/* ── 05. THE FOOD LAYER ──────────────────────────────────────────────────── */

.food {
  position: relative;
  padding: var(--space-section) var(--gutter);
  background: var(--canvas-deep);
}

.food__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 120px);
  margin-bottom: clamp(80px, 12vh, 140px);
  align-items: end;
}

.food__title { font-family: var(--serif); font-size: var(--t-opener); line-height: 0.95; letter-spacing: -0.025em; }
.food__title em { font-style: italic; color: var(--purple-bright); }
.food__lede   { color: var(--fg-muted); font-size: var(--t-body-lg); max-width: 48ch; }

.food__stage {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 5vw, 96px);
  align-items: stretch;
}

.food__stack {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--hairline);
}

.food__layer {
  display: grid;
  grid-template-columns: 80px 1fr 1.4fr;
  gap: 24px;
  padding: clamp(28px, 3.5vw, 44px) clamp(20px, 2.5vw, 36px);
  border-bottom: 1px solid var(--hairline);
  align-items: center;
  transition: background 400ms var(--ease-out);
}
.food__layer:last-child { border-bottom: 0; }
.food__layer:hover { background: var(--surface); }

.food__layer-num { font-family: var(--mono); font-size: 11px; letter-spacing: 0.2em; color: var(--purple-bright); }
.food__layer-name { font-family: var(--serif); font-size: clamp(24px, 2.2vw, 36px); letter-spacing: -0.015em; }
.food__layer-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.food__layer-list li { display: inline-flex; align-items: center; gap: 6px; }
.food__layer-list li::before { content: "·"; color: var(--purple-bright); }
.food__layer-list li:first-child::before { display: none; }

.food__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1.2fr 1fr 0.9fr;
  gap: 16px;
}
.food__images .ph:nth-child(1) { grid-column: 1 / -1; aspect-ratio: 16 / 9; }
.food__images .ph:nth-child(2) { aspect-ratio: 1 / 1.1; }
.food__images .ph:nth-child(3) { aspect-ratio: 1 / 1.1; }
.food__images .ph:nth-child(4) { grid-column: 1 / -1; aspect-ratio: 16 / 6; }


/* ── 06. THE BEVERAGE PROGRAM ────────────────────────────────────────────── */

.bev {
  padding: var(--space-section) var(--gutter);
}

.bev__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 120px);
  margin-bottom: clamp(64px, 10vh, 120px);
  align-items: end;
}

.bev__title { font-family: var(--serif); font-size: var(--t-opener); line-height: 0.95; letter-spacing: -0.025em; }
.bev__lede { color: var(--fg-muted); font-size: var(--t-body-lg); max-width: 44ch; }

.bev__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 220px;
  gap: 18px;
}

/* ── Card chrome ───────────────────────────────────────────────────────── */
.bev__tile {
  --tile-accent: var(--purple-bright);
  --tile-deep: oklch(0.35 0.20 290);
  position: relative;
  border: 1px solid var(--hairline);
  border-radius: 4px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(180deg,
      oklch(0.18 0.040 290) 0%,
      oklch(0.11 0.025 295) 100%);
  transition:
    border-color 500ms var(--ease-out),
    transform 500ms var(--ease-out),
    box-shadow 500ms var(--ease-out);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 1px 0 rgba(0, 0, 0, 0.4);
}

/* Top hairline accent bar — premium signal */
.bev__tile::before {
  content: "";
  position: absolute;
  top: 0;
  left: 28px;
  right: 28px;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--tile-accent) 50%,
    transparent 100%);
  opacity: 0.4;
  transition: opacity 500ms var(--ease-out);
  z-index: 2;
}

/* Soft accent glow from upper-right */
.bev__tile::after {
  content: "";
  position: absolute;
  top: -40%;
  right: -20%;
  width: 70%;
  height: 90%;
  background: radial-gradient(circle, var(--tile-accent) 0%, transparent 60%);
  opacity: 0.18;
  filter: blur(40px);
  transition: opacity 500ms var(--ease-out), transform 500ms var(--ease-out);
  pointer-events: none;
  z-index: 0;
}

.bev__tile:hover {
  border-color: var(--tile-accent);
  transform: translateY(-3px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 16px 48px -16px var(--tile-accent),
    0 1px 0 rgba(0, 0, 0, 0.4);
}
.bev__tile:hover::before { opacity: 1; }
.bev__tile:hover::after { opacity: 0.32; transform: scale(1.1); }
.bev__tile:hover .bev__tile-meta { opacity: 1; transform: translateY(0); }
.bev__tile:hover .bev__tile-num-big {
  font-family: var(--hand);
  font-weight: 500;
  font-size: 56px;
  line-height: 0.85;
  letter-spacing: 0;
  color: var(--fg-faint);
  transition: color 500ms var(--ease-out), transform 500ms var(--ease-out);
}

.bev__tile-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  min-height: 32px;
}

.bev__tile-num {
  font-family: var(--mono);
  font-size: 11px;
  line-height: 1.3;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: oklch(0.86 0.015 292);
}

.bev__tile-num-big {
  position: absolute;
  top: -10px;
  right: 0;
  z-index: -1;
  font-family: var(--serif);
  font-size: clamp(54px, 5vw, 82px);
  line-height: 0.8;
  letter-spacing: -0.04em;
  color: var(--fg-faint);
  opacity: 0.28;
  pointer-events: none;
}

/* ── Card bottom: name + line + meta ───────────────────────────────────── */
.bev__tile-body {
  position: relative;
  z-index: 1;
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bev__tile-name {
  font-family: var(--serif);
  font-weight: 350;
  font-size: clamp(24px, 1.9vw, 30px);
  line-height: 1.05;
  letter-spacing: -0.018em;
  color: var(--fg);
}

.bev__tile-line {
  color: var(--fg-muted);
  font-size: 13.5px;
  line-height: 1.5;
  max-width: 36ch;
}

.bev__tile-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
  flex-wrap: wrap;
  opacity: 0.55;
  transform: translateY(4px);
  transition: opacity 400ms var(--ease-out), transform 400ms var(--ease-out);
}

.bev__tile-chip {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tile-accent);
  padding: 4px 10px;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  background: rgba(168, 130, 255, 0.04);
}

/* ── Per-category accent tuning ────────────────────────────────────────── */
.bev__tile.cat-coffee   { --tile-accent: oklch(0.72 0.18 60); }   /* warm amber */
.bev__tile.cat-tea      { --tile-accent: oklch(0.78 0.15 145); }  /* sage green */
.bev__tile.cat-juice    { --tile-accent: oklch(0.78 0.20 30); }   /* citrus orange */
.bev__tile.cat-smoothie { --tile-accent: oklch(0.75 0.22 350); }  /* berry pink */
.bev__tile.cat-shake    { --tile-accent: oklch(0.72 0.18 230); }  /* athletic blue */
.bev__tile.cat-mocktail { --tile-accent: oklch(0.78 0.20 320); }  /* purple pink */

/* ── Statement tile (unchanged geometry, premium polish) ──────────────── */
.bev__tile--statement {
  background:
    radial-gradient(ellipse at center, oklch(0.20 0.10 295) 0%, oklch(0.06 0.015 295) 70%);
  border: 1px solid oklch(0.55 0.15 290 / 0.4);
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
}
.bev__tile--statement::before { opacity: 0.7; }
.bev__tile--statement::after {
  background: radial-gradient(circle, var(--purple-bright) 0%, transparent 60%);
  opacity: 0.25;
  top: 50%; left: 50%; right: auto;
  width: 120%; height: 120%;
  transform: translate(-50%, -50%);
}
.bev__tile--statement .stmt {
  font-family: var(--serif);
  font-style: normal;
  font-weight: 350;
  font-size: clamp(28px, 2.6vw, 42px);
  line-height: 1.15;
  letter-spacing: -0.018em;
  color: var(--fg);
  position: relative;
  font-variation-settings: "opsz" 144;
  text-wrap: balance;
}
.bev__tile--statement .stmt::before,
.bev__tile--statement .stmt::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 32px;
  height: 1px;
  background: var(--purple-bright);
  transform: translateX(-50%);
  opacity: 0.6;
}
.bev__tile--statement .stmt::before { top: -24px; }
.bev__tile--statement .stmt::after  { bottom: -24px; }

/* ── Hero feature tile (bev-1) — tall format ──────────────────────────── */
.bev__tile--feature {
  padding: 32px;
}
.bev__tile--feature .bev__tile-name { font-size: clamp(36px, 3vw, 52px); }
.bev__tile--feature .bev__tile-line { font-size: 15px; max-width: 42ch; }
.bev__tile--feature .bev__tile-num-big { font-size: 96px; }

/* Texture pattern only on feature card */
.bev__tile--feature .bev__tile-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 80% 20%, var(--tile-accent) 0%, transparent 35%),
    repeating-linear-gradient(45deg,
      rgba(255, 255, 255, 0.02) 0px,
      rgba(255, 255, 255, 0.02) 1px,
      transparent 1px,
      transparent 8px);
  opacity: 0.5;
  z-index: 0;
}

/* Beverage grid placement (asymmetric) */
.bev__tile.bev-1 { grid-column: span 4; grid-row: span 2; }
.bev__tile.bev-2 { grid-column: span 4; grid-row: span 1; }
.bev__tile.bev-3 { grid-column: span 4; grid-row: span 1; }
.bev__tile.bev-4 { grid-column: span 4; grid-row: span 1; }   /* statement */
.bev__tile.bev-5 { grid-column: span 4; grid-row: span 1; }
.bev__tile.bev-6 { grid-column: span 5; grid-row: span 1; }
.bev__tile.bev-7 { grid-column: span 7; grid-row: span 1; }


/* ── 07. THE STORE ────────────────────────────────────────────────────────── */

.store {
  position: relative;
  background: var(--canvas-deep);
  overflow: hidden;
}

.store__head {
  padding: var(--space-section) var(--gutter) clamp(48px, 8vh, 96px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 120px);
  align-items: end;
}

.store__title { font-family: var(--serif); font-size: var(--t-opener); line-height: 0.95; letter-spacing: -0.025em; }
.store__title em { font-style: italic; color: var(--purple-bright); }
.store__lede { color: var(--fg-muted); font-size: var(--t-body-lg); max-width: 46ch; }

.store__track-wrap {
  position: relative;
  height: 100svh;
  overflow: hidden;
}

.store__track {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  display: flex;
  align-items: center;
  gap: clamp(32px, 4vw, 80px);
  padding: 0 var(--gutter);
  will-change: transform;
}

.store__card {
  position: relative;
  flex: 0 0 auto;
  width: clamp(380px, 38vw, 560px);
  height: 70vh;
  border: 1px solid var(--hairline);
  background: var(--surface);
  padding: clamp(28px, 3vw, 44px);
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: clamp(20px, 2.5vw, 32px);
}

.store__card-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.store__card-num   { color: var(--purple-bright); }
.store__card-range { color: var(--fg-muted); }

.store__card-title {
  font-family: var(--serif);
  font-size: clamp(48px, 5vw, 80px);
  line-height: 0.95;
  letter-spacing: -0.025em;
}
.store__card-title em { font-style: italic; color: var(--purple-bright); }

.store__elevation {
  position: relative;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: 24px 0;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.store__elevation svg {
  width: 100%;
  height: 100%;
  max-height: 220px;
}

.store__envs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.store__envs li::before { content: "·"; color: var(--purple-bright); margin-right: 8px; }
.store__envs li:first-child::before { display: none; margin-right: 0; }

.store__final {
  flex: 0 0 auto;
  width: clamp(420px, 45vw, 640px);
  height: 70vh;
  border: 1px solid var(--hairline-bright);
  background: var(--canvas);
  padding: clamp(36px, 4vw, 64px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 64px);
  line-height: 1.0;
  letter-spacing: -0.025em;
}
.store__final em { font-style: italic; color: var(--purple-bright); }

.store__progress {
  position: absolute;
  bottom: 32px;
  left: var(--gutter);
  right: var(--gutter);
  height: 1px;
  background: var(--hairline);
}
.store__progress-fill {
  position: absolute;
  inset: 0;
  width: 0%;
  background: var(--purple-bright);
  transition: width 80ms linear;
}


/* ── 08. THE RITUAL ──────────────────────────────────────────────────────── */

.ritual {
  padding: var(--space-section) var(--gutter);
}

.ritual__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 120px);
  margin-bottom: clamp(64px, 10vh, 120px);
  align-items: end;
}

.ritual__title { font-family: var(--serif); font-size: var(--t-opener); line-height: 0.95; letter-spacing: -0.025em; }
.ritual__title em { font-style: italic; color: var(--purple-bright); }
.ritual__lede { color: var(--fg-muted); font-size: var(--t-body-lg); max-width: 44ch; }

.ritual__timeline {
  position: relative;
  border-top: 1px solid var(--hairline);
  padding-top: 32px;
}

.ritual__line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--purple-bright);
  transform-origin: left;
  transform: scaleX(0);
}

.ritual__row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.ritual__moment {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0 4px 32px;
}

.ritual__moment::before {
  content: "";
  position: absolute;
  top: -33px;
  left: 0;
  width: 1px;
  height: 24px;
  background: var(--purple-bright);
}

.ritual__hour     { color: var(--purple-bright); }
.ritual__name     { font-family: var(--serif); font-size: clamp(28px, 2.6vw, 44px); line-height: 1.0; letter-spacing: -0.02em; }
.ritual__category { font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--fg-muted); line-height: 1.4; }
.ritual__mood     { color: var(--fg-muted); font-size: 14px; line-height: 1.5; max-width: 28ch; }

.ritual__strip {
  margin-top: auto;
  height: 80px;
  border: 1px solid var(--hairline-soft);
}


/* ── 09. THE VERTICAL MACHINE ────────────────────────────────────────────── */

.machine {
  position: relative;
  padding: var(--space-section) var(--gutter);
  background: var(--canvas-deep);
}

.machine__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 120px);
  margin-bottom: clamp(64px, 10vh, 120px);
  align-items: end;
}

.machine__title { font-family: var(--serif); font-size: var(--t-opener); line-height: 0.95; letter-spacing: -0.025em; }
.machine__title em { font-style: italic; color: var(--purple-bright); }
.machine__quote {
  font-family: var(--serif);
  font-size: clamp(28px, 2.6vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.018em;
  max-width: 22ch;
}
.machine__quote em { font-style: italic; color: var(--purple-bright); }

.machine__diagram {
  position: relative;
  border: 1px solid var(--hairline);
  padding: clamp(40px, 5vw, 80px) clamp(20px, 2.5vw, 40px);
  background: var(--canvas);
}

.machine__chain {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  align-items: start;
  position: relative;
}

.machine__chain::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: var(--hairline);
}
.machine__chain-fill {
  position: absolute;
  top: 22px;
  left: 8%;
  height: 1px;
  background: var(--purple-bright);
  width: 0%;
}

.machine__node {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  padding-top: 0;
}

.machine__node-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--canvas-deep);
  border: 1px solid var(--purple-bright);
  margin: 16px 0 8px;
  position: relative;
  z-index: 2;
  transition: background 300ms var(--ease-out), box-shadow 300ms var(--ease-out);
}
.machine__node.is-active .machine__node-dot {
  background: var(--purple-bright);
  box-shadow: 0 0 0 6px var(--purple-glow);
}

.machine__node-num   { color: var(--purple-bright); }
.machine__node-name  { font-family: var(--serif); font-size: clamp(22px, 2vw, 30px); letter-spacing: -0.015em; line-height: 1.05; }
.machine__node-line  { color: var(--fg-muted); font-size: 13px; line-height: 1.5; max-width: 28ch; }


/* ── 10. THE THREE STREAMS ───────────────────────────────────────────────── */

.streams {
  padding: var(--space-section) var(--gutter);
}

.streams__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 120px);
  margin-bottom: clamp(64px, 10vh, 120px);
  align-items: end;
}

.streams__title { font-family: var(--serif); font-size: var(--t-opener); line-height: 0.95; letter-spacing: -0.025em; }
.streams__title em { font-style: italic; color: var(--purple-bright); }
.streams__lede { color: var(--fg-muted); font-size: var(--t-body-lg); max-width: 44ch; }

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

.stream {
  position: relative;
  height: 640px;
  border: 1px solid var(--hairline);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  background: var(--surface);
}

.stream__fill {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 0%;
  background: linear-gradient(
    180deg,
    transparent 0%,
    var(--purple-deep) 40%,
    var(--purple) 100%
  );
  z-index: 0;
  transition: height 200ms linear;
}

.stream__fill::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--purple-bright);
  box-shadow: 0 0 24px var(--purple-bright);
}

.stream > * { position: relative; z-index: 1; }

.stream__num   { color: var(--purple-bright); }
.stream__name  { font-family: var(--serif); font-size: clamp(40px, 4vw, 64px); line-height: 0.95; letter-spacing: -0.025em; }
/* .stream__name em — handled by universal Caveat selector */
.stream__body { color: var(--fg-muted); font-size: 14px; line-height: 1.55; max-width: 32ch; }
.stream__body strong { color: var(--fg); font-weight: 500; }

.stream__meta {
  border-top: 1px solid var(--hairline);
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  color: var(--fg-muted);
}


/* ── 11. THE HORIZON ─────────────────────────────────────────────────────── */

.horizon {
  padding: var(--space-section) var(--gutter);
  background: var(--canvas-deep);
}

.horizon__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 120px);
  margin-bottom: clamp(64px, 10vh, 120px);
  align-items: end;
}

.horizon__title { font-family: var(--serif); font-size: var(--t-opener); line-height: 0.95; letter-spacing: -0.025em; }
.horizon__title em { font-style: italic; color: var(--purple-bright); }
.horizon__lede { color: var(--fg-muted); font-size: var(--t-body-lg); max-width: 44ch; }

.horizon__plan {
  position: relative;
  border: 1px solid var(--hairline);
  padding: clamp(40px, 5vw, 80px);
  background: var(--canvas);
  min-height: 520px;
}

.horizon__svg {
  width: 100%;
  height: 100%;
  min-height: 480px;
}

.horizon__legend {
  position: absolute;
  bottom: 32px;
  left: 32px;
  right: 32px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.horizon__legend > div { color: var(--fg-muted); }
.horizon__legend strong { color: var(--fg); font-weight: 400; font-family: var(--serif); font-size: clamp(20px, 1.6vw, 26px); display: block; margin-top: 6px; letter-spacing: -0.01em; }


/* ── 12. SIGN-OFF ────────────────────────────────────────────────────────── */

.signoff {
  padding: var(--space-section) var(--gutter) clamp(64px, 10vh, 120px);
  position: relative;
  text-align: center;
}

.signoff__lockup {
  font-family: var(--serif);
  font-size: clamp(80px, 12vw, 200px);
  line-height: 0.88;
  letter-spacing: -0.04em;
  margin-bottom: clamp(48px, 8vh, 96px);
}
.signoff__lockup em { font-style: italic; color: var(--purple-bright); }

.signoff__form {
  max-width: 480px;
  margin: 0 auto clamp(48px, 6vh, 80px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.signoff__label {
  color: var(--fg-muted);
  margin-bottom: 4px;
}

.signoff__input-row {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--hairline);
  transition: border-color 300ms var(--ease-out);
}
.signoff__input-row:focus-within { border-bottom-color: var(--purple-bright); }

.signoff__input {
  flex: 1;
  padding: 16px 0;
  font-size: 16px;
  color: var(--fg);
}
.signoff__input::placeholder { color: var(--fg-dim); }

.signoff__btn {
  padding: 16px 0 16px 24px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-muted);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: color 300ms var(--ease-out);
}
.signoff__btn:hover { color: var(--purple-bright); }
.signoff__btn .arrow { width: 24px; height: 1px; background: currentColor; transition: width 300ms var(--ease-out); }
.signoff__btn:hover .arrow { width: 36px; }

.signoff__footer {
  border-top: 1px solid var(--hairline);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: var(--fg-dim);
  text-align: left;
}

.signoff__footer-center { text-align: center; flex: 1; }
.signoff__footer-right  { text-align: right; }


/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1100px) {
  .pillars__head,
  .food__head,
  .bev__head,
  .store__head,
  .ritual__head,
  .machine__head,
  .streams__head,
  .horizon__head { grid-template-columns: 1fr; gap: 32px; }

  .conviction__grid { grid-template-columns: 1fr; gap: 48px; }
  .conviction__quote { position: relative; top: 0; }

  .pillars__grid { grid-template-columns: repeat(2, 1fr); }
  .pillar:nth-child(2) { border-right: 0; }
  .pillar:nth-child(1), .pillar:nth-child(2) { border-bottom: 1px solid var(--hairline); }

  .food__stage { grid-template-columns: 1fr; }
  .food__images { grid-template-rows: auto; }

  .bev__grid { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 160px; }
  .bev__tile.bev-1 { grid-column: span 6; }
  .bev__tile.bev-2,
  .bev__tile.bev-3 { grid-column: span 3; }
  .bev__tile.bev-4 { grid-column: span 6; }
  .bev__tile.bev-5,
  .bev__tile.bev-6,
  .bev__tile.bev-7 { grid-column: span 3; }
  .bev__tile.bev-7 { grid-column: span 6; }

  .machine__chain { grid-template-columns: 1fr; gap: 32px; }
  .machine__chain::before, .machine__chain-fill { display: none; }
  .machine__node-dot { margin: 0 0 8px; }

  .streams__grid { grid-template-columns: 1fr; }
  .stream { height: 480px; }

  .ritual__row { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .ritual__moment { padding-bottom: 16px; }
}

@media (max-width: 640px) {
  .hero__eyebrow,
  .frame-edge--tr {
    display: none;
  }

  .hero__sub { grid-template-columns: 1fr; gap: 24px; }
  .hero__sub-right { text-align: left; }

  .pillars__grid { grid-template-columns: 1fr; }
  .pillar { border-right: 0; border-bottom: 1px solid var(--hairline); min-height: 360px; }
  .pillar:last-child { border-bottom: 0; }

  .food__layer { grid-template-columns: 60px 1fr; }
  .food__layer-list { grid-column: 1 / -1; }

  .bev__grid { grid-template-columns: 1fr; }
  .bev__grid > .bev__tile { grid-column: span 1 !important; }

  .ritual__row { grid-template-columns: 1fr; }

  .signoff__footer { flex-direction: column; gap: 16px; }
  .signoff__footer-center, .signoff__footer-right { text-align: left; }
}


/* ──────────────────────────────────────────────────────────────────────────
   NUCLEAR — Forbid Fraunces italic anywhere. Caveat is the only emphasis font.
   ────────────────────────────────────────────────────────────────────────── */
em, i,
.line--em, .em-fast, .ave,
[class*="__title"] em,
[class*="__quote"] em,
[class*="__name"] em,
[class*="-em"] {
  font-family: var(--hand) !important;
  font-style: normal !important;
}

/* Keep conviction quote, manifesto beat, and hero wordmark `.ave` as their original block/inline-block layout — these are display-scale and need precise placement */
.conviction__quote .line--em,
.manifesto__beat .em-fast,
.hero__wordmark .ave {
  font-family: var(--hand) !important;
  font-style: normal !important;
  font-weight: 500;
  letter-spacing: 0;
  font-size: 0.92em;
  vertical-align: baseline;
}

.conviction__quote .line--em {
  color: var(--purple-bright);
  display: block;        /* match sibling .line */
  line-height: 0.96;
}

.manifesto__beat .em-fast {
  color: var(--purple-bright);
  display: inline-block;  /* manifesto beats are single-element blocks; em-fast sits inline */
  margin-left: 0.06em;
  line-height: inherit;
}

.hero__wordmark .ave {
  color: var(--purple-bright);
  font-size: 1em;
  display: inline-block;
  line-height: 0.85;
}

/* Kinetic manifesto replacement */
.manifesto {
  background:
    radial-gradient(ellipse at 50% 45%, oklch(0.17 0.055 292 / 0.52), transparent 44%),
    linear-gradient(180deg, oklch(0.030 0.006 292) 0%, oklch(0.010 0.003 292) 100%);
  overflow: hidden;
}

.manifesto__pin {
  text-align: left;
}

.manifesto__stage {
  min-height: min(680px, 72svh);
  display: grid;
  place-items: center;
  isolation: isolate;
}

.manifesto__stage::before {
  content: "GREAT";
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: -2;
  transform: translate(-50%, -52%);
  font-family: var(--serif);
  font-size: clamp(160px, 25vw, 420px);
  line-height: 0.8;
  letter-spacing: -0.055em;
  color: oklch(0.92 0.02 292 / 0.045);
  pointer-events: none;
}

.manifesto__stage::after {
  content: "";
  position: absolute;
  inset: 8% 0;
  z-index: -2;
  border-top: 1px solid var(--hairline-soft);
  border-bottom: 1px solid var(--hairline-soft);
  background:
    linear-gradient(90deg, transparent, oklch(0.36 0.15 292 / 0.10), transparent),
    repeating-linear-gradient(90deg, transparent 0 78px, oklch(0.70 0.08 292 / 0.055) 78px 79px);
  transform: skewY(-4deg);
}

.manifesto__system-label {
  position: absolute;
  top: clamp(18px, 5vh, 56px);
  left: 0;
  color: var(--fg-dim);
}

.manifesto__speed-field {
  position: absolute;
  inset: 22% 4% 22% 4%;
  z-index: -1;
  display: grid;
  align-content: center;
  gap: clamp(18px, 4vh, 36px);
  pointer-events: none;
}

.manifesto__speed-line {
  display: block;
  height: 1px;
  background: linear-gradient(90deg, transparent, oklch(0.70 0.24 292 / 0.70), transparent);
  transform-origin: left center;
  opacity: 0.26;
}

.manifesto__speed-line:nth-child(2),
.manifesto__speed-line:nth-child(4) {
  width: 72%;
  margin-left: auto;
}

.manifesto__beat {
  inset: auto;
  width: min(1180px, 92vw);
  min-height: 420px;
  display: grid;
  place-items: center;
  text-align: center;
}

.manifesto__beat--food {
  justify-items: start;
  text-align: left;
}

.manifesto__beat--fast {
  justify-items: end;
  text-align: right;
}

.manifesto__beat--not {
  position: absolute;
}

.manifesto__kicker,
.manifesto__sub {
  display: block;
  color: var(--fg-dim);
}

.manifesto__main {
  display: block;
  font-family: var(--serif);
  font-size: clamp(92px, 15vw, 220px);
  font-weight: 350;
  line-height: 0.82;
  letter-spacing: -0.055em;
}

.manifesto__beat--fast .manifesto__main {
  font-family: var(--hand);
  font-size: clamp(150px, 24vw, 360px);
  color: var(--purple-bright);
  text-shadow: 0 0 80px oklch(0.62 0.24 292 / 0.28);
}

.manifesto__beat--fast .manifesto__sub {
  margin-top: 22px;
}

.manifesto__not {
  font-size: clamp(76px, 11vw, 168px);
  line-height: 0.88;
  text-align: center;
}

.manifesto__wipe {
  position: absolute;
  left: 2%;
  right: 2%;
  top: 51%;
  height: clamp(10px, 1.5vw, 18px);
  background: var(--purple-bright);
  box-shadow: 0 0 42px oklch(0.66 0.24 292 / 0.30);
  transform: scaleX(0);
  transform-origin: left center;
}

.manifesto__not::after {
  height: clamp(6px, 0.8vw, 10px);
  top: 51%;
  background: oklch(0.73 0.25 292);
  box-shadow: 0 0 34px oklch(0.66 0.24 292 / 0.24);
}

html:not(.js-anim) .manifesto__beat {
  opacity: 0;
}

html:not(.js-anim) .manifesto__beat--food {
  opacity: 0.10;
}

html:not(.js-anim) .manifesto__beat--fast {
  opacity: 0.18;
  transform: translateY(-18%);
}

html:not(.js-anim) .manifesto__beat--not {
  opacity: 1;
}

html:not(.js-anim) .manifesto__wipe {
  transform: scaleX(1);
}

html:not(.js-anim) .manifesto__not::after {
  transform: scaleX(1);
}

.bev__grid {
  grid-auto-rows: minmax(260px, auto);
}

.bev__tile {
  min-height: 260px;
}

.bev__tile--feature {
  min-height: 538px;
}

.bev__tile-line {
  font-size: 14px;
  line-height: 1.42;
}

.bev__tile-meta {
  margin-top: 8px;
}

/* ──────────────────────────────────────────────────────────────────────────
   Premium cohesion pass
   Tightens repeated systems without changing the narrative structure.
   ────────────────────────────────────────────────────────────────────────── */

.atmos-bg {
  background:
    radial-gradient(ellipse at 50% 16%, oklch(0.18 0.07 292 / 0.38), transparent 42%),
    linear-gradient(180deg, oklch(0.065 0.015 292) 0%, oklch(0.035 0.008 292) 100%);
}

.atmos-bg__dots {
  background-image:
    radial-gradient(circle, rgba(180, 145, 255, 0.42) 1px, transparent 1.45px),
    radial-gradient(circle, rgba(235, 225, 255, 0.10) 0.55px, transparent 1px);
  background-size: 36px 36px, 18px 18px;
  background-position: 0 0, 9px 9px;
  opacity: 0.44;
  mask-image: radial-gradient(ellipse 80% 68% at 50% 44%, #000 18%, rgba(0,0,0,0.28) 68%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 68% at 50% 44%, #000 18%, rgba(0,0,0,0.28) 68%, transparent 100%);
}

.atmos-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.48), transparent 22%, transparent 78%, rgba(0,0,0,0.48)),
    linear-gradient(180deg, rgba(0,0,0,0.26), transparent 36%, rgba(0,0,0,0.34));
}

.conviction {
  background:
    linear-gradient(90deg, oklch(0.055 0.014 292 / 0.92), transparent 54%),
    radial-gradient(ellipse at 72% 42%, oklch(0.30 0.14 292 / 0.16), transparent 46%);
}

.conviction__body {
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--hairline-soft);
  background: linear-gradient(180deg, oklch(0.12 0.026 292 / 0.64), oklch(0.065 0.012 292 / 0.42));
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.18);
}

.conviction__body p:last-child { margin-bottom: 0; }

.conviction__quote {
  padding-top: clamp(16px, 4vh, 48px);
  color: oklch(0.90 0.018 292);
}

.conviction__quote .line {
  text-shadow: 0 24px 60px rgba(95, 50, 190, 0.22);
}

.pillars {
  background:
    linear-gradient(180deg, transparent 0%, oklch(0.045 0.011 292 / 0.72) 100%);
}

.pillars__head {
  margin-bottom: clamp(56px, 9vh, 112px);
}

.pillars__grid {
  gap: clamp(12px, 1.3vw, 18px);
  border: 0;
}

.pillar {
  min-height: clamp(360px, 44vh, 460px);
  border: 1px solid var(--hairline-soft);
  border-right: 1px solid var(--hairline-soft);
  background:
    linear-gradient(145deg, oklch(0.13 0.034 292 / 0.74), oklch(0.060 0.014 292 / 0.92)),
    linear-gradient(180deg, transparent, rgba(0,0,0,0.20));
  overflow: hidden;
  gap: 22px;
  transition: border-color 360ms var(--ease-out), transform 360ms var(--ease-out), background 360ms var(--ease-out);
}

.pillar::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, transparent 0 54%, oklch(0.62 0.22 292 / 0.10) 54% 55%, transparent 55%),
    radial-gradient(circle at 18% 12%, oklch(0.64 0.24 292 / 0.16), transparent 34%);
  opacity: 0.72;
  pointer-events: none;
}

.pillar:hover {
  background:
    linear-gradient(145deg, oklch(0.16 0.045 292 / 0.86), oklch(0.075 0.018 292 / 0.96));
  border-color: var(--hairline-bright);
  transform: translateY(-3px);
}

.pillar__num {
  width: fit-content;
  padding: 8px 10px;
  border: 1px solid var(--hairline-soft);
  border-radius: 999px;
  background: oklch(0.10 0.018 292 / 0.72);
  font-family: var(--mono);
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.16em;
  color: var(--purple-bright);
  text-transform: uppercase;
}

.pillar__name {
  margin-top: clamp(28px, 5vh, 60px);
}

.pillar > .mono.dim {
  color: var(--fg-faint);
  font-size: 10px;
  letter-spacing: 0.22em;
}

.pillar__label {
  padding-top: 18px;
  border-top: 1px solid var(--hairline-soft);
}

.pillars[data-section="04b"] .pillars__grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pillars[data-section="04b"] .pillar {
  min-height: 300px;
}

.pillars[data-section="04b"] .pillar__name {
  margin-top: clamp(18px, 3vh, 36px);
}

.food {
  background:
    radial-gradient(ellipse at 82% 28%, oklch(0.22 0.08 292 / 0.28), transparent 42%),
    var(--canvas-deep);
}

.food__stack {
  border-color: var(--hairline-soft);
  background: oklch(0.050 0.010 292 / 0.74);
}

.food__layer {
  background: linear-gradient(90deg, transparent, oklch(0.11 0.03 292 / 0.34));
}

.food__images {
  gap: clamp(14px, 1.6vw, 22px);
}

.ph {
  position: relative;
  overflow: hidden;
  border-color: oklch(0.50 0.10 292 / 0.34);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.025), 0 28px 90px rgba(0,0,0,0.24);
}

.ph::before {
  background:
    radial-gradient(ellipse at 24% 22%, rgba(178, 135, 255, 0.30), transparent 46%),
    linear-gradient(135deg, rgba(255,255,255,0.055) 0 1px, transparent 1px 10px);
  opacity: 1;
}

.ph::after {
  top: auto;
  left: 18px;
  right: 18px;
  bottom: 46px;
  width: auto;
  height: 1px;
  border: 0;
  border-radius: 0;
  background: linear-gradient(90deg, var(--purple-bright), transparent);
  opacity: 0.42;
}

.ph:nth-child(1) {
  background:
    linear-gradient(135deg, oklch(0.24 0.06 292), oklch(0.09 0.018 292) 62%),
    radial-gradient(circle at 78% 26%, oklch(0.65 0.14 85 / 0.30), transparent 26%);
}

.ph:nth-child(2) {
  background:
    radial-gradient(ellipse at 34% 24%, oklch(0.76 0.08 75 / 0.30), transparent 36%),
    linear-gradient(145deg, oklch(0.19 0.045 305), oklch(0.075 0.015 292));
}

.ph:nth-child(3) {
  background:
    radial-gradient(ellipse at 70% 26%, oklch(0.63 0.16 24 / 0.26), transparent 36%),
    linear-gradient(145deg, oklch(0.18 0.035 276), oklch(0.060 0.014 292));
}

.ph:nth-child(4) {
  background:
    radial-gradient(ellipse at 18% 56%, oklch(0.70 0.09 95 / 0.28), transparent 40%),
    linear-gradient(120deg, oklch(0.16 0.030 292), oklch(0.07 0.012 292));
}

.ph__corner {
  position: absolute;
  width: 18px;
  height: 18px;
  border-color: var(--purple-bright);
  opacity: 0.45;
}

.ph__corner:not(.ph__corner--tr):not(.ph__corner--bl):not(.ph__corner--br) {
  top: 16px;
  left: 16px;
  border-top: 1px solid;
  border-left: 1px solid;
}

.ph__corner--tr {
  top: 16px;
  right: 16px;
  border-top: 1px solid;
  border-right: 1px solid;
}

.ph__corner--bl {
  bottom: 16px;
  left: 16px;
  border-bottom: 1px solid;
  border-left: 1px solid;
}

.ph__corner--br {
  right: 16px;
  bottom: 16px;
  border-right: 1px solid;
  border-bottom: 1px solid;
}

.ph__label {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: oklch(0.78 0.035 292);
}

@media (max-width: 1100px) {
  .manifesto__stage {
    min-height: min(620px, 72svh);
  }

  .manifesto__beat {
    min-height: 360px;
  }

  .bev__grid {
    grid-auto-rows: minmax(240px, auto);
  }

  .bev__tile {
    min-height: 240px;
  }

  .bev__tile--feature {
    min-height: 498px;
  }

  .pillars[data-section="04b"] .pillars__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .manifesto__stage {
    min-height: 560px;
  }

  .manifesto__beat {
    min-height: 340px;
  }

  .manifesto__beat--food,
  .manifesto__beat--fast {
    justify-items: center;
    text-align: center;
  }

  .manifesto__system-label {
    left: 50%;
    transform: translateX(-50%);
  }

  .bev__tile,
  .bev__tile--feature {
    min-height: auto;
  }

  .pillar {
    min-height: 300px;
  }

  .pillars[data-section="04b"] .pillars__grid {
    grid-template-columns: 1fr;
  }

  .ph__label {
    flex-direction: column;
    gap: 6px;
  }
}

/* Keep the brand signal dominant while revealing the next chapter in the first viewport. */
.hero {
  min-height: 86svh;
}

.conviction {
  padding-top: clamp(56px, 9vh, 96px);
}
