/* On My Feet — Stylesheet v3.0
   Aesthetic: Light-editorial · Human warmth · Confident but open
   Cormorant Garamond (display) + DM Sans (body) + DM Mono (data)
   ─────────────────────────────────────────────────────────────── */

:root {
  --orange:       #E8470A;
  --orange-dim:   #C03B08;
  --orange-light: #FEF0EB;
  --orange-glow:  rgba(232,71,10,0.15);
  --navy:         #1C3158;
  --navy-mid:     #2A4A7F;
  --navy-light:   #EBF0F8;
  --navy-dark:    #111E36;
  --ink:          #1A1A2E;
  --body:         #2C2C3A;
  --mid:          #5C5C70;
  --soft:         #9090A0;
  --rule:         #E8E8F0;
  --rule-soft:    #F0F0F6;
  --white:        #FFFFFF;
  --off-white:    #FAFAF8;
  --warm:         #F7F4EE;
  --cream:        #F3EFE8;
  --parchment:    #EDE8DF;
  --green:        #1A5C2F;
  --green-light:  #EBF5ED;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --font-mono:    'DM Mono', monospace;
  --r-sm:   8px;
  --r:     14px;
  --r-lg:  20px;
  --r-xl:  28px;
  --s-xs: 0 1px 3px rgba(0,0,0,0.05);
  --s-sm: 0 2px 8px rgba(0,0,0,0.07), 0 1px 3px rgba(0,0,0,0.04);
  --s:    0 6px 20px rgba(0,0,0,0.09), 0 2px 6px rgba(0,0,0,0.05);
  --s-lg: 0 16px 48px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.06);
  --s-xl: 0 32px 80px rgba(0,0,0,0.16);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--body);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button { font-family: var(--font-body); }

.skip-link {
  position: absolute; top: -100px; left: 16px;
  background: var(--orange); color: white;
  padding: 8px 18px; border-radius: 0 0 var(--r-sm) var(--r-sm);
  font-size: 14px; font-weight: 600; text-decoration: none;
  z-index: 9999; transition: top 0.2s;
}
.skip-link:focus { top: 0; }

nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 72px;
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid var(--rule);
  padding: 0 6%;
  display: flex; align-items: center; justify-content: space-between;
  backdrop-filter: blur(10px) saturate(160%);
  -webkit-backdrop-filter: blur(10px) saturate(160%);
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: var(--s-sm); }
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo img { height: 46px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; }
.nav-links a {
  display: block; padding: 8px 13px;
  font-size: 13.5px; font-weight: 500;
  color: var(--mid); text-decoration: none;
  border-radius: var(--r-sm);
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--navy); background: var(--navy-light); }
.nav-links a.active { color: var(--navy); font-weight: 600; }
.nav-cta {
  background: var(--orange) !important;
  color: white !important;
  padding: 9px 20px !important;
  border-radius: 100px !important;
  font-weight: 600 !important;
  font-size: 13px !important;
  margin-left: 6px;
  transition: background 0.2s, box-shadow 0.2s !important;
}
.nav-cta:hover {
  background: var(--orange-dim) !important;
  box-shadow: 0 4px 16px var(--orange-glow) !important;
}

section { padding: 88px 8%; }

.section-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--orange); margin-bottom: 14px;
}
.section-label::before {
  content: ''; width: 20px; height: 2px;
  background: var(--orange); flex-shrink: 0; border-radius: 1px;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(30px, 3.4vw, 50px);
  line-height: 1.08; letter-spacing: -0.3px;
  color: var(--navy); margin-bottom: 20px;
}
.section-title em { font-style: italic; color: var(--orange); }

.section-body {
  font-size: 17px; color: var(--body);
  line-height: 1.78; max-width: 580px;
}

hr.section-rule { border: none; border-top: 1px solid var(--rule); margin: 0 8%; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--orange); color: white;
  padding: 13px 26px; border-radius: 100px;
  font-size: 15px; font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
}
.btn-primary:hover {
  background: var(--orange-dim);
  box-shadow: 0 6px 20px var(--orange-glow);
  transform: translateY(-1px);
}
.btn-navy {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--navy); color: white;
  padding: 13px 26px; border-radius: 100px;
  font-size: 15px; font-weight: 600; text-decoration: none;
  transition: background 0.2s;
}
.btn-navy:hover { background: var(--navy-mid); }
.btn-ghost-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.12); color: white;
  padding: 12px 24px; border-radius: 100px;
  font-size: 15px; font-weight: 500; text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.3);
  transition: background 0.2s, border-color 0.2s;
}
.btn-ghost-white:hover { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.6); }
.btn-ghost-dark {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--navy);
  padding: 12px 24px; border-radius: 100px;
  font-size: 15px; font-weight: 500; text-decoration: none;
  border: 1.5px solid var(--navy);
  transition: background 0.2s, color 0.2s;
}
.btn-ghost-dark:hover { background: var(--navy); color: white; }

.hero {
  min-height: calc(100vh - 72px);
  display: grid; grid-template-columns: 1fr 1fr;
  overflow: hidden;
}
.hero-left {
  background: var(--navy-dark);
  padding: 80px 6% 72px 8%;
  display: flex; flex-direction: column;
  position: relative; overflow: hidden; isolation: isolate;
}
.hero-left::after {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 1px; height: 100%;
  background: rgba(255,255,255,0.08); z-index: 3;
}
.hero-right {
  background: var(--navy);
  padding: 80px 6% 72px 6%;
  display: flex; flex-direction: column;
  position: relative; overflow: hidden; isolation: isolate;
}

.hero-audience-tag {
  display: inline-flex; align-items: center; gap: 7px;
  border-radius: 100px; padding: 5px 13px;
  font-size: 11px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 14px; width: fit-content;
  position: relative; z-index: 2;
}
.hero-audience-tag::before {
  content: ''; width: 5px; height: 5px;
  border-radius: 50%; flex-shrink: 0;
}
.hero-audience-tag.adult {
  background: rgba(232,71,10,0.16);
  border: 1px solid rgba(232,71,10,0.38); color: #FF8055;
}
.hero-audience-tag.adult::before { background: #FF8055; }
.hero-audience-tag.youth {
  background: rgba(110,160,240,0.14);
  border: 1px solid rgba(110,160,240,0.32); color: #7AAFF0;
}
.hero-audience-tag.youth::before { background: #7AAFF0; }

.hero-for {
  font-size: 12px; color: rgba(255,255,255,0.32);
  margin-bottom: 18px; position: relative; z-index: 2;
}
.hero-panel-h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(28px, 3vw, 46px);
  line-height: 1.06; letter-spacing: -0.8px;
  color: white; margin-bottom: 18px;
  position: relative; z-index: 2;
}
.hero-panel-h1 em { font-style: italic; }
.hero-left .hero-panel-h1 em { color: var(--orange); }
.hero-right .hero-panel-h1 em { color: #7AAFF0; }
.hero-panel-sub {
  font-size: 16px; line-height: 1.72;
  margin-bottom: 30px; max-width: 380px;
  color: rgba(255,255,255,0.58); position: relative; z-index: 2;
}
.hero-cta-row {
  display: flex; align-items: center; gap: 14px;
  flex-wrap: wrap; margin-bottom: 40px;
  position: relative; z-index: 2;
}
.hero-panel-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 22px; border-radius: 100px;
  font-size: 13px; font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
}
.hero-panel-cta.adult { background: var(--orange); color: white; }
.hero-panel-cta.adult:hover {
  background: var(--orange-dim); transform: translateY(-1px);
  box-shadow: 0 6px 20px var(--orange-glow);
}
.hero-panel-cta.youth { background: rgba(255,255,255,0.12); color: white; border: 1px solid rgba(255,255,255,0.25); }
.hero-panel-cta.youth:hover { background: rgba(255,255,255,0.2); }
.hero-panel-secondary {
  font-size: 12px; font-weight: 500;
  color: rgba(255,255,255,0.35); text-decoration: none;
  transition: color 0.2s; position: relative; z-index: 2;
}
.hero-panel-secondary:hover { color: rgba(255,255,255,0.7); }

.hero-stats {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: rgba(255,255,255,0.08);
  border-radius: var(--r); overflow: hidden;
  margin-bottom: 28px; position: relative; z-index: 2;
}
.hero-stat { padding: 14px 12px; background: rgba(255,255,255,0.03); }
.hero-stat-value {
  font-family: var(--font-mono);
  font-size: 20px; color: white; line-height: 1; margin-bottom: 4px;
}
.hero-stat-value span { color: var(--orange); }
.hero-stat-label { font-size: 10px; color: rgba(255,255,255,0.3); line-height: 1.4; }

.hero-quote-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--r); padding: 18px 20px;
  position: relative; z-index: 2;
}
.hero-quote-text {
  font-family: var(--font-display);
  font-size: 14px; line-height: 1.62;
  font-style: italic; margin-bottom: 14px;
  color: rgba(255,255,255,0.62);
}
.hero-quote-author { display: flex; align-items: center; gap: 10px; }
.hero-quote-dot {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(255,255,255,0.1); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 600; font-size: 11px;
}
.hero-quote-name { font-size: 12px; font-weight: 600; color: white; }
.hero-quote-role { font-size: 11px; color: rgba(255,255,255,0.32); line-height: 1.4; }

.rise-pillars {
  display: grid; grid-template-columns: repeat(2,1fr);
  gap: 8px; margin-bottom: 28px; position: relative; z-index: 2;
}
.rise-pillar {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-sm); padding: 12px 14px;
}
.rise-pillar-letter {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 700;
  color: #7AAFF0; line-height: 1; margin-bottom: 2px;
}
.rise-pillar-word { font-size: 12px; font-weight: 600; color: white; margin-bottom: 2px; }
.rise-pillar-desc { font-size: 11px; color: rgba(255,255,255,0.35); line-height: 1.4; }

.stats-strip {
  background: var(--warm);
  padding: 0 8%;
  display: grid; grid-template-columns: repeat(4,1fr);
  border-top: 1px solid var(--parchment);
  border-bottom: 1px solid var(--parchment);
}
.stats-strip-item {
  padding: 28px 16px; text-align: center;
  border-right: 1px solid var(--parchment);
}
.stats-strip-item:last-child { border-right: none; }
.stats-strip-value {
  font-family: var(--font-mono);
  font-size: 30px; color: var(--navy); line-height: 1; margin-bottom: 6px;
}
.stats-strip-value span { color: var(--orange); }
.stats-strip-label { font-size: 13px; color: var(--mid); line-height: 1.45; }

.video-embed-section { background: var(--warm); padding: 0 10% 48px; border-top: 1px solid var(--parchment); border-bottom: 1px solid var(--parchment); }
.video-embed-wrapper {
  position: relative; width: 100%; padding-bottom: 46%;
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--s-xl);
}
.video-embed-caption {
  text-align: center; margin-top: 14px;
  font-size: 13px; color: var(--soft); letter-spacing: 0.3px; font-style: italic;
}

.intro-bar {
  background: var(--warm); border-bottom: 1px solid var(--parchment); padding: 0 8%;
  padding-top: 72px; min-height: 200px;
  display: flex; align-items: center; justify-content: space-between; gap: 48px;
}
.intro-bar-left { max-width: 640px; padding: 48px 0; }
.intro-bar-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  color: var(--orange); margin-bottom: 12px;
}
.intro-bar-eyebrow::before { content: ''; width: 16px; height: 1.5px; background: var(--orange); }
.intro-bar-heading {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.6vw, 34px);
  font-weight: 600; color: var(--navy);
  line-height: 1.2; letter-spacing: -0.3px; margin-bottom: 12px;
}
.intro-bar-body { font-size: 17px; color: var(--mid); line-height: 1.72; }
.intro-bar-right {
  display: flex; flex-direction: column;
  align-items: flex-end; gap: 12px; flex-shrink: 0; padding: 48px 0;
}
.intro-bar-stat { text-align: right; }
.intro-bar-stat-value {
  font-family: var(--font-mono); font-size: 28px; color: var(--navy); line-height: 1;
}
.intro-bar-stat-value span { color: var(--orange); }
.intro-bar-stat-label { font-size: 11px; color: var(--mid); line-height: 1.4; }
.intro-bar-divider { width: 1px; height: 36px; background: var(--parchment); align-self: center; }

.page-hero {
  background: var(--warm);
  padding: 136px 8% 80px;
  position: relative; overflow: hidden;
  border-bottom: 1px solid var(--parchment);
}
.page-hero::before {
  content: '';
  position: absolute; top: 0; right: 0; bottom: 0;
  width: 40%;
  background: linear-gradient(to left, var(--cream), transparent);
  pointer-events: none;
}
.page-hero-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--orange); margin-bottom: 16px; position: relative;
}
.page-hero-label::before {
  content: ''; width: 20px; height: 2px;
  background: var(--orange); flex-shrink: 0; border-radius: 1px;
}
.page-hero-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(36px, 5vw, 68px);
  line-height: 1.04; letter-spacing: -1px;
  color: var(--navy); margin-bottom: 24px;
  position: relative; max-width: 740px;
}
.page-hero-title em { font-style: italic; color: var(--orange); }
.page-hero-sub {
  font-size: 18px; color: var(--mid);
  line-height: 1.72; max-width: 520px;
  position: relative;
}

.what-grid { display: grid; grid-template-columns: 1fr 1fr; column-gap: 56px; row-gap: 48px; margin-top: 64px; align-items: start; }
.what-cell { min-width: 0; }
.program-card {
  border: 1px solid var(--rule); border-radius: var(--r-lg); overflow: hidden;
  margin-bottom: 20px; background: var(--white);
  box-shadow: var(--s-xs);
  transition: box-shadow 0.25s, transform 0.2s;
}
.program-card:hover { box-shadow: var(--s-lg); transform: translateY(-3px); }
.program-card-head {
  padding: 22px 26px; display: flex; align-items: center; gap: 16px;
  border-bottom: 1px solid var(--rule-soft);
}
.program-card-icon {
  width: 46px; height: 46px; border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 21px;
}
.program-card-icon.adult { background: var(--orange-light); }
.program-card-icon.youth { background: var(--green-light); }
.program-card-title { font-weight: 600; font-size: 16px; color: var(--navy); margin-bottom: 2px; }
.program-card-sub { font-size: 13px; color: var(--soft); }
.program-card-body { padding: 4px 26px 22px; }
.program-card-body p { font-size: 15.5px; color: var(--mid); line-height: 1.72; margin-top: 16px; margin-bottom: 16px; }
.program-pill-row { display: flex; flex-wrap: wrap; gap: 7px; }
.program-pill {
  font-size: 12px; font-weight: 500;
  padding: 4px 12px; border-radius: 100px;
  background: var(--off-white); color: var(--mid); border: 1px solid var(--rule);
}

.model-steps { display: flex; flex-direction: column; }
.model-step { display: flex; gap: 20px; margin-bottom: 30px; position: relative; }
.model-step::before {
  content: '';
  position: absolute; left: 19px; top: 44px; bottom: -8px;
  width: 1px; background: var(--rule);
}
.model-step:last-child::before { display: none; }
.model-step-num {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 13px;
  flex-shrink: 0; position: relative; z-index: 1;
}
.model-step-num.orange { background: var(--orange); color: white; }
.model-step-num.navy   { background: var(--orange); color: white; }
.model-step-num.green  { background: var(--orange); color: white; }
.model-step-content { padding-top: 8px; }
.model-step-title { font-weight: 600; font-size: 15px; margin-bottom: 4px; color: var(--navy); }
.model-step-desc { font-size: 15px; color: var(--mid); line-height: 1.65; }

.outcomes-section { background: var(--navy); padding: 88px 8%; }
.outcomes-section .section-title { color: white; }
.outcomes-section .section-body { color: rgba(255,255,255,0.6); }
.outcomes-grid {
  display: grid; grid-template-columns: repeat(5,1fr);
  gap: 1px; margin-top: 56px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--r); overflow: hidden;
}
.outcome-card { background: rgba(255,255,255,0.04); padding: 30px 18px; text-align: center; transition: background 0.2s; }
.outcome-card:hover { background: rgba(255,255,255,0.08); }
.outcome-value { font-family: var(--font-mono); font-size: 36px; color: white; line-height: 1; margin-bottom: 8px; }
.outcome-metric { font-size: 12px; color: rgba(255,255,255,0.45); line-height: 1.45; margin-bottom: 4px; }
.outcome-source { font-size: 10px; color: rgba(255,255,255,0.22); }
.outcomes-programs { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 20px; }
.outcomes-program-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--r); padding: 28px;
}
.outcomes-program-title { font-weight: 600; font-size: 15px; color: white; margin-bottom: 20px; padding-bottom: 14px; border-bottom: 1px solid rgba(255,255,255,0.09); }
.outcomes-row { display: flex; justify-content: space-between; align-items: baseline; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.outcomes-row:last-child { border-bottom: none; }
.outcomes-row-label { font-size: 14px; color: rgba(255,255,255,0.5); }
.outcomes-row-value { font-family: var(--font-mono); font-size: 15px; color: white; }

.partner-section { background: var(--warm); padding: 88px 8%; }
.partner-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 64px; }
.partner-col {
  background: var(--white); border-radius: var(--r-lg);
  border: 1px solid var(--rule); overflow: hidden;
  box-shadow: var(--s-xs);
  transition: box-shadow 0.25s, transform 0.2s;
}
.partner-col:hover { box-shadow: var(--s-lg); transform: translateY(-3px); }
.partner-col-head { padding: 26px 30px 22px; border-bottom: 1px solid var(--rule-soft); }
.partner-col-head-tag { font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 10px; }
.partner-col-head-tag.orange { color: var(--orange); }
.partner-col-head-tag.green  { color: var(--green); }
.partner-col-head h3 { font-family: var(--font-display); font-size: 23px; font-weight: 600; color: var(--navy); line-height: 1.18; margin-bottom: 10px; }
.partner-col-head p { font-size: 15.5px; color: var(--mid); line-height: 1.68; }
.partner-col-body { padding: 22px 30px; }
.partner-item { display: flex; gap: 14px; padding: 13px 0; border-bottom: 1px solid var(--rule-soft); align-items: flex-start; }
.partner-item:last-child { border-bottom: none; }
.partner-item-icon { width: 32px; height: 32px; border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 15px; margin-top: 2px; }
.partner-item-icon.orange { background: var(--orange-light); }
.partner-item-icon.green  { background: var(--green-light); }
.partner-item-title { font-size: 15px; font-weight: 600; margin-bottom: 3px; color: var(--navy); }
.partner-item-desc { font-size: 14.5px; color: var(--mid); line-height: 1.6; }
.partner-cta { margin: 0 30px 26px; display: block; text-align: center; padding: 13px; border-radius: 100px; font-size: 14px; font-weight: 600; text-decoration: none; transition: opacity 0.2s, transform 0.15s; }
.partner-cta:hover { opacity: 0.88; transform: translateY(-1px); }
.partner-cta.orange { background: var(--orange); color: white; }
.partner-cta.green  { background: var(--green); color: white; }

.stories-full-section { padding: 88px 8%; background: var(--white); }
.story-full-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 60px; }
.story-full-card {
  background: var(--white); border: 1px solid var(--rule);
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--s-xs); transition: box-shadow 0.25s;
}
.story-full-card:hover { box-shadow: var(--s-lg); }
.story-full-head { background: var(--warm); padding: 26px 30px; border-bottom: 1px solid var(--parchment); }
.story-full-tag { font-size: 10px; font-weight: 600; letter-spacing: 1.8px; text-transform: uppercase; color: var(--orange); margin-bottom: 8px; }
.story-full-name { font-family: var(--font-display); font-size: 28px; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.story-full-byline { font-size: 13px; color: var(--mid); line-height: 1.4; }
.story-full-body { padding: 26px 30px; }
.story-full-intro { font-size: 15.5px; line-height: 1.76; color: var(--mid); margin-bottom: 20px; }
.story-pull-quote {
  background: var(--warm); border-left: 3px solid var(--orange);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  padding: 14px 18px;
  font-family: var(--font-display); font-style: italic;
  font-size: 15.5px; line-height: 1.62; color: var(--navy); margin: 20px 0;
}
.story-achievements { margin-top: 20px; display: flex; flex-direction: column; gap: 8px; }
.story-achievement { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: var(--mid); line-height: 1.52; }
.story-achievement::before { content: '→'; color: var(--orange); font-weight: 700; flex-shrink: 0; font-size: 13px; margin-top: 1px; }
.story-final-quote {
  margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--rule);
  font-family: var(--font-display); font-style: italic;
  font-size: 15.5px; line-height: 1.7; color: var(--navy);
}

.stories-video-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 48px; }
.story-video-card {
  border-radius: var(--r); overflow: hidden; text-decoration: none;
  border: 1px solid var(--rule); display: block; background: var(--white);
  box-shadow: var(--s-xs); transition: box-shadow 0.2s, transform 0.15s;
}
.story-video-card:hover { box-shadow: var(--s-lg); transform: translateY(-3px); }
.story-video-thumb { aspect-ratio: 16/9; background: var(--navy); display: flex; align-items: center; justify-content: center; position: relative; }
.story-video-play {
  width: 54px; height: 54px; border-radius: 50%; background: var(--orange);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px var(--orange-glow); transition: transform 0.2s, box-shadow 0.2s;
}
.story-video-card:hover .story-video-play { transform: scale(1.1); box-shadow: 0 8px 24px var(--orange-glow); }
.story-video-play svg { width: 20px; height: 20px; fill: white; margin-left: 3px; }
.story-video-badge { position: absolute; top: 10px; left: 10px; background: rgba(0,0,0,0.55); color: white; font-size: 10px; font-weight: 600; padding: 4px 10px; border-radius: 100px; letter-spacing: 0.5px; text-transform: uppercase; }
.story-video-info { padding: 16px 18px; }
.story-video-name { font-weight: 600; font-size: 15px; color: var(--navy); margin-bottom: 4px; }
.story-video-desc { font-size: 13.5px; color: var(--soft); line-height: 1.55; }

.voices-mosaic { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; margin-top: 48px; }
.voice-card {
  background: var(--white); border: 1px solid var(--rule);
  border-left: 3px solid var(--orange);
  border-radius: var(--r); padding: 20px 22px;
  position: relative; overflow: hidden; transition: box-shadow 0.2s;
}
.voice-card:hover { box-shadow: var(--s); }
.voice-card::before {
  content: '\201C'; position: absolute; top: -12px; right: 12px;
  font-family: var(--font-display); font-size: 96px;
  color: var(--navy); opacity: 0.05; line-height: 1; pointer-events: none;
}
.voice-card.featured { grid-column: span 2; }

.voice-quote { font-family: var(--font-display); font-size: 14.5px; line-height: 1.68; color: var(--mid); font-style: italic; margin-bottom: 16px; position: relative; z-index: 1; }
.voice-card.featured .voice-quote { color: var(--mid); font-size: 15.5px; }
.voice-name { font-size: 12px; font-weight: 600; color: var(--navy); }
.voice-card.featured .voice-name { color: var(--navy); }
.voice-source { font-size: 11px; color: var(--soft); margin-top: 2px; }
.voice-card.featured .voice-source { color: var(--soft); }
.huber-participant-quote { margin-top: 24px; background: var(--orange-light); border-left: 3px solid var(--orange); border-radius: 0 var(--r) var(--r) 0; padding: 20px 24px; }
.huber-participant-quote p { font-family: var(--font-display); font-style: italic; font-size: 15.5px; line-height: 1.76; color: var(--body); margin-bottom: 10px; }
.huber-participant-quote cite { font-size: 11px; color: var(--soft); font-style: normal; }

.heritage-section { background: var(--warm); padding: 88px 8%; }
.heritage-section .section-title { color: var(--navy); }
.heritage-section .section-body { color: var(--mid); }
.heritage-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; margin-top: 64px; align-items: start; }
.timeline-item { display: flex; gap: 20px; margin-bottom: 34px; position: relative; }
.timeline-item::before { content: ''; position: absolute; left: 19px; top: 44px; bottom: -14px; width: 1px; background: var(--parchment); }
.timeline-item:last-child::before { display: none; }
.timeline-dot {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--navy-light);
  border: 1.5px solid var(--navy);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; position: relative; z-index: 1;
}
.timeline-dot.landmark { background: var(--orange); border-color: var(--orange); }
.timeline-year { font-family: var(--font-mono); font-size: 11px; color: var(--navy); }
.timeline-dot.landmark .timeline-year { color: white; }
.timeline-content { padding-top: 6px; }
.timeline-title { font-weight: 600; font-size: 15.5px; color: var(--navy); margin-bottom: 5px; }
.timeline-desc { font-size: 14px; color: var(--mid); line-height: 1.6; }
.founder-card { background: var(--white); border: 1px solid var(--rule); border-radius: var(--r-lg); padding: 30px; margin-bottom: 22px; box-shadow: var(--s-xs); }
.founder-head { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--rule); }
.founder-avatar { width: 52px; height: 52px; border-radius: 50%; background: var(--navy); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 20px; font-weight: 600; color: white; }
.founder-name { font-weight: 600; font-size: 17px; color: var(--navy); margin-bottom: 3px; }
.founder-role { font-size: 13px; color: var(--soft); }
.founder-quote { font-family: var(--font-display); font-style: italic; font-size: 17px; line-height: 1.68; color: var(--navy); margin-bottom: 24px; }
.founder-creds { display: flex; flex-direction: column; gap: 8px; }
.founder-cred { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--mid); line-height: 1.5; }
.founder-cred::before { content: ''; width: 3px; height: 3px; border-radius: 50%; background: var(--orange); flex-shrink: 0; margin-top: 7px; }
.endorsers-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.endorser-card { background: var(--white); border: 1px solid var(--rule); border-radius: var(--r); padding: 16px; transition: box-shadow 0.2s; box-shadow: var(--s-xs); }
.endorser-card:hover { box-shadow: var(--s); }
.endorser-name { font-size: 13.5px; font-weight: 600; color: var(--navy); margin-bottom: 2px; }
.endorser-role { font-size: 11.5px; color: var(--soft); line-height: 1.45; }
.award-badge { display: inline-flex; align-items: center; gap: 14px; background: var(--orange-light); border: 1.5px solid var(--orange); border-radius: var(--r); padding: 16px 22px; margin-top: 32px; }
.award-badge-icon { width: 40px; height: 40px; border-radius: 50%; background: var(--orange); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.award-badge-title { font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.award-badge-sub { font-size: 11px; color: var(--mid); }

.impact-section { padding: 88px 8%; background: var(--white); }
.impact-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; margin-top: 64px; align-items: start; }
.huber-card { background: var(--navy); border-radius: var(--r-lg); padding: 34px; color: white; }
.huber-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.09); border: 1px solid rgba(255,255,255,0.15); border-radius: 100px; padding: 5px 14px; font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.6); letter-spacing: 0.8px; text-transform: uppercase; margin-bottom: 20px; }
.huber-title { font-family: var(--font-display); font-size: 24px; font-weight: 600; color: white; margin-bottom: 16px; line-height: 1.28; }
.huber-body { font-size: 15px; color: rgba(255,255,255,0.68); line-height: 1.75; margin-bottom: 20px; }
.huber-findings { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.huber-finding { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; color: rgba(255,255,255,0.72); line-height: 1.6; }
.huber-finding::before { content: '✓'; color: var(--orange); font-size: 13px; flex-shrink: 0; margin-top: 1px; }
.huber-quote { background: rgba(255,255,255,0.06); border-left: 2px solid rgba(255,255,255,0.18); border-radius: 0 var(--r-sm) var(--r-sm) 0; padding: 14px 16px; font-family: var(--font-display); font-style: italic; font-size: 13.5px; color: rgba(255,255,255,0.52); line-height: 1.65; }
.huber-meta { margin-top: 16px; font-size: 11px; color: rgba(255,255,255,0.28); line-height: 1.6; }
.huber-download-card { background: var(--navy); border-radius: var(--r-lg); padding: 28px; margin-bottom: 16px; }
.huber-download-title { font-family: var(--font-display); font-size: 18px; font-weight: 600; color: white; margin-bottom: 8px; }
.huber-download-desc { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.65; margin-bottom: 20px; }
.huber-download-btn { display: inline-flex; align-items: center; gap: 8px; background: var(--orange); color: white; padding: 11px 22px; border-radius: 100px; font-size: 13px; font-weight: 600; text-decoration: none; cursor: pointer; transition: background 0.2s, transform 0.2s, box-shadow 0.2s; box-shadow: var(--s-sm); }
.huber-download-btn:hover { background: #cf3f08; transform: translateY(-1px); box-shadow: var(--s-lg); }
.huber-download-meta { font-size: 11px; color: rgba(255,255,255,0.4); margin-top: 10px; }
.chart-panel { background: var(--warm); border: 1px solid var(--parchment); border-radius: var(--r-lg); padding: 32px; }
.chart-panel-title { font-weight: 600; font-size: 15.5px; color: var(--navy); margin-bottom: 6px; }
.chart-panel-sub { font-size: 13px; color: var(--soft); margin-bottom: 28px; line-height: 1.5; }
.bar-chart { display: flex; flex-direction: column; gap: 16px; }
.bar-label-row { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 6px; }
.bar-label { font-size: 14px; font-weight: 500; color: var(--navy); }
.bar-values { font-family: var(--font-mono); font-size: 12px; color: var(--soft); }
.bar-track { height: 9px; background: var(--parchment); border-radius: 100px; overflow: hidden; position: relative; }
.bar-before { position: absolute; top: 0; left: 0; height: 100%; border-radius: 100px; background: rgba(0,0,0,0.1); }
.bar-after  { position: absolute; top: 0; left: 0; height: 100%; border-radius: 100px; background: var(--orange); }
.bar-change { font-family: var(--font-mono); font-size: 11px; color: var(--orange); margin-top: 4px; text-align: right; font-weight: 500; }
.chart-legend { display: flex; gap: 20px; margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--parchment); }
.legend-item { display: flex; align-items: center; gap: 6px; font-size: 11px; color: var(--soft); }
.legend-dot { width: 10px; height: 10px; border-radius: 2px; }
.impact-stats-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-top: 48px; }
.impact-stat-card { background: var(--warm); border: 1px solid var(--parchment); border-radius: var(--r); padding: 24px 20px; text-align: center; transition: box-shadow 0.2s; }
.impact-stat-card:hover { box-shadow: var(--s); }
.impact-stat-value { font-family: var(--font-mono); font-size: 34px; color: var(--navy); line-height: 1; margin-bottom: 8px; }
.impact-stat-value span { color: var(--orange); }
.impact-stat-label { font-size: 13px; color: var(--mid); line-height: 1.4; }
.impact-stat-source { font-size: 10px; color: var(--soft); margin-top: 4px; }
.wellbeing-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; margin-top: 48px; }
.wellbeing-card { border: 1px solid var(--rule); border-radius: var(--r); padding: 20px; background: var(--white); transition: box-shadow 0.2s; }
.wellbeing-card:hover { box-shadow: var(--s); }
.wellbeing-score { font-family: var(--font-mono); font-size: 22px; font-weight: 500; color: var(--navy); line-height: 1; margin-bottom: 8px; }
.wellbeing-name { font-size: 14px; font-weight: 600; margin-bottom: 6px; color: var(--navy); }
.wellbeing-desc { font-size: 13px; color: var(--mid); line-height: 1.5; }
.wellbeing-score-denom { font-size: 22px; font-weight: 400; color: var(--soft); }
.wellbeing-bar { height: 3px; background: var(--rule); border-radius: 100px; margin-top: 10px; overflow: hidden; }
.wellbeing-bar-fill { height: 100%; border-radius: 100px; background: var(--navy); }

.marathon-section { padding: 88px 8%; background: var(--cream); }
.marathon-section .section-title { color: var(--navy); }
.marathon-section .section-body { color: var(--mid); }
.marathon-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 48px; }
.marathon-card {
  background: var(--white); border: 1px solid var(--parchment);
  border-radius: var(--r); padding: 24px;
  box-shadow: var(--s-xs); transition: box-shadow 0.2s, transform 0.15s;
}
.marathon-card:hover { box-shadow: var(--s); transform: translateY(-2px); }
.marathon-event { font-weight: 600; font-size: 16px; color: var(--navy); margin-bottom: 6px; }
.marathon-date { font-size: 13px; color: var(--soft); margin-bottom: 14px; }
.marathon-participants { font-family: var(--font-mono); font-size: 32px; font-weight: 500; color: var(--navy); line-height: 1; margin-bottom: 6px; }
.marathon-participants-label { font-size: 13px; color: var(--soft); margin-bottom: 14px; }
.marathon-note { font-size: 15px; color: var(--mid); line-height: 1.6; }
.marathon-total {
  margin-top: 40px; background: var(--orange); border-radius: var(--r);
  padding: 28px 32px; display: flex; align-items: center; gap: 32px;
}
.marathon-total-value { font-family: var(--font-mono); font-size: 52px; color: white; line-height: 1; flex-shrink: 0; }
.marathon-total-text { font-size: 17px; color: rgba(255,255,255,0.88); line-height: 1.68; }

.enterprise-section { padding: 88px 8%; background: var(--white); }
.enterprise-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-top: 56px; align-items: start; }
.enterprise-card { border: 1px solid var(--rule); border-radius: var(--r-lg); overflow: hidden; background: var(--white); }
.enterprise-card-head { padding: 22px 26px; border-bottom: 1px solid var(--rule-soft); }
.enterprise-card-head-tag { font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--orange); margin-bottom: 8px; }
.enterprise-card-head h3 { font-family: var(--font-display); font-size: 22px; font-weight: 600; color: var(--navy); line-height: 1.22; }
.enterprise-card-body { padding: 22px 26px; }
.enterprise-card-body p { font-size: 15.5px; color: var(--mid); line-height: 1.72; margin-bottom: 16px; }
.enterprise-link { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--navy); text-decoration: none; transition: gap 0.2s; }
.enterprise-link:hover { gap: 10px; }
.socks-callout { background: var(--navy); border-radius: var(--r-lg); padding: 30px; display: flex; align-items: center; gap: 26px; margin-top: 32px; }
.socks-callout-icon { width: 58px; height: 58px; background: var(--orange); border-radius: var(--r); display: flex; align-items: center; justify-content: center; font-size: 26px; flex-shrink: 0; }
.socks-callout-content { flex-grow: 1; }
.socks-callout-title { font-family: var(--font-display); font-size: 20px; font-weight: 600; color: white; margin-bottom: 8px; line-height: 1.2; }
.socks-callout-body { font-size: 15px; color: rgba(255,255,255,0.58); line-height: 1.65; }
.socks-callout-cta { display: inline-flex; align-items: center; gap: 8px; background: var(--orange); color: white; padding: 11px 20px; border-radius: 100px; font-size: 13px; font-weight: 600; text-decoration: none; flex-shrink: 0; white-space: nowrap; transition: background 0.2s; }
.socks-callout-cta:hover { background: var(--orange-dim); }

.newsletter-section { padding: 88px 8%; background: var(--warm); }
.newsletter-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 48px; }
.newsletter-card { background: var(--white); border: 1px solid var(--rule); border-radius: var(--r); padding: 24px; text-decoration: none; transition: box-shadow 0.2s, transform 0.15s; display: block; box-shadow: var(--s-xs); }
.newsletter-card:hover { box-shadow: var(--s-lg); transform: translateY(-2px); }
.newsletter-date { font-family: var(--font-mono); font-size: 11px; color: var(--soft); margin-bottom: 8px; }
.newsletter-title { font-weight: 600; font-size: 15.5px; color: var(--navy); margin-bottom: 8px; line-height: 1.35; }
.newsletter-preview { font-size: 14px; color: var(--mid); line-height: 1.62; }
.newsletter-read { margin-top: 14px; font-size: 12px; font-weight: 600; color: var(--orange); }

.media-logos-bar { background: var(--white); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); padding: 32px 8%; }
.media-logos-label { text-align: center; font-size: 10px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--soft); margin-bottom: 24px; }
.media-logos-viewport { overflow: hidden; width: 100%; -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%); mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%); }
.media-logos-track { display: flex; flex-wrap: nowrap; align-items: center; width: max-content; animation: media-marquee 60s linear infinite; }
.media-logos-track:hover { animation-play-state: paused; }
.media-logo-pill { flex: 0 0 auto; display: inline-flex; align-items: center; justify-content: center; width: 116px; height: 44px; margin-right: 44px; text-decoration: none; }
.media-logo-pill img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; filter: grayscale(100%); opacity: 0.55; transition: filter 0.2s, opacity 0.2s; }
.media-logo-pill:hover img { filter: grayscale(0%); opacity: 1; }
@keyframes media-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .media-logos-track { animation: none; flex-wrap: wrap; justify-content: center; width: auto; gap: 20px 0; }
  .media-logos-viewport { -webkit-mask-image: none; mask-image: none; }
}
.media-full-section { padding: 88px 8%; background: var(--white); }
.media-tabs { display: flex; gap: 4px; background: var(--off-white); border: 1px solid var(--rule); border-radius: var(--r); padding: 4px; width: fit-content; margin-top: 40px; margin-bottom: 40px; }
.media-tab { padding: 9px 22px; border-radius: var(--r-sm); font-size: 13px; font-weight: 600; color: var(--mid); cursor: pointer; transition: all 0.2s; border: none; background: transparent; }
.media-tab.active { background: var(--white); color: var(--navy); box-shadow: var(--s-xs); }
.media-video-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.media-video-card { border: 1px solid var(--rule); border-radius: var(--r); overflow: hidden; text-decoration: none; transition: box-shadow 0.2s, transform 0.15s; display: block; background: var(--white); box-shadow: var(--s-xs); }
.media-video-card:hover { box-shadow: var(--s-lg); transform: translateY(-2px); }
.media-video-thumb { aspect-ratio: 16/9; background: var(--navy); display: flex; align-items: center; justify-content: center; position: relative; }
.media-video-outlet { position: absolute; top: 10px; left: 10px; background: rgba(0,0,0,0.55); color: white; font-size: 10px; font-weight: 600; padding: 4px 10px; border-radius: 100px; text-transform: uppercase; letter-spacing: 0.5px; }
.media-play-btn { width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,0.12); border: 1.5px solid rgba(255,255,255,0.3); display: flex; align-items: center; justify-content: center; }
.media-play-btn svg { width: 18px; height: 18px; fill: white; margin-left: 3px; }
.media-video-info { padding: 16px; }
.media-video-title { font-size: 14px; font-weight: 600; color: var(--navy); line-height: 1.4; margin-bottom: 4px; }
.media-video-desc { font-size: 13px; color: var(--soft); }
.media-articles-list { display: flex; flex-direction: column; gap: 10px; display: none; }
.media-article-row { display: flex; align-items: center; gap: 16px; padding: 14px 18px; border: 1px solid var(--rule); border-radius: var(--r); text-decoration: none; background: var(--white); transition: background 0.15s, box-shadow 0.15s; }
.media-article-row:hover { background: var(--warm); box-shadow: var(--s-xs); }
.media-article-outlet { font-size: 11px; font-weight: 700; color: white; background: var(--navy); padding: 4px 10px; border-radius: 100px; flex-shrink: 0; letter-spacing: 0.3px; min-width: 72px; text-align: center; }
.media-article-title { font-size: 14px; font-weight: 500; color: var(--navy); flex-grow: 1; line-height: 1.4; }
.media-article-arrow { font-size: 16px; color: var(--orange); flex-shrink: 0; }

.financial-section { padding: 88px 8%; background: var(--warm); }
.financial-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-top: 56px; align-items: start; }
.financial-intro { font-size: 17px; color: var(--mid); line-height: 1.78; margin-bottom: 32px; }
.financial-acnc-badge { display: inline-flex; align-items: center; gap: 10px; background: var(--white); border: 1px solid var(--rule); border-radius: var(--r); padding: 14px 18px; margin-bottom: 32px; box-shadow: var(--s-xs); }
.financial-acnc-dot { width: 8px; height: 8px; border-radius: 50%; background: #2E7D32; flex-shrink: 0; }
.financial-acnc-text { font-size: 13px; color: var(--body); line-height: 1.4; }
.financial-acnc-text strong { display: block; font-size: 14px; }
.report-list { display: flex; flex-direction: column; gap: 10px; }
.report-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; background: var(--white); border: 1px solid var(--rule); border-radius: var(--r); padding: 14px 18px; text-decoration: none; transition: box-shadow 0.15s, border-color 0.15s; box-shadow: var(--s-xs); }
.report-row:hover { box-shadow: var(--s); border-color: var(--navy); }
.report-row-left { display: flex; align-items: center; gap: 12px; }
.report-icon { width: 36px; height: 36px; border-radius: var(--r-sm); background: var(--navy-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 15px; }
.report-name { font-size: 14px; font-weight: 600; color: var(--navy); }
.report-source { font-size: 11px; color: var(--soft); margin-top: 2px; }
.report-download { font-family: var(--font-mono); font-size: 12px; color: var(--navy); white-space: nowrap; display: flex; align-items: center; gap: 4px; }

.map-section { padding: 88px 8%; background: var(--white); }
.map-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 48px; margin-top: 56px; align-items: start; }
.map-session-list { display: flex; flex-direction: column; gap: 10px; margin-top: 24px; }
.map-session { display: flex; align-items: flex-start; gap: 12px; padding: 13px 15px; background: var(--warm); border: 1px solid var(--parchment); border-radius: var(--r); }
.map-session-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); flex-shrink: 0; margin-top: 4px; }
.map-session-title { font-size: 14px; font-weight: 600; color: var(--navy); }
.map-session-detail { font-size: 13px; color: var(--soft); margin-top: 2px; }
.map-embed { border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--rule); height: 420px; box-shadow: var(--s); }
.map-embed iframe { width: 100%; height: 100%; border: none; }

.contact-section { padding: 88px 8%; background: var(--warm); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-top: 56px; align-items: start; }
.contact-detail { display: flex; align-items: flex-start; gap: 14px; padding: 18px 0; border-bottom: 1px solid var(--parchment); }
.contact-detail:last-of-type { border-bottom: none; }
.contact-icon { width: 40px; height: 40px; border-radius: var(--r); background: var(--navy); flex-shrink: 0; display: flex; align-items: center; justify-content: center; color: white; font-size: 16px; }
.contact-detail-label { font-size: 11px; font-weight: 600; color: var(--soft); text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 4px; }
.contact-detail-value { font-size: 15.5px; color: var(--body); font-weight: 500; }
.contact-detail-value a { color: var(--body); text-decoration: none; transition: color 0.2s; }
.contact-detail-value a:hover { color: var(--orange); }
.contact-form-card { background: var(--white); border: 1px solid var(--rule); border-radius: var(--r-lg); padding: 36px; box-shadow: var(--s); }
.contact-form-title { font-family: var(--font-display); font-size: 24px; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.contact-form-sub { font-size: 15.5px; color: var(--mid); margin-bottom: 28px; line-height: 1.65; }
.form-row { margin-bottom: 16px; }
.form-row label { display: block; font-size: 11px; font-weight: 600; color: var(--navy); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.8px; }
.form-row input, .form-row select, .form-row textarea { width: 100%; padding: 12px 16px; border: 1.5px solid var(--rule); border-radius: var(--r); font-size: 15px; font-family: var(--font-body); color: var(--body); transition: border-color 0.2s, box-shadow 0.2s; background: var(--white); outline: none; }
.form-row input:focus, .form-row select:focus, .form-row textarea:focus { border-color: var(--navy); box-shadow: 0 0 0 3px rgba(28,49,88,0.07); }
.form-row textarea { resize: vertical; min-height: 100px; }
.form-row-half { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-submit { width: 100%; padding: 14px; background: var(--orange); color: white; border: none; border-radius: 100px; font-size: 15px; font-weight: 600; font-family: var(--font-body); cursor: pointer; transition: background 0.2s, box-shadow 0.2s, transform 0.15s; margin-top: 8px; }
.form-submit:hover { background: var(--orange-dim); box-shadow: 0 6px 20px var(--orange-glow); transform: translateY(-1px); }
.form-note { font-size: 11px; color: var(--soft); text-align: center; margin-top: 10px; line-height: 1.5; }
.referral-card { background: var(--navy); border-radius: var(--r-lg); padding: 28px; display: flex; align-items: center; gap: 24px; margin-top: 32px; }
.referral-card-icon { font-size: 32px; flex-shrink: 0; }
.referral-card-title { font-family: var(--font-display); font-size: 18px; font-weight: 600; color: white; margin-bottom: 6px; }
.referral-card-desc { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.6; margin-bottom: 14px; }
.referral-card-btn { display: inline-flex; align-items: center; gap: 6px; background: white; color: var(--navy); padding: 10px 18px; border-radius: 100px; font-size: 13px; font-weight: 700; text-decoration: none; transition: background 0.2s; }
.referral-card-btn:hover { background: rgba(255,255,255,0.9); }

.book-banner { background: var(--cream); border-top: 2px solid var(--orange); border-bottom: 1px solid var(--parchment); padding: 48px 8%; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.book-banner-left { display: flex; align-items: center; gap: 32px; }
.book-cover { width: 80px; flex-shrink: 0; background: var(--orange); border-radius: var(--r-sm); padding: 14px 10px; display: flex; flex-direction: column; align-items: center; justify-content: center; box-shadow: var(--s-xl); min-height: 108px; }
.book-cover-title { font-family: var(--font-display); font-size: 9px; font-weight: 700; color: white; text-align: center; line-height: 1.3; }
.book-cover-line { width: 40px; height: 1px; background: rgba(255,255,255,0.4); margin: 7px 0; }
.book-cover-author { font-size: 7px; color: rgba(255,255,255,0.7); text-align: center; line-height: 1.4; }
.book-label { font-size: 10px; font-weight: 600; letter-spacing: 1.8px; text-transform: uppercase; color: var(--orange); margin-bottom: 6px; }
.book-title { font-family: var(--font-display); font-size: 24px; font-weight: 600; color: var(--navy); margin-bottom: 6px; line-height: 1.2; }
.book-authors { font-size: 13px; color: var(--mid); margin-bottom: 10px; }
.book-desc { font-size: 14.5px; color: var(--mid); line-height: 1.68; max-width: 520px; }
.book-cta { display: inline-flex; align-items: center; gap: 10px; background: var(--orange); color: white; padding: 13px 24px; border-radius: 100px; font-size: 14px; font-weight: 600; text-decoration: none; flex-shrink: 0; white-space: nowrap; transition: background 0.2s, box-shadow 0.2s; }
.book-cta:hover { background: var(--orange-dim); box-shadow: 0 6px 20px var(--orange-glow); }
.book-kindle-note { font-size: 11px; color: var(--soft); text-align: center; margin-top: 6px; }
.book-cta-wrap { display: flex; flex-direction: column; align-items: flex-end; flex-shrink: 0; }

.partner-testimonials-section { padding: 88px 8%; background: var(--white); }
.partner-testi-intro { font-size: 17px; color: var(--mid); line-height: 1.72; max-width: 600px; margin-top: 16px; margin-bottom: 56px; }
.partner-testi-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.partner-testi-card { border: 1px solid var(--rule); border-radius: var(--r-lg); padding: 28px 30px; position: relative; overflow: hidden; transition: box-shadow 0.2s, transform 0.15s; background: var(--white); box-shadow: var(--s-xs); }
.partner-testi-card:hover { box-shadow: var(--s-lg); transform: translateY(-2px); }
.partner-testi-card::before { content: '\201C'; position: absolute; top: -12px; right: 18px; font-family: var(--font-display); font-size: 120px; color: var(--navy); opacity: 0.04; line-height: 1; pointer-events: none; }
.partner-testi-org { display: inline-flex; align-items: center; gap: 6px; background: var(--navy-light); border: 1px solid rgba(28,49,88,0.1); border-radius: 100px; padding: 4px 12px; font-size: 11px; font-weight: 700; color: var(--navy); letter-spacing: 0.3px; margin-bottom: 16px; }
.partner-testi-quote { font-family: var(--font-display); font-size: 15.5px; line-height: 1.76; color: var(--mid); font-style: italic; margin-bottom: 20px; position: relative; z-index: 1; }
.partner-testi-meta { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid var(--rule-soft); }
.partner-testi-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--navy); display: flex; align-items: center; justify-content: center; color: white; font-size: 13px; font-weight: 600; flex-shrink: 0; }
.partner-testi-name { font-size: 13px; font-weight: 600; color: var(--navy); }
.partner-testi-role { font-size: 12px; color: var(--soft); line-height: 1.4; }
.partner-testi-card.wide { grid-column: 1 / -1; background: var(--navy-light); border-color: var(--parchment); }
.partner-testi-card.wide .partner-testi-org { background: var(--orange-light); border-color: var(--orange); color: var(--orange); }
.partner-testi-card.wide .partner-testi-quote { color: var(--navy); font-size: 17px; }
.partner-testi-card.wide .partner-testi-meta { border-top-color: var(--parchment); }
.partner-testi-card.wide .partner-testi-avatar { background: var(--navy); }
.partner-testi-card.wide .partner-testi-name { color: var(--navy); }
.partner-testi-card.wide .partner-testi-role { color: var(--mid); }
.partner-testi-card.note { background: var(--navy-light); border-color: rgba(28,49,88,0.15); }
.partner-testi-card.note::before { display: none; }
.partner-testi-card.note .partner-testi-org { background: rgba(28,49,88,0.1); border-color: rgba(28,49,88,0.18); color: var(--navy); }
.partner-note-head { font-family: var(--font-display); font-size: 17px; font-weight: 600; color: var(--navy); margin-bottom: 10px; }
.partner-note-body { font-size: 15.5px; color: var(--mid); line-height: 1.72; }
.partner-note-since { margin-top: 16px; font-size: 12px; font-weight: 600; color: var(--navy); }

.page-cta-band { background: var(--orange); padding: 72px 8%; text-align: center; }

footer { background: var(--navy); padding: 64px 8% 36px; color: rgba(255,255,255,0.45); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-tagline { font-size: 13.5px; line-height: 1.68; margin-bottom: 20px; max-width: 240px; }
.footer-acnc { font-size: 11px; color: rgba(255,255,255,0.22); line-height: 1.65; }
.footer-col h4 { font-size: 11px; font-weight: 600; color: white; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 18px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 13.5px; color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; }
.footer-col ul li a:hover { color: white; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: rgba(255,255,255,0.22); }
.footer-orange { color: var(--orange); }
.footer-logo-text { font-family: var(--font-display); font-weight: 700; font-size: 20px; color: white; margin-bottom: 12px; }

@media print {
  nav, footer, .book-banner, .newsletter-section, .media-logos-bar,
  .hero-cta-row, .partner-cta, .btn-primary, .btn-navy, .btn-ghost-white,
  .form-submit, .socks-callout-cta, .referral-card-btn,
  .page-cta-band { display: none !important; }
  body { font-size: 12pt; color: #000; }
  section { padding: 24pt 0; break-inside: avoid; }
  .section-title { font-size: 18pt; color: #000; }
  .page-hero { background: white; padding-top: 24pt; }
  .page-hero-title { color: #000; }
  .page-hero-sub { color: #333; }
}
