/* ============================================================
   WonderfulCounseling LLC — Jeremiah Model, LMHC
   Shared Stylesheet
   Aesthetic: "Forged" — dark, masculine, disciplined.
   Black + Gold + White. Oswald (display) / DM Sans (body).
   ============================================================ */

/* ── Google Fonts ── */
/* ── CSS Custom Properties ── */
:root {
  --color-ink:        #0A0A0A;   /* near-black base */
  --color-ink-soft:   #141414;   /* raised dark surface */
  --color-ink-2:      #1C1C1A;   /* card on dark */
  --color-gold:       #E8C200;   /* primary gold */
  --color-gold-hi:    #F0D147;   /* gold highlight */
  --color-gold-deep:  #C8A400;   /* deep gold */
  --color-white:      #FFFFFF;
  --color-cream:      #FBF7EA;   /* warm light bg */
  --color-cream-2:    #F3EDDC;   /* deeper cream */
  --color-text:       #23211B;   /* body text on light */
  --color-text-mute:  #5A5546;   /* muted body on light */
  --color-line-gold:  rgba(232,194,0,0.30);
  --color-line-dark:  rgba(255,255,255,0.10);

  --font-display: 'Oswald', 'Arial Narrow', sans-serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --max-width:          1180px;
  --max-width-copy:     720px;
  --section-padding:    96px 24px;
  --section-padding-sm: 64px 24px;
  --radius:             4px;
  --radius-btn:         2px;
  --transition:         0.28s ease;
  --shadow:             0 6px 30px rgba(0,0,0,0.10);
  --shadow-hover:       0 14px 44px rgba(0,0,0,0.18);
  --shadow-gold:        0 10px 30px rgba(232,194,0,0.22);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.75;
  color: var(--color-text);
  background: var(--color-cream);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.06;
  color: var(--color-ink);
  text-transform: uppercase;
  letter-spacing: 0.005em;
}
h1 { font-size: clamp(2.8rem, 6.5vw, 5rem); font-weight: 700; }
h2 { font-size: clamp(1.9rem, 3.8vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.8rem); font-weight: 500; }
h4 { font-size: 1.15rem; font-weight: 600; letter-spacing: 0.02em; }
p  { margin-bottom: 1.2em; }
p:last-child { margin-bottom: 0; }
em { font-style: italic; }
strong { font-weight: 600; color: var(--color-ink); }

/* ── Layout ── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow {
  max-width: var(--max-width-copy);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: var(--section-padding); }
.section--sm { padding: var(--section-padding-sm); }

.section--ink      { background: var(--color-ink); color: rgba(255,255,255,0.82); }
.section--ink-soft { background: var(--color-ink-soft); color: rgba(255,255,255,0.82); }
.section--cream    { background: var(--color-cream); }
.section--cream-2  { background: var(--color-cream-2); }
.section--white    { background: var(--color-white); }

.section--ink h1, .section--ink h2, .section--ink h3, .section--ink h4,
.section--ink-soft h1, .section--ink-soft h2, .section--ink-soft h3, .section--ink-soft h4 {
  color: var(--color-white);
}
.section--ink p, .section--ink-soft p { color: rgba(255,255,255,0.78); }

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

/* ── Section Label (eyebrow) ── */
.section-label {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-gold-deep);
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.section-label::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--color-gold);
}
.section--ink .section-label,
.section--ink-soft .section-label { color: var(--color-gold); }

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 16px 38px;
  border-radius: var(--radius-btn);
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  min-height: 52px;
  text-align: center;
}
.btn-primary {
  background: var(--color-gold);
  color: var(--color-ink);
  border-color: var(--color-gold);
}
.btn-primary:hover {
  background: var(--color-gold-hi);
  border-color: var(--color-gold-hi);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}
.btn-outline {
  background: transparent;
  color: var(--color-ink);
  border-color: var(--color-ink);
}
.btn-outline:hover {
  background: var(--color-ink);
  color: var(--color-white);
  transform: translateY(-2px);
}
/* outline on dark surfaces */
.btn-outline--light {
  color: var(--color-white);
  border-color: rgba(255,255,255,0.55);
}
.btn-outline--light:hover {
  background: var(--color-gold);
  color: var(--color-ink);
  border-color: var(--color-gold);
}
.btn-lg { padding: 19px 50px; font-size: 1rem; }

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background-color: var(--color-ink);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.66);
}
/* Premium gradient overlay — text readable left, image visible right */
.hero__overlay--gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(10,10,10,0.94) 0%,
    rgba(10,10,10,0.86) 34%,
    rgba(10,10,10,0.55) 62%,
    rgba(10,10,10,0.20) 100%
  );
}
/* thin gold rule along the hero base */
.hero::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-gold-deep), var(--color-gold-hi), var(--color-gold-deep));
  z-index: 3;
}
/* Hero copy hugs the left edge rather than sitting in the centered container */
.hero .container {
  max-width: 100%;
  margin: 0;
  padding-left: clamp(24px, 7vw, 130px);
  padding-right: 24px;
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 70px 0;
}
.hero h1 { color: var(--color-white); margin-bottom: 1.3rem; text-shadow: 0 2px 28px rgba(0,0,0,0.55); }
.hero h1 .accent { color: var(--color-gold); white-space: nowrap; }
.hero p {
  color: rgba(255,255,255,0.86);
  font-family: var(--font-body);
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 2.2rem;
  max-width: 600px;
}
.hero--center { justify-content: center; text-align: center; }
.hero--center .hero__content { text-align: center; }

.hero__cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}
.hero__cta-note {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.02em;
}

/* ── Trust Bar ── */
.trust-bar {
  background: var(--color-ink-soft);
  padding: 18px 24px;
  border-bottom: 1px solid var(--color-line-dark);
}
.trust-bar__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px 16px;
}
.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 50px;
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  background: rgba(232,194,0,0.07);
  border: 1px solid var(--color-line-gold);
  color: rgba(255,255,255,0.88);
}
.trust-pill::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--color-gold);
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .trust-pill { font-size: 0.7rem; padding: 7px 14px; }
}

/* ── Social Proof Bar ── */

/* ── Prose ── */
.prose { max-width: var(--max-width-copy); }
.prose p + p { margin-top: 1.2em; }
.prose--center { margin-left: auto; margin-right: auto; text-align: center; }

/* ── Lead-in (oversized intro line) ── */
.lead-in {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: none;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  line-height: 1.3;
  color: var(--color-ink);
  letter-spacing: 0;
  margin-bottom: 1.6rem;
}
.section--ink .lead-in, .section--ink-soft .lead-in { color: var(--color-white); }

/* ── Pain Cards ── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 22px;
  margin-top: 2.6rem;
}
.card-grid--2x2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 640px) { .card-grid--2x2 { grid-template-columns: 1fr; } }

.pain-card {
  background: var(--color-ink-2);
  border-radius: var(--radius);
  border-left: 3px solid var(--color-gold);
  padding: 28px 26px;
  transition: var(--transition);
}
.pain-card p {
  color: rgba(255,255,255,0.84);
  font-size: 1rem;
  margin: 0;
  line-height: 1.6;
}
.pain-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-left-color: var(--color-gold-hi);
  background: #232320;
}

/* ── Consequence Pills (agitate) ── */
.consequence-pills {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 1.6rem 0;
  max-width: var(--max-width-copy);
}
.consequence-pill {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 20px;
  background: var(--color-white);
  border-left: 3px solid var(--color-gold-deep);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--color-text);
  box-shadow: var(--shadow);
}
.consequence-pill::before {
  content: '→';
  color: var(--color-gold-deep);
  font-weight: 700;
  flex-shrink: 0;
}

/* ── Approach / Solution Cards (forced even grid) ── */
.approach-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 2.6rem;
}
@media (max-width: 600px) { .approach-grid { grid-template-columns: 1fr; } }
.approach-card {
  background: var(--color-cream);
  border: 1px solid var(--color-cream-2);
  border-top: 3px solid var(--color-gold);
  border-radius: var(--radius);
  padding: 30px 28px;
  transition: var(--transition);
}
.approach-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-top-color: var(--color-gold-hi);
}
.approach-card__tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--color-ink);
  border-radius: 50px;
  font-family: var(--font-display);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.9rem;
}
.approach-card h4 { color: var(--color-ink); margin-bottom: 0.5rem; }
.approach-card p { color: var(--color-text-mute); font-size: 0.95rem; margin: 0; line-height: 1.62; }

/* ── Section Split (image + text) ── */
.section-split {
  display: grid;
  gap: 44px;
  align-items: center;
}
.section-split__img img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-hover);
}
@media (min-width: 768px) {
  .section-split { grid-template-columns: 1fr 1fr; gap: 64px; }
  .section-split--reverse .section-split__img { order: -1; }
}

/* ── Meet the Therapist ── */
.therapist-block {
  display: grid;
  gap: 44px;
  align-items: start;
}
.therapist-block__img {
  width: 100%;
  max-width: 400px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-hover);
  border-bottom: 4px solid var(--color-gold);
}
.therapist-block__img-placeholder {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 4/5;
  background: var(--color-ink-2);
  border-radius: var(--radius);
  border-bottom: 4px solid var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  padding: 20px;
}
@media (min-width: 768px) {
  .therapist-block { grid-template-columns: 400px 1fr; gap: 56px; }
}
.credential-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0.4rem 0 1.4rem;
}
.cred-pill {
  padding: 6px 14px;
  background: rgba(232,194,0,0.10);
  border: 1px solid var(--color-line-gold);
  border-radius: 50px;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--color-gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ── Pull Quote (his catchphrases) ── */
.pull-quote {
  border-left: 4px solid var(--color-gold);
  padding: 18px 30px;
  margin: 2.2rem 0;
}
.pull-quote p {
  font-family: var(--font-display);
  font-weight: 300;
  text-transform: none;
  font-size: 1.5rem;
  line-height: 1.35;
  color: var(--color-ink);
  margin: 0;
}
.section--ink .pull-quote p, .section--ink-soft .pull-quote p { color: var(--color-white); }
.pull-quote cite {
  display: block;
  margin-top: 0.7rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-style: normal;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-gold-deep);
}

/* ── What to Expect Timeline ── */
.expect-timeline {
  display: grid;
  gap: 34px;
  margin-top: 2.6rem;
  max-width: 760px;
}
.expect-item {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 0 24px;
  align-items: start;
}
.expect-num {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--color-gold-deep);
  flex-shrink: 0;
}
.section--ink .expect-num, .section--ink-soft .expect-num { color: var(--color-gold); }
.expect-body { padding-top: 9px; }
.expect-body h4 { margin-bottom: 0.4rem; }
.expect-body p { margin: 0; }

/* ── The Plan ── */
.plan-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 3rem;
}
.plan-step { text-align: center; }
.plan-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--color-gold);
  color: var(--color-ink);
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0 auto 1.3rem;
}
.plan-step h3 { margin-bottom: 0.6rem; font-size: 1.3rem; }
.plan-step p { color: var(--color-text-mute); }
.section--ink .plan-step p, .section--ink-soft .plan-step p { color: rgba(255,255,255,0.72); }
.plan-arrow {
  display: none;
  align-self: center;
  color: var(--color-gold);
  font-size: 1.8rem;
}
@media (min-width: 768px) {
  .plan-grid { grid-template-columns: 1fr auto 1fr auto 1fr; gap: 0 22px; }
  .plan-arrow { display: flex; }
}

/* ── FAQ Accordion ── */
.faq-list { margin-top: 2.6rem; max-width: var(--max-width-copy); }
details.faq-item {
  border-top: 1px solid var(--color-cream-2);
  padding: 0;
}
details.faq-item:last-child { border-bottom: 1px solid var(--color-cream-2); }
details.faq-item > summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 500;
  text-transform: none;
  color: var(--color-ink);
  user-select: none;
}
details.faq-item > summary::-webkit-details-marker { display: none; }
details.faq-item > summary:focus { outline: none; }
details.faq-item > summary::after {
  content: '+';
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--color-gold-deep);
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.2s;
}
details.faq-item[open] > summary::after { content: '−'; }
details.faq-item .faq-a { padding-bottom: 24px; color: var(--color-text-mute); }
/* dark variant */
.section--ink details.faq-item, .section--ink-soft details.faq-item {
  border-top-color: var(--color-line-dark);
}
.section--ink details.faq-item:last-child, .section--ink-soft details.faq-item:last-child {
  border-bottom-color: var(--color-line-dark);
}
.section--ink details.faq-item > summary, .section--ink-soft details.faq-item > summary { color: var(--color-white); }
.section--ink details.faq-item .faq-a, .section--ink-soft details.faq-item .faq-a { color: rgba(255,255,255,0.72); }

/* ── Final CTA ── */
.cta-section {
  position: relative;
  padding: var(--section-padding);
  text-align: center;
  background: var(--color-ink);
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 120%, rgba(232,194,0,0.18) 0%, transparent 60%);
  pointer-events: none;
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 { color: var(--color-white); margin-bottom: 1.1rem; }
.cta-section p { color: rgba(255,255,255,0.78); max-width: 580px; margin: 0 auto 2.4rem; }

/* ── Divider ── */
.divider {
  width: 64px;
  height: 3px;
  background: var(--color-gold);
  margin: 1.5rem 0;
}
.divider--center { margin-left: auto; margin-right: auto; }

/* ── Booking / Form Placeholder ── */
.ghl-booking-placeholder {
  background: rgba(232,194,0,0.06);
  border: 2px dashed var(--color-line-gold);
  border-radius: var(--radius);
  padding: 40px 24px;
  text-align: center;
  color: var(--color-gold-deep);
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 24px auto 0;
  max-width: 480px;
}

/* ── Scroll Animations ── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Site Header (preview only) ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--color-ink);
  border-bottom: 1px solid var(--color-line-gold);
}
.site-header__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.site-header__logo img { height: 46px; width: auto; }
.site-header__cta { padding: 11px 24px; min-height: 0; font-size: 0.78rem; }
@media (max-width: 600px) {
  .site-header__logo img { height: 38px; }
  .site-header__cta { padding: 9px 16px; font-size: 0.7rem; }
}

/* ── Hero subtle Ken Burns drift (image heroes) ── */
@keyframes heroPan {
  0%   { background-position: 62% 50%; }
  50%  { background-position: 65% 47%; }
  100% { background-position: 62% 50%; }
}
.hero--animated { animation: heroPan 30s ease-in-out infinite; }

/* Mobile: deepen overlay + keep subject framed so text never sits on his face */
@media (max-width: 767px) {
  .hero__overlay--gradient {
    background: linear-gradient(180deg, rgba(10,10,10,0.78) 0%, rgba(10,10,10,0.55) 45%, rgba(10,10,10,0.80) 100%);
  }
  .hero--animated { animation-name: none; background-position: 70% 18%; }
}

/* ============================================================
   PREMIUM TEXTURES, BACKGROUND MOTION & HIGH-FIDELITY CARDS
   (vanilla port of the frosted-glass + gradient-card concepts,
    recolored to the black/gold brand)
   ============================================================ */

/* Stack: keep section content above texture/glow layers */
.section { position: relative; }
.section > .container { position: relative; z-index: 2; }

/* ── Film-grain texture overlay ── */
.section--tex::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  opacity: 0.11;
  mix-blend-mode: overlay;
}
.section--ink.section--tex::before,
.section--ink-soft.section--tex::before { opacity: 0.20; }

/* ── Slow gold "aurora" drift (dark sections) ── */
.section--aurora { overflow-x: clip; }
.section--aurora::after {
  content: '';
  position: absolute;
  inset: -10% 0;              /* no horizontal bleed — it widened the document */
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(38% 48% at 16% 28%, rgba(232,194,0,0.12), transparent 70%),
    radial-gradient(44% 54% at 86% 76%, rgba(232,194,0,0.09), transparent 70%);
  animation: auroraDrift 19s ease-in-out infinite alternate;
}
@keyframes auroraDrift {   /* scaleY only: uniform scale grew it sideways */
  0%   { transform: translate3d(0,0,0) scaleY(1);     opacity: 0.75; }
  100% { transform: translate3d(0,-22px,0) scaleY(1.1); opacity: 1; }
}

/* Faint corner sheen on light sections so they aren't flat */
.section--sheen { background-image:
  radial-gradient(60% 70% at 100% 0%, rgba(232,194,0,0.06), transparent 60%),
  radial-gradient(55% 60% at 0% 100%, rgba(10,10,10,0.04), transparent 60%); }

/* ── Soft seams: feather a section's edge into its neighbour's color ── */
.seam-dark-top    { box-shadow: inset 0 88px 64px -58px rgba(10,10,10,0.92); }
.seam-light-edges { box-shadow: inset 0 88px 66px -56px rgba(251,247,234,0.92),
                                inset 0 -88px 66px -56px rgba(251,247,234,0.92); }
.seam-light-top   { box-shadow: inset 0 88px 64px -56px rgba(251,247,234,0.92); }

/* ── 3D tilt base (shared by both card types) ── */
.card-grid, .approach-grid { perspective: 1100px; }
.tilt {
  transform-style: preserve-3d;
  transition: transform 0.4s cubic-bezier(.2,.8,.2,1), box-shadow 0.4s ease, border-color 0.4s ease;
  will-change: transform;
}

/* ── Frosted-Glass Pain Cards (square, with traveling gold edge-beam) ── */
.card-grid--square {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
@property --beam { syntax: '<angle>'; initial-value: 0deg; inherits: false; }

.glass-card {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  background: linear-gradient(152deg, rgba(28,28,26,0.94) 0%, rgba(10,10,10,0.96) 100%);
  border: 1px solid rgba(232,194,0,0.16);
  box-shadow: 0 12px 40px rgba(0,0,0,0.20), inset 0 1px 0 rgba(255,255,255,0.04);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
@media (min-width: 601px) {
  .glass-card { aspect-ratio: 1 / 1; }
}
.glass-card::before {              /* cursor glare */
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(240px circle at var(--mx, 50%) var(--my, 0%), rgba(232,194,0,0.22), transparent 60%);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.glass-card:hover::before { opacity: 1; }
.glass-card::after {               /* traveling gold edge-beam */
  content: '';
  position: absolute;
  inset: 0;
  z-index: 3;
  border-radius: inherit;
  padding: 1.5px;
  background: conic-gradient(from var(--beam),
    transparent 0deg, transparent 248deg,
    rgba(232,194,0,0.0) 256deg, var(--color-gold) 300deg, var(--color-gold-hi) 326deg,
    rgba(232,194,0,0.0) 348deg, transparent 360deg);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  animation: beamRun 4.5s linear infinite;
}
.glass-card:nth-child(2)::after { animation-delay: -1.1s; }
.glass-card:nth-child(3)::after { animation-delay: -2.2s; }
.glass-card:nth-child(4)::after { animation-delay: -3.3s; }
@keyframes beamRun { to { --beam: 360deg; } }
.glass-card:hover {
  border-color: rgba(232,194,0,0.40);
  box-shadow: 0 22px 60px rgba(0,0,0,0.32), 0 0 26px rgba(232,194,0,0.18);
}
.glass-card__icon {
  position: relative;
  z-index: 2;
  width: 60px; height: 60px;
}
.glass-card__icon img { width: 100%; height: 100%; object-fit: contain; display: block; }
.glass-card p { position: relative; z-index: 2; color: rgba(255,255,255,0.90); font-size: 1.02rem; margin: 0; line-height: 1.55; }

/* ── Gradient Premium Cards (Solution / approach) ── */
.grad-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  min-height: 270px;
  background: linear-gradient(180deg, #161614 0%, #0A0A0A 78%);
  box-shadow: 0 -10px 80px -22px rgba(232,194,0,0.30), 0 12px 34px rgba(0,0,0,0.55);
}
.grad-card__glow {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: radial-gradient(ellipse at 50% 122%, rgba(232,194,0,0.55) -10%, transparent 60%);
  filter: blur(42px);
  opacity: 0.8;
  transition: opacity 0.4s ease;
}
.grad-card:hover .grad-card__glow { opacity: 1; }
.grad-card__noise {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  opacity: 0.28; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='nn'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='5' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23nn)'/%3E%3C/svg%3E");
}
.grad-card__border {                /* glowing bottom rule + corners */
  position: absolute; left: 0; right: 0; bottom: 0; height: 2px; z-index: 3;
  background: linear-gradient(90deg, transparent 0%, rgba(232,194,0,0.9) 50%, transparent 100%);
  box-shadow: 0 0 18px 3px rgba(232,194,0,0.55);
  transition: box-shadow 0.4s ease;
}
.grad-card:hover .grad-card__border { box-shadow: 0 0 28px 5px rgba(232,194,0,0.9); }
.grad-card__border::before,
.grad-card__border::after {
  content: ''; position: absolute; bottom: 0; width: 1px; height: 60px;
  background: linear-gradient(to top, rgba(232,194,0,0.8), transparent);
}
.grad-card__border::before { left: 0; }
.grad-card__border::after { right: 0; }
.grad-card__body { position: relative; z-index: 4; padding: 32px 30px; }
.grad-card__icon {
  width: 50px; height: 50px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem;
  background: linear-gradient(225deg, #1f1f1c 0%, #121212 100%);
  box-shadow: inset 1px 1px 3px rgba(255,255,255,0.12), inset -2px -2px 5px rgba(0,0,0,0.65), 0 6px 14px rgba(0,0,0,0.45);
}
.grad-card__icon svg { width: 22px; height: 22px; stroke: var(--color-gold); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.grad-card h4 { color: #fff; margin-bottom: 0.5rem; }
.grad-card p { color: rgba(255,255,255,0.72); font-size: 0.95rem; margin: 0; line-height: 1.62; }

/* Animate the CTA's existing gold bloom */
.cta-section::before { animation: auroraDrift 16s ease-in-out infinite alternate; }

/* ============================================================
   CHRISTIAN THERAPY — distinct split hero + "light from above" motif
   (additive; does not affect the trauma page)
   ============================================================ */
.hero-split { position: relative; overflow: hidden; background: var(--color-ink); }
.hero-split::before {                /* "light from above" glow over the photo side */
  content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: radial-gradient(120% 70% at 70% -10%, rgba(232,194,0,0.16), transparent 55%);
  animation: rayBreathe 9s ease-in-out infinite alternate;
}
.hero-split::after {                 /* gold base rule */
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 4px; z-index: 3;
  background: linear-gradient(90deg, var(--color-gold-deep), var(--color-gold-hi), var(--color-gold-deep));
}
.hero-split__inner {
  position: relative; z-index: 2;
  display: grid; gap: 46px; align-items: center;
  padding: 92px 24px;
}
@media (min-width: 900px) {
  .hero-split__inner { grid-template-columns: 1.05fr 0.95fr; gap: 64px; padding: 118px 24px 122px; }
}
.hero-split__text { max-width: 600px; }
.hero-split__text h1 { color: #fff; margin-bottom: 1.3rem; text-shadow: 0 2px 28px rgba(0,0,0,0.5); }
.hero-split__text h1 .accent { color: var(--color-gold); white-space: nowrap; }
.hero-split__text .hero-sub { color: rgba(255,255,255,0.85); font-size: 1.25rem; line-height: 1.6; margin-bottom: 2rem; max-width: 540px; }
.hero-split__cta { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; }
.hero-split__cta .hero__cta-note { color: rgba(255,255,255,0.6); font-size: 0.82rem; }

.hero-split__media { position: relative; }
.hero-frame { position: relative; border-radius: 6px; overflow: hidden; box-shadow: 0 34px 90px rgba(0,0,0,0.6); }
.hero-frame img { width: 100%; display: block; aspect-ratio: 4 / 5; object-fit: cover; }
.hero-frame::after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(10,10,10,0.5), transparent 45%); }
.hero-split__media::before,
.hero-split__media::after {          /* gold corner brackets */
  content: ''; position: absolute; width: 48px; height: 48px; border: 2px solid var(--color-gold); z-index: 4;
}
.hero-split__media::before { top: -12px; left: -12px; border-right: 0; border-bottom: 0; }
.hero-split__media::after  { bottom: -12px; right: -12px; border-left: 0; border-top: 0; }
@media (max-width: 899px) { .hero-split__media { max-width: 460px; margin: 0 auto; } }

/* "Light from above" — dark-section motif unique to the Christian page */
.section--rays::after {
  content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(120% 72% at 50% -8%, rgba(232,194,0,0.16), transparent 56%);
  animation: rayBreathe 9s ease-in-out infinite alternate;
}
@keyframes rayBreathe { 0% { opacity: 0.5; } 100% { opacity: 1; } }

/* Reduced-motion: kill drifts and tilt return jitter */
@media (prefers-reduced-motion: reduce) {
  .section--aurora::after,
  .section--rays::after,
  .hero-split::before,
  .cta-section::before,
  .glass-card::after,
  .hero--animated { animation: none !important; }
  .tilt { transition: none !important; }
}

/* ── Who This Is For / Who It Isn't (dark glass cards on a light section) ── */
.fit-grid { display: grid; gap: 22px; margin-top: 2.6rem; }
@media (min-width: 768px) { .fit-grid { grid-template-columns: 1fr 1fr; gap: 28px; } }
.fit-card {
  position: relative;
  border-radius: 14px;
  padding: 34px 30px;
  background: linear-gradient(152deg, rgba(28,28,26,0.95) 0%, rgba(10,10,10,0.97) 100%);
  border: 1px solid rgba(232,194,0,0.16);
  box-shadow: 0 12px 40px rgba(0,0,0,0.20), inset 0 1px 0 rgba(255,255,255,0.04);
  transition: var(--transition);
}
.fit-card:hover {
  transform: translateY(-4px);
  border-color: rgba(232,194,0,0.34);
  box-shadow: 0 22px 60px rgba(0,0,0,0.30), 0 0 26px rgba(232,194,0,0.16);
}
.fit-card--not {
  background: linear-gradient(152deg, rgba(22,22,21,0.95) 0%, rgba(8,8,8,0.97) 100%);
  border-color: var(--color-line-dark);
}
.fit-card__head {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 1.4rem;
}
.fit-card__badge {
  width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.05rem; font-weight: 700; line-height: 1;
}
.fit-card--for .fit-card__badge { background: var(--color-gold); color: var(--color-ink); box-shadow: 0 0 18px rgba(232,194,0,0.35); }
.fit-card--not .fit-card__badge { background: rgba(255,255,255,0.07); color: rgba(255,255,255,0.55); border: 1px solid var(--color-line-dark); }
.fit-list { display: flex; flex-direction: column; gap: 15px; }
.fit-list li {
  display: flex; gap: 13px; align-items: flex-start;
  color: rgba(255,255,255,0.84);
  font-size: 1rem; line-height: 1.55;
}
.fit-list li::before {
  font-family: var(--font-display);
  font-weight: 700;
  flex-shrink: 0;
  line-height: 1.55;
}
.fit-card--for .fit-list li::before { content: '✓'; color: var(--color-gold); }
.fit-card--not .fit-list li::before { content: '✕'; color: rgba(255,255,255,0.38); }

/* Centered emphasis line (used to set up the fit quotes) */
.fit-kicker {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: none;
  font-size: clamp(1.3rem, 2.4vw, 1.8rem);
  line-height: 1.32;
  color: var(--color-ink);
  text-align: center;
  max-width: 760px;
  margin: 2.6rem auto 0;
}

.fit-note {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.55;
  color: var(--color-ink-soft, var(--color-ink));
  text-align: center;
  max-width: 680px;
  margin: 2rem auto 0;
  opacity: 0.85;
}

/* ── Contact — details + form ── */
.contact-split { display: grid; gap: 40px; align-items: start; margin-top: 2.6rem; }
@media (min-width: 860px) { .contact-split { grid-template-columns: 0.92fr 1.08fr; gap: 54px; } }
.contact-lines { display: flex; flex-direction: column; gap: 16px; }
.contact-line {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 22px;
  background: var(--color-white);
  border-left: 3px solid var(--color-gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.contact-line:hover { transform: translateX(4px); box-shadow: var(--shadow-hover); }
.contact-line__ico {
  width: 44px; height: 44px; flex-shrink: 0; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(232,194,0,0.12); border: 1px solid var(--color-line-gold);
}
.contact-line__ico svg { width: 20px; height: 20px; stroke: var(--color-gold-deep); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.contact-line__label { font-family: var(--font-display); font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--color-text-mute); display: block; margin-bottom: 1px; }
.contact-line__value { font-size: 1.12rem; font-weight: 600; color: var(--color-ink); line-height: 1.2; }

.contact-form {
  background: var(--color-white);
  border: 1px solid var(--color-cream-2);
  border-top: 3px solid var(--color-gold);
  border-radius: var(--radius);
  padding: 34px 30px;
  box-shadow: var(--shadow);
}
.form-grid { display: grid; gap: 18px; }
@media (min-width: 560px) { .form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; } }
.form-field { display: flex; flex-direction: column; gap: 7px; }
.form-field label { font-family: var(--font-display); font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--color-text-mute); }
.form-field input, .form-field textarea {
  font-family: var(--font-body); font-size: 1rem; color: var(--color-text);
  padding: 13px 15px; border: 1px solid var(--color-cream-2); border-radius: var(--radius);
  background: var(--color-cream); transition: var(--transition); width: 100%;
}
.form-field input:focus, .form-field textarea:focus {
  outline: none; border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(232,194,0,0.15); background: #fff;
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 0.86rem; color: var(--color-text-mute); margin-top: 4px; }
.contact-form .btn { width: 100%; }

/* ── Pricing — rate card ── */
.price-card {
  position: relative; overflow: hidden;
  max-width: 560px; margin: 2.8rem auto 0;
  background: linear-gradient(160deg, #161614 0%, #0A0A0A 82%);
  border: 1px solid rgba(232,194,0,0.22);
  border-radius: 18px;
  padding: 46px 40px;
  box-shadow: 0 -10px 70px -26px rgba(232,194,0,0.40), 0 18px 44px rgba(0,0,0,0.50);
  text-align: center;
}
.price-card__amount { font-family: var(--font-display); font-weight: 700; color: #fff; line-height: 1; font-size: clamp(3.2rem, 8vw, 4.6rem); }
.price-card__amount span { color: var(--color-gold); }
.price-card__per { display: block; font-family: var(--font-display); font-size: 0.8rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--color-gold-deep); margin-top: 8px; }
.price-card__rows { margin: 2rem 0 0; text-align: left; }
.price-card__rows li { display: flex; justify-content: space-between; gap: 16px; padding: 14px 0; border-top: 1px solid var(--color-line-dark); color: rgba(255,255,255,0.80); font-size: 1rem; }
.price-card__rows li:first-child { border-top: 0; }
.price-card__rows li b { color: #fff; font-weight: 600; text-align: right; }

/* Benefit / cash-pay cards (light) */
.benefit-grid { display: grid; gap: 22px; margin-top: 2.6rem; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.benefit-card {
  background: var(--color-white);
  border: 1px solid var(--color-cream-2);
  border-top: 3px solid var(--color-gold);
  border-radius: var(--radius);
  padding: 28px 26px;
  transition: var(--transition);
}
.benefit-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-top-color: var(--color-gold-hi); }
.benefit-card h4 { color: var(--color-ink); margin-bottom: 0.5rem; }
.benefit-card p { color: var(--color-text-mute); font-size: 0.96rem; margin: 0; line-height: 1.6; }

/* FAQ category heading */
.faq-cat {
  font-family: var(--font-display);
  font-size: 1.05rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--color-gold-deep);
  margin: 2.6rem 0 0.4rem;
}
.faq-cat:first-of-type { margin-top: 2.6rem; }

/* ── Footer note (build only — client has real footer) ── */

/* ============================================================
   SITE NAVIGATION — primary header nav
   "Forged": Oswald caps, gold hairline underline drawn on hover.
   ============================================================ */
.site-header__nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
  margin-right: 26px;
}
.site-header__nav a {
  position: relative;
  font-family: var(--font-display);
  font-size: 0.80rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  padding: 6px 0;
  transition: color var(--transition);
  white-space: nowrap;
}
.site-header__nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--color-gold);
  transition: width var(--transition);
}
.site-header__nav a:hover,
.site-header__nav a:focus-visible { color: var(--color-white); }
.site-header__nav a:hover::after,
.site-header__nav a:focus-visible::after { width: 100%; }
.site-header__nav a[aria-current="page"] { color: var(--color-gold); }
.site-header__nav a[aria-current="page"]::after { width: 100%; }

/* ── Mobile toggle ── */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: 1px solid var(--color-line-gold);
  border-radius: var(--radius-btn);
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--color-gold);
  transition: var(--transition);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1100px) {
  .nav-toggle { display: flex; }
  .site-header__inner { gap: 12px; }
  .site-header__cta { display: none; }
  .site-header__nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(340px, 86vw);
    margin: 0;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
    padding: 90px 34px 34px;
    background: var(--color-ink);
    border-left: 1px solid var(--color-line-gold);
    transform: translateX(100%);
    transition: transform 0.36s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 60;
    overflow-y: auto;
    display: none;            /* closed: out of layout, contributes no overflow */
  }
  .site-header__nav.is-mounted { display: flex; }
  .site-header__nav.is-open { transform: translateX(0); }
  .site-header__nav > a {
    font-size: 1.24rem;
    width: 100%;
    padding: 15px 0;
    border-bottom: 1px solid var(--color-line-dark);
    opacity: 0;
    transform: translateX(16px);
  }
  .site-header__nav > .nav-drop { opacity: 0; transform: translateX(16px); }
  .site-header__nav a::after { display: none; }
  .site-header__nav.is-open > a,
  .site-header__nav.is-open > .nav-drop {
    animation: navIn 0.4s ease forwards;
  }
  .site-header__nav.is-open > *:nth-child(1) { animation-delay: 0.06s; }
  .site-header__nav.is-open > *:nth-child(2) { animation-delay: 0.10s; }
  .site-header__nav.is-open > *:nth-child(3) { animation-delay: 0.14s; }
  .site-header__nav.is-open > *:nth-child(4) { animation-delay: 0.18s; }
  .site-header__nav.is-open > *:nth-child(5) { animation-delay: 0.22s; }
  .site-header__nav.is-open > *:nth-child(6) { animation-delay: 0.26s; }
  .site-header__nav.is-open > *:nth-child(7) { animation-delay: 0.30s; }
  .site-header__nav .btn {
    margin-top: 22px;
    border-bottom: none;
    text-align: center;
  }
  .nav-scrim {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(2px);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
    z-index: 45;
  }
  .nav-scrim.is-open { opacity: 1; pointer-events: auto; }
}
@keyframes navIn {
  to { opacity: 1; transform: translateX(0); }
}
@media (prefers-reduced-motion: reduce) {
  .site-header__nav > a,
  .site-header__nav > .nav-drop { opacity: 1; transform: none; }
  .site-header__nav.is-open > a,
  .site-header__nav.is-open > .nav-drop { animation: none; }
}

/* Skip link — keyboard accessibility */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--color-gold);
  color: var(--color-ink);
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 12px 20px;
}
.skip-link:focus { left: 8px; top: 8px; }

/* ============================================================
   SITE FOOTER
   ============================================================ */
.site-footer {
  background: var(--color-ink);
  color: rgba(255,255,255,0.62);
  border-top: 1px solid var(--color-line-gold);
  font-size: 0.94rem;
}
.site-footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 66px 24px 40px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 46px;
}
.site-footer__brand img { height: 54px; width: auto; margin-bottom: 20px; }
.site-footer__tagline {
  max-width: 300px;
  line-height: 1.6;
  font-size: 0.92rem;
  margin-bottom: 18px;
}
.site-footer h4 {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 18px;
}
.site-footer ul li { margin-bottom: 11px; }
.site-footer a {
  color: rgba(255,255,255,0.62);
  transition: color var(--transition);
}
.site-footer a:hover,
.site-footer a:focus-visible { color: var(--color-gold); }
.site-footer__contact li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  line-height: 1.5;
}
.site-footer__contact .lbl {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  min-width: 54px;
  padding-top: 2px;
}
.site-footer__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}
.site-footer__badges span {
  font-family: var(--font-display);
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  border: 1px solid var(--color-line-dark);
  border-radius: var(--radius-btn);
  padding: 6px 11px;
}
.site-footer__bar {
  border-top: 1px solid var(--color-line-dark);
}
.site-footer__bar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 22px 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.38);
}
.site-footer__crisis {
  background: rgba(232,194,0,0.05);
  border-top: 1px solid var(--color-line-dark);
}
.site-footer__crisis p {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 16px 24px;
  font-size: 0.8rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.48);
  text-align: center;
}
.site-footer__crisis strong { color: rgba(255,255,255,0.72); }
@media (max-width: 900px) {
  .site-footer__inner { grid-template-columns: 1fr 1fr; gap: 38px; }
}
@media (max-width: 560px) {
  .site-footer__inner { grid-template-columns: 1fr; gap: 34px; padding: 50px 24px 32px; }
  .site-footer__bar-inner { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   BOOKING PAGE — standalone consultation scheduler
   ============================================================ */
.book-head {
  background: var(--color-ink);
  border-bottom: 1px solid var(--color-line-gold);
  padding: 78px 24px 66px;
  text-align: center;
}
.book-head h1 {
  color: var(--color-white);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  margin-bottom: 18px;
}
.book-head h1 .accent { color: var(--color-gold); }
.book-head p {
  max-width: 620px;
  margin: 0 auto;
  color: rgba(255,255,255,0.72);
  font-size: 1.02rem;
}
.book-wrap {
  background: var(--color-cream);
  padding: 56px 24px 84px;
}
.book-frame {
  max-width: 940px;
  margin: 0 auto;
  background: var(--color-white);
  border: 1px solid rgba(35,33,27,0.10);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 14px;
  overflow: hidden;
}
.book-frame iframe {
  display: block;
  width: 100%;
  border: none;
  border-radius: var(--radius);
}
.book-alt {
  max-width: 620px;
  margin: 40px auto 0;
  text-align: center;
  font-size: 0.95rem;
  color: var(--color-text-mute);
}
.book-alt a { color: var(--color-text); border-bottom: 1px solid var(--color-line-gold); }
.book-alt a:hover { color: var(--color-gold-deep); }
@media (max-width: 600px) {
  .book-head { padding: 54px 24px 46px; }
  .book-wrap { padding: 36px 16px 60px; }
  .book-frame { padding: 8px; }
}

/* In-menu CTA is for the mobile drawer only — desktop uses .site-header__cta */
.site-header__nav > .btn { display: none; }
.site-header__nav > .btn::after { display: none; }
@media (max-width: 1100px) {
  .site-header__nav > .btn {
    display: block;
    color: var(--color-ink);
    font-size: 0.86rem;
    letter-spacing: 0.12em;
  }
  .site-header__nav > .btn:hover,
  .site-header__nav > .btn:focus-visible { color: var(--color-ink); }
}

/* ── Fixes: mobile drawer overflow, calendar height, long-string wrap ── */

/* The off-canvas drawer sits beyond the right edge and would widen the
   document. `clip` (not `hidden`) kills the scroll without breaking the
   sticky header. */
html { overflow-x: clip; }

/* min-height must live here, not inline: the GHL embed script rewrites the
   iframe's inline style attribute and would wipe it. */
.book-frame iframe { min-height: 760px; }
@media (max-width: 600px) {
  .book-frame iframe { min-height: 1020px; }
}

/* Long email addresses must not force horizontal overflow */
.site-footer__contact a,
.site-footer__contact span { overflow-wrap: anywhere; }

/* GHL's form_embed.js starts the iframe as position:absolute/hidden until the
   widget reports ready, which collapses the container. Reserve the space on the
   FRAME so the page never jumps or looks empty mid-load. */
.book-frame { min-height: 780px; }
@media (max-width: 600px) { .book-frame { min-height: 1040px; } }

/* Reserve space for the GHL contact form while its script initialises
   (the iframe is absolutely positioned + hidden until the widget is ready). */
.form-embed { min-height: 560px; }

/* ============================================================
   NAV DROPDOWN — Specialties
   ============================================================ */
.nav-drop { position: relative; display: flex; align-items: center; }
.nav-drop__btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 0.80rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  padding: 6px 0;
  position: relative;
  transition: color var(--transition);
  white-space: nowrap;
}
.nav-drop__btn::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--color-gold);
  transition: width var(--transition);
}
.nav-drop:hover .nav-drop__btn,
.nav-drop__btn:focus-visible,
.nav-drop__btn[aria-expanded="true"] { color: var(--color-white); }
.nav-drop:hover .nav-drop__btn::after,
.nav-drop__btn:focus-visible::after,
.nav-drop__btn[aria-expanded="true"]::after { width: 100%; }
.nav-drop__btn[data-current="true"] { color: var(--color-gold); }
.nav-drop__btn[data-current="true"]::after { width: 100%; }
.nav-drop__caret {
  width: 8px; height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translate(-1px,-1px);
  transition: transform var(--transition);
}
.nav-drop__btn[aria-expanded="true"] .nav-drop__caret { transform: rotate(-135deg) translate(-2px,-2px); }

.nav-drop__menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 232px;
  background: var(--color-ink-soft);
  border: 1px solid var(--color-line-gold);
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(0,0,0,0.45);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  z-index: 70;
}
.nav-drop__menu::before {         /* hover bridge so the gap doesn't close it */
  content: "";
  position: absolute;
  top: -16px; left: 0; right: 0; height: 16px;
}
.nav-drop:hover .nav-drop__menu,
.nav-drop:focus-within .nav-drop__menu,
.nav-drop.is-open .nav-drop__menu,
.nav-drop__btn[aria-expanded="true"] + .nav-drop__menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.site-header__nav .nav-drop__menu a {
  display: block;
  padding: 11px 14px;
  font-size: 0.76rem;
  letter-spacing: 0.11em;
  color: rgba(255,255,255,0.78);
  border-radius: var(--radius-btn);
  white-space: nowrap;
}
.site-header__nav .nav-drop__menu a::after { display: none; }
.site-header__nav .nav-drop__menu a:hover,
.site-header__nav .nav-drop__menu a:focus-visible {
  background: rgba(232,194,0,0.10);
  color: var(--color-gold);
}
.site-header__nav .nav-drop__menu a[aria-current="page"] { color: var(--color-gold); }

/* ── Mobile drawer: flatten into a labelled group ── */
@media (max-width: 1100px) {
  .nav-drop { display: block; width: 100%; }
  .nav-drop__btn {
    width: 100%;
    justify-content: space-between;
    font-size: 1.24rem;
    padding: 15px 0;
    border-bottom: 1px solid var(--color-line-dark);
  }
  .nav-drop__btn::after { display: none; }
  .nav-drop__caret { width: 10px; height: 10px; }
  .nav-drop__menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    min-width: 0;
    background: none;
    border: none;
    box-shadow: none;
    padding: 0;
    display: none;
  }
  .nav-drop__menu::before { display: none; }
  .nav-drop.is-open .nav-drop__menu,
  .nav-drop__btn[aria-expanded="true"] + .nav-drop__menu { display: block; transform: none; }
  .site-header__nav .nav-drop__menu a {
    font-size: 1.04rem;
    padding: 13px 0 13px 18px;
    border-bottom: 1px solid var(--color-line-dark);
    border-left: 2px solid var(--color-line-gold);
    margin-left: 2px;
    border-radius: 0;
  }
}
