:root {
  --cream: #f5f1e8;
  --cream-deep: #ece6d6;
  --ink: #0a0a0a;
  --ink-soft: #2a2a2a;
  --muted: #6b6357;
  --line: #d9d2c0;
  --green: #0d5c3c;
  --green-deep: #083d28;
  --coral: #ff4d6d;
  --coral-deep: #e63253;
  --sun: #ffd23f;

  --max: 1320px;
  --pad-x: clamp(1.25rem, 4vw, 3.5rem);
  --pad-y: clamp(4.5rem, 9vw, 9rem);

  --display: "Archivo Black", Impact, Haettenschweiler, sans-serif;
  --body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

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

/* Theme 2 — Masters Heritage: Augusta green + paper cream + brass.
   Coral/sun collapse to brass so hover shadows pick up the heritage gold. */
body.theme-2 {
  --cream: #f8f2e4;       /* paper cream */
  --cream-deep: #efe6d0;  /* aged ivory */
  --ink: #1a1a1a;         /* warm near-black */
  --ink-soft: #3a3630;
  --muted: #7a6f5a;       /* muted warm gray */
  --line: #d8ccaf;        /* aged paper hairline */
  --green: #2d5a3d;       /* Augusta forest green */
  --green-deep: #1b3d26;
  --coral: #b8860b;       /* brass — replaces coral everywhere */
  --coral-deep: #8f6508;
  --sun: #d4a835;         /* warm aged gold */
}

/* Theme 3 — Sunset Tour: peach + terracotta + deep sage + warm cream */
body.theme-3 {
  --cream: #faf4e8;       /* warm cream */
  --cream-deep: #f0e7d2;  /* deeper peach-cream */
  --ink: #3a2820;         /* warm dark brown (not pure black) */
  --ink-soft: #5a4a40;
  --muted: #9a8a7a;
  --line: #e8dac0;
  --green: #4f5e44;       /* deep sage (dark enough for section-dark band) */
  --green-deep: #35412e;
  --coral: #d25d4b;       /* terracotta — replaces coral */
  --coral-deep: #a8442f;
  --sun: #ffb89a;         /* peach — sunset accent */
}

/* Theme 4 — Wake Forest: near-black + Wake old gold */
body.theme-4 {
  --cream: #121212;       /* near-black page bg */
  --cream-deep: #1e1e1e;  /* slightly lighter dark band */
  --ink: #f5f1e8;         /* cream-light text */
  --ink-soft: #c8c0a8;
  --muted: #8a8070;
  --line: #2a2a2a;
  --green: #9e7e38;       /* Wake Forest old gold */
  --green-deep: #6b5324;
  --coral: #9e7e38;       /* coral collapses to gold — 2-color school palette */
  --coral-deep: #6b5324;
  --sun: #d4b068;         /* lighter gold for stat numerals */
}

/* Theme 5 — Neon Court: charcoal + electric lime + hot pink */
body.theme-5 {
  --cream: #0f0f0f;
  --cream-deep: #1a1a1a;
  --ink: #f5f5f5;
  --ink-soft: #d0d0d0;
  --muted: #888888;
  --line: #2a2a2a;
  --green: #d0ff3c;       /* electric lime replaces emerald */
  --green-deep: #a6cc2f;
  --coral: #ff2d7a;       /* hot pink replaces coral */
  --coral-deep: #d62060;
  --sun: #d0ff3c;         /* lime for accents */
}

/* Theme 6 — Millennial Glossier: blush + deep sage + burnt orange */
body.theme-6 {
  --cream: #fcf5f0;       /* warm off-white with blush undertone */
  --cream-deep: #f5e8e0;  /* blush-cream */
  --ink: #2a2420;         /* warm dark brown */
  --ink-soft: #4a423a;
  --muted: #9a8a80;
  --line: #ead8d0;
  --green: #4a5c3e;       /* deep sage */
  --green-deep: #354329;
  --coral: #d96a3b;       /* burnt orange */
  --coral-deep: #a8502a;
  --sun: #ffd0d0;         /* blush pink */
}

/* === Dark-theme contrast fixes === */

/* Dark themes force section-dark band to use a slightly-lighter-than-page dark
   (instead of the --green accent, which is a BRIGHT color in these themes). */
body.theme-4 .section-dark,
body.theme-5 .section-dark {
  background: var(--cream-deep);
  color: var(--ink);
}
body.theme-4 .section-dark .eyebrow,
body.theme-5 .section-dark .eyebrow { color: var(--green); }
body.theme-4 .section-dark .eyebrow::before,
body.theme-5 .section-dark .eyebrow::before { background: var(--green); }

/* #contact is a green band (emerald in base) — in dark themes use the page
   palette instead so it doesn't become a neon-lime or gold wall of text. */
body.theme-4 #contact,
body.theme-5 #contact {
  background: var(--cream-deep);
  color: var(--ink);
}
body.theme-4 #contact .section-title,
body.theme-5 #contact .section-title { color: var(--ink); }

/* Hero kicker: in dark themes, sun-bg + ink-text could collapse (both cream).
   Swap to green (the theme's pop accent) as bg with dark page cream as text. */
body.theme-4 .hero-kicker,
body.theme-5 .hero-kicker {
  background: var(--green);
  color: var(--cream);
  box-shadow: 4px 4px 0 var(--cream-deep);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; background: var(--cream); }

body {
  margin: 0;
  font-family: var(--body);
  font-weight: 400;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; transition: color .25s var(--ease); }
a:hover { color: var(--coral); }
ul { list-style: none; padding: 0; margin: 0; }

::selection { background: var(--coral); color: var(--cream); }

/* ---------- HEADER / NAV ---------- */
#site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: transparent;
  transition: background .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
  border-bottom: 1px solid transparent;
}
#site-header.scrolled {
  background: rgba(245, 241, 232, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--line);
}

.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.1rem var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo {
  font-family: var(--display);
  font-size: 2.4rem;
  letter-spacing: -0.01em;
  color: var(--green);
  font-style: italic;
  transform: skewX(-6deg);
  display: inline-block;
}
.logo:hover { color: var(--coral); }

.primary-nav ul { display: flex; gap: 2rem; }
.primary-nav a {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ink);
  position: relative;
  padding: 0.35rem 0;
}
.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.primary-nav a:hover::after { transform: scaleX(1); }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  width: 36px; height: 36px;
  cursor: pointer;
  padding: 0;
  position: relative;
  z-index: 101;
}
.nav-toggle span {
  display: block;
  width: 26px; height: 2.5px;
  margin: 5px auto;
  background: var(--ink);
  transition: transform .3s var(--ease), opacity .3s var(--ease), background .3s var(--ease);
}
.nav-toggle[aria-expanded="true"] span { background: var(--cream); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- HERO — bright cream hero with BIG portrait tile ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 7rem var(--pad-x) 6rem;
  overflow: hidden;
  background: var(--cream);
}

/* Ambient bright glow */
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 18%, rgba(13, 92, 60, 0.14), transparent 55%),
    radial-gradient(circle at 5% 95%, rgba(255, 77, 109, 0.12), transparent 55%);
  z-index: 0;
}

/* Diagonal emerald block on the right */
.hero-bg::before {
  content: "";
  position: absolute;
  right: -5%;
  top: 0;
  bottom: 0;
  width: 62%;
  background: var(--green);
  clip-path: polygon(24% 0, 100% 0, 100% 100%, 0 100%);
}

/* BIG floating portrait tile */
.hero-bg::after {
  content: "";
  position: absolute;
  right: 4%;
  top: 9%;
  bottom: 8%;
  width: clamp(360px, 44vw, 620px);
  background: url('photos/Vidhi-Lakhawala-683x1024.jpg') center 20%/cover no-repeat var(--green);
  border: 4px solid var(--cream);
  z-index: 1;
  transform: rotate(2deg);
  box-shadow:
    18px 18px 0 var(--coral),
    0 40px 80px -28px rgba(0, 0, 0, 0.4);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
}

/* Giant "VL" monogram watermark — green, low opacity, behind the title */
.hero-content::before {
  content: "VL";
  position: absolute;
  top: -2rem;
  left: -0.05em;
  font-family: var(--display);
  font-size: clamp(12rem, 22vw, 24rem);
  line-height: 0.82;
  color: var(--green);
  opacity: 0.075;
  font-style: italic;
  transform: skewX(-6deg);
  transform-origin: left center;
  letter-spacing: -0.06em;
  white-space: nowrap;
  z-index: -1;
  pointer-events: none;
  user-select: none;
}

/* Press-pass badge: yellow fill, ink text, slight tilt, ink drop shadow */
.hero-kicker {
  display: inline-block;
  background: var(--sun);
  color: var(--ink);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 800;
  padding: 0.55rem 1rem;
  margin-bottom: 1.75rem;
  transform: rotate(-1.5deg);
  transform-origin: left center;
  box-shadow: 4px 4px 0 var(--ink);
}
.hero-kicker::before {
  content: "";
  display: none;
}

.hero-title {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(3.5rem, 13vw, 13rem);
  line-height: 0.85;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  margin: 0;
  color: var(--ink);
  font-style: italic;
  transform: skewX(-6deg);
  transform-origin: left center;
}
.hero-title .word {
  display: block;
  white-space: nowrap;
  transition: transform .4s var(--ease);
}
.hero-title .word-1 {
  text-shadow: 0.055em 0.055em 0 var(--coral);
}
.hero-title .word-2 {
  color: var(--coral);
  text-shadow: 0.055em 0.055em 0 var(--cream);
}

/* Per-letter hover wave */
.hero-title .char {
  display: inline-block;
  transform-origin: center 60%;
  will-change: transform;
}
.hero-title:hover .char {
  animation: heroLetterWave 0.7s var(--ease) calc(var(--i) * 38ms) both;
}
.hero-title:hover .word-1 { transform: translateX(-4px); }
.hero-title:hover .word-2 { transform: translateX(6px); }
@keyframes heroLetterWave {
  0%   { transform: translateY(0) rotate(0); }
  35%  { transform: translateY(-0.18em) rotate(-4deg); }
  60%  { transform: translateY(0.04em) rotate(2deg); }
  100% { transform: translateY(0) rotate(0); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-title:hover .char { animation: none; }
  .hero-title:hover .word-1,
  .hero-title:hover .word-2 { transform: none; }
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 2.75rem;
  padding-top: 1.75rem;
  border-top: 3px solid var(--ink);
  max-width: 720px;
  position: relative;
}
/* Small coral accent tab sitting on top of the ink rule */
.hero-meta::before {
  content: "";
  position: absolute;
  top: -3px;
  left: 0;
  width: 72px;
  height: 3px;
  background: var(--coral);
}
.hero-meta > div {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 0 1.75rem;
  border-left: 1px solid var(--line);
  min-width: 0;
}
.hero-meta > div:first-child {
  padding-left: 0;
  border-left: 0;
}
.hero-meta .label {
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--coral);
  font-weight: 700;
}
.hero-meta .value {
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.25vw, 2.15rem);
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1;
  font-style: italic;
  transform: skewX(-6deg);
  transform-origin: left center;
  display: inline-block;
}

/* CTA row beneath hero-meta — Accolades button + Instagram handles */
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1rem;
  margin-top: 2rem;
  align-items: center;
}
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.4rem;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 2px solid var(--ink);
  box-shadow: 4px 4px 0 var(--coral);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
}
.btn-cta:hover {
  transform: translate(-3px, -3px);
  box-shadow: 7px 7px 0 var(--coral);
  color: var(--cream);
}
.btn-cta-ghost {
  background: rgba(10, 10, 10, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--cream);
  border-color: var(--ink);
  box-shadow: 4px 4px 0 var(--coral);
}
.btn-cta-ghost:hover {
  background: var(--coral);
  border-color: var(--coral);
  color: var(--cream);
  box-shadow: 7px 7px 0 var(--ink);
}

/* Jersey-style number */
.hero-number {
  position: absolute;
  right: var(--pad-x);
  top: 28%;
  z-index: 3;
  font-family: var(--display);
  font-size: clamp(6rem, 15vw, 14rem);
  line-height: 1;
  color: var(--coral);
  font-style: italic;
  transform: skewX(-6deg) rotate(-4deg);
  text-shadow: 4px 4px 0 var(--cream);
  pointer-events: none;
  mix-blend-mode: normal;
}

.scroll-cue {
  position: absolute;
  left: var(--pad-x);
  bottom: 2.25rem;
  z-index: 3;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.scroll-cue::after {
  content: "";
  width: 60px;
  height: 2px;
  background: var(--ink);
  animation: pulseLine 2s var(--ease) infinite;
}
@keyframes pulseLine {
  0%, 100% { transform: scaleX(1); transform-origin: left; }
  50%      { transform: scaleX(0.4); transform-origin: left; }
}

/* ---------- SECTIONS ---------- */
.section {
  padding: var(--pad-y) 0;
  background: var(--cream);
  position: relative;
}
.section-alt { background: var(--cream-deep); }
.section-dark {
  background: var(--green);
  color: var(--cream);
}

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--coral);
  font-weight: 700;
  margin-bottom: 1.25rem;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--coral);
}
.section-dark .eyebrow { color: var(--sun); }
.section-dark .eyebrow::before { background: var(--sun); }

.section-title {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0 0 3rem;
  font-style: italic;
  transform: skewX(-6deg);
  transform-origin: left center;
  display: inline-block;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- ABOUT ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}
@media (min-width: 900px) {
  .about-grid { grid-template-columns: 5fr 7fr; gap: 5rem; }
}
.about-portrait {
  aspect-ratio: 3 / 4;
  width: 100%;
  position: relative;
  background: url('photos/IMG_0017.JPG') center/cover no-repeat var(--green);
  border: 3px solid var(--ink);
  box-shadow: 14px 14px 0 var(--coral);
}
.about-copy p {
  font-size: 1.1rem;
  color: var(--ink-soft);
  margin: 0 0 1.25rem;
  max-width: 58ch;
}
.about-copy p:first-of-type::first-letter {
  font-family: var(--display);
  font-size: 3.5rem;
  float: left;
  line-height: 0.9;
  padding: 0.1em 0.15em 0 0;
  color: var(--green);
  font-style: italic;
}

/* ---------- STATS ---------- */
#career.section-dark { padding: var(--pad-y) 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-top: 1rem;
  border-top: 2px solid rgba(245, 241, 232, 0.2);
  border-bottom: 2px solid rgba(245, 241, 232, 0.2);
}
@media (min-width: 768px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}
.stat {
  padding: 3rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
}
.stat + .stat { border-left: 2px solid rgba(245, 241, 232, 0.2); }
@media (max-width: 767px) {
  .stat:nth-child(2) { border-left: 2px solid rgba(245, 241, 232, 0.2); }
  .stat:nth-child(3), .stat:nth-child(4) { border-top: 2px solid rgba(245, 241, 232, 0.2); }
  .stat:nth-child(3) { border-left: 0; }
}
.stat-num {
  font-family: var(--display);
  font-size: clamp(3.5rem, 7vw, 6rem);
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: var(--sun);
  font-style: italic;
  transform: skewX(-6deg);
  transform-origin: left;
  display: inline-block;
}
.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--cream);
  font-weight: 700;
  opacity: 0.75;
}
.stat-label-link {
  display: inline-block;
  border-bottom: 1px dotted rgba(245, 241, 232, 0.55);
  padding-bottom: 2px;
  transition: opacity .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.stat-label-link:hover { opacity: 1; color: var(--sun); border-bottom-color: var(--sun); border-bottom-style: solid; }

/* Hero "value" anchor (College → Wake Forest) — keeps display look but feels link-y */
.value-link {
  position: relative;
  background-image: linear-gradient(var(--coral), var(--coral));
  background-repeat: no-repeat;
  background-size: 0% 3px;
  background-position: 0 100%;
  padding-bottom: 3px;
  transition: background-size .3s var(--ease), color .25s var(--ease);
}
.value-link:hover { color: var(--coral); background-size: 100% 3px; }

/* Inline body-copy link (about paragraph) */
.inline-link {
  background-image: linear-gradient(var(--coral), var(--coral));
  background-repeat: no-repeat;
  background-size: 100% 2px;
  background-position: 0 100%;
  padding-bottom: 1px;
  font-weight: 600;
  transition: color .25s var(--ease), background-size .3s var(--ease);
}
.inline-link:hover { color: var(--cream); background-color: var(--coral); background-size: 100% 100%; padding-inline: 3px; margin-inline: -3px; }

/* ---------- NEWS ---------- */
.news-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) { .news-grid { grid-template-columns: repeat(3, 1fr); } }

.news-card {
  background: var(--cream);
  border: 2px solid var(--ink);
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  position: relative;
}
.news-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 8px 8px 0 var(--coral);
}

.news-link { display: block; height: 100%; }
.news-thumb {
  aspect-ratio: 16 / 10;
  background-color: #083d28;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-bottom: 2px solid var(--ink);
  transition: transform .6s var(--ease);
}
.news-card:hover .news-thumb { transform: scale(1.04); }

.news-body { padding: 1.75rem 1.5rem 2rem; }
.news-meta {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--coral);
  font-weight: 700;
  margin-bottom: 1rem;
}
.news-title {
  font-family: var(--body);
  font-weight: 700;
  font-size: 1.15rem;
  line-height: 1.25;
  margin: 0 0 0.75rem;
  color: var(--ink);
}
.news-card:hover .news-title { color: var(--green); }
.news-excerpt {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0;
}

/* ---------- SCHEDULE ---------- */
.schedule-list { border-top: 3px solid var(--ink); }
.schedule-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  padding: 1.75rem 1rem;
  border-bottom: 1px solid var(--line);
  align-items: center;
  transition: background .25s var(--ease), padding .25s var(--ease);
}
.schedule-row:not(.schedule-head):hover {
  background: var(--cream);
  padding-left: 2rem;
}

@media (min-width: 900px) {
  .schedule-row {
    grid-template-columns: 170px 1fr 1fr 140px;
    gap: 2rem;
  }
}

.schedule-head {
  display: none;
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
  padding: 1rem;
  border-bottom: 2px solid var(--ink);
}
@media (min-width: 900px) { .schedule-head { display: grid; } }

.cell-date {
  font-family: var(--display);
  font-size: 1.5rem;
  letter-spacing: -0.01em;
  color: var(--green);
  font-style: italic;
  transform: skewX(-6deg);
  transform-origin: left;
  display: inline-block;
  white-space: nowrap;
}
.cell-event {
  font-weight: 700;
  color: var(--ink);
  font-size: 1.1rem;
}
.cell-event a {
  color: inherit;
  background-image: linear-gradient(var(--coral), var(--coral));
  background-repeat: no-repeat;
  background-size: 100% 2px;
  background-position: 0 100%;
  padding-bottom: 2px;
  transition: background-size .25s var(--ease), color .25s var(--ease);
}
.cell-event a:hover { color: var(--cream); background-size: 100% 100%; padding-inline: 4px; margin-inline: -4px; }
.cell-venue {
  color: var(--muted);
  font-size: 0.95rem;
}
.cell-venue a {
  color: inherit;
  border-bottom: 1px dotted var(--muted);
  padding-bottom: 1px;
  transition: color .25s var(--ease), border-color .25s var(--ease);
}
.cell-venue a:hover { color: var(--green); border-bottom-color: var(--green); border-bottom-style: solid; }
.cell-status {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.55rem 0.9rem;
  font-weight: 700;
  display: inline-block;
  justify-self: start;
  border: 2px solid currentColor;
}
.status-upcoming { color: var(--coral); background: var(--cream); }
.status-pending { color: var(--muted); }

/* ---------- PARTNERS ---------- */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 640px) { .partners-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .partners-grid { grid-template-columns: repeat(6, 1fr); } }

.partner-slot {
  background: var(--cream);
  border: 2px solid var(--ink);
  aspect-ratio: 3 / 2;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), color .3s var(--ease);
}
.partner-slot:hover {
  transform: translate(-3px, -3px);
  box-shadow: 6px 6px 0 var(--coral);
  color: var(--green);
}

/* ---------- CONTACT ---------- */
#contact {
  background: var(--green);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
#contact .section-title { color: var(--cream); }
#contact .eyebrow { color: var(--sun); }
#contact .eyebrow::before { background: var(--sun); }

/* Soft ambient glows behind the contact band */
#contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 77, 109, 0.18), transparent 50%),
    radial-gradient(circle at 8% 92%, rgba(255, 210, 63, 0.10), transparent 55%);
  pointer-events: none;
  z-index: 0;
}
#contact .section-inner { position: relative; z-index: 1; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 900px) {
  .contact-grid { grid-template-columns: 1fr 1.15fr; gap: 5rem; align-items: start; }
}
.contact-intro .section-title { margin-bottom: 1rem; }
.contact-lede {
  font-size: 1.05rem;
  line-height: 1.55;
  color: rgba(245, 241, 232, 0.78);
  max-width: 32ch;
  margin: 0;
}

.contact-blocks { display: grid; gap: 2.25rem; }

.contact-block {
  position: relative;
  padding: 1.75rem 1.75rem 1.75rem 1.5rem;
  background: rgba(8, 61, 40, 0.55);
  border: 1px solid rgba(245, 241, 232, 0.18);
  border-left: 3px solid var(--coral);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.contact-block:hover {
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0 var(--coral);
}

.contact-label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--sun);
  font-weight: 700;
  margin-bottom: 1rem;
}

/* Hero email link — display-font, italic skew, animated coral underline */
.contact-email {
  display: inline-block;
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1.5rem, 3.4vw, 2.4rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--cream);
  transform: skewX(-6deg);
  transform-origin: left;
  position: relative;
  overflow-wrap: anywhere;
  padding-bottom: 4px;
  background-image: linear-gradient(var(--coral), var(--coral));
  background-repeat: no-repeat;
  background-size: 0% 4px;
  background-position: 0 100%;
  transition: background-size .35s var(--ease), color .25s var(--ease);
}
.contact-email:hover {
  color: var(--cream);
  background-size: 100% 4px;
}

.contact-sub {
  margin: 0.85rem 0 1.25rem;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 241, 232, 0.6);
  font-weight: 600;
}

/* Coral pill CTA inside the primary block */
.contact-email-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.7rem 1.1rem;
  background: var(--coral);
  color: var(--cream);
  font-family: var(--body);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 2px solid var(--coral);
  box-shadow: 4px 4px 0 var(--cream);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
}
.contact-email-cta .arr { transition: transform .25s var(--ease); }
.contact-email-cta:hover {
  color: var(--cream);
  transform: translate(-3px, -3px);
  box-shadow: 7px 7px 0 var(--cream);
}
.contact-email-cta:hover .arr { transform: translateX(4px); }

/* Instagram block: stacked handle list with @ accent */
.ig-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}
.ig-list a {
  display: inline-flex;
  align-items: baseline;
  gap: 0.15rem;
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1.25rem, 2.2vw, 1.7rem);
  letter-spacing: -0.01em;
  color: var(--cream);
  transform: skewX(-6deg);
  transform-origin: left;
  transition: color .25s var(--ease), gap .25s var(--ease);
}
.ig-list .ig-at {
  color: var(--coral);
  font-weight: 900;
}
.ig-list a:hover { color: var(--sun); gap: 0.4rem; }
.ig-list a:hover .ig-at { color: var(--sun); }

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--ink);
  color: var(--cream);
  padding: 3rem 0 2rem;
}
.footer-inner {
  display: grid;
  gap: 2rem;
  justify-items: center;
  text-align: center;
}
@media (min-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr auto 1fr;
    justify-items: stretch;
    align-items: center;
    text-align: left;
  }
  .footer-inner .social { justify-self: center; }
  .footer-inner .copy { justify-self: end; text-align: right; }
}
.site-footer .logo { color: var(--coral); }
.site-footer .logo:hover { color: var(--sun); }
.social {
  display: flex;
  gap: 1.75rem;
  flex-wrap: wrap;
  justify-content: center;
}
.social a {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--cream);
  font-weight: 700;
}
.social a:hover { color: var(--coral); }
.copy { font-size: 0.78rem; color: var(--muted); margin: 0; }

/* ---------- PAGE HERO (interior pages like timeline) ---------- */
.page-hero {
  position: relative;
  padding: clamp(7rem, 14vw, 12rem) 0 clamp(2rem, 5vw, 4rem);
  background: var(--cream);
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 65%;
  background:
    radial-gradient(ellipse at 85% 10%, rgba(13, 92, 60, 0.12), transparent 55%),
    radial-gradient(ellipse at 10% 120%, rgba(255, 77, 109, 0.08), transparent 55%);
  z-index: 0;
  pointer-events: none;
}
.page-hero .section-inner { position: relative; z-index: 1; }

.page-title {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(3rem, 10vw, 7.5rem);
  line-height: 0.88;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin: 0.75rem 0 1.5rem;
  color: var(--ink);
  font-style: italic;
  transform: skewX(-6deg);
  transform-origin: left center;
  display: inline-block;
  max-width: 100%;
  overflow-wrap: break-word;
}
.page-title .word { display: block; }
.page-title .word-1 { text-shadow: 0.045em 0.045em 0 var(--coral); }
.page-title .word-2 {
  color: var(--coral);
  text-shadow: 0.045em 0.045em 0 var(--cream);
}
.page-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--ink-soft);
  max-width: 58ch;
  margin: 1.5rem 0 0;
}

/* Active nav link */
.primary-nav a.nav-current {
  color: var(--coral);
}
.primary-nav a.nav-current::after {
  transform: scaleX(1);
  background: var(--coral);
}

/* Back link at bottom of interior pages */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 4rem;
  padding: 1rem 1.5rem 1rem 1.25rem;
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ink);
  border: 2px solid var(--ink);
  background: var(--cream);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), color .25s var(--ease);
}
.back-link .back-arrow {
  font-family: var(--display);
  font-size: 1.25rem;
  line-height: 1;
  transition: transform .25s var(--ease);
}
.back-link:hover,
.back-link:active {
  transform: translate(-3px, -3px);
  box-shadow: 6px 6px 0 var(--coral);
  color: var(--ink);
}
.back-link:hover .back-arrow,
.back-link:active .back-arrow {
  transform: translateX(-4px);
}

/* Timeline page interior tightens top padding since page-hero handles intro */
.page-hero + #timeline { padding-top: 0; }

/* ---------- TIMELINE ---------- */
.timeline { background: var(--cream); }

.tl-stream {
  margin-top: 1rem;
  border-top: 3px solid var(--ink);
}

.tl-year {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  padding: 3rem 0;
  border-bottom: 2px solid var(--line);
  position: relative;
}
.tl-year:last-child { border-bottom: 3px solid var(--ink); }

@media (min-width: 900px) {
  .tl-year {
    grid-template-columns: 280px 1fr;
    gap: 3.5rem;
    padding: 4rem 0;
  }
  .tl-year-head {
    position: sticky;
    top: 100px;
    align-self: start;
    padding-right: 1.5rem;
    overflow: visible;
  }
}

.tl-year-head {
  display: flex;
  align-items: flex-start;
  min-width: 0;
}
.tl-year-num {
  font-family: var(--display);
  font-size: clamp(3.5rem, 8vw, 6.25rem);
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: var(--green);
  font-style: italic;
  transform: skewX(-6deg);
  transform-origin: left center;
  display: inline-block;
  text-shadow: 0.045em 0.045em 0 var(--coral);
  white-space: nowrap;
}

.tl-list {
  display: grid;
  gap: 0;
  list-style: none;
  padding: 0;
  margin: 0;
}

.tl-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.6rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--ink-soft);
  transition: padding .25s var(--ease), background .25s var(--ease);
}
.tl-item:first-child { border-top: 0; padding-top: 0.5rem; }
.tl-item:hover { padding-left: 0.75rem; background: linear-gradient(90deg, rgba(255,77,109,0.04), transparent); }

@media (min-width: 640px) {
  .tl-item {
    grid-template-columns: 110px 1fr;
    gap: 1.5rem;
    align-items: start;
  }
}

.tl-item p {
  margin: 0;
  max-width: 60ch;
}
.tl-item p strong {
  color: var(--ink);
  font-weight: 700;
}
.tl-item p em {
  font-style: normal;
  font-family: var(--display);
  font-weight: 400;
  color: var(--green);
  letter-spacing: 0.01em;
  padding: 0 0.1em;
}

.tl-tag {
  font-family: var(--body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0.45rem 0.7rem;
  border: 2px solid var(--line);
  display: inline-block;
  text-align: center;
  justify-self: start;
  white-space: nowrap;
  background: var(--cream);
}

/* Tag color variants */
.tl-item.tl-win .tl-tag {
  color: var(--cream);
  background: var(--coral);
  border-color: var(--coral);
}
.tl-item.tl-runner .tl-tag {
  color: var(--ink);
  background: var(--sun);
  border-color: var(--sun);
}
.tl-item.tl-top .tl-tag {
  color: var(--green);
  border-color: var(--green);
}
.tl-item.tl-award .tl-tag {
  color: var(--ink);
  border-color: var(--ink);
}
.tl-item.tl-result .tl-tag {
  color: var(--muted);
  border-color: var(--line);
}

/* ---------- GALLERY (bento grid) ---------- */
.gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-top: 1rem;
}

@media (min-width: 640px) {
  .gallery { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
}
@media (min-width: 900px) {
  .gallery {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: 1rem;
    grid-template-areas:
      "a a b c"
      "a a d c"
      "e f f g";
  }
  .g-tile-a { grid-area: a; }
  .g-tile-b { grid-area: b; }
  .g-tile-c { grid-area: c; }
  .g-tile-d { grid-area: d; }
  .g-tile-e { grid-area: e; }
  .g-tile-f { grid-area: f; }
  .g-tile-g { grid-area: g; }
}
@media (min-width: 1200px) {
  .gallery { grid-auto-rows: 230px; }
}

.g-tile {
  margin: 0;
  position: relative;
  overflow: hidden;
  border: 3px solid var(--ink);
  background: var(--green);
  cursor: pointer;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  aspect-ratio: 4 / 3;
}
@media (min-width: 900px) {
  .g-tile { aspect-ratio: auto; }
}
.g-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease), filter .4s var(--ease);
  display: block;
}
.g-tile:hover {
  transform: translate(-4px, -4px);
  box-shadow: 10px 10px 0 var(--coral);
  z-index: 2;
}
.g-tile:hover img {
  transform: scale(1.06);
}

.g-tile figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1rem 1.1rem;
  background: linear-gradient(180deg, transparent 0%, rgba(10, 10, 10, 0.88) 80%);
  color: var(--cream);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transform: translateY(8px);
  opacity: 0.85;
  transition: opacity .3s var(--ease), transform .3s var(--ease);
  pointer-events: none;
}
.g-tile:hover figcaption {
  transform: translateY(0);
  opacity: 1;
}

/* ---------- LIGHTBOX ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(8, 8, 8, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 3.5rem 1.5rem 2.5rem;
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.lightbox.open {
  display: flex;
  opacity: 1;
}
.lightbox figure {
  margin: 0;
  max-width: 1200px;
  max-height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}
.lightbox img {
  max-width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border: 3px solid var(--cream);
  background: var(--green);
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.6);
}
.lightbox figcaption {
  color: var(--cream);
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 0 1rem;
}
.lightbox figcaption:empty { display: none; }
.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  border: 2px solid var(--cream);
  color: var(--cream);
  width: 48px;
  height: 48px;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}
.lightbox-close:hover {
  color: var(--coral);
  border-color: var(--coral);
  transform: rotate(90deg);
}

/* ---------- THEME + LAYOUT SWITCHERS ---------- */
/* Switchers hidden — palette locked to #6, layout locked to A. */
.switcher-stack {
  display: none;
  flex-direction: column;
  gap: 4px;
  align-self: center;
  margin: 0 auto 0 1.25rem;
}
.theme-switcher,
.layout-switcher {
  display: inline-flex;
  gap: 2px;
  padding: 3px;
  background: rgba(10, 10, 10, 0.08);
  border: 1px solid var(--line);
  border-radius: 999px;
}
.theme-btn,
.layout-btn {
  width: 28px;
  height: 26px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  font-family: var(--display);
  font-style: italic;
  font-size: 0.78rem;
  line-height: 1;
  cursor: pointer;
  transition: background .2s var(--ease), color .2s var(--ease), transform .2s var(--ease);
}
.theme-btn:hover,
.layout-btn:hover {
  background: rgba(10, 10, 10, 0.06);
  transform: scale(1.06);
}
.theme-btn.is-active { background: var(--coral); color: var(--cream); }
.layout-btn.is-active { background: var(--ink); color: var(--cream); }
@media (max-width: 480px) {
  .theme-btn, .layout-btn { width: 24px; height: 22px; font-size: 0.68rem; }
  .switcher-stack { margin-left: 0.5rem; gap: 2px; }
  .theme-switcher, .layout-switcher { gap: 1px; padding: 2px; }
}

/* =========================================================
   LAYOUTS — desktop only (mobile stays on baseline A)
   A = current editorial asymmetric (no overrides)
   B = Stadium — scroll-snap, full-bleed hero, carousel gallery
   C = Swiss — numbered, upright, strict grid, hairlines
   D = Zine — rotated photos, tape corners, marker highlights
   ========================================================= */

@media (min-width: 900px) {

  /* ========== LAYOUT B — STADIUM CINEMATIC ========== */
  html:has(body.layout-b) {
    scroll-snap-type: y proximity;
    scroll-behavior: smooth;
  }
  body.layout-b main > section,
  body.layout-b .hero {
    scroll-snap-align: start;
    scroll-snap-stop: normal;
  }

  /* Hero: full-bleed photo magazine-cover style */
  body.layout-b .hero {
    min-height: 100svh;
    min-height: 100vh;
    padding: 7rem var(--pad-x) 6rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background-image: url('photos/IMG_3019.JPG');
    background-size: cover;
    background-position: center 25%;
    background-color: var(--ink);
  }
  body.layout-b .hero-bg {
    background: linear-gradient(90deg,
      rgba(8, 8, 8, 0.85) 0%,
      rgba(10, 10, 10, 0.55) 25%,
      rgba(10, 10, 10, 0.2) 50%,
      transparent 70%),
      linear-gradient(180deg,
      rgba(10, 10, 10, 0.35) 0%,
      transparent 30%,
      transparent 60%,
      rgba(8, 61, 40, 0.6) 100%);
  }
  body.layout-b .hero-bg::before,
  body.layout-b .hero-bg::after { display: none; }
  body.layout-b .hero-content::before { display: none; } /* no monogram on photo */
  body.layout-b .hero-title { color: var(--cream); font-size: clamp(5rem, 14vw, 14rem); }
  body.layout-b .hero-title .word-1 { text-shadow: 0.06em 0.06em 0 var(--coral), 0 8px 40px rgba(0,0,0,0.5); }
  body.layout-b .hero-title .word-2 { color: var(--coral); text-shadow: 0.06em 0.06em 0 var(--cream), 0 8px 40px rgba(0,0,0,0.55); }
  body.layout-b .hero-meta { border-top-color: var(--cream); }
  body.layout-b .hero-meta .label { color: var(--sun); }
  body.layout-b .hero-meta .value { color: var(--cream); text-shadow: 0 2px 12px rgba(0,0,0,0.4); }
  body.layout-b .scroll-cue { color: var(--cream); }
  body.layout-b .scroll-cue::after { background: var(--cream); }
  body.layout-b .btn-cta { background: var(--coral); border-color: var(--coral); box-shadow: 4px 4px 0 var(--cream); }
  body.layout-b .btn-cta:hover { box-shadow: 7px 7px 0 var(--cream); }
  body.layout-b .btn-cta-ghost {
    background: rgba(10, 10, 10, 0.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--cream);
    border-color: var(--cream);
    box-shadow: 4px 4px 0 var(--coral);
  }
  body.layout-b .btn-cta-ghost:hover { background: var(--cream); color: var(--ink); border-color: var(--cream); box-shadow: 7px 7px 0 var(--coral); }

  /* About: 50/50 split, flush photo */
  body.layout-b #about { min-height: 100svh; display: flex; align-items: center; }
  body.layout-b #about .section-inner.about-grid { gap: 6rem; max-width: 100%; padding-inline: 0; }
  body.layout-b .about-grid { grid-template-columns: 1fr 1fr; }
  body.layout-b .about-portrait { box-shadow: none; border: 0; aspect-ratio: 4 / 5; min-height: 100svh; margin-left: 0; }
  body.layout-b .about-copy { padding: 0 var(--pad-x); }

  /* Career stats: dramatic single-row band */
  body.layout-b #career { min-height: 60vh; display: flex; align-items: center; }
  body.layout-b .stat-num { font-size: clamp(5rem, 9vw, 8rem); }

  /* Gallery: horizontal scroll-snap carousel edge to edge */
  body.layout-b #gallery .section-inner { padding-inline: 0; max-width: 100%; }
  body.layout-b #gallery .eyebrow,
  body.layout-b #gallery .section-title { margin-left: var(--pad-x); }
  body.layout-b .gallery {
    display: flex;
    grid-template-columns: none;
    grid-template-areas: none;
    grid-auto-rows: auto;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    gap: 1rem;
    padding: 1rem var(--pad-x) 3rem;
    scrollbar-width: thin;
  }
  body.layout-b .g-tile {
    grid-area: auto;
    flex: 0 0 clamp(320px, 42vw, 620px);
    aspect-ratio: 3 / 4;
    scroll-snap-align: center;
  }
  body.layout-b .g-tile-f { aspect-ratio: 16 / 10; flex-basis: clamp(480px, 60vw, 880px); }

  /* News: bigger cards, 1 row hidden scroll */
  body.layout-b .news-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
  body.layout-b .news-thumb { aspect-ratio: 4 / 5; }
  body.layout-b .news-title { font-size: 1.4rem; }

  /* Timeline page tweaks */
  body.layout-b .page-hero { min-height: 100svh; display: flex; align-items: center; }
  body.layout-b .tl-year { padding: 5rem 0; }


  /* ================================================
     LAYOUT C — CLASSIC HERITAGE
     Playfair Display serif, centered composition,
     small-caps labels, Roman numeral chapter marks,
     mat-framed photos, hairline dividers, quiet.
     ================================================ */
  body.layout-c {
    --display: "Playfair Display", "Times New Roman", serif;
    --max: 960px;
    --pad-y: clamp(4rem, 7vw, 7rem);
  }

  /* Kill all italic skew — everything upright + serif */
  body.layout-c .hero-title,
  body.layout-c .section-title,
  body.layout-c .page-title,
  body.layout-c .tl-year-num,
  body.layout-c .hero-meta .value,
  body.layout-c .cell-date,
  body.layout-c .contact-name,
  body.layout-c .stat-num,
  body.layout-c .logo,
  body.layout-c .hero-title .word,
  body.layout-c .hero-title .word-2,
  body.layout-c .eyebrow {
    transform: none;
    font-style: normal;
  }
  body.layout-c .hero-title,
  body.layout-c .section-title,
  body.layout-c .page-title,
  body.layout-c .tl-year-num { font-weight: 700; letter-spacing: -0.02em; }
  body.layout-c .hero-title .word-1 { font-style: italic; font-weight: 400; } /* serif italic "Vidhi" */
  body.layout-c .hero-title .word-2 { font-weight: 800; }

  /* Small-caps eyebrows + labels */
  body.layout-c .eyebrow,
  body.layout-c .stat-label,
  body.layout-c .news-meta,
  body.layout-c .contact-label,
  body.layout-c .hero-meta .label {
    font-family: var(--body);
    font-variant: small-caps;
    letter-spacing: 0.22em;
    font-weight: 600;
    color: var(--ink-soft);
  }
  body.layout-c .eyebrow::before { display: none; }

  /* Kicker becomes a refined small-caps label, no badge */
  body.layout-c .hero-kicker {
    background: transparent;
    color: var(--ink-soft);
    box-shadow: none;
    padding: 0 0 0.5rem;
    transform: none;
    border-bottom: 1px solid var(--ink-soft);
    border-radius: 0;
    font-family: var(--body);
    font-variant: small-caps;
    font-weight: 600;
    letter-spacing: 0.3em;
    display: inline-block;
    margin-left: 0;
  }
  body.layout-c .hero-kicker::before { display: none; }

  /* Roman-numeral chapter marks via CSS counter */
  body.layout-c main { counter-reset: chapter; }
  body.layout-c main > section:not(.hero) { counter-increment: chapter; position: relative; }
  body.layout-c main > section:not(.hero) .section-inner > .eyebrow::before,
  body.layout-c main > section:not(.hero) .section-inner > *:first-child::before {
    /* no-op — we render the numeral as a fresh element below */
  }
  body.layout-c main > section:not(.hero) .section-inner::before {
    content: counter(chapter, upper-roman);
    display: block;
    text-align: center;
    font-family: var(--display);
    font-style: italic;
    font-weight: 400;
    font-size: 1.35rem;
    color: var(--ink-soft);
    letter-spacing: 0.2em;
    margin-bottom: 1.5rem;
  }

  /* Centered section compositions */
  body.layout-c .section-inner {
    text-align: center;
  }
  body.layout-c .section-title,
  body.layout-c .page-title {
    font-family: var(--display);
    font-weight: 700;
    font-style: italic;
    text-transform: none;
    font-size: clamp(2.5rem, 5vw, 4.25rem);
    margin: 0.5rem auto 1.5rem;
    display: inline-block;
  }
  body.layout-c .section-title::after,
  body.layout-c .page-title::after {
    content: " · ";
    font-family: var(--display);
    color: var(--coral);
  }

  /* Ornamental divider above each section-title */
  body.layout-c .section-inner > .eyebrow {
    display: block;
    text-align: center;
    margin-bottom: 1rem;
  }

  /* Hero: centered composition, no diagonal block, photo below title */
  body.layout-c .hero {
    padding: 7rem var(--pad-x) 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: var(--cream);
    min-height: 100svh;
  }
  body.layout-c .hero-bg { background: none; }
  body.layout-c .hero-bg::before { display: none; }
  body.layout-c .hero-bg::after {
    position: relative;
    right: auto; top: auto; bottom: auto;
    width: clamp(280px, 24vw, 380px);
    aspect-ratio: 2 / 3;
    margin: 2.5rem auto 0;
    transform: none;
    border: 1px solid var(--ink-soft);
    padding: 14px;
    background-origin: content-box;
    box-shadow: 0 20px 50px -20px rgba(0,0,0,0.15);
    align-self: center;
  }
  body.layout-c .hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    display: contents;
  }
  body.layout-c .hero-content > * { margin-left: auto; margin-right: auto; }
  body.layout-c .hero-content::before { display: none; }
  body.layout-c .hero-title {
    font-size: clamp(4rem, 10vw, 8.5rem);
    line-height: 1;
    max-width: 100%;
  }
  body.layout-c .hero-title .word-1 { text-shadow: none; }
  body.layout-c .hero-title .word-2 { text-shadow: none; color: var(--ink); }
  body.layout-c .hero-title .word { display: block; }
  body.layout-c .hero-meta {
    border-top: 1px solid var(--ink-soft);
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
    text-align: left;
    padding-top: 1.25rem;
  }
  body.layout-c .hero-meta::before { display: none; }
  body.layout-c .hero-meta > div { align-items: center; border-left: 0 !important; padding: 0 1.5rem; text-align: center; }
  body.layout-c .hero-meta .label { color: var(--ink-soft); }
  body.layout-c .scroll-cue { display: none; }

  /* Drop-cap: elegant serif large initial in first About para */
  body.layout-c .about-copy p:first-of-type::first-letter {
    font-family: var(--display);
    font-style: italic;
    font-weight: 600;
    font-size: 5.5rem;
    line-height: 0.9;
    float: left;
    padding: 0.1em 0.15em 0 0;
    color: var(--ink);
  }
  body.layout-c .about-copy { text-align: left; }
  body.layout-c .about-copy p { font-size: 1.1rem; line-height: 1.7; max-width: 64ch; margin-left: auto; margin-right: auto; }

  /* About layout: centered single-column classical */
  body.layout-c .about-grid { grid-template-columns: 1fr; gap: 3rem; max-width: 720px; margin: 0 auto; }
  body.layout-c .about-portrait {
    aspect-ratio: 3 / 4;
    width: min(100%, 400px);
    margin: 0 auto;
    border: 1px solid var(--ink-soft);
    padding: 14px;
    background-origin: content-box;
    box-shadow: 0 20px 50px -20px rgba(0,0,0,0.12);
  }

  /* Stats: centered, hairline dividers, no colored fills */
  body.layout-c #career { background: var(--cream) !important; color: var(--ink) !important; }
  body.layout-c #career .eyebrow,
  body.layout-c #career .section-title { color: var(--ink); }
  body.layout-c .stats-grid {
    border: 0;
    background: transparent;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    max-width: 800px;
    margin: 0 auto;
  }
  body.layout-c .stat { border-left: 1px solid var(--line) !important; padding: 1rem 0.75rem; background: transparent; }
  body.layout-c .stat:first-child { border-left: 0 !important; }
  body.layout-c .stat-num { font-size: clamp(2.5rem, 4.5vw, 4rem); color: var(--ink); }
  body.layout-c .stat-label { opacity: 1; color: var(--ink-soft); font-size: 0.7rem; }

  /* Gallery: restrained 3-col grid, mat-framed photos */
  body.layout-c .gallery {
    grid-template-columns: repeat(3, 1fr);
    grid-template-areas: none;
    grid-auto-rows: auto;
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
  }
  body.layout-c .g-tile {
    grid-area: auto;
    aspect-ratio: 3 / 4;
    border: 1px solid var(--ink-soft);
    padding: 10px;
    background: var(--cream);
    box-shadow: 0 15px 35px -20px rgba(0,0,0,0.15);
  }
  body.layout-c .g-tile:hover { transform: translateY(-3px); box-shadow: 0 25px 45px -20px rgba(0,0,0,0.2); }
  body.layout-c .g-tile img { border: 1px solid var(--line); }
  body.layout-c .g-tile figcaption {
    position: relative;
    background: none;
    color: var(--ink-soft);
    font-family: var(--body);
    font-variant: small-caps;
    letter-spacing: 0.18em;
    text-align: center;
    padding: 0.75rem 0 0;
    opacity: 1;
    transform: none;
    font-size: 0.72rem;
  }

  /* News: tasteful serif list */
  body.layout-c .news-grid {
    grid-template-columns: 1fr;
    gap: 0;
    max-width: 820px;
    margin: 0 auto;
    border-top: 1px solid var(--ink-soft);
  }
  body.layout-c .news-card {
    border: 0;
    border-bottom: 1px solid var(--line);
    background: transparent;
  }
  body.layout-c .news-card:hover { background: var(--cream-deep); box-shadow: none; transform: none; }
  body.layout-c .news-link { display: block; padding: 2rem 1rem; }
  body.layout-c .news-thumb { display: none; }
  body.layout-c .news-title {
    font-family: var(--display);
    font-style: italic;
    font-weight: 600;
    font-size: 1.6rem;
    line-height: 1.3;
    margin: 0.3rem 0 0.5rem;
  }
  body.layout-c .news-excerpt { font-size: 1.02rem; color: var(--ink-soft); font-family: var(--body); }
  body.layout-c .news-meta { color: var(--muted); }

  /* Schedule: centered hairline table */
  body.layout-c #schedule .section-inner { max-width: 900px; text-align: center; }
  body.layout-c .schedule-list { text-align: left; border-top-width: 1px; }
  body.layout-c .schedule-row { padding: 1.25rem 0; border-bottom-width: 1px; }
  body.layout-c .cell-date {
    font-family: var(--display);
    font-style: italic;
    font-weight: 400;
    font-size: 1.2rem;
    color: var(--ink);
  }
  body.layout-c .cell-event { font-family: var(--display); font-weight: 600; font-size: 1.1rem; }
  body.layout-c .cell-status { border-radius: 999px; font-variant: small-caps; letter-spacing: 0.15em; font-size: 0.7rem; }

  /* Contact: centered address block */
  body.layout-c #contact .contact-grid { grid-template-columns: 1fr; max-width: 720px; margin: 0 auto; text-align: center; gap: 2rem; }
  body.layout-c .contact-blocks { grid-template-columns: 1fr 1fr; max-width: 680px; margin: 0 auto; }
  body.layout-c .contact-block { border-top: 1px solid var(--ink-soft); text-align: center; }
  body.layout-c .contact-name { font-family: var(--display); font-style: italic; font-weight: 600; font-size: 1.6rem; }

  /* Timeline page */
  body.layout-c .page-hero { text-align: center; }
  body.layout-c .page-sub { max-width: 58ch; margin: 1.5rem auto 0; }
  body.layout-c .tl-stream { max-width: 820px; margin: 0 auto; }
  body.layout-c .tl-year {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
    padding: 3rem 0;
    border-bottom: 1px solid var(--line);
    text-align: center;
  }
  body.layout-c .tl-year-head { position: static !important; padding-right: 0; justify-content: center; }
  body.layout-c .tl-year-num {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    text-shadow: none;
    color: var(--ink);
    font-family: var(--display);
    font-style: italic;
    font-weight: 400;
    letter-spacing: 0.1em;
  }
  body.layout-c .tl-list { text-align: left; }
  body.layout-c .tl-item { border-top: 1px solid var(--line); grid-template-columns: 110px 1fr; gap: 1.25rem; }
  body.layout-c .tl-tag { border-radius: 999px; font-variant: small-caps; letter-spacing: 0.12em; }


  /* ================================================
     LAYOUT D — KINETIC CHAOS
     Marquee tickers, oversized bleeding titles,
     chromatic-aberration text, mix-blend overlaps,
     rotating orbit decorations, animated color shifts.
     ================================================ */
  body.layout-d {
    --max: 100%;
  }

  /* Animated background noise wash */
  body.layout-d main {
    background:
      radial-gradient(1200px circle at 20% 10%, rgba(255, 77, 109, 0.08), transparent 50%),
      radial-gradient(1200px circle at 80% 90%, rgba(13, 92, 60, 0.08), transparent 50%);
    background-attachment: fixed;
  }

  /* MARQUEE ticker — reused across sections as a decorative element */
  @keyframes marquee-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }
  @keyframes chroma-shift {
    0%, 100% { text-shadow: 0.04em 0 0 var(--coral), -0.04em 0 0 var(--green); }
    50%      { text-shadow: -0.04em 0 0 var(--coral), 0.04em 0 0 var(--green); }
  }
  @keyframes spin-slow {
    to { transform: rotate(360deg); }
  }
  @keyframes pulse-scale {
    0%, 100% { transform: scale(1); }
    50%      { transform: scale(1.04); }
  }

  /* Hero: BIG title with chromatic aberration + kinetic marquee below */
  body.layout-d .hero {
    padding: 6rem var(--pad-x) 4rem;
    overflow: hidden;
  }
  body.layout-d .hero-title {
    font-size: clamp(5rem, 18vw, 18rem);
    line-height: 0.82;
    letter-spacing: -0.05em;
    animation: chroma-shift 3.5s ease-in-out infinite;
  }
  body.layout-d .hero-title .word-1 { color: var(--ink); text-shadow: none; }
  body.layout-d .hero-title .word-2 { color: var(--coral); text-shadow: none; }
  body.layout-d .hero-kicker {
    transform: rotate(-2deg) scale(1.05);
    animation: pulse-scale 2.4s ease-in-out infinite;
  }

  /* Hero photo tile spinning frame */
  body.layout-d .hero-bg::after {
    border-width: 6px;
    transform: rotate(3deg);
    box-shadow: 20px 20px 0 var(--coral), -20px -20px 0 var(--green);
  }

  /* BLEEDING oversized section titles — full-viewport width */
  body.layout-d .section-title,
  body.layout-d .page-title {
    font-size: clamp(4rem, 12vw, 12rem);
    letter-spacing: -0.04em;
    text-transform: uppercase;
    line-height: 0.85;
    /* bleed past the section's padding to viewport edges */
    width: 100vw;
    margin-left: calc(50% - 50vw);
    padding-left: var(--pad-x);
    padding-right: var(--pad-x);
    text-align: left;
    /* stacked offset text via text-shadow */
    text-shadow:
      0.05em 0.05em 0 var(--coral),
      0.1em 0.1em 0 var(--green),
      0.15em 0.15em 0 var(--sun);
  }

  /* Marquee header per section — displayed via ::before on eyebrow */
  body.layout-d .eyebrow {
    display: block;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    padding: 0.5rem var(--pad-x);
    background: var(--ink);
    color: var(--sun);
    font-size: 0.95rem;
    letter-spacing: 0.4em;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    border-top: 4px solid var(--coral);
    border-bottom: 4px solid var(--coral);
  }
  body.layout-d .eyebrow::before { display: none; }
  body.layout-d .eyebrow::after {
    content: "✦ " attr(data-marquee) " ✦ " attr(data-marquee) " ✦ " attr(data-marquee) " ✦ " attr(data-marquee);
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    white-space: nowrap;
    animation: marquee-scroll 22s linear infinite;
  }

  /* About — orbit ring behind the portrait */
  body.layout-d .about-portrait {
    position: relative;
    overflow: visible;
    border-width: 0;
    box-shadow: none;
  }
  body.layout-d .about-portrait::before {
    content: "";
    position: absolute;
    inset: -18px;
    border: 4px dashed var(--coral);
    border-radius: 50%;
    animation: spin-slow 30s linear infinite;
    z-index: 0;
    mix-blend-mode: multiply;
  }
  body.layout-d .about-portrait::after {
    content: "";
    position: absolute;
    inset: 12px;
    border: 3px solid var(--ink);
    z-index: 1;
    pointer-events: none;
  }

  /* Stats — huge kinetic numerals with rotating ring */
  body.layout-d .stat {
    position: relative;
    overflow: visible;
  }
  body.layout-d .stat-num {
    font-size: clamp(4rem, 8vw, 7rem);
    position: relative;
    z-index: 2;
  }
  body.layout-d .stat::before {
    content: "";
    position: absolute;
    inset: 1rem;
    border: 2px dashed var(--sun);
    border-radius: 50%;
    animation: spin-slow 18s linear infinite reverse;
    opacity: 0.5;
  }

  /* Gallery — overlapping off-grid chaos with blend modes */
  body.layout-d .gallery {
    grid-template-columns: repeat(8, 1fr);
    grid-template-areas: none;
    grid-auto-rows: 120px;
    gap: 1rem;
  }
  body.layout-d .g-tile {
    grid-area: auto;
    border-width: 4px;
    transition: transform .5s var(--ease), z-index 0s linear .5s;
  }
  body.layout-d .g-tile-a { grid-column: 1 / 6; grid-row: 1 / 5; transform: rotate(-2deg); }
  body.layout-d .g-tile-b { grid-column: 6 / 9; grid-row: 1 / 3; transform: rotate(3deg); z-index: 2; }
  body.layout-d .g-tile-c { grid-column: 6 / 9; grid-row: 3 / 6; transform: rotate(-1.5deg); }
  body.layout-d .g-tile-d { grid-column: 1 / 3; grid-row: 5 / 7; transform: rotate(2deg); }
  body.layout-d .g-tile-e { grid-column: 3 / 5; grid-row: 5 / 8; transform: rotate(-1deg); z-index: 2; }
  body.layout-d .g-tile-f { grid-column: 5 / 9; grid-row: 6 / 8; transform: rotate(1deg); }
  body.layout-d .g-tile-g { grid-column: 2 / 5; grid-row: 8 / 10; transform: rotate(-2deg); }
  body.layout-d .g-tile:hover { transform: rotate(0) scale(1.03); z-index: 10; }

  /* News — staggered offset cards with mix-blend accent */
  body.layout-d .news-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
  body.layout-d .news-card {
    border-width: 4px;
    position: relative;
  }
  body.layout-d .news-card:nth-child(1) { transform: translateY(20px) rotate(-1.5deg); }
  body.layout-d .news-card:nth-child(2) { transform: translateY(-10px) rotate(1deg); }
  body.layout-d .news-card:nth-child(3) { transform: translateY(30px) rotate(-0.8deg); }
  body.layout-d .news-card:hover { transform: rotate(0) translateY(0); z-index: 3; }
  body.layout-d .news-card::before {
    content: "";
    position: absolute;
    inset: -10px;
    background: var(--coral);
    z-index: -1;
    mix-blend-mode: multiply;
    transition: inset .3s var(--ease);
  }
  body.layout-d .news-card:hover::before { inset: -16px; }

  /* Schedule — striped zebra with coral accent */
  body.layout-d .schedule-row:nth-child(odd) { background: rgba(255, 77, 109, 0.05); }
  body.layout-d .cell-date {
    font-size: 1.7rem;
    animation: chroma-shift 4s ease-in-out infinite;
  }

  /* Contact — huge mailto links with hover distortion */
  body.layout-d .contact-name { font-size: 2.2rem; }
  body.layout-d .contact-block a {
    font-size: 1.2rem;
    position: relative;
    transition: letter-spacing .3s var(--ease);
  }
  body.layout-d .contact-block a:hover { letter-spacing: 0.08em; }

  /* Timeline page — year numbers HUGE + chromatic, items cards with blend */
  body.layout-d .tl-year-num {
    font-size: clamp(6rem, 14vw, 14rem);
    text-shadow:
      0.04em 0.04em 0 var(--coral),
      0.08em 0.08em 0 var(--green);
    animation: chroma-shift 5s ease-in-out infinite;
  }
  body.layout-d .tl-item {
    position: relative;
  }
  body.layout-d .tl-item:hover::before {
    content: "";
    position: absolute;
    inset: -4px -8px;
    background: var(--sun);
    z-index: -1;
    mix-blend-mode: multiply;
  }
  body.layout-d .tl-tag {
    transform: rotate(-3deg);
    transition: transform .3s var(--ease);
  }
  body.layout-d .tl-item:hover .tl-tag { transform: rotate(0) scale(1.1); }

  /* Partners / footer logo pulse */
  body.layout-d .site-footer .logo { animation: chroma-shift 3s ease-in-out infinite; }

} /* end @media min-width 900px */

/* =========================================================
   MOBILE — make it feel AWESOME on phones
   ========================================================= */
@media (max-width: 767px) {
  /* ----- Nav: full-screen green overlay ----- */
  .nav-toggle { display: block; z-index: 300; }
  .primary-nav {
    position: fixed;
    inset: 0;
    z-index: 150;
    background: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: max(5rem, env(safe-area-inset-top)) 2rem max(2rem, env(safe-area-inset-bottom));
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity .3s var(--ease), transform .3s var(--ease);
  }
  .primary-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .primary-nav ul {
    flex-direction: column;
    gap: 1.75rem;
    align-items: center;
  }
  .primary-nav a {
    font-family: var(--display);
    font-size: 2rem;
    color: var(--cream);
    letter-spacing: -0.01em;
    font-style: italic;
    transform: skewX(-6deg);
    display: inline-block;
    padding: 0.25rem 0;
  }
  .primary-nav a::after { display: none; }
  .primary-nav a:hover,
  .primary-nav a:active { color: var(--coral); }

  /* When the overlay is open, the header's backdrop-filter would trap
     the fixed nav inside it. Kill the filter + background to release
     the fixed positioning back to the viewport. */
  #site-header.nav-open {
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border-bottom-color: transparent !important;
  }
  #site-header.nav-open .logo { color: var(--cream); }
  #site-header.nav-open .nav-toggle span { background: var(--cream); }

  /* ----- Hero: magazine-cover full-bleed photo ----- */
  .hero {
    padding: 6rem 1.25rem max(3rem, env(safe-area-inset-bottom));
    min-height: 100svh;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: stretch;
    text-align: left;
    background-image: url('photos/Vidhi-Lakhawala-683x1024.jpg');
    background-size: cover;
    background-position: center 18%;
    background-repeat: no-repeat;
    background-color: var(--ink);
  }
  .hero-bg {
    background: linear-gradient(180deg,
      rgba(10, 10, 10, 0.05) 0%,
      rgba(10, 10, 10, 0.1) 40%,
      rgba(10, 10, 10, 0.65) 72%,
      rgba(8, 61, 40, 0.92) 100%);
  }
  .hero-bg::before,
  .hero-bg::after { display: none; }
  .hero-number { display: none; }
  .hero-content::before { display: none; }

  .hero-content {
    padding-bottom: 3.5rem;
    max-width: 100%;
  }

  .hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: transparent;
    color: var(--sun);
    padding: 0;
    transform: none;
    box-shadow: none;
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    margin-bottom: 1rem;
  }
  .hero-kicker::before {
    display: block;
    background: var(--sun);
    width: 32px;
    height: 2px;
  }

  .hero-title {
    font-size: clamp(2.25rem, 12.5vw, 4.25rem);
    line-height: 0.9;
    letter-spacing: -0.045em;
    max-width: 100%;
    overflow-wrap: break-word;
  }
  .hero-title .word {
    max-width: 100%;
  }
  .hero-title .word-1 {
    color: var(--cream);
    text-shadow: 0.05em 0.05em 0 var(--ink);
  }
  .hero-title .word-2 {
    color: var(--coral);
    text-shadow: 0.05em 0.05em 0 var(--cream);
  }

  .hero-meta {
    border-top: 2px solid var(--cream);
    gap: 1.25rem;
    padding-top: 1.25rem;
    margin-top: 1.75rem;
    max-width: 100%;
  }
  .hero-meta .label { color: var(--sun); font-size: 0.62rem; letter-spacing: 0.22em; }
  .hero-meta .value { color: var(--cream); font-size: 1.1rem; }

  /* Hero CTAs over the dark mobile photo: brighten ghost variant */
  .hero-cta { gap: 0.65rem 0.75rem; margin-top: 1.5rem; }
  .btn-cta { padding: 0.75rem 1.1rem; font-size: 0.7rem; letter-spacing: 0.16em; background: var(--coral); border-color: var(--coral); box-shadow: 4px 4px 0 var(--cream); }
  .btn-cta:hover { box-shadow: 6px 6px 0 var(--cream); }
  .btn-cta-ghost {
    background: rgba(10, 10, 10, 0.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--cream);
    border-color: var(--cream);
    box-shadow: 4px 4px 0 var(--coral);
  }
  .btn-cta-ghost:hover { background: var(--cream); color: var(--ink); border-color: var(--cream); box-shadow: 6px 6px 0 var(--coral); }

  .scroll-cue {
    color: var(--cream);
    font-size: 0.65rem;
    left: 1.5rem;
    bottom: 1.5rem;
  }
  .scroll-cue::after { background: var(--cream); width: 44px; }

  /* ----- Section padding tighter ----- */
  .section { padding: 4.5rem 0; }
  .section-title {
    font-size: clamp(2.25rem, 9vw, 3.5rem);
    margin-bottom: 2rem;
  }
  .eyebrow { font-size: 0.68rem; letter-spacing: 0.25em; }

  /* ----- About: portrait + drop cap scaled ----- */
  .about-grid { gap: 2rem; }
  .about-portrait {
    max-width: 100%;
    box-shadow: 8px 8px 0 var(--coral);
    border-width: 2px;
  }
  .about-copy p { font-size: 1rem; }
  .about-copy p:first-of-type::first-letter {
    font-size: 2.75rem;
    padding: 0.05em 0.12em 0 0;
  }

  /* ----- Timeline ----- */
  .tl-year { padding: 2.25rem 0; gap: 0.75rem; }
  .tl-year-num {
    font-size: clamp(3rem, 14vw, 5rem);
    text-shadow: 0.045em 0.045em 0 var(--coral);
  }
  .tl-item { padding: 1.25rem 0; font-size: 0.98rem; line-height: 1.5; }
  .tl-item:hover,
  .tl-item:active { padding-left: 0.5rem; }
  .tl-tag {
    font-size: 0.6rem;
    padding: 0.35rem 0.55rem;
    letter-spacing: 0.2em;
  }

  /* ----- Stats ----- */
  .stat { padding: 2rem 0.75rem; gap: 0.5rem; }
  .stat-num { font-size: clamp(2.75rem, 12vw, 4rem); }
  .stat-label { font-size: 0.62rem; letter-spacing: 0.2em; }

  /* ----- News: tighter cards ----- */
  .news-body { padding: 1.5rem 1.25rem 1.75rem; }
  .news-title { font-size: 1.05rem; }
  .news-meta { font-size: 0.65rem; letter-spacing: 0.2em; }

  /* ----- Gallery: mobile bento, featured full-width, rest 2-col ----- */
  .gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
    grid-template-areas: none;
  }
  .g-tile { grid-area: auto; aspect-ratio: 1 / 1; border-width: 2px; }
  .g-tile-a { grid-column: span 2; aspect-ratio: 4 / 3; }
  .g-tile-c { aspect-ratio: 3 / 4; }
  .g-tile-f { grid-column: span 2; aspect-ratio: 16 / 9; }
  .g-tile:hover,
  .g-tile:active {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 var(--coral);
  }
  /* Captions always visible on mobile (no hover) */
  .g-tile figcaption {
    opacity: 1;
    transform: translateY(0);
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    padding: 0.65rem 0.75rem;
  }

  /* ----- Schedule: card-style rows with clear hierarchy ----- */
  .schedule-list { border-top-width: 2px; }
  .schedule-row {
    padding: 1.5rem 0.25rem;
    gap: 0.5rem;
    grid-template-columns: 1fr;
  }
  .schedule-row:not(.schedule-head):hover { padding-left: 0.5rem; }
  .cell-date {
    order: -1;
    font-size: 1.4rem;
    letter-spacing: 0;
  }
  .cell-event { font-size: 1.05rem; line-height: 1.3; }
  .cell-venue { font-size: 0.88rem; color: var(--muted); }
  .cell-status {
    font-size: 0.6rem;
    padding: 0.35rem 0.6rem;
    letter-spacing: 0.2em;
    margin-top: 0.35rem;
  }

  /* ----- Contact: inherits green band, tighter ----- */
  #contact .contact-grid { gap: 2.5rem; }
  .contact-block { padding: 1.4rem 1.25rem; }
  .contact-email { font-size: clamp(1.35rem, 7vw, 2rem); }
  .contact-lede { font-size: 0.98rem; }

  /* ----- Footer polish ----- */
  .site-footer { padding: 2.5rem 0 max(2rem, env(safe-area-inset-bottom)); }
  .footer-inner { gap: 1.25rem; }
  .social { gap: 1.5rem; }
  .social a { font-size: 0.66rem; letter-spacing: 0.2em; }

  /* ----- Lightbox mobile polish ----- */
  .lightbox { padding: env(safe-area-inset-top, 2.5rem) 1rem max(1.5rem, env(safe-area-inset-bottom)); }
  .lightbox img { max-height: 72vh; border-width: 2px; }
  .lightbox-close { top: max(0.75rem, env(safe-area-inset-top)); right: 0.75rem; width: 42px; height: 42px; }

  /* ----- Touch feedback: tap darkens card shadows ----- */
  .news-card:active {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 var(--coral);
  }

  /* ----- Prevent horizontal overflow ----- */
  body { overflow-x: hidden; }

  /* ----- iOS no-zoom on tap ----- */
  input, textarea, select, button { font-size: 16px; }
}

/* Safe-area: nav padding for notched phones */
@supports (padding: env(safe-area-inset-top)) {
  @media (max-width: 767px) {
    #site-header .nav-inner { padding-top: calc(1.1rem + env(safe-area-inset-top)); }
    .primary-nav {
      padding-top: env(safe-area-inset-top);
      padding-bottom: env(safe-area-inset-bottom);
    }
  }
}

/* Extra-small phones (iPhone SE, older Androids) */
@media (max-width: 380px) {
  .hero { padding-left: 1rem; padding-right: 1rem; }
  .hero-content { padding-bottom: 2.5rem; }
  .hero-meta {
    gap: 1rem;
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-meta .value { font-size: 1rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .nav-inner { padding-left: 1rem; padding-right: 1rem; }
  .section-inner { padding-left: 1.25rem; padding-right: 1.25rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
