/* ============================================================
   STEPUP WILMINGTON — VOICES (Documentary Page)
   Light, editorial, human. Magazine feel. No SaaS.
   ============================================================ */

:root {
  --vox-paper: #faf6ef;
  --vox-paper-deep: #f3ede2;
  --vox-card: #ffffff;
  --vox-ink: #0a3a5e;            /* StepUp deep navy (logo "StepUp" wordmark) */
  --vox-ink-soft: #3d566f;
  --vox-ink-mute: #7d8fa3;
  --vox-rule: rgba(10,58,94,0.10);
  --vox-rule-soft: rgba(10,58,94,0.06);
  --vox-teal: #02bbb4;            /* StepUp teal (logo middle bar) */
  --vox-teal-deep: #02a09a;
  --vox-teal-soft: rgba(2,187,180,0.10);
  --vox-navy: #0a3a5e;
  --vox-navy-deep: #062b48;
  --vox-sky: #3aa8d4;             /* StepUp sky (logo "Wilmington" wordmark) */
  --vox-sky-deep: #2890bb;
  --vox-sky-soft: rgba(58,168,212,0.12);
  --vox-warm: #c75a2c;            /* terracotta — italic accent only */
  --vox-warm-soft: rgba(199,90,44,0.10);
  --vox-soft-shadow: 0 1px 3px rgba(10,58,94,0.04), 0 12px 32px rgba(10,58,94,0.07);
  --vox-shadow-md:   0 2px 8px rgba(10,58,94,0.07), 0 18px 50px rgba(10,58,94,0.10);
  --vox-shadow-lg:   0 6px 24px rgba(10,58,94,0.10), 0 32px 80px rgba(10,58,94,0.14);
}

/* === PAGE BASE === */
body.vox-page {
  background: var(--vox-paper);
  color: var(--vox-ink);
  font-family: var(--font-body);
}
body.vox-page::before { display: none; }
.vox-grain { display: none !important; } /* kill the noise */

/* Override main-site nav for light page */
body.vox-page .nav { background: rgba(250,246,239,0.85); border-bottom: 1px solid var(--vox-rule); }
body.vox-page .nav.scrolled { background: rgba(250,246,239,0.95); }
body.vox-page .nav-link { color: var(--vox-ink); }
body.vox-page .nav-link:hover { color: var(--vox-teal); }
body.vox-page .nav-toggle span { background: var(--vox-ink); }

/* Override main-site buttons for light surface */
body.vox-page .btn-primary {
  background: var(--vox-ink);
  color: var(--vox-paper);
  border: 1px solid var(--vox-ink);
}
body.vox-page .btn-primary:hover { background: var(--vox-teal); border-color: var(--vox-teal); }
body.vox-page .btn-outline {
  background: transparent;
  color: var(--vox-ink);
  border: 1px solid var(--vox-ink);
}
body.vox-page .btn-outline:hover { background: var(--vox-ink); color: var(--vox-paper); }

/* Donate pill — softer */
body.vox-page .donate-pill { background: var(--vox-teal); color: white; box-shadow: var(--vox-shadow-md); }

/* === HERO === */
.vox-hero {
  position: relative;
  min-height: 78vh;
  padding: clamp(140px, 18vh, 200px) 0 100px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--vox-paper);
}
.vox-hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(2,187,180,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(14,42,77,0.10) 0%, transparent 60%),
    radial-gradient(ellipse 35% 35% at 50% 60%, rgba(199,90,44,0.05) 0%, transparent 60%);
  z-index: 0;
}
.vox-hero-frame, .vox-hero-bars { display: none; }

.vox-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

.vox-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-sans);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--vox-teal);
  background: none;
  border: none;
  padding: 0;
  margin-bottom: 36px;
}
.vox-eyebrow-dot {
  display: inline-block;
  width: 24px; height: 1px;
  background: var(--vox-teal);
}

.vox-hero-title {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(3rem, 9vw, 7.4rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: var(--vox-ink);
  margin: 0 0 36px;
  max-width: 16ch;
}
.vox-hero-title em {
  font-style: italic;
  color: var(--vox-warm);
  background: none;
  -webkit-text-fill-color: var(--vox-warm);
}

.vox-hero-lede {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(1.15rem, 1.5vw, 1.42rem);
  line-height: 1.55;
  color: var(--vox-ink-soft);
  max-width: 56ch;
  margin: 0 0 44px;
}

.vox-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 32px;
  margin-bottom: 48px;
  padding: 22px 0;
  border-top: 1px solid var(--vox-rule);
  border-bottom: 1px solid var(--vox-rule);
  max-width: 760px;
}
.vox-chip {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  background: none;
  border: none;
  padding: 0;
  font-family: var(--font-sans);
  font-size: 0.86rem;
  color: var(--vox-ink-soft);
}
.vox-chip svg { display: none; }
.vox-chip strong {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1.4rem;
  color: var(--vox-teal);
  letter-spacing: -0.01em;
}

.vox-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.vox-scroll-hint {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  z-index: 2;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--vox-ink-mute);
}
.vox-scroll-hint::after {
  content: "";
  width: 1px; height: 50px;
  background: var(--vox-ink-mute);
  opacity: 0.5;
  animation: vox-scroll-line 2.4s ease-in-out infinite;
}
@keyframes vox-scroll-line {
  0%, 100% { transform: scaleY(1); transform-origin: top; opacity: 0.5; }
  50% { transform: scaleY(0.3); opacity: 0.2; }
}

/* === SECTION SCAFFOLD === */
.vox-section {
  position: relative;
  padding: clamp(90px, 14vh, 150px) 0;
  background: var(--vox-paper);
}
.vox-section.alt { background: var(--vox-paper-deep); }
.vox-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
}

.vox-section-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 72px;
  max-width: 920px;
}
@media (min-width: 900px) {
  .vox-section-head.split {
    grid-template-columns: auto 1fr;
    align-items: end;
    max-width: none;
    gap: 56px;
  }
}
.vox-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--vox-teal);
}
.vox-kicker::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--vox-teal);
}
.vox-section-title {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(2.2rem, 4.8vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--vox-ink);
  margin: 14px 0 0;
}
.vox-section-title em { font-style: italic; color: var(--vox-warm); }
.vox-section-sub {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--vox-ink-soft);
  max-width: 56ch;
  margin: 0;
}

/* === FEATURED DOCUMENTARY === */
.vox-feature {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
}
@media (min-width: 1100px) {
  .vox-feature {
    grid-template-columns: 1.4fr 1fr;
    gap: 72px;
    align-items: start;
  }
}

.vox-feature-player {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  overflow: hidden;
  background: var(--vox-card);
  box-shadow: var(--vox-shadow-lg);
  isolation: isolate;
}
.vox-feature-player::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 25% 30%, rgba(2,187,180,0.30) 0%, transparent 60%),
    radial-gradient(circle at 75% 75%, rgba(14,42,77,0.32) 0%, transparent 60%),
    linear-gradient(135deg, #b9d4d3 0%, #6e93b0 50%, #2a4868 100%);
  z-index: 1;
}
.vox-feature-player::after {
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='40' height='40'><circle cx='1' cy='1' r='0.5' fill='black' opacity='0.04'/></svg>");
  z-index: 2;
}
.vox-feature-meta-overlay {
  display: none;  /* drop the REC overlay — too SaaS */
}
.vox-feature-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  cursor: pointer;
}
.vox-play-btn {
  width: clamp(76px, 8.5vw, 104px);
  height: clamp(76px, 8.5vw, 104px);
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 40px rgba(40,30,20,0.20);
  transition: transform 0.4s var(--ease-spring), background 0.3s var(--ease-out);
  color: var(--vox-ink);
}
.vox-play-btn::before, .vox-play-btn::after { display: none; }
.vox-feature-play:hover .vox-play-btn {
  transform: scale(1.06);
  background: white;
  color: var(--vox-teal);
}
.vox-feature-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 32px;
  z-index: 4;
  background: linear-gradient(0deg, rgba(20,15,10,0.55) 0%, transparent 100%);
}
.vox-feature-caption h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  line-height: 1.15;
  margin: 0 0 6px;
  color: white;
}
.vox-feature-caption p {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  color: rgba(255,255,255,0.82);
  margin: 0;
  letter-spacing: 0.04em;
}

/* Chapters list */
.vox-chapters { border-top: 1px solid var(--vox-rule); }
.vox-chapter {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
  width: 100%;
  padding: 22px 4px;
  border-bottom: 1px solid var(--vox-rule);
  cursor: pointer;
  background: none;
  text-align: left;
  transition: padding 0.3s var(--ease-out);
}
.vox-chapter:hover { padding: 22px 16px; }
.vox-chapter:hover .vox-chapter-text h4 { color: var(--vox-teal); }
.vox-chapter-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: 1.4rem;
  color: var(--vox-ink-mute);
  min-width: 38px;
}
.vox-chapter-text h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 1.18rem;
  margin: 0 0 4px;
  color: var(--vox-ink);
  transition: color 0.3s var(--ease-out);
}
.vox-chapter-text p {
  font-family: var(--font-sans);
  font-size: 0.86rem;
  color: var(--vox-ink-mute);
  margin: 0;
}
.vox-chapter-time {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--vox-ink-mute);
  font-variant-numeric: tabular-nums;
}

.vox-director-note {
  margin-top: 36px;
  padding: 28px 32px;
  background: var(--vox-card);
  border: 1px solid var(--vox-rule);
  border-radius: 4px;
  box-shadow: var(--vox-soft-shadow);
}
.vox-director-note p {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: 1.18rem;
  line-height: 1.55;
  color: var(--vox-ink);
  margin: 0;
}
.vox-director-note p::before {
  content: "“";
  font-size: 2.6rem;
  line-height: 0.4;
  vertical-align: -0.4em;
  margin-right: 6px;
  color: var(--vox-teal);
}
.vox-director-note cite {
  display: block;
  margin-top: 14px;
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--vox-ink-mute);
}

/* === STAT STRIP === */
.vox-stats {
  padding: 64px 0;
  background: var(--vox-paper);
  border-top: 1px solid var(--vox-rule);
  border-bottom: 1px solid var(--vox-rule);
}
.vox-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
}
@media (min-width: 800px) { .vox-stats-grid { grid-template-columns: repeat(4, 1fr); } }
.vox-stat { text-align: center; position: relative; }
.vox-stat:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -18px; top: 25%; bottom: 25%;
  width: 1px;
  background: var(--vox-rule);
}
@media (max-width: 799px) { .vox-stat:not(:last-child)::after { display: none; } }
.vox-stat-number {
  font-family: var(--font-serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(2.6rem, 5vw, 3.8rem);
  line-height: 1;
  color: var(--vox-teal);
  background: none;
  -webkit-text-fill-color: var(--vox-teal);
  margin-bottom: 10px;
}
/* Stat triad — teal, sky, navy, teal — across the four stats */
.vox-stat:nth-of-type(1) .vox-stat-number,
.vox-stat:nth-of-type(1) .vox-stat-number > span { color: var(--vox-teal); -webkit-text-fill-color: var(--vox-teal); }
.vox-stat:nth-of-type(2) .vox-stat-number,
.vox-stat:nth-of-type(2) .vox-stat-number > span { color: var(--vox-sky); -webkit-text-fill-color: var(--vox-sky); }
.vox-stat:nth-of-type(3) .vox-stat-number,
.vox-stat:nth-of-type(3) .vox-stat-number > span { color: var(--vox-navy); -webkit-text-fill-color: var(--vox-navy); }
.vox-stat:nth-of-type(4) .vox-stat-number,
.vox-stat:nth-of-type(4) .vox-stat-number > span { color: var(--vox-teal); -webkit-text-fill-color: var(--vox-teal); }
.vox-stat-label {
  font-family: var(--font-sans);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--vox-ink-mute);
}

/* === VIDEO CARD GRID === */
.vox-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}
@media (min-width: 720px) { .vox-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; } }
@media (min-width: 1100px) { .vox-grid.cols-3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1100px) { .vox-grid.cols-4 { grid-template-columns: repeat(4, 1fr); gap: 32px; } }

/* === VIDEO CARD === */
.vox-card {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  background: var(--vox-card);
  box-shadow: var(--vox-soft-shadow);
  cursor: pointer;
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
  isolation: isolate;
  display: block;
  border: none;
}
.vox-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--vox-shadow-md);
}
.vox-card-thumb {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

/* Override the dark inline gradients with warm palettes via nth-of-type rotation.
   Inline --c1/--c2/--g1/--g2 are ignored by these rules. */
.vox-card-thumb-bg {
  position: absolute; inset: 0;
  transition: transform 0.8s var(--ease-out);
}
.vox-card:hover .vox-card-thumb-bg { transform: scale(1.04); }
.vox-card-thumb-bg::before {
  content: "";
  position: absolute; inset: 0;
}
.vox-card-thumb-bg::after {
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='30' height='30'><circle cx='1' cy='1' r='0.5' fill='black' opacity='0.04'/></svg>");
}

/* Painterly warm palette rotation (works across any grid) */
.vox-card:nth-of-type(7n+1) .vox-card-thumb-bg { background: linear-gradient(135deg, #fbe8d3 0%, #e8b687 100%); }
.vox-card:nth-of-type(7n+1) .vox-card-thumb-bg::before { background: radial-gradient(circle at 30% 30%, rgba(199,90,44,0.28) 0%, transparent 60%); }

.vox-card:nth-of-type(7n+2) .vox-card-thumb-bg { background: linear-gradient(135deg, #e8efe2 0%, #b8cab5 100%); }
.vox-card:nth-of-type(7n+2) .vox-card-thumb-bg::before { background: radial-gradient(circle at 70% 35%, rgba(125,155,126,0.32) 0%, transparent 60%); }

.vox-card:nth-of-type(7n+3) .vox-card-thumb-bg { background: linear-gradient(135deg, #f3e0d8 0%, #d89c81 100%); }
.vox-card:nth-of-type(7n+3) .vox-card-thumb-bg::before { background: radial-gradient(circle at 25% 70%, rgba(199,90,44,0.24) 0%, transparent 60%); }

.vox-card:nth-of-type(7n+4) .vox-card-thumb-bg { background: linear-gradient(135deg, #e2eaf3 0%, #a8bfd4 100%); }
.vox-card:nth-of-type(7n+4) .vox-card-thumb-bg::before { background: radial-gradient(circle at 70% 70%, rgba(138,166,199,0.32) 0%, transparent 60%); }

.vox-card:nth-of-type(7n+5) .vox-card-thumb-bg { background: linear-gradient(135deg, #f9efd4 0%, #e6c98c 100%); }
.vox-card:nth-of-type(7n+5) .vox-card-thumb-bg::before { background: radial-gradient(circle at 30% 70%, rgba(180,140,60,0.22) 0%, transparent 60%); }

.vox-card:nth-of-type(7n+6) .vox-card-thumb-bg { background: linear-gradient(135deg, #efe3ed 0%, #c4a5be 100%); }
.vox-card:nth-of-type(7n+6) .vox-card-thumb-bg::before { background: radial-gradient(circle at 70% 30%, rgba(154,118,145,0.28) 0%, transparent 60%); }

.vox-card:nth-of-type(7n+7) .vox-card-thumb-bg { background: linear-gradient(135deg, #fae3dd 0%, #e8a08a 100%); }
.vox-card:nth-of-type(7n+7) .vox-card-thumb-bg::before { background: radial-gradient(circle at 30% 30%, rgba(199,90,44,0.30) 0%, transparent 60%); }

.vox-card-thumb img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
}
.vox-card-monogram {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(3.5rem, 8vw, 6rem);
  color: rgba(20,15,10,0.16);
  letter-spacing: -0.04em;
  z-index: 2;
  pointer-events: none;
}
.vox-card:hover .vox-card-monogram { color: rgba(20,15,10,0.22); }

.vox-card-arrow { display: none; }

.vox-card-runtime {
  position: absolute;
  bottom: 14px; right: 14px;
  z-index: 4;
  padding: 5px 10px;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--vox-ink);
  background: rgba(255,255,255,0.85);
  border-radius: 2px;
  font-variant-numeric: tabular-nums;
}
.vox-card-role {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 4;
  padding: 5px 10px;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--vox-ink);
  background: rgba(255,255,255,0.92);
  border-radius: 2px;
}
.vox-card-role.team { color: var(--vox-teal); }
.vox-card-role.participant { color: var(--vox-navy); }
.vox-card-role.volunteer { color: var(--vox-sky-deep); }

.vox-card-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
}
.vox-card:hover .vox-card-play { opacity: 1; }
.vox-card-play-circle {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  display: flex; align-items: center; justify-content: center;
  color: var(--vox-teal);
  transform: scale(0.85);
  transition: transform 0.3s var(--ease-spring);
  box-shadow: 0 6px 22px rgba(40,30,20,0.25);
  border: none;
}
.vox-card:hover .vox-card-play-circle { transform: scale(1); }

.vox-card-body {
  padding: 26px 28px 30px;
  background: var(--vox-card);
}
.vox-card-name {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 1.42rem;
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin: 0 0 6px;
  color: var(--vox-ink);
}
.vox-card-role-text {
  font-family: var(--font-sans);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--vox-ink-mute);
  margin: 0 0 14px;
}
.vox-card-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--vox-ink-soft);
  margin: 0;
}

/* === GALLERY === */
.vox-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
@media (min-width: 720px) { .vox-gallery { grid-template-columns: repeat(3, 1fr); gap: 22px; } }
@media (min-width: 1100px) { .vox-gallery { grid-template-columns: repeat(4, 1fr); gap: 24px; } }

.vox-tile {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  background: var(--vox-card);
  box-shadow: var(--vox-soft-shadow);
  border: none;
  padding: 0;
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
}
.vox-tile:nth-child(3n+1) { aspect-ratio: 4 / 5; }
.vox-tile:nth-child(3n+2) { aspect-ratio: 1 / 1; }
.vox-tile:nth-child(3n+3) { aspect-ratio: 4 / 5; }
.vox-tile:hover { transform: translateY(-3px); box-shadow: var(--vox-shadow-md); }
.vox-tile::before {
  content: "";
  position: absolute; inset: 0;
}
.vox-tile::after {
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24'><circle cx='1' cy='1' r='0.5' fill='black' opacity='0.05'/></svg>");
}
/* Painterly tile palettes */
.vox-tile:nth-of-type(8n+1) { background: linear-gradient(135deg, #fbe8d3 0%, #e8b687 100%); }
.vox-tile:nth-of-type(8n+2) { background: linear-gradient(135deg, #e8efe2 0%, #b8cab5 100%); }
.vox-tile:nth-of-type(8n+3) { background: linear-gradient(135deg, #f3e0d8 0%, #d89c81 100%); }
.vox-tile:nth-of-type(8n+4) { background: linear-gradient(135deg, #e2eaf3 0%, #a8bfd4 100%); }
.vox-tile:nth-of-type(8n+5) { background: linear-gradient(135deg, #f9efd4 0%, #e6c98c 100%); }
.vox-tile:nth-of-type(8n+6) { background: linear-gradient(135deg, #efe3ed 0%, #c4a5be 100%); }
.vox-tile:nth-of-type(8n+7) { background: linear-gradient(135deg, #fae3dd 0%, #e8a08a 100%); }
.vox-tile:nth-of-type(8n+8) { background: linear-gradient(135deg, #f0e6d6 0%, #c8b394 100%); }

.vox-tile img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
}
.vox-tile-label {
  position: absolute;
  bottom: 14px; left: 16px; right: 16px;
  z-index: 2;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(20,15,10,0.7);
  text-align: left;
}
.vox-tile-num {
  position: absolute;
  top: 14px; left: 16px;
  z-index: 2;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  color: rgba(20,15,10,0.55);
}

/* === EDITORIAL PULL QUOTE === */
.vox-quote {
  padding: clamp(100px, 16vh, 160px) 0;
  text-align: center;
  position: relative;
  background: var(--vox-paper-deep);
}
.vox-quote::before, .vox-quote::after {
  content: "";
  display: block;
  width: 50px; height: 1px;
  margin: 0 auto;
  background: var(--vox-teal);
  opacity: 0.7;
}
.vox-quote-text {
  font-family: var(--font-serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.3;
  letter-spacing: -0.02em;
  max-width: 22ch;
  margin: 44px auto;
  color: var(--vox-ink);
}
.vox-quote-text span { color: var(--vox-warm); -webkit-text-fill-color: var(--vox-warm); background: none; }
.vox-quote-cite {
  font-family: var(--font-sans);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--vox-ink-mute);
}

/* === MISSION OF THE FUTURE === */
.vox-future {
  background: var(--vox-paper-deep);
  border: none;
}
.vox-future-grid {
  display: grid;
  gap: 36px;
}
@media (min-width: 900px) { .vox-future-grid { grid-template-columns: repeat(3, 1fr); gap: 32px; } }
.vox-future-card {
  padding: 40px 36px;
  background: var(--vox-card);
  border: 1px solid var(--vox-rule);
  border-radius: 6px;
  box-shadow: var(--vox-soft-shadow);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
.vox-future-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--vox-shadow-md);
}
.vox-future-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--vox-teal-soft);
  border: none;
  display: flex; align-items: center; justify-content: center;
  color: var(--vox-teal);
  margin-bottom: 22px;
}
/* Brand triad across the three future-cards */
.vox-future-card:nth-of-type(1) .vox-future-icon { background: var(--vox-teal-soft); color: var(--vox-teal); }
.vox-future-card:nth-of-type(2) .vox-future-icon { background: var(--vox-sky-soft); color: var(--vox-sky-deep); }
.vox-future-card:nth-of-type(3) .vox-future-icon { background: var(--vox-navy-glow, rgba(10,58,94,0.10)); color: var(--vox-navy); }
.vox-future-card h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 1.55rem;
  margin: 0 0 14px;
  color: var(--vox-ink);
  letter-spacing: -0.01em;
}
.vox-future-card p {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--vox-ink-soft);
  margin: 0;
}

/* === CTA BAND === */
.vox-cta {
  background:
    radial-gradient(ellipse 60% 50% at 30% 20%, rgba(2,187,180,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 75% 80%, rgba(14,42,77,0.14) 0%, transparent 60%),
    radial-gradient(ellipse 30% 30% at 50% 50%, rgba(199,90,44,0.06) 0%, transparent 60%),
    var(--vox-paper);
  text-align: center;
  border-top: 1px solid var(--vox-rule);
}
.vox-cta-title {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  max-width: 18ch;
  margin: 0 auto 26px;
  color: var(--vox-ink);
}
.vox-cta-title em { font-style: italic; color: var(--vox-warm); }
.vox-cta-sub {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 1.18rem;
  line-height: 1.6;
  color: var(--vox-ink-soft);
  max-width: 56ch;
  margin: 0 auto 44px;
}
.vox-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

/* === LIGHTBOX === */
.vox-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(40,30,20,0.85);
  backdrop-filter: blur(16px);
  padding: 40px 24px;
}
.vox-lightbox.is-open { display: flex; animation: vox-fade 0.3s var(--ease-out); }
@keyframes vox-fade { from { opacity: 0; } to { opacity: 1; } }
.vox-lightbox-inner {
  width: 100%;
  max-width: 1200px;
  max-height: 90vh;
  position: relative;
}
.vox-lightbox-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--vox-card);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--vox-shadow-lg);
}
.vox-lightbox-frame iframe,
.vox-lightbox-frame img {
  width: 100%; height: 100%;
  border: 0;
  display: block;
  object-fit: contain;
  background: black;
}
.vox-lightbox-empty {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 18px;
  color: var(--vox-ink-soft);
  background: linear-gradient(135deg, #fbe8d3 0%, #e8b687 100%);
  text-align: center;
  padding: 40px;
}
.vox-lightbox-empty h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  color: var(--vox-ink);
  margin: 0;
}
.vox-lightbox-empty p {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  margin: 0;
  max-width: 50ch;
  color: var(--vox-ink-soft);
}
.vox-lightbox-caption {
  margin-top: 18px;
  font-family: var(--font-sans);
  color: rgba(255,255,255,0.82);
  font-size: 0.92rem;
  text-align: center;
  letter-spacing: 0.04em;
}
.vox-lightbox-close {
  position: absolute;
  top: -16px; right: -16px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--vox-card);
  color: var(--vox-ink);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--vox-shadow-md);
  transition: transform 0.3s var(--ease-spring);
  z-index: 2;
  border: none;
}
.vox-lightbox-close:hover { transform: rotate(90deg); }
@media (max-width: 700px) { .vox-lightbox-close { top: -50px; right: 0; } }

/* === REVEAL ANIMATIONS === */
.vox-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
  transition-delay: var(--delay, 0s);
}
.vox-reveal.is-in { opacity: 1; transform: translateY(0); }

/* === FOOTER === */
.vox-footer {
  padding: 64px 0 56px;
  background: var(--vox-paper);
  border-top: 1px solid var(--vox-rule);
  text-align: center;
}
.vox-footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-weight: 400;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--vox-ink);
  margin-bottom: 16px;
}
.vox-footer-logo svg { color: var(--vox-teal); }
.vox-footer-text {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--vox-ink-mute);
  margin-bottom: 18px;
}
.vox-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
  font-family: var(--font-sans);
  font-size: 0.84rem;
  color: var(--vox-ink-soft);
}
.vox-footer-links a:hover { color: var(--vox-teal); }

/* === RESPONSIVE === */
@media (max-width: 700px) {
  .vox-hero { padding: 120px 0 70px; min-height: 70vh; }
  .vox-section-head.split { grid-template-columns: 1fr; }
  .vox-feature { gap: 40px; }
}

/* === REDUCED MOTION === */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
