/* ============================================================
   kodiakrichards.com — Global Styles
   Carl Rogers meets Apple. Warm, filmic, deeply human.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,600;1,400&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,300&display=swap');

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
  /* Palette — pulled from the sunset beach hero photo */
  --bg:           #FAF8F5;   /* warm white */
  --bg-warm:      #F2EDE6;   /* warm cream */
  --bg-section:   #EAE3D8;   /* muted tan */
  --text:         #1C1C1A;   /* near black */
  --text-muted:   #5C5A55;   /* warm gray */
  --text-light:   #9C9A95;   /* light gray */
  --accent:       #4E7F8A;   /* Pacific teal — UI */
  --accent-dark:  #325E68;   /* deep coastal */
  --accent-pale:  #C8DDE3;   /* sea foam */
  --accent-warm:  #B8432C;   /* earthy blood orange / brick red — buttons */
  --accent-warm-dark: #963626;
  --border:       #DDD8D0;   /* warm border */
  --white:        #FFFFFF;

  /* Typography */
  --serif:  'Lora', Georgia, 'Times New Roman', serif;
  --sans:   'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing scale */
  --sp-2xs: 0.25rem;
  --sp-xs:  0.5rem;
  --sp-sm:  0.875rem;
  --sp-md:  1.5rem;
  --sp-lg:  3rem;
  --sp-xl:  5rem;
  --sp-2xl: 8rem;

  /* Layout */
  --max-w:    1200px;
  --nav-h:    72px;
  --pad:      clamp(1.25rem, 5vw, 3rem);

  /* Radius */
  --r-sm:   8px;
  --r-md:   16px;
  --r-lg:   28px;
  --r-pill: 100px;

  /* Motion */
  --ease: 0.35s cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font: inherit;
  color: inherit;
}

input, textarea {
  font: inherit;
  color: inherit;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.015em;
}

h1 { font-size: clamp(2.5rem,  6vw,  5rem);  }
h2 { font-size: clamp(1.875rem, 4vw, 3rem);  }
h3 { font-size: clamp(1.25rem,  2.5vw, 1.75rem); }
h4 { font-size: clamp(1.0625rem, 1.8vw, 1.25rem); }

p {
  font-size: clamp(0.9375rem, 1.4vw, 1.0625rem);
  line-height: 1.75;
}

.label {
  font-family: var(--sans);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light);
  display: block;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--pad);
}

.section {
  padding-block: var(--sp-xl);
}

.section--lg {
  padding-block: var(--sp-2xl);
}

/* ============================================================
   FADE-IN ON SCROLL
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in.d1 { transition-delay: 0.1s; }
.fade-in.d2 { transition-delay: 0.22s; }
.fade-in.d3 { transition-delay: 0.34s; }
.fade-in.d4 { transition-delay: 0.46s; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-xs);
  padding: 0.875rem 2rem;
  border-radius: var(--r-pill);
  font-family: var(--sans);
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: background-color var(--ease), color var(--ease),
              border-color var(--ease), transform 0.2s ease;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
}

.btn:hover        { transform: translateY(-1px); }
.btn:active       { transform: translateY(0); }

.btn-primary      { background-color: var(--accent-warm); color: var(--white); }
.btn-primary:hover { background-color: var(--accent-warm-dark); }

.btn-secondary {
  background-color: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.55);
}
.btn-secondary:hover {
  background-color: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.85);
}

.btn-outline {
  background-color: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent-dark);
}

.btn-outline-warm {
  background-color: transparent;
  color: var(--accent-warm);
  border: 1.5px solid var(--accent-warm);
}
.btn-outline-warm:hover {
  background-color: rgba(184, 67, 44, 0.06);
}

.btn-dark        { background-color: var(--text); color: var(--white); }
.btn-dark:hover  { background-color: #2E2E2A; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background-color var(--ease), backdrop-filter var(--ease),
              box-shadow var(--ease), top var(--ease), left var(--ease),
              right var(--ease), border-radius var(--ease);
}

.nav.scrolled {
  top: 10px;
  left: 14px;
  right: 14px;
  border-radius: 14px;
  background-color: rgba(250, 248, 245, 0.42);
  backdrop-filter: blur(11px) saturate(1.85);
  -webkit-backdrop-filter: blur(11px) saturate(1.85);
  box-shadow: 0 2px 16px rgba(28,28,26,0.06), 0 1px 3px rgba(28,28,26,0.04);
  border: 1px solid rgba(255,255,255,0.22);
}

/* Light nav — pages without a dark hero */
.nav--light {
  background-color: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 var(--border);
}

.nav__inner {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-md);
}

/* Wordmark */
.nav__wordmark {
  font-family: var(--serif);
  font-size: 1.0625rem;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.01em;
  flex-shrink: 0;
  transition: color var(--ease);
}
.nav.scrolled .nav__wordmark,
.nav--light .nav__wordmark  { color: var(--text); }

/* Links */
.nav__links {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
}

.nav__links a {
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(255,255,255,0.8);
  transition: color var(--ease);
  letter-spacing: 0.01em;
}
.nav__links a:hover,
.nav__links a.active           { color: var(--white); }

.nav.scrolled .nav__links a,
.nav--light .nav__links a      { color: var(--text-muted); }
.nav.scrolled .nav__links a:hover,
.nav.scrolled .nav__links a.active,
.nav--light .nav__links a:hover,
.nav--light .nav__links a.active { color: var(--text); }

/* CTA */
.nav__cta { flex-shrink: 0; }
.nav__cta .btn {
  padding: 0.625rem 1.375rem;
  font-size: 0.875rem;
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px 4px;
  cursor: pointer;
}

.nav__hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background-color: var(--white);
  transition: transform var(--ease), opacity var(--ease), background-color var(--ease);
  transform-origin: center;
}

.nav.scrolled .nav__hamburger span,
.nav--light .nav__hamburger span { background-color: var(--text); }

.nav__hamburger.open span:nth-child(1) { transform: translateY(6.5px)  rotate(45deg);  }
.nav__hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile drawer */
.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background-color: rgba(250, 248, 245, 0.97);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: var(--sp-md) var(--pad) var(--sp-lg);
  z-index: 199;
  flex-direction: column;
  gap: var(--sp-sm);
  border-bottom: 1px solid var(--border);
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.22s ease, transform 0.22s ease;
  pointer-events: none;
}

.nav__mobile.open {
  display: flex;
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.nav__mobile a {
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--text);
  padding: var(--sp-sm) 0;
  border-bottom: 1px solid var(--border);
}
.nav__mobile a:last-of-type { border-bottom: none; }

.nav__mobile .btn {
  margin-top: var(--sp-sm);
  align-self: flex-start;
  padding: 0.875rem 2rem;
  font-size: 0.9375rem;
  border-bottom: none;
  line-height: 1;
}

@media (max-width: 768px) {
  .nav__links,
  .nav__cta  { display: none; }
  .nav__hamburger { display: flex; }
}

/* ============================================================
   FILM GRAIN OVERLAY (canvas-injected via JS)
   ============================================================ */
.grain-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.045;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 4;
  background-size: 256px 256px;
}

/* ============================================================
   HERO — FULL BLEED
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Hero bg — solid muted cool color per page */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: #2C3E4A;   /* default: coastal slate */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero__bg--home    { background-color: #2C3E4A; background-position: center 30%; }  /* deep coastal slate */
.hero__bg--work    { background-color: #28393A; }  /* deep forest teal */
.hero__bg--forest  { background-color: #263330; }  /* dark sage-forest */

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(20, 15, 12, 0.80) 0%,
    rgba(20, 15, 12, 0.55) 30%,
    rgba(20, 15, 12, 0.18) 65%,
    rgba(20, 15, 12, 0.04) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 5;
  text-align: center;
  padding: calc(var(--nav-h) + var(--sp-2xl)) var(--pad) var(--sp-xl);
  max-width: 840px;
  width: 100%;
}

.hero__content .label {
  color: rgba(255,255,255,0.55);
  margin-bottom: var(--sp-md);
}

.hero__content h1 {
  color: var(--white);
  font-style: italic;
  text-shadow: 0 2px 24px rgba(0,0,0,0.18);
  margin-bottom: var(--sp-md);
}

.hero__sub {
  color: rgba(255,255,255,0.8);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 300;
  max-width: 540px;
  margin-inline: auto;
  margin-bottom: var(--sp-lg);
}

.hero__ctas {
  display: flex;
  gap: var(--sp-sm);
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   PHOTO ACCENT STRIP — full-bleed image spacer between sections
   ============================================================ */
.photo-strip {
  width: 100%;
  height: clamp(220px, 38vh, 480px);
  background-size: cover;
  background-position: center;
  background-color: #2C3530;
}

/* ============================================================
   SECTION RULE — visual divider between content blocks
   ============================================================ */
.section-rule {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--pad);
}
.section-rule__line {
  border: none;
  border-top: 1px solid var(--border);
  margin-block: 0;
}

/* ============================================================
   PAGE HERO — text-forward (non full-bleed)
   ============================================================ */
.page-hero {
  padding: calc(var(--nav-h) + var(--sp-xl)) var(--pad) var(--sp-xl);
  max-width: var(--max-w);
  margin-inline: auto;
}

.page-hero .label {
  margin-bottom: var(--sp-md);
}

.page-hero h1 {
  max-width: 800px;
}

.page-hero__sub {
  color: var(--text-muted);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  max-width: 580px;
  margin-top: var(--sp-md);
  line-height: 1.75;
}

/* ============================================================
   OFFERS SECTION
   ============================================================ */
.offers {
  padding-block: var(--sp-2xl);
  background-color: var(--bg);
}

.offers__inner {
  max-width: 760px;
  margin-inline: auto;
}

.offers__header {
  text-align: center;
  margin-bottom: var(--sp-lg);
  padding-inline: var(--pad);
}

.offers__header .label  { margin-bottom: var(--sp-sm); }
.offers__header h2      { margin-bottom: var(--sp-sm); }
.offers__sub            { color: var(--text-muted); font-size: 1rem; max-width: 480px; margin-inline: auto; }

.offers__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-md);
  padding-inline: var(--pad);
}

.offer-card {
  background-color: var(--bg-warm);
  border-radius: var(--r-lg);
  overflow: clip;
  display: block;
  transition: transform var(--ease), box-shadow var(--ease);
  cursor: pointer;
  border: 1.5px solid var(--border);
  box-shadow: 0 2px 12px rgba(28,28,26,0.06), 0 1px 3px rgba(28,28,26,0.04);
}

.offer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 64px rgba(28,28,26,0.1);
}

.offer-card__image {
  width: 100%;
  aspect-ratio: 16 / 8;
  height: auto;
  overflow: clip;
  position: relative;
  background-size: cover;
  background-position: center;
  background-color: var(--bg-section);
}

.offer-card__image-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(20, 15, 12, 0.55) 0%,
    rgba(20, 15, 12, 0.15) 50%,
    rgba(20, 15, 12, 0.0) 100%
  );
}

.offer-card__body {
  padding: var(--sp-sm) var(--sp-md) var(--sp-md);
}

/* Category label — sits in the card body above the title */
.offer-card__tag {
  font-size: 0.675rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9A3020;
  display: inline-block;
  margin-bottom: var(--sp-xs);
  border: 1.5px solid rgba(154, 48, 32, 0.5);
  border-radius: var(--r-pill);
  padding: 4px 12px;
  background-color: rgba(184, 67, 44, 0.10);
}

.offer-card__title {
  font-family: var(--serif);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  margin-bottom: var(--sp-sm);
  font-weight: 600;
}

.offer-card__desc {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: var(--sp-sm);
}

.offer-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--accent-warm);
  transition: gap var(--ease);
}

.offer-card:hover .offer-card__link { gap: 10px; }

.offer-card__link svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.offer-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: var(--sp-sm);
}

@media (max-width: 640px) {
  .offers__grid {
    grid-template-columns: 1fr;
    justify-items: center;
  }
  .offer-card {
    width: 100%;
    max-width: 420px;
  }
  .two-places__grid .offer-card {
    max-width: 420px;
    margin-inline: auto;
  }
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  padding-block: var(--sp-xl);
  background-color: var(--bg-warm);
  overflow: hidden;
}

.testimonials__inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--pad);
}

.testimonials__header {
  text-align: center;
  margin-bottom: var(--sp-lg);
}

.testimonials__carousel {
  position: relative;
  overflow: hidden;
}

.testimonials__track {
  display: flex;
  transition: transform 0.65s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.testimonial-slide {
  flex: 0 0 100%;
  padding-inline: clamp(0px, 8vw, 80px);
  text-align: center;
}

.testimonial-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.125rem, 2.4vw, 1.4375rem);
  line-height: 1.7;
  color: var(--text);
  max-width: 720px;
  margin-inline: auto;
  margin-bottom: var(--sp-md);
}

.testimonial-attr {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-light);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.testimonials__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: var(--sp-lg);
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background-color: var(--border);
  transition: width var(--ease), background-color var(--ease);
  cursor: pointer;
  padding: 0;
}

.dot.active {
  width: 20px;
  background-color: var(--accent);
}

/* ============================================================
   LEAD MAGNET
   ============================================================ */
.lead-magnet {
  padding-block: var(--sp-xl);
  background-color: var(--bg-section);
}

.lead-magnet__inner {
  max-width: 640px;
  margin-inline: auto;
  padding-inline: var(--pad);
  text-align: center;
}

.lead-magnet .label     { margin-bottom: var(--sp-sm); }
.lead-magnet h2         { font-style: italic; margin-bottom: var(--sp-sm); }
.lead-magnet__sub       { color: var(--text-muted); margin-bottom: var(--sp-lg); }

.lead-magnet__form {
  display: flex;
  gap: var(--sp-sm);
  max-width: 460px;
  margin-inline: auto;
}

.lead-magnet__input {
  flex: 1;
  min-width: 0;
  padding: 0.875rem 1.25rem;
  border: 1.5px solid var(--border);
  border-radius: var(--r-pill);
  background-color: var(--white);
  font-size: 0.9375rem;
  outline: none;
  transition: border-color var(--ease);
}

.lead-magnet__input:focus        { border-color: var(--accent); }
.lead-magnet__input::placeholder { color: var(--text-light); }

@media (max-width: 480px) {
  .lead-magnet__form { flex-direction: column; }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  padding-block: var(--sp-xl);
  background-color: var(--bg);
}

.about__inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--pad);
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(var(--sp-lg), 8vw, var(--sp-2xl));
  align-items: center;
}

.about__image {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

.about__img-fill {
  width: 100%;
  height: 100%;
  background-color: #8A6050; /* fallback if photo missing */
}

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

.about__text .label    { margin-bottom: var(--sp-md); }
.about__text h2        { margin-bottom: var(--sp-md); }
.about__text p         { color: var(--text-muted); margin-bottom: var(--sp-sm); }

.about__expandable {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.55s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.4s ease;
}

.about__expandable.open {
  max-height: 1200px;
  opacity: 1;
}

.about__expandable p {
  padding-top: var(--sp-sm);
}

.read-more {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--accent-warm);
  padding: 0;
  margin-top: var(--sp-sm);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: gap var(--ease);
}

.read-more:hover { gap: 11px; }

.read-more__icon {
  display: inline-block;
  transition: transform var(--ease);
  line-height: 1;
}

.read-more.open .read-more__icon {
  transform: rotate(90deg);
}

.about__link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--accent-warm);
  margin-top: var(--sp-md);
  transition: gap var(--ease);
}
.about__link:hover { gap: 11px; }

@media (max-width: 768px) {
  .about__inner {
    grid-template-columns: 1fr;
    gap: var(--sp-lg);
  }
  .about__image {
    aspect-ratio: 4 / 3;
    max-height: 380px;
  }
}

/* ============================================================
   PHILOSOPHY — 1:1 PAGE
   ============================================================ */
.philosophy {
  padding-block: var(--sp-xl);
  background-color: var(--bg);
}

.philosophy__inner {
  max-width: 700px;
  margin-inline: auto;
  padding-inline: var(--pad);
}

.philosophy .label  { margin-bottom: var(--sp-lg); }
.philosophy p {
  font-size: clamp(1.0625rem, 1.8vw, 1.25rem);
  line-height: 1.85;
  color: var(--text);
  margin-bottom: var(--sp-md);
}
.philosophy p:last-child { margin-bottom: 0; }

/* ============================================================
   COACHING TRACKS
   ============================================================ */
.tracks {
  padding-block: var(--sp-xl);
  background-color: var(--bg-warm);
}

.tracks__inner {
  max-width: var(--max-w);
  margin-inline: auto;
}

.tracks__header {
  padding-inline: var(--pad);
  margin-bottom: var(--sp-lg);
}

.tracks__header .label { margin-bottom: var(--sp-sm); }

.tracks__grid {
  display: flex;
  align-items: stretch;
  overflow-x: auto;
  overflow-y: hidden;
  gap: var(--sp-md);
  padding-inline: var(--pad);
  padding-block-end: var(--sp-xs);
  scroll-snap-type: x mandatory;
  scroll-padding-inline-start: var(--pad);
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
  user-select: none;
}
.tracks__grid::-webkit-scrollbar { display: none; }
.tracks__grid.is-dragging        { cursor: grabbing; }

.track-card {
  background-color: var(--bg);
  border-radius: var(--r-lg);
  padding: 0;
  overflow: clip;
  border: 1.5px solid #C4BEB6;
  flex: 0 0 calc(33.333% - 14px);
  min-width: 260px;
  scroll-snap-align: start;
  transition: box-shadow var(--ease), transform var(--ease);
  display: flex;
  flex-direction: column;
}

.track-card:hover {
  box-shadow: 0 16px 48px rgba(28,28,26,0.10);
  transform: translateY(-3px);
}

/* Cover photo area */
.track-card__cover {
  position: relative;
  height: 175px;
  background-size: cover;
  background-position: center;
  background-color: var(--bg-section);
  flex-shrink: 0;
}

.track-card__cover-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(20, 15, 12, 0.72) 0%,
    rgba(20, 15, 12, 0.28) 50%,
    rgba(20, 15, 12, 0.0) 100%
  );
}

.track-card__num {
  position: absolute;
  bottom: var(--sp-sm);
  left: var(--sp-md);
  z-index: 2;
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1;
  margin-bottom: 0;
}

/* Card body (everything below the photo) */
.track-card__body {
  padding: var(--sp-md);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.track-card h3 {
  margin-bottom: var(--sp-sm);
  font-size: clamp(1.25rem, 2.2vw, 1.625rem);
  font-weight: 600;
}

.track-card p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: var(--sp-md);
}

.track-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: var(--sp-md);
}

.tag {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--accent-dark);
  background-color: var(--accent-pale);
  padding: 4px 10px;
  border-radius: var(--r-pill);
  letter-spacing: 0.03em;
}

/* Category label — sits in the card body above the title */
.track-card__label {
  font-size: 0.675rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9A3020;
  display: inline-block;
  align-self: flex-start;
  margin-bottom: var(--sp-xs);
  border: 1.5px solid rgba(154, 48, 32, 0.5);
  border-radius: var(--r-pill);
  padding: 4px 12px;
  background-color: rgba(184, 67, 44, 0.10);
}

/* Learn more button inside track card */
.track-card__expanded {
  overflow: clip;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease;
}
.track-card__expanded.open {
  max-height: 1200px;
  overflow: visible;
  opacity: 1;
}
.track-card__expanded p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  padding-top: var(--sp-sm);
  margin-bottom: 0;
}

.track-card__learn-more {
  margin-top: 0;
  padding-top: var(--sp-md);
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--accent-warm);
  padding-bottom: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--ease);
  align-self: flex-start;
}
.track-card__learn-more:hover { gap: 10px; }
.track-card__learn-more .lm-icon {
  display: inline-block;
  transition: transform var(--ease);
  line-height: 1;
}
.track-card__learn-more.open .lm-icon { transform: rotate(45deg); }

/* Tracks carousel — dot navigation */
.tracks__dots {
  display: flex;
  justify-content: flex-start;
  gap: 8px;
  padding-inline: var(--pad);
  margin-top: var(--sp-md);
}

/* Active track dot uses warm CTA accent, slightly wider */
.tracks__dots .dot.active {
  background-color: var(--accent-warm);
  width: 20px;
}

/* Book a Call CTA below coaching track group */
.tracks__cta {
  padding-inline: var(--pad);
  margin-top: var(--sp-lg);
}

/* Book a Call CTA below counseling track group */
.counseling-track__cta {
  margin-top: var(--sp-lg);
}

/* 4 cards: on medium screens use calc(50% - ...) */
@media (min-width: 769px) and (max-width: 1100px) {
  .track-card { flex: 0 0 calc(50% - 10px); }
}

@media (max-width: 768px) {
  .track-card {
    flex: 0 0 80vw;
    max-width: 340px;
  }
}

/* ============================================================
   COUNSELING — single track card in its own section
   ============================================================ */
.counseling-track {
  padding-block: var(--sp-xl);
  background-color: var(--bg);
}

.counseling-track__inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--pad);
}

.counseling-track__header {
  margin-bottom: var(--sp-lg);
}
.counseling-track__header .label { margin-bottom: var(--sp-sm); }

.counseling-card-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.counseling-card-wrap .track-card {
  min-width: 0;
}

@media (max-width: 640px) {
  .counseling-card-wrap {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   COUNSELING SECTION (old two-col — kept for reference)
   ============================================================ */
.counseling {
  padding-block: var(--sp-xl);
  background-color: var(--bg);
}

.counseling__inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--pad);
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(var(--sp-lg), 8vw, var(--sp-2xl));
  align-items: start;
}

.counseling__label-col { padding-top: 0.25rem; }
.counseling__label-col .label { margin-bottom: var(--sp-sm); }

.counseling__divider {
  width: 40px;
  height: 1.5px;
  background-color: var(--accent);
  margin-top: var(--sp-md);
}

.counseling__content h2    { margin-bottom: var(--sp-md); }
.counseling__content p     { color: var(--text-muted); margin-bottom: var(--sp-md); }
.counseling__content p:last-child { margin-bottom: 0; }

/* ============================================================
   TRACK DETAILS — accordion (deep dive, bottom of 1:1 page)
   ============================================================ */
.track-details {
  padding-block: var(--sp-xl);
  background-color: var(--bg-section);  /* distinct from bg-warm testimonials */
}

.track-details__inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--pad);
}

.track-details .label   { margin-bottom: var(--sp-md); }
.track-details h2       { margin-bottom: var(--sp-lg); }

.track-accordion {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
}

.track-accordion__item {
  border-bottom: 1px solid var(--border);
}

.track-accordion__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-md);
  padding-block: var(--sp-md);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.track-accordion__label {
  font-family: var(--serif);
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 400;
  color: var(--text);
}

.track-accordion__icon {
  font-size: 1.25rem;
  color: var(--text-light);
  transition: transform var(--ease);
  flex-shrink: 0;
  line-height: 1;
}
.track-accordion__item.open .track-accordion__icon { transform: rotate(45deg); }

.track-accordion__body {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease;
}
.track-accordion__item.open .track-accordion__body {
  max-height: 900px;
  opacity: 1;
}

.track-accordion__body p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.75;
  padding-bottom: var(--sp-md);
}

/* ============================================================
   THERAPY FAQ — About therapy & coaching section
   ============================================================ */
.therapy-faq__inner {
  max-width: 760px;
  margin-inline: auto;
  padding-inline: var(--pad);
}

.therapy-faq__title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: var(--sp-lg);
}

/* ============================================================
   TRACK SCROLL ARROWS
   ============================================================ */
.tracks__scroll-wrap {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-sm);
}

.tracks__arrow {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--bg);
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--ease), border-color var(--ease), color var(--ease);
  margin-top: 88px; /* align with mid-card visually */
}

.tracks__arrow:hover:not(:disabled) {
  background: var(--bg-section);
  border-color: var(--accent-warm);
  color: var(--accent-warm);
}

.tracks__arrow:active:not(:disabled) {
  background: var(--accent-pale);
}

.tracks__arrow:disabled {
  opacity: 0.25;
  cursor: not-allowed;
}

@media (max-width: 768px) {
  .tracks__scroll-wrap { gap: var(--sp-xs); }
  .tracks__arrow { width: 36px; height: 36px; margin-top: 72px; }
}

.counseling__disclaimer {
  font-size: 0.8rem;
  color: var(--text-light);
  font-style: italic;
  line-height: 1.65;
  margin-top: var(--sp-md);
  padding-top: var(--sp-md);
  border-top: 1px solid var(--border);
}

@media (max-width: 640px) {
  .counseling__inner {
    grid-template-columns: 1fr;
    gap: var(--sp-md);
  }
  .counseling__divider { display: none; }
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works {
  padding-block: var(--sp-xl);
  background-color: var(--bg-warm);
}

.how-it-works__inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--pad);
}

.how-it-works .label    { margin-bottom: var(--sp-md); }
.how-it-works h2        { margin-bottom: var(--sp-lg); }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-lg);
}

.step__num {
  font-family: var(--serif);
  font-size: clamp(4rem, 8vw, 6.5rem);
  font-weight: 400;
  color: var(--accent-pale);
  line-height: 0.9;
  margin-bottom: var(--sp-sm);
}

.step h3 {
  font-size: clamp(1.125rem, 1.8vw, 1.25rem);
  margin-bottom: var(--sp-xs);
}

.step p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.7;
}

@media (max-width: 640px) {
  .steps {
    grid-template-columns: 1fr;
    gap: var(--sp-md);
  }
}

/* ============================================================
   SPECIALIZATIONS
   ============================================================ */
.specializations {
  padding-block: var(--sp-xl);
  background-color: var(--bg);
}

.specializations__inner {
  max-width: 760px;
  margin-inline: auto;
  padding-inline: var(--pad);
}

.specializations .label  { margin-bottom: var(--sp-sm); }
.specializations h2      { font-size: clamp(1.5rem, 3vw, 2.25rem); }

.spec-list {
  display: flex;
  flex-direction: column;
}

.spec-item {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: var(--sp-sm) 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--ease), padding-left var(--ease);
  cursor: default;
}

.spec-item:first-child { border-top: 1px solid var(--border); }

.spec-item:hover {
  color: var(--text);
  padding-left: 10px;
}

/* Specializations pill cluster */
.spec-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-content: flex-start;
}

.spec-tag {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  background-color: var(--bg-warm);
  padding: 7px 14px;
  letter-spacing: 0.01em;
}

/* Specializations — featured pill bubbles */
.spec-featured {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: var(--sp-lg);
}
.spec-featured__item {
  font-size: 0.825rem;
  padding: 6px 14px;
  letter-spacing: 0.01em;
}

/* Collapsible "Other areas of focus" — summary styled as section title */
.spec-more summary {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: var(--sp-sm) 0;
  user-select: none;
}
.spec-more summary::-webkit-details-marker { display: none; }
.spec-more summary::after {
  content: '+';
  font-size: 1.375rem;
  font-weight: 400;
  color: var(--text-muted);
  margin-left: auto;
}
.spec-more[open] summary::after { content: '−'; }
.spec-more__cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: var(--sp-sm);
}

/* ============================================================
   POH INTRO
   ============================================================ */
.poh-intro {
  padding-block: var(--sp-xl);
  background-color: var(--bg);
}

.poh-intro__inner {
  max-width: 700px;
  margin-inline: auto;
  padding-inline: var(--pad);
}

.poh-intro .label        { margin-bottom: var(--sp-md); }
.poh-intro__heading {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  margin-bottom: var(--sp-lg);
}
.poh-intro p {
  font-size: clamp(1.0625rem, 1.8vw, 1.25rem);
  line-height: 1.85;
  color: var(--text-muted);
  margin-bottom: var(--sp-md);
}
.poh-intro p:last-of-type { margin-bottom: var(--sp-md); }
.poh-intro__emphasis {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.2rem, 2.2vw, 1.5rem) !important;
  color: var(--text) !important;
  line-height: 1.7 !important;
}

/* Story toggle — expandable origin story */
.poh-story__toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--accent-warm);
  border: none;
  border-radius: var(--r-pill);
  cursor: pointer;
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.9375rem;
  color: var(--white);
  padding: 0.625rem 1.25rem;
  margin-top: var(--sp-md);
  transition: background-color var(--ease), color var(--ease);
}
.poh-story__toggle:hover {
  background-color: var(--accent-warm-dark);
  color: var(--white);
}

.poh-story__toggle-icon {
  display: inline-block;
  font-style: normal;
  transition: transform var(--ease);
}
.poh-story__toggle.open .poh-story__toggle-icon { transform: rotate(45deg); }

.poh-story__body {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease;
  margin-top: 0;
}
.poh-story__body.open {
  max-height: 3000px;
  opacity: 1;
  margin-top: var(--sp-md);
}
.poh-story__body p {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  line-height: 1.85;
  color: var(--text-muted);
  margin-bottom: var(--sp-md);
}
.poh-story__body p:last-child { margin-bottom: 0; }
.poh-story__body ul {
  padding-left: 1.25rem;
  margin-bottom: var(--sp-md);
}
.poh-story__body li {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  line-height: 1.85;
  color: var(--text-muted);
  margin-bottom: 0.375rem;
}
.poh-story__body li:last-child { margin-bottom: 0; }

/* ============================================================
   INSIDE POH
   ============================================================ */
.inside-poh {
  padding-block: var(--sp-xl);
  background-color: var(--bg-warm);
}

.inside-poh__inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--pad);
}

.inside-poh .label  { margin-bottom: var(--sp-md); }
.inside-poh h2      { margin-bottom: var(--sp-lg); }

.poh-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-md);
}

.poh-item {
  background-color: var(--bg);
  border-radius: var(--r-md);
  padding: var(--sp-md) clamp(var(--sp-md), 3vw, var(--sp-lg));
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: var(--sp-xs);
  transition: box-shadow var(--ease);
}

.poh-item:hover {
  box-shadow: 0 8px 28px rgba(28,28,26,0.07);
}

.poh-item__name {
  font-family: var(--serif);
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--text);
}

.poh-item__desc {
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.65;
}

.inside-poh__cta {
  margin-top: var(--sp-lg);
  text-align: center;
}

/* Keep 2×2 grid down to 480px — 4 items shouldn't stack as a single column */
@media (max-width: 480px) {
  .poh-items { grid-template-columns: 1fr; }
}

/* ============================================================
   IRL SAN DIEGO
   ============================================================ */
.irl {
  padding-block: var(--sp-xl);
  background-color: var(--bg);
}

.irl__inner {
  max-width: 700px;
  margin-inline: auto;
  padding-inline: var(--pad);
}

.irl .label  { margin-bottom: var(--sp-md); }
.irl h2      { margin-bottom: var(--sp-md); }
.irl p       { color: var(--text-muted); font-size: clamp(1rem, 1.8vw, 1.2rem); line-height: 1.8; }
.irl__cta    { margin-top: var(--sp-lg); }

/* ============================================================
   TWO PLACES
   ============================================================ */
.two-places {
  padding-block: var(--sp-xl);
  background-color: var(--bg-warm);
}

.two-places {
  padding-block: var(--sp-2xl);
}

.two-places__inner {
  max-width: 760px;
  margin-inline: auto;
  padding-inline: var(--pad);
}

.two-places__header {
  text-align: center;
  margin-bottom: var(--sp-lg);
  padding-inline: var(--pad);
}
.two-places__header .label { margin-bottom: var(--sp-sm); }
.two-places__header h2     { font-size: clamp(1.5rem, 3vw, 2.25rem); }

.two-places__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-md);
}

/* Two Places cards: no hover lift (button is the action) */
.two-places__grid .offer-card {
  cursor: default;
}
.two-places__grid .offer-card:hover {
  transform: none;
  box-shadow: none;
}

/* Button inside Two Places card */
.two-places__grid .offer-card .btn {
  margin-top: var(--sp-sm);
}

/* On mobile, stack vertically */
@media (max-width: 640px) {
  .two-places__grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   CCC FRAMEWORK
   ============================================================ */
.ccc {
  padding-block: var(--sp-xl);
  background-color: var(--bg-warm);
  text-align: center;
}

/* Photo overlay variant — sunset tree background */
.ccc--photo {
  position: relative;
  background-size: cover;
  background-position: center;
  background-color: #1a1a14;
  padding-block: clamp(var(--sp-xl), 12vw, var(--sp-2xl));
}

.ccc__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(20, 15, 12, 0.82) 0%,
    rgba(20, 15, 12, 0.62) 40%,
    rgba(20, 15, 12, 0.50) 100%
  );
  z-index: 0;
}

.ccc--photo .ccc__inner     { position: relative; z-index: 1; }
.ccc--photo .label          { color: rgba(255,255,255,0.55); }
.ccc--photo .ccc__word-text { color: var(--white); }
.ccc--photo .ccc__word-sub  { color: rgba(255,255,255,0.82); }

.ccc__inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--pad);
}

.ccc .label  { margin-bottom: var(--sp-lg); }

.ccc__words {
  display: flex;
  justify-content: center;
  gap: clamp(var(--sp-lg), 7vw, var(--sp-2xl));
  flex-wrap: wrap;
  align-items: flex-start;
}

.ccc__word {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-xs);
}

.ccc__word-text {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(2.75rem, 7.5vw, 5.5rem);
  font-weight: 400;
  color: var(--text);
  line-height: 1;
}

.ccc__word-sub {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light);
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  padding-block: var(--sp-xl);
  background-color: var(--bg-section);
  text-align: center;
}

.cta-section__inner {
  max-width: 600px;
  margin-inline: auto;
  padding-inline: var(--pad);
}

.cta-section .label    { margin-bottom: var(--sp-sm); }
.cta-section h2        { font-style: italic; margin-bottom: var(--sp-sm); }
.cta-section__sub      { color: var(--text-muted); margin-bottom: var(--sp-lg); }

.cta-section__btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-md);
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background-color: #1C1C1A;
  color: rgba(255,255,255,0.55);
  padding-block-start: var(--sp-lg);
}

.footer__top {
  max-width: var(--max-w);
  margin-inline: auto;
  padding: 0 var(--pad) var(--sp-lg);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: var(--sp-md);
  align-items: start;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer__wordmark {
  font-family: var(--serif);
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.85);
  font-weight: 400;
  letter-spacing: 0.01em;
}

.footer__tagline {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.35);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.5;
  max-width: 260px;
}

.footer__nav {
  display: flex;
  gap: var(--sp-md);
  align-items: center;
}

.footer__nav a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--ease);
}
.footer__nav a:hover { color: rgba(255,255,255,0.9); }

.footer__social {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.footer__social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--ease), color var(--ease);
}
.footer__social a:hover {
  border-color: rgba(255,255,255,0.45);
  color: rgba(255,255,255,0.9);
}

.footer__bottom {
  max-width: var(--max-w);
  margin-inline: auto;
  padding: var(--sp-md) var(--pad);
}

.footer__legal {
  font-size: 0.7125rem;
  color: rgba(255,255,255,0.28);
  line-height: 1.65;
  max-width: 680px;
}

@media (max-width: 640px) {
  .footer__top {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--sp-md);
    padding-bottom: var(--sp-md);
  }
  .footer__nav     { justify-content: center; flex-wrap: wrap; gap: var(--sp-sm); }
  .footer__social  { justify-content: center; }
}

/* ============================================================
   SCROLL HINT ARROW (hero)
   ============================================================ */
.scroll-hint {
  position: absolute;
  bottom: var(--sp-md);
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.45);
}

.scroll-hint__line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.4));
  animation: scrollDrop 2.2s ease-in-out infinite;
}

@keyframes scrollDrop {
  0%, 100% { opacity: 0; transform: scaleY(0); transform-origin: top; }
  40%, 70% { opacity: 1; transform: scaleY(1); }
}

/* ============================================================
   CREDENTIALS — 1:1 page About section variant
   Photo stacks above text (single column)
   ============================================================ */
.credentials .about__inner {
  grid-template-columns: 1fr;
  max-width: 760px;
}

.credentials .about__image {
  aspect-ratio: 16 / 7;
  max-height: 360px;
}

@media (max-width: 768px) {
  .credentials .about__image {
    aspect-ratio: 3 / 2;
    max-height: 260px;
  }
}

.credentials-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: var(--sp-md) 0;
}

.credentials-list__item {
  display: flex;
  align-items: baseline;
  gap: var(--sp-sm);
  padding: var(--sp-sm) 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9375rem;
}

.credentials-list__item:first-child { border-top: 1px solid var(--border); }

.credentials-list__degree {
  font-family: var(--serif);
  font-weight: 400;
  white-space: nowrap;
  color: var(--accent-dark);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.credentials-list__field {
  color: var(--text-muted);
}

/* Visually hidden — accessible only to screen readers */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ============================================================
   FOOTER EMAIL
   ============================================================ */
.footer__email {
  font-size: 0.8125rem;
  color: var(--text-light);
  transition: color var(--ease);
  display: block;
  margin-top: var(--sp-xs);
}
.footer__email:hover { color: var(--text); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-hero {
  padding-block: var(--sp-xl);
  background-color: var(--bg);
  padding-top: calc(var(--nav-h) + var(--sp-xl));
}

.contact-hero__inner {
  max-width: 680px;
  margin-inline: auto;
  padding-inline: var(--pad);
}

.contact-hero__inner .label { margin-bottom: var(--sp-sm); }
.contact-hero__inner h1    { margin-bottom: var(--sp-md); }
.contact-hero__inner p     { color: var(--text-muted); font-size: 1.0625rem; line-height: 1.75; }
.contact-hero__inner .btn  { margin-top: var(--sp-lg); }

.contact-form-section {
  padding-block: var(--sp-xl);
  background-color: var(--bg-warm);
}

.contact-form-section__inner {
  max-width: 600px;
  margin-inline: auto;
  padding-inline: var(--pad);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
}

.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--text);
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  padding: 12px 16px;
  outline: none;
  transition: border-color var(--ease);
  width: 100%;
  line-height: 1.5;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--accent);
}

.form-field textarea {
  resize: vertical;
  min-height: 150px;
  line-height: 1.65;
}

.form-field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M4 6l4 4 4-4' stroke='%239C9A95' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 42px;
  cursor: pointer;
}

.contact-form .btn {
  align-self: flex-start;
  margin-top: var(--sp-xs);
}

/* ============================================================
   404 PAGE
   ============================================================ */
.error-page {
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
  background-color: var(--bg);
  padding-block: var(--sp-xl);
}

.error-page__inner {
  max-width: 640px;
  margin-inline: auto;
  padding-inline: var(--pad);
  text-align: center;
}

.error-page__inner .label { margin-bottom: var(--sp-sm); }
.error-page__inner h1     { margin-bottom: var(--sp-md); }
.error-page__inner p      { color: var(--text-muted); font-size: 1.0625rem; line-height: 1.75; margin-bottom: var(--sp-lg); }

/* ============================================================
   PROGRAM / THERAPY BULLETS — inside track-card expandables
   ============================================================ */
.program-bullets {
  list-style: none;
  margin-bottom: var(--sp-sm);
  padding-top: var(--sp-sm);
}

.program-bullets li {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.65;
  padding: 0.3rem 0 0.3rem 1.25rem;
  position: relative;
}

.program-bullets li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--accent-warm);
  font-size: 0.85rem;
}

/* ============================================================
   MOBILE GLOBAL IMPROVEMENTS
   ============================================================ */
@media (max-width: 768px) {
  /* Generous tap targets */
  .btn        { min-height: 48px; }
  .dot        { min-width: 24px; min-height: 24px; border-radius: 12px; }
  .nav__links a, .footer__nav a { min-height: 44px; display: inline-flex; align-items: center; }

  /* Tighter hero on short mobile screens */
  .hero__content {
    padding-top: calc(var(--nav-h) + var(--sp-lg));
    padding-bottom: var(--sp-lg);
  }

  /* Typography floor on small screens */
  h1 { font-size: clamp(2.25rem, 10vw, 5rem); }
  h2 { font-size: clamp(1.75rem, 7vw, 3rem); }

  /* Reduce gap between offers and about when testimonials are hidden */
  .offers { padding-block-end: var(--sp-lg); }
}

/* ============================================================
   PATH SELECTOR — coaching-vs-therapy sorter on 1:1 page
   ============================================================ */
.path-selector {
  background-color: var(--bg-warm);
  border-bottom: 1px solid var(--border);
}

.path-selector__inner {
  max-width: 800px;
  margin-inline: auto;
  padding: var(--sp-lg) var(--pad);
}

.path-selector__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-xl);
}

.path-selector__type {
  font-family: var(--serif);
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  display: block;
  margin-bottom: var(--sp-xs);
  color: var(--text);
}

.path-selector__col p {
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  color: var(--text-muted);
  line-height: 1.8;
}

@media (max-width: 640px) {
  .path-selector__cols {
    grid-template-columns: 1fr;
    gap: var(--sp-md);
  }
}

/* ============================================================
   COACHING FLAGSHIP — featured card on 1:1 page
   ============================================================ */
.tracks__flagship {
  padding-inline: var(--pad);
}

.tracks__flagship .track-card {
  max-width: 560px;
}

.tracks__flagship .track-card__cover {
  height: 200px;
}

/* ============================================================
   TRACK SECONDARY — lightweight tiles below flagship
   ============================================================ */
.track-secondary {
  padding-inline: var(--pad);
  margin-top: var(--sp-md);
}

.track-secondary__label {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  display: block;
  margin-bottom: var(--sp-sm);
}

.track-secondary__tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-sm);
}

.track-tile {
  background-color: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  padding: var(--sp-md);
}

.track-tile h4 {
  font-size: 1.0625rem;
  margin-bottom: var(--sp-xs);
}

.track-tile > p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: var(--sp-sm);
}

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

/* ============================================================
   COUNSELING TRACK NOTE — CA residents disclaimer at header
   ============================================================ */
.counseling-track__note {
  font-size: 0.8125rem;
  color: var(--accent-warm);
  margin-top: var(--sp-xs);
  font-weight: 500;
}

/* ============================================================
   SPECIALIZATIONS — two-column pill wrap on mobile
   ============================================================ */
@media (max-width: 640px) {
  .spec-tag {
    flex: 0 0 calc(50% - 4px);
    text-align: center;
  }
}
