*, *::before, *::after { box-sizing: border-box; }
:root {
  --teal: #1F4D4C;
  --teal-mid: #2A6260;
  --lime: #8DC21F;
  --lime-light: #A8D82B;
  --lavender: #EAF0FB;
  --off: #F7F9FE;
  --dark: #1A2E2E;
  --mid: #445555;
  --muted: #738686;
  --border: #D5E0E0;
  --white: #fff;
}
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Rubik', system-ui, sans-serif;
  background: var(--lavender);
  color: var(--dark);
  line-height: 1.62;
}
a { color: inherit; }
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 2px 20px rgba(31,77,76,0.1); }
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  height: 100px;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.logo-img { height: 80px; width: auto; display: block; }
.nav-links { display: flex; gap: 0.1rem; list-style: none; padding: 0; margin: 0; align-items: center; }
.nav-links a {
  display: block;
  text-decoration: none;
  color: var(--mid);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.45rem 0.75rem;
  border-radius: 6px;
  transition: all 0.2s;
}
.nav-links a:hover { background: rgba(31,77,76,0.06); color: var(--teal); }
.nav-cta {
  background: var(--teal) !important;
  color: white !important;
  padding: 0.55rem 1.25rem !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
}
.nav-cta:hover {
  background: var(--teal-mid) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(31,77,76,0.25) !important;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span { display: block; width: 22px; height: 2px; background: var(--teal); border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(31,77,76,.96) 0%, rgba(31,77,76,.9) 47%, rgba(31,77,76,.3) 100%),
    url("images/sample_therapist_child.jpg") center 35%/cover no-repeat;
  color: var(--white);
}
.hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 172px 24px 86px;
  display: grid;
  grid-template-columns: minmax(0, 760px) 1fr;
  gap: 40px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--lime);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
h1 {
  margin: 14px 0 18px;
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  line-height: .96;
  letter-spacing: 0;
}
.hero p {
  margin: 0 0 24px;
  max-width: 680px;
  font-size: clamp(1.02rem, 1.6vw, 1.22rem);
  color: rgba(255,255,255,.9);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
}
.btn-primary { background: var(--lime); color: var(--teal); }
.btn-secondary { background: rgba(255,255,255,.13); color: var(--white); border: 1px solid rgba(255,255,255,.28); }
.quick-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.quick-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 20px 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.quick-card {
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 15px;
}
.quick-card strong { display: block; color: var(--teal); margin-bottom: 4px; }
.quick-card span { color: var(--muted); font-size: .92rem; }
.content-sec { background: var(--white); padding: 58px 24px; }
.content-wrap { max-width: 780px; margin: 0 auto; }
.content-wrap h2 {
  margin: 34px 0 10px;
  color: var(--teal);
  font-size: clamp(1.45rem, 2.4vw, 2.05rem);
  line-height: 1.12;
}
.content-wrap h2:first-child { margin-top: 0; }
.content-wrap p, .content-wrap li { color: var(--mid); font-size: 1.03rem; }
.content-wrap ul { padding-left: 22px; }
.callout {
  margin: 28px 0;
  padding: 22px;
  background: var(--lavender);
  border-left: 5px solid var(--lime);
  border-radius: 8px;
}
.link-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 22px 0;
}
.link-card {
  display: block;
  min-height: 130px;
  padding: 18px;
  text-decoration: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--off);
}
.link-card strong { display: block; color: var(--teal); line-height: 1.2; margin-bottom: 8px; }
.link-card span { display: block; color: var(--muted); font-size: .92rem; }
.city-list { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0 4px; }
.city-list a {
  text-decoration: none;
  border: 1px solid var(--border);
  color: var(--teal);
  background: var(--off);
  border-radius: 999px;
  padding: 8px 11px;
  font-size: .9rem;
  font-weight: 700;
}
.image-break {
  min-height: 285px;
  display: grid;
  align-items: end;
  background:
    linear-gradient(180deg, rgba(31,77,76,.08), rgba(31,77,76,.92)),
    url("images/therapist-highfive-child.jpg") center 30%/cover no-repeat;
  color: var(--white);
}
.image-break-inner { max-width: 1180px; margin: 0 auto; width: 100%; padding: 42px 24px; }
.image-break h2 { margin: 0; max-width: 760px; font-size: clamp(1.7rem, 4vw, 3.1rem); line-height: 1.02; }
.faq { background: var(--off); padding: 56px 24px; }
.faq-wrap { max-width: 780px; margin: 0 auto; }
.faq h2 { color: var(--teal); font-size: clamp(1.5rem, 2.4vw, 2.1rem); }
.faq-item { border-top: 1px solid var(--border); padding: 18px 0; }
.faq-item h3 { margin: 0 0 8px; color: var(--dark); font-size: 1.05rem; }
.faq-item p { margin: 0; color: var(--mid); }
.cta { background: var(--teal); color: var(--white); padding: 56px 24px; }
.cta-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: 34px;
  align-items: start;
}
.cta h2 { margin: 0 0 12px; font-size: clamp(1.7rem, 3vw, 2.7rem); line-height: 1.05; }
.cta p { color: rgba(255,255,255,.86); max-width: 660px; }
form {
  background: var(--white);
  color: var(--dark);
  border-radius: 8px;
  padding: 22px;
  display: grid;
  gap: 12px;
}
label { font-size: .84rem; color: var(--mid); font-weight: 700; }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 7px;
  padding: 12px;
  font: inherit;
}
textarea { min-height: 96px; resize: vertical; }
button {
  border: 0;
  cursor: pointer;
  background: var(--lime);
  color: var(--teal);
  border-radius: 7px;
  padding: 13px 16px;
  font: inherit;
  font-weight: 800;
}
.hamburger {
  background: none;
  color: inherit;
  border-radius: 0;
  padding: 4px;
  font-weight: 400;
}
.sms { display: grid; grid-template-columns: 18px 1fr; gap: 9px; align-items: start; color: var(--mid); font-size: .78rem; line-height: 1.35; }
.sms input { width: 18px; margin-top: 2px; }
footer { background: #0F2B2B; color: rgba(255,255,255,0.65); padding: 4rem 0 2rem; }
.foot-inner { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
.foot-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.foot-brand p { font-size: 0.84rem; line-height: 1.78; margin-top: 0.9rem; color: rgba(255,255,255,0.76); max-width: 275px; }
.foot-address { font-size: 0.8rem; line-height: 1.7; color: rgba(255,255,255,0.72); margin-top: 1rem; }
.foot-contacts { display: flex; flex-direction: column; gap: 0.45rem; margin-top: 0.75rem; }
.foot-contacts a { text-decoration: none; color: rgba(255,255,255,0.78); font-size: 0.8rem; transition: color 0.2s; }
.foot-contacts a:hover { color: var(--lime-light); }
.foot-social { display: flex; gap: 0.75rem; margin-top: 1.25rem; }
.foot-social a { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.82); transition: all 0.2s; }
.foot-social a:hover { background: rgba(141,194,31,0.15); color: var(--lime-light); }
.foot-social svg { width: 20px; height: 20px; }
.f-heading { font-size: 0.67rem; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; color: rgba(255,255,255,0.78); margin: 0 0 1.2rem; }
.f-links { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; padding: 0; margin: 0; }
.f-links a, .foot-brand a { text-decoration: none; color: rgba(255,255,255,0.78); font-size: 0.85rem; transition: color 0.2s; }
.f-links a:hover, .foot-brand a:hover { color: var(--lime-light); }
.spanish-footer-link { margin-top: 0.6rem; padding-top: 0.6rem; border-top: 1px solid rgba(255,255,255,0.08); }
.spanish-footer-link a { color: var(--lime-light); }
.foot-bottom { text-align: center; }
.foot-policies { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem 0; margin-bottom: 1.25rem; }
.foot-policies a { text-decoration: none; font-size: 0.72rem; color: rgba(255,255,255,0.68); transition: color 0.2s; padding: 0 0.6rem; border-right: 1px solid rgba(255,255,255,0.12); }
.foot-policies a:last-child { border-right: none; }
.foot-policies a:hover { color: rgba(255,255,255,0.9); }
.foot-copy { font-size: 0.78rem; color: rgba(255,255,255,0.68); }
.foot-logo { height: 70px; width: auto; }
@media (max-width: 900px) {
  .foot-top { grid-template-columns: 1fr 1fr; }
  .hero-inner, .cta-inner { grid-template-columns: 1fr; }
  .quick-inner, .link-grid { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .nav-inner { height: 92px; padding: 0 1.25rem; }
  .logo-img { height: 64px; }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 1rem 2rem 1.5rem;
    gap: 0.25rem;
    box-shadow: 0 8px 24px rgba(31,77,76,0.1);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 0.65rem 0.75rem; font-size: 1rem; }
  .nav-links .nav-cta { text-align: center; margin-top: 0.5rem; }
  .hamburger { display: flex; }
  .hero-inner { padding: 142px 18px 62px; }
  .content-sec, .faq, .cta { padding-left: 18px; padding-right: 18px; }
  .foot-top { grid-template-columns: 1fr; gap: 2rem; }
  .foot-inner { padding: 0 1.25rem; }
}
