/* ================================================================
   Uare.ai Press Kit · shared styles
   Tokens cherry-picked from brand book v1.1 (2026-04-20).
   Light canvas only. Light-mode contrast rule: pale lime (#E6FF9A)
   never appears as a fill. Accent fills use deep olive (#272d1b).
   The single exception is the §color swatch in this file.
================================================================ */

@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("assets/fonts/PlusJakartaSans-VariableFont_wght.ttf") format("truetype-variations");
  font-weight: 200 800; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("assets/fonts/PlusJakartaSans-Italic-VariableFont_wght.ttf") format("truetype-variations");
  font-weight: 200 800; font-style: italic; font-display: swap;
}
@import url("https://fonts.googleapis.com/css2?family=Source+Serif+4:ital,wght@0,400;0,500;0,600;1,400&family=JetBrains+Mono:wght@400;500&family=Caveat:wght@400;500;600&display=swap");

:root {
  /* Canvas */
  --paper:        #f9f9f7;       /* light canvas, never pure white */
  --ink:          #191918;       /* warm near-black */
  --ink-deep:     #10100f;
  --paper-elev:   #ffffff;
  --paper-sunk:   #f5f5f4;

  /* Lime (Uare Green system) */
  --lime-50:      #f4ffd5;
  --lime-100:     #ecfbb8;
  --lime-200:     #e6ff9a;       /* Uare Green hero — pale lime */
  --lime-400:     #c2e06c;
  --lime-700:     #748345;       /* olive (light-mode accent text) */
  --lime-900:     #242a18;
  --lime-950:     #272d1b;       /* deep olive accent fill in light mode */

  /* Decorative secondaries — 4 only, sparing */
  --orange:       #ff6b45;
  --yellow:       #f4d35e;
  --pink:         #f7a7c5;
  --purple:       #c5a7f5;

  /* Text */
  --fg:           var(--ink-deep);
  --fg-muted:     #575756;
  --fg-subtle:    #767774;
  --fg-invert:    var(--paper);

  /* Borders + surfaces */
  --rule:         rgba(16,16,15,0.08);
  --rule-strong:  rgba(16,16,15,0.20);
  --surface:      rgba(16,16,15,0.04);
  --surface-warm: #efeee8;

  /* Type families */
  --font-sans:    "Plus Jakarta Sans", ui-sans-serif, system-ui, sans-serif;
  --font-serif:   "Source Serif 4", "Charter", Georgia, serif;
  --font-mono:    "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --font-hand:    "Caveat", "Homemade Apple", cursive;

  /* Radii (never 90°) */
  --r-sm:         10px;
  --r-md:         16px;
  --r-lg:         24px;
  --r-xl:         32px;
  --r-2xl:        40px;
  --r-pill:       9999px;

  /* Motion */
  --ease:         cubic-bezier(0.22, 1, 0.36, 1);
  --dur-1:        120ms;
  --dur-2:        180ms;
  --dur-3:        280ms;

  /* Layout */
  --max:          1080px;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.003em;
  color: var(--fg);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ============================================================
   Type
============================================================ */
.u-display {
  font-weight: 600;
  font-size: clamp(48px, 8vw, 112px);
  line-height: 0.96;
  letter-spacing: -0.025em;
}
.u-h1 { font-weight: 600; font-size: clamp(34px, 4.2vw, 56px); line-height: 1.05; letter-spacing: -0.02em; margin: 0; }
.u-h2 { font-weight: 600; font-size: clamp(26px, 2.6vw, 36px); line-height: 1.15; letter-spacing: -0.015em; margin: 0; }
.u-h3 { font-weight: 600; font-size: 22px; line-height: 1.25; letter-spacing: -0.01em; margin: 0; }
.u-body-lg { font-weight: 500; font-size: 18px; line-height: 1.6; }
.u-body { font-weight: 500; font-size: 16px; line-height: 1.6; }
.u-body-sm { font-weight: 500; font-size: 14px; line-height: 1.55; color: var(--fg-muted); }
.u-label {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 11px;
  line-height: 1.4;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-subtle);
}
.u-eyebrow {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--fg-subtle);
}
.u-hand {
  font-family: var(--font-hand);
  font-weight: 500;
  letter-spacing: 0;
}
.u-serif {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
}

/* ============================================================
   Nav
============================================================ */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(20px, 4vw, 40px);
  background: rgba(249,249,247,0.85);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--rule);
}
.nav__brand {
  display: flex; align-items: center; gap: 14px;
}
.nav__brand img { height: 22px; width: auto; }
.nav__divider { width: 1px; height: 18px; background: var(--rule-strong); }
.nav__sections {
  display: flex; align-items: center; gap: 4px;
  flex: 1; justify-content: center;
  overflow-x: auto;
  scrollbar-width: none;
}
.nav__sections::-webkit-scrollbar { display: none; }
.nav__link {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-subtle);
  padding: 8px 12px;
  border-radius: var(--r-pill);
  white-space: nowrap;
  transition: color var(--dur-1) var(--ease), background var(--dur-1) var(--ease);
}
.nav__link:hover { color: var(--fg); background: var(--surface); }
.nav__link.is-active {
  color: var(--lime-950);
  background: rgba(194,224,108,0.30);
}

/* CTA pill — Uare Green only on primary CTAs */
.cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px;
  background: var(--lime-950);
  color: var(--lime-200);
  border-radius: var(--r-pill);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  white-space: nowrap;
  transition: background var(--dur-2) var(--ease), transform var(--dur-1) var(--ease);
}
.cta:hover { background: #1f240f; }
.cta:active { transform: scale(0.97); }
.cta--green {
  background: var(--lime-950);
  color: var(--lime-200);
}
.cta--green:hover { background: #1f240f; }
.cta--ghost {
  background: transparent;
  color: var(--fg);
  border: 1px solid var(--rule-strong);
}
.cta--ghost:hover { background: var(--surface); }

/* ============================================================
   Layout primitives
============================================================ */
.shell { max-width: var(--max); margin: 0 auto; padding: 0 clamp(20px, 4vw, 40px); }
.section {
  padding: clamp(48px, 7vw, 88px) 0;
  border-bottom: 1px solid var(--rule);
}
.section--alt { background: var(--paper-elev); }
.section--ink { background: var(--ink); color: var(--paper); border-bottom-color: rgba(255,255,255,0.08); }
.section--ink .u-label,
.section--ink .u-eyebrow { color: rgba(255,255,255,0.55); }
.section--ink .u-body-sm { color: rgba(255,255,255,0.65); }

.section__head {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
  margin-bottom: 32px;
}
.section__head--no-mb { margin-bottom: 0; }
@media (max-width: 720px) {
  .section__head { grid-template-columns: 1fr; gap: 12px; }
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 10vw, 120px) 0 clamp(48px, 7vw, 88px);
  background: var(--paper);
}
.hero__shape {
  position: absolute;
  pointer-events: none;
  user-select: none;
}
.hero__shape--lime {
  top: -8rem; right: -6rem; width: 36rem; height: 36rem;
  background: var(--lime-700); opacity: 0.18;
  border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%;
  filter: blur(2px);
}
.hero__shape--olive {
  bottom: -10rem; left: 4rem; width: 24rem; height: 24rem;
  background: var(--lime-700); opacity: 0.10;
  border-radius: 45% 55% 40% 60% / 55% 45% 55% 45%;
}
.hero__shape--peach {
  top: 4rem; right: 36%; width: 16rem; height: 16rem;
  background: #ffd8c4; opacity: 0.55;
  border-radius: 50% 50% 60% 40% / 40% 60% 40% 60%;
}
.hero__inner { position: relative; }

/* Wedge headline (homepage rule: lead with wedge) */
.wedge {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(56px, 9vw, 128px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin: 0;
}
.wedge .accent { color: var(--lime-700); }

/* Pill chip */
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px;
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--r-pill);
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
}
.chip--green {
  background: rgba(194,224,108,0.25);
  border-color: rgba(116,131,69,0.30);
  color: var(--lime-950);
}

/* Grid helpers */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 3vw, 40px); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2.4vw, 32px); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 900px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* Card */
.card {
  background: var(--paper-elev);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  padding: clamp(20px, 2.4vw, 28px);
}
.card--sunk { background: var(--paper-sunk); }
.card--olive { background: var(--lime-950); color: var(--paper); border-color: transparent; }
.card--olive .u-label,
.card--olive .u-eyebrow { color: var(--lime-200); }
.card--olive .u-body-sm { color: rgba(255,255,255,0.7); }
.card__num {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--fg-subtle);
  margin: 0 0 12px;
}
.card__title { margin: 0 0 6px; font-weight: 600; font-size: 17px; }
.card__body { margin: 0; font-weight: 500; font-size: 14px; line-height: 1.55; color: var(--fg-muted); }

/* Fact strip */
.facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.facts > * {
  padding: 20px 24px;
  border-right: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.facts > *:nth-child(3n) { border-right: 0; }
.facts > *:nth-last-child(-n+3) { border-bottom: 0; }
.facts__label {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin: 0 0 6px;
}
.facts__value {
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.005em;
  color: var(--lime-200);
  margin: 0;
}
.facts__note {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 10px;
  line-height: 1.45;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.55);
  margin: 6px 0 0;
}
@media (max-width: 720px) {
  .facts { grid-template-columns: 1fr 1fr; }
  .facts > *:nth-child(3n) { border-right: 1px solid rgba(255,255,255,0.08); }
  .facts > *:nth-child(2n) { border-right: 0; }
}

/* Comparison table */
.cmp { width: 100%; border-collapse: collapse; }
.cmp th {
  text-align: left;
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-subtle);
  padding: 0 16px 14px 0;
  border-bottom: 2px solid var(--ink-deep);
}
.cmp th.cmp__win { color: var(--lime-950); }
.cmp td { padding: 16px 16px 16px 0; border-bottom: 1px solid var(--rule); font-weight: 500; font-size: 15px; }
.cmp td:first-child {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-subtle);
  width: 30%;
}
.cmp td.cmp__win { font-weight: 600; color: var(--fg); }
.cmp tr:last-child td { border-bottom: 0; }

/* Pull quote */
.pull {
  display: flex; gap: 24px; align-items: flex-start;
}
.pull__bar {
  width: 3px; flex-shrink: 0; align-self: stretch;
  background: var(--lime-700);
  border-radius: var(--r-pill);
}
.pull__text {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.35;
  color: var(--fg);
  margin: 0;
}
.pull__attr {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-subtle);
  margin: 12px 0 0;
}

/* Polaroid quote (Caveat handwritten) */
.polaroid {
  background: var(--paper-elev);
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  padding: 22px 24px 18px;
  box-shadow: 0 1px 0 rgba(0,0,0,0.04);
}
.polaroid__text {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.4;
  color: var(--fg);
  margin: 0 0 12px;
}
.polaroid__attr {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-subtle);
  margin: 0;
}

/* Downloads list */
.dl-list { display: flex; flex-direction: column; }
.dl {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--rule);
  transition: opacity var(--dur-2) var(--ease);
}
.dl:last-child { border-bottom: 0; }
.dl:hover { opacity: 0.85; }
.dl__main { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.dl__title { font-weight: 600; font-size: 15px; color: var(--fg); }
.dl__meta {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-subtle);
}
.dl__btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 16px;
  background: var(--lime-950);
  color: var(--lime-200);
  border-radius: var(--r-pill);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background var(--dur-1) var(--ease);
}
.dl__btn:hover { background: #1f240f; }
.dl__btn--copy { background: var(--surface); color: var(--fg); }
.dl__btn--copy:hover { background: rgba(16,16,15,0.10); }
.dl__btn.is-copied { background: var(--lime-700); color: var(--lime-50); }

/* Download tiles (with visual preview) */
.dl-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 760px) { .dl-tiles { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .dl-tiles { grid-template-columns: 1fr; } }

/* Dense variant — packed feed for podcast episode walls */
.dl-tiles--dense { grid-template-columns: repeat(6, 1fr); gap: 8px; }
@media (max-width: 1100px) { .dl-tiles--dense { grid-template-columns: repeat(5, 1fr); } }
@media (max-width: 920px)  { .dl-tiles--dense { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 720px)  { .dl-tiles--dense { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px)  { .dl-tiles--dense { grid-template-columns: repeat(2, 1fr); } }
.dl-tiles--dense .dl-tile { border-radius: var(--r-sm); }
.dl-tiles--dense .dl-tile__preview { aspect-ratio: 16 / 9; padding: 0; }
.dl-tiles--dense .dl-tile__body { padding: 8px 10px 10px; gap: 2px; }
.dl-tiles--dense .dl-tile__title { font-size: 12px; line-height: 1.25; }
.dl-tiles--dense .dl-tile__meta { font-size: 9px; letter-spacing: 0.12em; }
.dl-tiles--dense .dl-tile__btn { display: none; }

.dl-tile {
  display: flex;
  flex-direction: column;
  background: var(--paper-elev);
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform var(--dur-2) var(--ease), border-color var(--dur-2) var(--ease);
}
.dl-tile:hover {
  transform: translateY(-2px);
  border-color: var(--rule-strong);
}
.dl-tile__preview {
  aspect-ratio: 4 / 3;
  background: var(--paper-sunk);
  display: flex; align-items: center; justify-content: center;
  border-bottom: 1px solid var(--rule);
  overflow: hidden;
  padding: 28px;
}
.dl-tile__preview--ink { background: var(--ink); border-bottom-color: rgba(255,255,255,0.08); }
.dl-tile__preview--olive { background: var(--lime-950); border-bottom-color: transparent; }
.dl-tile__preview--full { padding: 0; }
.dl-tile__preview img { max-width: 70%; max-height: 70%; object-fit: contain; }
.dl-tile__preview--full img { max-width: 100%; max-height: 100%; width: 100%; height: 100%; object-fit: cover; }
.dl-tile__body {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.dl-tile__title { font-weight: 600; font-size: 14px; color: var(--fg); line-height: 1.3; margin: 0; }
.dl-tile__meta {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-subtle);
  margin: 0;
}
.dl-tile__btn {
  margin-top: 4px;
  display: inline-flex;
  align-self: flex-start;
  padding: 6px 12px;
  background: var(--lime-950);
  color: var(--lime-200);
  border-radius: var(--r-pill);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Podcast guest cards */
.pod-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
@media (max-width: 1000px) { .pod-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px) { .pod-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .pod-grid { grid-template-columns: 1fr; } }

.pod-card {
  display: flex; flex-direction: column;
  background: var(--paper-elev);
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  overflow: hidden;
  text-decoration: none; color: inherit;
  transition: transform var(--dur-2) var(--ease), border-color var(--dur-2) var(--ease);
}
.pod-card:hover { transform: translateY(-2px); border-color: var(--rule-strong); }
.pod-card__art {
  aspect-ratio: 1 / 1;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  padding: 18px;
  text-align: center;
}
.pod-card__art--orange { background: rgba(255, 107, 69, 0.20); }
.pod-card__art--yellow { background: rgba(244, 211, 94, 0.32); }
.pod-card__art--pink   { background: rgba(247, 167, 197, 0.32); }
.pod-card__art--purple { background: rgba(197, 167, 245, 0.28); }
.pod-card__art--olive  { background: var(--lime-950); }
.pod-card__art--olive .pod-card__guest { color: var(--lime-200); }
.pod-card__guest {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--fg);
  margin: 0;
}
.pod-card__body {
  padding: 12px 14px 16px;
  display: flex; flex-direction: column; gap: 4px;
}
.pod-card__ep {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-subtle);
}
.pod-card__role {
  font-weight: 500;
  font-size: 12px;
  line-height: 1.4;
  color: var(--fg-muted);
}

/* Philanthropy cards (matching style for both) */
.phil-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 2.4vw, 24px);
  max-width: 880px;
}
@media (max-width: 720px) { .phil-grid { grid-template-columns: 1fr; } }
.phil-card {
  background: var(--paper-elev);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: transform var(--dur-2) var(--ease), border-color var(--dur-2) var(--ease);
}
.phil-card:hover { transform: translateY(-2px); border-color: var(--rule-strong); }
.phil-card__art {
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #ffd8c4 0%, #f4d35e 70%, #f7a7c5 100%);
  display: flex; align-items: center; justify-content: center;
  padding: 32px;
  position: relative;
  border-bottom: 1px solid var(--rule);
}
.phil-card__art img {
  width: 56%;
  height: 56%;
  object-fit: contain;
  opacity: 0.85;
  filter: drop-shadow(0 4px 12px rgba(16,16,15,0.08));
}
.phil-card__body { padding: 22px 24px 24px; display: flex; flex-direction: column; gap: 6px; }
.phil-card__body .card__num { margin: 0; }
.phil-card__body .card__title { margin: 4px 0 8px; }
.phil-card__body .card__body { margin: 0 0 12px; }

/* Horizontal photo carousel */
.gallery-carousel {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 4px 0 14px;
  margin: 0 calc(-1 * clamp(20px, 4vw, 40px));
  padding-left: clamp(20px, 4vw, 40px);
  padding-right: clamp(20px, 4vw, 40px);
}
.gallery-carousel::-webkit-scrollbar { height: 6px; }
.gallery-carousel::-webkit-scrollbar-track { background: var(--paper-sunk); border-radius: var(--r-pill); }
.gallery-carousel::-webkit-scrollbar-thumb { background: var(--rule-strong); border-radius: var(--r-pill); }
.gallery-carousel .dl-tile {
  flex: 0 0 clamp(220px, 26vw, 320px);
  scroll-snap-align: start;
}
.gallery-carousel .dl-tile__preview {
  aspect-ratio: 4 / 5 !important;
}

/* Long-bio side photo */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
.story-aside { position: sticky; top: 96px; }
@media (max-width: 1000px) {
  .story-grid { grid-template-columns: 1fr 340px; }
}
@media (max-width: 820px) {
  .story-grid { grid-template-columns: 1fr; }
  .story-aside { position: static; max-width: 420px; }
}

/* Milestones timeline */
.milestones {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
@media (max-width: 1000px) { .milestones { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px)  { .milestones { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px)  { .milestones { grid-template-columns: 1fr; } }
.milestone {
  background: var(--paper-elev);
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.milestone__year {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(28px, 3vw, 40px);
  color: var(--lime-700);
  line-height: 1;
  letter-spacing: -0.015em;
  margin: 0 0 6px;
}
.milestone__title { font-weight: 600; font-size: 14px; color: var(--fg); margin: 0; line-height: 1.3; }
.milestone__desc {
  font-weight: 500;
  font-size: 12px;
  line-height: 1.45;
  color: var(--fg-muted);
  margin: 4px 0 0;
}

/* Press logo strip */
.press-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: clamp(18px, 3vw, 40px);
  padding: 28px clamp(20px, 3vw, 32px);
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  background: var(--paper-elev);
}
.press-strip__name {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(13px, 1.3vw, 17px);
  letter-spacing: 0.04em;
  color: var(--fg);
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0.55;
  transition: opacity var(--dur-2) var(--ease);
}
.press-strip__name:hover { opacity: 1; }
.press-strip__name--serif {
  font-family: var(--font-serif);
  font-style: italic;
  letter-spacing: 0;
  text-transform: none;
}

/* Image plate */
.plate {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--paper-sunk);
}
.plate img { display: block; width: 100%; height: auto; }
.plate__caption {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-subtle);
  margin: 10px 0 0;
}

/* Footer */
.foot {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  padding: 24px clamp(20px, 4vw, 40px);
  border-top: 1px solid var(--rule);
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--fg-subtle);
}
.foot img { height: 18px; opacity: 0.5; }

/* HLM tile */
.hlm-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
@media (max-width: 900px) { .hlm-grid { grid-template-columns: repeat(2, 1fr); } }
.hlm {
  background: var(--paper-elev);
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hlm--rule {
  background: var(--lime-950);
  color: var(--paper);
  border-color: transparent;
}
.hlm--rule .u-eyebrow { color: var(--lime-200); }
.hlm__num {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--fg-subtle);
}
.hlm--rule .hlm__num { color: var(--lime-200); }
.hlm__name { font-weight: 600; font-size: 16px; }
.hlm__desc { font-weight: 500; font-size: 13px; line-height: 1.5; color: var(--fg-muted); margin: 0; }
.hlm--rule .hlm__desc {
  color: rgba(255,255,255,0.78);
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
}

/* Press contact card */
.contact {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 20px;
  padding: clamp(28px, 4vw, 48px);
  background: var(--lime-950);
  border-radius: var(--r-2xl);
}
.contact__title {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--lime-200);
  margin: 0;
}
.contact__sub {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--lime-200);
  opacity: 0.7;
  margin: 6px 0 0;
}
.contact .cta {
  background: var(--lime-200);
  color: var(--lime-950);
}
.contact .cta:hover { background: var(--lime-100); }

/* Print */
@media print {
  .nav, .skip-link, #scroll-to-top { display: none !important; }
  .section { break-inside: avoid; }
  .hero { padding: 32px 0; }
}

/* Small utilities */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; top: 8px; left: 8px;
  padding: 8px 12px;
  background: var(--lime-950); color: var(--lime-200);
  border-radius: var(--r-pill);
  font-family: var(--font-mono); font-size: 12px;
  transform: translateY(-200%);
  transition: transform var(--dur-2) var(--ease);
  z-index: 100;
}
.skip-link:focus { transform: translateY(0); }
