/* ==========================================================================
   Empowerment Therapy Group — Modern Clinical / Editorial Premium
   Navy #020C43 · Gold #BC9633 · Teal #0A4049 · Cream #FAF7F2
   Single light theme (intentional: brief calls for bright, never dark/moody)
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  /* Brand */
  --navy: #020C43;
  --navy-90: #0c1652;
  --navy-soft: #1b2563;
  --gold: #BC9633;
  --gold-deep: #9c7a23;
  --teal: #0A4049;
  --teal-soft: #15545f;
  --cream: #FAF7F2;
  --cream-2: #F4EFE7;
  --white: #FFFFFF;

  /* Semantic surfaces */
  --color-bg: var(--cream);
  --color-surface: var(--white);
  --color-surface-2: #FBF9F5;
  --color-surface-offset: var(--cream-2);
  --color-border: #E4DCCE;
  --color-divider: #EAE2D5;

  /* Text */
  --color-text: var(--navy);
  --color-text-body: #2A3354;     /* slightly softened navy for long reading */
  --color-text-muted: #5A6178;
  --color-text-inverse: #F7F4EE;

  /* Type scale (fluid) */
  --text-xs: clamp(0.8rem, 0.76rem + 0.2vw, 0.9rem);
  --text-sm: clamp(0.9rem, 0.86rem + 0.25vw, 1rem);
  --text-base: clamp(1.0625rem, 1rem + 0.3vw, 1.1875rem);  /* 17 → 19px */
  --text-lg: clamp(1.25rem, 1.1rem + 0.7vw, 1.6rem);
  --text-xl: clamp(1.6rem, 1.3rem + 1.4vw, 2.4rem);
  --text-2xl: clamp(2.1rem, 1.5rem + 2.6vw, 3.4rem);
  --text-3xl: clamp(2.6rem, 1.6rem + 4vw, 4.6rem);

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

  --radius-sm: 0.4rem; --radius-md: 0.7rem; --radius-lg: 1.1rem; --radius-xl: 1.6rem;
  --radius-full: 9999px;

  --transition: 200ms cubic-bezier(0.16, 1, 0.3, 1);

  --shadow-sm: 0 1px 3px rgba(2,12,67,0.06), 0 1px 2px rgba(2,12,67,0.04);
  --shadow-md: 0 8px 24px rgba(2,12,67,0.08);
  --shadow-lg: 0 24px 60px rgba(2,12,67,0.12);

  --content-narrow: 720px;
  --content-default: 1080px;
  --content-wide: 1240px;

  --font-display: 'Playfair Display', 'Fraunces', Georgia, serif;
  --font-body: 'Inter', 'Source Sans 3', system-ui, sans-serif;
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
  overflow-x: hidden;
}

body {
  min-height: 100dvh;
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.68;
  color: var(--color-text-body);
  background: var(--color-bg);
  overflow-x: hidden;
}

img, picture, svg, video { display: block; max-width: 100%; height: auto; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--color-text);
  line-height: 1.12;
  letter-spacing: -0.01em;
  text-wrap: balance;
  font-weight: 500;
}

p { text-wrap: pretty; }

a { color: var(--teal); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-deep); }

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

::selection { background: rgba(188,150,51,0.25); color: var(--navy); }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: var(--radius-sm); }

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

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: 1rem; top: -100px; z-index: 200;
  background: var(--navy); color: #fff; padding: 0.6rem 1rem;
  border-radius: var(--radius-sm); transition: top var(--transition);
}
.skip-link:focus { top: 1rem; color: #fff; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--content-wide); margin-inline: auto; padding-inline: clamp(1.25rem, 5vw, 3rem); }
.measure { max-width: var(--content-narrow); }
.section { padding-block: clamp(var(--space-12), 7vw, var(--space-24)); }
.section--tight { padding-block: clamp(var(--space-10), 5vw, var(--space-16)); }
.bg-cream { background: var(--cream); }
.bg-cream-2 { background: var(--cream-2); }
.bg-white { background: var(--white); }
.center { text-align: center; }

.eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
  display: inline-flex; align-items: center; gap: 0.6rem;
  margin-bottom: var(--space-5);
}
.eyebrow::before {
  content: ""; width: 28px; height: 2px; background: var(--gold); display: inline-block;
}
.eyebrow.center { justify-content: center; }

.gold-rule { width: 56px; height: 3px; background: var(--gold); border: 0; margin: var(--space-6) 0; }
.gold-rule.center { margin-inline: auto; }

/* ---------- Buttons (large, tappable) ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 1rem 1.75rem;
  min-height: 54px;
  border-radius: var(--radius-full);
  transition: all var(--transition);
  text-align: center;
  cursor: pointer;
}
.btn-primary {
  background: var(--navy); color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--teal); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-secondary {
  background: transparent; color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn-secondary:hover { background: var(--navy); color: #fff; transform: translateY(-2px); }
.btn-gold {
  background: var(--gold); color: var(--navy);
}
.btn-gold:hover { background: var(--gold-deep); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-group { display: flex; flex-wrap: wrap; gap: var(--space-4); }
.btn-group.center { justify-content: center; }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: var(--navy);
  border-bottom: 1px solid rgba(247,244,238,0.10);
  transition: box-shadow var(--transition);
}
.header.scrolled { box-shadow: 0 6px 24px rgba(2,12,67,0.28); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: var(--space-6); min-height: 88px; }

.brand { display: inline-flex; align-items: center; color: #fff; }
.brand-logo { display: block; height: 64px; width: auto; flex-shrink: 0; }
.brand-logo-footer { height: 72px; }

.nav-links { display: flex; align-items: center; gap: var(--space-2); list-style: none; }
.nav-links > li { position: relative; }
.nav-link {
  display: inline-flex; align-items: center; gap: 0.35rem;
  font-size: var(--text-sm); font-weight: 500; color: rgba(247,244,238,0.88);
  padding: 0.6rem 0.9rem; border-radius: var(--radius-sm);
}
.nav-link:hover, .nav-link[aria-expanded="true"] { color: #fff; background: rgba(247,244,238,0.10); }
.nav-link svg { transition: transform var(--transition); }
.nav-link[aria-expanded="true"] svg { transform: rotate(180deg); }

.dropdown {
  position: absolute; top: calc(100% + 8px); left: 0;
  min-width: 280px; background: var(--white);
  border: 1px solid var(--color-border); border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg); padding: var(--space-3);
  list-style: none; opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all var(--transition);
}
.nav-links > li:hover .dropdown,
.nav-links > li:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
  display: block; padding: 0.7rem 0.85rem; border-radius: var(--radius-sm);
  color: var(--navy); font-size: var(--text-sm); font-weight: 500;
}
.dropdown a:hover { background: var(--cream); color: var(--teal); }

.nav-cta { display: flex; align-items: center; gap: var(--space-3); }
.nav-cta .btn { padding: 0.7rem 1.3rem; min-height: 46px; }
/* Nav sits on navy now: use gold CTA for contrast */
.nav-cta .btn-primary { background: var(--gold); color: var(--navy); }
.nav-cta .btn-primary:hover { background: #d4ac42; color: var(--navy); box-shadow: 0 8px 24px rgba(188,150,51,0.35); }

.menu-toggle { display: none; width: 46px; height: 46px; align-items: center; justify-content: center; color: #fff; border-radius: var(--radius-sm); }
.menu-toggle:hover { background: rgba(247,244,238,0.10); }

/* Mobile nav */
@media (max-width: 940px) {
  .nav-links, .nav-cta .btn, .nav-cta .social-links--header { display: none; }
  .menu-toggle { display: inline-flex; }
  .brand-logo { height: 52px; }
  .nav { min-height: 72px; }
  .mobile-menu {
    position: fixed; inset: 72px 0 0 0; background: var(--cream);
    padding: var(--space-6) clamp(1.25rem,5vw,3rem) var(--space-12);
    overflow-y: auto; transform: translateX(100%); transition: transform var(--transition);
    z-index: 99; visibility: hidden;
  }
  .mobile-menu.open { transform: translateX(0); visibility: visible; }
  .mobile-menu ul { list-style: none; }
  .mobile-menu > ul > li { border-bottom: 1px solid var(--color-divider); }
  .mobile-menu a, .mobile-menu .m-group-label {
    display: block; padding: 1rem 0; font-size: 1.15rem; font-weight: 500; color: var(--navy);
    font-family: var(--font-display);
  }
  .mobile-menu .m-sub { padding-left: var(--space-4); padding-bottom: var(--space-3); }
  .mobile-menu .m-sub a { font-size: 1rem; font-family: var(--font-body); padding: 0.6rem 0; color: var(--color-text-muted); }
  .mobile-menu .btn { width: 100%; margin-top: var(--space-8); font-family: var(--font-body); display: flex; }
  .mobile-menu .btn.btn-primary { color: #fff; }
}
@media (min-width: 941px) { .mobile-menu { display: none; } }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; background: var(--cream); }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem,5vw,4.5rem);
  align-items: center;
  padding-top: clamp(var(--space-16), 8vw, var(--space-32));
  padding-bottom: clamp(var(--space-16), 8vw, var(--space-32));
}
.hero-eyebrow { /* uses .eyebrow */ }
.hero h1 {
  font-size: var(--text-3xl); font-weight: 500; line-height: 1.05;
  margin-bottom: var(--space-6);
}
.hero-lead { font-size: var(--text-lg); color: var(--color-text-body); margin-bottom: var(--space-5); max-width: 38ch; line-height: 1.5; }
.hero p.body { margin-bottom: var(--space-5); max-width: 52ch; }
.hero .btn-group { margin-top: var(--space-8); }
.hero-figure {
  border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
}
.hero-figure img { width: 100%; aspect-ratio: 4/3.1; object-fit: cover; }
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; gap: var(--space-10); }
  .hero-figure { order: -1; }
  .hero-figure img { aspect-ratio: 16/9; }
}

/* ---------- Generic page header (interior pages) ---------- */
.page-header { background: var(--cream); position: relative; overflow: hidden; }
.page-header-inner {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(2rem,4vw,4rem);
  align-items: center; padding-block: clamp(var(--space-16), 7vw, var(--space-32));
}
.page-header h1 { font-size: var(--text-2xl); font-weight: 500; margin-bottom: var(--space-5); }
.page-header .sub { font-size: var(--text-lg); color: var(--color-text-body); line-height: 1.5; max-width: 46ch; }
.page-header .btn-group { margin-top: var(--space-8); }
.page-header-figure {
  border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
}
.page-header-figure img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }

/* Full-bleed photo band */
.photo-band { position: relative; width: 100vw; left: 50%; transform: translateX(-50%); line-height: 0; }
.photo-band img { width: 100%; height: clamp(340px, 52vh, 600px); object-fit: cover; object-position: center; display: block; }
@media (max-width: 640px) { .photo-band img { height: clamp(280px, 60vh, 420px); } }
@media (max-width: 860px) {
  .page-header-inner { grid-template-columns: 1fr; gap: var(--space-8); }
  .page-header-figure { order: -1; }
  .page-header-figure img { aspect-ratio: 16/9; }
}

/* ---------- Trust strip ---------- */
.trust-strip { background: var(--navy); color: var(--color-text-inverse); margin-top: var(--space-12); }
.trust-strip .container { display: flex; justify-content: center; gap: var(--space-16); padding-block: var(--space-12); flex-wrap: wrap; }
.trust-item { display: flex; flex-direction: column; gap: 0.3rem; position: relative; padding-left: var(--space-5); }
.trust-item::before { content: ""; position: absolute; left: 0; top: 4px; bottom: 4px; width: 3px; background: var(--gold); border-radius: 2px; }
.trust-item strong { font-family: var(--font-display); font-size: var(--text-lg); font-weight: 500; color: #fff; line-height: 1.15; }
.trust-item span { font-size: var(--text-sm); color: rgba(247,244,238,0.78); }
@media (max-width: 760px) {
  .trust-strip .container { gap: var(--space-8); }
}
@media (max-width: 440px) { .trust-strip .container { flex-direction: column; align-items: center; gap: var(--space-6); } .trust-item { padding-left: 0; padding-top: var(--space-4); align-items: center; text-align: center; } .trust-item::before { left: 50%; top: 0; bottom: auto; transform: translateX(-50%); width: 32px; height: 3px; } }

/* ---------- Section heading block ---------- */
.section-head { max-width: 760px; margin-bottom: var(--space-12); }
.section-head.center { margin-inline: auto; }
.section-head h2 { font-size: var(--text-xl); margin-bottom: var(--space-4); }
.section-head p { color: var(--color-text-muted); font-size: var(--text-lg); line-height: 1.5; }

/* ---------- Prose ---------- */
.prose { max-width: 70ch; }
.prose.center { margin-inline: auto; }
.prose p { margin-bottom: var(--space-5); font-size: var(--text-base); }
.prose p:last-child { margin-bottom: 0; }
.prose h2 { font-size: var(--text-xl); margin: var(--space-12) 0 var(--space-5); }
.prose h3 { font-size: var(--text-lg); margin: var(--space-8) 0 var(--space-3); font-weight: 500; }
.prose .lead { font-size: var(--text-lg); color: var(--color-text); line-height: 1.5; }

/* ---------- Service cards ---------- */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-6); }
.card-grid.two { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 900px) { .card-grid, .card-grid.two { grid-template-columns: 1fr; } }
.service-card {
  background: var(--white); border: 1px solid var(--color-border);
  border-radius: var(--radius-lg); padding: var(--space-8);
  display: flex; flex-direction: column; transition: all var(--transition);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.service-card h3 { font-size: var(--text-lg); margin-bottom: var(--space-4); font-weight: 500; }
.service-card h3 a { color: var(--navy); }
.service-card h3 a:hover { color: var(--teal); }
.service-card p { color: var(--color-text-muted); font-size: var(--text-base); flex: 1; }
.service-card .card-link {
  margin-top: var(--space-6); font-weight: 600; font-size: var(--text-sm);
  color: var(--teal); display: inline-flex; align-items: center; gap: 0.4rem;
}
.service-card .card-link svg { transition: transform var(--transition); }
.service-card:hover .card-link svg { transform: translateX(4px); }
.service-card .card-num {
  font-family: var(--font-display); font-size: 0.95rem; color: var(--gold-deep);
  font-weight: 600; margin-bottom: var(--space-3);
}

/* ---------- Service image cards (homepage) ---------- */
.service-card--image { padding: 0; overflow: hidden; }
.service-card--image .service-card-media {
  display: block; width: 100%; aspect-ratio: 4 / 3; overflow: hidden;
  background: var(--cream-2);
}
.service-card--image .service-card-media img {
  width: 100%; height: 100%; object-fit: cover; object-position: 50% 22%; display: block;
  transition: transform 0.6s var(--ease, ease);
}
.service-card--image:hover .service-card-media img { transform: scale(1.04); }
.service-card--image .service-card-body {
  display: flex; flex-direction: column; flex: 1; padding: var(--space-8);
}
.service-card--image .service-card-body .card-link { margin-top: auto; }
@media (max-width: 900px) {
  .service-card--image .service-card-media { aspect-ratio: 16 / 10; }
}

/* ---------- Client feedback / testimonials ---------- */
.feedback-note {
  margin-top: var(--space-3); color: var(--color-text-muted);
  font-size: var(--text-sm);
}
.feedback-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-6);
  margin-top: var(--space-10);
}
@media (max-width: 900px) { .feedback-grid { grid-template-columns: 1fr; } }
.feedback-card {
  background: var(--cream); border: 1px solid var(--color-border);
  border-radius: var(--radius-lg); padding: var(--space-8);
  display: flex; flex-direction: column; transition: all var(--transition);
  position: relative;
}
.feedback-card::before {
  content: "\201C"; font-family: var(--font-display);
  font-size: 3.2rem; line-height: 0.7; color: var(--gold);
  display: block; margin-bottom: var(--space-3);
}
.feedback-card:hover { box-shadow: var(--shadow-md); border-color: var(--gold); }
.feedback-card blockquote {
  margin: 0; font-size: var(--text-base); line-height: 1.6;
  color: var(--color-text);
}

/* ---------- Legal documents (privacy / terms / HIPAA) ---------- */
.legal-meta {
  font-size: var(--text-sm); color: var(--color-text-muted);
  margin-bottom: var(--space-8); padding-bottom: var(--space-6);
  border-bottom: 1px solid var(--color-border);
}
.legal-meta strong { color: var(--navy); font-weight: 600; }
.legal-intro { margin-bottom: var(--space-10); }
.legal-intro p { margin-bottom: var(--space-4); }
.legal-callout {
  background: var(--cream-2); border-left: 3px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: var(--space-5) var(--space-6); margin: var(--space-8) 0;
  font-size: var(--text-sm); color: var(--color-text);
}
.legal-section { margin-top: var(--space-10); }
.legal-section h2 {
  font-size: var(--text-lg); font-weight: 600; color: var(--navy);
  margin-bottom: var(--space-4); scroll-margin-top: 110px;
}
.legal-section h3 {
  font-size: var(--text-base); font-weight: 600; color: var(--navy);
  margin: var(--space-6) 0 var(--space-2);
}
.legal-section p { margin-bottom: var(--space-4); }
.legal-section ul {
  list-style: none; margin: 0 0 var(--space-4); padding: 0;
}
.legal-section ul li {
  position: relative; padding-left: var(--space-6);
  margin-bottom: var(--space-2); color: var(--color-text);
}
.legal-section ul li::before {
  content: ""; position: absolute; left: 0; top: 0.65em;
  width: 6px; height: 6px; border-radius: 50%; background: var(--gold);
}
.legal-contact {
  background: var(--cream-2); border: 1px solid var(--color-border);
  border-radius: var(--radius-md); padding: var(--space-6) var(--space-8);
  margin-top: var(--space-4);
}
.legal-contact p { margin-bottom: var(--space-1); }

/* ---------- Feature / two-column editorial ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4.5rem); align-items: center; }
.split.text-first .split-media { order: 2; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; gap: var(--space-8); } .split.text-first .split-media { order: 0; } }
.split-media { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--color-border); }
.split-media img { width: 100%; aspect-ratio: 5/4; object-fit: cover; }

/* ---------- Pull quote / callout band ---------- */
.quote-band { background: var(--cream-2); }
.quote-band blockquote {
  font-family: var(--font-display); font-size: var(--text-xl); line-height: 1.3;
  color: var(--navy); max-width: 24ch; font-weight: 480;
}
.quote-band .quote-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(2rem,5vw,4rem); align-items: center; }
@media (max-width: 760px) { .quote-band .quote-grid { grid-template-columns: 1fr; } }

/* ---------- Checklist (may help with) ---------- */
.check-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-3) var(--space-8); }
.check-list.single { grid-template-columns: 1fr; }
@media (max-width: 700px) { .check-list { grid-template-columns: 1fr; } }
.check-list li {
  position: relative; padding-left: 2rem; font-size: var(--text-base);
  color: var(--color-text-body); line-height: 1.5; padding-block: 0.35rem;
}
.check-list li::before {
  content: ""; position: absolute; left: 0; top: 0.7em; width: 12px; height: 12px;
  border-radius: 50%; border: 2px solid var(--gold); background: transparent;
}

/* ---------- Steps (how it works) ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-6); counter-reset: step; }
@media (max-width: 900px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } }
.step { background: var(--white); border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: var(--space-6); }
.step-num {
  font-family: var(--font-display); font-size: 1.5rem; color: var(--gold-deep);
  font-weight: 600; margin-bottom: var(--space-3);
  width: 48px; height: 48px; border-radius: 50%; border: 1.5px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
}
.step h3 { font-size: var(--text-lg); margin-bottom: var(--space-2); font-weight: 500; }
.step p { color: var(--color-text-muted); font-size: var(--text-sm); }

/* ---------- Approach grid (about) ---------- */
.approach-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: var(--space-5); }
@media (max-width: 1000px) { .approach-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .approach-grid { grid-template-columns: 1fr; } }
.approach-item { padding: var(--space-6); background: var(--white); border: 1px solid var(--color-border); border-radius: var(--radius-md); border-top: 3px solid var(--gold); }
.approach-item h3 { font-size: var(--text-lg); margin-bottom: var(--space-2); font-weight: 500; }
.approach-item p { font-size: var(--text-sm); color: var(--color-text-muted); }

/* ---------- FAQ (accordion) ---------- */
.faq-list { max-width: 820px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--color-divider); }
.faq-q {
  width: 100%; text-align: left; display: flex; justify-content: space-between; align-items: center; gap: var(--space-4);
  padding: var(--space-6) 0; font-family: var(--font-display); font-size: var(--text-lg); font-weight: 500; color: var(--navy);
}
.faq-q:hover { color: var(--teal); }
.faq-icon { flex-shrink: 0; width: 24px; height: 24px; position: relative; transition: transform var(--transition); }
.faq-icon::before, .faq-icon::after { content: ""; position: absolute; background: var(--gold-deep); border-radius: 2px; }
.faq-icon::before { top: 11px; left: 2px; right: 2px; height: 2px; }
.faq-icon::after { left: 11px; top: 2px; bottom: 2px; width: 2px; transition: opacity var(--transition); }
.faq-q[aria-expanded="true"] .faq-icon::after { opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height var(--transition); }
.faq-a-inner { padding-bottom: var(--space-6); color: var(--color-text-body); max-width: 70ch; }
.faq-a-inner p + p { margin-top: var(--space-4); }

/* ---------- Profile (Chris Johns) ---------- */
.profile { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2rem,5vw,4rem); align-items: start; }
@media (max-width: 860px) { .profile { grid-template-columns: 1fr; } }
.profile-photo { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--color-border); position: sticky; top: 100px; }
@media (max-width: 860px) { .profile-photo { position: static; max-width: 360px; } }
.profile-photo img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.profile-name { font-size: var(--text-xl); margin-bottom: var(--space-1); }
.profile-role { font-size: var(--text-sm); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--teal); margin-bottom: var(--space-6); }

/* ---------- Crisis / disclaimer callout ---------- */
.callout {
  background: var(--white); border: 1.5px solid var(--color-border);
  border-left: 5px solid var(--gold); border-radius: var(--radius-md);
  padding: var(--space-6) var(--space-8);
}
.callout.crisis { border-left-color: #b23b3b; background: #FCF6F2; }
.callout h3 { font-size: var(--text-lg); margin-bottom: var(--space-3); font-weight: 500; }
.callout p { color: var(--color-text-body); font-size: var(--text-base); }
.callout p + p { margin-top: var(--space-3); }
.callout strong { color: var(--navy); }
.callout.crisis h3 { color: #b23b3b; }

/* ---------- Visible scheduling / email link ---------- */
.sched-link { font-family: var(--font-body); font-size: var(--text-sm); word-break: break-all; }
.sched-link a { color: var(--teal); font-weight: 500; border-bottom: 1px solid rgba(10,64,73,0.3); }
.sched-link a:hover { color: var(--gold-deep, #9c7a23); border-bottom-color: currentColor; }
.sched-link.center { text-align: center; }

/* ---------- Contact info / forms ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4rem); align-items: start; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.info-card { background: var(--white); border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: var(--space-8); }
.info-row { display: flex; gap: var(--space-4); padding: var(--space-4) 0; border-bottom: 1px solid var(--color-divider); }
.info-row:last-child { border-bottom: 0; }
.info-row .label { font-size: var(--text-xs); font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal); min-width: 96px; padding-top: 3px; }
.info-row .value { font-size: var(--text-base); color: var(--color-text); }
.info-row .value a { color: var(--navy); font-weight: 500; }
.info-row .value a:hover { color: var(--teal); }

/* ---------- CTA band ---------- */
.cta-band { background: var(--teal); color: #fff; border-radius: var(--radius-xl); padding: clamp(2.5rem,6vw,5rem); text-align: center; position: relative; overflow: hidden; }
.cta-band::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 80% 120%, rgba(188,150,51,0.22), transparent 55%); pointer-events: none; }
.cta-band h2 { color: #fff; font-size: var(--text-2xl); margin-bottom: var(--space-4); position: relative; }
.cta-band p { color: rgba(255,255,255,0.88); font-size: var(--text-lg); max-width: 52ch; margin: 0 auto var(--space-8); position: relative; line-height: 1.5; }
.cta-band .btn-group { position: relative; }
.cta-band .btn-primary { background: var(--gold); color: var(--navy); }
.cta-band .btn-primary:hover { background: #fff; color: var(--navy); }

/* ---------- Footer ---------- */
.footer { background: var(--navy); color: rgba(247,244,238,0.72); }
.footer a { color: rgba(247,244,238,0.78); }
.footer a:hover { color: var(--gold); }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: clamp(2rem,5vw,4rem); padding-block: var(--space-20) var(--space-12); }
@media (max-width: 800px) { .footer-top { grid-template-columns: 1fr 1fr; gap: var(--space-10); } }
@media (max-width: 520px) { .footer-top { grid-template-columns: 1fr; } }
.footer .brand-logo-footer { max-width: 100%; }
.footer-blurb { margin-top: var(--space-5); font-size: var(--text-sm); max-width: 38ch; line-height: 1.6; }

/* Social media icons -- subtle, outlined, calm */
.social-links { list-style: none; display: flex; flex-direction: row; align-items: center; gap: var(--space-3); margin: 0; padding: 0; }
.social-link {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 999px;
  border: 1px solid rgba(247,244,238,0.32); color: rgba(247,244,238,0.9);
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
  cursor: pointer;
}
.social-link:hover, .social-link:focus-visible,
.footer a.social-link:hover, .footer a.social-link:focus-visible {
  color: var(--navy); background: var(--gold); border-color: var(--gold); transform: translateY(-2px);
}
.footer ul.social-links { margin-top: var(--space-6); flex-direction: row; gap: var(--space-3); }
/* Header variant: navy outline on cream, smaller and understated */
.social-links--header { gap: var(--space-2); }
.social-link--sm {
  width: 36px; height: 36px;
  border-color: rgba(2,12,67,0.18); color: var(--navy);
}
.social-link--sm:hover, .social-link--sm:focus-visible {
  color: var(--navy); background: rgba(188,150,51,0.16); border-color: var(--gold);
}
.social-link svg { display: block; width: 24px; height: 24px; pointer-events: none; }

.footer h4 { color: #fff; font-family: var(--font-body); font-size: var(--text-xs); font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: var(--space-5); }
.footer ul { list-style: none; display: flex; flex-direction: column; gap: var(--space-3); }
.footer ul a { font-size: var(--text-sm); }
.footer-disclaimer { border-top: 1px solid rgba(247,244,238,0.14); padding-block: var(--space-10); }
.footer-disclaimer p { font-size: var(--text-sm); line-height: 1.6; max-width: 80ch; }
.footer-disclaimer .footer-services { color: rgba(247,244,238,0.6); font-size: var(--text-xs); margin-bottom: var(--space-5); }
.footer-disclaimer p + p { margin-top: var(--space-4); }
.footer-disclaimer .crisis-line { color: rgba(247,244,238,0.92); }
.footer-disclaimer .crisis-line strong { color: var(--gold); }
.footer-legal { display: flex; flex-wrap: wrap; gap: var(--space-4) var(--space-6); align-items: center; justify-content: space-between; border-top: 1px solid rgba(247,244,238,0.14); padding-block: var(--space-6); }
.footer-legal .legal-links { display: flex; flex-wrap: wrap; gap: var(--space-4) var(--space-5); }
.footer-legal .legal-links a { font-size: var(--text-xs); }
.footer-legal .copyright { font-size: var(--text-xs); }

/* ---------- Utility text ---------- */
.text-muted { color: var(--color-text-muted); }
.small-note { font-size: var(--text-sm); color: var(--color-text-muted); }
.mt-6 { margin-top: var(--space-6); } .mt-8 { margin-top: var(--space-8); } .mt-12 { margin-top: var(--space-12); }
.mb-0 { margin-bottom: 0; }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }
