/* KIPP Leadership Coaching Program — Phase 1 Site
   Retheme 2026-05-28 to align with SY26-27 one-pager palette
   Palette: olive/chartreuse green + coral + sky blue on navy + warm cream
   Source: UPDATED DRAFT - Coaching Program Overview 26-27SY.pdf (Philonda 5/21)
*/

:root {
  /* Primary palette — SY26-27 one-pager (cream-dominant retheme 2026-05-28 PM) */
  --navy: #1f2a4a;              /* heading + body text only (no more heavy backgrounds) */
  --deep-blue: #2c3e63;         /* secondary text accent */
  --olive: #9bb83d;             /* punched chartreuse-olive (was #8aa436) */
  --olive-deep: #7a9528;        /* hover state for olive */
  --olive-soft: #d4e09c;        /* light olive tint for soft backgrounds */
  --coral: #f47650;             /* punched coral (was #ef6f4f) */
  --coral-deep: #d85a3a;        /* hover state for coral */
  --coral-soft: #fbc4af;        /* light coral tint */
  --sky: #5fa8e3;               /* punched sky blue (was #5a9ed9) */
  --sky-deep: #3c83c2;          /* hover state for sky */
  --peach: #fde3d4;             /* peach callout panel background */
  --cream: #fef5d6;             /* yellow-cream hero panel background — slightly punchier */
  --cream-soft: #fef9e8;        /* lightest cream — for section backgrounds */
  --sky-soft: #e1ecf6;          /* soft sky panel background */
  --warm-white: #fffefb;        /* near-white with warmth */
  --ink: #1a1a1a;
  --slate: #4a4a4a;
  --mist: #ece8d8;              /* warm divider/border */

  /* Gradient accents — coral + sky lead, olive is accent only */
  --gradient-hero: linear-gradient(135deg, var(--cream-soft) 0%, var(--sky-soft) 60%, var(--coral-soft) 100%);
  --gradient-soft: linear-gradient(135deg, var(--coral) 0%, var(--sky) 100%);
  --gradient-accent: linear-gradient(135deg, var(--sky) 0%, var(--coral) 100%);
  --gradient-cta: linear-gradient(135deg, var(--navy) 0%, var(--deep-blue) 50%, var(--sky-deep) 100%);

  /* Type */
  --font-display: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;

  /* Spacing */
  --container: 1200px;
  --section-pad: clamp(4rem, 8vw, 7rem);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream-soft);
  -webkit-font-smoothing: antialiased;
}

/* ========== Navigation ========== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(254, 249, 232, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--mist);
}

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

.nav-brand {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: -0.01em;
}

.nav-brand span {
  background: linear-gradient(135deg, var(--coral) 0%, var(--sky) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  gap: 2.25rem;
  list-style: none;
}

.nav-links a {
  color: var(--slate);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--coral);
}

/* ========== Buttons ========== */
.btn {
  display: inline-block;
  padding: 0.95rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-family: var(--font-body);
}

.btn-primary {
  background: linear-gradient(135deg, var(--coral) 0%, var(--sky) 100%);
  color: white;
  box-shadow: 0 4px 14px rgba(244, 118, 80, 0.30);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(244, 118, 80, 0.42);
}

.btn-secondary {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}

.btn-secondary:hover {
  background: var(--navy);
  color: white;
}

.btn-large {
  padding: 1.1rem 2.5rem;
  font-size: 1.1rem;
}

/* ========== Hero — flat cream, navy text, photo cluster ========== */
.hero {
  background: var(--cream);
  color: var(--navy);
  padding: 6rem 2rem 7rem;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--mist);
}

.hero::before { content: none; }
.hero::after { content: none; }

.hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-copy {
  min-width: 0;
}

.hero-eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: var(--coral-deep);
  background: rgba(244, 118, 80, 0.18);
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
}

.hero h1 {
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  color: var(--navy);
}

.hero p {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  max-width: 50ch;
  color: var(--slate);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-cta .btn-primary {
  background: var(--gradient-soft);
  color: white;
  border: none;
}

.hero-cta .btn-secondary {
  background: white;
  color: var(--navy);
  border: 2px solid var(--navy);
}

.hero-cta .btn-secondary:hover {
  background: var(--navy);
  color: white;
}

/* ========== Hero photo cluster (right side) ========== */
.hero-cluster {
  position: relative;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bubble {
  position: absolute;
  border-radius: 50%;
  background: white;
  border: 5px solid white;
  box-shadow: 0 12px 36px rgba(31, 42, 74, 0.18);
  overflow: hidden;
}

.hero-bubble img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-bubble.b1 {
  width: 200px;
  height: 200px;
  top: 0;
  right: 40px;
  border-color: var(--coral);
}

.hero-bubble.b2 {
  width: 160px;
  height: 160px;
  bottom: 30px;
  left: 0;
  border-color: var(--sky);
}

.hero-bubble.b3 {
  width: 130px;
  height: 130px;
  bottom: 80px;
  right: 10px;
  border-color: var(--olive);
}

/* Decorative dot ring behind cluster — adds the PDF's playful flourish */
.hero-cluster::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 360px;
  height: 360px;
  border-radius: 50%;
  border: 2px dashed rgba(244, 118, 80, 0.35);
  pointer-events: none;
}

@media (max-width: 880px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .hero-cluster {
    height: 320px;
    max-width: 380px;
    margin: 0 auto;
  }
  .hero-bubble.b1 { width: 170px; height: 170px; right: 30px; }
  .hero-bubble.b2 { width: 140px; height: 140px; left: 10px; }
  .hero-bubble.b3 { width: 110px; height: 110px; right: 0; }
  .hero-cluster::before { width: 300px; height: 300px; }
}

/* ========== Section base ========== */
section {
  padding: var(--section-pad) 2rem;
}

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

.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--coral-deep);
  margin-bottom: 1rem;
  display: block;
}

h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.section-lead {
  font-size: 1.2rem;
  color: var(--slate);
  max-width: 60ch;
  margin-bottom: 3rem;
}

/* ========== Three pillars (home) ========== */
.pillars {
  background: white;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.pillars-grid--square {
  grid-template-columns: repeat(2, 1fr);
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 760px) {
  .pillars-grid { grid-template-columns: 1fr; }
}

.pillar {
  padding: 3rem 2.5rem;
  background: white;
  border-radius: 16px;
  border: 1px solid var(--mist);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

@media (max-width: 640px) {
  .pillars-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
  }
}

.pillar:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(26, 37, 64, 0.12);
}

.pillar-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--coral);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.65rem;
  color: white;
  font-weight: 700;
}

.pillar:nth-child(2) .pillar-icon { background: var(--sky); }
.pillar:nth-child(3) .pillar-icon { background: var(--olive); }
.pillar:nth-child(4) .pillar-icon { background: var(--coral); }

.pillar h3 {
  margin-bottom: 0.75rem;
}

.pillar p {
  color: var(--slate);
  line-height: 1.6;
}

/* ========== Impact stats — sky-soft panel, floating white cards ========== */
.impact-strip {
  background: var(--sky-soft);
  text-align: center;
  position: relative;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.75rem;
  margin-top: 2.5rem;
}

/* Each stat becomes a floating white card with a colored top accent stripe */
.stat {
  position: relative;
  background: white;
  border-radius: 16px;
  padding: 2.25rem 1.5rem 2rem;
  box-shadow: 0 8px 24px rgba(31, 42, 74, 0.08);
  border-top: 4px solid var(--coral);
}

.stat:nth-child(2) {
  border-top-color: var(--navy);
}

.stat:nth-child(3) {
  border-top-color: var(--olive);
}

.stat-number {
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1;
  color: var(--coral-deep);
  letter-spacing: -0.03em;
  display: inline-block;
  position: relative;
}

/* Sky-blue underline tick — warm-cool tension in the typography */
.stat-number::after {
  content: "";
  display: block;
  width: 36px;
  height: 3px;
  background: var(--sky);
  border-radius: 2px;
  margin: 0.65rem auto 0;
}

.stat:nth-child(2) .stat-number { color: var(--navy); }
.stat:nth-child(3) .stat-number { color: var(--olive-deep); }

.stat-label {
  margin-top: 0.5rem;
  font-size: 0.95rem;
  color: var(--slate);
  font-weight: 500;
  line-height: 1.45;
}

/* ========== Coach grid — Challenge-Success-inspired, softer ========== */
.coaches-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

@media (max-width: 980px) {
  .coaches-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 720px) {
  .coaches-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 420px) {
  .coaches-grid { grid-template-columns: 1fr; }
}

.coach-card {
  background: white;
  border-radius: 18px;
  padding: 1.5rem 0.75rem 1.25rem;
  border: 1px solid var(--mist);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.coach-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(31, 42, 74, 0.10);
  border-color: var(--coral);
}

/* Rotating accent ring color: coral → sky → olive → repeat
   Photos are face-detection re-cropped at the source, so object-position: center
   works for all of them — no per-photo overrides needed. */
/* .coach-photo is now a DIV with background-image, matching the calibration tool's
   exact rendering. Position + scale work natively via background-position /
   background-size. JS in coaches.html sets each div's background-image from
   data-src attribute. */
.coach-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background-color: var(--mist);
  background-position: 50% 25%;   /* default — overrides at bottom of file */
  background-size: 100% auto;     /* default zoom; overrides can change */
  background-repeat: no-repeat;
  border: 3px solid white;
  box-shadow: 0 0 0 2px var(--coral), 0 4px 12px rgba(31, 42, 74, 0.08);
  margin-bottom: 0.85rem;
}

.coach-card:nth-child(3n+2) .coach-photo {
  box-shadow: 0 0 0 2px var(--sky), 0 4px 12px rgba(31, 42, 74, 0.08);
}

.coach-card:nth-child(3n+3) .coach-photo {
  box-shadow: 0 0 0 2px var(--olive), 0 4px 12px rgba(31, 42, 74, 0.08);
}

.coach-card:nth-child(3n+2):hover {
  border-color: var(--sky);
}
.coach-card:nth-child(3n+3):hover {
  border-color: var(--olive);
}

.coach-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.005em;
  line-height: 1.3;
}

/* ========== Coach spotlight (home) — circular bubbles matching PDF ========== */
.spotlight {
  background: white;
}

/* ========== Homepage Coach Carousel ==========
   Replaces the old static 4-coach spotlight grid.
   5 coaches per slide, auto-rotates every 4s, arrows + dots for manual control. */
.coach-carousel {
  position: relative;
  margin: 3rem auto 0;
  max-width: 1100px;
  overflow: hidden;
  padding: 0 60px;  /* room for arrows */
}

.carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.carousel-slide {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  padding: 0.5rem 0;
}

.carousel-coach {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.carousel-photo {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background-color: var(--mist);
  background-position: 50% 25%;   /* default; per-coach overrides apply */
  background-size: 100% auto;
  background-repeat: no-repeat;
  border: 3px solid white;
  box-shadow: 0 0 0 2px var(--coral), 0 4px 12px rgba(31, 42, 74, 0.08);
  margin-bottom: 0.75rem;
}

/* Rotate ring colors within each slide */
.carousel-coach:nth-child(5n+2) .carousel-photo {
  box-shadow: 0 0 0 2px var(--sky), 0 4px 12px rgba(31, 42, 74, 0.08);
}
.carousel-coach:nth-child(5n+3) .carousel-photo {
  box-shadow: 0 0 0 2px var(--olive), 0 4px 12px rgba(31, 42, 74, 0.08);
}
.carousel-coach:nth-child(5n+4) .carousel-photo {
  box-shadow: 0 0 0 2px var(--coral), 0 4px 12px rgba(31, 42, 74, 0.08);
}
.carousel-coach:nth-child(5n+5) .carousel-photo {
  box-shadow: 0 0 0 2px var(--sky), 0 4px 12px rgba(31, 42, 74, 0.08);
}

.carousel-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.005em;
  line-height: 1.3;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: white;
  border: 1px solid var(--mist);
  color: var(--navy);
  font-size: 1.5rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(31, 42, 74, 0.10);
  transition: all 0.2s;
  z-index: 2;
  padding: 0;
  line-height: 1;
}

.carousel-arrow:hover {
  background: var(--coral);
  color: white;
  border-color: var(--coral);
  transform: translateY(-50%) scale(1.05);
}

.carousel-arrow.prev { left: 0; }
.carousel-arrow.next { right: 0; }

.carousel-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 2rem;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mist);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.2s;
}

.carousel-dot.active {
  background: var(--coral);
  width: 24px;
  border-radius: 999px;
}

@media (max-width: 880px) {
  .coach-carousel { padding: 0 50px; }
  .carousel-slide { grid-template-columns: repeat(3, 1fr); }
  /* When showing 3-per-slide, we'll handle this via JS by re-grouping */
}
@media (max-width: 540px) {
  .coach-carousel { padding: 0 40px; }
  .carousel-slide { grid-template-columns: repeat(2, 1fr); }
  .carousel-photo { width: 90px; height: 90px; }
}

.spotlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.spotlight-card {
  text-align: center;
}

.spotlight-photo {
  width: 75%;
  max-width: 200px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center 25%;
  border-radius: 50%;
  border: 4px solid white;
  box-shadow: 0 0 0 3px var(--coral), 0 8px 24px rgba(31, 42, 74, 0.12);
  margin: 0 auto 1.25rem;
  display: block;
}

.spotlight-card:nth-child(2) .spotlight-photo {
  box-shadow: 0 0 0 3px var(--sky), 0 8px 24px rgba(31, 42, 74, 0.12);
}
.spotlight-card:nth-child(3) .spotlight-photo {
  box-shadow: 0 0 0 3px var(--coral), 0 8px 24px rgba(31, 42, 74, 0.12);
}
.spotlight-card:nth-child(4) .spotlight-photo {
  box-shadow: 0 0 0 3px var(--sky), 0 8px 24px rgba(31, 42, 74, 0.12);
}

.spotlight-role {
  color: var(--sky-deep);
}

.spotlight-name {
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.spotlight-role {
  font-size: 0.9rem;
  color: var(--sky-deep);
}

/* ========== About page sections ========== */
.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-section.alt {
  grid-template-columns: 1fr;
}

.framework-list {
  list-style: none;
  display: grid;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.framework-list li {
  padding-left: 2rem;
  position: relative;
  color: var(--slate);
}

.framework-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 12px;
  height: 12px;
  background: var(--gradient-soft);
  border-radius: 3px;
}

.framework-list strong {
  color: var(--navy);
}

/* ========== Packages (about) — dashed-border PDF treatment ========== */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.package {
  padding: 2rem;
  background: white;
  border-radius: 16px;
  border: 2px solid var(--sky);
  position: relative;
}

.package.pkg-salmon { border-color: var(--coral); }
.package.pkg-salmon .package-price { color: var(--coral-deep); }
.package.pkg-green { border-color: var(--olive); }
.package.pkg-green .package-price { color: var(--olive-deep); }
.package.pkg-blue { border-color: var(--sky); }
.package.pkg-blue .package-price { color: var(--sky-deep); }

.origin-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
  margin-top: 2rem;
}
.origin-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.origin-photos img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  border-radius: 14px;
}
.origin-photos img:first-child {
  grid-row: span 2;
  min-height: 320px;
}
@media (max-width: 800px) {
  .origin-layout { grid-template-columns: 1fr; }
}

.addon-box {
  margin-top: 2.5rem;
  padding: 2.25rem;
  background: var(--sky-deep);
  color: white;
  border-radius: 16px;
}
.addon-box .addon-list li { color: rgba(255,255,255,0.95); }
.addon-box .addon-list a { color: white; text-decoration: underline; }
.addon-box .addon-list a:hover { opacity: 0.85; }

.student-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 2rem 0 0;
}
.student-strip img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
}
@media (max-width: 600px) {
  .student-strip { grid-template-columns: 1fr 1fr; }
  .student-strip img:first-child { grid-column: span 2; }
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.testimonial { margin: 0; }
.testimonial video {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  background: #000;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.testimonial figcaption {
  margin-top: 0.75rem;
  font-weight: 600;
  color: var(--navy);
  text-align: center;
}
@media (max-width: 820px) {
  .testimonials-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
}

.package-legacy-hidden {
  border-color: var(--coral);
}

.package.featured {
  border: 3px solid var(--coral);
  background: linear-gradient(180deg, white 0%, rgba(253, 227, 212, 0.40) 100%);
  box-shadow: 0 12px 28px rgba(244, 118, 80, 0.22);
}

.package-tag {
  position: absolute;
  top: -12px;
  right: 1.5rem;
  background: var(--coral);
  color: white;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  box-shadow: 0 4px 12px rgba(244, 118, 80, 0.40);
}

.package h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.package-price {
  font-size: 2.25rem;
  font-weight: 800;
  margin: 0.5rem 0;
  letter-spacing: -0.02em;
  color: var(--coral-deep);
}

.package.featured .package-price {
  color: var(--coral-deep);
}

.package:nth-child(3) .package-price {
  color: var(--sky-deep);
}

.package-desc {
  color: var(--slate);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* ========== Impact page ========== */
.impact-hero {
  background: var(--cream);
  padding: 5rem 2rem 4rem;
  text-align: center;
  border-bottom: 1px solid var(--mist);
}

.impact-hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  color: var(--navy);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.impact-stats-big {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.75rem;
  max-width: var(--container);
  margin: 0 auto;
  padding: 4rem 2rem;
}

/* Bigger stat cards on the impact page itself */
.impact-stats-big .stat {
  padding: 3rem 1.75rem 2.5rem;
}

.flipbook-placeholder {
  max-width: 900px;
  margin: 2rem auto 4rem;
  aspect-ratio: 4 / 3;
  background: white;
  border-radius: 12px;
  border: 2px dashed var(--mist);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--slate);
  font-size: 1.1rem;
  text-align: center;
  padding: 2rem;
}

.impact-embed {
  max-width: 900px;
  margin: 2rem auto 4rem;
  background: white;
  border-radius: 12px;
  border: 1px solid var(--mist);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.impact-embed iframe {
  display: block;
  width: 100%;
  height: 80vh;
  min-height: 600px;
  border: 0;
}

@media (max-width: 600px) {
  .impact-embed iframe { height: 70vh; min-height: 480px; }
}

/* ========== Form (Start a conversation) ========== */
.form-page {
  background: var(--cream-soft);
}

.form-container {
  max-width: 720px;
  margin: 0 auto;
}

.form-page h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--navy);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.form-page > .form-container > p {
  font-size: 1.15rem;
  color: var(--slate);
  margin-bottom: 3rem;
}

.form {
  background: white;
  padding: 3rem;
  border-radius: 16px;
  border: 1px solid var(--mist);
  box-shadow: 0 8px 32px rgba(26, 37, 64, 0.08);
}

.form-row {
  margin-bottom: 1.5rem;
}

.form-row label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--navy);
  font-size: 0.95rem;
}

.form-row input, .form-row select, .form-row textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--mist);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  background: var(--warm-white);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: none;
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(239, 111, 79, 0.15);
}

.form-row textarea {
  min-height: 100px;
  resize: vertical;
  font-family: inherit;
}

.form-note {
  background: var(--cream);
  padding: 1.25rem 1.5rem;
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--slate);
  border-left: 3px solid var(--coral);
  margin-bottom: 2rem;
}

/* ========== Footer ========== */
footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.85);
  padding: 4rem 2rem 2rem;
}

.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand {
  font-size: 1.3rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

.footer-brand span {
  background: linear-gradient(135deg, #f5b8a3 0%, #a8d0ee 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-tagline {
  font-size: 0.95rem;
  opacity: 0.7;
  max-width: 35ch;
}

.footer-col h4 {
  color: white;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 0.5rem;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: white;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
  opacity: 0.6;
  text-align: center;
}

/* ========== Reference banner (only for the demo / removed for live) ========== */
.demo-banner {
  background: var(--coral);
  color: white;
  text-align: center;
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  font-weight: 500;
}

.demo-banner a {
  color: white;
  text-decoration: underline;
}

/* ========== Responsive ========== */
@media (max-width: 768px) {
  .nav-links { gap: 1.25rem; }
  .nav-links a { font-size: 0.85rem; }
  .nav-inner { padding: 1rem; }
  .about-section { grid-template-columns: 1fr; gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form { padding: 2rem 1.5rem; }
  section { padding: 4rem 1.5rem; }
  .hero { padding: 5rem 1.5rem 6rem; }
}

@media (max-width: 540px) {
  .nav-brand { font-size: 0.9rem; }
  .nav-links { gap: 1rem; }
  .nav-links li:not(:nth-child(-n+3)) { display: none; }
}

/* === Coach photo per-image overrides (Mark's calibration 2026-05-28 PM) ===
   Positions: Mark's calibration tool paste (47 explicit values).
   Scales: 25 values read from Mark's 5 screenshots of the calibration tool.
   Coaches not visible in screenshots default to scale 100%. Sorted by last name. */
.coach-photo[data-src*="Cherese_Brauer"] { background-position: 50% 25%; background-size: 140% auto; }
.coach-photo[data-src*="Wheda_Carletos"] { background-position: 55% 10%; background-size: 100% auto; }
.coach-photo[data-src*="Jess_Chacón"] { background-position: 45% 20%; background-size: 200% auto; }
.coach-photo[data-src*="Ed_Chang"] { background-position: 35% 0%; background-size: 120% auto; }
.coach-photo[data-src*="Glenn_K._Davis"] { background-position: 40% 10%; background-size: 100% auto; }
.coach-photo[data-src*="Mario_Echeverria"] { background-position: 35% 0%; background-size: 110% auto; }
.coach-photo[data-src*="Tiffany_Flowers"] { background-position: 15% 10%; background-size: 100% auto; }
.coach-photo[data-src*="Eldridge_Gilbert"] { background-position: 25% 0%; background-size: 100% auto; }
.coach-photo[data-src*="April_Goble"] { background-position: 100% 0%; background-size: 100% auto; }
.coach-photo[data-src*="Philonda_Grant"] { background-position: 50% 25%; background-size: 140% auto; }
.coach-photo[data-src*="Sarah_Beth_Greenberg"] { background-position: 85% 0%; background-size: 110% auto; }
.coach-photo[data-src*="Sean_Healy"] { background-position: 20% 0%; background-size: 140% auto; }
.coach-photo[data-src*="Kelly_Wright_Henrion"] { background-position: 35% 25%; background-size: 120% auto; }
.coach-photo[data-src*="Sue_Jean_Hong"] { background-position: 55% 5%; background-size: 200% auto; }
.coach-photo[data-src*="Eveleen_Hsu"] { background-position: 50% 25%; background-size: 100% auto; }
.coach-photo[data-src*="Kayla_Johnson"] { background-position: 40% 90%; background-size: 190% auto; }
.coach-photo[data-src*="Constance_Jones"] { background-position: 15% 0%; background-size: 130% auto; }
.coach-photo[data-src*="Anne_Kadowaki"] { background-position: 0% 0%; background-size: 100% auto; }
.coach-photo[data-src*="Lindsey_Lorehn"] { background-position: 50% 5%; background-size: 100% auto; }
.coach-photo[data-src*="Drew_Martin"] { background-position: 15% 45%; background-size: 210% auto; }
.coach-photo[data-src*="Michael_McGee"] { background-position: 55% 15%; background-size: 160% auto; }
.coach-photo[data-src*="Melissa_McGonegle"] { background-position: 55% 0%; background-size: 140% auto; }
.coach-photo[data-src*="Amber_Young_Medina"] { background-position: 45% 25%; background-size: 130% auto; }
.coach-photo[data-src*="Adam_Meinig"] { background-position: 0% 35%; background-size: 170% auto; }
.coach-photo[data-src*="Pam_Moeller"] { background-position: 60% 0%; background-size: 100% auto; }
.coach-photo[data-src*="Kevin_Newman"] { background-position: 30% 0%; background-size: 100% auto; }
.coach-photo[data-src*="Judy_Tang_Nguyen"] { background-position: 50% 0%; background-size: 150% auto; }
.coach-photo[data-src*="Modiegi_Notoane-Eugene"] { background-position: 40% 0%; background-size: 100% auto; }
.coach-photo[data-src*="Amy_Pouba"] { background-position: 0% 0%; background-size: 110% auto; }
.coach-photo[data-src*="Sha_Reagans"] { background-position: 50% 0%; background-size: 100% auto; }
.coach-photo[data-src*="Adriana_Rodriguez"] { background-position: 60% 10%; background-size: 240% auto; }
.coach-photo[data-src*="Geoffrey_Roy"] { background-position: 55% 15%; background-size: 100% auto; }
.coach-photo[data-src*="Blanca_Ruiz"] { background-position: 55% 25%; background-size: 100% auto; }
.coach-photo[data-src*="Jeff_Rutel"] { background-position: 55% 25%; background-size: 100% auto; }
.coach-photo[data-src*="Mariah_Schroeder"] { background-position: 65% 25%; background-size: 140% auto; }
.coach-photo[data-src*="Kyle_Shaffer"] { background-position: 45% 15%; background-size: 100% auto; }
.coach-photo[data-src*="Pegah_Taylor"] { background-position: 35% 0%; background-size: 100% auto; }
.coach-photo[data-src*="Amy_Tran"] { background-position: 60% 20%; background-size: 100% auto; }
.coach-photo[data-src*="Natalie_Webb"] { background-position: 50% 25%; background-size: 100% auto; }
.coach-photo[data-src*="Brandy_Woodard"] { background-position: 55% 15%; background-size: 100% auto; }
