/* ===================================================
   WEST VALLEY WORKS — LANDING PAGE STYLES
   Mobile-first. No framework. Brand tokens up top.
   Edit tokens in :root to rebrand the entire page.
   =================================================== */

/* ---------- 1. BRAND TOKENS ---------- */
:root {
  --wvw-navy: #2d3967;
  --wvw-navy-deep: #1e2647;
  --wvw-gold: #f4a93c;
  --wvw-brown: #c36434;
  --wvw-red: #bb0a2a;
  --wvw-burgundy: #8d1a29;
  --wvw-sand: #faf6f0;
  --wvw-white: #ffffff;
  --wvw-text: #1a1a1a;
  --wvw-muted: #5a5a5a;

  --font-display: 'Montserrat', system-ui, -apple-system, sans-serif;
  --font-serif: 'Noto Serif', Georgia, serif;

  --radius: 10px;
  --shadow-sm: 0 2px 6px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.12);
  --shadow-lg: 0 16px 40px rgba(0,0,0,0.18);

  --container-max: 1200px;
  --container-narrow: 780px;
}

/* ---------- 2. RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--wvw-text);
  background: var(--wvw-white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}
.container.narrow { max-width: var(--container-narrow); }

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--wvw-navy); color: #fff;
  padding: 10px 16px; z-index: 999;
}
.skip-link:focus { left: 8px; top: 8px; }

/* ---------- 3. SHARED TYPOGRAPHY ---------- */
.eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 12px;
}
.eyebrow-red { color: var(--wvw-red); }
.eyebrow-gold { color: var(--wvw-brown); }

.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--wvw-navy);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
  margin: 0 0 16px;
}
.section-title em {
  font-style: italic;
  font-family: var(--font-serif);
  color: var(--wvw-red);
  font-weight: 400;
}
.section-sub {
  font-size: 18px;
  color: var(--wvw-muted);
  margin: 0 0 32px;
  max-width: 640px;
}
.section-head { text-align: center; margin: 0 auto 40px; }
.section-head .section-sub { margin-left: auto; margin-right: auto; }

/* ---------- 4. HEADER + NAV ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.96);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 14px; padding-bottom: 14px;
}
.logo { display: inline-flex; align-items: center; gap: 10px; }
.logo-mark { width: 56px; height: 28px; }
.logo-text {
  font-weight: 800; font-size: 14px;
  letter-spacing: 0.08em; color: var(--wvw-navy);
}
.site-nav { display: flex; align-items: center; position: relative; }
.nav-menu {
  list-style: none; display: flex; gap: 28px;
  margin: 0; padding: 0;
}
.nav-menu a {
  font-weight: 700; font-size: 13px;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--wvw-navy);
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: border-color .2s;
}
.nav-menu a:hover, .nav-menu a:focus-visible {
  border-bottom-color: var(--wvw-red);
}
.nav-toggle {
  display: none;
  background: transparent; border: 0; padding: 8px;
}
.hamburger, .hamburger::before, .hamburger::after {
  display: block; width: 24px; height: 2px;
  background: var(--wvw-navy); position: relative;
}
.hamburger::before, .hamburger::after {
  content: ''; position: absolute; left: 0;
}
.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .nav-menu {
    position: absolute; top: calc(100% + 14px); right: 0;
    min-width: 220px;
    background: #fff; flex-direction: column; gap: 0;
    padding: 8px 20px 20px;
    box-shadow: var(--shadow-md);
    display: none;
    border-radius: var(--radius);
  }
  .nav-menu.is-open { display: flex; }
  .nav-menu li { border-bottom: 1px solid rgba(0,0,0,0.06); }
  .nav-menu li:last-child { border-bottom: 0; }
  .nav-menu a { display: block; padding: 14px 0; border-bottom: 0; }
}


/* ---------- 5. HERO ---------- */
.hero {
  background:
    /* TOP LAYER: warm sand/gold wash on the LEFT for title readability */
    linear-gradient(100deg, 
      rgba(250,246,240,0.85) 0%, 
      rgba(251,233,201,0.65) 30%, 
      rgba(244,169,60,0.30) 55%, 
      transparent 75%),
    /* ACCENT LAYER: subtle navy touch on the far right */
    radial-gradient(ellipse at 95% 30%, rgba(45,57,103,0.25) 0%, transparent 45%),
    /* ACCENT LAYER: soft gold pool bottom-right for warmth continuity */
    radial-gradient(ellipse at 85% 95%, rgba(244,169,60,0.25) 0%, transparent 50%),
    /* BOTTOM LAYER: hero photo */
    url('hero.webp') center/cover no-repeat,
    var(--wvw-sand);
  padding: 64px 0 80px;
  scroll-margin-top: 80px;
  position: relative;
  overflow: hidden;
}
.hero-inner {
  display: block;
}
.hero-copy {
  max-width: none;
  position: relative;
  z-index: 1;
}
/* keep .hero-title, .hero-title em, .hero-sub, .scroll-cue, .arrow, @keyframes bounce as-is */

@media (min-width: 900px) {
  .hero { padding: 140px 0 160px; }
  .hero-copy { max-width: none; }
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--wvw-burgundy);
  font-size: clamp(40px, 7vw, 72px);
  line-height: 1.02;
  margin: 0 0 20px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  text-shadow: 
  0 2px 12px rgba(250, 246, 240, 0.75),
  0 0 40px rgba(250, 246, 240, 0.55);
}


.hero-title em {
  font-style: italic;
  font-family: var(--font-serif);
  color: var(--wvw-navy);
  font-weight: 400;
  text-transform: none;
  letter-spacing: normal;
}
.hero-sub {
  font-size: 18px;
  color: var(--wvw-text);
  max-width: 480px;
  margin: 0 0 32px;
}
.scroll-cue {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; font-size: 13px;
  color: var(--wvw-red);
  padding: 10px 2px;
  border-bottom: 2px solid var(--wvw-red);
  transition: color .2s, border-color .2s, gap .2s;
}
.scroll-cue:hover, .scroll-cue:focus-visible {
  color: var(--wvw-burgundy);
  border-bottom-color: var(--wvw-burgundy);
  gap: 14px;
}
.scroll-cue .arrow {
  display: inline-block;
  animation: bounce 1.8s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}
.hero-image {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--wvw-gold) 0%, var(--wvw-brown) 100%);
  border-radius: var(--radius);
  display: grid; place-items: center;
  color: #fff; font-family: var(--font-display);
  font-weight: 700; text-align: center;
  letter-spacing: 0.05em;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.image-caption {
  font-size: 14px; opacity: 0.9;
  padding: 0 20px;
}

@media (min-width: 900px) {
  .hero { padding: 140px 0 120px; }
  .hero-inner {
    grid-template-columns: 1.1fr 1fr;
    gap: 64px;
  }
}

/* ---------- 6. BIG IDEA ---------- */
.big-idea {
  background: var(--wvw-white);
  padding: 80px 0;
  scroll-margin-top: 80px;
}
.big-idea-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
.big-idea-copy { max-width: 640px; }
.big-idea .lead {
  font-family: var(--font-serif);
  font-size: 19px;
  line-height: 1.7;
  color: var(--wvw-text);
  margin: 0 0 32px;
}
.brand-line {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--wvw-navy);
  line-height: 1.5;
  margin: 0;
  padding-top: 24px;
  border-top: 2px solid var(--wvw-gold);
}
.brand-line em {
  font-style: italic;
  font-family: var(--font-serif);
  color: var(--wvw-red);
  font-weight: 400;
}
.big-idea-image {
  aspect-ratio: 4 / 3;
  background:
    /* TOP LAYER: warm gradient wash — lighter now */
    linear-gradient(135deg, rgba(244,169,60,0.30) 0%, rgba(195,100,52,0.40) 100%),
    /* BOTTOM LAYER: community photo */
    url('option4.webp') center/cover no-repeat,
    var(--wvw-brown);
  border-radius: var(--radius);
  display: grid; place-items: center;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.05em;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}


.image-caption {
  font-size: 14px; opacity: 0.9;
  padding: 0 20px;
}
@media (min-width: 900px) {
  .big-idea { padding: 112px 0; }
  .big-idea-inner {
    grid-template-columns: 1.1fr 1fr;
    gap: 64px;
  }
}

/* ---------- 7. PILLARS ---------- */
.pillars {
  background: var(--wvw-sand);
  padding: 80px 0;
}
.pillar-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 700px) {
  .pillar-grid { 
    grid-template-columns: 1fr 1fr; 
    gap: 32px;
  }
}
@media (min-width: 640px) {
  .pillar-grid { grid-template-columns: 1fr 1fr; }
}

.pillar {
  border-radius: var(--radius);
  color: #fff;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
  overflow: hidden;
}
.pillar:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.pillar-navy { background: var(--wvw-navy); }
.pillar-red { background: var(--wvw-red); }
.pillar-gold { background: var(--wvw-gold); color: var(--wvw-navy); }
.pillar-burgundy { background: var(--wvw-burgundy); }
.pillar-image {
  aspect-ratio: 16 / 9;   /* was 4 / 3 — more cinematic at wider card sizes */
  background: linear-gradient(135deg, rgba(0,0,0,0.15), rgba(0,0,0,0.30));
  display: grid; place-items: center;
  color: rgba(255,255,255,0.85);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  overflow: hidden;
  position: relative;
}
.pillar-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pillar-image .image-caption {
  padding: 0 12px;
  text-align: center;
  opacity: 0.9;
}
.pillar-content {
  padding: 24px 26px 32px;
  display: flex; flex-direction: column;
  flex: 1;
}
.pillar-kicker {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.85;
  margin: 0 0 10px;
}
.pillar-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  line-height: 1.2;
  margin: 0 0 12px;
}
.pillar-body {
  font-size: 15px;
  line-height: 1.6;
  flex: 1;
  margin: 0 0 20px;
  opacity: 0.95;
}
.pillar-cue {
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.3);
  align-self: flex-start;
  transition: opacity .2s;
}
.pillar-gold .pillar-cue {
  border-top-color: rgba(45,57,103,0.25);
}
.pillar-cue:hover { opacity: 0.75; }

/* Pillar card entrance animation */
.pillar {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease-out, 
              transform 0.55s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.pillar-grid.is-active .pillar {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger each card */
.pillar-grid.is-active .pillar:nth-child(1) { transition-delay: 0.05s; }
.pillar-grid.is-active .pillar:nth-child(2) { transition-delay: 0.18s; }
.pillar-grid.is-active .pillar:nth-child(3) { transition-delay: 0.31s; }
.pillar-grid.is-active .pillar:nth-child(4) { transition-delay: 0.44s; }

/* Reduced motion — cards just appear */
@media (prefers-reduced-motion: reduce) {
  .pillar {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ---------- 8. IMPACT ---------- */
.impact {
  background: var(--wvw-white);
  padding: 96px 0;
  scroll-margin-top: 80px;
}
.impact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 40px;
}
@media (min-width: 640px) {
  .impact-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1100px) {
  .impact-grid { grid-template-columns: repeat(4, 1fr); }
}
.stat {
  padding: 40px 28px;
  border-radius: var(--radius);
  color: #fff;
  text-align: left;
  scroll-margin-top: 90px;
  display: flex; flex-direction: column;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08), 0 2px 4px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
  position: relative;
  overflow: hidden;
}

.stat:hover {
  transform: translateY(-6px);
  box-shadow: 
    0 16px 32px rgba(0, 0, 0, 0.15),
    0 6px 12px rgba(0, 0, 0, 0.10);
}

/* Subtle highlight sweep on hover */
.stat::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  border-radius: var(--radius);
}

.stat:hover::before {
  opacity: 1;
}

/* Gold card gets a darker highlight since it's already light */
.stat-gold::before {
  background: linear-gradient(135deg, rgba(45, 57, 103, 0.06) 0%, transparent 50%);
}

/* Icon subtly scales up on card hover */
.stat:hover .stat-icon {
  transform: scale(1.08);
  background: rgba(255, 255, 255, 0.22);
}

.stat-gold:hover .stat-icon {
  background: rgba(45, 57, 103, 0.18);
}

.stat-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: grid; place-items: center;
  margin-bottom: 20px;
  color: currentColor;
  transition: transform 0.3s ease, background 0.3s ease;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .stat, .stat::before, .stat-icon {
    transition: none;
  }
  .stat:hover {
    transform: none;
  }
  .stat:hover .stat-icon {
    transform: none;
  }
}
.stat-navy { background: var(--wvw-navy); }
.stat-red { background: var(--wvw-red); }
.stat-gold { background: var(--wvw-gold); color: var(--wvw-navy); }
.stat-burgundy { background: var(--wvw-burgundy); }
.stat-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: grid; place-items: center;
  margin-bottom: 20px;
  color: currentColor;
}
.stat-gold .stat-icon {
  background: rgba(45,57,103,0.12);
}
.stat-icon svg { width: 28px; height: 28px; }
.stat-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 3em;
  line-height: 1;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}
.stat-body {
  font-size: 15px;
  line-height: 1.55;
  margin: 0 0 20px;
  opacity: 0.95;
  flex: 1;
}
.stat-source {
  font-size: 11px;
  letter-spacing: 0.05em;
  opacity: 0.7;
  margin: 0;
  border-top: 1px solid rgba(255,255,255,0.25);
  padding-top: 10px;
}
.stat-gold .stat-source { border-top-color: rgba(45,57,103,0.2); }
.stat-strip {
  list-style: none; margin: 0; padding: 24px 20px;
  display: grid; gap: 12px;
  border-top: 2px solid var(--wvw-gold);
  border-bottom: 2px solid var(--wvw-gold);
  text-align: center;
  font-size: 15px;
  color: var(--wvw-navy);
}
.stat-strip strong {
  font-weight: 800; color: var(--wvw-red);
  margin-right: 6px;
}
@media (min-width: 900px) {
  .stat-strip {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}
/* Stat card entrance animation */
.stat {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.impact-slide.is-active .stat {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger each card by increasing delay */
.impact-slide.is-active .stat:nth-child(1) { transition-delay: 0.05s; }
.impact-slide.is-active .stat:nth-child(2) { transition-delay: 0.18s; }
.impact-slide.is-active .stat:nth-child(3) { transition-delay: 0.31s; }
.impact-slide.is-active .stat:nth-child(4) { transition-delay: 0.44s; }

/* Reduced motion — cards just appear, no movement */
@media (prefers-reduced-motion: reduce) {
  .stat {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.impact-slide.is-primed .stat {
  opacity: 0;
  transform: translateY(24px);
}

.stat {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease-out, 
              transform 0.55s cubic-bezier(0.34, 1.56, 0.64, 1);
}
/* ---------- 8.5 IMPACT CAROUSEL ---------- */
.impact-head {
  margin-bottom: 40px;
}

.impact-carousel {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: center;
}

@media (min-width: 900px) {
  .impact-carousel {
    grid-template-columns: auto 1fr auto;
    gap: 20px;
  }
}

.impact-viewport {
  overflow: hidden;
  position: relative;
}

.impact-track {
  position: relative;
  min-height: 400px;
}

.impact-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
}

.impact-slide.is-active {
  position: relative;
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.impact-slide.is-leaving {
  opacity: 0;
  transform: translateX(-40px);
}

/* Carousel navigation buttons */
.carousel-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--wvw-white);
  border: 2px solid var(--wvw-navy);
  color: var(--wvw-navy);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: var(--shadow-sm);
  justify-self: center;
  flex-shrink: 0;
}

.carousel-btn:hover:not(:disabled) {
  background: var(--wvw-navy);
  color: var(--wvw-white);
  transform: scale(1.08);
  box-shadow: var(--shadow-md);
}

.carousel-btn:focus-visible {
  outline: 3px solid var(--wvw-gold);
  outline-offset: 3px;
}

.carousel-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.carousel-btn svg {
  width: 22px;
  height: 22px;
}

/* Mobile: stack the arrows below the viewport */
@media (max-width: 899px) {
  .carousel-prev { grid-row: 2; grid-column: 1; justify-self: end; margin-right: 12px; }
  .carousel-next { grid-row: 2; grid-column: 1; justify-self: start; margin-left: 60px; }
  .impact-viewport { grid-row: 1; grid-column: 1; }
}

/* Pagination dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
  padding: 0;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(45, 57, 103, 0.25);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.25s ease, transform 0.25s ease, width 0.25s ease;
}

.dot:hover {
  background: rgba(45, 57, 103, 0.5);
  transform: scale(1.15);
}

.dot.is-active {
  background: var(--wvw-red);
  width: 32px;
  border-radius: 6px;
}

.dot:focus-visible {
  outline: 3px solid var(--wvw-gold);
  outline-offset: 3px;
}

/* Reduced motion — respect user preferences */
@media (prefers-reduced-motion: reduce) {
  .impact-slide {
    transition: opacity 0.15s ease;
    transform: none;
  }
  .impact-slide.is-leaving,
  .impact-slide.is-active {
    transform: none;
  }
  .carousel-btn:hover:not(:disabled) {
    transform: none;
  }
}

/* ---------- 9. COMMUNITY / TESTIMONIALS ---------- */
.community {
  background: var(--wvw-sand);
  padding: 96px 0;
  scroll-margin-top: 80px;
}
.feature-quote {
  position: relative;
  background: #fff;
  border-radius: var(--radius);
  padding: 56px 40px 40px;
  box-shadow: var(--shadow-sm);
  margin: 0 0 32px;
}
.quote-mark {
  position: absolute;
  top: 8px; left: 24px;
  font-family: var(--font-serif);
  font-size: 120px;
  line-height: 1;
  color: var(--wvw-gold);
  opacity: 0.9;
}
.feature-quote blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 22px;
  line-height: 1.5;
  color: var(--wvw-navy);
  margin: 0 0 24px;
  position: relative; z-index: 1;
}
.feature-quote figcaption {
  display: flex; align-items: center; gap: 16px;
  border-top: 1px solid rgba(0,0,0,0.08);
  padding-top: 20px;
}
.portrait-placeholder {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e6e0d3, #cfc7b3);
  flex-shrink: 0;
}
.attribution { display: flex; flex-direction: column; }
.attribution strong {
  font-weight: 800; color: var(--wvw-navy);
}
.attribution em {
  font-family: var(--font-serif);
  color: var(--wvw-muted);
  font-size: 14px;
}

.voices {
  display: grid; gap: 16px;
  scroll-margin-top: 80px;
}
.voice {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px 24px 24px 32px;
  border-left: 6px solid var(--wvw-navy);
  box-shadow: var(--shadow-sm);
}
.voice-navy { border-left-color: var(--wvw-navy); }
.voice-red { border-left-color: var(--wvw-red); }
.voice-gold { border-left-color: var(--wvw-gold); }
.voice blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 17px;
  line-height: 1.5;
  color: var(--wvw-text);
  margin: 0 0 10px;
}
.voice-helper {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--wvw-muted);
  margin: 0;
}

/* ---------- 10. CLOSING BANNER ---------- */
.closing {
  background:
    radial-gradient(circle at 20% 20%, rgba(244,169,60,0.15), transparent 60%),
    var(--wvw-navy);
  color: #fff;
  padding: 96px 0;
  text-align: center;
  scroll-margin-top: 80px;
}
.closing .eyebrow {
  color: var(--wvw-gold);
  margin-bottom: 32px;
}
.closing-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(26px, 4vw, 40px);
  line-height: 1.4;
  color: #fff;
  margin: 0 0 32px;
}
.closing-title em {
  font-style: italic;
  font-family: var(--font-serif);
  color: var(--wvw-gold);
  font-weight: 400;
}
.closing-sub {
  font-family: var(--font-serif);
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  max-width: 560px;
  margin: 0 auto;
}
.closing-sub em {
  color: var(--wvw-gold);
  font-style: italic;
}

/* ---------- 11. FOOTER ---------- */
.site-footer {
  background: var(--wvw-navy-deep);
  color: rgba(255,255,255,0.8);
  padding: 48px 0 32px;
  font-size: 13px;
}
.footer-row {
  display: flex; flex-direction: column; gap: 20px;
  padding: 16px 0;
}
.footer-row-brand {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand { display: flex; align-items: center; gap: 14px; }
.logo-mark-sm { width: 48px; height: 24px; }
.footer-brand-text { display: flex; flex-direction: column; }
.footer-name {
  font-weight: 800; letter-spacing: 0.08em;
  color: #fff; font-size: 13px;
}
.footer-tag {
  font-family: var(--font-serif);
  font-style: italic;
  color: rgba(255,255,255,0.7);
  font-size: 13px;
}
.footer-nav { display: flex; flex-wrap: wrap; gap: 20px; }
.footer-nav a {
  font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; font-size: 12px;
  color: rgba(255,255,255,0.85);
}
.footer-nav a:hover { color: var(--wvw-gold); }
.footer-copy { margin: 0; }
.footer-links {
  list-style: none; padding: 0; margin: 0;
  display: flex; gap: 16px;
}
.footer-links a { color: rgba(255,255,255,0.7); }
.footer-links a:hover { color: var(--wvw-gold); }

@media (min-width: 900px) {
  .footer-row {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

/* ---------- 12. FOCUS & MOTION ---------- */
:focus-visible {
  outline: 3px solid var(--wvw-gold);
  outline-offset: 2px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}