/* =========================================
   NEW ERA BEHAVIORAL HOSPITAL
   ========================================= */

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

:root {
  --cream:    #F4EFE6;
  --cream-d:  #EDE6D8;
  --navy:     #0E2233;
  --navy-m:   #1B3A4B;
  --green:    #B5704A;
  --green-d:  #9A5838;
  --white:    #FFFFFF;
  --text:     #2C3E50;
  --muted:    #6B7A8D;
  --border:   rgba(27,58,75,.10);
  --shadow:   0 4px 32px rgba(14,34,51,.08);
  --shadowL:  0 16px 64px rgba(14,34,51,.14);
  --r:        16px;
  --rsm:      10px;
  --ease:     cubic-bezier(.4,0,.2,1);
  --sans:     'Inter', system-ui, sans-serif;
  --serif:    'Instrument Serif', Georgia, serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--sans); background: var(--cream); color: var(--text); line-height: 1.6; overflow-x: hidden; }

/* ════════════════════════
   VIDEO INTRO SECTION
   Full-bleed looping aerial, one viewport tall.
════════════════════════ */
.vid-section {
  position: relative;
  height: 100vh;
  height: 100svh;          /* avoids the mobile URL-bar jump */
  background: #000;
}

.vid-stage {
  position: relative;
  height: 100%;
  overflow: hidden;
  background: #000;
}

/* Looping aerial — covers the viewport, fades in once it can play */
.vid-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
  opacity: 0;
  transition: opacity 0.9s ease;
}
.vid-media.visible { opacity: 1; }

/* Scrim — constant, keeps the wordmark legible over bright footage */
.vid-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0) 38%, rgba(14,34,51,0.72) 100%);
  pointer-events: none;
}

/* Hospital name — top-left, always over video */
.vid-wordmark {
  position: absolute;
  bottom: 10%;
  left: 6%;
  color: #fff;
  z-index: 10;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.vid-wordmark.visible { opacity: 1; transform: none; }

/* Coming-soon logo above the wordmark */
.cs-logo {
  display: block;
  height: 44px;
  width: auto;
  margin-bottom: 20px;
  filter: drop-shadow(0 2px 12px rgba(0,0,0,0.4));
}
/* Keep the wordmark legible over any (bright) frame */
.vid-wordmark { text-shadow: 0 2px 22px rgba(0,0,0,0.45); }

.vid-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
}
.vid-title {
  font-family: var(--serif);
  font-size: clamp(38px, 6vw, 82px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: #fff;
}

img  { display: block; max-width: 100%; }
a    { text-decoration: none; color: inherit; }

/* ── LAYOUT ── */
.container { max-width: 1240px; margin: 0 auto; padding: 0 32px; }

/* ── TYPE ── */
.section-eyebrow { font-size: 11px; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; color: var(--green); margin-bottom: 12px; }
.section-title   { font-family: var(--serif); font-size: clamp(30px,4vw,52px); font-weight: 400; color: var(--navy); line-height: 1.14; margin-bottom: 18px; }
.section-sub     { font-size: 16px; color: var(--muted); line-height: 1.7; max-width: 520px; }
.section-header  { text-align: center; margin-bottom: 60px; }
.section-header .section-sub { margin: 0 auto; }

/* ── BUTTONS ── */
.btn-primary { display: inline-flex; align-items: center; gap: 8px; padding: 13px 26px; background: var(--navy); color: #fff; border-radius: 50px; font-size: 14px; font-weight: 600; border: 2px solid var(--navy); transition: .25s var(--ease); }
.btn-primary:hover { background: var(--navy-m); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(14,34,51,.25); }
.btn-outline  { display: inline-flex; align-items: center; gap: 8px; padding: 13px 28px; background: transparent; color: var(--navy); border-radius: 50px; font-size: 14px; font-weight: 600; border: 2px solid var(--navy); transition: .25s var(--ease); }
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-hero { display: inline-flex; align-items: center; gap: 14px; padding: 15px 20px 15px 30px; background: var(--navy); color: #fff; border-radius: 50px; font-size: 15px; font-weight: 600; box-shadow: 0 6px 24px rgba(14,34,51,.28); transition: .25s var(--ease); }
.btn-hero:hover { background: var(--navy-m); transform: translateY(-3px); box-shadow: 0 12px 32px rgba(14,34,51,.32); }
.btn-circle { width: 38px; height: 38px; background: var(--green); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.btn-circle svg { width: 16px; height: 16px; }

/* ════════════════════════
   NAV
════════════════════════ */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 0 32px; transition: opacity .3s var(--ease), background .3s var(--ease), box-shadow .3s var(--ease); opacity: 0; /* hidden until past video section */ }
.nav.scrolled { background: rgba(244,239,230,.96); backdrop-filter: blur(20px); box-shadow: 0 2px 24px rgba(14,34,51,.07); }
.nav-inner { max-width: 1240px; margin: 0 auto; height: 76px; display: flex; align-items: center; gap: 40px; }
.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo-img { height: 52px; width: auto; display: block; }
.logo-img--footer { height: 66px; }
.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; flex: 1; }
.nav-links a { display: flex; align-items: center; gap: 4px; padding: 8px 13px; font-size: 14px; font-weight: 500; color: var(--navy-m); border-radius: 8px; transition: .2s; }
.nav-links a:hover { background: rgba(14,34,51,.06); color: var(--navy); }
.has-dropdown { position: relative; }
.dropdown { position: absolute; top: calc(100% + 8px); left: 0; background: var(--white); border-radius: var(--rsm); box-shadow: var(--shadowL); list-style: none; min-width: 185px; padding: 8px; opacity: 0; visibility: hidden; transform: translateY(-6px); transition: .2s var(--ease); border: 1px solid var(--border); }
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { display: block; padding: 9px 13px; font-size: 13px; color: var(--text); border-radius: 6px; }
.dropdown a:hover { background: var(--cream); color: var(--navy); }
.nav-actions { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.nav-phone { display: flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 600; color: var(--navy-m); transition: .2s; }
.nav-phone:hover { color: var(--green); }
.nav-phone svg { width: 14px; height: 14px; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; margin-left: auto; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; }

/* ════════════════════════
   HERO SCROLL WRAPPER
   height = 100vh + 680px scroll travel (matches JS TRAVEL constant)
════════════════════════ */
.hero-scroll-wrap { height: calc(100vh + 680px); position: relative; }

.hero {
  position: sticky; top: 0; height: 100vh;
  background: var(--cream); overflow: hidden;
  display: flex; align-items: flex-start; justify-content: center;
}

/* texture */
.hero-bg-dots { position: absolute; inset: 0; background-image: radial-gradient(rgba(14,34,51,.05) 1px, transparent 1px); background-size: 30px 30px; pointer-events: none; }
.hero-ring { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); border-radius: 50%; border: 1px solid rgba(14,34,51,.05); pointer-events: none; }
.hero-ring--1 { width: 680px; height: 680px; }
.hero-ring--2 { width: 450px; height: 450px; }

/* ── CORNER STAT CARDS ── */
.stat-card { position: absolute; z-index: 4; background: var(--white); border-radius: var(--r); box-shadow: 0 8px 32px rgba(14,34,51,.12), 0 2px 8px rgba(14,34,51,.06); overflow: hidden; width: 210px; will-change: transform, opacity; }
.stat-card img { width: 100%; height: 108px; object-fit: cover; display: block; }
.sc-body { padding: 12px 15px; }
.sc-dots { display: flex; gap: 4px; margin-bottom: 7px; }
.sc-dots i { display: block; width: 6px; height: 6px; border-radius: 50%; background: var(--cream-d); font-style: normal; }
.sc-dots i:first-child { background: var(--green); }
.sc-dots i:nth-child(2) { background: var(--navy-m); opacity: .35; }
.sc-num   { font-family: var(--serif); font-size: 23px; font-weight: 700; color: var(--navy); line-height: 1; margin-bottom: 3px; }
.sc-label { font-size: 11px; color: var(--muted); line-height: 1.4; font-weight: 500; }
/* base positions — JS overrides transform/opacity */
.sc-tl { top: 13%; left: 3%; }
.sc-tr { top: 11%; right: 3%; }
.sc-bl { bottom: 20%; left: 2%; }
.sc-br { bottom: 18%; right: 2%; }
/* idle float only while progress = 0 */
.sc-idle { animation: float 6s ease-in-out infinite; }
.sc-tl.sc-idle { animation-delay: 0s; }
.sc-tr.sc-idle { animation-delay: 1.5s; }
.sc-bl.sc-idle { animation-delay: 3s; }
.sc-br.sc-idle { animation-delay: 4.5s; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* ── CENTER COLUMN (JS drives opacity / pointer-events) ── */
.hero-col {
  position: absolute; z-index: 3;
  top: 0; left: 0; right: 0; bottom: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding-top: 76px; /* nav height */
  will-change: opacity;
}
.hero-copy { text-align: center; margin-bottom: 28px; }
.hero-eyebrow { font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--green); margin-bottom: 16px; }
.hero-title {
  font-family: var(--serif);
  font-size: clamp(42px, 6.8vw, 88px);
  font-weight: 400; /* Instrument Serif looks great thin */
  color: var(--navy); line-height: 1.05;
  letter-spacing: -.02em; margin-bottom: 18px;
}
.hero-sub { font-size: 15px; color: var(--muted); line-height: 1.7; max-width: 460px; margin: 0 auto 28px; }
.hero-cta { display: flex; justify-content: center; }

/* ── SMALL CARD below CTA (JS drives opacity) ── */
.hero-small-card {
  width: 340px; height: 220px;
  border-radius: 18px; overflow: hidden;
  margin-top: 28px;
  box-shadow: 0 16px 48px rgba(14,34,51,.18);
  flex-shrink: 0;
  will-change: opacity;
}
.hero-small-card img { width: 100%; height: 100%; object-fit: cover; object-position: center 25%; display: block; }

/* ── FULL-SCREEN EXPANDING IMAGE ──
   Fills the entire sticky pane. clip-path: inset() shrinks it to
   match the ghost card shape, then JS opens it to 0 on scroll.
   No scale = no distortion.
── */
.hero-fs-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 5;
  /* JS measures ghost card and sets initial clip-path */
  will-change: clip-path;
}
.hero-fs-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%;
  display: block;
}
.hero-fs-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(14,34,51,.1) 0%, rgba(14,34,51,.65) 100%);
  opacity: 0; will-change: opacity;
}
.hero-fs-content {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: flex-end;
  padding: 0 24px 80px;
  text-align: center;
  opacity: 0; will-change: opacity;
  pointer-events: none;
}
.hero-fs-title {
  font-family: var(--serif);
  font-size: clamp(36px,5.5vw,72px);
  font-weight: 400;
  color: #fff; line-height: 1.05;
  letter-spacing: -.02em;
  margin: 12px 0 20px;
}
.hero-fs-sub { font-size: 15px; color: rgba(255,255,255,.75); line-height: 1.65; max-width: 440px; margin-bottom: 32px; }

/* ════════════════════════
   MARQUEE
════════════════════════ */
.marquee-strip { background: var(--navy); padding: 14px 0; overflow: hidden; }
.marquee-track { display: flex; gap: 28px; animation: marquee 30s linear infinite; width: max-content; }
.marquee-track span { font-size: 12px; font-weight: 500; color: rgba(255,255,255,.75); white-space: nowrap; }
.marquee-track .sep { color: var(--green); font-size: 9px; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ════════════════════════
   ABOUT
════════════════════════ */
.about { padding: 120px 0; background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-images { position: relative; height: 560px; }
.about-img-main { position: absolute; top: 0; left: 0; width: 70%; height: 78%; border-radius: var(--r); overflow: hidden; box-shadow: var(--shadowL); }
.about-img-main img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.about-img-main:hover img { transform: scale(1.04); }
.about-img-secondary { position: absolute; bottom: 0; right: 0; width: 50%; }
.about-img-secondary img { width: 100%; height: 240px; object-fit: cover; border-radius: var(--r); box-shadow: var(--shadowL); }
.about-img-card { position: absolute; bottom: -18px; left: -28px; background: var(--navy); color: #fff; padding: 17px 21px; border-radius: var(--rsm); box-shadow: var(--shadow); }
.about-card-num  { font-family: var(--serif); font-size: 20px; font-weight: 800; color: var(--green); margin-bottom: 3px; }
.about-card-text { font-size: 11px; color: rgba(255,255,255,.6); max-width: 130px; line-height: 1.4; }
.about-desc { font-size: 15px; color: var(--muted); line-height: 1.8; margin-bottom: 32px; }
.about-pillars { display: flex; flex-direction: column; gap: 22px; margin-bottom: 36px; }
.pillar { display: flex; gap: 14px; align-items: flex-start; }
.pillar-icon { width: 42px; height: 42px; background: var(--cream); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--navy); }
.pillar-icon svg { width: 19px; height: 19px; }
.pillar h4 { font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 3px; }
.pillar p  { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ════════════════════════
   STATS BAR
════════════════════════ */
.stats-bar { background: var(--navy); padding: 60px 0; }
.stats-grid { display: flex; align-items: center; justify-content: center; }
.stat-item { flex: 1; text-align: center; padding: 0 28px; }
.stat-big  { font-family: var(--serif); font-size: clamp(38px,5vw,58px); font-weight: 700; color: var(--green); line-height: 1; margin-bottom: 8px; }
.stat-desc { font-size: 11px; color: rgba(255,255,255,.55); font-weight: 500; text-transform: uppercase; letter-spacing: .08em; }
.stat-divider { width: 1px; height: 56px; background: rgba(255,255,255,.1); flex-shrink: 0; }

/* ════════════════════════
   SERVICES
════════════════════════ */
.services { padding: 120px 0; background: var(--cream); }
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.service-card { background: var(--white); border-radius: var(--r); padding: 34px; position: relative; overflow: hidden; transition: .28s var(--ease); border: 1px solid var(--border); }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadowL); border-color: transparent; }
.service-card--featured { background: var(--navy); }
.service-card--featured h3 { color: var(--white); }
.service-card--featured p  { color: rgba(255,255,255,.85); }
.service-card--featured .service-card-icon { background: rgba(255,255,255,.1); color: var(--green); }
.service-card--featured .service-link { color: var(--green); }
.service-card--featured .service-card-num { color: rgba(255,255,255,.05); }
.service-card--cta { background: var(--cream-d); display: flex; flex-direction: column; justify-content: center; }
.service-card-icon { width: 50px; height: 50px; background: var(--cream); border-radius: 11px; display: flex; align-items: center; justify-content: center; margin-bottom: 22px; color: var(--navy); transition: .25s; }
.service-card:hover .service-card-icon, .service-card--featured:hover .service-card-icon { background: var(--green); color: #fff; }
.service-card-icon svg { width: 22px; height: 22px; }
.service-card h3 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 10px; line-height: 1.3; }
.service-card p  { font-size: 13px; color: var(--muted); line-height: 1.7; margin-bottom: 22px; }
.service-link { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 600; color: var(--navy); transition: .2s; }
.service-link svg { width: 15px; height: 15px; transition: .2s; }
.service-link:hover { color: var(--green); }
.service-link:hover svg { transform: translateX(4px); }
.service-card-num { position: absolute; bottom: 18px; right: 22px; font-family: var(--serif); font-size: 60px; font-weight: 800; color: rgba(14,34,51,.04); line-height: 1; pointer-events: none; user-select: none; }

/* ════════════════════════
   TEAM
════════════════════════ */
.team { padding: 120px 0; background: var(--white); }
.team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; margin-bottom: 44px; }
.team-card { border-radius: var(--r); overflow: hidden; background: var(--cream); transition: .28s var(--ease); }
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadowL); }
.team-img { position: relative; overflow: hidden; }
.team-img img { width: 100%; height: 270px; object-fit: cover; transition: transform .5s; }
.team-card:hover .team-img img { transform: scale(1.06); }
.team-overlay { position: absolute; inset: 0; background: linear-gradient(to top,rgba(14,34,51,.7),transparent 50%); display: flex; align-items: flex-end; justify-content: center; padding-bottom: 18px; opacity: 0; transition: .28s; }
.team-card:hover .team-overlay { opacity: 1; }
.team-social { width: 34px; height: 34px; background: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--navy); transition: .2s; }
.team-social svg { width: 13px; height: 13px; }
.team-social:hover { background: var(--green); color: #fff; }
.team-info { padding: 18px; }
.team-info h4 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.team-info > p { font-size: 12px; color: var(--green); font-weight: 500; margin-bottom: 10px; }
.team-tags { display: flex; flex-wrap: wrap; gap: 5px; }
.team-tags span { font-size: 10px; font-weight: 500; padding: 3px 9px; background: #fff; color: var(--navy-m); border-radius: 20px; border: 1px solid var(--border); }
.team-footer { text-align: center; }

/* ════════════════════════
   TESTIMONIALS
════════════════════════ */
.testimonials { padding: 120px 0; background: var(--cream); }
.testimonials-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 22px; }
.testi-card { background: var(--white); border-radius: var(--r); padding: 38px; position: relative; transition: .28s var(--ease); border: 1px solid var(--border); }
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadowL); border-color: transparent; }
.testi-card--featured { background: var(--navy); }
.testi-card--featured .testi-quote, .testi-card--featured .testi-text { color: rgba(255,255,255,.88); }
.testi-card--featured .testi-name { color: #fff; }
.testi-card--featured .testi-role { color: rgba(255,255,255,.48); }
.testi-quote { font-family: var(--serif); font-size: 72px; font-weight: 800; color: var(--green); line-height: .8; margin-bottom: 18px; opacity: .55; }
.testi-text  { font-size: 14px; line-height: 1.8; color: var(--text); margin-bottom: 26px; }
.testi-author { display: flex; align-items: center; gap: 11px; }
.testi-author img { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.testi-name  { font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.testi-role  { font-size: 11px; color: var(--muted); }
.testi-stars { margin-left: auto; color: #F5A623; font-size: 12px; letter-spacing: 1px; }

/* ════════════════════════
   APPOINTMENT
════════════════════════ */
.appointment { padding: 120px 0; background: var(--white); }
.appointment-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: start; }
.appointment-text p { font-size: 15px; color: var(--muted); line-height: 1.7; margin-bottom: 36px; }
.contact-details { display: flex; flex-direction: column; gap: 22px; }
.contact-item { display: flex; gap: 14px; align-items: flex-start; }
.contact-icon { width: 42px; height: 42px; background: var(--cream); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--navy); flex-shrink: 0; }
.contact-icon svg { width: 17px; height: 17px; }
.contact-label { font-size: 11px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 3px; }
.contact-value { font-size: 14px; font-weight: 600; color: var(--navy); }
.appointment-form { background: var(--cream); border-radius: var(--r); padding: 44px; display: flex; flex-direction: column; gap: 18px; }
.form-row  { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--navy); }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 14px; background: #fff; border: 1.5px solid var(--border); border-radius: var(--rsm); font-size: 13px; font-family: var(--sans); color: var(--text); outline: none; transition: .2s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--navy); box-shadow: 0 0 0 3px rgba(14,34,51,.07); }
.form-group textarea { resize: vertical; }
.btn-submit { display: flex; align-items: center; justify-content: center; gap: 10px; width: 100%; padding: 15px; background: var(--navy); color: #fff; border: none; border-radius: 50px; font-size: 14px; font-weight: 600; font-family: var(--sans); cursor: pointer; transition: .25s var(--ease); box-shadow: 0 4px 20px rgba(14,34,51,.22); }
.btn-submit svg { width: 17px; height: 17px; }
.btn-submit:hover { background: var(--green-d); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(76,175,125,.38); }
.form-note { font-size: 11px; color: var(--muted); text-align: center; }
.form-success { text-align: center; padding: 40px 20px; }
.form-success-icon { width: 60px; height: 60px; background: var(--green); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; color: #fff; }

/* ════════════════════════
   FOOTER
════════════════════════ */
.footer { background: var(--navy); padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr; gap: 44px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,.07); }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,.46); line-height: 1.7; margin: 18px 0 24px; max-width: 280px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 34px; height: 34px; background: rgba(255,255,255,.08); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.55); transition: .2s; }
.footer-social a:hover { background: var(--green); color: #fff; transform: translateY(-2px); }
.footer-social svg { width: 15px; height: 15px; }
.footer-col h5 { font-size: 12px; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 18px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col a { font-size: 13px; color: rgba(255,255,255,.46); transition: .2s; }
.footer-col a:hover { color: var(--green); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 22px 0; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,.3); }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 12px; color: rgba(255,255,255,.3); transition: .2s; }
.footer-links a:hover { color: rgba(255,255,255,.65); }

/* ════════════════════════
   CRISIS BANNER
════════════════════════ */
.crisis-banner { position: fixed; bottom: 0; left: 0; right: 0; z-index: 999; background: var(--navy); border-top: 2px solid var(--green); }
.crisis-inner { max-width: 1240px; margin: 0 auto; padding: 13px 32px; display: flex; align-items: center; gap: 14px; }
.crisis-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--green); flex-shrink: 0; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:.55; transform:scale(1.3); } }
.crisis-inner p { font-size: 13px; color: rgba(255,255,255,.82); flex: 1; }
.crisis-inner strong { color: #fff; }
.crisis-inner button { background: none; border: none; color: rgba(255,255,255,.38); cursor: pointer; padding: 4px; display: flex; transition: .2s; flex-shrink: 0; }
.crisis-inner button:hover { color: #fff; }
.crisis-inner button svg { width: 17px; height: 17px; }

/* ════════════════════════
   SECTION TITLE ITALIC ACCENT
════════════════════════ */
.section-title em { font-style: italic; color: var(--green); font-weight: 400; }

/* ════════════════════════
   HOW IT WORKS
════════════════════════ */
.how-it-works { padding: 110px 0; background: var(--white); }
.steps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 36px; }
.step-img { border-radius: 20px; overflow: hidden; margin-bottom: 28px; aspect-ratio: 4/3; }
.step-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .55s var(--ease); }
.step-card:hover .step-img img { transform: scale(1.05); }
.step-label { font-family: var(--serif); font-style: italic; font-size: 19px; color: var(--green); margin-bottom: 10px; }
.step-card h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 10px; line-height: 1.32; }
.step-card > p { font-size: 13px; color: var(--muted); line-height: 1.8; }

/* ════════════════════════
   PROGRESS SECTION
════════════════════════ */
.progress-section { padding: 110px 0; background: var(--cream); }
.progress-grid { display: grid; grid-template-columns: 1fr 1.25fr; gap: 88px; align-items: center; }
.progress-desc { font-size: 15px; color: var(--muted); line-height: 1.78; margin-bottom: 28px; }
.progress-actions { margin-bottom: 36px; }
.progress-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.progress-list li { display: flex; gap: 11px; align-items: flex-start; font-size: 13px; color: var(--muted); line-height: 1.6; }
.progress-list li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; margin-top: 2px; }
.progress-visual { background: var(--white); border-radius: 24px; padding: 38px; box-shadow: var(--shadowL); }
.progress-metric-title { font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 3px; }
.progress-metric-range { font-size: 11px; color: var(--muted); margin-bottom: 16px; }
.progress-metric-num { font-family: var(--serif); font-size: 72px; font-weight: 400; color: var(--green); line-height: 1; }
.progress-metric-unit { font-size: 13px; color: var(--muted); margin-bottom: 18px; }
.progress-metric-footer { padding-top: 16px; border-top: 1px solid var(--border); display: flex; flex-direction: column; gap: 5px; margin-bottom: 28px; }
.progress-badge { display: inline-flex; align-items: center; gap: 4px; font-size: 11px; font-weight: 600; color: var(--green); background: rgba(181,112,74,.12); padding: 4px 11px; border-radius: 20px; width: fit-content; }
.progress-metric-date { font-size: 11px; color: var(--muted); }
.progress-chart-svg { width: 100%; height: auto; display: block; }
.progress-chart-labels { display: flex; justify-content: space-between; margin-top: 8px; }
.progress-chart-labels span { font-size: 10px; color: var(--muted); letter-spacing: .02em; }

/* ════════════════════════
   CLINICIAN SECTION
════════════════════════ */
.clinician-section { padding: 110px 0; background: var(--white); }
.clinician-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 88px; align-items: end; }
.clinician-credit { font-size: 12px; font-weight: 600; color: var(--navy); letter-spacing: .04em; margin-bottom: 4px; }
.clinician-title-sm { font-size: 11px; color: var(--muted); margin-bottom: 20px; }
.clinician-img-col { position: relative; }
.clinician-img { position: relative; border-radius: 22px; overflow: hidden; }
.clinician-img img { width: 100%; height: 520px; object-fit: cover; object-position: top center; display: block; }
.clinician-badge { position: absolute; bottom: 0; left: 0; right: 0; background: rgba(255,255,255,.93); backdrop-filter: blur(14px); padding: 20px 24px; }
.clinician-badge-title { font-size: 12px; font-weight: 700; color: var(--navy); display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.clinician-badge-title svg { color: var(--green); flex-shrink: 0; }
.clinician-badge-text { font-size: 11px; color: var(--muted); line-height: 1.65; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.clinician-text-col { padding-bottom: 32px; }
.clinician-desc { font-size: 15px; color: var(--muted); line-height: 1.78; margin-bottom: 36px; }

/* ════════════════════════
   RESPONSIVE
════════════════════════ */
@media (max-width: 1100px) {
  .sc-tl,.sc-bl { left: 0; } .sc-tr,.sc-br { right: 0; }
  .about-grid { grid-template-columns: 1fr; gap: 44px; }
  .about-images { height: 360px; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .team-grid { grid-template-columns: repeat(2,1fr); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .testi-card--featured { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .progress-grid { grid-template-columns: 1fr; gap: 52px; }
  .clinician-grid { grid-template-columns: 1fr; gap: 52px; }
  .clinician-img img { height: 400px; }
}
@media (max-width: 768px) {
  .nav-links,.nav-phone { display: none; }
  .nav-toggle { display: flex; }
  .stat-card { display: none; }
  .hero-col { padding-top: 100px; }
  .hero-title { font-size: 40px; }
  .hero-card-outer { padding: 0 12px !important; }
  .hero-card { height: 180px !important; border-radius: 16px !important; }
  .hero-card-overlay { padding: 24px; }
  .banner-badge { top: 16px; right: 18px; font-size: 11px; }
  .about-images { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .stats-grid { flex-wrap: wrap; gap: 36px; }
  .stat-divider { display: none; }
  .stat-item { flex: 0 0 45%; }
  .services-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .progress-grid { gap: 36px; }
  .clinician-grid { gap: 36px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testi-card--featured { grid-column: span 1; }
  .appointment-grid { grid-template-columns: 1fr; gap: 44px; }
  .appointment-form { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
  .container { padding: 0 18px; }
  .crisis-inner { padding: 10px 18px; }
}
