/* ============================================================
   Hope Connection Therapy Co. — Shared Stylesheet
   style.css
   ============================================================ */

html { scroll-behavior: smooth; }
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #1a2d6b;
  --navy-dark:  #111e4a;
  --navy-light: #eaedfa;
  --gold:       #f0c240;
  --gold-dark:  #d4a820;
  --gold-light: #fef8df;
  --orange:     #e8652a;
  --coral:      #d94f3d;
  --green:      #3fa864;
  --blue:       #4a90d9;
  --warm:       #f8f6f2;
  --warm-mid:   #ede8df;
  --text:       #1e1e2e;
  --text-soft:  #5a5a72;
  --white:      #ffffff;
  --radius:     14px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

/* ── TYPOGRAPHY ──────────────────────────── */
h1, h2, h3 { font-family: 'Playfair Display', serif; }

/* ── NAV ──────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #e2ddd5;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo-img {
  height: 54px;
  width: auto;
  display: block;
}

.nav-logo-text-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  margin-left: 10px;
}

.nav-logo-script {
  font-family: 'Dancing Script', cursive;
  font-size: 1.35rem;
  color: var(--navy);
  letter-spacing: 0.3px;
}

.nav-logo-sub {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--navy);
  opacity: 0.6;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-soft);
  font-size: 0.88rem;
  font-weight: 500;
  transition: color 0.2s;
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover { color: var(--navy); }

.nav-links a.active {
  color: var(--navy);
  border-bottom: 2px solid var(--gold);
  font-weight: 600;
}

.nav-cta {
  background: var(--navy) !important;
  color: white !important;
  padding: 10px 22px !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  border-bottom: none !important;
  transition: background 0.2s !important;
}

.nav-cta:hover { background: var(--navy-dark) !important; }

.nav-portal {
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding: 10px 18px !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  border-bottom: none !important;
  font-size: 0.82rem !important;
  transition: opacity 0.2s !important;
  letter-spacing: 0.3px;
}

.nav-portal:hover { opacity: 0.88 !important; color: var(--navy) !important; }

/* ── BUTTONS ──────────────────────────────── */
.btn-primary {
  background: var(--navy);
  color: white;
  padding: 15px 32px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, transform 0.1s;
  display: inline-block;
}
.btn-primary:hover { background: var(--navy-dark); transform: translateY(-1px); }

.btn-secondary {
  background: transparent;
  color: var(--navy);
  padding: 15px 32px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid var(--navy);
  transition: all 0.2s;
  display: inline-block;
}
.btn-secondary:hover { background: var(--navy-light); }

.btn-gold {
  background: var(--gold);
  color: var(--navy);
  padding: 16px 40px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: opacity 0.2s, transform 0.15s;
}
.btn-gold:hover { opacity: 0.9; transform: translateY(-1px); }

/* ── SECTION HELPERS ──────────────────────── */
section { padding: 80px 5%; }

.section-label {
  display: inline-block;
  background: var(--gold-light);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
  border: 1px solid var(--gold);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.25;
  margin-bottom: 16px;
  color: var(--navy);
}

.section-sub {
  color: var(--text-soft);
  font-size: 1.05rem;
  max-width: 580px;
  line-height: 1.75;
}

.section-header { margin-bottom: 52px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-sub { margin: 0 auto; }

/* ── PAGE HERO (inner pages) ──────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--warm) 0%, var(--navy-light) 60%, #dde3f8 100%);
  padding: 70px 5% 60px;
  text-align: center;
}

.page-hero .section-label { margin-bottom: 14px; }

.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.2;
}

.page-hero p {
  color: var(--text-soft);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ── HOME HERO ───────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--warm) 0%, var(--navy-light) 55%, #dde3f8 100%);
  padding: 100px 5% 90px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: 1.5px solid var(--gold);
  color: var(--navy);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.hero-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 22px;
}

.hero h1 span { color: var(--navy); }

.hero > .hero-content > p {
  font-size: 1.1rem;
  color: var(--text-soft);
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.75;
}

.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-visual { display: flex; flex-direction: column; gap: 16px; }

.hero-card {
  background: white;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 4px 20px rgba(26,45,107,0.08);
}

.hero-card-main { display: flex; align-items: center; gap: 18px; }

.hero-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
}

.hero-card-icon.navy  { background: var(--navy-light); }
.hero-card-icon.gold  { background: var(--gold-light); }
.hero-card-icon.green { background: #e5f5ec; }

.hero-card h3 { font-family: 'Inter', sans-serif; font-size: 1rem; font-weight: 600; margin-bottom: 4px; color: var(--navy); }
.hero-card p  { font-size: 0.85rem; color: var(--text-soft); margin: 0; }

.hero-cards-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.hero-stat {
  background: white;
  border-radius: var(--radius);
  padding: 22px 20px;
  box-shadow: 0 4px 20px rgba(26,45,107,0.08);
  text-align: center;
}

.hero-stat .stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
}

.hero-stat .stat-label { font-size: 0.8rem; color: var(--text-soft); margin-top: 4px; }

/* ── WHO WE SERVE ─────────────────────────── */
.serve { background: var(--warm); }

.serve-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.serve-card {
  background: white;
  border-radius: var(--radius);
  padding: 36px 30px;
  border-top: 4px solid var(--gold);
  box-shadow: 0 2px 12px rgba(26,45,107,0.06);
  transition: box-shadow 0.2s, transform 0.2s;
}

.serve-card:hover {
  box-shadow: 0 8px 30px rgba(26,45,107,0.12);
  transform: translateY(-3px);
}

.serve-card-emoji { font-size: 2.4rem; margin-bottom: 18px; display: block; }

.serve-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--navy);
}

.serve-card p { color: var(--text-soft); font-size: 0.95rem; line-height: 1.7; }

.serve-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  color: var(--navy);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
}
.serve-link::after { content: '→'; }

/* ── SERVICES ─────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--warm);
  border-radius: var(--radius);
  padding: 30px 26px;
  border-left: 4px solid var(--navy);
  transition: box-shadow 0.2s;
}

.service-card:hover { box-shadow: 0 6px 20px rgba(26,45,107,0.1); }

.service-tag { display: inline-block; font-size: 1.4rem; margin-bottom: 12px; }
.service-card h3 { font-family: 'Inter', sans-serif; font-size: 1.05rem; font-weight: 600; margin-bottom: 10px; color: var(--navy); }
.service-card p { color: var(--text-soft); font-size: 0.9rem; line-height: 1.7; }

/* ── GROUP THERAPY SPOTLIGHT ──────────────── */
.group-spotlight {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: white;
  border-radius: var(--radius);
  padding: 40px 36px;
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 28px;
  box-shadow: 0 8px 30px rgba(26,45,107,0.25);
}

.group-spotlight-icon { font-size: 3rem; flex-shrink: 0; }

.group-spotlight h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  margin-bottom: 8px;
  color: var(--gold);
}

.group-spotlight p { font-size: 0.95rem; opacity: 0.85; line-height: 1.7; max-width: 700px; }

.group-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 10px;
}

/* ── STAFF CARDS ──────────────────────────── */
.staff-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
  align-items: stretch;
}

.staff-card {
  background: white;
  border-radius: var(--radius);
  box-shadow: 0 4px 24px rgba(26,45,107,0.09);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}

.staff-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(26,45,107,0.14);
}

.staff-card-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  padding: 36px 32px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.staff-avatar {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Dancing Script', cursive;
  font-size: 2.2rem;
  color: var(--navy);
  font-weight: 700;
  flex-shrink: 0;
  border: 4px solid rgba(255,255,255,0.5);
  box-shadow: 0 4px 20px rgba(0,0,0,0.18);
  overflow: hidden;
}

/* When a real photo is used, it fills the circle */
.staff-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
  display: block;
}

.staff-name-block { color: white; }

.staff-name {
  font-family: 'Dancing Script', cursive;
  font-size: 1.6rem;
  line-height: 1.1;
  margin-bottom: 4px;
}

.staff-title {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.9;
}

.staff-card-body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.staff-quote {
  background: var(--gold-light);
  border-left: 3px solid var(--gold);
  border-radius: 0 8px 8px 0;
  padding: 14px 18px;
  margin-bottom: 22px;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--navy);
  line-height: 1.65;
}

.staff-bio p {
  font-size: 0.95rem;
  color: var(--text-soft);
  line-height: 1.8;
  margin-bottom: 14px;
}

.staff-bio p:last-child { margin-bottom: 0; }

.staff-specialties {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0;
}

.specialty-tag {
  background: var(--navy-light);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 50px;
}

.staff-contact {
  border-top: 1px solid var(--warm-mid);
  padding-top: 20px;
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.staff-contact a {
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: opacity 0.2s;
}

.staff-contact a:hover { opacity: 0.7; }

/* ── ABOUT / VALUES ───────────────────────── */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.about-values { display: flex; flex-direction: column; gap: 20px; margin-top: 36px; }

.value-item { display: flex; gap: 16px; align-items: flex-start; }

.value-dot {
  width: 36px;
  height: 36px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}

.value-item h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 4px; color: var(--navy); font-family: 'Inter', sans-serif; }
.value-item p { font-size: 0.88rem; color: var(--text-soft); line-height: 1.65; }

.about-quote-card {
  background: white;
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: 0 8px 30px rgba(26,45,107,0.1);
  position: relative;
}

.about-quote-card::before {
  content: '"';
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: var(--gold);
  line-height: 0.8;
  position: absolute;
  top: 28px;
  left: 28px;
  opacity: 0.4;
}

.about-quote-card blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  line-height: 1.65;
  color: var(--navy);
  margin-bottom: 24px;
  font-style: italic;
  padding-top: 20px;
}

.quote-author { display: flex; align-items: center; gap: 12px; }

.quote-avatar {
  width: 46px;
  height: 46px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  overflow: hidden;
  flex-shrink: 0;
  font-size: 0.9rem;
}

.quote-name { font-weight: 600; font-size: 0.95rem; color: var(--navy); font-family: 'Inter', sans-serif; }
.quote-title { font-size: 0.82rem; color: var(--text-soft); }

.about-float-badge {
  position: absolute;
  bottom: -18px;
  right: -18px;
  background: var(--gold);
  color: var(--navy);
  border-radius: var(--radius);
  padding: 18px 22px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(240,194,64,0.4);
}

.about-float-badge .big { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700; }
.about-float-badge .small { font-size: 0.78rem; font-weight: 600; }

/* ── TESTIMONIALS ─────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--warm);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid var(--warm-mid);
}

.stars { color: var(--gold-dark); font-size: 1rem; margin-bottom: 16px; letter-spacing: 2px; }

.testimonial-card blockquote {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 22px;
  font-family: 'Inter', sans-serif;
}

.t-author { font-weight: 600; font-size: 0.9rem; color: var(--navy); }
.t-label { font-size: 0.8rem; color: var(--text-soft); }



/* ── TRUST / HELP / PROCESS EXTRAS ───────────────── */
.quick-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.fact-card {
  background: white;
  border-radius: var(--radius);
  padding: 24px 22px;
  box-shadow: 0 3px 14px rgba(26,45,107,0.07);
  border-top: 3px solid var(--gold);
}

.fact-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.fact-card p {
  font-size: 0.88rem;
  color: var(--text-soft);
  line-height: 1.7;
}

.concerns-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.concern-card {
  background: white;
  border-radius: var(--radius);
  padding: 24px 22px;
  box-shadow: 0 3px 14px rgba(26,45,107,0.06);
  border-left: 3px solid var(--gold);
}

.concern-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.concern-card p {
  font-size: 0.86rem;
  color: var(--text-soft);
  line-height: 1.7;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 980px;
  margin: 0 auto;
}

.process-card {
  background: white;
  border-radius: var(--radius);
  padding: 30px 24px;
  box-shadow: 0 4px 18px rgba(26,45,107,0.07);
  text-align: center;
}

.process-step {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 auto 16px;
}

.process-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.process-card p {
  font-size: 0.88rem;
  color: var(--text-soft);
  line-height: 1.7;
}

.pill-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.pill-links a {
  text-decoration: none;
  color: var(--navy);
  background: white;
  border: 1px solid #d8dfee;
  border-radius: 50px;
  padding: 10px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: background 0.2s, border-color 0.2s;
}

.pill-links a:hover {
  background: var(--navy-light);
  border-color: var(--navy);
}

.info-band {
  background: white;
  border-radius: var(--radius);
  padding: 24px 28px;
  box-shadow: 0 4px 18px rgba(26,45,107,0.07);
}

.info-band-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.info-chip {
  background: var(--warm);
  border-radius: 12px;
  padding: 18px 16px;
}

.info-chip h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.info-chip p {
  font-size: 0.84rem;
  color: var(--text-soft);
  line-height: 1.65;
}

/* ── RESOURCES ────────────────────────────── */
.resources-bg { background: var(--gold-light); }

.resources-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.resource-card {
  background: white;
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  box-shadow: 0 3px 12px rgba(26,45,107,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
  border-bottom: 3px solid var(--gold);
}

.resource-card:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(26,45,107,0.1); }

.resource-icon { font-size: 2.2rem; margin-bottom: 14px; }
.resource-card h3 { font-family: 'Inter', sans-serif; font-size: 0.95rem; font-weight: 600; margin-bottom: 8px; color: var(--navy); }
.resource-card p { font-size: 0.82rem; color: var(--text-soft); line-height: 1.6; }

/* ── CTA BAND ─────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  color: white;
  text-align: center;
  padding: 90px 5%;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.06;
}

.cta-band::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -40px;
  width: 250px; height: 250px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.05;
}

.cta-band h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  margin-bottom: 18px;
  position: relative;
}

.cta-band p {
  font-size: 1.1rem;
  opacity: 0.85;
  max-width: 540px;
  margin: 0 auto 40px;
  line-height: 1.75;
  position: relative;
  font-family: 'Inter', sans-serif;
}

/* ── CONTACT ──────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
}

.contact-info h2,
.contact-form-card h3 {
  font-family: 'Playfair Display', serif;
  color: var(--navy);
  margin-bottom: 16px;
}

.contact-info > p {
  color: var(--text-soft);
  font-size: 0.98rem;
  line-height: 1.8;
  margin-bottom: 28px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}

.contact-detail-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--navy-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.95rem;
}

.contact-detail strong {
  display: block;
  color: var(--navy);
  font-size: 0.9rem;
  margin-bottom: 3px;
}

.contact-detail span {
  color: var(--text-soft);
  font-size: 0.88rem;
  line-height: 1.65;
}

.contact-form-card {
  background: white;
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: 0 4px 20px rgba(26,45,107,0.08);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid #d7d9e4;
  border-radius: 10px;
  padding: 14px 14px;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  background: white;
  color: var(--text);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(26,45,107,0.08);
}

.form-submit {
  width: 100%;
  border: none;
  border-radius: 50px;
  background: var(--navy);
  color: white;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 15px 22px;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}

.form-submit:hover {
  background: var(--navy-dark);
  transform: translateY(-1px);
}

.info-band {
  background: white;
  border-radius: var(--radius);
  box-shadow: 0 4px 20px rgba(26,45,107,0.06);
  padding: 24px;
}

.info-band-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.info-chip {
  background: var(--warm);
  border-radius: 12px;
  padding: 18px 16px;
  border-left: 3px solid var(--gold);
}

.info-chip h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.info-chip p {
  font-size: 0.84rem;
  color: var(--text-soft);
  line-height: 1.65;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.process-card {
  background: white;
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  box-shadow: 0 3px 12px rgba(26,45,107,0.06);
}

.process-number {
  width: 38px;
  height: 38px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.process-card p {
  font-size: 0.86rem;
  color: var(--text-soft);
  line-height: 1.7;
}

@media (max-width: 980px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ── BACK TO TOP ─────────────────────────── */
#back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 46px;
  height: 46px;
  background: var(--navy);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(26,45,107,0.25);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s, transform 0.2s;
  z-index: 999;
}
#back-to-top.visible { opacity: 1; visibility: visible; }
#back-to-top:hover { transform: translateY(-3px); background: var(--navy-dark); }

/* ── FOOTER ───────────────────────────────── */
footer {
  background: #0e1830;
  color: #9aacbe;
  padding: 60px 5% 30px;
}

.footer-crisis {
  background: #162240;
  border: 1px solid #2a3f60;
  border-left: 4px solid var(--gold);
  border-radius: 10px;
  padding: 16px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 50px;
}

.footer-crisis .crisis-icon { font-size: 1.4rem; }
.footer-crisis p { font-size: 0.85rem; line-height: 1.6; color: #b8cce0; margin: 0; }
.footer-crisis strong { color: var(--gold); }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 48px;
}

.footer-brand .brand-script {
  font-family: 'Dancing Script', cursive;
  font-size: 1.6rem;
  color: white;
  display: block;
  line-height: 1;
}

.footer-brand .brand-sub {
  font-size: 0.6rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  display: block;
  margin-bottom: 14px;
}

.footer-brand p { font-size: 0.88rem; line-height: 1.75; color: #6a849e; max-width: 260px; }

.footer-col h4 {
  color: white;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }

.footer-col ul li a {
  text-decoration: none;
  color: #6a849e;
  font-size: 0.88rem;
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: white; }

.footer-bottom {
  border-top: 1px solid #1e3050;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: #4a6480;
}

/* ── RESPONSIVE ───────────────────────────── */
@media (max-width: 980px) {
  .hero, .about-split, .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .hero { padding: 70px 5%; }
  .serve-grid, .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .services-grid, .concerns-grid, .quick-facts, .info-band-grid, .process-grid { grid-template-columns: 1fr 1fr; }
  .resources-grid { grid-template-columns: 1fr 1fr; }
  .staff-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .nav-links { display: none; }
  .hero-cards-row { grid-template-columns: 1fr 1fr; }
  .about-float-badge { position: relative; bottom: auto; right: auto; margin-top: 20px; display: inline-block; }
  .group-spotlight { flex-direction: column; text-align: center; }
}

@media (max-width: 580px) {
  .serve-grid, .services-grid, .resources-grid, .testimonials-grid, .concerns-grid, .quick-facts, .info-band-grid, .process-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-cards-row { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}


/* ── LEGAL / ASSESSMENTS ─────────────────── */
.legal-disclaimer {
  background: rgba(26,45,107,0.06);
  border: 1px solid rgba(26,45,107,0.12);
  color: var(--text-soft);
  font-size: 0.82rem;
  line-height: 1.75;
  padding: 16px 18px;
  border-radius: 12px;
}

.assessment-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
  gap: 28px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

.assessment-card, .assessment-side-card {
  background: white;
  border-radius: var(--radius);
  box-shadow: 0 4px 20px rgba(26,45,107,0.08);
}

.assessment-card {
  padding: 30px;
}

.assessment-side-card {
  padding: 24px;
  margin-bottom: 18px;
}

.assessment-question {
  padding-bottom: 22px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--warm-mid);
}

.assessment-question:last-of-type {
  margin-bottom: 0;
}

.assessment-q-title {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 14px;
}

.assessment-number {
  width: 32px;
  height: 32px;
  background: var(--gold-light);
  color: var(--navy);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
  border: 1px solid var(--gold);
}

.assessment-q-title h3 {
  font-family: 'Inter', sans-serif;
  color: var(--navy);
  font-size: 1rem;
  line-height: 1.6;
}

.answer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.answer-option {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--warm);
  border: 1px solid var(--warm-mid);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 0.9rem;
  color: var(--text-soft);
  cursor: pointer;
}

.answer-option input {
  accent-color: var(--navy);
}

.assessment-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.score-guide {
  padding-left: 18px;
  color: var(--text-soft);
  line-height: 1.9;
}

.assessment-result {
  max-width: 1100px;
  margin: 24px auto 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: white;
  border-radius: var(--radius);
  padding: 28px 30px;
  box-shadow: 0 8px 28px rgba(26,45,107,0.18);
}

.assessment-result h3 {
  color: var(--gold);
  margin-bottom: 10px;
  font-size: 1.45rem;
}

.assessment-result p {
  opacity: 0.92;
  line-height: 1.8;
}

@media (max-width: 900px) {
  .assessment-layout { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .answer-grid { grid-template-columns: 1fr; }
}


/* ── HOME HERO LARGE LOGO CARD ───────────────── */
.hero-logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  padding: 22px 24px;
}
.hero-logo-large {
  width: min(100%, 360px);
  height: auto;
  display: block;
}

/* ── INFO BANDS / CHIPS ─────────────────────── */
.info-band {
  background: white;
  border-radius: var(--radius);
  box-shadow: 0 4px 20px rgba(26,45,107,0.06);
  padding: 28px;
}
.info-band-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.info-chip {
  background: var(--warm);
  border-radius: 12px;
  padding: 22px 20px;
  border-left: 4px solid var(--gold);
}
.info-chip h4 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.info-chip p {
  font-size: 0.9rem;
  color: var(--text-soft);
  line-height: 1.7;
}

@media (max-width: 980px) {
  .info-band-grid {
    grid-template-columns: 1fr;
  }
}
