/* style.css — VCC Design Tokens & Components */

/* ===== DESIGN TOKENS ===== */
:root {
  /* Type Scale */
  --text-xs:   clamp(0.75rem,  0.7rem  + 0.25vw, 0.875rem);
  --text-sm:   clamp(0.875rem, 0.8rem  + 0.35vw, 1rem);
  --text-base: clamp(1rem,     0.95rem + 0.25vw, 1.125rem);
  --text-lg:   clamp(1.125rem, 1rem    + 0.75vw, 1.5rem);
  --text-xl:   clamp(1.5rem,   1.2rem  + 1.25vw, 2.25rem);
  --text-2xl:  clamp(2rem,     1.2rem  + 2.5vw,  3.5rem);
  --text-3xl:  clamp(2.5rem,   1rem    + 4vw,    5rem);

  /* Spacing */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Brand Colors */
  --color-navy:       #1B3A4B;
  --color-navy-dark:  #132a37;
  --color-navy-light: #234d64;
  --color-teal:       #2C8C99;
  --color-teal-dark:  #1f6e78;
  --color-teal-light: #3aa8b7;
  --color-warm-white: #F9F8F5;
  --color-soft-gray:  #F0EEEA;
  --color-cream:      #F5F3EF;

  /* Semantic Colors */
  --color-bg:             #F9F8F5;
  --color-surface:        #FFFFFF;
  --color-surface-alt:    #F0EEEA;
  --color-text:           #1B3A4B;
  --color-text-muted:     #5a7181;
  --color-text-faint:     #8da3b0;
  --color-text-inverse:   #FFFFFF;
  --color-primary:        #2C8C99;
  --color-primary-hover:  #1f6e78;
  --color-primary-active: #175860;
  --color-border:         #d8d5d0;
  --color-divider:        #e5e2dd;

  /* Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;

  /* Transitions */
  --transition-interactive: 180ms cubic-bezier(0.16, 1, 0.3, 1);

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(27, 58, 75, 0.06);
  --shadow-md: 0 4px 12px rgba(27, 58, 75, 0.08);
  --shadow-lg: 0 12px 32px rgba(27, 58, 75, 0.12);
  --shadow-xl: 0 20px 48px rgba(27, 58, 75, 0.16);

  /* Content widths */
  --content-narrow: 640px;
  --content-default: 960px;
  --content-wide: 1200px;

  /* Fonts */
  --font-display: 'Zodiak', 'Georgia', serif;
  --font-body: 'Work Sans', 'Helvetica Neue', sans-serif;
}

/* ===== LAYOUT ===== */
.container {
  max-width: var(--content-wide);
  margin: 0 auto;
  padding-inline: var(--space-6);
}

@media (max-width: 600px) {
  .container {
    padding-inline: var(--space-4);
  }
}

.container--narrow {
  /* Use wide width to match sibling sections; paragraphs constrain themselves via .prose p */
  max-width: var(--content-wide);
}

/* ===== NAVIGATION ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-divider);
  transition: box-shadow 0.3s ease;
}

.site-header--scrolled {
  box-shadow: var(--shadow-sm);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: var(--space-4);
  gap: var(--space-4);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  color: var(--color-navy);
  flex-shrink: 0;
}

.nav__logo img {
  height: 44px;
  width: auto;
}

.nav__logo-text {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 500;
  line-height: 1.2;
  color: var(--color-navy);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  list-style: none;
}

.nav__links a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-muted);
  text-decoration: none;
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-md);
  white-space: nowrap;
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--color-navy);
  background: var(--color-surface-alt);
}

/* Mobile nav */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
  cursor: pointer;
  z-index: 110;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-navy);
  border-radius: 2px;
  transition: all 0.3s ease;
}

@media (max-width: 900px) {
  .nav__toggle {
    display: flex;
  }

  .nav__links {
    position: fixed;
    top: 0;
    right: -320px;
    width: 280px;
    max-width: 85vw;
    height: 100dvh;
    flex-direction: column;
    align-items: flex-start;
    background: white;
    padding: var(--space-20) var(--space-6) var(--space-6);
    gap: var(--space-1);
    box-shadow: var(--shadow-xl);
    transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 105;
    overflow-y: auto;
    visibility: hidden;
  }

  .nav__links.open {
    right: 0;
    visibility: visible;
  }

  .nav__links a {
    font-size: var(--text-base);
    padding: var(--space-3) var(--space-4);
    width: 100%;
  }

  .nav__overlay {
    position: fixed;
    inset: 0;
    background: rgba(27, 58, 75, 0.3);
    z-index: 102;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
  }

  .nav__overlay.open {
    opacity: 1;
    pointer-events: all;
  }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-navy);
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(27,58,75,0.85) 0%, rgba(27,58,75,0.6) 50%, rgba(44,140,153,0.3) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding-block: var(--space-16);
}

.hero__title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 500;
  color: white;
  margin-bottom: var(--space-6);
  line-height: 1.1;
}

.hero__subtitle {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.9);
  margin-bottom: var(--space-8);
  line-height: 1.6;
  font-weight: 300;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  font-size: var(--text-sm);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-lg);
  cursor: pointer;
  border: 2px solid transparent;
}

.btn--primary {
  background: var(--color-teal);
  color: white;
  border-color: var(--color-teal);
}

.btn--primary:hover {
  background: var(--color-teal-dark);
  border-color: var(--color-teal-dark);
}

.btn--outline {
  background: transparent;
  color: var(--color-teal);
  border-color: var(--color-teal);
}

.btn--outline:hover {
  background: var(--color-teal);
  color: white;
}

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

.btn--white:hover {
  background: var(--color-soft-gray);
  border-color: var(--color-soft-gray);
}

.btn--large {
  padding: var(--space-4) var(--space-8);
  font-size: var(--text-base);
  border-radius: var(--radius-xl);
}

.btn--arrow::after {
  content: '→';
  transition: transform 0.2s ease;
}

.btn--arrow:hover::after {
  transform: translateX(4px);
}

/* ===== SECTIONS ===== */
.section {
  padding-block: clamp(var(--space-12), 8vw, var(--space-24));
}

.section--alt {
  background: var(--color-surface-alt);
}

.section--navy {
  background: var(--color-navy);
  color: white;
}

.section--cream {
  background: var(--color-cream);
}

.section__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--space-12);
}

.section__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 500;
  color: var(--color-navy);
  margin-bottom: var(--space-4);
}

.section--navy .section__title {
  color: white;
}

.section__subtitle {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.7;
}

.section--navy .section__subtitle {
  color: rgba(255,255,255,0.8);
}

/* ===== CARDS ===== */
.card-grid {
  display: grid;
  gap: var(--space-6);
}

.card-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

.card-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.card-grid--2 {
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 900px) {
  .card-grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .card-grid--3 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .card-grid--4 {
    grid-template-columns: 1fr;
  }
  .card-grid--2 {
    grid-template-columns: 1fr;
  }
}

.card {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  border: 1px solid var(--color-divider);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.card__icon {
  width: 48px;
  height: 48px;
  background: rgba(44, 140, 153, 0.1);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
  color: var(--color-teal);
}

.card__icon svg {
  width: 24px;
  height: 24px;
}

.card__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--color-navy);
  margin-bottom: var(--space-3);
}

.card__text {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ===== STATS ===== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
  text-align: center;
}

@media (max-width: 600px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
}

.stat__number {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 500;
  color: var(--color-teal-light);
  line-height: 1;
  margin-bottom: var(--space-3);
}

.stat__label {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.85);
  max-width: 280px;
  margin: 0 auto;
}

.stat__source {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.5);
  margin-top: var(--space-8);
  text-align: center;
}

/* ===== COACH PREVIEW (Home) ===== */
.coach-preview {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-6);
}

.coach-preview__item {
  text-align: center;
  text-decoration: none;
  color: var(--color-text);
}

.coach-preview__img {
  width: 88px;
  height: 88px;
  border-radius: var(--radius-full);
  object-fit: cover;
  margin: 0 auto var(--space-3);
  border: 3px solid var(--color-divider);
  transition: border-color 0.2s ease;
}

.coach-preview__item:hover .coach-preview__img {
  border-color: var(--color-teal);
}

.coach-preview__name {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-navy);
}

/* ===== COACH CARDS (Coaches page) ===== */
.coach-card {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  border: 1px solid var(--color-divider);
  display: flex;
  gap: var(--space-6);
  transition: box-shadow 0.2s ease;
}

.coach-card:hover {
  box-shadow: var(--shadow-md);
}

.coach-card__photo {
  width: 120px;
  height: 120px;
  border-radius: var(--radius-full);
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid var(--color-divider);
}

.coach-card__info {
  flex: 1;
  min-width: 0;
}

.coach-card__name {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--color-navy);
  margin-bottom: var(--space-1);
}

.coach-card__creds {
  font-size: var(--text-xs);
  color: var(--color-teal);
  font-weight: 600;
  margin-bottom: var(--space-2);
}

.coach-card__creds--extra {
  color: var(--color-text-muted);
  font-weight: 500;
  font-style: italic;
  margin-top: calc(var(--space-2) * -1 + 2px);
}

.coach-card__business {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  font-style: italic;
  margin-bottom: var(--space-3);
}

.coach-card__bio {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-4);
  overflow-wrap: break-word;
  word-break: break-word;
}

.coach-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
}

.tag {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 500;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  background: rgba(44, 140, 153, 0.1);
  color: var(--color-teal-dark);
}

.coach-card__links {
  display: flex;
  gap: var(--space-3);
}

.coach-card__links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background: var(--color-surface-alt);
  color: var(--color-text-muted);
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.coach-card__links a:hover {
  background: var(--color-teal);
  color: white;
}

.coach-card__links svg {
  width: 18px;
  height: 18px;
}

/* Phone tooltip on hover (desktop) */
.coach-card__links a.has-tooltip {
  position: relative;
}

.coach-card__links a.has-tooltip::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: var(--color-navy);
  color: white;
  font-size: var(--text-sm);
  font-weight: 500;
  font-family: var(--font-body);
  padding: 6px 10px;
  border-radius: var(--radius-md);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.coach-card__links a.has-tooltip::before {
  content: "";
  position: absolute;
  bottom: calc(100% + 2px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  border: 6px solid transparent;
  border-top-color: var(--color-navy);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 10;
}

@media (hover: hover) {
  .coach-card__links a.has-tooltip:hover::after,
  .coach-card__links a.has-tooltip:hover::before,
  .coach-card__links a.has-tooltip:focus-visible::after,
  .coach-card__links a.has-tooltip:focus-visible::before {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  .coach-card__links a.has-tooltip:hover::after,
  .coach-card__links a.has-tooltip:focus-visible::after {
    transform: translateX(-50%) translateY(0);
  }
}

@media (max-width: 600px) {
  .coach-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--space-5);
    gap: var(--space-4);
  }

  .coach-card__info {
    width: 100%;
  }

  .coach-card__tags {
    justify-content: center;
  }

  .coach-card__links {
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* ===== COACH CARD — PLACEHOLDER PHOTO ===== */
.coach-card__photo--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-teal-light), var(--color-teal-dark));
  color: white;
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 500;
  letter-spacing: 0.05em;
}

/* ===== COACH CARD — EXPANDABLE BIO ===== */
.coach-card__bio-wrap {
  margin-bottom: var(--space-4);
}

.coach-card__bio[data-bio="collapsed"] {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: var(--space-2);
}

.coach-card__bio[data-bio="expanded"] {
  display: block;
  margin-bottom: var(--space-2);
}

.coach-card__bio--placeholder {
  font-style: italic;
  color: var(--color-text-muted);
}

.coach-card__bio-toggle {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-teal-dark);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: var(--space-1) 0;
  background: none;
  border: none;
  cursor: pointer;
  border-bottom: 1px solid transparent;
}

.coach-card__bio-toggle:hover,
.coach-card__bio-toggle:focus-visible {
  color: var(--color-teal);
  border-bottom-color: var(--color-teal);
  outline: none;
}

.coach-card__specialties {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  line-height: 1.6;
  margin-bottom: var(--space-4);
  font-style: italic;
}

/* ===== FILTER BAR ===== */
.filter-bar {
  background: var(--color-surface);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  max-width: 100%;
  overflow: hidden;
}

@media (max-width: 600px) {
  .filter-bar {
    padding: var(--space-4);
  }
}

.filter-bar__label {
  margin-bottom: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.filter-bar__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--color-navy);
}

.filter-bar__help {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

.filter-bar__buttons.filter-list {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-5) 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-3) var(--space-5);
}

@media (max-width: 720px) {
  .filter-bar__buttons.filter-list {
    grid-template-columns: 1fr;
    gap: var(--space-3);
  }
}

.filter-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-1);
  min-width: 0;
}

.filter-item--full {
  grid-column: 1 / -1;
}

.filter-item__desc {
  font-size: var(--text-xs);
  line-height: 1.4;
  color: var(--color-text-muted);
  padding-left: var(--space-1);
  overflow-wrap: break-word;
  word-break: break-word;
  max-width: 100%;
}

.filter-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-sm);
  font-weight: 500;
  font-family: var(--font-body);
  color: var(--color-text-muted);
  background: var(--color-surface-alt);
  border: 1.5px solid transparent;
  border-radius: var(--radius-full);
  cursor: pointer;
  white-space: nowrap;
  text-align: left;
  max-width: 100%;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.filter-btn__label {
  font-weight: 500;
  min-width: 0;
  overflow-wrap: break-word;
  word-break: break-word;
}

@media (max-width: 720px) {
  .filter-btn {
    white-space: normal;
    text-align: left;
  }
}

.filter-btn:hover {
  color: var(--color-navy);
  background: var(--color-cream);
  border-color: var(--color-border);
}

.filter-btn:focus-visible {
  outline: 2px solid var(--color-teal);
  outline-offset: 2px;
}

.filter-btn.is-active {
  background: var(--color-teal);
  color: white;
  border-color: var(--color-teal);
}

.filter-btn.is-active:hover {
  background: var(--color-teal-dark);
  border-color: var(--color-teal-dark);
}

.filter-btn__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 var(--space-2);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--color-text-faint);
  background: white;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-divider);
}

.filter-btn.is-active .filter-btn__count {
  color: var(--color-teal-dark);
  background: white;
  border-color: white;
}

.filter-bar__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  flex-wrap: wrap;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.filter-bar__count-text {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.filter-bar__clear {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-teal-dark);
  background: none;
  border: none;
  padding: var(--space-1) var(--space-2);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.filter-bar__clear:hover {
  color: var(--color-teal);
  text-decoration: underline;
}

.filter-empty {
  text-align: center;
  padding: var(--space-16) var(--space-4);
  color: var(--color-text-muted);
  font-size: var(--text-base);
}

.filter-empty p {
  margin-bottom: var(--space-6);
}

/* coach-tag pill (shown on each card) — replaces generic .tag on coaches page */
.coach-tag {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 500;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  background: rgba(44, 140, 153, 0.1);
  color: var(--color-teal-dark);
}

.coach-card[hidden] {
  display: none !important;
}

/* ===== TIMELINE ===== */
.timeline {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--color-divider);
}

.timeline__step {
  position: relative;
  padding-left: 76px;
  padding-bottom: var(--space-10);
}

.timeline__step:last-child {
  padding-bottom: 0;
}

.timeline__number {
  position: absolute;
  left: 0;
  top: 0;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  background: var(--color-teal);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  z-index: 1;
}

.timeline__label {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--color-navy);
  margin-bottom: var(--space-2);
  padding-top: var(--space-3);
}

.timeline__text {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.7;
}

@media (max-width: 600px) {
  .timeline::before {
    left: 20px;
  }

  .timeline__step {
    padding-left: 56px;
  }

  .timeline__number {
    width: 40px;
    height: 40px;
    font-size: var(--text-sm);
  }
}

/* ===== COMPARISON TABLE (coaching page) ===== */
.comparison-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
}

@media (max-width: 900px) {
  .comparison-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.comparison-card {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  border: 2px solid var(--color-divider);
}

.comparison-card--highlight {
  border-color: var(--color-teal);
  box-shadow: 0 0 0 4px rgba(44, 140, 153, 0.1);
}

.comparison-card__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: var(--space-5);
  padding-bottom: var(--space-3);
  border-bottom: 2px solid var(--color-divider);
}

.comparison-card--highlight .comparison-card__title {
  color: var(--color-teal);
  border-bottom-color: var(--color-teal);
}

.comparison-card__row {
  margin-bottom: var(--space-4);
}

.comparison-card__label {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
  margin-bottom: var(--space-1);
}

.comparison-card__value {
  font-size: var(--text-sm);
  color: var(--color-text);
  line-height: 1.6;
}

/* ===== CREDENTIAL TIERS ===== */
.tier-row {
  display: flex;
  gap: var(--space-5);
  align-items: stretch;
}

@media (max-width: 600px) {
  .tier-row {
    flex-direction: column;
  }
}

.tier-card {
  flex: 1;
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  border: 1px solid var(--color-divider);
  text-align: center;
  position: relative;
}

.tier-card--acc {
  border-bottom: 4px solid #5aa886;
}

.tier-card--pcc {
  border-bottom: 4px solid var(--color-teal);
}

.tier-card--mcc {
  border-bottom: 4px solid var(--color-navy);
}

.tier-card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  color: white;
  margin-bottom: var(--space-4);
}

.tier-card--acc .tier-card__badge { background: #5aa886; }
.tier-card--pcc .tier-card__badge { background: var(--color-teal); }
.tier-card--mcc .tier-card__badge { background: var(--color-navy); }

.tier-card__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--color-navy);
  margin-bottom: var(--space-2);
}

.tier-card__detail {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: var(--space-2);
}

/* ===== GLOSSARY BOX ===== */
.glossary-box {
  background: var(--color-surface-alt);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  margin-top: var(--space-10);
}

.glossary-box__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--color-navy);
  margin-bottom: var(--space-5);
}

.glossary-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-4);
}

.glossary-item {
  font-size: var(--text-sm);
  line-height: 1.6;
}

.glossary-item strong {
  color: var(--color-navy);
  font-weight: 600;
}

/* ===== CALLOUT BOX ===== */
.callout {
  background: rgba(44, 140, 153, 0.08);
  border-left: 4px solid var(--color-teal);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: var(--space-6) var(--space-8);
  margin-bottom: var(--space-8);
}

.callout__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--color-teal-dark);
  margin-bottom: var(--space-4);
}

.callout__item {
  font-size: var(--text-sm);
  color: var(--color-text);
  padding: var(--space-2) 0;
  display: flex;
  gap: var(--space-3);
  align-items: baseline;
}

.callout__item span {
  color: var(--color-text-muted);
}

/* ===== FORM ===== */
.form {
  max-width: 640px;
}

.form__group {
  margin-bottom: var(--space-5);
}

.form__label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: var(--space-2);
}

.form__input,
.form__select,
.form__textarea {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  font-size: var(--text-base);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: white;
  color: var(--color-text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--color-teal);
  box-shadow: 0 0 0 3px rgba(44, 140, 153, 0.15);
}

.form__textarea {
  min-height: 120px;
  resize: vertical;
}

.form__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%235a7181' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: var(--space-10);
}

/* ===== CHECKLIST ===== */
.checklist {
  list-style: none;
  padding: 0;
}

.checklist__item {
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
  padding: var(--space-3) 0;
  font-size: var(--text-base);
  color: var(--color-text);
  line-height: 1.6;
}

.checklist__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: var(--color-teal);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.checklist__icon svg {
  width: 14px;
  height: 14px;
  color: white;
}

/* ===== WHAT TO EXPECT GRID ===== */
.expect-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: var(--space-5);
}

.expect-item {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
}

.expect-item__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: rgba(44, 140, 153, 0.1);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-teal);
}

.expect-item__icon svg {
  width: 20px;
  height: 20px;
}

.expect-item__title {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: var(--space-1);
}

.expect-item__text {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ===== PAGE HEADER ===== */
.page-header {
  background: var(--color-navy);
  padding: clamp(var(--space-12), 8vw, var(--space-20)) 0;
  text-align: center;
}

.page-header__title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 500;
  color: white;
  margin-bottom: var(--space-4);
}

.page-header__subtitle {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.8);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== INVESTMENT BOX ===== */
.investment-box {
  background: var(--color-surface-alt);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  text-align: center;
  max-width: 720px;
  margin: var(--space-10) auto 0;
}

.investment-box__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--color-navy);
  margin-bottom: var(--space-4);
}

.investment-box__text {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-6);
}

/* ===== CONTACT COACHES GRID ===== */
.mini-coaches {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-4);
  padding-top: var(--space-4);
}

.mini-coach {
  text-align: center;
  text-decoration: none;
}

.mini-coach__img {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-full);
  object-fit: cover;
  margin: 0 auto var(--space-2);
  border: 2px solid var(--color-divider);
  transition: border-color 0.2s ease;
}

.mini-coach:hover .mini-coach__img {
  border-color: var(--color-teal);
}

.mini-coach__name {
  font-size: var(--text-xs);
  color: var(--color-navy);
  font-weight: 500;
}

/* ===== MEMBERSHIP BENEFITS ===== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-5);
}

.benefit-card {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  border: 1px solid var(--color-divider);
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
}

.benefit-card__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: rgba(44, 140, 153, 0.1);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-teal);
}

.benefit-card__icon svg {
  width: 22px;
  height: 22px;
}

.benefit-card__title {
  font-weight: 700;
  font-size: var(--text-sm);
  color: var(--color-navy);
  margin-bottom: var(--space-2);
}

.benefit-card__text {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--color-navy);
  color: rgba(255,255,255,0.8);
  padding-block: var(--space-12);
}

.footer__mission {
  max-width: 820px;
  margin: 0 auto var(--space-10);
  padding-bottom: var(--space-10);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  text-align: center;
}

.footer__mission-heading {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 500;
  color: white;
  letter-spacing: normal;
  text-transform: none;
  margin-bottom: var(--space-4);
}

.footer__mission-text {
  font-size: var(--text-sm);
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
  max-width: 78ch;
  margin: 0 auto;
  text-align: center;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-8);
  margin-bottom: var(--space-10);
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.footer__brand img {
  height: 56px;
  width: 56px;
  border-radius: 50%;
  background: white;
  object-fit: cover;
}

.footer__brand-text {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: white;
  font-weight: 500;
}

.footer__tagline {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

.footer__heading {
  font-size: var(--text-sm);
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-4);
}

.footer__links {
  list-style: none;
  padding: 0;
}

.footer__links li {
  margin-bottom: var(--space-2);
}

.footer__links a {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.7);
  text-decoration: none;
}

.footer__links a:hover {
  color: white;
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: var(--space-6);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.footer__copy {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.5);
}

.footer__attribution a {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.4);
  text-decoration: none;
}

.footer__attribution a:hover {
  color: rgba(255,255,255,0.7);
}

/* ===== PROSE ===== */
.prose h2 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 500;
  color: var(--color-navy);
  margin-top: var(--space-10);
  margin-bottom: var(--space-5);
}

.prose h3 {
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-navy);
  margin-top: var(--space-8);
  margin-bottom: var(--space-4);
}

/* Prose readable measure: ~680px works as a consistent column for both prose text and callout blocks */
.prose p {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: var(--space-5);
  max-width: 680px;
  margin-inline: auto;
}

.prose h2,
.prose h3 {
  max-width: 680px;
  margin-inline: auto;
}

.prose .big-c-callout,
.prose .callout {
  max-width: 680px;
  margin-inline: auto;
}

/* In a narrow container, child callout blocks should also align with prose */
.container--narrow .callout {
  max-width: 680px;
  margin-inline: auto;
}

.prose strong {
  color: var(--color-text);
  font-weight: 600;
}

/* ===== UTILITIES ===== */
.text-center { text-align: center; }
.mt-8 { margin-top: var(--space-8); }
.mt-10 { margin-top: var(--space-10); }
.mb-0 { margin-bottom: 0; }
.mx-auto { margin-inline: auto; }

/* Fade-in animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

.fade-in--delay-1 { animation-delay: 0.1s; }
.fade-in--delay-2 { animation-delay: 0.2s; }
.fade-in--delay-3 { animation-delay: 0.3s; }
.fade-in--delay-4 { animation-delay: 0.4s; }

/* ===== CREDENTIAL TIERS (4-card update) ===== */
.tier-row--four {
  flex-wrap: wrap;
}

.tier-row--four .tier-card {
  flex: 1 1 calc(25% - var(--space-5));
  min-width: 220px;
}

@media (max-width: 960px) {
  .tier-row--four .tier-card {
    flex: 1 1 calc(50% - var(--space-5));
  }
}

@media (max-width: 600px) {
  .tier-row--four {
    flex-direction: column;
  }
  .tier-row--four .tier-card {
    flex: 1 1 auto;
    min-width: 0;
  }
}

/* BCC uses a warm amber to sit between ACC (green) and PCC (teal) */
.tier-card--bcc {
  border-bottom: 4px solid #c9873f;
}

.tier-card--bcc .tier-card__badge {
  background: #c9873f;
}

.tier-card__agency {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  line-height: 1.5;
  margin-top: var(--space-3);
  margin-bottom: 0;
  font-style: italic;
}

/* ===== INLINE CHECKLIST LINK ===== */
.checklist__link {
  color: var(--color-teal);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.15s ease;
}

.checklist__link:hover {
  color: var(--color-teal-dark);
}

/* ===== BIG C / LITTLE C CALLOUT ===== */
.big-c-callout {
  margin-top: var(--space-8);
  padding: var(--space-6) var(--space-8);
  padding-left: var(--space-10);
  background: var(--color-surface-alt);
  border-left: 4px solid var(--color-teal);
  border-radius: var(--radius-lg);
}

.big-c-callout__label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-teal);
  margin-bottom: var(--space-4);
}

.big-c-callout p {
  margin-bottom: var(--space-4);
  line-height: 1.7;
}

/* ===== GET STARTED — CONTACT PATHS ===== */
.contact-path {
  display: flex;
  gap: var(--space-6);
  align-items: flex-start;
  background: var(--color-surface);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
}

.contact-path__number {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: var(--color-teal);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-lg);
}

.contact-path__content {
  flex: 1;
  min-width: 0;
}

.contact-path__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 500;
  color: var(--color-navy);
  margin-bottom: var(--space-3);
  line-height: 1.3;
}

.contact-path__text {
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-5);
}

.contact-path__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: var(--space-6) 0;
  position: relative;
}

.contact-path__divider::before,
.contact-path__divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--color-divider);
}

.contact-path__divider span {
  padding: 0 var(--space-4);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-style: italic;
  color: var(--color-text-muted);
  text-transform: lowercase;
  letter-spacing: 0.05em;
}

.contact-path__note {
  margin-top: var(--space-4);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  font-style: italic;
}

.btn.is-placeholder {
  opacity: 0.75;
  cursor: not-allowed;
  background: var(--color-text-muted);
  border-color: var(--color-text-muted);
}

.btn.is-placeholder:hover {
  background: var(--color-text-muted);
  border-color: var(--color-text-muted);
  transform: none;
}

@media (max-width: 640px) {
  .contact-path {
    flex-direction: column;
    gap: var(--space-4);
    padding: var(--space-6);
  }
  .contact-path__number {
    width: 40px;
    height: 40px;
  }
}
