/* Veya — V2 Editorial Luxury × Soft Atmosphere
   A printed wellness journal brought to the web.
   Palette + type = Veya's actual design tokens (src/app/globals.css of the app). */

:root {
  --paper: #FAFAF8;          /* app page background */
  --paper-2: #F5F3EF;        /* app card / panel surface */
  --paper-3: #E7E5E0;        /* app border tone */
  --ink: #1C1917;            /* stone-900 — text, primary actions, sidebar */
  --ink-soft: #57534E;       /* muted text, AA on paper */
  --ink-faint: rgba(28, 25, 23, 0.16);
  --taupe: #C2BAB0;          /* marketing gradient, light stop */
  --taupe-mid: #B5ADA3;      /* marketing gradient, middle stop */
  --taupe-deep: #A9A197;     /* marketing gradient, deep stop */
  --taupe-text: #6B635A;     /* taupe family, darkened for small text */
  --accent-strong: #44403C;  /* stone-700 — em accents, hover states */
  --ok: #16A34A;             /* app "approved" green */
  --err: #DC2626;            /* app "destructive" red */
  --cream-on-ink: #F5F3EF;   /* app sidebar foreground */

  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Geist", "Helvetica Neue", Arial, sans-serif;

  --text-hero: clamp(3rem, 8vw, 7rem);
  --text-h2: clamp(2rem, 4.5vw, 3.75rem);
  --text-h3: clamp(1.25rem, 2vw, 1.625rem);
  --text-lede: clamp(1.0625rem, 1.5vw, 1.3125rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.0625rem);
  --text-small: 0.8125rem;

  --space-section: clamp(5rem, 4rem + 6vw, 11rem);
  --gutter: clamp(1.25rem, 4vw, 4rem);
  --measure: 62ch;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur: 300ms;
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; }

/* film grain */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
  opacity: 0.045;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)'/%3E%3C/svg%3E");
}

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3.5rem;
  z-index: 100;
  background: var(--ink);
  color: var(--cream-on-ink);
  padding: 0.6rem 1rem;
  text-decoration: none;
  font-size: var(--text-small);
  transition: top var(--dur) var(--ease-out);
}
.skip-link:focus { top: 1rem; }

.wrap { max-width: 76rem; margin-inline: auto; padding-inline: var(--gutter); }

/* ---------- Typography helpers ---------- */
.kicker {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--taupe-text);
}
.kicker::before {
  content: "";
  width: 2rem;
  height: 1px;
  background: var(--taupe-text);
}
.section-head h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--text-h2);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin-top: 1.25rem;
  max-width: 22ch;
}
.section-head h2 em, .italic-accent { font-style: italic; font-weight: 500; }
.section-head p.sub {
  margin-top: 1.25rem;
  max-width: var(--measure);
  color: var(--ink-soft);
  font-size: var(--text-lede);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: 0.01em;
  border-radius: 999px;
  padding: 0.9rem 1.75rem;
  transition: background-color var(--dur) var(--ease-out), color var(--dur) var(--ease-out), border-color var(--dur) var(--ease-out);
  cursor: pointer;
}
.btn svg { width: 18px; height: 18px; flex: none; transition: transform var(--dur) var(--ease-out); }
.btn:hover svg { transform: translateX(4px); }
.btn-primary { background: var(--ink); color: var(--cream-on-ink); border: 1px solid var(--ink); }
.btn-primary:hover { background: var(--accent-strong); border-color: var(--accent-strong); }
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid rgba(28, 25, 23, 0.35); }
.btn-ghost:hover { border-color: var(--ink); }
.btn-small { padding: 0.55rem 1.15rem; font-size: 0.8125rem; }

/* ---------- Header ---------- */
.site-head { position: absolute; top: 0; left: 0; right: 0; z-index: 40; }
.site-head .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 1.5rem;
}
.brand {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.625rem;
  text-decoration: none;
  letter-spacing: 0.08em;
}
.site-nav { display: flex; align-items: center; gap: 2rem; }
.site-nav a:not(.btn) {
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--accent-strong);
  transition: color var(--dur) var(--ease-out);
}
.site-nav a:not(.btn):hover { color: var(--ink); }

/* ---------- Hero (Veya's marketing taupe gradient) ---------- */
.hero {
  position: relative;
  padding-top: clamp(7rem, 12vw, 10rem);
  overflow: hidden;
  background: linear-gradient(168deg, var(--taupe) 0%, var(--taupe-mid) 50%, var(--taupe-deep) 100%);
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: end;
}
.issue-line {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-strong);
  display: flex;
  align-items: center;
  gap: 0.875rem;
}
.issue-line::after { content: ""; flex: 0 0 3rem; height: 1px; background: var(--ink-faint); }
.hero h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--text-hero);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-top: 1.75rem;
}
.hero h1 em { font-style: italic; font-weight: 500; color: var(--paper-2); }
.hero .lede {
  margin-top: 1.75rem;
  max-width: 44ch;
  font-size: var(--text-lede);
  color: var(--accent-strong);
}
.cta-row { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.25rem; }
.fineprint { margin-top: 1.1rem; font-size: var(--text-small); color: var(--accent-strong); }
.hero-copy { padding-bottom: clamp(2rem, 5vw, 4.5rem); }

.hero-figure { position: relative; margin: 0; justify-self: end; width: min(100%, 26rem); padding-right: 2rem; padding-bottom: 2.4rem; }
.arch { border-radius: 999px 999px 0 0; overflow: hidden; }
.hero-figure .arch { position: relative; z-index: 2; }
.hero-figure::before {
  content: "";
  position: absolute;
  inset: -1.25rem 1.25rem 1.25rem -1.25rem;
  border: 1px solid var(--paper);
  border-radius: 999px 999px 0 0;
  z-index: 1;
  opacity: 0.6;
}
.hero-figure img { width: 100%; height: auto; }
.hero-figure figcaption {
  position: absolute;
  right: 0;
  bottom: 2.4rem;
  z-index: 2;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  white-space: nowrap;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.9375rem;
  letter-spacing: 0.05em;
  color: var(--ink);
}

/* ---------- Stats ---------- */
.stats { margin-top: var(--space-section); }
.stats dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--ink-faint);
  border-bottom: 1px solid var(--ink-faint);
}
.stats .stat { padding: 2.25rem 1.5rem 2.25rem 0; }
.stats .stat + .stat { border-left: 1px solid var(--ink-faint); padding-left: 2rem; }
.stats dt {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 0.625rem;
}
.stats dd {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  line-height: 1;
}
.stats dd em { font-style: italic; color: var(--accent-strong); }

/* ---------- Prose passage ---------- */
.prose { margin-top: var(--space-section); }
.prose-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
  gap: clamp(2rem, 5vw, 6rem);
  align-items: start;
}
.prose-copy p { max-width: var(--measure); color: var(--ink-soft); }
.prose-copy p + p { margin-top: 1.4rem; }
.prose-copy p strong { color: var(--ink); font-weight: 600; }
.prose-copy .opener {
  font-size: var(--text-lede);
  color: var(--ink);
}
.prose-copy .opener::first-letter {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 4.4em;
  float: left;
  line-height: 0.82;
  padding-right: 0.09em;
  color: var(--accent-strong);
}
.prose-aside {
  position: sticky;
  top: 6rem;
  border-top: 1px solid var(--ink);
  padding-top: 1.25rem;
}
.prose-aside .big-line {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.5rem, 2.6vw, 2.25rem);
  line-height: 1.25;
  max-width: 18ch;
}

/* ---------- Schedule plate ---------- */
.plate { margin-top: var(--space-section); }
.plate-frame {
  margin-top: 2.5rem;
  background: linear-gradient(168deg, var(--taupe) 0%, var(--taupe-mid) 50%, var(--taupe-deep) 100%);
  border: 1px solid var(--ink-faint);
  padding: clamp(1rem, 3vw, 2.5rem);
}
.browser {
  background: #FFFFFF;
  border: 1px solid var(--paper-3);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 30px 70px -35px rgba(28, 25, 23, 0.45);
}
.browser-bar {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.7rem 1.1rem;
  background: var(--paper-2);
  border-bottom: 1px solid var(--paper-3);
}
.browser-bar span { width: 9px; height: 9px; border-radius: 50%; background: var(--ink-faint); }
.browser-bar p { margin-left: 0.65rem; font-size: 0.72rem; letter-spacing: 0.08em; color: var(--ink-soft); }
.browser img { width: 100%; }
.plate-caption {
  margin-top: 1.5rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.9375rem;
  color: var(--ink);
  text-align: center;
}

/* Carousel: slides stack in one grid cell and cross-fade on opacity only. */
.plate-slides { display: grid; }
.plate-slide {
  grid-area: 1 / 1;
  opacity: 0;
  pointer-events: none;
  transition: opacity 450ms var(--ease-out);
}
.plate-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}
.plate-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 2rem;
}
.plate-arrow {
  border: 1px solid var(--ink-faint);
  background: none;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  cursor: pointer;
  transition: background 200ms var(--ease-out), border-color 200ms var(--ease-out);
}
.plate-arrow:hover,
.plate-arrow:focus-visible { background: var(--paper-2); border-color: var(--ink-soft); }
.plate-dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.25rem 1rem;
}
.plate-dot {
  border: none;
  background: none;
  padding: 0.35rem 0;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  cursor: pointer;
  border-bottom: 1px solid transparent;
  transition: color 200ms var(--ease-out), border-color 200ms var(--ease-out);
}
.plate-dot:hover,
.plate-dot:focus-visible { color: var(--ink); }
.plate-dot.is-active { color: var(--ink); border-bottom-color: var(--ink); }
@media (prefers-reduced-motion: reduce) {
  .plate-slide { transition: none; }
}

/* ---------- Features ---------- */
.features { margin-top: var(--space-section); }
.features-list { margin-top: 3rem; border-top: 1px solid var(--ink-faint); }
.feature {
  display: grid;
  grid-template-columns: 6rem minmax(0, 20rem) minmax(0, 1fr);
  gap: 1.5rem 2.5rem;
  padding: 2.25rem 0;
  border-bottom: 1px solid var(--ink-faint);
}
.feature .num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.9rem;
  color: var(--taupe-text);
  line-height: 1;
}
.feature h3 { font-family: var(--font-display); font-weight: 500; font-size: var(--text-h3); line-height: 1.2; }
.feature p { color: var(--ink-soft); max-width: 52ch; }
.feature:nth-child(even) { padding-left: clamp(0rem, 4vw, 3.5rem); }

/* ---------- Roster ---------- */
.roster { margin-top: var(--space-section); }
.roster-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 3rem);
  margin-top: 3rem;
}
.roster-card { position: relative; }
.roster-card .arch { background: var(--paper-2); }
.roster-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform 600ms var(--ease-out);
}
.roster-card:hover img { transform: scale(1.03); }
.roster-card figcaption { padding-top: 1rem; border-top: 1px solid var(--ink-faint); margin-top: 1rem; }
.roster-card .name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.25rem;
}
.roster-card .name em { font-style: italic; font-weight: 400; }
.roster-card .role {
  margin-top: 0.25rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--taupe-text);
}
.roster-empty .arch {
  aspect-ratio: 3 / 4;
  border: 1px dashed var(--ink-faint);
  background: transparent;
  display: grid;
  place-items: center;
  padding: 2rem;
}
.roster-empty .arch p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  text-align: center;
  color: var(--ink-soft);
  max-width: 14ch;
}
.roster-card:nth-child(2), .roster-card:nth-child(5) { transform: translateY(clamp(0rem, 3vw, 2.5rem)); }

/* ---------- Full-bleed band ---------- */
.band {
  position: relative;
  margin-top: var(--space-section);
  min-height: 72vh;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.band > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 30%;
}
.band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(34, 28, 21, 0.45), rgba(34, 28, 21, 0.62));
}
.band blockquote {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--cream-on-ink);
  padding: 6rem var(--gutter);
  max-width: 56rem;
}
.band blockquote p {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.9rem, 4.5vw, 3.75rem);
  line-height: 1.15;
}
.band cite {
  display: block;
  margin-top: 1.75rem;
  font-style: normal;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.85;
}

/* ---------- Sidebar index ---------- */
.index { margin-top: var(--space-section); }
.index-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 5rem);
  margin-top: 3rem;
  align-items: start;
}
.index-group h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--ink);
}
.index-group li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--ink-faint);
  align-items: start;
}
.index-group li svg { width: 20px; height: 20px; color: var(--taupe-text); margin-top: 0.15rem; }
.index-group .pg { font-weight: 600; font-size: 0.9375rem; }
.index-group .pd { color: var(--ink-soft); font-size: 0.875rem; margin-top: 0.15rem; }
.pill {
  display: inline-block;
  margin-left: 0.5rem;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  border: 1px solid var(--ink-faint);
  border-radius: 999px;
  padding: 0.1rem 0.5rem;
  vertical-align: middle;
}

/* ---------- Book a demo ---------- */
.book { margin-top: var(--space-section); padding-bottom: var(--space-section); }
.book-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 6rem);
  align-items: start;
  border-top: 1px solid var(--ink);
  padding-top: 3.5rem;
}
.book-heading {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--text-h2);
  line-height: 1.08;
  margin-top: 1.25rem;
}
.book-list { margin-top: 2rem; }
.book-list li {
  display: flex;
  gap: 0.875rem;
  align-items: baseline;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--ink-faint);
  color: var(--ink-soft);
  max-width: 40ch;
}
.book-list li::before {
  content: counter(list-item, decimal-leading-zero);
  font-family: var(--font-display);
  font-style: italic;
  color: var(--taupe-text);
  font-size: 0.9375rem;
}
.book-list { counter-reset: list-item; }
.book-list li { counter-increment: list-item; }

.form-card {
  background: var(--paper-2);
  border: 1px solid var(--ink-faint);
  padding: clamp(1.75rem, 3.5vw, 3rem);
}
.form-card .form-kicker {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.375rem;
  margin-bottom: 1.75rem;
}
.field { display: block; margin-bottom: 1.6rem; }
.field span {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 0.45rem;
}
.field input, .field select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--ink-soft);
  border-radius: 0;
  padding: 0.55rem 0;
  font: inherit;
  color: var(--ink);
  transition: border-color var(--dur) var(--ease-out);
  appearance: none;
}
.field select { cursor: pointer; }
.field-select { position: relative; }
.field-select svg {
  position: absolute;
  right: 0;
  bottom: 0.8rem;
  width: 16px;
  height: 16px;
  pointer-events: none;
  color: var(--ink-soft);
}
.field input:focus, .field select:focus {
  outline: none;
  border-bottom-color: var(--taupe-text);
}
.field input::placeholder { color: rgba(92, 83, 71, 0.55); }
.form-card .btn { width: 100%; justify-content: center; margin-top: 0.5rem; }
.form-card .btn:disabled { opacity: 0.5; cursor: progress; }
.form-note { margin-top: 1.1rem; font-size: var(--text-small); color: var(--ink-soft); text-align: center; }
.form-note a { color: var(--ink); text-underline-offset: 3px; }

/* Honeypot wrapper. Visually hidden with the clip technique rather than
   `display: none` / the `hidden` attribute: naive bots detect those and skip
   the field, and a skipped field never trips the trap. Real visitors never
   see it (zero-area, clipped), and `tabindex="-1"` + `aria-hidden` keep it
   out of the tab order and the accessibility tree. */
.hp {
  position: absolute;
  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;
}

.form-error {
  margin-top: 1.1rem;
  padding: 0.7rem 0.9rem;
  border: 1px solid rgba(220, 38, 38, 0.28);
  background: rgba(220, 38, 38, 0.06);
  color: var(--err);
  font-size: var(--text-small);
  line-height: 1.5;
}

.form-success { text-align: center; padding: 2.5rem 0; }
.form-success svg { width: 44px; height: 44px; color: var(--ok); margin-inline: auto; }
.form-success h3 { font-family: var(--font-display); font-weight: 500; font-size: 1.75rem; margin-top: 1.25rem; }
.form-success p { color: var(--ink-soft); margin-top: 0.75rem; max-width: 34ch; margin-inline: auto; }
[hidden] { display: none !important; }

/* ---------- Footer ---------- */
.site-foot { border-top: 1px solid var(--ink); padding: 3rem 0 3.5rem; }
.foot-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  align-items: baseline;
}
.foot-brand { font-family: var(--font-display); font-size: 1.5rem; letter-spacing: 0.08em; }
.foot-links { display: flex; gap: 1.75rem; }
.foot-links a {
  text-decoration: none;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color var(--dur) var(--ease-out);
}
.foot-links a:hover { color: var(--ink); }
.colophon { font-size: var(--text-small); color: var(--ink-soft); font-style: italic; font-family: var(--font-display); }

/* ---------- Reveal motion ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .roster-card img, .btn svg { transition: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; align-items: start; }
  .hero-figure { justify-self: start; width: min(100%, 22rem); margin-top: 1rem; }
  .index-cols { grid-template-columns: 1fr; }
  .prose-grid { grid-template-columns: 1fr; }
  .prose-aside { position: static; order: -1; }
  .feature { grid-template-columns: 4rem 1fr; }
  .feature p { grid-column: 2; }
  .book-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .site-nav a:not(.btn) { display: none; }
  .stats dl { grid-template-columns: 1fr; }
  .stats .stat + .stat { border-left: none; border-top: 1px solid var(--ink-faint); padding-left: 0; }
  .stats .stat { padding-block: 1.5rem; }
  .roster-grid { grid-template-columns: 1fr 1fr; }
  .roster-card:nth-child(2), .roster-card:nth-child(5) { transform: none; }
  .feature { grid-template-columns: 3rem 1fr; gap: 1rem 1.25rem; padding: 1.75rem 0; }
  .feature:nth-child(even) { padding-left: 0; }
  .band { min-height: 60vh; }
}
@media (max-width: 480px) {
  .roster-grid { grid-template-columns: 1fr; }
  .cta-row .btn { width: 100%; justify-content: center; }
}
