/* =============================================================
   Team Carolina — v5
   Broadcast/editorial rebuild, Southern Stars rhythm
   ============================================================= */

/* Kill any residual v3/v4 that isn't the hero/footer/interest */
.v3-section, .v3-who, .v3-done, .v3-interest,
.v4-statement, .v4-section, .v4-gallery, .v4-interest,
.hero, .hero2, .hero1 { display: none !important; }

/* ---------- Tokens — White / Red / Black ---------- */
:root{
  --v5-bg:#FFFFFF;
  --v5-bg-soft:#F7F5F3;
  --v5-panel:#FAF8F5;
  --v5-line:#E5E3DF;
  --v5-line-strong:#C9C7C2;
  --v5-text:#111111;
  --v5-text-2:#4A4A4A;
  --v5-text-3:#8C8A85;
  --v5-red:#D31A2A;
  --v5-red-2:#A6141F;
  --v5-ink:#0A0A0A;
  --v5-max: 1200px;
  --v5-max-narrow: 900px;
  --v5-pad-x: clamp(1.25rem, 4vw, 3rem);
  --v5-section-y: clamp(4.5rem, 9vw, 8rem);
  --v5-font-display: 'Anton', 'Bebas Neue', Impact, sans-serif;
  --v5-font-body: 'Archivo', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin:0; padding:0; }
body{
  background: var(--v5-bg);
  color: var(--v5-text);
  font-family: var(--v5-font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration: none; }
button{ font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul{ margin:0; padding:0; list-style:none; }
.sr-only{ position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); border:0; }

.v5-wrap{ width:100%; max-width: var(--v5-max); margin-inline:auto; padding-inline: var(--v5-pad-x); }

/* ---------- HEADER / NAV ---------- */
.v5-header{
  position: sticky; top: 0; z-index: 60;
  background: rgba(0,0,0,0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--v5-line);
  transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
}
/* Transparent overlay style used on homepage hero */
.v5-header--transparent{
  position: fixed; top: 0; left: 0; right: 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.v5-header--transparent .v5-nav-link{ color: rgba(255,255,255,.9); text-shadow: 0 1px 3px rgba(0,0,0,.5); }
.v5-header--transparent .v5-nav-link:hover{ color: #fff; }
.v5-header--transparent .v5-brand-name{ color:#fff; text-shadow: 0 1px 3px rgba(0,0,0,.5); }
.v5-header--transparent .v5-nav-burger span{ background:#fff; }
.v5-header--transparent.is-scrolled{
  background: rgba(0,0,0,0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--v5-line);
}
/* Crest + name lockup (Southern Stars style) */
.v5-brand--lockup{ display:flex; align-items:center; gap:.65rem; text-decoration:none; }
.v5-brand-crest{ display:inline-flex; align-items:center; justify-content:center; }
.v5-brand-crest img{ display:block; width:36px; height:36px; object-fit:contain; }
.v5-brand-name{
  font-family: var(--v5-font-display);
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
  line-height: 1;
}
@media (max-width: 640px){
  .v5-brand-crest img{ width:32px; height:32px; }
  .v5-brand-name{ font-size: .95rem; letter-spacing: .1em; }
}
.v5-nav{
  display:flex; align-items:center; justify-content: space-between;
  height: 68px;
  gap: 1.5rem;
}
.v5-brand{ display:flex; align-items:center; gap:.6rem; }
.v5-brand-mark{ width: 34px; height: 34px; display: grid; place-items: center; background:#0d0d0d; border:1px solid var(--v5-line-strong); }
.v5-brand-mark svg{ width:100%; height:100%; }
.v5-brand-word{
  font-family: var(--v5-font-display);
  letter-spacing:.08em;
  font-size: 1.05rem;
  text-transform: uppercase;
  color: var(--v5-text);
  white-space: nowrap;
}
.v5-brand{ flex-shrink: 0; }
.v5-brand-word b{ color: var(--v5-text); font-weight: normal; }
.v5-nav-links{ display:flex; align-items:center; gap: 1.6rem; margin-left: auto; flex-wrap: nowrap; }
.v5-nav-link{ white-space: nowrap; }
.v5-nav-cta{ white-space: nowrap; }
@media (max-width: 1200px){
  .v5-nav-links{ gap: 1.1rem; }
  .v5-nav-link{ font-size: .78rem !important; letter-spacing: .1em !important; }
  .v5-nav-cta{ padding: 10px 14px !important; font-size: .72rem !important; letter-spacing: .1em !important; }
}
.v5-nav-link{
  font-family: var(--v5-font-body);
  font-size: .82rem; font-weight: 600;
  letter-spacing:.14em;
  text-transform: uppercase;
  color: var(--v5-text-2);
  transition: color .18s ease;
  padding: 6px 0;
  display: inline-flex; align-items:center; gap:.35rem;
}
.v5-nav-link:hover{ color: var(--v5-text); }
.v5-nav-item{ position: relative; }
.v5-dropdown{
  position:absolute; top:calc(100% + 14px); left: -1rem;
  background: #0a0a0a; border: 1px solid var(--v5-line-strong);
  padding: 1.5rem 1.75rem;
  display: none;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  gap: 2rem;
  min-width: 620px;
  box-shadow: 0 20px 60px rgba(0,0,0,.6);
}
.v5-dropdown.is-open{ display: grid; }
.v5-drop-col{ display:flex; flex-direction: column; gap: .35rem; }
.v5-drop-label{
  margin: 0 0 .5rem 0;
  font-size: .68rem; font-weight: 700;
  letter-spacing:.15em; text-transform: uppercase;
  color: var(--v5-red);
}
.v5-drop-col a{
  font-size: .92rem; font-weight: 500;
  color: var(--v5-text);
  padding: .3rem 0;
  transition: color .15s ease;
}
.v5-drop-col a:hover{ color: var(--v5-red); }
.v5-nav-cta{
  display:inline-flex; align-items:center; gap:.5rem;
  padding: 12px 20px;
  background: var(--v5-red); color:#fff;
  font-size:.78rem; font-weight:800;
  letter-spacing:.14em; text-transform: uppercase;
  border:1px solid var(--v5-red);
  transition: background .18s ease, color .18s ease;
}
.v5-nav-cta:hover{ background: var(--v5-red-2); }
.v5-nav-burger{ display:none; width:40px; height:40px; align-items:center; justify-content:center; flex-direction:column; gap:5px; }
.v5-nav-burger span{ display:block; width:22px; height:2px; background: var(--v5-text); }

/* ---------- Mobile drawer ---------- */
.v5-drawer{
  position: fixed; inset: 68px 0 0 0;
  background: var(--v5-bg);
  padding: 2rem var(--v5-pad-x);
  overflow-y: auto;
  z-index: 55;
  transform: translateY(-4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}
.v5-drawer.is-open{ opacity: 1; transform: translateY(0); pointer-events: auto; }
.v5-drawer-inner{ display:flex; flex-direction: column; gap:.6rem; max-width: 500px; }
.v5-drawer-label{
  margin:1rem 0 .5rem 0;
  font-family: var(--v5-font-display);
  font-size:.9rem; letter-spacing:.15em; text-transform: uppercase;
  color: var(--v5-red);
}
.v5-drawer a{ font-size:1.1rem; padding:.6rem 0; border-bottom: 1px solid var(--v5-line); color: var(--v5-text); }
.v5-drawer-cta{
  margin-top: 1.5rem !important;
  display:inline-block !important;
  padding: 14px 20px !important;
  background: var(--v5-red);
  color: #fff !important;
  text-align: center !important;
  font-weight: 800 !important;
  letter-spacing: .14em !important;
  text-transform: uppercase !important;
  border-bottom: 0 !important;
  font-size: .9rem !important;
}

/* ---------- HERO ---------- */
.v5-hero{
  position: relative;
  min-height: 88vh;
  min-height: 88svh;
  display:flex; align-items: flex-end;
  overflow: hidden;
  background: #050506;
  padding-bottom: clamp(3rem, 8vw, 6rem);
}
.v5-hero-photo{ position:absolute; inset:0; z-index:0; }
.v5-hero-photo img{ width:100%; height:100%; object-fit: cover; opacity:.28; filter: grayscale(.25) contrast(1.02); }
.v5-hero-scrim{
  position:absolute; inset:0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.7) 55%, rgba(0,0,0,.98) 100%),
    linear-gradient(90deg, rgba(0,0,0,.85) 0%, rgba(0,0,0,.35) 55%);
}

/* Southern Stars-style hero variant: full-bleed image, tall, moody scrim, copy bottom-left */
.v5-hero--stars{
  min-height: 100vh;
  min-height: 100svh;
  padding-bottom: clamp(3rem, 6vw, 5rem);
  background: #050307;
  color: #fff;
  margin-top: 0;
}
.v5-hero--stars .v5-hero-photo{ background: #050307; }
.v5-hero--stars .v5-hero-photo img{
  opacity: 1;
  filter: none;
  object-position: center right;
}
.v5-hero--stars .v5-hero-scrim{
  background:
    /* strong left column so copy is readable */
    linear-gradient(90deg, rgba(5,3,7,.98) 0%, rgba(5,3,7,.85) 25%, rgba(5,3,7,.35) 55%, rgba(5,3,7,.15) 100%),
    /* deeper bottom fade so ticker + proof bar transition cleanly */
    linear-gradient(180deg, rgba(5,3,7,.45) 0%, rgba(5,3,7,.15) 35%, rgba(5,3,7,.75) 100%),
    /* subtle red-tinted vignette (Team Carolina brand) */
    radial-gradient(ellipse at 85% 35%, rgba(211,26,42,.12) 0%, rgba(0,0,0,0) 55%);
}
@media (max-width: 720px){
  .v5-hero--stars .v5-hero-photo img{ object-position: 68% center; }
  .v5-hero--stars .v5-hero-scrim{
    background:
      linear-gradient(180deg, rgba(5,3,7,.45) 0%, rgba(5,3,7,.55) 45%, rgba(5,3,7,.95) 100%),
      linear-gradient(90deg, rgba(5,3,7,.75) 0%, rgba(5,3,7,.20) 100%);
  }
}
/* Bigger, tighter title for the stars variant */
.v5-hero--stars .v5-hero-title{
  font-size: clamp(3.25rem, 9vw, 7.5rem);
  line-height: .88;
  letter-spacing: -.01em;
  max-width: 100%;
  color: #fff;
}
.v5-hero--stars .v5-hero-title .accent-block{
  color: var(--v5-red);
  display: inline;
  background: none;
}
.v5-hero--stars .v5-hero-title .dot{ color: var(--v5-red); }
.v5-hero--stars .v5-hero-tick{ color: rgba(255,255,255,.85); }
.v5-hero--stars .v5-hero-lede{ font-size: clamp(1.05rem, 1.4vw, 1.25rem); margin-top: clamp(1.25rem, 2.5vw, 1.75rem); color: #fff; }
.v5-hero--stars .v5-hero-sub{ max-width: 540px; color: rgba(255,255,255,.78); }
.v5-hero--stars .v5-hero-micro{ color: rgba(255,255,255,.55); }
.v5-hero--stars .v5-btn--ghost{ color:#fff; border-color: rgba(255,255,255,.4); }
.v5-hero--stars .v5-btn--ghost:hover{ background: rgba(255,255,255,.08); border-color:#fff; }
.v5-hero-copy{
  position: relative; z-index: 1;
  padding-top: clamp(4rem, 12vw, 8rem);
  padding-bottom: clamp(3rem, 6vw, 4rem);
  max-width: 900px;
}
.v5-hero-tick{
  display:inline-flex; align-items:center; gap:.7rem;
  margin: 0 0 clamp(1.5rem, 4vw, 2.5rem) 0;
  font-family: var(--v5-font-body);
  font-size:.78rem; font-weight:700;
  letter-spacing:.2em; text-transform: uppercase;
  color: var(--v5-text-2);
}
.v5-tick{ display:inline-block; width:8px; height:8px; background: var(--v5-red); }
.v5-hero-title{
  margin:0;
  font-family: var(--v5-font-display);
  font-weight: 400;
  font-size: clamp(2.25rem, 5.4vw, 4.5rem);
  line-height: .95;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  color: var(--v5-text);
  max-width: 780px;
}
.v5-hero-title .dot{ color: var(--v5-red); }
.v5-hero-title .accent-block{ color: var(--v5-red); }
.v5-hero-lede{
  max-width: 620px;
  margin: clamp(1.5rem, 3vw, 2rem) 0 clamp(.75rem, 1.5vw, 1rem) 0;
  font-size: clamp(1.15rem, 1.7vw, 1.45rem);
  line-height: 1.35;
  color: var(--v5-text);
  font-weight: 600;
  letter-spacing: -.005em;
}
.v5-hero-sub{
  max-width: 620px;
  margin: 0 0 clamp(2rem, 4vw, 2.75rem) 0;
  font-size: clamp(.95rem, 1.15vw, 1.05rem);
  line-height: 1.55;
  color: var(--v5-text-2);
  font-weight: 400;
}
.v5-hero-cta{ display:flex; gap: 1rem; flex-wrap: wrap; }
.v5-hero-credit{
  position:absolute; z-index:1;
  right: var(--v5-pad-x); bottom: 1.25rem;
  margin:0; font-size:.7rem; letter-spacing:.15em; text-transform: uppercase;
  color: var(--v5-text-3);
}

/* ---------- Buttons ---------- */
.v5-btn{
  display: inline-flex; align-items:center; justify-content: center; gap:.55rem;
  padding: 16px 26px;
  font-family: var(--v5-font-body);
  font-size:.85rem; font-weight:800;
  letter-spacing:.14em; text-transform: uppercase;
  border: 1px solid transparent;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
  cursor: pointer;
}
.v5-btn--primary{ background: var(--v5-red); color:#fff; border-color: var(--v5-red); }
.v5-btn--primary:hover{ background: var(--v5-red-2); border-color: var(--v5-red-2); }
.v5-btn--ghost{ background: transparent; color: var(--v5-text); border-color: rgba(255,255,255,.35); }
.v5-btn--ghost:hover{ border-color: var(--v5-text); background: rgba(255,255,255,.05); }
.v5-btn--sm{ padding: 12px 20px; font-size:.75rem; }

/* ---------- Ticker ---------- */
.v5-ticker{
  border-top:1px solid var(--v5-line);
  border-bottom:1px solid var(--v5-line);
  overflow:hidden;
  background: #050505;
  padding: 18px 0;
}
.v5-ticker-track{
  display:inline-flex; align-items:center; gap: 2.5rem;
  white-space: nowrap;
  font-family: var(--v5-font-display);
  font-size: 1.05rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--v5-text-2);
  animation: v5-ticker 42s linear infinite;
}
.v5-ticker-track .dot{
  width: 6px; height: 6px; background: var(--v5-red); border-radius: 50%;
  display:inline-block;
}
@keyframes v5-ticker{
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Section frame ---------- */
.v5-section{
  padding: var(--v5-section-y) 0;
  border-top: 1px solid var(--v5-line);
}
.v5-eyebrow{
  margin: 0 0 clamp(1.5rem, 3vw, 2rem) 0;
  font-family: var(--v5-font-body);
  font-size:.75rem; font-weight:700;
  letter-spacing:.22em; text-transform: uppercase;
  color: var(--v5-red);
  display:inline-flex; align-items:center; gap:.7rem;
}
.v5-eyebrow::before{ content:""; display:inline-block; width:24px; height:1px; background: var(--v5-red); }
.v5-title{
  margin: 0 0 clamp(2rem, 5vw, 3.5rem) 0;
  font-family: var(--v5-font-display);
  font-weight: 400;
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: .95;
  letter-spacing: -.005em;
  text-transform: uppercase;
  color: var(--v5-text);
}
.v5-title .accent{ color: var(--v5-red); }
.v5-sub{
  max-width: 640px;
  font-size: 1.05rem;
  color: var(--v5-text-2);
  margin: 0 0 2rem 0;
}
.v5-lede{
  max-width: 720px;
  margin: 0 0 clamp(2.5rem, 5vw, 3.5rem) 0;
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  line-height: 1.5;
  color: var(--v5-text-2);
}
.v5-section-cta{ margin-top: clamp(2rem, 4vw, 3rem); }

/* ---------- STATEMENT slide ---------- */
.v5-statement{
  padding: clamp(6rem, 14vw, 12rem) 0;
  border-top: 1px solid var(--v5-line);
  background: var(--v5-bg);
  position: relative;
}
.v5-statement-title{
  margin: 0 0 2rem 0;
  font-family: var(--v5-font-display);
  font-weight: 400;
  font-size: clamp(3rem, 8.5vw, 7.5rem);
  line-height: .92;
  letter-spacing: -.008em;
  text-transform: uppercase;
  color: var(--v5-text);
  max-width: 1000px;
}
.v5-statement-title .accent{ color: var(--v5-red); }
.v5-statement-sub{
  max-width: 620px;
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  color: var(--v5-text-2);
  line-height: 1.45;
  margin: 0;
}
.v5-statement-body{
  max-width: 780px;
  display: flex; flex-direction: column;
  gap: 1.25rem;
}
.v5-statement-body p{
  margin: 0;
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  line-height: 1.5;
  color: var(--v5-text-2);
}
.v5-statement-body em{
  color: var(--v5-text);
  font-style: italic;
  font-weight: 500;
}
.v5-statement-close{
  margin-top: 1rem !important;
  padding-top: 1.75rem;
  border-top: 1px solid var(--v5-line);
  color: var(--v5-text) !important;
  font-weight: 500;
}
.v5-statement-close .accent{ color: var(--v5-red); font-weight: 700; }

/* ---------- LOCATION ---------- */
.v5-loc-grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--v5-line-strong);
  border-bottom: 1px solid var(--v5-line-strong);
}
.v5-loc{
  padding: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 3vw, 2.5rem) clamp(2rem, 4vw, 3rem) 0;
  border-right: 1px solid var(--v5-line);
}
.v5-loc:last-child{
  border-right: 0;
  padding-left: clamp(1.5rem, 3vw, 2.5rem);
  padding-right: 0;
}
.v5-loc-kicker{
  margin:0 0 1rem 0;
  font-size:.7rem; font-weight:700;
  letter-spacing:.2em; text-transform: uppercase;
  color: var(--v5-text-3);
}
.v5-loc-name{
  margin:0 0 1rem 0;
  font-family: var(--v5-font-display);
  font-weight: 400;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1;
  letter-spacing:-.005em;
  text-transform: uppercase;
  color: var(--v5-text);
}
.v5-loc-addr{ margin:0 0 1.2rem 0; color: var(--v5-text); font-size: 1rem; line-height: 1.55; }
.v5-loc-body{ margin:0; color: var(--v5-text-2); font-size:.95rem; line-height: 1.6; max-width: 380px; }

/* ---------- OFFERING ---------- */
.v5-offer-grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--v5-line-strong);
  border-bottom: 1px solid var(--v5-line-strong);
}
.v5-offer{
  padding: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 3vw, 2.5rem) clamp(2rem, 4vw, 3rem) 0;
  border-right: 1px solid var(--v5-line);
}
.v5-offer:last-child{ border-right: 0; padding-left: clamp(1.5rem, 3vw, 2.5rem); padding-right: 0; }
.v5-offer-label{
  margin:0 0 .75rem 0;
  font-size:.7rem; font-weight:700;
  letter-spacing:.22em; text-transform: uppercase;
  color: var(--v5-red);
}
.v5-offer-name{
  margin:0 0 1rem 0;
  font-family: var(--v5-font-display); font-weight:400;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1;
  text-transform: uppercase;
  color: var(--v5-text);
  letter-spacing:-.005em;
}
.v5-offer-line{
  margin: 0 0 1.5rem 0;
  color: var(--v5-text-2);
  font-size:1rem;
  line-height: 1.55;
}
.v5-offer-list{ display:flex; flex-direction: column; gap:.55rem; }
.v5-offer-list li{
  position: relative;
  padding-left: 1.25rem;
  font-size:.95rem;
  line-height: 1.5;
  color: var(--v5-text);
}
.v5-offer-list li::before{
  content:""; position:absolute; left:0; top:.75em;
  width: 8px; height: 1px; background: var(--v5-red);
}
.v5-offer-list li b{ color: var(--v5-text); font-weight: 700; }
.v5-offer-footnote{
  margin: 1.75rem 0 0 0;
  padding-top: 1.25rem;
  border-top: 1px solid var(--v5-line);
  color: var(--v5-text-3);
  font-size: .85rem;
  line-height: 1.55;
  font-style: italic;
}

/* ---------- COST ---------- */
.v5-cost-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--v5-line-strong);
  border-bottom: 1px solid var(--v5-line-strong);
}
.v5-cost-cell{
  padding: clamp(2rem, 4vw, 2.5rem) clamp(1.25rem, 2vw, 2rem);
  border-right: 1px solid var(--v5-line);
}
.v5-cost-cell:last-child{ border-right: 0; }
.v5-cost-cell:first-child{ padding-left: 0; }
.v5-cost-cell:last-child{ padding-right: 0; }
.v5-cost-band{
  margin:0 0 1rem 0;
  font-size:.7rem; font-weight:700;
  letter-spacing:.22em; text-transform: uppercase;
  color: var(--v5-red);
}
.v5-cost-amount{
  margin: 0 0 .75rem 0;
  font-family: var(--v5-font-display);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  letter-spacing:-.005em;
  color: var(--v5-text);
}
.v5-cost-amount .approx, .v5-cost-amount .to{ color: var(--v5-text-3); font-weight: 400; }
.v5-cost-note{ margin:0; color: var(--v5-text-2); font-size:.92rem; line-height: 1.5; }
.v5-cost-include{
  margin: 2rem 0 0 0;
  padding: 1.25rem 1.5rem;
  border-left: 3px solid var(--v5-red);
  background: rgba(211, 26, 42, .06);
  color: var(--v5-text);
  font-size: .95rem;
  line-height: 1.55;
  font-weight: 500;
  max-width: 780px;
}
.v5-cost-fine{
  margin: 1.25rem 0 0 0;
  color: var(--v5-text-3); font-size:.82rem; line-height: 1.55;
  max-width: 780px;
}
.v5-cost-cta{ margin-top: 1.75rem; }

/* ---------- GALLERY ---------- */
.v5-gallery{
  border-top: 1px solid var(--v5-line);
  background:#050506;
  padding: 0;
}
.v5-gallery-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.v5-gallery-grid figure{
  margin:0;
  aspect-ratio: 1/1;
  overflow: hidden;
  position: relative;
}
.v5-gallery-grid img{
  width:100%; height:100%; object-fit: cover;
  transition: transform .8s ease, filter .5s ease;
  filter: grayscale(.15) contrast(1.05);
}
.v5-gallery-grid figure:hover img{ transform: scale(1.05); filter: grayscale(0) contrast(1.05); }

/* ---------- COACHES ---------- */
.v5-coach-grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--v5-line-strong);
  border-bottom: 1px solid var(--v5-line-strong);
}
.v5-coach{
  padding: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 3vw, 2.5rem) clamp(2rem, 4vw, 3rem) 0;
  border-right: 1px solid var(--v5-line);
}
.v5-coach:last-child{ border-right: 0; padding-left: clamp(1.5rem, 3vw, 2.5rem); padding-right: 0; }

/* ---------- LEADERSHIP VARIANT (name + role only, no bio) ---------- */
#leadership .v5-coach-grid{
  grid-template-columns: repeat(5, 1fr);
}
#leadership .v5-coach{
  padding: clamp(1.5rem, 2.5vw, 2rem) clamp(1rem, 1.5vw, 1.25rem);
  border-right: 1px solid var(--v5-line);
}
#leadership .v5-coach:first-child{ padding-left: 0; }
#leadership .v5-coach:last-child{ padding-right: 0; padding-left: clamp(1rem, 1.5vw, 1.25rem); border-right: 0; }
#leadership .v5-coach-name{
  font-size: clamp(1.4rem, 2vw, 1.75rem);
}
@media (max-width: 900px){
  #leadership .v5-coach-grid{ grid-template-columns: repeat(2, 1fr); }
  #leadership .v5-coach{ padding: 1.5rem 1.25rem 1.5rem 0; }
  #leadership .v5-coach:nth-child(2n){ border-right: 0; padding-left: 1.25rem; padding-right: 0; }
  #leadership .v5-coach:nth-child(2n+1){ padding-left: 0; }
  #leadership .v5-coach:last-child{ padding-left: 0; }
}
@media (max-width: 560px){
  #leadership .v5-coach-grid{ grid-template-columns: 1fr; }
  #leadership .v5-coach{ padding: 1.25rem 0 !important; border-right: 0; border-bottom: 1px solid var(--v5-line); }
  #leadership .v5-coach:last-child{ border-bottom: 0; }
}
.v5-coach-role{
  margin:0 0 .8rem 0;
  font-size:.7rem; font-weight:700;
  letter-spacing:.22em; text-transform: uppercase;
  color: var(--v5-text-3);
}
.v5-coach-name{
  margin: 0 0 .8rem 0;
  font-family: var(--v5-font-display); font-weight: 400;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1;
  text-transform: uppercase;
  color: var(--v5-text);
}
.v5-coach-line{ margin:0; color: var(--v5-text-2); font-size:.98rem; line-height: 1.55; max-width: 480px; }
.v5-staff-belt{
  margin: clamp(2rem, 4vw, 3rem) 0 0 0;
  padding: clamp(1.25rem, 2.5vw, 1.75rem) 0 0 0;
  font-family: var(--v5-font-display);
  font-size: clamp(1rem, 1.5vw, 1.35rem);
  letter-spacing:.05em;
  text-transform: uppercase;
  color: var(--v5-text);
  line-height: 1.4;
}
.v5-staff-belt .school{ white-space: nowrap; }

/* ---------- PROOF (commits) ---------- */
.v5-proof-headline{
  margin: 0 0 clamp(2rem, 4vw, 2.75rem) 0;
  font-family: var(--v5-font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  line-height: 1.2;
  letter-spacing: -.005em;
  text-transform: uppercase;
  color: var(--v5-text);
  max-width: 800px;
}
.v5-proof-headline b{
  color: var(--v5-red);
  font-weight: 400;
  font-size: 1.15em;
}
.v5-proof-row{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--v5-line-strong);
  border-bottom: 1px solid var(--v5-line-strong);
  padding: 0;
}
.v5-proof-num{
  padding: clamp(2rem, 3.5vw, 2.5rem) 1rem;
  border-right: 1px solid var(--v5-line);
  text-align: left;
}
.v5-proof-num:last-child{ border-right: 0; }
.v5-proof-num b{
  display: block;
  font-family: var(--v5-font-display);
  font-weight: 400;
  font-size: clamp(3rem, 6.5vw, 5.5rem);
  line-height: 1;
  letter-spacing:-.01em;
  color: var(--v5-red);
  margin-bottom: .35rem;
}
.v5-proof-num span{
  display: block;
  font-size:.7rem; font-weight:700;
  letter-spacing:.22em; text-transform: uppercase;
  color: var(--v5-text-2);
}
.v5-proof-line{
  margin: 2rem 0 0 0;
  color: var(--v5-text);
  font-size: 1.05rem;
  line-height: 1.55;
  max-width: 720px;
}

/* ---------- INTEREST FORM ---------- */
.v5-interest{
  background: var(--v5-bg-soft);
}
.v5-interest .v5-title{ margin-bottom: 1rem; }
.v5-interest .v5-sub{ margin-bottom: 3rem; }
.v5-interest-mount{
  border: 1px solid var(--v5-line-strong);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: var(--v5-panel);
  max-width: 780px;
}
/* Aggressive dark theme override for embedded form */
.v5-interest-mount, .v5-interest-mount *{ color: var(--v5-text) !important; }
/* Force the injected form container itself to go dark */
.v5-interest-mount > div,
.v5-interest-mount > div > div,
.v5-interest-mount [class*="container"],
.v5-interest-mount [class*="Container"],
.v5-interest-mount [class*="card"],
.v5-interest-mount [class*="Card"],
.v5-interest-mount [class*="form"],
.v5-interest-mount [class*="Form"],
.v5-interest-mount [class*="wrapper"],
.v5-interest-mount [class*="Wrapper"],
.v5-interest-mount form,
.v5-interest-mount section,
.v5-interest-mount article{
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
/* Nuke the specific white inner card + any subtle strokes */
.v5-interest-mount div[style*="background"],
.v5-interest-mount [class*="notice"],
.v5-interest-mount [class*="Notice"],
.v5-interest-mount [class*="callout"],
.v5-interest-mount [class*="Callout"],
.v5-interest-mount [class*="alert"],
.v5-interest-mount [class*="Alert"],
.v5-interest-mount [class*="banner"],
.v5-interest-mount [class*="Banner"],
.v5-interest-mount [class*="info"],
.v5-interest-mount [class*="Info"],
.v5-interest-mount [class*="box"],
.v5-interest-mount [class*="Box"],
.v5-interest-mount [class*="panel"],
.v5-interest-mount [class*="Panel"]{
  background: rgba(230,59,79,.06) !important;
  background-color: rgba(230,59,79,.06) !important;
  border: 1px solid rgba(230,59,79,.25) !important;
  color: var(--v5-text) !important;
}
/* Belt-and-suspenders: any div inside the mount that has a light background */
.v5-interest-mount [style*="background-color: #f" i],
.v5-interest-mount [style*="background-color: rgb(2" i],
.v5-interest-mount [style*="background-color: rgb(24" i],
.v5-interest-mount [style*="background-color: rgb(25" i],
.v5-interest-mount [style*="background: #f" i],
.v5-interest-mount [style*="background:#f" i]{
  background: rgba(230,59,79,.06) !important;
  background-color: rgba(230,59,79,.06) !important;
  border-color: rgba(230,59,79,.25) !important;
}
.v5-interest-mount h1, .v5-interest-mount h2, .v5-interest-mount h3, .v5-interest-mount h4{
  color: var(--v5-text) !important;
  font-family: var(--v5-font-display) !important;
  font-weight: 400 !important;
  letter-spacing: -.005em !important;
  text-transform: uppercase !important;
}
.v5-interest-mount p{ color: var(--v5-text-2) !important; }
.v5-interest-mount input,
.v5-interest-mount select,
.v5-interest-mount textarea{
  background: #0a0a0b !important;
  border: 1px solid var(--v5-line-strong) !important;
  color: var(--v5-text) !important;
  padding: 12px 14px !important;
  font-family: var(--v5-font-body) !important;
  font-size: .95rem !important;
  border-radius: 0 !important;
}
.v5-interest-mount input:focus,
.v5-interest-mount select:focus,
.v5-interest-mount textarea:focus{
  outline: 0 !important;
  border-color: var(--v5-red) !important;
  box-shadow: 0 0 0 2px rgba(230,59,79,.2) !important;
}
.v5-interest-mount label{
  color: var(--v5-text) !important;
  font-size:.85rem !important;
  font-weight: 600 !important;
  letter-spacing: .04em !important;
  margin-bottom: .4rem !important;
  display: block !important;
}
.v5-interest-mount button,
.v5-interest-mount [type="submit"]{
  background: var(--v5-red) !important;
  color: #fff !important;
  border: 1px solid var(--v5-red) !important;
  padding: 14px 28px !important;
  font-family: var(--v5-font-body) !important;
  font-size: .85rem !important;
  font-weight: 800 !important;
  letter-spacing: .14em !important;
  text-transform: uppercase !important;
  border-radius: 0 !important;
  cursor: pointer !important;
  transition: background .2s ease !important;
}
.v5-interest-mount button:hover,
.v5-interest-mount [type="submit"]:hover{
  background: var(--v5-red-2) !important;
  border-color: var(--v5-red-2) !important;
}
.v5-interest-mount a{ color: var(--v5-red) !important; }
.v5-interest-mount fieldset{ border: 1px solid var(--v5-line) !important; padding: 1rem !important; }
.v5-interest-note{ margin: 1.5rem 0 0 0; font-size:.9rem; color: var(--v5-text-2); }
.v5-interest-note a{ color: var(--v5-red); }

/* ---------- FOOTER ---------- */
.v5-footer{
  border-top: 1px solid var(--v5-line);
  background: #050506;
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(1.5rem, 3vw, 2rem);
}
.v5-footer-grid{
  display:grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.4fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.v5-footer-blurb{ margin: 1.25rem 0 0 0; color: var(--v5-text-2); font-size:.95rem; line-height: 1.55; max-width: 320px; }
.v5-footer-label{
  margin: 0 0 1rem 0;
  font-size:.7rem; font-weight:700;
  letter-spacing:.22em; text-transform: uppercase;
  color: var(--v5-red);
}
.v5-footer li{ margin-bottom: .55rem; }
.v5-footer li a{ color: var(--v5-text); font-size:.95rem; transition: color .15s ease; }
.v5-footer li a:hover{ color: var(--v5-red); }
.v5-footer-loc{ margin: 0 0 1rem 0; color: var(--v5-text-2); font-size:.9rem; line-height: 1.5; }
.v5-footer-loc b{ color: var(--v5-text); }
.v5-footer-bottom{
  padding-top: 1.75rem;
  border-top: 1px solid var(--v5-line);
  color: var(--v5-text-3);
  font-size: .8rem;
  letter-spacing: .05em;
}

/* ---------- Sticky mobile CTA ---------- */
.v5-sticky-cta{
  display: none;
  position: fixed; bottom: 12px; left: 16px; right: 16px;
  z-index: 50;
  padding: 12px 18px;
  min-height: 48px; max-height: 56px;
  background: var(--v5-red); color:#fff;
  font-size:.78rem; font-weight:800;
  letter-spacing:.14em; text-transform: uppercase;
  border: 0; border-radius: 999px; text-decoration: none;
  align-items: center; justify-content: center; gap:.5rem;
  box-shadow: 0 12px 32px rgba(0,0,0,.55);
}
.v5-sticky-cta[hidden]{ display: none !important; }

/* ---------- Proof Bar ---------- */
.v5-proofbar{
  background: #060606;
  border-top: 1px solid var(--v5-line);
  border-bottom: 1px solid var(--v5-line);
  padding: .95rem 0;
}
.v5-proofbar-inner{
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: .55rem 1.15rem;
  font-family: var(--v5-font-body);
  font-size: .82rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--v5-text-2);
  text-align: center;
}
.v5-proofbar-inner b{ color: var(--v5-red); font-weight: 800; letter-spacing: .1em; }
.v5-proofbar-inner .sep{ color: var(--v5-text-3); }

/* ---------- Pathways (3-card grid) ---------- */
.v5-path-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: clamp(2rem, 4vw, 3.5rem);
  border-top: 1px solid var(--v5-line);
}
.v5-path{
  padding: clamp(2rem, 3.2vw, 2.75rem);
  border-right: 1px solid var(--v5-line);
  border-bottom: 1px solid var(--v5-line);
  display: flex; flex-direction: column;
  background: #050505;
}
.v5-path:last-child{ border-right: 0; }
.v5-path--red{ background: linear-gradient(180deg, #120607 0%, #060606 100%); }
.v5-path-eyebrow{
  font-family: var(--v5-font-body);
  font-size: .72rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--v5-red); font-weight: 800; margin: 0 0 1rem;
}
.v5-path--red .v5-path-eyebrow{ color: #ff5967; }
.v5-path-name{
  font-family: var(--v5-font-display);
  font-size: clamp(1.5rem, 2.2vw, 1.85rem);
  line-height: 1.05; letter-spacing: .01em;
  text-transform: uppercase;
  margin: 0 0 1rem; color: var(--v5-text);
}
.v5-path-line{ color: var(--v5-text-2); font-size: .95rem; line-height: 1.55; margin: 0 0 1.25rem; }
.v5-path-list{ list-style: none; padding: 0; margin: 0 0 1.25rem; }
.v5-path-list li{
  color: var(--v5-text-2); font-size: .9rem; line-height: 1.5;
  padding: .55rem 0; border-top: 1px solid var(--v5-line);
}
.v5-path-list li:last-child{ border-bottom: 1px solid var(--v5-line); }
.v5-path-list b{ color: var(--v5-text); font-weight: 700; letter-spacing: .04em; }
.v5-path-included{
  margin: 0 0 1.25rem;
  padding: .85rem 1rem;
  border-left: 3px solid var(--v5-red);
  background: rgba(211,26,42,.08);
  color: var(--v5-text);
  font-size: .88rem;
  line-height: 1.5;
}
.v5-path-included b{ color: var(--v5-text); font-weight: 700; }
.v5-path-footnote{ color: var(--v5-text-3); font-size: .82rem; line-height: 1.5; margin: 0 0 1.5rem; }
.v5-path-cta{
  margin-top: auto;
  display: inline-flex; align-items: center; gap: .5rem;
  color: var(--v5-red); text-decoration: none;
  font-size: .78rem; font-weight: 800;
  letter-spacing: .16em; text-transform: uppercase;
  padding: .35rem 0;
  border-bottom: 1px solid transparent;
}
.v5-path-cta:hover{ border-bottom-color: var(--v5-red); }

/* ---------- Section titles: mid variant ---------- */
.v5-title-mid{
  font-family: var(--v5-font-display);
  font-size: clamp(2rem, 5.5vw, 3.75rem);
  line-height: .95; letter-spacing: .005em;
  text-transform: uppercase;
  margin: 0 0 clamp(1rem, 2vw, 1.5rem);
  color: var(--v5-text);
}

/* ---------- Development Model: 4 pillars ---------- */
.v5-devmodel{ background: #070707; }
.v5-pillars{
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid var(--v5-line);
}
.v5-pillar{
  padding: clamp(1.75rem, 3vw, 2.5rem);
  border-right: 1px solid var(--v5-line);
  border-bottom: 1px solid var(--v5-line);
}
.v5-pillar:last-child{ border-right: 0; }
.v5-pillar-num{
  display: inline-block;
  font-family: var(--v5-font-display);
  font-size: 1.05rem; color: var(--v5-red); letter-spacing: .12em;
  margin-bottom: .85rem;
}
.v5-pillar-name{
  font-family: var(--v5-font-display);
  font-size: clamp(1.2rem, 1.7vw, 1.5rem);
  line-height: 1.05; letter-spacing: .015em;
  text-transform: uppercase;
  margin: 0 0 .75rem; color: var(--v5-text);
}
.v5-pillar-line{ color: var(--v5-text-2); font-size: .9rem; line-height: 1.55; margin: 0; }

/* ---------- Player Journey: 4 stages + arrows ---------- */
.v5-journey{ }
.v5-stages{
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: clamp(.75rem, 1.5vw, 1.25rem);
  align-items: stretch;
  margin-top: clamp(2rem, 4vw, 3rem);
}
.v5-stage{
  padding: clamp(1.5rem, 2.5vw, 2rem);
  background: #060606;
  border: 1px solid var(--v5-line);
  border-top: 3px solid var(--v5-red);
}
.v5-stage-grade{
  display: inline-block;
  font-family: var(--v5-font-display);
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  letter-spacing: .04em;
  color: var(--v5-red);
  margin-bottom: .65rem;
}
.v5-stage-name{
  font-family: var(--v5-font-display);
  font-size: clamp(1.15rem, 1.55vw, 1.4rem);
  line-height: 1.05; letter-spacing: .02em;
  text-transform: uppercase;
  margin: 0 0 .6rem; color: var(--v5-text);
}
.v5-stage-tags{ color: var(--v5-text-2); font-size: .82rem; line-height: 1.5; margin: 0; }
.v5-stage-arrow{
  display: grid; place-items: center;
  color: var(--v5-red);
}

/* ---------- Big proof number ---------- */
.v5-proof-big{
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: center;
  padding: clamp(1.75rem, 3vw, 2.5rem) 0;
  margin: clamp(1.25rem, 2vw, 2rem) 0 clamp(1.5rem, 2.5vw, 2rem);
  border-top: 1px solid var(--v5-line);
  border-bottom: 1px solid var(--v5-line);
}
.v5-proof-big-num{
  font-family: var(--v5-font-display);
  font-size: clamp(6rem, 15vw, 12rem);
  line-height: .82; letter-spacing: -.01em;
  color: var(--v5-red);
}
.v5-proof-big-label{
  color: var(--v5-text);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.4; margin: 0;
  max-width: 32ch;
}

/* ---------- Staff experience belt wrapper ---------- */
.v5-staff-experience{
  margin-top: clamp(2rem, 4vw, 3rem);
  padding-top: clamp(1.5rem, 3vw, 2rem);
  border-top: 1px solid var(--v5-line);
}
.v5-staff-experience-label{
  font-family: var(--v5-font-body);
  font-size: .78rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--v5-red); font-weight: 800;
  margin: 0 0 1rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px){
  .v5-nav-links{ display: none; }
  .v5-nav-cta{ display: none; }
  .v5-nav-burger{ display: flex; }
  .v5-loc-grid,
  .v5-offer-grid,
  .v5-coach-grid{
    grid-template-columns: 1fr;
  }
  .v5-loc, .v5-offer, .v5-coach{
    border-right: 0 !important;
    border-bottom: 1px solid var(--v5-line);
    padding: clamp(1.75rem, 5vw, 2.5rem) 0 !important;
  }
  .v5-loc:last-child, .v5-offer:last-child, .v5-coach:last-child{
    border-bottom: 0;
    padding-left: 0 !important;
  }
  .v5-cost-grid{
    grid-template-columns: 1fr;
  }
  .v5-cost-cell{
    border-right: 0;
    border-bottom: 1px solid var(--v5-line);
    padding: 1.75rem 0 !important;
  }
  .v5-cost-cell:last-child{ border-bottom: 0; }
  .v5-proof-row{
    grid-template-columns: 1fr;
  }
  .v5-proof-num{
    padding: 1.5rem 0;
    border-right: 0;
    border-bottom: 1px solid var(--v5-line);
  }
  .v5-proof-num:last-child{ border-bottom: 0; }
  .v5-gallery-grid{ grid-template-columns: repeat(2, 1fr); }
  .v5-footer-grid{
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .v5-sticky-cta{ display: flex; }
  main{ padding-bottom: 88px; }
  body.has-sticky main{ padding-bottom: 96px; }
  .v5-hero{ min-height: 78vh; min-height: 78svh; }
  .v5-hero-title{ font-size: clamp(2.6rem, 11vw, 4rem); }

  /* Pathways → stacked */
  .v5-path-grid{ grid-template-columns: 1fr; }
  .v5-path{ border-right: 0; }

  /* Dev model pillars → stacked */
  .v5-pillars{ grid-template-columns: 1fr; }
  .v5-pillar{ border-right: 0; }

  /* Journey → vertical stack, hide arrows */
  .v5-stages{
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .v5-stage-arrow{
    transform: rotate(90deg);
    padding: .25rem 0;
  }

  /* Big proof number → stack */
  .v5-proof-big{ grid-template-columns: 1fr; text-align: left; }
  .v5-proof-big-num{ font-size: clamp(5.5rem, 26vw, 8rem); }

  /* Proof bar tightens */
  .v5-proofbar-inner{ font-size: .72rem; letter-spacing: .12em; gap: .35rem .75rem; }
}

@media (max-width: 560px){
  .v5-footer-grid{ grid-template-columns: 1fr; gap: 2.5rem; }
  .v5-hero-credit{ display: none; }
  .v5-staff-belt{ font-size: 1rem; line-height: 1.5; }
}

@media (prefers-reduced-motion: reduce){
  *, *::before, *::after{ animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .v5-ticker-track{ animation: none !important; }
}

/* =============================================================
   WHITE-MODE OVERRIDES + NEW COMPONENTS (v6 layer)
   Site flipped from black-dominant to white-dominant.
   Red stays the accent; a few blocks (Red card, hero, footer,
   dev-model band, final CTA) stay dark for visual rhythm.
   ============================================================= */

/* --- Header on white (legacy — skip when the header is the transparent overlay variant) --- */
.v5-header:not(.v5-header--transparent){
  background: rgba(255,255,255,0.92);
  border-bottom: 1px solid var(--v5-line);
}
.v5-header:not(.v5-header--transparent) .v5-brand-mark{
  background: #fff;
  border: 1px solid var(--v5-line-strong);
}
.v5-header:not(.v5-header--transparent) .v5-brand-mark svg text{ fill: var(--v5-red) !important; }
.v5-header:not(.v5-header--transparent) .v5-nav-link{ color: var(--v5-text-2); }
.v5-header:not(.v5-header--transparent) .v5-nav-link:hover{ color: var(--v5-red); }
.v5-header:not(.v5-header--transparent) .v5-nav-burger span{ background: var(--v5-text); }

/* Dropdown on white */
.v5-dropdown{
  background: #fff;
  border: 1px solid var(--v5-line-strong);
  box-shadow: 0 20px 60px rgba(0,0,0,.10);
}
.v5-drop-col a{ color: var(--v5-text); }
.v5-drop-col a:hover{ color: var(--v5-red); }
.v5-drop-label{ color: var(--v5-red); }

/* Mobile drawer on white */
.v5-drawer{ background: #fff; }
.v5-drawer a{ color: var(--v5-text); border-bottom: 1px solid var(--v5-line); }
.v5-drawer-label{ color: var(--v5-red); }

/* --- HERO stays dark for photo drama --- */
.v5-hero{ background: #0A0A0A; color: #fff; }
.v5-hero-photo img{ opacity:.42; filter: grayscale(.15) contrast(1.05); }
.v5-hero-tick{ color: #fff; }
.v5-hero-title{ color: #fff; }
.v5-hero-lede{ color: #f2f0ec; }
.v5-hero-sub{ color: #C8C6C2; }
.v5-btn--ghost{
  color: #fff;
  border-color: rgba(255,255,255,.4);
  background: transparent;
}
.v5-btn--ghost:hover{
  border-color: #fff;
  background: rgba(255,255,255,.08);
}
.v5-hero-credit{ color: rgba(255,255,255,.55); }

/* Proofbar (below hero) — white with red highlights */
.v5-proofbar{
  background: #fff;
  border-top: 1px solid var(--v5-line);
  border-bottom: 1px solid var(--v5-line);
}
.v5-proofbar-inner{ color: var(--v5-text-2); }
.v5-proofbar-inner b{ color: var(--v5-red); }
.v5-proofbar-inner .sep{ color: var(--v5-text-3); }

/* --- Sections on white --- */
.v5-title, .v5-hero-title{ text-wrap: balance; }
.v5-eyebrow{ color: var(--v5-red); }
.v5-title{ color: var(--v5-text); }
.v5-title .accent{ color: var(--v5-red); }
.v5-sub, .v5-lede{ color: var(--v5-text-2); }

/* Ghost buttons OUTSIDE the hero (on white sections) */
.v5-section .v5-btn--ghost,
.v5-cost-cta .v5-btn--ghost,
.v5-interest .v5-btn--ghost{
  color: var(--v5-text);
  border-color: var(--v5-line-strong);
  background: #fff;
}
.v5-section .v5-btn--ghost:hover,
.v5-cost-cta .v5-btn--ghost:hover,
.v5-interest .v5-btn--ghost:hover{
  border-color: var(--v5-red);
  color: var(--v5-red);
  background: #fff;
}

/* Statement / offer / cost / coach / etc — dividers on white */
.v5-statement{ background: #fff; }
.v5-statement-title, .v5-statement-body p, .v5-statement-close{ color: var(--v5-text); }
.v5-statement-body em{ color: var(--v5-text); }
.v5-loc-name, .v5-offer-name, .v5-coach-name, .v5-pillar-name, .v5-stage-name, .v5-cost-band{
  color: var(--v5-text);
}
.v5-offer-list li b, .v5-path-list b{ color: var(--v5-text); }
.v5-cost-amount{ color: var(--v5-text); }
.v5-cost-amount .approx, .v5-cost-amount .to{ color: var(--v5-text-3); }
.v5-cost-note{ color: var(--v5-text-2); }
.v5-cost-include{ color: var(--v5-text); }
.v5-cost-fine{ color: var(--v5-text-3); }

/* Loc addr - was pure white text */
.v5-loc-addr{ color: var(--v5-text); }
.v5-loc-body{ color: var(--v5-text-2); }
.v5-loc-kicker{ color: var(--v5-red); }

/* --- Pathways row: Red card + White card + Futures card --- */
.v5-path{
  background: #fff;
  border: 1px solid var(--v5-line);
  border-right: 1px solid var(--v5-line);
}
.v5-path--red{
  background: linear-gradient(180deg, var(--v5-red) 0%, var(--v5-red-2) 100%);
  border-color: var(--v5-red-2);
  color: #fff;
}
.v5-path--red .v5-path-eyebrow{ color: #FFD3D6; }
.v5-path--red .v5-path-name{ color: #fff; }
.v5-path--red .v5-path-line{ color: rgba(255,255,255,.92); }
.v5-path--red .v5-path-list li{
  color: rgba(255,255,255,.9);
  border-color: rgba(255,255,255,.22);
}
.v5-path--red .v5-path-list b,
.v5-path--red .v5-path-list li b{ color: #fff; }
.v5-path--red .v5-path-footnote{ color: rgba(255,255,255,.78); }
.v5-path--red .v5-path-cta{
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.55);
}
.v5-path--red .v5-path-cta:hover{ border-bottom-color: #fff; }

/* Year-Round Extras callout — lives inside the red card, secondary tone */
.v5-path-extras{
  margin: 0 0 1.25rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(255,255,255,.28);
  background: rgba(255,255,255,.10);
  border-radius: 2px;
}
.v5-path-extras-label{
  margin: 0 0 .35rem;
  font-family: var(--v5-font-display);
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: .72rem;
  color: #FFD3D6;
}
.v5-path-extras-body{
  margin: 0;
  font-size: .88rem;
  line-height: 1.5;
  color: rgba(255,255,255,.92);
}

/* Path text colors on the WHITE cards */
.v5-path:not(.v5-path--red) .v5-path-eyebrow{ color: var(--v5-red); }
.v5-path:not(.v5-path--red) .v5-path-name{ color: var(--v5-text); }
.v5-path:not(.v5-path--red) .v5-path-line{ color: var(--v5-text-2); }
.v5-path:not(.v5-path--red) .v5-path-list li{
  color: var(--v5-text);
  border-color: var(--v5-line);
}
.v5-path:not(.v5-path--red) .v5-path-list li b{ color: var(--v5-text); }
.v5-path:not(.v5-path--red) .v5-path-footnote{ color: var(--v5-text-3); }
.v5-path:not(.v5-path--red) .v5-path-cta{
  color: var(--v5-text);
  border-bottom: 1px solid var(--v5-line-strong);
}
.v5-path:not(.v5-path--red) .v5-path-cta:hover{ border-bottom-color: var(--v5-red); color: var(--v5-red); }

/* Dev model band — keep as a dark red-tinted rhythm break */
.v5-devmodel{
  background: #0F0F0F;
  color: #fff;
}
.v5-devmodel .v5-eyebrow{ color: #FF7280; }
.v5-devmodel .v5-title{ color: #fff; }
.v5-devmodel .v5-title .accent{ color: #FF5560; }
.v5-devmodel .v5-lede{ color: #C8C6C2; }
.v5-devmodel .v5-pillar{ border-color: rgba(255,255,255,.14); }
.v5-devmodel .v5-pillar-num{ color: var(--v5-red); }
.v5-devmodel .v5-pillar-name{ color: #fff; }
.v5-devmodel .v5-pillar-line{ color: #C8C6C2; }

/* Journey (stages) on white */
.v5-stage{ background: #fff; border-color: var(--v5-line); }
.v5-stage-grade{ color: var(--v5-red); }
.v5-stage-tags{ color: var(--v5-text-2); }
.v5-stage-arrow{ color: var(--v5-text-3); }

/* Proof section (college commits) — white surface */
.v5-proof-big-num{ color: var(--v5-red); }
.v5-proof-big-label{ color: var(--v5-text); }
.v5-proof-row{ border-color: var(--v5-line); }
.v5-proof-num{ border-color: var(--v5-line); }
.v5-proof-num b{ color: var(--v5-text); }
.v5-proof-num span{ color: var(--v5-text-2); }
.v5-proof-line{ color: var(--v5-text); }
.v5-proof-line b{ color: var(--v5-red); }

/* 4-column proof row on desktop */
.v5-proof-row--4{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--v5-line);
  border-bottom: 1px solid var(--v5-line);
}
.v5-proof-row--4 .v5-proof-num{
  border-right: 1px solid var(--v5-line);
  padding: 1.5rem 1rem;
  text-align: center;
}
.v5-proof-row--4 .v5-proof-num:last-child{ border-right: 0; }

/* Coaches / staff belt — on white */
.v5-coach-role{ color: var(--v5-red); }
.v5-coach-line{ color: var(--v5-text-2); }
.v5-staff-experience{ border-top: 1px solid var(--v5-line); }
.v5-staff-experience-label{ color: var(--v5-text); }
.v5-staff-experience-line{
  margin: .35rem 0 .85rem;
  color: var(--v5-text-2);
  font-size: .95rem;
  line-height: 1.5;
  max-width: 640px;
}
.v5-staff-belt{ color: var(--v5-text); }
.v5-staff-belt .school{ color: var(--v5-red); font-weight: 700; }

/* Cost cells on white */
.v5-cost-cell{ border-color: var(--v5-line); }

/* --- Interest form container on white --- */
.v5-interest{ background: var(--v5-bg-soft); }
.v5-interest-mount{
  background: #fff;
  border: 1px solid var(--v5-line);
  padding: clamp(1.25rem, 3vw, 2rem);
}
.v5-interest-mount, .v5-interest-mount *{ color: var(--v5-text) !important; }
.v5-interest-mount h1, .v5-interest-mount h2, .v5-interest-mount h3, .v5-interest-mount h4{
  color: var(--v5-text) !important;
}
.v5-interest-mount p{ color: var(--v5-text-2) !important; }
.v5-interest-mount input,
.v5-interest-mount select,
.v5-interest-mount textarea{
  background: #fff !important;
  color: var(--v5-text) !important;
  border: 1px solid var(--v5-line-strong) !important;
}
.v5-interest-mount input:focus,
.v5-interest-mount select:focus,
.v5-interest-mount textarea:focus{
  border-color: var(--v5-red) !important;
  outline: none !important;
}
.v5-interest-mount label{ color: var(--v5-text) !important; }
.v5-interest-mount fieldset{ border: 1px solid var(--v5-line) !important; }
.v5-interest-mount [class*="notice"],
.v5-interest-mount [class*="Notice"],
.v5-interest-mount [class*="callout"],
.v5-interest-mount [class*="Callout"],
.v5-interest-mount [class*="alert"],
.v5-interest-mount [class*="Alert"],
.v5-interest-mount [class*="banner"],
.v5-interest-mount [class*="Banner"],
.v5-interest-mount [class*="info"],
.v5-interest-mount [class*="Info"],
.v5-interest-mount [class*="box"],
.v5-interest-mount [class*="Box"],
.v5-interest-mount [class*="panel"],
.v5-interest-mount [class*="Panel"]{
  background: rgba(211, 26, 42, .06) !important;
  background-color: rgba(211, 26, 42, .06) !important;
  border: 1px solid rgba(211, 26, 42, .18) !important;
}
.v5-interest-note{ color: var(--v5-text-2); }

/* --- Evaluation process strip (new component) --- */
.v5-eval-steps{
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--v5-line);
  border-bottom: 1px solid var(--v5-line);
}
.v5-eval-steps li{
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: 1rem 1.1rem;
  border-right: 1px solid var(--v5-line);
}
.v5-eval-steps li:last-child{ border-right: 0; }
.v5-eval-num{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px; height: 30px;
  background: var(--v5-red);
  color: #fff;
  font-family: var(--v5-font-display);
  font-size: 1rem;
  letter-spacing: .04em;
  flex-shrink: 0;
}
.v5-eval-label{
  font-family: var(--v5-font-body);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--v5-text);
  line-height: 1.3;
}
@media (max-width: 780px){
  .v5-eval-steps{ grid-template-columns: 1fr 1fr; }
  .v5-eval-steps li:nth-child(2){ border-right: 0; }
  .v5-eval-steps li:nth-child(1),
  .v5-eval-steps li:nth-child(2){ border-bottom: 1px solid var(--v5-line); }
}
@media (max-width: 480px){
  .v5-eval-steps{ grid-template-columns: 1fr; }
  .v5-eval-steps li{ border-right: 0; border-bottom: 1px solid var(--v5-line); }
  .v5-eval-steps li:last-child{ border-bottom: 0; }
}

/* --- Footer: stays dark for anchor / rhythm --- */
.v5-footer{
  background: #0A0A0A;
  color: #fff;
  border-top: none;
}
.v5-footer .v5-brand-mark{ background: #0d0d0d; border-color: #262626; }
.v5-footer .v5-brand-mark svg text{ fill: var(--v5-red) !important; }
.v5-footer .v5-brand-word{ color: #fff; }
.v5-footer-blurb{ color: #B8B8B8; }
.v5-footer-label{ color: var(--v5-red); }
.v5-footer li a{ color: #fff; }
.v5-footer li a:hover{ color: var(--v5-red); }
.v5-footer-loc{ color: #B8B8B8; }
.v5-footer-loc b{ color: #fff; }
.v5-footer-bottom{ border-top: 1px solid #1a1a1a; color: #6E6E6E; }

/* --- Sticky mobile CTA — red button on white background stays same --- */
.v5-sticky-cta{ box-shadow: 0 12px 32px rgba(0,0,0,.18); }

/* --- Section borders (was invisible on black, need to show on white) --- */
.v5-offer-grid, .v5-cost-grid, .v5-coach-grid, .v5-pillars, .v5-loc-grid{
  border-top: 1px solid var(--v5-line);
  border-bottom: 1px solid var(--v5-line);
}
.v5-offer, .v5-cost-cell, .v5-coach, .v5-pillar, .v5-loc{
  border-right: 1px solid var(--v5-line);
}
.v5-devmodel .v5-pillars{
  border-top: 1px solid rgba(255,255,255,.14);
  border-bottom: 1px solid rgba(255,255,255,.14);
}

/* --- Gallery (photo strip) --- */
.v5-gallery{ background: #fff; }
.v5-gallery-grid img{ filter: grayscale(.05) contrast(1.02); }

/* --- Path grid gets a top/bottom rule on white --- */
.v5-path-grid{
  border-top: 1px solid var(--v5-line);
  border-bottom: 1px solid var(--v5-line);
}

/* --- Ensure "accent-block" (red dot in hero title) reads on dark hero --- */
.v5-hero-title .accent-block{ color: var(--v5-red); }
.v5-hero-title .dot{ color: var(--v5-red); }

/* --- QA fixes --- */
/* Dev-model band uses .v5-title-mid but tokens are now dark — force white in devmodel */
.v5-devmodel .v5-title-mid{ color: #fff; }
.v5-devmodel .v5-title-mid .accent,
.v5-devmodel .v5-title-mid strong{ color: var(--v5-red); }

/* Footer wordmark: "TEAM" was defaulting to dark via .v5-brand-word b in tokens */
.v5-footer .v5-brand-word,
.v5-footer .v5-brand-word b{ color: #fff !important; }

/* =============================================================
   v7: ALL-LIGHT MODE — no dark bands anywhere
   Hero, dev-model, and footer all flip to white/red.
   ============================================================= */

/* --- LEGACY HERO on white ---
   Scoped to :not(.v5-hero--stars) so the new dark hero variant is untouched. */
.v5-hero:not(.v5-hero--stars){
  background: #fff !important;
  color: var(--v5-text);
  min-height: auto;
  align-items: stretch;
  padding-bottom: 0 !important;
  border-bottom: 1px solid var(--v5-line);
}
.v5-hero:not(.v5-hero--stars) .v5-hero-photo{
  position: absolute;
  inset: 0 0 0 62%;   /* photo lives on right ~38% so it stays clear of headline */
  z-index: 0;
  /* Long soft feather so left edge dissolves gradually into the white */
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 35%, #000 100%);
          mask-image: linear-gradient(90deg, transparent 0%, #000 35%, #000 100%);
}
.v5-hero:not(.v5-hero--stars) .v5-hero-photo img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  opacity: 1 !important;
  filter: none !important;
}
.v5-hero:not(.v5-hero--stars) .v5-hero-scrim{
  /* Feather now handled by mask on .v5-hero-photo — kill any legacy scrim */
  display: none !important;
}
.v5-hero:not(.v5-hero--stars) .v5-hero-copy{
  position: relative;
  z-index: 1;
  padding-top: clamp(4rem, 9vw, 7rem);
  padding-bottom: clamp(4rem, 9vw, 7rem);
  max-width: 900px;
}
.v5-hero:not(.v5-hero--stars) .v5-hero-tick{ color: var(--v5-red) !important; }
.v5-hero:not(.v5-hero--stars) .v5-tick{ background: var(--v5-red); }
.v5-hero:not(.v5-hero--stars) .v5-hero-title{ color: var(--v5-text) !important; }
.v5-hero:not(.v5-hero--stars) .v5-hero-title .accent-block,
.v5-hero:not(.v5-hero--stars) .v5-hero-title .dot{ color: var(--v5-red) !important; }
.v5-hero:not(.v5-hero--stars) .v5-hero-lede{ color: var(--v5-text) !important; }
.v5-hero:not(.v5-hero--stars) .v5-hero-sub{ color: var(--v5-text-2) !important; }
.v5-hero:not(.v5-hero--stars) .v5-hero-credit{ color: var(--v5-text-3) !important; }

/* Hero ghost btn (was on dark before) — flip to light (legacy hero only) */
.v5-hero:not(.v5-hero--stars) .v5-btn--ghost{
  color: var(--v5-text) !important;
  border-color: var(--v5-line-strong) !important;
  background: #fff !important;
}
.v5-hero:not(.v5-hero--stars) .v5-btn--ghost:hover{
  border-color: var(--v5-red) !important;
  color: var(--v5-red) !important;
  background: #fff !important;
}

/* On smaller screens, the right-side photo overpowers text — pull it to a bottom strip (legacy hero only) */
@media (max-width: 900px){
  .v5-hero:not(.v5-hero--stars){ display: block; }
  .v5-hero:not(.v5-hero--stars) .v5-hero-photo{
    position: relative;
    inset: auto;
    height: 44vh;
    min-height: 320px;
  }
  .v5-hero:not(.v5-hero--stars) .v5-hero-scrim{
    background: linear-gradient(180deg, rgba(255,255,255,0) 55%, #fff 100%) !important;
  }
  .v5-hero:not(.v5-hero--stars) .v5-hero-copy{
    padding-top: clamp(2rem, 6vw, 4rem);
    padding-bottom: clamp(2rem, 6vw, 3rem);
  }
}

/* --- DEV MODEL band on white --- */
.v5-devmodel{ background: #fff !important; color: var(--v5-text); }
.v5-devmodel .v5-eyebrow{ color: var(--v5-red) !important; }
.v5-devmodel .v5-title,
.v5-devmodel .v5-title-mid{ color: var(--v5-text) !important; }
.v5-devmodel .v5-title .accent,
.v5-devmodel .v5-title-mid .accent{ color: var(--v5-red) !important; }
.v5-devmodel .v5-lede{ color: var(--v5-text-2) !important; }
.v5-devmodel .v5-pillars{
  border-top: 1px solid var(--v5-line) !important;
  border-bottom: 1px solid var(--v5-line) !important;
}
.v5-devmodel .v5-pillar{ border-color: var(--v5-line) !important; }
.v5-devmodel .v5-pillar-num{ color: var(--v5-red) !important; }
.v5-devmodel .v5-pillar-name{ color: var(--v5-text) !important; }
.v5-devmodel .v5-pillar-line{ color: var(--v5-text-2) !important; }

/* --- FOOTER on white --- */
.v5-footer{
  background: #fff !important;
  color: var(--v5-text) !important;
  border-top: 1px solid var(--v5-line);
}
.v5-footer .v5-brand-mark{
  background: #fff !important;
  border-color: var(--v5-line-strong) !important;
}
.v5-footer .v5-brand-mark svg text{ fill: var(--v5-red) !important; }
.v5-footer .v5-brand-word,
.v5-footer .v5-brand-word b{ color: var(--v5-text) !important; }
.v5-footer-blurb{ color: var(--v5-text-2) !important; }
.v5-footer-label{ color: var(--v5-red) !important; }
.v5-footer li a{ color: var(--v5-text) !important; }
.v5-footer li a:hover{ color: var(--v5-red) !important; }
.v5-footer-loc{ color: var(--v5-text-2) !important; }
.v5-footer-loc b{ color: var(--v5-text) !important; }
.v5-footer-bottom{
  border-top: 1px solid var(--v5-line) !important;
  color: var(--v5-text-3) !important;
}

/* --- INTEREST section: was bg-soft, keep it barely tinted for section rhythm --- */
.v5-interest{ background: var(--v5-bg-soft); }

/* --- BODY safety --- */
body{ background: #fff !important; color: var(--v5-text); }

/* =============================================================
   v8: Mobile nav fix + balance tweaks
   ============================================================= */

/* --- MOBILE NAV: force burger visibility + drawer working --- */
@media (max-width: 900px){
  .v5-nav-burger{
    display: flex !important;
    width: 44px; height: 44px;
    align-items: center; justify-content: center; flex-direction: column;
    gap: 5px;
    background: transparent;
    border: 1px solid var(--v5-line-strong);
    border-radius: 6px;
    cursor: pointer;
    margin-left: auto;
    padding: 0;
    z-index: 60;
    position: relative;
  }
  .v5-nav-burger span{
    display: block !important;
    width: 20px; height: 2px;
    background: var(--v5-text) !important;
    border-radius: 1px;
  }
  .v5-nav-links,
  .v5-nav-cta{ display: none !important; }
  .v5-header{ padding: .75rem var(--v5-pad-x); }
  .v5-drawer{
    display: block;
    background: #fff !important;
  }
  .v5-drawer.is-open{
    opacity: 1 !important;
    transform: translateY(0) !important;
    pointer-events: auto !important;
  }
}

/* --- STATEMENT TITLE: rebalance so it stops screaming --- */
.v5-statement-title{
  font-size: clamp(2.25rem, 5.5vw, 4.75rem) !important;
  line-height: 1 !important;
  letter-spacing: -.01em !important;
  max-width: 900px !important;
}

/* --- HERO BALANCE: text pinned left of wrap, photo bleeds right with soft blend --- */
/* NOTE: This block applies to the LEGACY hero only. The new .v5-hero--stars
   variant is a full-bleed dark hero and must not have its photo cropped or
   its scrim hidden. */
@media (min-width: 901px){
  .v5-hero:not(.v5-hero--stars){ min-height: 72vh; }
  /* Copy inside .v5-wrap keeps its wrap padding but capped narrow so headline
     never reaches the photo area. */
  .v5-hero:not(.v5-hero--stars) .v5-hero-copy{
    max-width: 560px;
    margin-left: 0;
    margin-right: auto;
  }
  /* Photo occupies right ~48%, with a long left-side feather so athlete
     dissolves into the white rather than sitting in a rectangle. */
  .v5-hero:not(.v5-hero--stars) .v5-hero-photo{
    inset: 0 0 0 52% !important;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 40%, #000 100%) !important;
            mask-image: linear-gradient(90deg, transparent 0%, #000 40%, #000 100%) !important;
  }
  .v5-hero:not(.v5-hero--stars) .v5-hero-scrim{ display: none !important; }
  .v5-hero:not(.v5-hero--stars) .v5-hero-title{
    font-size: clamp(2.5rem, 4.6vw, 3.75rem) !important;
  }
}

/* =============================================================
   v9: Mobile drawer = full page takeover
   ============================================================= */
@media (max-width: 900px){
  .v5-drawer{
    position: fixed !important;
    inset: 0 !important;  /* Full viewport, not just below header */
    width: 100% !important;
    height: 100% !important;
    height: 100dvh !important;
    background: #fff !important;
    padding: 5rem var(--v5-pad-x) 3rem !important;
    overflow-y: auto !important;
    z-index: 100 !important;
    box-sizing: border-box;
  }
  .v5-drawer.is-open{
    opacity: 1 !important;
    transform: translateY(0) !important;
    pointer-events: auto !important;
  }
  .v5-drawer-inner{
    max-width: 100% !important;
    gap: .25rem !important;
  }
  .v5-drawer-label{
    font-size: .75rem !important;
    letter-spacing: .2em !important;
    margin: 1.5rem 0 .5rem !important;
    color: var(--v5-red) !important;
  }
  .v5-drawer a{
    font-family: var(--v5-font-display) !important;
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: .02em !important;
    padding: 1rem 0 !important;
    border-bottom: 1px solid var(--v5-line) !important;
    color: var(--v5-text) !important;
  }
  .v5-drawer-cta{
    display: block !important;
    text-align: center !important;
    margin-top: 2rem !important;
    padding: 1.1rem 1.5rem !important;
    background: var(--v5-red) !important;
    color: #fff !important;
    font-family: var(--v5-font-body) !important;
    font-size: .95rem !important;
    font-weight: 700 !important;
    letter-spacing: .1em !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    border-bottom: 0 !important;
  }
  /* When drawer is open, hide the burger's own outline so the top-right feels clean.
     The user still has a way to close via the drawer close mechanism (tap burger again or a link) */
  .v5-drawer.is-open ~ .v5-nav-burger,
  body:has(.v5-drawer.is-open) .v5-nav-burger{
    /* Convert burger to X visually when open */
    border-color: var(--v5-text) !important;
  }
}

/* Ensure burger sits above the full-page drawer so users can tap it to close */
@media (max-width: 900px){
  .v5-header{ z-index: 110 !important; position: sticky; top: 0; }
  .v5-nav-burger{ z-index: 120 !important; }
}

/* =============================================================
   v10: Sliding college logo belt
   ============================================================= */
.v5-logo-belt{
  position: relative;
  overflow: hidden;
  margin: 3rem 0 2rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--v5-line);
  border-bottom: 1px solid var(--v5-line);
  /* Fade edges */
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.v5-logo-belt-track{
  display: flex;
  align-items: center;
  gap: 3.5rem;
  width: max-content;
  animation: v5-logo-scroll 90s linear infinite;
}
.v5-logo-belt-track img{
  height: 56px;
  width: auto;
  max-width: 90px;
  object-fit: contain;
  opacity: .82;
  filter: none;
  transition: opacity .2s ease;
  flex-shrink: 0;
}
.v5-logo-belt-track img:hover{ opacity: 1; }
.v5-logo-belt:hover .v5-logo-belt-track{ animation-play-state: paused; }

@keyframes v5-logo-scroll{
  from{ transform: translateX(0); }
  /* Track contains 2 copies — slide by 50% for seamless loop */
  to{ transform: translateX(-50%); }
}

@media (max-width: 700px){
  .v5-logo-belt{ padding: 1rem 0; margin: 2rem 0 1.5rem; }
  .v5-logo-belt-track{ gap: 2.5rem; animation-duration: 60s; }
  .v5-logo-belt-track img{ height: 44px; max-width: 70px; }
}

@media (prefers-reduced-motion: reduce){
  .v5-logo-belt-track{ animation: none; transform: none; }
  .v5-logo-belt{ overflow-x: auto; }
}

/* ===== F.A.S.T. letters in homepage #how-we-develop teaser ===== */
.v5-devmodel .v5-pillar-num{
  font-family: var(--v5-font-display), 'Anton', 'Impact', sans-serif;
  font-size: clamp(2.5rem, 4vw, 3.75rem);
  line-height: .9;
  color: var(--v5-red);
  letter-spacing: 0;
  margin-bottom: 1rem;
}
.v5-devmodel-cta{
  margin-top: clamp(2rem, 4vw, 3rem);
  text-align: center;
}
.v5-devmodel-link{
  display: inline-flex; align-items: center; gap: .6rem;
  padding: 1.05rem 2rem;
  background: transparent;
  border: 1px solid var(--v5-line);
  color: var(--v5-text);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: .78rem; letter-spacing: .18em; text-transform: uppercase;
  font-weight: 700; text-decoration: none;
  border-radius: 4px;
  transition: background .15s ease, border-color .15s ease, color .15s ease, transform .15s ease;
}
.v5-devmodel-link:hover{
  background: var(--v5-red); border-color: var(--v5-red);
  color: #fff;
  transform: translateY(-1px);
}

/* Footer FAST mark on homepage */
.v5-footer-fast{
  font-family: 'Inter', system-ui, sans-serif;
  font-size: .82rem; letter-spacing: .1em;
  color: #a0a0a8; margin: 1rem 0 0;
}
.v5-footer-fast b{ color: var(--v5-red); font-weight: 700; }

/* ============================================================
   v5.1 — Homepage rebuild (Aug 2026) — testimonials, FAQ, misc
   ============================================================ */

/* Hero microcopy under CTA */
.v5-hero-micro{
  margin: 1rem 0 0;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: .88rem; line-height: 1.5;
  color: #b8b8bc; max-width: 42ch;
}

/* Philosophy attrs list */
.v5-statement-attrs{
  margin: 1.2rem 0;
  font-family: var(--v5-font-display);
  font-size: clamp(.95rem, 1.1vw, 1.15rem);
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--v5-text); line-height: 1.6;
}
.v5-statement-attrs b{ font-weight: 500; }

/* F.A.S.T. closing line + P→R→M→M chip */
.v5-devmodel-close{
  margin-top: 2rem;
  font-style: normal;
  color: var(--v5-text);
  max-width: 62ch;
}
.v5-devmodel-cta{
  display: flex; align-items: center; gap: 1.5rem;
  flex-wrap: wrap; margin-top: 1.5rem;
}
.v5-prmm-chip{
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .55rem .95rem;
  border: 1px solid var(--v5-line);
  font-family: var(--v5-font-display);
  font-size: .82rem; letter-spacing: .08em;
  text-transform: uppercase; color: var(--v5-text-2);
}
.v5-prmm-chip b{ color: var(--v5-text); font-weight: 500; }
.v5-prmm-chip span{ color: var(--v5-red); }

/* Testimonials — dark section, horizontal auto-scrolling marquee */
.v5-testimonials{ background: #0a0a0b; color: #ededed; overflow: hidden; }
.v5-testimonials .v5-eyebrow{ color: var(--v5-red); }
.v5-testimonials .v5-title{ color: #ffffff; }
.v5-testimonials .v5-title .accent{ color: var(--v5-red); }

.v5-marquee{
  position: relative;
  margin-top: 2.5rem;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.v5-marquee-track{
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: v5-marquee-scroll 140s linear infinite;
  will-change: transform;
}
.v5-marquee:hover .v5-marquee-track,
.v5-marquee:focus-within .v5-marquee-track{ animation-play-state: paused; }

@keyframes v5-marquee-scroll{
  from{ transform: translateX(0); }
  to  { transform: translateX(-50%); }
}

.v5-testimonials .v5-testi{
  flex: 0 0 380px;
  margin: 0; padding: 1.75rem;
  border: 1px solid rgba(255,255,255,.14);
  background: #131316;
  display: flex; flex-direction: column; gap: 1rem;
  min-height: 220px;
}
.v5-testi-tier{
  margin: 0;
  font-family: var(--v5-font-display);
  font-size: .78rem; letter-spacing: .12em;
  color: var(--v5-red); text-transform: uppercase;
}
.v5-testi-quote{
  margin: 0; font-family: 'Inter', system-ui, sans-serif;
  font-size: 1rem; line-height: 1.55;
  color: #ededed;
  quotes: none;
  flex: 1;
}
.v5-testi-attr{
  margin: 0; font-size: .85rem; color: #a8a8a8;
  font-family: 'Inter', system-ui, sans-serif;
}

@media (max-width: 640px){
  .v5-testimonials .v5-testi{ flex: 0 0 300px; padding: 1.35rem; min-height: 200px; }
  .v5-marquee-track{ animation-duration: 120s; gap: 1rem; }
  .v5-testi-quote{ font-size: .95rem; }
}

@media (prefers-reduced-motion: reduce){
  .v5-marquee-track{ animation: none; }
  .v5-marquee{
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .v5-testimonials .v5-testi{ scroll-snap-align: start; }
}

/* FAQ — light section, matches other body sections */
.v5-faq{ background: #ffffff; }
.v5-faq-grid{
  max-width: 780px; margin: 2.5rem 0 0;
  display: flex; flex-direction: column; gap: .5rem;
}
.v5-faq-item{
  border-bottom: 1px solid var(--v5-line);
  padding: 1.2rem 0;
}
.v5-faq-item summary{
  cursor: pointer; list-style: none;
  font-family: var(--v5-font-display);
  font-size: 1.05rem; letter-spacing: .02em;
  color: var(--v5-text);
  padding-right: 2rem; position: relative;
  transition: color .2s;
}
.v5-faq-item summary::-webkit-details-marker{ display: none; }
.v5-faq-item summary::after{
  content: '+'; position: absolute; right: 0; top: 50%;
  transform: translateY(-50%);
  font-family: var(--v5-font-display);
  font-size: 1.5rem; color: var(--v5-red);
  transition: transform .2s;
}
.v5-faq-item[open] summary::after{ content: '−'; }
.v5-faq-item summary:hover{ color: var(--v5-red); }
.v5-faq-item p{
  margin: 1rem 0 0;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: .98rem; line-height: 1.6;
  color: var(--v5-text-2); max-width: 62ch;
}
.v5-faq-item p b{ color: var(--v5-text); font-weight: 600; }

/* ============================================================
   WHY WE EXIST — the parent hook
   ============================================================ */
.v5-why { background: #FAFAF7; }
.v5-why-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 4rem;
  align-items: start;
  margin-top: 2.5rem;
}
.v5-why-copy p {
  font-size: 1.125rem;
  line-height: 1.65;
  color: #28251D;
  margin: 0 0 1.15rem;
}
.v5-why-copy p:last-child { margin-bottom: 0; }
.v5-why-copy p b { font-weight: 700; }
.v5-why-copy p em { font-style: italic; }
.v5-why-quote {
  border-left: 4px solid #D31A2A;
  padding: 0.75rem 0 0.75rem 1.5rem;
  position: sticky;
  top: 6rem;
}
.v5-why-quote-line {
  font-family: 'Anton', Impact, sans-serif;
  font-size: 2.25rem;
  line-height: 1.05;
  letter-spacing: 0.01em;
  color: #28251D;
  margin: 0 0 0.35rem;
  text-transform: uppercase;
}
.v5-why-quote-line--em { color: #D31A2A; margin-bottom: 0; }
@media (max-width: 900px) {
  .v5-why-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .v5-why-quote { position: static; }
  .v5-why-quote-line { font-size: 1.75rem; }
}

/* ============================================================
   THE STANDARD — mantra + F.A.S.T. mark + CTA
   ============================================================ */
.v5-statement#the-standard {
  background: #171614;
  color: #F7F6F2;
  padding: 5.5rem 0;
}
.v5-standard-wrap {
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}
#the-standard .v5-eyebrow { color: #D31A2A; margin-bottom: 2rem; }
.v5-standard-lines {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin: 0 0 2.75rem;
}
.v5-standard-line {
  font-family: 'Anton', Impact, sans-serif;
  font-size: 2.5rem;
  line-height: 1.05;
  letter-spacing: 0.01em;
  color: #F7F6F2;
  margin: 0;
  text-transform: uppercase;
}
.v5-standard-line--lede {
  font-size: 3.25rem;
  color: #F7F6F2;
  margin-bottom: 0.5rem;
}
.v5-standard-line .accent { color: #D31A2A; }
.v5-standard-mark {
  font-family: 'Anton', Impact, sans-serif;
  font-size: 3.5rem;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #F7F6F2;
  margin: 2rem 0 0.4rem;
  text-transform: uppercase;
}
.v5-standard-mark .accent { color: #D31A2A; }
.v5-standard-sub {
  font-size: 1rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #BAB9B4;
  margin: 0 0 2.75rem;
}
.v5-standard-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #D31A2A;
  color: #fff;
  padding: 1rem 1.75rem;
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: background 0.15s ease, transform 0.15s ease;
}
.v5-standard-cta:hover {
  background: #B01523;
  transform: translateY(-1px);
}
@media (max-width: 700px) {
  .v5-standard-line { font-size: 1.85rem; }
  .v5-standard-line--lede { font-size: 2.35rem; }
  .v5-standard-mark { font-size: 2.5rem; }
}

/* ============================================================
   TIER BAND — Red / White / Futures
   ============================================================ */
.v5-tier-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin: 2.5rem 0 1.75rem;
}
.v5-tier {
  border: 1px solid #D4D1CA;
  border-radius: 6px;
  padding: 2rem 1.75rem 2.25rem;
  display: flex;
  flex-direction: column;
  background: #fff;
}
.v5-tier--red { border-top: 6px solid #D31A2A; }
.v5-tier--white { border-top: 6px solid #28251D; }
.v5-tier--futures { border-top: 6px solid #BAB9B4; }
.v5-tier-mark {
  font-family: 'Anton', Impact, sans-serif;
  font-size: 2rem;
  letter-spacing: 0.06em;
  color: #28251D;
  margin: 0 0 0.9rem;
  text-transform: uppercase;
}
.v5-tier--red .v5-tier-mark { color: #D31A2A; }
.v5-tier-name {
  font-size: 1.15rem;
  font-weight: 600;
  color: #28251D;
  margin: 0 0 0.75rem;
  line-height: 1.3;
}
.v5-tier-body {
  font-size: 0.98rem;
  line-height: 1.6;
  color: #55534B;
  margin: 0 0 1.5rem;
  flex-grow: 1;
}
.v5-tier-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #D31A2A;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  align-self: flex-start;
  transition: gap 0.15s ease;
}
.v5-tier-cta:hover { gap: 0.7rem; }
.v5-tier-note {
  font-size: 0.85rem;
  color: #7A7974;
  line-height: 1.55;
  max-width: 780px;
  margin: 1.5rem 0 2rem;
}
@media (max-width: 900px) {
  .v5-tier-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   PHILOSOPHY TEASER — replaces Why We Exist + The Standard + F.A.S.T. pillars
   Single lean section between hero/proofbar and pathways
   ============================================================ */
.v5-teaser {
  background: #171614;
  color: #F7F6F2;
  padding: 6rem 0;
}
.v5-teaser-wrap {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}
.v5-teaser .v5-eyebrow {
  color: #D31A2A;
  margin-bottom: 2rem;
}
.v5-teaser-title {
  font-family: 'Anton', Impact, sans-serif;
  font-size: 4rem;
  line-height: 1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #F7F6F2;
  margin: 0 0 2rem;
}
.v5-teaser-title .accent { color: #D31A2A; }
.v5-teaser-mantra {
  font-size: 1.35rem;
  line-height: 1.4;
  font-weight: 600;
  color: #F7F6F2;
  max-width: 640px;
  margin: 0 auto 1.5rem;
}
.v5-teaser-body {
  font-size: 1.075rem;
  line-height: 1.6;
  color: #CDCCCA;
  max-width: 640px;
  margin: 0 auto 1.25rem;
}
.v5-teaser-body:last-of-type { margin-bottom: 3rem; }
.v5-teaser-body b { color: #ECECEC; font-weight: 600; }
.v5-teaser-body .accent { color: var(--v5-red, #D31A2A); font-weight: 600; }
.v5-teaser-fast {
  padding: 2.5rem 0;
  border-top: 1px solid #393836;
  border-bottom: 1px solid #393836;
  margin: 0 auto 3rem;
  max-width: 480px;
}
.v5-teaser-mark {
  font-family: 'Anton', Impact, sans-serif;
  font-size: 3rem;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #F7F6F2;
  margin: 0 0 0.5rem;
}
.v5-teaser-mark .accent { color: #D31A2A; }
.v5-teaser-sub {
  font-size: 0.9rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #BAB9B4;
  margin: 0;
}
.v5-teaser-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #D31A2A;
  color: #fff;
  padding: 1.1rem 1.9rem;
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: background 0.15s ease, transform 0.15s ease;
}
.v5-teaser-cta:hover {
  background: #B01523;
  transform: translateY(-1px);
}
@media (max-width: 700px) {
  .v5-teaser { padding: 4rem 0; }
  .v5-teaser-title { font-size: 2.75rem; }
  .v5-teaser-mantra { font-size: 1.125rem; }
  .v5-teaser-body { font-size: 1rem; }
  .v5-teaser-mark { font-size: 2.25rem; }
}

/* === LEGACY homepage hero: full-bleed background image + translucent white overlay ===
   Scoped to :not(.v5-hero--stars) so the new dark hero variant is untouched. */
.v5-hero:not(.v5-hero--stars) .v5-hero-photo{
  position:absolute !important;
  inset:0 !important;
  z-index:0 !important;
  -webkit-mask-image:none !important;
  mask-image:none !important;
}
.v5-hero:not(.v5-hero--stars) .v5-hero-photo img{
  width:100%; height:100%;
  object-fit:cover;
  object-position:center;
  opacity:1 !important;
  filter:none !important;
}
.v5-hero:not(.v5-hero--stars) .v5-hero-photo::after{
  content:"";
  position:absolute; inset:0;
  background:rgba(255,255,255,.82);
  backdrop-filter:blur(1px);
}
.v5-hero:not(.v5-hero--stars) .v5-hero-scrim{ display:none !important; }
.v5-hero-copy{ position:relative; z-index:1; }
@media (max-width:900px){
  .v5-hero:not(.v5-hero--stars){ display:block !important; }
  .v5-hero:not(.v5-hero--stars) .v5-hero-photo{ position:absolute !important; inset:0 !important; height:auto !important; min-height:0 !important; }
  .v5-hero:not(.v5-hero--stars) .v5-hero-photo::after{ background:rgba(255,255,255,.88); }
}

/* Stars hero: fully dark, no white overlay, our own scrim visible */
.v5-hero--stars .v5-hero-photo::after{ content: none !important; }
.v5-hero--stars .v5-hero-photo img{ opacity: 1 !important; filter: none !important; }
.v5-hero--stars .v5-hero-scrim{ display: block !important; }

/* === Brand logo (replaces old TC svg placeholder) === */
.v5-brand{ text-decoration:none }
.v5-brand-logo{ display:inline-flex; align-items:center; line-height:0 }
.v5-brand-logo img{
  display:block;
  height:44px;
  width:auto;
  max-width:200px;
  object-fit:contain;
}
/* Hide the old wordmark text next to the image (image already contains "Team Carolina") */
.v5-brand-logo + .v5-brand-word{ display:none }
/* Footer: white background of image would clash on dark footer — but our PNG is transparent,
   so it lays cleanly. Just size it up slightly. */
.v5-footer .v5-brand-logo img{ height:52px; max-width:240px }
/* Mobile: keep nav logo readable but not oversized */
@media (max-width:700px){
  .v5-brand-logo img{ height:36px; max-width:160px }
}

/* === Team-page hero crest badge === */
.v5-team-hero-crest{
  position:absolute;
  top:32px;
  right:32px;
  z-index:2;
  pointer-events:none;
}
.v5-team-hero-crest img{
  display:block;
  width:110px;
  height:110px;
  object-fit:contain;
  filter:drop-shadow(0 4px 12px rgba(0,0,0,.15));
}
@media(max-width:900px){
  .v5-team-hero-crest{ top:20px; right:20px }
  .v5-team-hero-crest img{ width:80px; height:80px }
}
@media(max-width:520px){
  /* Hide team-hero crest on phones — nav wordmark right above serves the branding */
  .v5-team-hero-crest{ display:none }
}

/* === About page hero crest watermark === */
.pagehead{ position:relative; overflow:hidden }
.about-crest-watermark{
  position:absolute;
  top:50%;
  right:-40px;
  transform:translateY(-50%);
  z-index:0;
  opacity:.14;
  pointer-events:none;
}
.about-crest-watermark img{
  display:block;
  width:320px;
  height:320px;
  object-fit:contain;
}
.pagehead .wrap{ position:relative; z-index:1 }
@media(max-width:900px){
  .about-crest-watermark{ right:-80px; opacity:.10 }
  .about-crest-watermark img{ width:240px; height:240px }
}
@media(max-width:600px){
  .about-crest-watermark{ display:none }
}

/* === Homepage hero crest badge (top-right of hero section) === */
.v5-hero{ position:relative }
.v5-hero-crest{
  position:absolute;
  top:32px;
  right:32px;
  z-index:3;
  pointer-events:none;
}
.v5-hero-crest img{
  display:block;
  width:120px;
  height:120px;
  object-fit:contain;
  filter:drop-shadow(0 6px 16px rgba(0,0,0,.2));
}
@media(max-width:900px){
  .v5-hero-crest{ top:20px; right:20px }
  .v5-hero-crest img{ width:80px; height:80px }
}
@media(max-width:520px){
  /* Hide hero crest on phones — wordmark in nav is right above, avoid overlap with eyebrow copy */
  .v5-hero-crest{ display:none }
}
