/* ===== DESIGN TOKENS ===== */
:root {
  --bg: #FAFAF8;
  --bg-soft: #F4F1EC;
  --text: #1a1a1a;
  --text-light: #555;
  --text-muted: #777;
  --calm: #1F4D5C;
  --calm-hover: #163844;
  --calm-soft: #EAF2F3;
  --calm-border: #C9DDE0;
  --warm: #C0392B;
  --warm-hover: #A93226;
  --warm-soft: #FAEEEC;
  --warm-border: #EFCFC9;
  --crisis: #8B1F1F;
  --crisis-bg: #FFF6F4;
  --border: #e0ddd8;
  --card-bg: #fff;
  --radius: 8px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --shadow-sm: 0 1px 4px rgba(0,0,0,.04);
  --shadow: 0 2px 12px rgba(0,0,0,.06);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.08);
  --max-w: 1140px;
  --max-w-narrow: 780px;
  --nav-h: 64px;
  --transition: .25s ease;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { overflow-x: hidden; }
img, video, iframe { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, textarea, select { font: inherit; color: inherit; }

/* ===== TYPOGRAPHY ===== */
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -.01em;
}
h1 { font-size: clamp(1.85rem, 5.5vw, 3.2rem); }
h2 { font-size: clamp(1.45rem, 4.5vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 3vw, 1.4rem); }
h4 { font-size: 1.05rem; }
p + p { margin-top: 1em; }
.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 12px;
  display: inline-block;
}
.eyebrow--calm { color: var(--calm); }
.eyebrow--warm { color: var(--warm); }

/* ===== LAYOUT ===== */
.container { width: 92%; max-width: var(--max-w); margin: 0 auto; }
.container--narrow { max-width: var(--max-w-narrow); }
.section { padding: 72px 0; }
.section--alt { background: var(--bg-soft); }
.section--calm-soft { background: var(--calm-soft); }
.section--warm-soft { background: var(--warm-soft); }
.section--tight { padding: 48px 0; }

/* ===== CRISIS BAR ===== */
.crisis-bar {
  background: var(--crisis-bg);
  border-bottom: 1px solid var(--warm-border);
  padding: 10px 12px;
  font-size: 13.5px;
  color: var(--crisis);
  text-align: center;
  position: relative;
  z-index: 99;
  line-height: 1.45;
}
.crisis-bar a {
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
  white-space: nowrap;
}

/* ===== NAV ===== */
.nav {
  position: sticky; top: 0; z-index: 100;
  height: var(--nav-h);
  background: rgba(250,250,248,.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center;
}
.nav__inner {
  width: 92%; max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
}
.nav__brand { display: flex; align-items: center; gap: 10px; min-width: 0; }
.nav__wordmark {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -.01em;
  white-space: nowrap;
}
.nav__links { display: flex; gap: 24px; align-items: center; }
.nav__links a {
  font-size: 15px; font-weight: 500;
  transition: color var(--transition);
  position: relative;
}
.nav__links a:hover { color: var(--calm); }
.nav__cta {
  background: var(--calm); color: #fff !important;
  padding: 10px 18px; border-radius: 999px;
  font-weight: 600; font-size: 14px;
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
}
.nav__cta:hover { background: var(--calm-hover); transform: translateY(-1px); }
.nav__cta--warm { background: var(--warm); }
.nav__cta--warm:hover { background: var(--warm-hover); }
.nav__toggle {
  display: none; background: none; border: none; cursor: pointer;
  padding: 10px; min-width: 44px; min-height: 44px;
}
.nav__toggle span {
  display: block; width: 24px; height: 2px; background: var(--text);
  margin: 5px 0; transition: var(--transition);
}

/* ===== BUTTONS (44px+ tap targets) ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 26px; border-radius: 999px; font-weight: 600;
  font-size: 16px; cursor: pointer; border: 2px solid transparent;
  transition: all var(--transition); min-height: 50px;
  text-align: center; gap: 8px;
  -webkit-tap-highlight-color: transparent;
}
.btn--calm { background: var(--calm); color: #fff; border-color: var(--calm); }
.btn--calm:hover { background: var(--calm-hover); border-color: var(--calm-hover); transform: translateY(-1px); }
.btn--warm { background: var(--warm); color: #fff; border-color: var(--warm); }
.btn--warm:hover { background: var(--warm-hover); border-color: var(--warm-hover); transform: translateY(-1px); }
.btn--ghost { background: transparent; color: var(--text); border-color: var(--text); }
.btn--ghost:hover { background: var(--text); color: var(--bg); }
.btn--ghost-calm { background: transparent; color: var(--calm); border-color: var(--calm); }
.btn--ghost-calm:hover { background: var(--calm); color: #fff; }
.btn--lg { padding: 18px 32px; font-size: 16.5px; min-height: 56px; }
.btn--sm { padding: 10px 20px; font-size: 14px; min-height: 44px; }
.btn-group { display: flex; gap: 14px; flex-wrap: wrap; }
.btn--primary { background: var(--calm); color: #fff; border-color: var(--calm); }
.btn--primary:hover { background: var(--calm-hover); border-color: var(--calm-hover); }
.btn--outline { background: transparent; color: var(--text); border-color: var(--text); }
.btn--outline:hover { background: var(--text); color: var(--bg); }

/* ===== HERO ===== */
.hero { padding: 64px 0 32px; text-align: center; }
.hero__eyebrow {
  display: inline-block;
  background: var(--calm-soft);
  color: var(--calm);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .04em;
  margin-bottom: 20px;
}
.hero h1 { margin-bottom: 20px; max-width: 820px; margin-left: auto; margin-right: auto; }
.hero__lede { font-size: 1.1rem; color: var(--text-light); max-width: 640px; margin: 0 auto 32px; }
.hero__note { margin-top: 44px; font-size: 13.5px; color: var(--text-muted); }

/* ===== TWO-PATH SECTION ===== */
.paths { padding: 48px 0 72px; }
.paths__intro { text-align: center; max-width: 640px; margin: 0 auto 40px; }
.paths__intro h2 { margin-bottom: 12px; }
.paths__intro p { color: var(--text-light); font-size: 1.05rem; }

.path-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
}
.path {
  background: var(--card-bg);
  border-radius: var(--radius-xl);
  padding: 36px 28px 32px;
  border: 1px solid var(--border);
  display: flex; flex-direction: column;
  transition: box-shadow var(--transition), transform var(--transition);
  position: relative;
  overflow: hidden;
}
.path:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.path::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 5px; }
.path--calm::before { background: var(--calm); }
.path--warm::before { background: var(--warm); }
.path__tag {
  display: inline-block; font-size: 11.5px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 999px; margin-bottom: 18px;
  align-self: flex-start;
}
.path--calm .path__tag { background: var(--calm-soft); color: var(--calm); }
.path--warm .path__tag { background: var(--warm-soft); color: var(--warm); }
.path__title { margin-bottom: 12px; }
.path__desc { color: var(--text-light); margin-bottom: 22px; flex-grow: 1; font-size: 0.97rem; }
.path__list { margin-bottom: 26px; }
.path__list li {
  padding: 7px 0 7px 26px; position: relative;
  font-size: 15px; color: var(--text);
}
.path__list li::before {
  content: ''; position: absolute; left: 0; top: 16px;
  width: 16px; height: 2px; background: currentColor; opacity: .35;
}
.path--calm .path__list li::before { background: var(--calm); opacity: .5; }
.path--warm .path__list li::before { background: var(--warm); opacity: .5; }
.path__footer { display: flex; flex-direction: column; gap: 10px; }
.path__cost { font-size: 12.5px; color: var(--text-muted); text-align: center; margin-top: 4px; }

/* ===== SUPPORT STRIP ===== */
.support-strip {
  background: var(--calm-soft);
  border-top: 1px solid var(--calm-border);
  border-bottom: 1px solid var(--calm-border);
  padding: 24px 0; text-align: center;
}
.support-strip__title {
  font-family: 'Inter', sans-serif;
  font-size: 12px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--calm); margin-bottom: 14px;
}
.support-strip__items {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 20px 24px; font-size: 14.5px;
  padding: 0 12px;
}
.support-strip__items a {
  color: var(--text); font-weight: 600;
  border-bottom: 1.5px solid var(--calm);
  padding-bottom: 2px;
  transition: color var(--transition);
}
.support-strip__items a:hover { color: var(--calm); }

/* ===== CARDS ===== */
.card-grid {
  display: grid; gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
}
.card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.card__icon { font-size: 1.6rem; margin-bottom: 14px; color: var(--calm); }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--text-light); font-size: 14.5px; }

/* ===== STATS ===== */
.stats {
  display: grid; gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 160px), 1fr));
  text-align: center; padding: 32px 0;
}
.stat__number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 6vw, 2.6rem);
  font-weight: 700; color: var(--warm); line-height: 1;
}
.stat__label { font-size: 13.5px; color: var(--text-light); margin-top: 6px; letter-spacing: .02em; }

/* ===== VIDEO ===== */
.video-wrap {
  position: relative; padding-bottom: 56.25%; height: 0;
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.video-wrap iframe {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0;
}

/* ===== CTA BANNER ===== */
.cta-banner { text-align: center; padding: 64px 0; }
.cta-banner h2 { margin-bottom: 14px; }
.cta-banner p { color: var(--text-light); margin-bottom: 28px; max-width: 560px; margin-left: auto; margin-right: auto; padding: 0 12px; }

/* ===== PAGE HEADER ===== */
.page-header { padding: 64px 0 32px; text-align: center; }
.page-header--calm { background: linear-gradient(180deg, var(--calm-soft), transparent); }
.page-header--warm { background: linear-gradient(180deg, var(--warm-soft), transparent); }
.page-header h1 { margin-bottom: 14px; max-width: 720px; margin-left: auto; margin-right: auto; }
.page-header p { color: var(--text-light); max-width: 640px; margin: 0 auto; font-size: 1.05rem; padding: 0 4px; }

/* ===== INTAKE FORM ===== */
.intake {
  max-width: 720px; margin: 0 auto;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  box-shadow: var(--shadow);
}
.intake__step {
  font-size: 11.5px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--calm); margin-bottom: 6px;
}
.intake__legend {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.25rem, 3.5vw, 1.5rem);
  font-weight: 700; margin-bottom: 6px; line-height: 1.25;
}
.intake__hint { color: var(--text-light); font-size: 14.5px; margin-bottom: 20px; }
.intake__divider { border: 0; border-top: 1px solid var(--border); margin: 28px 0 24px; }

.form { max-width: 100%; margin: 0; }
.form__group { margin-bottom: 20px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form__row .form__group { margin-bottom: 0; }
.form__group label {
  display: block; margin-bottom: 8px;
  font-weight: 600; font-size: 14px; color: var(--text);
}
.form__group .label-hint { font-weight: 400; color: var(--text-muted); font-size: 13px; }
.form__group input,
.form__group textarea,
.form__group select {
  width: 100%; padding: 13px 14px;
  border: 1px solid var(--border); border-radius: var(--radius);
  background: var(--card-bg); font-size: 16px;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form__group input:focus,
.form__group textarea:focus,
.form__group select:focus {
  outline: none; border-color: var(--calm);
  box-shadow: 0 0 0 3px var(--calm-soft);
}
.form__group textarea { resize: vertical; min-height: 100px; }

.checkgroup {
  display: grid; gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
}
.checkgroup label {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 14px; border: 1px solid var(--border);
  border-radius: var(--radius); cursor: pointer;
  font-weight: 500; font-size: 14.5px;
  transition: all var(--transition);
  background: var(--bg);
  min-height: 48px;
}
.checkgroup label:hover { border-color: var(--calm); background: var(--calm-soft); }
.checkgroup input[type="checkbox"],
.checkgroup input[type="radio"] {
  width: 18px; height: 18px; accent-color: var(--calm);
  flex-shrink: 0; margin: 0;
}
.checkgroup label:has(input:checked) { border-color: var(--calm); background: var(--calm-soft); color: var(--calm); font-weight: 600; }

.urgency {
  display: grid; gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 180px), 1fr));
}
.urgency label {
  padding: 14px 16px; border: 1.5px solid var(--border);
  border-radius: var(--radius); cursor: pointer;
  text-align: left; background: var(--bg);
  transition: all var(--transition); display: block;
  min-height: 48px;
}
.urgency label:hover { border-color: var(--calm); }
.urgency input { position: absolute; opacity: 0; pointer-events: none; }
.urgency label:has(input:checked) { border-color: var(--calm); background: var(--calm-soft); }
.urgency__title { font-weight: 700; font-size: 15px; display: block; margin-bottom: 4px; }
.urgency__desc { font-size: 13px; color: var(--text-light); display: block; }

.privacy-note {
  background: var(--calm-soft);
  border-left: 3px solid var(--calm);
  padding: 14px 18px;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 14px; color: var(--text-light);
  margin-bottom: 24px;
}
.privacy-note strong { color: var(--calm); }

.intake__submit { width: 100%; margin-top: 12px; }
.intake__success { text-align: center; padding: 32px 12px; display: none; }
.intake__success.is-visible { display: block; }
.intake__success h3 { margin-bottom: 12px; color: var(--calm); }

/* ===== PROCESS ===== */
.process {
  display: grid; gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  margin-top: 28px;
}
.process__step {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: relative;
}
.process__num {
  font-family: 'Playfair Display', serif;
  font-size: 2.1rem; font-weight: 700;
  color: var(--calm); line-height: 1; margin-bottom: 10px;
}
.process__step h3 { margin-bottom: 8px; font-size: 1.05rem; }
.process__step p { color: var(--text-light); font-size: 14.5px; }

/* ===== FAQ ===== */
.faq { max-width: 720px; margin: 0 auto; }
.faq__item { border-bottom: 1px solid var(--border); }
.faq__question {
  width: 100%; background: none; border: none; cursor: pointer;
  padding: 20px 44px 20px 0; text-align: left; position: relative;
  font-size: 1rem; font-weight: 600; color: var(--text);
  min-height: 56px;
  -webkit-tap-highlight-color: rgba(31,77,92,.08);
}
.faq__question::after {
  content: '+'; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  font-size: 1.6rem; font-weight: 300; color: var(--calm);
  transition: transform var(--transition);
}
.faq__question[aria-expanded="true"]::after { content: '\2212'; }
.faq__answer { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq__answer-inner { padding: 0 0 20px; color: var(--text-light); font-size: 15px; line-height: 1.7; }

/* ===== RESOURCES ===== */
.resource-grid {
  display: grid; gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
}
.resource {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 22px;
  transition: border-color var(--transition);
}
.resource:hover { border-color: var(--calm); }
.resource h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.02rem; font-weight: 700; margin-bottom: 6px;
}
.resource p { color: var(--text-light); font-size: 14px; margin-bottom: 12px; }
.resource a { color: var(--calm); font-weight: 600; font-size: 14px; display: inline-flex; align-items: center; gap: 4px; }
.resource a:hover { text-decoration: underline; }
.resource--crisis { background: var(--crisis-bg); border-color: var(--warm-border); }
.resource--crisis h3 { color: var(--crisis); }
.resource--crisis a { color: var(--crisis); }

/* ===== PRICING ===== */
.pricing-grid {
  display: grid; gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
}
.pricing-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px 28px;
  text-align: center;
}
.pricing-card--featured {
  border-color: var(--warm); border-width: 2px;
  box-shadow: 0 4px 24px rgba(192,57,43,.1); position: relative;
}
.pricing-card--featured::before {
  content: 'Most Asked About';
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--warm); color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; padding: 5px 14px; border-radius: 999px;
}
.pricing-card h3 { margin-bottom: 8px; }
.pricing-card .price { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; margin: 12px 0 4px; }
.pricing-card .price--free { color: var(--calm); }
.pricing-card .price-note { font-size: 13.5px; color: var(--text-light); margin-bottom: 14px; }
.pricing-card p { color: var(--text-light); font-size: 14.5px; margin-bottom: 20px; }

/* ===== TRUST STRIP ===== */
.trust-strip {
  display: grid; gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  text-align: center;
}
.trust-strip__item { padding: 22px 14px; }
.trust-strip__icon { font-size: 1.8rem; margin-bottom: 10px; color: var(--calm); }
.trust-strip__item h4 { font-family: 'Inter', sans-serif; font-size: 14.5px; font-weight: 700; margin-bottom: 6px; }
.trust-strip__item p { font-size: 13.5px; color: var(--text-light); }

/* ===== PRESS STRIP ===== */
.press-strip {
  display: grid; gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
}
.press-strip__item {
  display: flex; flex-direction: column; gap: 4px;
  padding: 20px 22px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color var(--transition), transform var(--transition);
}
.press-strip__item:hover { border-color: var(--warm); transform: translateY(-2px); }
.press-strip__name {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem; font-weight: 700; color: var(--text);
}
.press-strip__desc { font-size: 13.5px; color: var(--text-light); line-height: 1.5; }

/* ===== INTERVIEW CARDS ===== */
.interview-grid {
  display: grid; gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  margin-top: 28px;
}
.interview-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  display: flex; flex-direction: column;
}
.interview-card__video { position: relative; padding-bottom: 56.25%; height: 0; background: #000; }
.interview-card__video iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }
.interview-card__body { padding: 20px 22px; }
.interview-card__source {
  font-family: 'Inter', sans-serif;
  font-size: 11.5px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--warm); margin-bottom: 6px;
}
.interview-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; line-height: 1.3;
}
.interview-card__desc { color: var(--text-light); font-size: 14px; }

/* ===== SHORTS RAIL ===== */
.shorts-rail {
  display: grid; gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
  margin-top: 24px;
}
.short-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  display: flex; flex-direction: column;
}
.short-card__video {
  position: relative; padding-bottom: 177.77%;
  height: 0; background: #000;
}
.short-card__video iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }
.short-card__caption {
  padding: 12px 14px; font-size: 12.5px;
  color: var(--text-light); background: var(--bg-soft);
}

/* ===== CONNECTIONS GALLERY ===== */
.connections-grid {
  display: grid; gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
}
.connection-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  display: flex; flex-direction: column;
  transition: box-shadow var(--transition), transform var(--transition);
}
.connection-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.connection-card__photo {
  width: 100%; aspect-ratio: 4 / 5;
  object-fit: cover; background: var(--bg-soft); display: block;
}
img.connection-card__photo { display: block; }
.connection-card__photo--placeholder {
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--calm-soft), var(--warm-soft));
  color: var(--text-muted);
  font-size: 13px; font-style: italic; letter-spacing: .04em;
}
.connection-card figcaption { padding: 14px 16px 18px; display: flex; flex-direction: column; gap: 4px; }
.connection-card figcaption strong { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; }
.connection-card figcaption span { font-size: 13px; color: var(--text-light); line-height: 1.5; }

/* ===== FOOTER ===== */
.footer {
  border-top: 1px solid var(--border);
  padding: 56px 0 28px;
  font-size: 14px; color: var(--text-light);
}
.footer__grid {
  display: grid; gap: 32px;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  margin-bottom: 36px;
}
.footer__brand p { font-size: 14px; color: var(--text-light); margin-top: 12px; max-width: 280px; }
.footer__col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 12.5px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--text); margin-bottom: 14px;
}
.footer__col ul li { margin-bottom: 8px; }
.footer__col a { color: var(--text-light); }
.footer__col a:hover { color: var(--calm); }
.footer__bottom {
  border-top: 1px solid var(--border); padding-top: 22px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  font-size: 13px; color: var(--text-muted);
}
.footer__bottom a { color: var(--text-muted); }
.footer__bottom a:hover { color: var(--calm); }

/* ===== PROSE ===== */
.prose { max-width: 680px; margin: 0 auto; }
.prose p { margin-bottom: 1.2em; }
.prose h2 { margin: 44px 0 14px; }
.prose h3 { margin: 28px 0 12px; }

/* ===== UTILITIES ===== */
.text-center { text-align: center; }
.text-accent { color: var(--warm); }
.text-calm { color: var(--calm); }
.mt-2 { margin-top: 14px; }
.mt-4 { margin-top: 28px; }
.mt-6 { margin-top: 44px; }
.mb-2 { margin-bottom: 14px; }
.mb-4 { margin-bottom: 28px; }
.mb-6 { margin-bottom: 44px; }

/* ===== RESPONSIVE BREAKPOINTS ===== */

/* Tablet (<= 860px) */
@media (max-width: 860px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}

/* Mobile (<= 768px) */
@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  .nav__links {
    display: none; position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: rgba(250,250,248,.98); backdrop-filter: blur(16px);
    flex-direction: column; padding: 22px; gap: 16px;
    border-bottom: 1px solid var(--border);
    max-height: calc(100vh - var(--nav-h));
    overflow-y: auto;
  }
  .nav__links.active { display: flex; }
  .nav__links a { font-size: 16px; padding: 6px 0; min-height: 44px; display: flex; align-items: center; }
  .nav__links .nav__cta { width: 100%; justify-content: center; padding: 13px; }
  .nav__toggle { display: block; }
  .nav__wordmark { font-size: 17px; }

  .crisis-bar { font-size: 12.5px; padding: 8px 12px; }

  .hero { padding: 40px 0 24px; }
  .section { padding: 48px 0; }
  .section--tight { padding: 36px 0; }
  .cta-banner { padding: 48px 0; }
  .page-header { padding: 48px 0 24px; }
  .paths { padding: 32px 0 56px; }

  .btn-group { flex-direction: column; align-items: stretch; gap: 12px; }
  .btn-group .btn { width: 100%; }
  .btn--lg { padding: 16px 24px; font-size: 16px; min-height: 54px; }

  .pricing-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 20px; padding: 24px 0; }

  .intake { padding: 28px 20px; }
  .form__row { grid-template-columns: 1fr; gap: 0; }
  .form__row .form__group { margin-bottom: 18px; }

  .checkgroup { grid-template-columns: 1fr; }
  .urgency { grid-template-columns: 1fr; }

  .footer { padding: 44px 0 24px; }
  .footer__grid { grid-template-columns: 1fr; gap: 28px; margin-bottom: 28px; }
  .footer__bottom { justify-content: center; text-align: center; }

  .path { padding: 32px 24px 28px; }
  .path-grid { gap: 16px; }
  .interview-grid { gap: 18px; }
  .connections-grid { gap: 14px; }
  .connection-card__photo { aspect-ratio: 1 / 1; }

  .container { width: 90%; }
  .video-wrap { border-radius: var(--radius); }

  .support-strip__items { gap: 14px 18px; font-size: 14px; }
  .crisis-bar { line-height: 1.55; }

  .pricing-card { padding: 28px 22px; }
  .faq__question { font-size: 15.5px; padding: 18px 38px 18px 0; }
  .faq__answer-inner { font-size: 14.5px; }
}

/* Small phones (<= 480px) */
@media (max-width: 480px) {
  body { font-size: 16px; }
  .container { width: 92%; }

  .hero { padding: 32px 0 20px; }
  .hero__lede { font-size: 1rem; }
  .hero__eyebrow { font-size: 11.5px; padding: 5px 12px; margin-bottom: 16px; }

  .section { padding: 40px 0; }
  .section--tight { padding: 28px 0; }
  .cta-banner { padding: 40px 0; }
  .page-header { padding: 36px 0 20px; }

  .btn { padding: 13px 22px; font-size: 15.5px; min-height: 48px; }
  .btn--lg { padding: 15px 22px; font-size: 16px; min-height: 52px; }

  .intake { padding: 22px 16px; border-radius: var(--radius-lg); }
  .intake__legend { font-size: 1.2rem; }

  .crisis-bar { font-size: 12px; padding: 8px 10px; }
  .crisis-bar a { display: inline-block; }

  .support-strip { padding: 18px 0; }
  .support-strip__items { font-size: 13.5px; gap: 12px 16px; }
  .support-strip__title { font-size: 11.5px; }

  .stats { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .stat__number { font-size: 1.85rem; }
  .stat__label { font-size: 12.5px; }

  .path { padding: 28px 22px 24px; }
  .path__title { font-size: 1.35rem; }

  .card { padding: 22px; }
  .pricing-card { padding: 24px 20px; }
  .resource { padding: 18px; }
  .process__step { padding: 20px; }

  .checkgroup label { padding: 11px 12px; font-size: 14px; }
  .urgency label { padding: 12px 14px; }

  .nav__inner { width: 92%; gap: 10px; }
  .nav__links .nav__cta { font-size: 15px; }

  .video-wrap { border-radius: var(--radius); margin-left: -4px; margin-right: -4px; }

  .interview-card__body { padding: 16px 18px; }
  .interview-card__title { font-size: 1.05rem; }

  .connection-card figcaption { padding: 12px 14px 16px; }
  .connection-card figcaption strong { font-size: 0.95rem; }

  .faq__question { font-size: 15px; padding: 16px 36px 16px 0; }
  .faq__question::after { font-size: 1.4rem; }

  .pricing-card--featured::before { font-size: 10px; padding: 4px 12px; }
}

/* Extra small (<= 360px) — older / smaller phones */
@media (max-width: 360px) {
  .nav__wordmark { font-size: 15.5px; }
  .nav__cta { font-size: 13px; padding: 8px 14px; }
  .crisis-bar { font-size: 11.5px; }
  .stat__number { font-size: 1.6rem; }
  .btn-group { gap: 10px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ===== HERO TRUST LINE ===== */
.hero-trust {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px 16px;
  color: var(--text-light);
  font-size: 14px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.hero-trust__item { display: inline-flex; gap: 4px; }
.hero-trust__item strong { color: var(--text); font-weight: 700; }
.hero-trust__sep { color: var(--border); font-weight: 700; }
@media (max-width: 640px) {
  .hero-trust__sep { display: none; }
  .hero-trust { gap: 8px 14px; font-size: 13px; }
}

/* ===== CREDENTIALS BAR (About) ===== */
.creds-bar {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 130px), 1fr));
  text-align: center;
  padding: 24px 16px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.creds-bar__num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 3.2vw, 1.85rem);
  font-weight: 700;
  color: var(--warm);
  line-height: 1;
}
.creds-bar__label {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 6px;
  letter-spacing: .03em;
  line-height: 1.3;
}

/* ===== EVENTS GRID (Speaking) ===== */
.events-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
}
.event-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition), transform var(--transition);
}
.event-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.event-card--featured {
  grid-column: span 2;
  border-color: var(--warm);
  border-width: 2px;
}
.event-card__photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--bg-soft);
  display: block;
}
.event-card--featured .event-card__photo { aspect-ratio: 16 / 9; }
img.event-card__photo { display: block; }
.event-card__photo--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--warm-soft), var(--calm-soft));
  color: var(--text-muted);
  font-size: 13px;
  font-style: italic;
  text-align: center;
  padding: 20px;
}
.event-card__caption {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.event-card__caption strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.02rem;
  font-weight: 700;
}
.event-card__caption span {
  font-size: 13.5px;
  color: var(--text-light);
  line-height: 1.5;
}
@media (max-width: 768px) {
  .event-card--featured { grid-column: span 1; }
  .event-card--featured .event-card__photo { aspect-ratio: 4 / 3; }
}

/* ===== SPEAKING TEASER (Homepage) ===== */
.speaking-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  background: linear-gradient(135deg, var(--warm-soft) 0%, var(--bg) 60%);
  border-radius: var(--radius-xl);
  padding: 40px;
  border: 1px solid var(--warm-border);
}
.speaking-teaser__copy h2 {
  margin-bottom: 14px;
  margin-top: 8px;
}
.speaking-teaser__copy p {
  color: var(--text-light);
  font-size: 1.02rem;
  margin-bottom: 22px;
}
.speaking-teaser__photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--bg-soft);
  box-shadow: var(--shadow);
}
.speaking-teaser__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.speaking-teaser__placeholder {
  position: absolute; inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--warm-soft), var(--calm-soft));
  color: var(--text-muted);
  font-size: 14px;
  font-style: italic;
}
.speaking-teaser__photo img + .speaking-teaser__placeholder { display: none; }
.speaking-teaser__photo.is-empty .speaking-teaser__placeholder { display: flex; }
@media (max-width: 768px) {
  .speaking-teaser {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 28px 22px;
  }
  .speaking-teaser__photo { aspect-ratio: 16 / 10; }
}
@media (max-width: 480px) {
  .speaking-teaser { padding: 22px 18px; }
}


/* ===== PALETTE REFINEMENT (logo-aligned) ===== */
:root {
  --calm: #2a2a2a;           /* charcoal — was teal */
  --calm-hover: #1a1a1a;
  --calm-soft: #F4F1EC;      /* warm cream — was light teal */
  --calm-border: #e0ddd8;
}
/* Eyebrow chip on hero — was teal pill, now subtle warm */
.hero__eyebrow { background: var(--calm-soft); color: var(--text); border: 1px solid var(--border); }
/* Reduce hover lift across all primary buttons for "less aggressive" feel */
.btn--calm:hover, .btn--warm:hover { transform: translateY(-1px); }
/* Soften the focus ring */
.form__group input:focus, .form__group textarea:focus, .form__group select:focus {
  border-color: var(--warm); box-shadow: 0 0 0 3px var(--warm-soft);
}
/* Crisis bar — slightly less saturated */
.crisis-bar { background: #FBF6F4; }

/* ===== CONNECTION SECTION ===== */
.connection-section { padding: 64px 0; }
.connection-section h2 { margin-bottom: 28px; }
.connection-list {
  text-align: left;
  max-width: 520px;
  margin: 0 auto;
}
.connection-list li {
  padding: 14px 0 14px 28px;
  border-bottom: 1px solid var(--border);
  font-size: 1.05rem;
  color: var(--text-light);
  position: relative;
  line-height: 1.55;
}
.connection-list li::before {
  content: '\2014';
  position: absolute; left: 0; top: 14px;
  color: var(--warm);
  font-weight: 700;
}
.connection-list li:last-child { border-bottom: 0; }
.connection-close {
  margin-top: 28px;
  font-size: 1.15rem;
  color: var(--text);
  font-weight: 600;
}

/* ===== JOURNEY ===== */
.journey {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  margin-top: 32px;
}
.journey__step {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-left: 3px solid var(--warm);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: 24px 26px;
}
.journey__step h3 {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--warm);
  margin-bottom: 10px;
}
.journey__step h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.journey__step ul li {
  padding: 4px 0 4px 28px;
  position: relative;
  font-size: 14.5px;
  color: var(--text-light);
}
.journey__step ul li::before {
  content: '\2014';
  position: absolute;
  left: 0;
  color: var(--warm);
  opacity: .65;
  font-weight: 600;
}

/* Tighten connection on mobile */
@media (max-width: 480px) {
  .connection-list li { font-size: 1rem; padding: 12px 0 12px 24px; }
  .connection-close { font-size: 1.05rem; }
}

/* ===== PODCAST LISTEN CARD (replaces a YouTube embed in interview grid) ===== */
.interview-card--listen {
  background: linear-gradient(155deg, var(--warm-soft) 0%, var(--card-bg) 70%);
  border-color: var(--warm-border);
}
.interview-card--listen .listen-card__art {
  padding: 28px 22px 14px;
  background: transparent;
}
.interview-card--listen .listen-card__source {
  font-family: 'Inter', sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--warm);
  margin-bottom: 8px;
}
.interview-card--listen .listen-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.25;
}
.interview-card--listen .listen-card__desc {
  color: var(--text-light);
  font-size: 14.5px;
  margin-bottom: 0;
  line-height: 1.55;
}
.interview-card--listen .listen-card__body {
  padding: 16px 22px 22px;
  border-top: 1px dashed var(--warm-border);
  margin-top: 14px;
}
.interview-card--listen .listen-card__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 10px;
}
.listen-card__platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.listen-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  background: var(--card-bg);
  border: 1.5px solid var(--warm);
  border-radius: 999px;
  color: var(--warm);
  font-size: 14px;
  font-weight: 600;
  transition: all var(--transition);
  min-height: 42px;
  flex: 1 1 auto;
  text-align: center;
}
.listen-btn:hover {
  background: var(--warm);
  color: #fff;
  transform: translateY(-1px);
}
@media (max-width: 480px) {
  .interview-card--listen .listen-card__art { padding: 22px 18px 10px; }
  .interview-card--listen .listen-card__title { font-size: 1.15rem; }
  .interview-card--listen .listen-card__body { padding: 14px 18px 20px; }
}

/* ===== PORTRAIT HERO (About page) ===== */
.portrait-hero {
  max-width: 720px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
  background: var(--bg-soft);
  position: relative;
}
.portrait-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
.portrait-hero__placeholder {
  position: absolute; inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--warm-soft), var(--bg-soft));
  color: var(--text-muted);
  font-size: 14px;
  font-style: italic;
}
@media (max-width: 640px) {
  .portrait-hero { aspect-ratio: 1 / 1; }
}

/* ===== TESTIMONIAL VIDEOS ===== */
.testimonials-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  margin-top: 32px;
}
.testimonial-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition), transform var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.testimonial-card video {
  width: 100%;
  display: block;
  background: #000;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  max-height: 560px;
}
.testimonial-card__body {
  padding: 14px 18px 18px;
}
.testimonial-card__label {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--warm);
  margin-bottom: 6px;
}
.testimonial-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.testimonial-card__desc {
  font-size: 13.5px;
  color: var(--text-light);
  line-height: 1.5;
}
.testimonial-card--dinner video { aspect-ratio: 16 / 9; }

/* Larger featured testimonial */
.testimonial-card--featured { grid-column: span 2; }
.testimonial-card--featured video { aspect-ratio: 16 / 9; max-height: 600px; }
@media (max-width: 768px) {
  .testimonial-card--featured { grid-column: span 1; }
}

/* ===== LOGO ===== */
.nav__logo-img {
  height: 44px;
  width: auto;
  display: block;
  max-width: 220px;
}
@media (max-width: 480px) {
  .nav__logo-img { height: 36px; max-width: 160px; }
}
.footer__logo-img {
  height: 56px;
  width: auto;
  display: block;
  margin-bottom: 10px;
}
.hero-logo {
  display: block;
  max-width: 480px;
  width: 80%;
  height: auto;
  margin: 0 auto 24px;
}
@media (max-width: 600px) {
  .hero-logo { max-width: 340px; width: 90%; }
}

/* ===== TESTIMONIAL PLACEHOLDERS ===== */
.testimonial-card__placeholder {
  width: 100%;
  aspect-ratio: 9 / 16;
  max-height: 560px;
  background: linear-gradient(135deg, var(--warm-soft), var(--bg-soft));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
}
.testimonial-card--featured .testimonial-card__placeholder { aspect-ratio: 16 / 9; }
.testimonial-card__placeholder-inner strong {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--warm);
  margin-bottom: 8px;
}
.testimonial-card__placeholder-inner span {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}

/* ===== MODERN HERO ===== */
.hero-modern {
  padding: 32px 0 56px;
  position: relative;
  overflow: hidden;
}
.hero-modern__inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
}
.hero-modern__logo-wrap {
  text-align: center;
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp .9s .1s ease-out forwards;
}
.hero-modern__logo {
  max-width: 560px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
.hero-modern__content {
  text-align: left;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp .9s .3s ease-out forwards;
}
.hero-modern__content h1 {
  font-size: clamp(1.7rem, 4.5vw, 2.9rem);
  margin-bottom: 18px;
  line-height: 1.15;
}
.hero-modern__lede {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: var(--text-light);
  margin-bottom: 28px;
  line-height: 1.6;
}
.hero-modern__cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.hero-modern__note {
  font-size: 13.5px;
  color: var(--text-muted);
  font-style: italic;
}
.hero-modern__photo {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.18);
  opacity: 0;
  transform: translateY(30px) scale(0.96);
  animation: fadeUpScale 1.1s .5s ease-out forwards;
  transition: transform .5s ease;
}
.hero-modern__photo:hover { transform: translateY(0) scale(1.02); }
.hero-modern__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
  transition: transform .8s ease;
}
.hero-modern__photo:hover img { transform: scale(1.05); }
.hero-modern__photo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.25));
  pointer-events: none;
}

/* SVG mark accent (floating decorative) */
.hero-modern__mark {
  position: absolute;
  top: 40px;
  right: 8%;
  width: 90px;
  height: 90px;
  opacity: 0.15;
  animation: float 6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeUpScale {
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Scroll-triggered fade-in for sections */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Interactive card lift on hover */
.card, .path, .connection-card, .event-card, .interview-card, .pricing-card {
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.card:hover, .path:hover, .connection-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,.1);
}

/* Logo nav padding adjust now that bg is transparent */
.nav__logo-img {
  height: 48px;
}
@media (max-width: 480px) {
  .nav__logo-img { height: 40px; }
}

/* Mobile hero stacks */
@media (max-width: 880px) {
  .hero-modern__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hero-modern__content { text-align: center; }
  .hero-modern__cta { justify-content: center; }
  .hero-modern__photo {
    max-width: 420px;
    margin: 0 auto;
    order: -1;
    aspect-ratio: 4 / 5;
  }
  .hero-modern__mark { display: none; }
  .hero-modern__logo { max-width: 380px; }
}
@media (max-width: 480px) {
  .hero-modern__logo { max-width: 320px; }
  .hero-modern__inner { gap: 24px; }
}

/* ===== TESTIMONIAL CARD VIDEO (YouTube Shorts 9:16) ===== */
.testimonial-card__video {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  max-height: 600px;
  background: #000;
  overflow: hidden;
}
.testimonial-card__video iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ===== SHORTS CAROUSEL ===== */
.shorts-carousel {
  position: relative;
  margin-top: 28px;
}
.shorts-carousel .shorts-rail {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 8px 4px 16px;
  -webkit-overflow-scrolling: touch;
}
.shorts-carousel .shorts-rail::-webkit-scrollbar { display: none; }
.shorts-carousel .short-card {
  flex: 0 0 calc(50% - 8px);
  max-width: 260px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
}
@media (min-width: 700px)  { .shorts-carousel .short-card { flex-basis: 240px; } }
@media (min-width: 1000px) { .shorts-carousel .short-card { flex-basis: 240px; } }

.shorts-carousel .short-card__video {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  height: auto;
  padding-bottom: 0;
  background: #000;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.shorts-carousel .short-card__video iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.shorts-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--card-bg);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0,0,0,.12);
  z-index: 5;
  transition: all var(--transition);
  -webkit-tap-highlight-color: transparent;
}
.shorts-arrow:hover {
  background: var(--warm);
  color: #fff;
  border-color: var(--warm);
  transform: translateY(-50%) scale(1.05);
}
.shorts-arrow:disabled,
.shorts-arrow[hidden] { opacity: 0; pointer-events: none; transform: translateY(-50%) scale(.85); }
.shorts-arrow--prev { left: -12px; }
.shorts-arrow--next { right: -12px; }

@media (max-width: 700px) {
  .shorts-arrow { width: 42px; height: 42px; font-size: 18px; }
  .shorts-arrow--prev { left: 2px; }
  .shorts-arrow--next { right: 2px; }
}

/* Soft fade at the edges so cards going offscreen feel natural */
.shorts-carousel::before,
.shorts-carousel::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 32px;
  pointer-events: none;
  z-index: 2;
}
.shorts-carousel::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg), transparent);
}
.shorts-carousel::after {
  right: 0;
  background: linear-gradient(270deg, var(--bg), transparent);
}

/* ===== UNCLE / FAMILY BLOCK ===== */
.uncle-section { padding: 56px 0; }
.uncle-block {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
}
.uncle-block__photo {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(0,0,0,.12);
  aspect-ratio: 4 / 5;
}
.uncle-block__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}
.uncle-block__photo:hover img { transform: scale(1.03); }
.uncle-block__copy h2 {
  margin-bottom: 16px;
  margin-top: 8px;
}
@media (max-width: 760px) {
  .uncle-block {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .uncle-block__photo {
    max-width: 420px;
    margin: 0 auto;
    aspect-ratio: 4 / 5;
  }
  .uncle-block__copy { text-align: center; }
}

/* ===== PORTRAIT HERO — full body variant (for studio shots) ===== */
.portrait-hero--full {
  aspect-ratio: 3 / 4;
  max-width: 540px;
}
.portrait-hero--full .portrait-hero__img {
  object-position: center top;
}
@media (max-width: 640px) {
  .portrait-hero--full { aspect-ratio: 3 / 4; max-width: 100%; }
}

/* ===== PRICING CARDS — MODERNIZED ===== */
.pricing-card {
  border-radius: var(--radius-xl);
  padding: 36px 30px;
  text-align: center;
  background: var(--card-bg);
  display: flex;
  flex-direction: column;
}
.pricing-card h3 {
  font-size: 1.35rem;
  margin-bottom: 4px;
}
.pricing-card .price {
  font-size: 2.6rem;
  font-weight: 700;
  margin: 16px 0 4px;
  background: linear-gradient(135deg, var(--text) 0%, var(--text-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.pricing-card .price--free {
  background: linear-gradient(135deg, var(--warm) 0%, #E0573D 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.pricing-card .price-note {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .02em;
  color: var(--text-muted);
  margin-bottom: 18px;
  text-transform: uppercase;
}
.pricing-card > p {
  color: var(--text-light);
  font-size: 14.5px;
  margin-bottom: 18px;
  text-align: center;
}

.pricing-includes {
  font-family: 'Inter', sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: left;
  margin: 8px 0 12px;
}
.pricing-features {
  list-style: none;
  text-align: left;
  margin: 0 0 24px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-grow: 1;
}
.pricing-features li {
  position: relative;
  padding-left: 28px;
  font-size: 14.5px;
  color: var(--text);
  line-height: 1.5;
}
.pricing-features li::before {
  content: '';
  position: absolute;
  left: 0; top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--warm-soft);
  display: flex;
}
.pricing-features li::after {
  content: '';
  position: absolute;
  left: 5px; top: 10px;
  width: 8px;
  height: 4px;
  border-left: 2px solid var(--warm);
  border-bottom: 2px solid var(--warm);
  transform: rotate(-45deg);
}

/* Featured (Monthly) card upgrade */
.pricing-card--featured {
  border: 2px solid var(--warm);
  background: linear-gradient(180deg, var(--warm-soft) 0%, var(--card-bg) 32%);
  box-shadow: 0 18px 50px rgba(192, 57, 43, .14);
  transform: translateY(-4px);
  position: relative;
}
.pricing-card--featured::before {
  content: 'Most Asked About';
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--warm);
  color: #fff;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(192, 57, 43, .25);
  white-space: nowrap;
}
.pricing-card--featured h3 { margin-top: 8px; }
.pricing-card--featured .price {
  background: linear-gradient(135deg, var(--warm) 0%, #E0573D 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Slightly tighter on mobile */
@media (max-width: 480px) {
  .pricing-card { padding: 30px 24px; }
  .pricing-card .price { font-size: 2.2rem; }
  .pricing-card--featured { transform: none; }
}

/* Hover lift */
.pricing-card { transition: transform var(--transition), box-shadow var(--transition); }
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,.08);
}
.pricing-card--featured:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 60px rgba(192, 57, 43, .2);
}

/* ===== CARD LIST (dash bullets, used in service cards) ===== */
.card-list {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
}
.card-list li {
  padding: 4px 0 4px 28px;
  position: relative;
  font-size: 14.5px;
  color: var(--text-light);
}
.card-list li::before {
  content: '\2014';
  position: absolute;
  left: 0;
  color: var(--warm);
  opacity: .65;
  font-weight: 600;
}

/* ===== RESOURCE CATEGORY HEADING ===== */
.resource-cat {
  font-family: 'Inter', sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--warm);
  margin: 36px 0 18px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--warm-border);
}
.resource-cat:first-of-type { margin-top: 8px; }

/* ===== LISTEN CARD COVER (Pretty Private with Ebone) ===== */
.listen-card__cover {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--bg-soft);
}
.listen-card__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


/* ===== SOCIAL GRID (Contact page) ===== */
.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 180px), 1fr));
  gap: 14px;
  margin-top: 28px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 22px 16px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
  text-align: center;
}
.social-card:hover {
  border-color: var(--warm);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0,0,0,.08);
}
.social-card__name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
}
.social-card__handle {
  font-size: 13.5px;
  color: var(--warm);
  font-weight: 600;
}

/* ===== LISTEN CARD COVER — constrain so card height matches video cards ===== */
.interview-card--listen .listen-card__cover {
  aspect-ratio: 1 / 1;
  max-height: 280px;
  overflow: hidden;
}
.interview-card--listen .listen-card__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
@media (max-width: 480px) {
  .interview-card--listen .listen-card__cover { max-height: 240px; }
}

/* ===== CARD GRID 2x2 (Contact page) — always 2 columns ===== */
.card-grid--2x2 {
  grid-template-columns: repeat(2, 1fr) !important;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
  gap: 16px;
}
.card-grid--2x2 .card {
  padding: 24px 20px;
}
.card-grid--2x2 .card h3 {
  font-size: clamp(0.95rem, 3vw, 1.2rem);
  line-height: 1.25;
  margin-bottom: 10px;
}
.card-grid--2x2 .card p {
  font-size: 14px;
  line-height: 1.55;
}
.card-grid--2x2 .card .btn {
  width: 100%;
  padding: 10px 14px;
  font-size: 13.5px;
  min-height: 40px;
}
@media (max-width: 600px) {
  .card-grid--2x2 { gap: 12px; }
  .card-grid--2x2 .card { padding: 18px 14px; }
  .card-grid--2x2 .card h3 { font-size: 0.98rem; margin-bottom: 8px; }
  .card-grid--2x2 .card p { font-size: 13px; line-height: 1.5; }
  .card-grid--2x2 .card .btn { font-size: 12.5px; padding: 8px 10px; min-height: 36px; }
}
@media (max-width: 380px) {
  .card-grid--2x2 .card { padding: 14px 11px; }
  .card-grid--2x2 .card h3 { font-size: 0.92rem; }
  .card-grid--2x2 .card p { font-size: 12.5px; }
}

/* ===== Services 2x2 — relax the contact-grid--2x2 compactness for service cards ===== */
.card-grid--2x2 .card:not([class*="contact"]) {
  /* Service cards on How I help have lists / longer descriptions — give them more room */
}
/* Override the compact contact-only sizing when used on Service grids (cards have h3 + multiple <p>) */
section .card-grid--2x2 .card:has(.card-list),
section .card-grid--2x2 .card:has(p + p) {
  padding: 32px 28px;
}
section .card-grid--2x2 .card:has(.card-list) h3,
section .card-grid--2x2 .card:has(p + p) h3 {
  font-size: clamp(1.1rem, 2.2vw, 1.3rem);
  margin-bottom: 12px;
}
section .card-grid--2x2 .card:has(.card-list) p,
section .card-grid--2x2 .card:has(p + p) p {
  font-size: 15px;
  line-height: 1.7;
}
@media (max-width: 600px) {
  section .card-grid--2x2 .card:has(.card-list),
  section .card-grid--2x2 .card:has(p + p) {
    padding: 22px 18px;
  }
}
@media (max-width: 380px) {
  section .card-grid--2x2 .card:has(.card-list),
  section .card-grid--2x2 .card:has(p + p) {
    padding: 18px 14px;
  }
  section .card-grid--2x2 .card:has(.card-list) h3,
  section .card-grid--2x2 .card:has(p + p) h3 {
    font-size: 1rem;
  }
}

/* ===========================================================
   THANK YOU PAGE
   =========================================================== */
.thanks-hero {
  padding: clamp(60px, 9vw, 110px) 0 clamp(40px, 6vw, 70px);
  text-align: center;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
  position: relative;
  overflow: hidden;
}
.thanks-hero::before {
  content: "";
  position: absolute;
  top: -40%;
  left: 50%;
  width: 140%;
  height: 100%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(192,57,43,0.06) 0%, rgba(192,57,43,0) 60%);
  pointer-events: none;
  z-index: 0;
}
.thanks-hero > .container {
  position: relative;
  z-index: 1;
}
.thanks-hero h1 {
  margin-top: 18px;
  font-size: clamp(2rem, 5.5vw, 3.2rem);
  letter-spacing: -0.02em;
  line-height: 1.08;
}
.thanks-hero__lede {
  max-width: 620px;
  margin: 18px auto 0;
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  line-height: 1.7;
  color: var(--text-light);
}

/* Animated checkmark */
.thanks-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(80px, 14vw, 112px);
  height: clamp(80px, 14vw, 112px);
  color: var(--warm);
  border-radius: 50%;
  background: rgba(192, 57, 43, 0.08);
  margin: 0 auto 6px;
  box-shadow: 0 8px 28px -10px rgba(192, 57, 43, 0.35);
}
.thanks-check svg {
  width: 64%;
  height: 64%;
  display: block;
  overflow: visible;
}
.thanks-check__circle {
  stroke-dasharray: 240;
  stroke-dashoffset: 240;
  transform-origin: 50% 50%;
  animation: thanks-circle-draw 0.9s cubic-bezier(0.65, 0, 0.45, 1) 0.1s forwards;
}
.thanks-check__mark {
  stroke-dasharray: 70;
  stroke-dashoffset: 70;
  animation: thanks-mark-draw 0.45s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}
@keyframes thanks-circle-draw {
  to { stroke-dashoffset: 0; }
}
@keyframes thanks-mark-draw {
  to { stroke-dashoffset: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .thanks-check__circle,
  .thanks-check__mark {
    animation: none;
    stroke-dashoffset: 0;
  }
}

/* Thanks list — em-dash bulleted action items */
.thanks-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 14px;
}
.thanks-list li {
  position: relative;
  padding: 18px 22px 18px 44px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.65;
  box-shadow: 0 1px 0 rgba(0,0,0,0.02);
}
.thanks-list li::before {
  content: "—";
  position: absolute;
  left: 18px;
  top: 18px;
  color: var(--warm);
  font-weight: 700;
}
.thanks-list li strong {
  color: var(--text);
  font-weight: 600;
  display: inline;
  margin-right: 4px;
}
.thanks-list li span {
  display: inline;
}
@media (max-width: 600px) {
  .thanks-list li {
    padding: 14px 16px 14px 36px;
    font-size: 14.5px;
    line-height: 1.6;
  }
  .thanks-list li::before {
    left: 14px;
    top: 14px;
  }
}

/* ===========================================================
   LAYOUT MODIFIERS — 4-col card grid, 3-col press & resource
   =========================================================== */

/* 4 cards in one horizontal row on desktop, 2 on tablet, 1 on mobile */
.card-grid--4 {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(4, 1fr);
}
.card-grid--4 .card {
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
}
.card-grid--4 .card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.card-grid--4 .card p {
  font-size: 0.95rem;
  line-height: 1.6;
}
.card-grid--4 .card .card-list {
  font-size: 0.9rem;
}
@media (max-width: 980px) {
  .card-grid--4 { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
@media (max-width: 540px) {
  .card-grid--4 { grid-template-columns: 1fr; gap: 14px; }
  .card-grid--4 .card { padding: 20px 18px; }
}

/* 3-column press strip (As Featured On) — overrides auto-fit */
.press-strip--3 {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 880px) {
  .press-strip--3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .press-strip--3 { grid-template-columns: 1fr; }
}

/* 3-column resource grid (Treatment / Recovery / Crisis / Families) */
.resource-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 880px) {
  .resource-grid--3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .resource-grid--3 { grid-template-columns: 1fr; }
}

/* Wide variant for regular (16:9) YouTube videos in testimonial grid */
.testimonial-card__video--wide {
  aspect-ratio: 16 / 9;
  max-height: none;
}
/* Make wide cards span 2 cols on desktop so they read as featured testimonials */
.testimonial-card--wide {
  grid-column: span 2;
}
@media (max-width: 880px) {
  .testimonial-card--wide { grid-column: span 1; }
}


/* ===========================================================
   RECOVERY & LIFE MENTOR — CINEMATIC ELEVATION (2026)
   =========================================================== */

/* --- Section rhythm: more cinematic breathing room --- */
.section--lg { padding: clamp(80px, 9vw, 116px) 0; }
@media (max-width: 768px) { .section--lg { padding: 56px 0; } }

/* --- Hero / page kicker (Recovery & Life Mentor label) --- */
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--warm);
  margin-bottom: 18px;
}
.hero-kicker::before {
  content: '';
  width: 26px;
  height: 2px;
  background: var(--warm);
  flex-shrink: 0;
}
.hero-kicker--center { justify-content: center; }

/* --- Big intro paragraph --- */
.lede-xl {
  font-size: clamp(1.1rem, 2.1vw, 1.3rem);
  line-height: 1.65;
  color: var(--text-light);
  max-width: 660px;
}
.lede-xl--center { margin-left: auto; margin-right: auto; text-align: center; }

/* --- Cinematic dark sections --- */
.section--dark { background: #161513; color: #e9e3da; }
.section--dark h1, .section--dark h2,
.section--dark h3, .section--dark h4 { color: #fff; }
.section--dark p { color: #b8b0a4; }
.section--dark .eyebrow,
.section--dark .eyebrow--warm { color: #E08A7D; }
.section--dark .btn--ghost { color: #fff; border-color: rgba(255,255,255,.55); }
.section--dark .btn--ghost:hover { background: #fff; color: #161513; border-color: #fff; }
.section--dark a:not(.btn) { color: #E08A7D; }

.page-header--dark { background: #161513; color: #e9e3da; }
.page-header--dark h1 { color: #fff; }
.page-header--dark p { color: #b8b0a4; }
.page-header--dark .eyebrow,
.page-header--dark .hero-kicker { color: #E08A7D; }
.page-header--dark .hero-kicker::before { background: #E08A7D; }

/* --- Creed / cinematic statement lines --- */
.creed { max-width: 800px; margin: 0 auto; text-align: center; }
.creed__line {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3.9vw, 2.45rem);
  font-weight: 700;
  line-height: 1.32;
  letter-spacing: -.015em;
  color: #fff;
}
.creed__line + .creed__line { margin-top: .42em; }
.creed__line--soft { color: #7c756a; }
.creed__sub {
  margin-top: 30px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #b8b0a4 !important;
}

/* --- Statement pull-quote (light background) --- */
.statement { max-width: 760px; margin: 0 auto; text-align: center; }
.statement__quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.55rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -.015em;
  color: var(--text);
}
.statement__attrib {
  margin-top: 24px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--warm);
}

/* --- Pull-quote within prose (About) --- */
.pull {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 3.4vw, 2.05rem);
  font-weight: 700;
  line-height: 1.34;
  letter-spacing: -.01em;
  color: var(--text);
  margin: 40px 0;
  padding-left: 26px;
  border-left: 3px solid var(--warm);
}
.section--dark .pull { color: #fff; border-color: #E08A7D; }

/* --- Two-path module: home framing --- */
.paths__intro h2 { letter-spacing: -.02em; }
.path__step {
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.path__price-line { font-size: 13px; color: var(--text-muted); margin-bottom: 18px; }
.path__price-line strong { color: var(--text); font-weight: 700; }

/* --- Free-help emphasis block (Need Help page) --- */
.free-help { max-width: 860px; margin: 0 auto; text-align: center; }
.free-help__headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3.7vw, 2.2rem);
  font-weight: 700;
  line-height: 1.32;
  letter-spacing: -.015em;
  margin-bottom: 14px;
}
.free-help__lede {
  color: var(--text-light);
  font-size: 1.06rem;
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto 36px;
}
.free-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, 1fr);
  text-align: left;
}
.free-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 22px 26px;
}
.free-item__tag {
  display: inline-block;
  font-size: 10.5px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--warm);
  background: var(--warm-soft);
  padding: 5px 11px; border-radius: 999px;
  margin-bottom: 12px;
}
.free-item h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.02rem; font-weight: 700;
  margin-bottom: 7px;
}
.free-item p { color: var(--text-light); font-size: 14px; line-height: 1.6; }
@media (max-width: 780px) { .free-grid { grid-template-columns: 1fr; } }

/* --- 6-tier pricing --- */
.pricing-grid--6 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 940px) { .pricing-grid--6 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .pricing-grid--6 { grid-template-columns: 1fr; } }

.price--range,
.price--custom {
  background: none;
  -webkit-text-fill-color: currentColor;
  color: var(--text);
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.12;
  font-size: 2.15rem;
}
.price__lead {
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 5px;
}
.price__per {
  font-family: 'Inter', sans-serif;
  font-size: 13.5px; font-weight: 600;
  color: var(--text-muted);
  margin-top: 2px;
}
.pricing-card--featured[data-badge]::before { content: attr(data-badge); }
.pricing-note {
  max-width: 600px;
  margin: 36px auto 0;
  text-align: center;
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.7;
}

/* --- Confession intro / cinematic block --- */
.confession-intro {
  max-width: 700px; margin: 0 auto; text-align: center;
}
.confession-intro p { font-size: 1.08rem; line-height: 1.75; }


/* ===========================================================
   TESTIMONIALS GRID — 3 shorts / 2 wide videos / 3 shorts
   =========================================================== */
.testimonials-grid {
  grid-template-columns: repeat(6, 1fr);
}
.testimonials-grid .testimonial-card {
  grid-column: span 2;
}
.testimonials-grid .testimonial-card--wide {
  grid-column: span 3;
}
@media (max-width: 880px) {
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid .testimonial-card { grid-column: span 1; }
  .testimonials-grid .testimonial-card--wide { grid-column: span 2; }
}
@media (max-width: 560px) {
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonials-grid .testimonial-card,
  .testimonials-grid .testimonial-card--wide { grid-column: span 1; }
}
