/* ===================================================================
   Oasis Emocional Counseling Services — Styles
   Palette drawn from the logo: cream, teal, sage, terracotta, sun.
   =================================================================== */

:root {
  --cream:        #F7F2E7;
  --cream-soft:   #FBF8F1;
  --logo-bg:      #FCFBF6;
  --sand:         #E9D9BE;
  --teal:         #2E6E6A;
  --teal-bright:  #3AA093;
  --teal-dark:    #245451;
  --sage:         #7FA890;
  --sage-soft:    #A9C3B0;
  --terracotta:   #C77B54;
  --sun:          #F2C75C;
  --crab:         #9E3B33;
  --ink:          #34433F;
  --ink-soft:     #5B6B66;
  --line:         #E3DAC8;

  --font-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-sans:  "Nunito Sans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  --radius:   16px;
  --radius-sm: 10px;
  --shadow:   0 14px 40px rgba(46, 110, 106, 0.10);
  --shadow-sm: 0 6px 20px rgba(52, 67, 63, 0.08);
  --maxw: 1160px;
  --header-h: 78px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 .5em;
  color: var(--ink);
}

.section { padding: 92px 0; }

.section-head { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.section-head h2 { font-size: clamp(2rem, 4vw, 2.9rem); }
.section-intro { color: var(--ink-soft); font-size: 1.08rem; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .78rem;
  font-weight: 700;
  color: var(--terracotta);
  margin: 0 0 .8em;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .01em;
  padding: .7em 1.5em;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}
.btn-lg { padding: .9em 2em; font-size: 1rem; }
.btn-block { width: 100%; }
.btn-primary { background: var(--teal-bright); color: #fff; box-shadow: 0 8px 22px rgba(58,150,140,.30); }
.btn-primary:hover { background: var(--teal); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(46,110,106,.34); }
.btn-ghost { background: rgba(255,255,255,.85); color: var(--teal); border-color: rgba(255,255,255,.9); }
.btn-ghost:hover { background: #fff; transform: translateY(-2px); }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--header-h);
  background: var(--logo-bg);
  border-bottom: 1px solid transparent;
  transition: box-shadow .25s ease, border-color .25s ease;
}
.site-header.scrolled {
  box-shadow: 0 6px 24px rgba(52,67,63,.08);
  border-color: var(--line);
}
.header-inner { display: flex; align-items: center; height: 100%; }

.brand { display: flex; align-items: center; gap: 12px; margin-right: auto; }
.brand-logo { height: 58px; width: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; white-space: nowrap; }
.brand-name { font-family: var(--font-serif); font-size: 1.15rem; font-weight: 600; color: var(--teal); }
.brand-sub { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); }

.main-nav { display: flex; align-items: center; gap: 2px; }
.main-nav > a {
  padding: .5em .5em;
  font-weight: 600;
  font-size: .95rem;
  color: var(--ink);
  border-radius: 999px;
  transition: color .18s ease, background .18s ease;
}
.main-nav > a:hover { color: var(--teal); background: rgba(127,168,144,.16); }
.nav-cta { margin-left: 10px; white-space: nowrap; }
.nav-cta:hover { background: var(--teal) !important; color:#fff !important; }

/* Language switch */
.lang-switch {
  display: inline-flex;
  margin-left: 16px;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255,255,255,.5);
}
.lang-btn {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-sans);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .02em;
  padding: .4em .8em;
  border: none;
  background: transparent;
  color: var(--ink-soft);
  text-decoration: none;
  cursor: pointer;
  transition: background .18s ease, color .18s ease;
}
.lang-btn:hover { color: var(--teal); }
.lang-btn.is-active { background: var(--teal); color: #fff; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
}
.nav-toggle span { display: block; height: 2.5px; width: 24px; background: var(--ink); border-radius: 2px; transition: transform .25s ease, opacity .2s ease; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  overflow: hidden;
  color: #fff;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 72% 30%, rgba(242,199,92,.55), transparent 42%),
    linear-gradient(180deg, #8FB8C4 0%, #B7C9B4 42%, #E7C79A 74%, #D9A66C 100%);
}
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(36,84,81,.55) 0%, rgba(36,84,81,.15) 55%, transparent 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 640px; }
.hero-eyebrow {
  text-transform: uppercase; letter-spacing: .24em; font-weight: 700;
  font-size: .82rem; margin: 0 0 1rem; color: #fff;
  text-shadow: 0 1px 8px rgba(36,84,81,.4);
}
.hero-title {
  color: #fff;
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  font-weight: 600;
  margin-bottom: .35em;
  text-shadow: 0 3px 20px rgba(36,84,81,.35);
}
.hero-lead {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  max-width: 34em;
  margin: 0 0 2rem;
  color: #f4f8f5;
  text-shadow: 0 1px 10px rgba(36,84,81,.35);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-wave { position: absolute; bottom: -1px; left: 0; right: 0; line-height: 0; z-index: 1; }
.hero-wave svg { width: 100%; height: 90px; }
.hero-wave path { fill: var(--cream); }

/* ---------- Services ---------- */
.services { background: var(--cream); }
/* Flex (not auto-fit grid) so an odd count — 7 services — wraps as a balanced
   4 + 3 with the last row centered, instead of 5 + 2 with three empty slots. */
.service-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}
.service-card {
  flex: 0 1 calc(33.333% - 16px); /* 3 per row → six cards form a balanced 3 × 2 grid */
  background: var(--cream-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 26px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0; height: 6px;
  background: linear-gradient(90deg, var(--sage), var(--terracotta), var(--sun));
  opacity: .85;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--sage-soft); }
.service-icon {
  width: 66px; height: 66px;
  margin: 0 auto 18px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 25%, #fff, var(--sand));
  color: var(--teal);
}
.service-icon svg { width: 32px; height: 32px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 { font-size: 1.4rem; margin-bottom: .35em; }
.service-card p { color: var(--ink-soft); font-size: .98rem; margin: 0; }
/* Illustration header — bleeds to the card edges; bg matches the artwork's
   cream so the fitted image blends seamlessly. */
.service-thumb {
  margin: -34px -26px 24px;
  background: #FBF6EE; /* matches the normalized artwork background */
  aspect-ratio: 4 / 3;
  border-bottom: 1px solid var(--line);
}
.service-thumb img { width: 100%; height: 100%; object-fit: contain; display: block; }
@media (max-width: 480px) { .service-thumb { margin: -26px -22px 22px; } }
/* Service card columns: 3 → 2 → 1. Six cards divide evenly at every step
   (3×2, 2×3, 6×1), so rows always stay balanced. */
@media (max-width: 820px) { .service-card { flex-basis: calc(50% - 12px); } }
@media (max-width: 520px) { .service-card { flex-basis: 100%; } }

/* Telehealth: the delivery method, not a demographic — featured as a wide banner. */
.telehealth-banner {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 40px;
  padding: 26px 34px;
  border-radius: var(--radius);
  background: linear-gradient(120deg, var(--teal-dark), var(--teal-bright));
  color: #fff;
  box-shadow: var(--shadow);
}
.telehealth-banner .th-icon {
  flex: none;
  width: 62px; height: 62px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
}
.telehealth-banner .th-icon svg { width: 30px; height: 30px; fill: none; stroke: #fff; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.telehealth-banner h3 { color: #fff; font-size: 1.55rem; margin: 0 0 .15em; }
.telehealth-banner p { margin: 0; color: rgba(255,255,255,.9); font-size: 1rem; }
@media (max-width: 600px) {
  .telehealth-banner { flex-direction: column; text-align: center; padding: 28px 24px; }
}

/* ---------- Specialties ---------- */
.specialties { background: linear-gradient(180deg, var(--cream-soft), #F1EAD8); }
.spec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.spec-card {
  background: var(--cream-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: var(--shadow-sm);
  border-top: 5px solid var(--sage);
}
.spec-card:nth-child(2) { border-top-color: var(--teal-bright); }
.spec-card:nth-child(3) { border-top-color: var(--terracotta); }
.spec-card:nth-child(4) { border-top-color: var(--sun); }
.spec-card h3 { font-size: 1.35rem; margin-bottom: .8em; }
.spec-chips { list-style: none; display: flex; flex-wrap: wrap; gap: 9px; padding: 0; margin: 0; }
.spec-chips li {
  background: rgba(127,168,144,.16);
  border: 1px solid rgba(127,168,144,.32);
  color: var(--ink);
  font-size: .86rem;
  font-weight: 600;
  padding: .38em .95em;
  border-radius: 999px;
}
.spec-footnote {
  text-align: center;
  margin: 44px 0 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--teal);
}

/* ---------- Commitment / About ---------- */
.commitment { background: linear-gradient(180deg, var(--cream-soft), #F1EAD8); }
.commitment-inner {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 60px;
  align-items: center;
}
.commitment-art {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: linear-gradient(180deg, #CDE3E0, #9FC6BC);
  aspect-ratio: 4 / 3.4;
  display: grid; place-items: end center;
}
.commitment-art svg { width: 100%; height: 100%; }
.commitment-text h2 { font-size: clamp(2rem, 4vw, 2.9rem); }
.commitment-list { list-style: none; padding: 0; margin: 1.5em 0; }
.commitment-list li {
  position: relative;
  padding-left: 2em;
  margin-bottom: .85em;
  color: var(--ink-soft);
}
.commitment-list li::before {
  content: "";
  position: absolute; left: 0; top: .55em;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--sun);
  box-shadow: 0 0 0 4px rgba(242,199,92,.25);
}
.commitment-list strong { color: var(--ink); }
.quote {
  margin: 2em 0 0;
  padding: 1.4em 1.6em;
  border-left: 4px solid var(--terracotta);
  background: rgba(255,255,255,.6);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--ink);
}
.quote cite { display: block; margin-top: .6em; font-size: .95rem; font-style: normal; color: var(--terracotta); font-family: var(--font-sans); font-weight: 700; }

/* ---------- Counselor (solo practitioner) ---------- */
.counselor { background: var(--teal); color: #fff; }
.counselor .eyebrow { color: var(--sun); }
.counselor .section-head h2 { color: #fff; }
.counselor-inner {
  display: grid;
  grid-template-columns: minmax(240px, 340px) 1fr;
  gap: 56px;
  align-items: center;
  max-width: 940px;
  margin: 0 auto;
}
.counselor-media { display: flex; justify-content: center; }
.counselor-avatar,
.counselor-media img {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 1 / 1;
  border-radius: 24px;
  object-fit: cover;
  border: 4px solid rgba(255,255,255,.7);
  box-shadow: 0 18px 40px rgba(36,84,81,.35);
}
.counselor-avatar {
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--sage), var(--terracotta));
  font-family: var(--font-serif);
  font-size: 4.5rem;
  font-weight: 600;
  color: #fff;
}
.counselor-avatar::after { content: attr(data-initials); }
.counselor-name { color: #fff; font-size: clamp(1.8rem, 3.4vw, 2.5rem); margin-bottom: .1em; }
.counselor-cred { color: var(--sun); font-family: var(--font-sans); font-size: 1.1rem; font-weight: 700; }
.counselor-role { color: var(--sun); font-weight: 700; font-size: .82rem; text-transform: uppercase; letter-spacing: .12em; margin: 0 0 1.2em; }
.counselor-text > p { color: rgba(255,255,255,.88); margin: 0 0 1em; }
.counselor-text em { color: rgba(255,255,255,.62); font-style: italic; }
.counselor-label { text-transform: uppercase; letter-spacing: .1em; font-size: .78rem; font-weight: 700; color: #fff; margin: 1.4em 0 .7em !important; }
.specialty-chips { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; padding: 0; margin: 0 0 1.4em; }
.specialty-chips li {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  color: #fff;
  font-size: .86rem;
  font-weight: 600;
  padding: .4em 1em;
  border-radius: 999px;
}
.counselor-lang { font-size: .95rem; color: rgba(255,255,255,.9) !important; margin-bottom: 1.6em !important; }
.counselor-lang strong { color: var(--sun); }

/* ---------- Resources ---------- */
.resources { background: var(--cream); }
.resource-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.resource-card {
  display: block;
  background: var(--cream-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.resource-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--sage-soft); }
.resource-tag {
  display: inline-block;
  font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em;
  color: var(--teal);
  background: rgba(127,168,144,.18);
  padding: .35em .9em; border-radius: 999px;
  margin-bottom: 1em;
}
.resource-card h3 { font-size: 1.35rem; }
.resource-card p { color: var(--ink-soft); margin: 0; font-size: .98rem; }
.crisis-note {
  text-align: center;
  margin: 40px auto 0;
  max-width: 620px;
  padding: 1em 1.4em;
  background: rgba(158,59,51,.08);
  border: 1px solid rgba(158,59,51,.2);
  border-radius: var(--radius-sm);
  color: var(--crab);
  font-size: .96rem;
}

/* ---------- Testimonials ---------- */
.testimonials { background: linear-gradient(180deg, #F1EAD8, var(--cream-soft)); }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 26px;
}
.testimonial {
  margin: 0;
  background: #fff;
  border-radius: var(--radius);
  padding: 34px 30px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.testimonial::before {
  content: "\201C";
  font-family: var(--font-serif);
  font-size: 4.5rem;
  line-height: 1;
  color: var(--sage-soft);
  position: absolute; top: 10px; left: 20px;
}
.testimonial blockquote {
  margin: 20px 0 1em;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--ink);
  position: relative; z-index: 1;
}
.testimonial figcaption { color: var(--terracotta); font-weight: 700; font-size: .9rem; }

/* ---------- Fees & Insurance ---------- */
.fees { background: linear-gradient(180deg, #F1EAD8, var(--cream-soft)); }
.fees-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  align-items: stretch;
}
.fees-card {
  background: var(--cream-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.fees-card h3 { font-size: 1.45rem; margin-bottom: .3em; }
.fees-card p { color: var(--ink-soft); margin: 0 0 1em; }
.fees-card p:last-child { margin-bottom: 0; }
.fees-card em { color: var(--ink-soft); opacity: .7; font-style: italic; }
.fees-price { font-family: var(--font-serif); font-size: 2.4rem; font-weight: 600; color: var(--teal); margin: 0 0 .3em !important; }
.fees-price em { font-size: 1.4rem; opacity: .6; }
.fees-note-lead { font-weight: 700; color: var(--terracotta) !important; text-transform: uppercase; letter-spacing: .06em; font-size: .82rem; }
.fees-lines { margin: .2em 0 1.4em; padding: 0; }
.fees-lines > div {
  display: flex; align-items: baseline; justify-content: space-between; gap: 1em;
  padding: .7em 0;
  border-bottom: 1px solid rgba(255,255,255,.22);
}
.fees-lines > div:first-child { border-top: 1px solid rgba(255,255,255,.22); }
.fees-lines dt { font-weight: 600; }
.fees-lines dt span { font-weight: 400; opacity: .8; font-size: .88em; }
.fees-lines dd { margin: 0; font-family: var(--font-serif); font-size: 1.55rem; font-weight: 600; color: var(--sun); white-space: nowrap; }
.fees-plans { list-style: none; padding: 0; margin: .2em 0 1.1em; display: flex; flex-direction: column; gap: .5em; }
.fees-plans li { position: relative; padding-left: 1.6em; color: var(--ink-soft); font-size: .96rem; }
.fees-plans li::before {
  content: ""; position: absolute; left: 0; top: .5em;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--sage); box-shadow: 0 0 0 3px rgba(127,168,144,.22);
}
.fees-fine { font-size: .86rem; color: var(--ink-soft); margin: 0 !important; }
.fees-fine strong { color: var(--ink); }
.fees-card--highlight {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
}
.fees-card--highlight h3 { color: #fff; }
.fees-card--highlight p { color: rgba(255,255,255,.9); }
.fees-card--highlight .fees-price { color: var(--sun); }
.fees-card--highlight .btn { margin-top: auto; background: #fff; color: var(--teal); }
.fees-card--highlight .btn:hover { background: var(--sun); color: var(--teal-dark); }
.fees-gfe {
  max-width: 760px;
  margin: 36px auto 0;
  text-align: center;
  font-size: .92rem;
  color: var(--ink-soft);
  background: rgba(127,168,144,.12);
  border: 1px solid rgba(127,168,144,.28);
  border-radius: var(--radius-sm);
  padding: 1em 1.4em;
}
.fees-gfe strong { color: var(--ink); }

/* ---------- FAQ ---------- */
.faq { background: var(--cream); }
.container-narrow { max-width: 820px; }
.faq-list { display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: var(--cream-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 4px 24px;
  box-shadow: var(--shadow-sm);
  transition: border-color .2s ease;
}
.faq-item[open] { border-color: var(--sage-soft); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ink);
  padding: 18px 32px 18px 0;
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-sans);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--teal);
  transition: transform .25s ease;
}
.faq-item[open] summary::after { content: "\2013"; }
.faq-item summary:focus-visible { outline: 2px solid var(--sage); outline-offset: 4px; border-radius: 4px; }
.faq-answer { padding: 0 0 20px; }
.faq-answer p { margin: 0; color: var(--ink-soft); }
.faq-answer em { color: var(--ink-soft); opacity: .7; font-style: italic; }
.faq-answer a { color: var(--teal); font-weight: 600; }
/* Show-more: extra questions collapse behind a toggle (no-JS shows them all). */
.faq-more { display: flex; flex-direction: column; gap: 14px; }
.faq-more.collapsed { display: none; }
.faq-toggle-wrap { text-align: center; margin-top: 26px; }
.faq-toggle {
  display: none; /* revealed by JS; without JS every question stays visible */
  align-items: center;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: .95rem;
  color: var(--teal);
  background: transparent;
  border: 1.5px solid var(--sage-soft);
  padding: .7em 1.6em;
  border-radius: 999px;
  cursor: pointer;
  transition: background .18s ease, border-color .18s ease;
}
.faq-toggle:hover { background: rgba(127,168,144,.14); border-color: var(--sage); }
.faq-toggle:focus-visible { outline: 2px solid var(--sage); outline-offset: 3px; }
.faq-toggle::after {
  content: "";
  width: .48em; height: .48em;
  margin-left: .6em;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform .2s ease;
}
.faq-toggle[aria-expanded="true"]::after { transform: translateY(2px) rotate(-135deg); }
.faq-bullets { margin: .6em 0 0; padding-left: 1.3em; color: var(--ink-soft); columns: 2; column-gap: 2em; }
.faq-bullets li { margin-bottom: .3em; }
@media (max-width: 520px) { .faq-bullets { columns: 1; } }

/* ---------- Contact ---------- */
.contact { background: linear-gradient(180deg, #F1EAD8, var(--cream-soft)); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 56px;
  align-items: start;
}
.contact-info h2 { font-size: clamp(2rem, 4vw, 2.9rem); }
.contact-info > p { color: var(--ink-soft); font-size: 1.06rem; }
.contact-list { list-style: none; padding: 0; margin: 2em 0 0; }
.contact-list li {
  display: flex; flex-direction: column;
  padding: 1em 0;
  border-top: 1px solid var(--line);
}
.contact-list li:last-child { border-bottom: 1px solid var(--line); }
.contact-label { font-size: .74rem; text-transform: uppercase; letter-spacing: .14em; color: var(--terracotta); font-weight: 700; margin-bottom: .2em; }
.contact-list a { font-size: 1.2rem; font-weight: 600; color: var(--teal); }
.contact-list a:hover { color: var(--teal-dark); }

.contact-form {
  background: var(--cream-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
}
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; font-size: .92rem; margin-bottom: .45em; color: var(--ink); }
.optional { color: var(--ink-soft); font-weight: 400; }
.field input, .field select, .field textarea {
  width: 100%;
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--ink);
  padding: .8em 1em;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.field select { appearance: none; -webkit-appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%235B6B66' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1em center; padding-right: 2.6em; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--sage);
  box-shadow: 0 0 0 4px rgba(127,168,144,.2);
}
.field textarea { resize: vertical; }
.form-note { margin: 1em 0 0; font-size: .95rem; font-weight: 600; min-height: 1.2em; }
.form-note.success { color: var(--teal); }
.form-note.error { color: var(--crab); }
.form-privacy { margin: 1em 0 0; font-size: .82rem; line-height: 1.5; color: var(--ink-soft); }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }

.contact-map {
  margin: 56px 0 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  line-height: 0;
}
.contact-map iframe { width: 100%; height: 380px; border: 0; display: block; filter: saturate(.92); }
@media (max-width: 600px) { .contact-map iframe { height: 300px; } }

/* ---------- Footer ---------- */
.site-footer { background: var(--teal-dark); color: rgba(255,255,255,.82); padding-top: 64px; }
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-logo { height: 66px; width: auto; background: rgba(255,255,255,.94); padding: 8px 12px; border-radius: 12px; }
.footer-tagline { font-family: var(--font-serif); font-style: italic; font-size: 1.15rem; color: #fff; margin: 16px 0 .3em; }
.footer-phone { font-weight: 700; color: var(--sun); margin: 0; }
.footer-addr { margin: .5em 0 0; font-size: .9rem; color: rgba(255,255,255,.72); font-style: normal; }
.footer-nav { display: flex; flex-direction: column; gap: .6em; }
.footer-nav h4, .footer-social h4 { color: #fff; font-size: 1.05rem; margin: 0 0 .4em; text-transform: uppercase; letter-spacing: .1em; font-family: var(--font-sans); font-weight: 700; }
.footer-nav a { color: rgba(255,255,255,.78); font-size: .96rem; transition: color .18s ease; }
.footer-nav a:hover { color: var(--sun); }
.social-icons { display: flex; gap: 12px; }
.social-icons a {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  transition: background .2s ease, transform .2s ease;
}
.social-icons a:hover { background: var(--sun); transform: translateY(-3px); }
.social-icons svg { width: 20px; height: 20px; fill: #fff; }
.social-icons a:hover svg { fill: var(--teal-dark); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 22px 0; }
.footer-bottom p { margin: 0; font-size: .88rem; text-align: center; color: rgba(255,255,255,.6); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .commitment-inner, .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .counselor-inner { grid-template-columns: 1fr; gap: 36px; text-align: center; }
  .counselor-media { order: -1; }
  .specialty-chips { justify-content: center; }
  .commitment-media { max-width: 460px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

/* Collapse the nav into the hamburger before it can crowd the brand. The header
   sits in the standard container (~1112px usable) and the (wider) Spanish nav
   needs the container at full width, so collapse below 1160px viewport. */
@media (max-width: 1160px) {
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed;
    top: var(--header-h); left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    background: var(--logo-bg);
    padding: 16px 20px 24px;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 30px rgba(52,67,63,.12);
    transform: translateY(-120%);
    transition: transform .3s ease;
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
  }
  .main-nav.open { transform: translateY(0); }
  .main-nav > a { padding: .85em 1em; font-size: 1.05rem; }
  .nav-cta { margin: 8px 0 0; text-align: center; }
}

@media (max-width: 760px) {
  .brand-sub { display: none; }
  .section { padding: 68px 0; }
}

@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
  .hero { min-height: 88vh; }
  .service-card, .contact-form { padding: 26px 22px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation: none !important; }
}
