/* ================================================================
   MINDRIGHT PSYCHOTHERAPY — Production Stylesheet
   Single source of truth. No layers. No overrides.
   Tokens → Reset → Base → Nav → Layout → Components → Pages → Responsive
   ================================================================ */

/* ── TOKENS ─────────────────────────────────────────────────── */
:root {
  --navy:    #050a30;
  --navy2:   #0a1050;
  --blue:    #1e2d9e;
  --accent:  #3d5fa0;
  --white:   #ffffff;
  --cream:   #f6f4ef;
  --sand:    #eef1f8;
  --softblue:#e8edf9;
  --ghost:   #f3f5fa;
  --muted:   #4a5270;
  --border:  #e2e8f0;
  --border2: #d0d8ee;
  --green:   #16a34a;

  /* Spacing */
  --sp-1:  .5rem;   --sp-2:  .75rem;  --sp-3:  1rem;
  --sp-4:  1.25rem; --sp-5:  1.5rem;  --sp-6:  2rem;
  --sp-7:  2.5rem;  --sp-8:  3rem;    --sp-9:  3.5rem;
  --sp-10: 4rem;    --sp-11: 4.5rem;  --sp-12: 5rem;
  --sp-13: 5.5rem;

  /* Layout */
  --nav-h:    68px;
  --sx:       clamp(1.5rem, 4vw, 4.5rem);   /* section horizontal */
  --sy:       clamp(2.5rem, 4.5vw, 4rem);   /* section vertical */
  --container:1440px;

  /* Radii */
  --r-sm: 14px;  --r-md: 24px;  --r-lg: 36px;  --r-xl: 48px;

  /* Shadows */
  --sh-sm: 0 2px 8px rgba(5,10,48,.07);
  --sh-md: 0 8px 28px rgba(5,10,48,.10);
  --sh-lg: 0 16px 48px rgba(5,10,48,.14);
  --sh-xl: 0 28px 70px rgba(5,10,48,.20);

  /* Easing */
  --ease:   cubic-bezier(.4,0,.2,1);
  --spring: cubic-bezier(.16,1,.3,1);
}

/* ── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
html, body { overflow-x: hidden; max-width: 100%; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; cursor: pointer; }

/* ── BASE ───────────────────────────────────────────────────── */
body {
  font-family: 'League Spartan', sans-serif;
  background: var(--cream);
  color: var(--navy);
  font-size: 18px;
  line-height: 1.75;
}

h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 700;
  letter-spacing: -.045em;
  color: var(--navy);
  line-height: 1.05;
  margin-bottom: 1rem;
}
h2.h2-white { color: #fff; }
h3 { font-size: 1.15rem; font-weight: 700; letter-spacing: -.03em; color: var(--navy); margin-bottom: .45rem; }
p  { font-size: 1rem; color: var(--muted); line-height: 1.85; margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ── SKIP LINK + PROGRESS ───────────────────────────────────── */
.skip {
  position: absolute; top: -40px; left: 0;
  background: var(--navy); color: #fff;
  padding: .5rem 1rem; z-index: 9999; font-size: .9rem;
}
.skip:focus { top: 0; outline: 3px solid var(--blue); }

.progress {
  position: fixed; top: 0; left: 0; height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--blue));
  z-index: 500; width: 0; transition: width .1s linear;
}

/* ── NAVIGATION ─────────────────────────────────────────────── */
nav#mainNav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 300;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 3.5rem;
  height: var(--nav-h);
  background: rgba(5,10,48,.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,.09);
  transition: box-shadow .3s;
}
nav#mainNav.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,.4); }

.nav-logo img { height: 42px; width: auto; transition: opacity .2s; }
.nav-logo img:hover { opacity: .8; }

.nav-center { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-center > li { position: relative; }
.nav-center a {
  font-size: .8rem; letter-spacing: .08em; text-transform: uppercase;
  color: rgba(255,255,255,.82); font-weight: 500;
  display: flex; align-items: center; gap: .3rem;
  position: relative; padding-bottom: 2px;
  transition: color .25s;
}
.nav-center a::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 100%;
  height: 2px; background: #fff; transition: right .3s var(--ease);
}
.nav-center a:hover, .nav-center a:focus { color: #fff; text-decoration: none; }
.nav-center a:hover::after, .nav-center a:focus::after { right: 0; }

.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown {
  position: absolute; top: calc(100% + 12px); left: -1rem;
  background: var(--white); border: 1px solid var(--border);
  box-shadow: var(--sh-lg); min-width: 260px;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity .25s, transform .25s, visibility .25s;
  border-radius: var(--r-sm); overflow: hidden; z-index: 400;
}
.dropdown a {
  display: block; padding: .75rem 1.25rem;
  font-size: .82rem; color: var(--muted); font-weight: 400;
  letter-spacing: .03em; text-transform: none;
  border-bottom: 1px solid var(--border);
  transition: background .2s, color .2s;
}
.dropdown a::after { display: none; }
.dropdown a:last-child { border-bottom: none; }
.dropdown a:hover, .dropdown a:focus { background: var(--ghost); color: var(--navy); }

.nav-right { display: flex; align-items: center; gap: 1.25rem; }
.nav-phone {
  font-size: .82rem; font-weight: 600; color: rgba(255,255,255,.85);
  display: flex; align-items: center; gap: .35rem; transition: color .2s;
}
.nav-phone:hover { color: #fff; }
.nav-phone::after { display: none; }

.nav-cta {
  display: inline-block; font-size: .8rem; letter-spacing: .08em; text-transform: uppercase;
  background: #fff; color: var(--navy); padding: .6rem 1.4rem; font-weight: 700;
  min-height: 44px; border-radius: 100px;
  transition: background .25s, transform .2s, box-shadow .25s;
}
.nav-cta:hover { background: var(--sand); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(0,0,0,.2); }
.nav-cta::after { display: none; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: .5rem; background: none; border: none;
  min-height: 44px; min-width: 44px;
  align-items: center; justify-content: center;
}
.hamburger span { width: 24px; height: 2px; background: #fff; display: block; transition: transform .3s var(--spring), opacity .2s; }

nav#mainNav.mobile-open .nav-center {
  display: flex; flex-direction: column;
  position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: var(--navy); border-bottom: 1px solid rgba(255,255,255,.12);
  padding: 1.5rem; gap: .5rem;
  box-shadow: 0 8px 32px rgba(0,0,0,.4);
}
nav#mainNav.mobile-open .nav-center > li { width: 100%; }
nav#mainNav.mobile-open .nav-center a { font-size: 1rem; padding: .75rem 0; }
nav#mainNav.mobile-open .dropdown {
  position: static; opacity: 1; visibility: visible;
  transform: none; box-shadow: none; border: none;
  border-radius: 0; background: transparent;
  border-top: 1px solid rgba(255,255,255,.1);
  margin-top: .5rem; display: none;
}
nav#mainNav.mobile-open .has-dropdown.open .dropdown { display: block; }
nav#mainNav.mobile-open .dropdown a { color: rgba(255,255,255,.72); background: transparent; }
nav#mainNav.mobile-open .dropdown a:hover { color: #fff; background: rgba(255,255,255,.06); }

/* ── SECTION SYSTEM ─────────────────────────────────────────── */
.section {
  padding: var(--sy) var(--sx);
  position: relative;
}
.section--cream  { background: var(--cream); }
.section--sand   { background: var(--sand); }
.section--navy   { background: linear-gradient(150deg, var(--navy) 0%, var(--navy2) 100%); }
.section--white  { background: var(--white); }

.sec-label {
  font-size: .75rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--blue); margin-bottom: .5rem; font-weight: 600;
  display: flex; align-items: center; gap: .6rem;
}
.sec-label::before { content: ''; width: 20px; height: 2px; background: currentColor; flex-shrink: 0; }
.sec-label--light { color: rgba(255,255,255,.6); }

.text-narrow  { max-width: 54ch; }
.text-medium  { max-width: 64ch; }

.section-cta       { margin-top: 2rem; text-align: center; }
.section-cta--left { text-align: left; }

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'League Spartan', sans-serif;
  font-weight: 700; font-size: .9rem; letter-spacing: .06em; text-transform: uppercase;
  cursor: pointer; min-height: 48px; padding: .9rem 2rem;
  border-radius: 100px; border: 2px solid transparent;
  transition: background .25s, transform .2s var(--spring), box-shadow .25s, color .25s, border-color .25s;
  position: relative; overflow: hidden;
  text-decoration: none;
}
.btn:active { transform: translateY(0) !important; box-shadow: none !important; }
.btn:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; }

.btn-primary { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn-primary:hover { background: var(--blue); border-color: var(--blue); transform: translateY(-2px); box-shadow: var(--sh-md); }

.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; transform: translateY(-2px); }

.btn-white { background: #fff; color: var(--navy); border-color: #fff; }
.btn-white:hover { background: var(--sand); transform: translateY(-2px); box-shadow: var(--sh-md); }

.btn-ghost-white { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-ghost-white:hover { background: var(--navy); color: #fff; transform: translateY(-2px); }

.btn-lg { font-size: 1rem; padding: 1rem 2.5rem; min-height: 52px; }

.ripple { position: absolute; border-radius: 50%; background: rgba(255,255,255,.25); transform: scale(0); animation: rip .55s linear; pointer-events: none; }
@keyframes rip { to { transform: scale(4); opacity: 0; } }

/* ── TRUST BAR ──────────────────────────────────────────────── */
.trust-bar {
  display: grid; grid-template-columns: repeat(4,1fr);
  background: var(--softblue);
  border-radius: var(--r-lg);
  margin: -1.75rem var(--sx) 0;
  position: relative; z-index: 5;
  box-shadow: var(--sh-md);
  overflow: hidden;
}
.trust-item {
  padding: 1.75rem 1.5rem;
  border-right: 1px solid rgba(30,45,158,.12);
  transition: background .25s;
}
.trust-item:last-child { border-right: none; }
.trust-item:hover { background: rgba(30,45,158,.07); }
.trust-num   { font-size: 1.9rem; font-weight: 800; letter-spacing: -.05em; color: var(--blue); line-height: 1; margin-bottom: .3rem; }
.trust-label { font-size: .82rem; color: var(--muted); font-weight: 400; }

/* ── MARQUEE ────────────────────────────────────────────────── */
.marquee {
  background: var(--sand); overflow: hidden;
  padding: .8rem 0;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.marquee-track { display: flex; gap: 3rem; width: max-content; animation: mq 30s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes mq { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-item {
  font-size: .75rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted); white-space: nowrap;
  display: flex; align-items: center; gap: .5rem; font-weight: 500;
}
.marquee-item::before { content: '·'; color: var(--border2); }

/* ── HOMEPAGE HERO ──────────────────────────────────────────── */
#home {
  padding-top: var(--nav-h);
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 2rem;
  padding: calc(var(--nav-h) + .75rem) var(--sx) 2.5rem;
  background: linear-gradient(160deg, var(--cream) 0%, var(--softblue) 100%);
  min-height: calc(100vh - var(--nav-h));
}

.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  min-width: 0;
}

.hero-tag {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .78rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--blue); font-weight: 600; margin-bottom: 1.1rem;
}
.hero-tag-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); animation: pulse 2s infinite; flex-shrink: 0; }
@keyframes pulse { 0%,100%{ box-shadow: 0 0 0 0 rgba(22,163,74,0); } 50%{ box-shadow: 0 0 0 5px rgba(22,163,74,.15); } }

.hero-h1 { font-size: clamp(2.2rem,3.8vw,4rem); font-weight: 800; letter-spacing: -.05em; color: var(--navy); line-height: 1.02; margin-bottom: .9rem; }
.hero-h1 .accent { color: var(--accent); }
.hero-sub { font-size: 1.05rem; color: var(--muted); line-height: 1.75; max-width: 46ch; margin-bottom: 1.25rem; font-weight: 300; }

.hero-chips { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 1.25rem; }
.hero-chip {
  font-size: .78rem; color: var(--muted); border: 1.5px solid var(--border2);
  padding: .35rem .9rem; border-radius: 100px;
  background: rgba(255,255,255,.7); backdrop-filter: blur(4px);
  font-weight: 400; transition: border-color .2s, background .2s, color .2s; cursor: default;
}
.hero-chip:hover { border-color: var(--navy); background: var(--navy); color: #fff; }

.hero-actions { display: flex; gap: .75rem; flex-wrap: wrap; align-items: stretch; }
.hero-actions .btn { display: inline-flex; align-items: center; justify-content: center; }

.hero-right {
  position: relative;
  max-width: 400px;
  width: 100%;
  margin-inline: auto;
  align-self: center;
}
.hero-right::before {
  content: '';
  position: absolute; inset: -8% -8% -8% -10%;
  background: linear-gradient(135deg, var(--blue), var(--accent));
  opacity: .14;
  border-radius: 64% 36% 47% 53% / 52% 44% 56% 48%;
  z-index: 0;
  animation: blob 14s ease-in-out infinite;
}
@keyframes blob {
  0%,100% { border-radius: 64% 36% 47% 53% / 52% 44% 56% 48%; }
  50%      { border-radius: 42% 58% 63% 37% / 47% 58% 42% 53%; }
}
.hero-right img {
  width: 100%; height: auto;
  aspect-ratio: 4/5; object-fit: cover;
  border-radius: var(--r-xl);
  box-shadow: var(--sh-xl);
  position: relative; z-index: 1;
}
.hero-namecard {
  position: absolute; bottom: 1.25rem; left: 1.25rem; right: 1.25rem; z-index: 2;
  background: rgba(5,10,48,.78); backdrop-filter: blur(8px);
  border-radius: var(--r-md); padding: 1.25rem 1.5rem;
}
.hn-name { font-size: 1.1rem; font-weight: 700; letter-spacing: -.04em; color: #fff; margin-bottom: .2rem; }
.hn-role { font-size: .75rem; letter-spacing: .06em; text-transform: uppercase; color: rgba(255,255,255,.72); font-weight: 300; }
.hn-cred { font-size: .72rem; color: rgba(255,255,255,.68); margin-top: .1rem; }

/* ── WHO I HELP ─────────────────────────────────────────────── */
.who-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.25rem; margin-top: 1.75rem; }
.who-card {
  background: #fff; border-radius: var(--r-md);
  padding: 1.75rem 1.75rem;
  box-shadow: var(--sh-sm);
  transition: transform .3s var(--spring), box-shadow .3s; cursor: default;
}
.who-card:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); }
.who-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--softblue);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 1.1rem;
}

/* ── SERVICES ───────────────────────────────────────────────── */
.svcs-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1rem; margin-top: 1.75rem;
}
.svc-card {
  background: #fff;
  border-radius: var(--r-md);
  padding: 1.75rem 1.5rem;
  box-shadow: 0 4px 18px rgba(5,10,48,.09);
  border: 1px solid rgba(5,10,48,.07);
  transition: transform .3s var(--spring), box-shadow .3s;
  text-decoration: none; display: block; cursor: pointer;
}
.svc-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(5,10,48,.14); border-color: rgba(30,45,158,.2); }
.svc-num  { font-size: 2rem; font-weight: 800; letter-spacing: -.05em; color: rgba(30,45,158,.12); line-height: 1; margin-bottom: 1rem; transition: color .3s; }
.svc-card:hover .svc-num { color: rgba(30,45,158,.25); }
.svc-name { font-size: 1.05rem; font-weight: 700; letter-spacing: -.02em; color: var(--navy); margin-bottom: .5rem; }
.svc-desc { font-size: .92rem; color: var(--muted); line-height: 1.75; font-weight: 400; margin-bottom: 0; }
.svc-link { font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; color: var(--blue); margin-top: 1rem; display: flex; align-items: center; gap: .4rem; font-weight: 600; transition: color .25s; }
.svc-card:hover .svc-link { color: var(--navy); }

/* ── HOW IT WORKS ───────────────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; margin-top: 1.75rem; }
.step {
  background: #fff; border-radius: var(--r-md); padding: 1.75rem 1.75rem;
  box-shadow: var(--sh-sm);
  transition: transform .3s var(--spring), box-shadow .3s; cursor: default;
}
.step:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); }
.step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--softblue); color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; font-weight: 800; letter-spacing: -.04em;
  margin-bottom: 1.1rem;
}

/* ── APPROACH ───────────────────────────────────────────────── */
.approach-inner { max-width: 720px; }
.approach-row {
  display: flex; gap: 1.25rem; align-items: flex-start;
  padding: .85rem 0; border-bottom: 1px solid var(--border);
  transition: padding-left .3s var(--spring); cursor: default;
}
.approach-row:hover { padding-left: .75rem; }
.approach-row:last-child { border-bottom: none; }
.adot { width: 9px; height: 9px; border-radius: 50%; background: var(--blue); flex-shrink: 0; margin-top: .65rem; transition: transform .3s, background .3s; }
.approach-row:hover .adot { transform: scale(1.7); background: var(--accent); }
.aname { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: .2rem; }
.adesc { font-size: .95rem; color: var(--muted); margin-bottom: 0; line-height: 1.75; }

/* ── ABOUT ──────────────────────────────────────────────────── */
#about { background: var(--cream); padding: var(--sy) 0; }
.about-split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2rem,4vw,4rem);
  max-width: var(--container);
  padding: 0 var(--sx);
  margin-inline: auto;
  align-items: stretch;
}
.about-text {
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(1.25rem,2.5vw,2.5rem);
  background: #fff;
  border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
}
.about-text p { max-width: 52ch; }
.about-creds { font-size: .9rem; color: var(--blue); font-weight: 600; margin-bottom: 1.1rem; }
.pills { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--border); }
.pill {
  font-size: .75rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  color: var(--navy); background: var(--ghost); border: 1.5px solid var(--border2);
  padding: .35rem 1rem; border-radius: 100px;
  transition: background .2s, color .2s, border-color .2s; cursor: default;
}
.pill:hover { background: var(--navy); color: #fff; border-color: var(--navy); }

.about-photo {
  border-radius: var(--r-lg); overflow: hidden;
  position: relative; min-height: 480px; background: var(--navy2);
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 15%; display: block; opacity: .88; }
.about-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(5,10,48,.9) 0%, transparent 55%); z-index: 1; }
.about-namecard { position: absolute; bottom: 0; left: 0; right: 0; z-index: 2; padding: 2rem 2.5rem; }
.an-name { font-size: 1.15rem; font-weight: 700; letter-spacing: -.04em; color: #fff; margin-bottom: .2rem; }
.an-role { font-size: .75rem; letter-spacing: .06em; text-transform: uppercase; color: rgba(255,255,255,.72); }
.an-cred { font-size: .72rem; color: rgba(255,255,255,.68); margin-top: .1rem; }

/* ── ONLINE THERAPY CARDS ───────────────────────────────────── */
.online-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem; margin-top: 1.5rem; }
.online-card {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--r-md); padding: 2rem;
  transition: background .3s, border-color .3s, transform .3s var(--spring); cursor: default;
}
.online-card:hover { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.28); transform: translateY(-4px); }
.online-card h3 { color: #fff; margin-bottom: .4rem; }
.online-card p  { color: rgba(255,255,255,.72); font-size: .95rem; }

/* ── PRICING ────────────────────────────────────────────────── */
.price-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; margin-top: 1.5rem; }
.price-card {
  background: #fff; border-radius: var(--r-md); padding: 2rem;
  box-shadow: var(--sh-sm);
  transition: transform .3s var(--spring), box-shadow .3s; cursor: default;
  position: relative; overflow: hidden;
}
.price-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 100%;
  height: 3px; background: var(--blue); transition: right .4s var(--ease);
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }
.price-card:hover::after { right: 0; }
.price-type   { font-size: .78rem; letter-spacing: .15em; text-transform: uppercase; color: var(--blue); font-weight: 700; margin-bottom: .5rem; }
.price-amount { font-size: 3.2rem; font-weight: 800; letter-spacing: -.05em; color: var(--navy); line-height: 1; margin-bottom: .5rem; }
.price-detail { font-size: .95rem; color: var(--muted); margin-bottom: 0; }
.insurance-note {
  margin-top: 1.25rem; padding: 1.25rem 1.5rem;
  background: var(--softblue); border-left: 4px solid var(--blue);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  font-size: .95rem; color: var(--navy); line-height: 1.8;
}

/* ── FAQ ────────────────────────────────────────────────────── */
.faq-list { margin-top: 1.5rem; display: flex; flex-direction: column; gap: .6rem; }
.faq-item {
  background: #fff; border-radius: var(--r-md);
  padding: 0 1.75rem;
  box-shadow: var(--sh-sm);
  overflow: hidden;
}
.faq-hdr {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.4rem 0; cursor: pointer; user-select: none;
  width: 100%; background: none; border: none;
  font-family: 'League Spartan', sans-serif; text-align: left;
}
.faq-hdr:hover .faq-q { color: var(--blue); }
.faq-hdr:focus-visible { outline: 3px solid var(--blue); outline-offset: -3px; border-radius: var(--r-sm); }
.faq-q    { font-size: 1.05rem; font-weight: 700; letter-spacing: -.02em; color: var(--navy); transition: color .25s; }
.faq-icon {
  width: 28px; height: 28px; flex-shrink: 0;
  border: 1.5px solid var(--border2); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; color: var(--muted);
  transition: transform .3s, background .25s, border-color .25s, color .25s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--navy); border-color: var(--navy); color: #fff; }
.faq-body  { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-item.open .faq-body { max-height: 600px; }
.faq-a { font-size: .98rem; color: var(--muted); padding-bottom: 1.4rem; max-width: 68ch; line-height: 1.85; }

/* ── CONTACT ────────────────────────────────────────────────── */
#contact { background: var(--cream); padding: var(--sy) 0; }
.contact-split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem,3vw,3rem);
  padding: 0 var(--sx);
  max-width: var(--container);
  margin-inline: auto;
}
.contact-left {
  background: linear-gradient(150deg, var(--navy) 0%, var(--navy2) 100%);
  border-radius: var(--r-lg); padding: clamp(2rem,4vw,3.5rem);
  display: flex; flex-direction: column; justify-content: center;
}
.contact-left h2   { color: #fff; }
.contact-left > p  { color: rgba(255,255,255,.78); max-width: 42ch; }

.contact-info { margin-top: var(--sp-7); padding-top: var(--sp-6); border-top: 1px solid rgba(255,255,255,.12); display: flex; flex-direction: column; gap: 1rem; }
.c-row { display: flex; align-items: center; gap: .9rem; font-size: .98rem; color: rgba(255,255,255,.78); transition: color .25s, transform .25s; cursor: default; }
.c-row:hover { color: #fff; transform: translateX(4px); }
.c-icon { font-size: 1rem; width: 20px; flex-shrink: 0; }

.contact-right {
  background: #fff; border-radius: var(--r-lg);
  padding: clamp(2rem,4vw,3.5rem);
  box-shadow: var(--sh-md);
  display: flex; flex-direction: column; justify-content: center;
}
.form-title { font-size: 1.8rem; font-weight: 700; letter-spacing: -.04em; color: var(--navy); margin-bottom: .5rem; }
.form-note  { font-size: .86rem; color: var(--muted); margin-bottom: 1.75rem; padding: .8rem 1rem; background: var(--sand); border-left: 3px solid var(--border2); border-radius: 0 var(--r-sm) var(--r-sm) 0; line-height: 1.7; }
.fg { margin-bottom: 1rem; }
.fl { display: block; font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: .4rem; font-weight: 600; transition: color .25s; }
.fg:focus-within .fl { color: var(--blue); }
.fi, .fs, .ft {
  width: 100%; border: 1.5px solid var(--border2); background: var(--cream);
  font-family: 'League Spartan', sans-serif; font-size: .98rem;
  padding: .8rem 1.1rem; outline: none; color: var(--navy); font-weight: 400;
  appearance: none; border-radius: var(--r-sm);
  transition: border-color .25s, box-shadow .25s, background .25s;
}
.fi:focus, .fs:focus, .ft:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(30,45,158,.08); background: #fff; }
.fi[aria-invalid="true"], .ft[aria-invalid="true"] { border-color: #dc2626; }
.ft  { min-height: 100px; resize: vertical; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; }
.fsubmit {
  width: 100%; background: var(--navy); color: #fff; border: none;
  font-family: 'League Spartan', sans-serif; font-size: .9rem;
  letter-spacing: .08em; text-transform: uppercase; font-weight: 700;
  padding: 1rem; cursor: pointer; margin-top: .5rem; min-height: 52px;
  border-radius: 100px;
  transition: background .25s, transform .2s, box-shadow .25s;
  position: relative; overflow: hidden;
}
.fsubmit:hover { background: var(--blue); transform: translateY(-2px); box-shadow: var(--sh-md); }
.fsubmit:disabled { opacity: .6; cursor: not-allowed; transform: none; }
.form-success { display: none; background: #dcfce7; border: 1px solid #86efac; border-radius: var(--r-sm); padding: 2rem; font-size: .98rem; color: #166534; margin-top: 1rem; font-weight: 500; text-align: center; line-height: 1.8; }
.privacy { font-size: .8rem; color: var(--muted); margin-top: .75rem; line-height: 1.6; }

/* ── FOOTER ─────────────────────────────────────────────────── */
footer {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 2.5rem var(--sx);
  border-radius: var(--r-lg) var(--r-lg) 0 0;
}
.footer-top { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1.5rem; margin-bottom: 1.5rem; }
.footer-logo img { height: 38px; width: auto; opacity: .85; transition: opacity .25s; }
.footer-logo:hover img { opacity: 1; }
.footer-links { display: flex; flex-wrap: wrap; gap: 1.25rem; }
.footer-links a { font-size: .8rem; letter-spacing: .07em; text-transform: uppercase; color: rgba(255,255,255,.72); transition: color .25s; }
.footer-links a:hover, .footer-links a:focus { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.footer-bottom { padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.08); display: flex; justify-content: space-between; flex-wrap: wrap; gap: .5rem; }
.footer-reg  { font-size: .75rem; color: rgba(255,255,255,.62); font-style: italic; }
.footer-copy { font-size: .75rem; color: rgba(255,255,255,.66); }

/* ── CTA BAND ───────────────────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 55%, var(--navy) 100%);
  padding: 3rem var(--sx);
  border-radius: var(--r-lg);
  margin: 0 var(--sx) 2.5rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
}
.cta-band h2          { color: #fff; margin-bottom: .5rem; font-size: clamp(1.8rem,2.5vw,2.4rem); }
.cta-band p           { color: rgba(255,255,255,.72); margin-bottom: 0; }
.cta-band-actions     { display: flex; gap: 1rem; flex-wrap: wrap; flex-shrink: 0; }

/* ── STICKY MOBILE CTA ──────────────────────────────────────── */
.sticky-cta {
  display: flex;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 400;
  background: var(--navy); padding: .85rem 1.5rem;
  align-items: center; justify-content: space-between; gap: 1rem;
  border-top: 2px solid var(--blue);
  transform: translateY(100%);
  transition: transform .4s var(--spring);
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta-text        { font-size: .9rem; color: rgba(255,255,255,.85); font-weight: 400; flex: 1; }
.sticky-cta-text strong { display: block; color: #fff; font-size: 1rem; }
.sticky-cta-btn {
  background: #fff; color: var(--navy);
  font-family: 'League Spartan', sans-serif; font-weight: 700; font-size: .82rem;
  letter-spacing: .06em; text-transform: uppercase; padding: .7rem 1.5rem;
  border: none; cursor: pointer; border-radius: 100px; min-height: 44px;
  transition: background .2s; white-space: nowrap; flex-shrink: 0;
  text-decoration: none; display: inline-flex; align-items: center;
}
.sticky-cta-btn:hover { background: var(--sand); }

/* ── SERVICE HERO ───────────────────────────────────────────── */
.svc-hero {
  padding-top: var(--nav-h);
  background: linear-gradient(160deg, var(--cream) 0%, var(--softblue) 100%);
  padding-bottom: 2.5rem; overflow: hidden;
}
.svc-hero-inner { max-width: 760px; padding: 2.5rem var(--sx) 0; }
.breadcrumb { font-size: .78rem; color: var(--muted); margin-bottom: 1.5rem; display: flex; align-items: center; gap: .5rem; }
.breadcrumb a { color: var(--accent); transition: color .2s; }
.breadcrumb a:hover { color: var(--navy); }
.svc-hero h1 { font-size: clamp(2.4rem,4vw,3.8rem); font-weight: 800; letter-spacing: -.05em; color: var(--navy); line-height: 1.05; margin-bottom: 1.1rem; }
.svc-hero > .svc-hero-inner > p { font-size: 1.1rem; color: var(--muted); line-height: 1.8; max-width: 52ch; margin-bottom: 2rem; font-weight: 300; }
.svc-hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.svc-hero .btn-white { background: var(--navy); color: #fff; border-color: var(--navy); }
.svc-hero .btn-white:hover { background: var(--blue); border-color: var(--blue); }
.svc-hero .btn-ghost-white { background: transparent; color: var(--navy); border-color: var(--navy); }
.svc-hero .btn-ghost-white:hover { background: var(--navy); color: #fff; }

/* ── SERVICE CONTENT BLOCKS ─────────────────────────────────── */
.content-block { padding: var(--sy) var(--sx); }
.content-block--white { background: var(--white); }
.content-block--ghost { background: var(--sand); }
.content-block h2 { margin-bottom: var(--sp-4); }
.content-block > p { max-width: 64ch; }

.list-block { margin-top: 1.5rem; display: flex; flex-direction: column; gap: .6rem; }
.list-item  { display: flex; gap: .85rem; align-items: flex-start; font-size: .98rem; color: var(--muted); line-height: 1.75; }
.list-item::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--blue); flex-shrink: 0; margin-top: .5rem; }

/* ── RELATED SERVICES ───────────────────────────────────────── */
.related-services { padding: 2rem var(--sx); background: var(--sand); border-top: 1px solid var(--border); }
.related-services h2 { font-size: 1.4rem; margin-bottom: 1.25rem; color: var(--navy); }
.related-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; }
.related-link {
  display: block; background: #fff; border-radius: var(--r-sm);
  padding: 1.1rem 1rem; font-size: .84rem; font-weight: 600;
  letter-spacing: .03em; color: var(--navy); text-align: center;
  box-shadow: var(--sh-sm);
  transition: background .2s, color .2s, transform .2s var(--spring), box-shadow .2s;
}
.related-link:hover { background: var(--navy); color: #fff; transform: translateY(-2px); box-shadow: var(--sh-md); }

/* ── SCROLL REVEAL ──────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .75s var(--ease), transform .75s var(--ease); }
.reveal.on { opacity: 1; transform: translateY(0); }
.r1 { transition-delay: .08s; } .r2 { transition-delay: .16s; }
.r3 { transition-delay: .24s; } .r4 { transition-delay: .32s; }
.r5 { transition-delay: .40s; }

/* ── ACCESSIBILITY ──────────────────────────────────────────── */
:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; }

/* ── HERO ENTRY ANIMATIONS ──────────────────────────────────── */
@keyframes fadeUp { from { opacity:0; transform:translateY(18px); } to { opacity:1; transform:translateY(0); } }
.hero-tag     { animation: fadeUp .55s .05s ease both; }
.hero-h1      { animation: fadeUp .55s .18s ease both; }
.hero-sub     { animation: fadeUp .55s .30s ease both; }
.hero-chips   { animation: fadeUp .55s .40s ease both; }
.hero-actions { animation: fadeUp .55s .50s ease both; }

/* ── SECTION HELPER — position context for decorative elements ─ */
#who, #services, #how, #approach, #online, .svc-hero { overflow: hidden; }

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — three clean breakpoints
   ═══════════════════════════════════════════════════════════════ */

@media (max-width: 1100px) {
  nav#mainNav { padding: 0 2rem; }
  .nav-center, .nav-phone { display: none; }
  .hamburger { display: flex; }
  #home { grid-template-columns: 1fr; min-height: 0; gap: 2.5rem; }
  .hero-right { max-width: 380px; }
  .trust-bar { border-radius: var(--r-md); }
  .svc-hero-inner { padding: 3.5rem 2rem 0; }
}

@media (max-width: 900px) {
  :root { --sy: 2rem; }
  nav#mainNav { padding: 0 1.5rem; }
  .trust-bar { grid-template-columns: 1fr 1fr; margin: -2rem var(--sx) 0; }
  .who-grid    { grid-template-columns: 1fr; }
  .svcs-grid   { grid-template-columns: 1fr 1fr; }
  .steps       { grid-template-columns: 1fr; }
  .online-grid { grid-template-columns: 1fr; }
  .price-grid  { grid-template-columns: 1fr; }
  .related-grid{ grid-template-columns: repeat(2,1fr); }
  .about-split { grid-template-columns: 1fr; }
  .about-photo { min-height: 400px; }
  .contact-split { grid-template-columns: 1fr; }
  .cta-band { flex-direction: column; align-items: flex-start; margin: 0 var(--sx) var(--sy); }
  footer { border-radius: var(--r-md) var(--r-md) 0 0; }
  .footer-top { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 600px) {
  :root { --sy: 1.75rem; }
  h2 { font-size: 1.7rem; }
  .svcs-grid    { grid-template-columns: 1fr; }
  .trust-bar    { grid-template-columns: 1fr 1fr; }
  .frow         { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .trust-bar    { border-radius: var(--r-sm); }
}

@media (min-width: 1101px) {
  .sticky-cta { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .marquee-track { animation: none; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .hero-tag, .hero-h1, .hero-sub, .hero-chips, .hero-actions { animation: none !important; opacity: 1; }
}

@media (scripting: none) {
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* ── OVERFLOW SAFETY ────────────────────────────────────────── */
html, body { overflow-x: hidden; max-width: 100%; }

/* ── HELPERS (phase 2 inline-style replacements) ─────────────────── */
.about-subtitle { font-size: 1.3rem; font-weight: 500; color: var(--accent); }
.contact-disclaimer { font-size: .88rem; color: rgba(255,255,255,.62); }
.faq-link { color: var(--blue); text-decoration: underline; text-underline-offset: 2px; }
.tel-link  { color: var(--blue); font-weight: 600; }

/* ── CTA band heading — styled like h2 but not a content heading ── */
.cta-band-heading {
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -.045em;
  color: #fff;
  line-height: 1.05;
  margin-bottom: .5rem;
}

/* ── PHASE 6 POLISH ─────────────────────────────────────────────────── */

/* Nav CTA — smaller at hamburger breakpoint so it doesn't crowd hamburger */
@media (max-width: 1100px) {
  .nav-cta {
    font-size: .72rem;
    padding: .45rem 1rem;
    min-height: 36px;
    letter-spacing: .05em;
  }
}

/* Mobile buttons — prevent text wrapping on small screens */
@media (max-width: 480px) {
  .btn     { font-size: .8rem;  padding: .75rem 1.5rem; min-height: 44px; }
  .btn-lg  { font-size: .82rem; padding: .85rem 1.75rem; }
  .hero-actions .btn { white-space: nowrap; }
}

/* Mobile hero tag — tighten so it wraps more naturally */
@media (max-width: 480px) {
  .hero-tag {
    font-size: .68rem;
    letter-spacing: .07em;
    flex-wrap: nowrap;
  }
}

/* Mobile: allow form submit button to wrap text gracefully */
@media (max-width: 400px) {
  .fsubmit { font-size: .82rem; }
}

/* ── CLIENT QUOTES ──────────────────────────────────────────────────── */
.client-quote {
  border-left: 3px solid var(--blue);
  margin: 0 0 1.25rem 0;
  padding: .85rem 1.25rem;
  background: rgba(30,45,158,.04);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
}
.client-quote p {
  font-size: 1.02rem;
  color: var(--navy);
  font-style: italic;
  line-height: 1.7;
  margin: 0;
}

/* ── PAGE IMAGES ────────────────────────────────────────────────────── */
.page-image-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}
.page-image-block.reverse { direction: rtl; }
.page-image-block.reverse > * { direction: ltr; }
.page-image-wrap {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--sh-lg);
}
.page-image-wrap img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.page-image-text { display: flex; flex-direction: column; justify-content: center; }
@media (max-width: 768px) {
  .page-image-block, .page-image-block.reverse { grid-template-columns: 1fr; direction: ltr; }
  .page-image-wrap { aspect-ratio: 16/9; }
}

/* ── APPROACHES PAGE — scannable list layout ────────────────────────── */
.ap-list-wrap { padding-top: 0 !important; }

.ap-item {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 3rem;
  padding: 2.25rem 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.ap-item--last { border-bottom: none; }

.ap-abbr {
  display: inline-block;
  font-size: 1rem; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--blue);
  background: var(--softblue);
  border-radius: var(--r-sm);
  padding: .35rem .9rem;
  margin-bottom: .75rem;
}
.ap-full-name {
  font-size: 1.15rem; font-weight: 700;
  letter-spacing: -.03em; color: var(--navy);
  line-height: 1.3; margin-bottom: .85rem; margin-top: 0;
}
.ap-tags {
  display: flex; flex-wrap: wrap; gap: .4rem;
}
.ap-tag {
  font-size: .75rem; font-weight: 500;
  color: var(--muted);
  background: var(--ghost);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: .2rem .7rem;
}

.ap-desc {
  font-size: 1rem; color: var(--navy);
  line-height: 1.8; margin-bottom: .85rem;
}
.ap-session {
  font-size: .9rem; color: var(--muted);
  line-height: 1.7; margin: 0;
  padding: .85rem 1.1rem;
  background: var(--sand);
  border-left: 3px solid var(--blue);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
}
.ap-session::before {
  content: 'In sessions: ';
  display: none; /* already in HTML */
}

@media (max-width: 900px) {
  .ap-item {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding: 1.75rem 0;
  }
}

/* ── SLIDING SCALE BADGE ────────────────────────────────────────────── */
.sliding-scale-note {
  display: flex; align-items: center; gap: .75rem;
  background: linear-gradient(135deg, var(--softblue), var(--sand));
  border-radius: var(--r-md);
  padding: 1rem 1.5rem;
  margin-top: 1rem;
  border: 1px solid rgba(30,45,158,.12);
}
.sliding-scale-note .ssn-icon {
  font-size: 1.5rem; flex-shrink: 0;
}
.sliding-scale-note p {
  margin: 0; font-size: .95rem;
  color: var(--navy); line-height: 1.6;
}
.sliding-scale-note strong { color: var(--blue); }
