/* ==========================================================================
   Kori's Behavioral Center — Design System
   Brand: teal #1CA2C0 · sunshine #FDFB75 · ink #16333D (from logo)
   Type:  Fredoka (display) + Nunito (body)
   ========================================================================== */

:root {
  /* Brand */
  --teal:        #1CA2C0;
  --teal-dark:   #0E7A94;   /* AA on white for UI text/buttons */
  --teal-deeper: #0B5B6E;
  --ink:         #16333D;
  --ink-soft:    #3D5A66;
  --sun:         #FDFB75;
  --sun-deep:    #F7E94A;
  --coral:       #FF8A5C;
  --coral-deep:  #E86A3A;
  --cream:       #FFF8EC;
  --cream-2:     #FFF3DB;
  --white:       #FFFFFF;
  --mint:        #E3F6FA;

  /* System */
  --radius-sm: 12px;
  --radius:    20px;
  --radius-lg: 32px;
  --border:    2.5px solid var(--ink);
  --shadow-sticker: 6px 6px 0 rgba(22, 51, 61, 0.12);
  --shadow-sticker-teal: 8px 8px 0 rgba(28, 162, 192, 0.25);
  --shadow-soft: 0 18px 40px -18px rgba(22, 51, 61, 0.28);

  --font-display: 'Fredoka', 'Nunito', system-ui, sans-serif;
  --font-body: 'Nunito', system-ui, -apple-system, sans-serif;

  --container: 1160px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: var(--teal-dark); }
button { font: inherit; cursor: pointer; }
input, select, textarea { font: inherit; }
:focus-visible { outline: 3px solid var(--teal); outline-offset: 3px; border-radius: 4px; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--ink); color: #fff; padding: .75rem 1.25rem; border-radius: 0 0 12px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Type ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.12; font-weight: 600; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.4rem, 5.4vw, 3.9rem); }
h2 { font-size: clamp(1.9rem, 3.8vw, 2.75rem); }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.6rem); }
h4 { font-size: 1.15rem; }
p  { max-width: 68ch; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-display); font-weight: 600; font-size: .95rem;
  letter-spacing: .12em; text-transform: uppercase; color: var(--teal-dark);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: ''; width: 0; height: 0;
  border-top: 7px solid transparent; border-bottom: 7px solid transparent;
  border-left: 11px solid var(--coral);
}

/* squiggle-underlined key word in headings */
.squiggle {
  position: relative; white-space: nowrap;
  background: linear-gradient(180deg, transparent 62%, var(--sun) 62%, var(--sun) 94%, transparent 94%);
  padding: 0 .12em;
  border-radius: 4px;
}

.lead { font-size: clamp(1.1rem, 1.9vw, 1.3rem); color: var(--ink-soft); font-weight: 600; }

/* ---------- Layout ---------- */
.container { max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(4rem, 9vw, 7rem); position: relative; }
.section--tight { padding-block: clamp(2.5rem, 6vw, 4rem); }
.section--white { background: var(--white); }
.section--mint  { background: var(--mint); }
.section--ink   { background: var(--ink); color: var(--cream); }
.section--ink h2, .section--ink h3 { color: #fff; }

.section-head { max-width: 720px; margin-bottom: clamp(2.25rem, 5vw, 3.5rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.section-head p { margin-top: .9rem; }
.section-head--center p { margin-inline: auto; }

.grid { display: grid; gap: clamp(1.25rem, 3vw, 2rem); }
@media (min-width: 700px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
  .grid-3-desk { grid-template-columns: repeat(3, 1fr); }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  white-space: nowrap;
  font-family: var(--font-display); font-weight: 600; font-size: 1.02rem;
  padding: .95rem 1.9rem; border-radius: 999px; text-decoration: none;
  border: var(--border); color: var(--ink);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  min-height: 48px;
}
.btn:hover { transform: translate(-2px, -2px); }
.btn:active { transform: translate(0, 0); box-shadow: none; }
.btn--primary { background: var(--teal-dark); border-color: var(--teal-dark); color: #fff; box-shadow: var(--shadow-sticker-teal); }
.btn--primary:hover { background: var(--teal-deeper); box-shadow: 10px 10px 0 rgba(28,162,192,.3); }
.btn--sun { background: var(--sun); box-shadow: var(--shadow-sticker); }
.btn--sun:hover { background: var(--sun-deep); box-shadow: 8px 8px 0 rgba(22,51,61,.16); }
.btn--ghost { background: transparent; }
.btn--ghost:hover { background: rgba(22,51,61,.05); }
.btn--light { background: #fff; box-shadow: var(--shadow-sticker); }
.btn svg { flex: none; }

.btn-row { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 248, 236, .92);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid transparent;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled { border-bottom-color: rgba(22,51,61,.08); box-shadow: 0 10px 30px -18px rgba(22,51,61,.25); }
.nav-bar {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding-block: .8rem;
}
.brand { display: inline-flex; align-items: center; gap: .8rem; text-decoration: none; color: var(--ink); flex: none; }
.brand-name { white-space: nowrap; }
.brand img { width: 66px; height: 66px; border-radius: 50%; }
.brand-name { font-family: var(--font-display); font-weight: 600; font-size: 1.42rem; line-height: 1.02; }
.brand-name small { display: block; font-family: var(--font-body); font-weight: 800; font-size: .74rem; letter-spacing: .2em; text-transform: uppercase; color: var(--teal-dark); }

.nav-links { display: flex; align-items: center; gap: .35rem; list-style: none; padding: 0; }
.nav-links a {
  display: block; padding: .55rem 1rem; border-radius: 999px;
  font-weight: 800; font-size: .98rem; text-decoration: none; color: var(--ink);
  transition: background .15s ease; white-space: nowrap;
}
.nav-links a:hover { background: rgba(28,162,192,.12); }
.nav-links a[aria-current="page"] { background: var(--sun); box-shadow: inset 0 0 0 2px var(--ink); }
.nav-cta { display: flex; align-items: center; gap: .75rem; }
.nav-phone {
  display: inline-flex; align-items: center; gap: .5rem;
  font-weight: 800; text-decoration: none; color: var(--ink); font-size: .98rem;
  padding: .55rem .9rem; border-radius: 999px; white-space: nowrap;
}
.nav-phone:hover { background: rgba(28,162,192,.12); }
.nav-cta .btn { padding: .6rem 1.3rem; min-height: 44px; }

.nav-toggle {
  display: none; background: none; border: var(--border); border-radius: 12px;
  width: 48px; height: 48px; align-items: center; justify-content: center;
}
.nav-toggle svg { pointer-events: none; }

@media (max-width: 1219px) {
  .nav-phone span { display: none; }
}
@media (max-width: 989px) {
  .nav-toggle { display: inline-flex; }
  .nav-cta .btn { display: none; }
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: .25rem;
    background: var(--cream); border-bottom: var(--border);
    padding: 1rem var(--gutter) 1.5rem;
    display: none;
  }
  .nav-links.is-open { display: flex; }
  .nav-links a { padding: .9rem 1.1rem; font-size: 1.1rem; }
}

/* ---------- Hero (home) ---------- */
.hero { position: relative; overflow: hidden; padding-block: clamp(3rem, 7vw, 6rem) clamp(4.5rem, 9vw, 7.5rem); }
.hero-grid { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 960px) { .hero-grid { grid-template-columns: 1.05fr .95fr; } }

.hero h1 { margin-bottom: 1.2rem; }
.hero .lead { margin-bottom: 2rem; }

.hero-badges { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 2.2rem; padding: 0; list-style: none; }
.hero-badges li {
  display: inline-flex; align-items: center; gap: .45rem;
  background: #fff; border: 2px solid rgba(22,51,61,.14); border-radius: 999px;
  padding: .45rem 1rem; font-weight: 800; font-size: .9rem;
}
.hero-badges svg { color: var(--teal-dark); }

.hero-art { position: relative; justify-self: center; width: min(100%, 520px); }
.hero-photo {
  width: 100%; aspect-ratio: 4 / 4.6; object-fit: cover;
  border-radius: 58% 42% 55% 45% / 52% 48% 52% 48%;
  border: 4px solid var(--ink);
  box-shadow: 14px 14px 0 var(--teal);
}
.hero-card {
  position: absolute; left: -1rem; bottom: 1.5rem;
  background: #fff; border: var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow-sticker);
  padding: .9rem 1.2rem; display: flex; gap: .8rem; align-items: center;
  max-width: 300px;
}
.hero-card strong { font-family: var(--font-display); font-weight: 600; display: block; }
.hero-card span { font-size: .85rem; color: var(--ink-soft); font-weight: 700; }
.hero-card .dot-icon { flex: none; width: 46px; height: 46px; border-radius: 14px; background: var(--sun); border: var(--border); display: grid; place-items: center; }

.hero-spin {
  position: absolute; top: -2.4rem; right: -2rem; width: 110px; height: 110px;
  color: var(--coral);
  animation: spin 24s linear infinite;
}
.float-tri { position: absolute; color: var(--teal); }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.floaty { animation: floaty 5s ease-in-out infinite; }
@media (prefers-reduced-motion: reduce) {
  .hero-spin, .floaty { animation: none; }
  html { scroll-behavior: auto; }
}

/* decorative background blobs */
.blob-bg { position: absolute; z-index: -1; pointer-events: none; }

/* ---------- Marquee (insurance) ---------- */
.marquee-band { background: var(--ink); padding-block: 1.1rem; overflow: hidden; }
.marquee { display: flex; gap: 2.75rem; width: max-content; animation: marquee 36s linear infinite; }
.marquee span {
  display: inline-flex; align-items: center; gap: .8rem;
  color: var(--cream); font-family: var(--font-display); font-weight: 500; font-size: 1.05rem;
  white-space: nowrap;
}
.marquee span::before { content: ''; width: 9px; height: 9px; border-radius: 50%; background: var(--sun); }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee { animation: none; flex-wrap: wrap; width: auto; } }

/* ---------- Cards ---------- */
.card {
  background: #fff; border: var(--border); border-radius: var(--radius);
  padding: 1.8rem 1.6rem; box-shadow: var(--shadow-sticker);
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: 8px 12px 0 rgba(28,162,192,.22); }
.card h3, .card h4 { margin-bottom: .55rem; }
.card p { font-size: .98rem; color: var(--ink-soft); }

.card-icon {
  width: 62px; height: 62px; border-radius: 18px; margin-bottom: 1.2rem;
  display: grid; place-items: center; border: var(--border);
}
.card-icon svg { width: 30px; height: 30px; }
.icon-sun   { background: var(--sun); }
.icon-mint  { background: var(--mint); }
.icon-coral { background: #FFE0D1; }
.icon-teal  { background: var(--teal); color: #fff; }

.card-link { font-weight: 800; text-decoration: none; display: inline-flex; align-items: center; gap: .4rem; margin-top: 1rem; color: var(--teal-dark); }
.card-link:hover { gap: .65rem; }
.card-link { transition: gap .15s ease; }

/* photo program cards */
.program-card { overflow: hidden; padding: 0; display: flex; flex-direction: column; }
.program-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; border-bottom: var(--border); }
.program-card .program-body { padding: 1.6rem 1.5rem 1.8rem; display: flex; flex-direction: column; flex: 1; }
.program-card .tag {
  align-self: flex-start; background: var(--sun); border: 2px solid var(--ink); border-radius: 999px;
  font-weight: 800; font-size: .78rem; letter-spacing: .08em; text-transform: uppercase;
  padding: .25rem .8rem; margin-bottom: .9rem;
}

/* ---------- Split feature ---------- */
.split { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 960px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split--rev > .split-media { order: 2; }
}
.split-media { position: relative; justify-self: center; width: min(100%, 540px); }
.split-photo {
  width: 100%; aspect-ratio: 4/3.4; object-fit: cover;
  border-radius: var(--radius-lg); border: 4px solid var(--ink);
}
.split-photo--sun { box-shadow: 12px 12px 0 var(--sun-deep); }
.split-photo--teal { box-shadow: 12px 12px 0 var(--teal); }
.split-photo--coral { box-shadow: 12px 12px 0 var(--coral); }
.center-photo .split-photo { aspect-ratio: 16/9; }
.center-photo figcaption { margin-top: 1.25rem; font-size: .9rem; line-height: 1.5; }
.split-content h2 { margin-bottom: 1.1rem; }
.split-content p + p { margin-top: .9rem; }

.mini-badge {
  position: absolute; right: -.8rem; top: -1.4rem;
  background: var(--sun); border: var(--border); border-radius: 999px;
  font-family: var(--font-display); font-weight: 600; font-size: .92rem;
  padding: .55rem 1.1rem; box-shadow: var(--shadow-sticker);
  transform: rotate(4deg);
}

/* checklist */
.check-list { list-style: none; padding: 0; margin-top: 1.4rem; display: grid; gap: .8rem; }
.check-list li { display: flex; gap: .8rem; align-items: flex-start; font-weight: 700; }
.check-list .tick {
  flex: none; width: 26px; height: 26px; margin-top: .1rem;
  background: var(--sun); border: 2px solid var(--ink); border-radius: 8px;
  display: grid; place-items: center;
}
.check-list .tick svg { width: 14px; height: 14px; }

/* two-col skills list w/ triangle bullets */
.tri-list { list-style: none; padding: 0; display: grid; gap: .7rem 2rem; }
@media (min-width: 640px) { .tri-list { grid-template-columns: 1fr 1fr; } }
.tri-list li { display: flex; align-items: flex-start; gap: .7rem; font-weight: 700; }
.tri-list li::before {
  content: ''; flex: none; margin-top: .48em;
  width: 0; height: 0;
  border-top: 6px solid transparent; border-bottom: 6px solid transparent;
  border-left: 10px solid var(--teal);
}

/* ---------- Stats band ---------- */
.stats { display: grid; gap: 1.25rem; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 900px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat {
  background: #fff; border: var(--border); border-radius: var(--radius);
  padding: 1.6rem 1.2rem; text-align: center; box-shadow: var(--shadow-sticker);
}
.stat strong { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.9rem, 4vw, 2.6rem); display: block; color: var(--teal-dark); }
.stat span { font-weight: 800; font-size: .92rem; color: var(--ink-soft); }

/* ---------- Quote band ---------- */
.quote-band { text-align: center; }
.quote-band blockquote {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(1.4rem, 3vw, 2.1rem); line-height: 1.35;
  max-width: 880px; margin: 0 auto 1.5rem;
}
.quote-band blockquote em { color: var(--sun); font-style: normal; }
.quote-band cite { font-style: normal; font-weight: 800; color: rgba(255,248,236,.75); }

/* ---------- FAQ ---------- */
.faq { max-width: 780px; margin-inline: auto; display: grid; gap: 1rem; }
.faq-item { background: #fff; border: var(--border); border-radius: var(--radius-sm); overflow: hidden; box-shadow: var(--shadow-sticker); }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  background: none; border: none; text-align: left;
  font-family: var(--font-display); font-weight: 600; font-size: 1.08rem;
  padding: 1.15rem 1.4rem; color: var(--ink);
}
.faq-q .chev { flex: none; width: 34px; height: 34px; border: 2px solid var(--ink); border-radius: 50%; display: grid; place-items: center; background: var(--sun); transition: transform .25s ease; }
.faq-item[data-open="true"] .chev { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a-inner { padding: 0 1.4rem 1.3rem; color: var(--ink-soft); font-weight: 600; }
.faq-a-inner ul { padding-left: 1.2rem; }
.faq-a-inner li + li { margin-top: .4rem; }

/* ---------- Forms ---------- */
.form-card {
  background: #fff; border: var(--border); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sticker-teal); padding: clamp(1.6rem, 4vw, 2.6rem);
}
.form-grid { display: grid; gap: 1.1rem; }
@media (min-width: 640px) { .form-grid--2 { grid-template-columns: 1fr 1fr; } .form-grid--2 .span-2 { grid-column: span 2; } }
.field label { display: block; font-weight: 800; font-size: .92rem; margin-bottom: .4rem; }
.field label .req { color: var(--coral-deep); }
.field input, .field select, .field textarea {
  width: 100%; padding: .85rem 1rem; border-radius: 14px;
  border: 2px solid rgba(22,51,61,.25); background: var(--cream);
  font-weight: 600; color: var(--ink); min-height: 48px;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--teal-dark); box-shadow: 0 0 0 4px rgba(28,162,192,.2);
}
.field .hint { font-size: .85rem; color: var(--ink-soft); margin-top: .35rem; font-weight: 600; }
.form-success {
  display: none; margin-top: 1.1rem; padding: 1rem 1.2rem; border-radius: 14px;
  background: #E9F9EF; border: 2px solid #1B7F4B; color: #14603A; font-weight: 800;
}
.form-success.is-visible { display: block; }
.form-error {
  display: none; margin-top: 1.1rem; padding: 1rem 1.2rem; border-radius: 14px;
  background: #FDECEC; border: 2px solid #C0392B; color: #8E2A1F; font-weight: 800;
}
.form-error.is-visible { display: block; }
.form-error a { color: #8E2A1F; }
.btn[aria-busy="true"] { opacity: .7; pointer-events: none; }
/* honeypot */
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--teal); border-block: 3px solid var(--ink);
  position: relative; overflow: hidden;
}
.cta-inner { display: grid; gap: 2rem; align-items: center; position: relative; }
@media (min-width: 900px) { .cta-inner { grid-template-columns: 1.2fr .8fr; } }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.92); font-weight: 700; }
.cta-band .btn--sun { border-color: var(--ink); }
.cta-doodle { position: absolute; right: -40px; bottom: -60px; width: 240px; opacity: .2; color: #fff; pointer-events: none; }

/* ---------- Page hero (interior) ---------- */
.page-hero { position: relative; overflow: hidden; padding-block: clamp(3.5rem, 7vw, 5.5rem); background: var(--mint); border-bottom: 3px solid var(--ink); }
.page-hero h1 { margin-bottom: .9rem; }
.page-hero .lead { max-width: 640px; }
.page-hero .btn-row { margin-top: 1.8rem; }
.crumbs { list-style: none; display: flex; flex-wrap: wrap; gap: .4rem; padding: 0; margin-bottom: 1.2rem; font-size: .9rem; font-weight: 800; color: var(--ink-soft); }
.crumbs a { color: var(--teal-dark); text-decoration: none; }
.crumbs li + li::before { content: '›'; margin-right: .4rem; }

/* ---------- Detail rows (services) ---------- */
.detail-grid { display: grid; gap: 1.5rem; }
@media (min-width: 760px) { .detail-grid { grid-template-columns: 1fr 1fr; } }
.detail-card { display: flex; gap: 1.1rem; align-items: flex-start; background: #fff; border: var(--border); border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow-sticker); }
.detail-card .card-icon { width: 52px; height: 52px; margin: 0; border-radius: 14px; flex: none; }
.detail-card .card-icon svg { width: 24px; height: 24px; }
.detail-card h3 { font-size: 1.18rem; margin-bottom: .35rem; }
.detail-card p { font-size: .95rem; color: var(--ink-soft); }

/* ---------- Team ---------- */
.team-card { display: grid; gap: 2rem; background: #fff; border: var(--border); border-radius: var(--radius-lg); padding: clamp(1.6rem, 4vw, 2.8rem); box-shadow: var(--shadow-sticker-teal); }
@media (min-width: 860px) { .team-card { grid-template-columns: 280px 1fr; } }
.team-avatar {
  width: 100%; max-width: 280px; aspect-ratio: 1; border-radius: var(--radius-lg);
  background: var(--teal); border: var(--border);
  display: grid; place-items: center; position: relative; overflow: hidden;
}
.team-avatar span { font-family: var(--font-display); font-weight: 600; font-size: 4.5rem; color: #fff; }
.team-role {
  display: inline-block; background: var(--sun); border: 2px solid var(--ink); border-radius: 999px;
  font-weight: 800; font-size: .8rem; letter-spacing: .07em; text-transform: uppercase;
  padding: .3rem .9rem; margin-bottom: .8rem;
}
.team-card p + p { margin-top: .8rem; }
.team-card p { color: var(--ink-soft); font-weight: 600; }

/* ---------- Story (about) ---------- */
.story-flow { max-width: 720px; }
.story-flow p { margin-bottom: 1.15rem; font-weight: 600; color: var(--ink-soft); font-size: 1.05rem; }
.story-flow p strong { color: var(--ink); }
.story-flow .pull {
  font-family: var(--font-display); font-weight: 500; font-size: clamp(1.25rem, 2.4vw, 1.6rem);
  color: var(--ink); line-height: 1.4; border-left: 6px solid var(--teal);
  background: #fff; border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.2rem 1.5rem; margin: 1.8rem 0;
}

/* ---------- Careers ---------- */
.benefit-list { list-style: none; padding: 0; display: grid; gap: .6rem; margin-top: .6rem; }
.benefit-list li { display: flex; gap: .6rem; align-items: flex-start; font-weight: 700; font-size: .98rem; color: var(--ink-soft); }
.benefit-list li::before {
  content: ''; flex: none; margin-top: .5em; width: 0; height: 0;
  border-top: 5px solid transparent; border-bottom: 5px solid transparent; border-left: 9px solid var(--coral);
}
.job-card { background: #fff; border: var(--border); border-radius: var(--radius); box-shadow: var(--shadow-sticker); padding: clamp(1.5rem, 3.5vw, 2.2rem); }
.job-card + .job-card { margin-top: 1.6rem; }
.job-head { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 1.2rem; }
.job-head .tag { background: var(--mint); border: 2px solid var(--ink); border-radius: 999px; padding: .3rem .9rem; font-weight: 800; font-size: .8rem; text-transform: uppercase; letter-spacing: .06em; }
.job-cols { display: grid; gap: 1.6rem; }
@media (min-width: 820px) { .job-cols { grid-template-columns: 1fr 1fr; } }
.job-cols h4 { display: flex; align-items: center; gap: .5rem; margin-bottom: .7rem; }

/* ---------- Contact ---------- */
.contact-tiles { display: grid; gap: 1.25rem; }
@media (min-width: 640px) { .contact-tiles { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .contact-tiles { grid-template-columns: repeat(4, 1fr); } }
.contact-tile { text-align: center; padding: 2rem 1.4rem; }
.contact-tile .card-icon { margin-inline: auto; }
.contact-tile a { font-weight: 800; text-decoration: none; font-size: 1.05rem; word-break: break-word; }
.map-frame { border: var(--border); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sticker); }
.map-frame iframe { display: block; width: 100%; height: 420px; border: 0; }
.contact-location .map-frame iframe { height: 300px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgba(255,248,236,.85); border-top: 3px solid var(--ink); }
.footer-top { display: grid; gap: 2.5rem; padding-block: clamp(3rem, 6vw, 4.5rem); }
@media (min-width: 900px) { .footer-top { grid-template-columns: 1.4fr 1fr 1fr 1.3fr; } }
.footer-brand img { width: 64px; height: 64px; border-radius: 50%; margin-bottom: 1rem; }
.footer-brand p { font-weight: 600; font-size: .95rem; max-width: 34ch; }
.site-footer h4 { color: #fff; margin-bottom: 1rem; font-size: 1.05rem; }
.footer-links { list-style: none; padding: 0; display: grid; gap: .55rem; }
.footer-links a { color: rgba(255,248,236,.85); text-decoration: none; font-weight: 700; }
.footer-links a:hover { color: var(--sun); }
.footer-contact { list-style: none; padding: 0; display: grid; gap: .8rem; font-weight: 700; }
.footer-contact li { display: flex; gap: .7rem; align-items: flex-start; }
.footer-contact svg { flex: none; margin-top: .2rem; color: var(--sun); }
.footer-contact a { color: rgba(255,248,236,.9); text-decoration: none; }
.footer-contact a:hover { color: var(--sun); }
.footer-bottom { border-top: 1px solid rgba(255,248,236,.15); padding-block: 1.4rem; display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; font-size: .88rem; font-weight: 600; }
.footer-bottom a { color: rgba(255,248,236,.7); }

/* ---------- Wave divider ---------- */
.wave { display: block; width: 100%; height: 60px; margin-bottom: -2px; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ---------- How It Works timeline ---------- */
.steps { position: relative; display: grid; gap: 1.5rem; counter-reset: step; }
@media (min-width: 1024px) {
  .steps { grid-template-columns: repeat(5, 1fr); gap: 1.25rem; }
  .steps::before {
    content: ''; position: absolute; top: 31px; left: 8%; right: 8%;
    border-top: 3px dashed rgba(28, 162, 192, .5);
  }
}
.step { position: relative; background: #fff; border: var(--border); border-radius: var(--radius); padding: 1.4rem 1.2rem; box-shadow: var(--shadow-sticker); }
.step-num {
  width: 62px; height: 62px; border-radius: 50%; border: var(--border);
  background: var(--sun); display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 600; font-size: 1.5rem;
  margin: -2.9rem 0 1rem; position: relative; z-index: 1;
}
.step h3 { font-size: 1.1rem; margin-bottom: .4rem; }
.step p { font-size: .92rem; color: var(--ink-soft); }
@media (max-width: 1023px) {
  .step { display: grid; grid-template-columns: 62px 1fr; gap: 1.1rem; align-items: start; }
  .step-num { margin: 0; }
}

/* ---------- Testimonials ---------- */
.t-card { position: relative; display: flex; flex-direction: column; }
.t-card::before {
  content: '\201C'; position: absolute; top: -1.4rem; left: 1.2rem;
  font-family: var(--font-display); font-weight: 700; font-size: 4.4rem; line-height: 1;
  color: var(--teal); text-shadow: 2px 2px 0 var(--cream);
}
.stars { display: flex; gap: .25rem; margin-bottom: .9rem; color: #E9A800; }
.stars svg { width: 20px; height: 20px; }
.t-quote { font-weight: 600; color: var(--ink-soft); flex: 1; }
.t-parent { display: flex; align-items: center; gap: .8rem; margin-top: 1.2rem; }
.t-avatar {
  flex: none; width: 46px; height: 46px; border-radius: 50%;
  background: var(--mint); border: 2px solid var(--ink);
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 600; font-size: .95rem;
}
.t-parent strong { display: block; font-family: var(--font-display); font-weight: 600; font-size: .98rem; }
.t-parent span { font-size: .85rem; color: var(--ink-soft); font-weight: 700; }

/* ---------- Insurance concierge band ---------- */
.insure-card {
  background: #fff; border: var(--border); border-radius: var(--radius-lg);
  box-shadow: 10px 10px 0 var(--sun-deep); padding: clamp(1.8rem, 4.5vw, 3rem);
  display: grid; gap: 2rem; align-items: center;
}
@media (min-width: 960px) { .insure-card { grid-template-columns: 1.15fr .85fr; } }
.insure-plans { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.2rem; padding: 0; list-style: none; }
.insure-plans li {
  background: var(--mint); border: 2px solid rgba(22,51,61,.2); border-radius: 999px;
  font-weight: 800; font-size: .82rem; padding: .3rem .85rem;
}

/* ---------- Team placeholders ---------- */
.team-mini { text-align: center; }
.team-mini .ph-avatar {
  width: 120px; height: 120px; margin: 0 auto 1.1rem; border-radius: 50%;
  border: 3px dashed rgba(28, 162, 192, .65); background: var(--mint);
  display: grid; place-items: center; color: var(--teal-dark);
}
.team-mini .ph-avatar svg { width: 38px; height: 38px; }
.team-mini h3 { font-size: 1.15rem; }
.team-mini .team-role { margin: .5rem 0 .6rem; }

/* ---------- Sticky mobile call bar ---------- */
.mobile-cta-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 95;
  display: none; gap: .7rem;
  padding: .65rem .9rem calc(.65rem + env(safe-area-inset-bottom));
  background: rgba(255, 248, 236, .96); backdrop-filter: blur(10px);
  border-top: 2px solid rgba(22, 51, 61, .14);
  box-shadow: 0 -10px 30px -18px rgba(22, 51, 61, .3);
}
.mobile-cta-bar .btn { flex: 1; padding: .7rem 1rem; font-size: .98rem; box-shadow: none; }
@media (max-width: 989px) {
  .mobile-cta-bar { display: flex; }
  body { padding-bottom: 82px; }
}

/* ---------- Nav squeeze (long CTA + bigger brand) ---------- */
@media (min-width: 990px) and (max-width: 1220px) {
  .nav-links a { padding: .5rem .65rem; font-size: .92rem; }
  .brand-name { font-size: 1.25rem; }
  .nav-cta .btn { padding: .55rem 1rem; font-size: .92rem; }
}

/* ---------- Hero call button goes yellow on mobile ---------- */
@media (max-width: 989px) {
  .hero .btn--ghost {
    background: var(--sun); border-color: var(--ink);
    box-shadow: var(--shadow-sticker);
  }
  .hero .btn--ghost:hover { background: var(--sun-deep); }
}

/* ---------- Language chip ---------- */
.lang-chip {
  display: inline-flex; align-items: center; gap: .45rem;
  background: var(--sun); border: 2px solid var(--ink); border-radius: 999px;
  font-weight: 800; font-size: .9rem; padding: .45rem 1rem;
}

/* ---------- Utility ---------- */
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; } .mt-3 { margin-top: 3rem; }
.center { text-align: center; }
.note { font-size: .9rem; color: var(--ink-soft); font-weight: 600; }
