/* ============================================================
   Fresh Start Youth Developmental Services
   Core stylesheet — design system + components
   ------------------------------------------------------------
   Palette:  deep navy (trust) · warm gold (hope) · teal (support)
   Type:     Bricolage Grotesque (display) · Public Sans (body)
   Motif:    "sunrise horizon" arc — a nod to a fresh start
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* Brand color */
  --navy:        #12294A;
  --navy-900:    #0B1830;
  --navy-700:    #1d3d68;
  --gold:        #F4A62B;
  --gold-600:    #d98d12;
  --gold-soft:   #FCE4B6;
  --teal:        #2E93A3;
  --teal-700:    #217482;
  --teal-soft:   #D9ECEF;
  --sky:         #E8F1FA;

  /* Neutrals */
  --paper:       #F4F7FB;
  --white:       #FFFFFF;
  --ink:         #16233B;
  --muted:       #56677E;
  --line:        #DBE3EE;

  /* Type */
  --font-display: "Bricolage Grotesque", "Public Sans", system-ui, sans-serif;
  --font-body:    "Public Sans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  --step--1: 0.875rem;
  --step-0:  1.0625rem;
  --step-1:  1.25rem;
  --step-2:  clamp(1.4rem, 1.2rem + 0.9vw, 1.85rem);
  --step-3:  clamp(1.7rem, 1.35rem + 1.6vw, 2.5rem);
  --step-4:  clamp(2.1rem, 1.55rem + 2.7vw, 3.4rem);
  --step-5:  clamp(2.5rem, 1.7rem + 3.9vw, 4.2rem);

  /* Space + shape */
  --container: 1180px;
  --measure: 66ch;
  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 22px;
  --shadow-1: 0 1px 2px rgba(16,32,60,.06), 0 6px 20px -12px rgba(16,32,60,.28);
  --shadow-2: 0 24px 60px -28px rgba(11,24,48,.45);
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, picture { max-width: 100%; display: block; }
a { color: var(--teal-700); text-underline-offset: 3px; }
a:hover { color: var(--navy); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1.12;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0 0 .5em;
  text-wrap: balance;
}
h1 { font-size: var(--step-5); }
h2 { font-size: var(--step-4); }
h3 { font-size: var(--step-2); }
p { margin: 0 0 1rem; max-width: var(--measure); }

/* Visible focus everywhere */
:where(a, button, input, textarea, select, [tabindex]):focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
  border-radius: 4px;
}

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--navy); color: #fff; padding: .7rem 1.1rem;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm); transition: top .2s var(--ease);
}
.skip-link:focus { top: 0; color: #fff; }

/* ---------- Layout ---------- */
.container { width: min(100% - 2.5rem, var(--container)); margin-inline: auto; }
.section { padding: clamp(3.25rem, 2rem + 5vw, 6rem) 0; }
.section--tight { padding: clamp(2.25rem, 1.5rem + 3vw, 4rem) 0; }
.section--paper { background: var(--paper); }
.section--sky { background: linear-gradient(180deg, var(--sky), #fff); }
.section--navy { background: var(--navy); color: #dfe8f4; }
.section--navy h2, .section--navy h3 { color: #fff; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-body); font-weight: 700; font-size: var(--step--1);
  color: var(--teal-700); margin: 0 0 .75rem;
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px; background: var(--gold); border-radius: 2px;
}
.section--navy .eyebrow { color: var(--gold); }
.lead { font-size: var(--step-1); color: var(--muted); }
.section--navy .lead { color: #c6d5e8; }
.center { text-align: center; }
.center p { margin-inline: auto; }
.stack > * + * { margin-top: 1rem; }

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--gold); --fg: var(--navy-900); --bd: transparent;
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--font-body); font-weight: 700; font-size: 1rem;
  padding: .85rem 1.5rem; border-radius: 999px; border: 2px solid var(--bd);
  background: var(--bg); color: var(--fg); text-decoration: none; cursor: pointer;
  transition: transform .18s var(--ease), background .18s var(--ease), box-shadow .18s var(--ease);
  box-shadow: var(--shadow-1);
}
.btn:hover { transform: translateY(-2px); color: var(--fg); }
.btn:active { transform: translateY(0); }
.btn--gold:hover { background: var(--gold-600); }
.btn--navy { --bg: var(--navy); --fg: #fff; }
.btn--navy:hover { --bg: var(--navy-700); }
.btn--ghost { --bg: transparent; --fg: var(--navy); --bd: var(--line); box-shadow: none; }
.btn--ghost:hover { --bg: var(--sky); }
.btn--onnavy { --bg: transparent; --fg: #fff; --bd: rgba(255,255,255,.4); box-shadow: none; }
.btn--onnavy:hover { --bg: rgba(255,255,255,.12); }
.btn--wide { width: 100%; }
.btn[disabled], .btn.is-soon { opacity: .9; cursor: default; }

.btn-row { display: flex; flex-wrap: wrap; gap: .85rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.9);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; gap: 1.5rem; min-height: 74px; }
.brand { display: flex; align-items: center; gap: .7rem; text-decoration: none; margin-right: auto; }
.brand__mark { flex: none; width: 42px; height: 42px; }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name { font-family: var(--font-display); font-weight: 700; color: var(--navy); font-size: 1.12rem; letter-spacing: -.01em; }
.brand__tag { font-size: .72rem; color: var(--muted); letter-spacing: .01em; }

.nav { display: flex; align-items: center; gap: .25rem; flex-wrap: nowrap; }
.nav a {
  font-weight: 600; font-size: .95rem; color: var(--navy); text-decoration: none; white-space: nowrap;
  padding: .55rem .7rem; border-radius: 8px; transition: background .15s var(--ease);
}
.nav a:hover { background: var(--sky); }
.nav a[aria-current="page"] { color: var(--teal-700); }
.nav a[aria-current="page"]::after {
  content: ""; display:block; height: 3px; margin: 4px .75rem 0; border-radius: 3px; background: var(--gold);
}
.header-cta { display: flex; align-items: center; gap: .6rem; margin-left: .5rem; }

.nav-toggle {
  display: none; width: 46px; height: 46px; border: 1px solid var(--line);
  background: #fff; border-radius: 10px; cursor: pointer; align-items: center; justify-content: center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 20px; height: 2px; background: var(--navy); border-radius: 2px; position: relative;
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after  { position: absolute; top: 6px; }

@media (max-width: 1200px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: fixed; inset: 74px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: .15rem;
    background: #fff; border-bottom: 1px solid var(--line);
    padding: 1rem 1.25rem 1.5rem; box-shadow: var(--shadow-2);
    transform: translateY(-8px); opacity: 0; visibility: hidden;
    transition: opacity .2s var(--ease), transform .2s var(--ease);
    max-height: calc(100vh - 74px); overflow-y: auto;
  }
  .nav.is-open { opacity: 1; visibility: visible; transform: none; }
  .nav a { padding: .8rem .6rem; font-size: 1.05rem; }
  .nav a[aria-current="page"]::after { display: none; }
  .header-cta .btn { padding: .8rem 1rem; }
  .header-cta .btn--ghost { display: none; }
}

/* ---------- Sunrise motif ---------- */
.sunrise {
  position: absolute; pointer-events: none; border-radius: 50%;
  background: radial-gradient(closest-side, var(--gold-soft), rgba(252,228,182,0));
}

/* ---------- Hero ---------- */
.hero { position: relative; overflow: clip; background: linear-gradient(180deg, #fff 0%, var(--sky) 100%); }
.hero__grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(1.5rem, 1rem + 3vw, 4rem);
  align-items: center; padding: clamp(2.5rem, 1.5rem + 4vw, 5rem) 0 clamp(3rem, 2rem + 4vw, 5.5rem);
}
.hero__title { font-size: var(--step-5); margin-bottom: .35em; }
.hero__title .hl { color: var(--teal-700); }
.hero__copy { font-size: var(--step-1); color: var(--muted); max-width: 40ch; }
.hero__cta { margin-top: 1.75rem; }
.hero__trust { margin-top: 1.9rem; display: flex; flex-wrap: wrap; gap: .5rem 1.4rem; color: var(--muted); font-size: .92rem; }
.hero__trust span { display: inline-flex; align-items: center; gap: .45rem; }
.hero__trust svg { flex: none; color: var(--teal); }

.hero__media { position: relative; }
.hero__photo {
  position: relative; z-index: 2; border-radius: var(--radius-lg);
  aspect-ratio: 4/5; object-fit: cover; width: 100%; box-shadow: var(--shadow-2);
  border: 6px solid #fff;
}
.hero__arc {
  position: absolute; z-index: 1; inset: auto -8% -12% -8%;
  height: 78%; border-radius: 999px 999px 0 0;
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-soft) 100%);
  opacity: .9;
}
.hero__badge {
  position: absolute; z-index: 3; right: -6px; bottom: 22px;
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-2);
  padding: .85rem 1.05rem; display: flex; align-items: center; gap: .7rem; max-width: 230px;
}
.hero__badge b { color: var(--navy); font-family: var(--font-display); }
.hero__badge small { color: var(--muted); display: block; font-size: .8rem; line-height: 1.3; }
.hero__badge .dot { width: 40px; height: 40px; flex: none; border-radius: 10px; background: var(--teal-soft); display: grid; place-items: center; color: var(--teal-700); }

@media (max-width: 860px) {
  .hero__grid { grid-template-columns: 1fr; text-align: left; }
  .hero__media { max-width: 460px; margin-inline: auto; }
  .hero__badge { right: 0; }
}

/* ---------- Cards / pillars ---------- */
.grid { display: grid; gap: 1.25rem; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 960px){ .grid--4 { grid-template-columns: repeat(2, 1fr); } .grid--3 { grid-template-columns: repeat(2,1fr);} }
@media (max-width: 620px){ .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; } }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.5rem 1.4rem; position: relative;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-1); border-color: #cdd9e8; }
.card h3 { font-size: var(--step-1); margin-bottom: .4rem; }
.card p { color: var(--muted); margin-bottom: 0; }
.card__icon {
  width: 52px; height: 52px; border-radius: 13px; display: grid; place-items: center;
  margin-bottom: 1rem; color: var(--navy); background: var(--gold-soft);
}
.card--t .card__icon { background: var(--teal-soft); color: var(--teal-700); }
.card--s .card__icon { background: var(--sky); color: var(--navy); }
/* pillar accent bar */
.pillar { padding-top: 1.7rem; }
.pillar::before {
  content:""; position:absolute; top:0; left: 1.4rem; right: 1.4rem; height: 4px;
  border-radius: 0 0 4px 4px; background: var(--gold);
}
.pillar.card--t::before { background: var(--teal); }
.pillar.card--s::before { background: var(--navy); }

/* Feature split */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 1rem + 3vw, 3.5rem); align-items: center; }
.split--flip .split__media { order: -1; }
.split__media img { border-radius: var(--radius-lg); aspect-ratio: 5/4; object-fit: cover; width: 100%; box-shadow: var(--shadow-1); }
@media (max-width: 820px){ .split { grid-template-columns: 1fr; } .split--flip .split__media { order: 0; } }

.tick-list { list-style: none; padding: 0; margin: 1rem 0 0; display: grid; gap: .7rem; }
.tick-list li { display: grid; grid-template-columns: 26px 1fr; gap: .65rem; align-items: start; }
.tick-list svg { color: var(--teal); margin-top: 4px; }
.section--navy .tick-list svg { color: var(--gold); }

/* Stats */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; }
@media (max-width:720px){ .stats { grid-template-columns: repeat(2,1fr);} }
.stat { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius); padding: 1.4rem 1.2rem; }
.stat b { font-family: var(--font-display); font-size: var(--step-2); color: var(--gold); display: block; }
.stat span { color: #c6d5e8; font-size: .95rem; }

/* Steps (the referral journey — a real sequence) */
.steps { counter-reset: step; display: grid; gap: 1rem; }
.steps--row { grid-template-columns: repeat(6, 1fr); }
@media (max-width: 980px){ .steps--row { grid-template-columns: repeat(3,1fr);} }
@media (max-width: 560px){ .steps--row { grid-template-columns: 1fr;} }
.step { counter-increment: step; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.3rem 1.1rem 1.2rem; position: relative; }
.step::before {
  content: counter(step); font-family: var(--font-display); font-weight: 700;
  width: 34px; height: 34px; border-radius: 50%; background: var(--navy); color: #fff;
  display: grid; place-items: center; font-size: .95rem; margin-bottom: .7rem;
}
.step h3 { font-size: 1.02rem; margin: 0 0 .25rem; }
.step p { font-size: .9rem; color: var(--muted); margin: 0; }

/* Banner / CTA strip */
.cta-band { position: relative; overflow: clip; background: var(--navy); color: #dfe8f4; border-radius: var(--radius-lg); padding: clamp(2rem,1.4rem+3vw,3.5rem); }
.cta-band h2 { color: #fff; }
.cta-band .sunrise { width: 460px; height: 460px; right: -120px; top: -220px; opacity: .5; }
.cta-band__inner { position: relative; z-index: 2; max-width: 720px; margin-inline: auto; text-align: center; }
.cta-band__inner .eyebrow { justify-content: center; }
.cta-band__inner > p { color: #c6d5e8; margin: 0 auto; }
.cta-band__actions { justify-content: center; margin-top: 1.6rem; }

/* FAQ */
.faq { display: grid; gap: .75rem; max-width: 820px; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 0 1.25rem; }
.faq summary {
  list-style: none; cursor: pointer; padding: 1.1rem 2rem 1.1rem 0; position: relative;
  font-family: var(--font-display); font-weight: 600; color: var(--navy); font-size: 1.06rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  font-size: 1.5rem; color: var(--teal-700); font-weight: 400; transition: transform .2s var(--ease);
}
.faq details[open] summary::after { content: "–"; }
.faq details[open] summary { color: var(--teal-700); }
.faq p { color: var(--muted); padding-bottom: 1.15rem; margin: 0; }

/* Testimonial placeholders */
.quote { background: #fff; border: 1px dashed var(--line); border-radius: var(--radius); padding: 1.6rem; }
.quote p { font-style: italic; color: var(--muted); }
.quote .badge { font-size: .78rem; font-weight: 700; color: var(--teal-700); background: var(--teal-soft); padding: .25rem .6rem; border-radius: 999px; display: inline-block; }

/* Pills / notes */
.pill { display: inline-flex; align-items:center; gap:.4rem; font-size:.8rem; font-weight:700; padding:.3rem .7rem; border-radius:999px; background: var(--gold-soft); color: var(--navy-900); }
.pill--soon { background: var(--gold-soft); color: var(--gold-600); }
.note {
  border-left: 4px solid var(--gold); background: var(--gold-soft);
  color: #5c4410; padding: 1rem 1.2rem; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; font-size: .95rem;
}
.note strong { color: #4a3608; }
.note--info { border-color: var(--teal); background: var(--teal-soft); color: #1c4952; }
.note--alert { border-color: #C0492E; background: #FBEBE6; color: #7c2c19; }
.note p { margin: 0; max-width: none; }

/* ---------- Forms ---------- */
.form { display: grid; gap: 1.1rem; }
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.5rem, 1rem + 2vw, 2.5rem); box-shadow: var(--shadow-1); }
.field { display: grid; gap: .4rem; }
.field.col-2 { grid-column: span 2; }
@media (max-width: 620px){ .field.col-2 { grid-column: span 1; } }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
@media (max-width: 620px){ .form-grid { grid-template-columns: 1fr; } }
label { font-weight: 600; color: var(--navy); font-size: .95rem; }
label .req { color: #C0492E; }
input, select, textarea {
  font-family: inherit; font-size: 1rem; color: var(--ink);
  padding: .75rem .85rem; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  background: #fff; width: 100%; transition: border-color .15s var(--ease), box-shadow .15s var(--ease);
}
input:focus, select:focus, textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 3px var(--teal-soft); outline: none; }
textarea { min-height: 130px; resize: vertical; }
.field-hint { font-size: .82rem; color: var(--muted); }
.field-error { font-size: .82rem; color: #C0492E; font-weight: 600; display: none; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #C0492E; }
.field.invalid .field-error { display: block; }
.check { display: grid; grid-template-columns: 22px 1fr; gap: .6rem; align-items: start; font-size: .92rem; color: var(--muted); font-weight: 400; }
.check input { width: 20px; height: 20px; margin-top: 2px; accent-color: var(--teal); }
/* honeypot */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-status { display: none; border-radius: var(--radius-sm); padding: .9rem 1.1rem; font-weight: 600; }
.form-status.ok { display: block; background: var(--teal-soft); color: #1c4952; border: 1px solid var(--teal); }
.form-status.err { display: block; background: #FBEBE6; color: #7c2c19; border: 1px solid #C0492E; }

/* Newsletter inline */
.newsletter { display: flex; gap: .6rem; flex-wrap: wrap; max-width: 520px; }
.newsletter input { flex: 1 1 240px; }
.newsletter .form-status { flex-basis: 100%; }

/* ---------- Page header (interior) ---------- */
.page-head { background: var(--navy); color: #cdd9ea; position: relative; overflow: clip; }
.page-head .sunrise { width: 520px; height: 520px; right: -140px; top: -260px; opacity: .55; }
.page-head__inner { padding: clamp(2.5rem, 2rem + 3vw, 4.5rem) 0 clamp(2.25rem,1.8rem+2.5vw,3.75rem); position: relative; z-index: 2; }
.page-head h1 { color: #fff; margin-bottom: .4rem; }
.page-head p { color: #c6d5e8; font-size: var(--step-1); max-width: 60ch; }
.breadcrumb { font-size: .85rem; color: #9db3d1; margin-bottom: 1rem; }
.breadcrumb a { color: #cfe0f4; }

/* Simple prose blocks (legal pages) */
.prose h2 { font-size: var(--step-2); margin-top: 2rem; }
.prose h3 { font-size: var(--step-1); margin-top: 1.5rem; }
.prose ul { padding-left: 1.2rem; }
.prose li { margin-bottom: .4rem; max-width: var(--measure); }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-900); color: #aebfd6; position: relative; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.3fr; gap: 2rem; padding: clamp(3.5rem,2.5rem+4vw,5rem) 0 2.75rem; }
@media (max-width: 900px){ .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .footer-top { grid-template-columns: 1fr; } }
.footer-brand .brand__name { color: #fff; }
.footer-brand .brand__tag { color: #8ca3c4; }
.footer-top h4 { font-family: var(--font-display); color: #fff; font-size: 1rem; margin: 0 0 1rem; }
.footer-nav { list-style: none; padding: 0; margin: 0; display: grid; gap: .7rem; }
.footer-nav a { color: #b8c8de; text-decoration: none; font-size: .95rem; line-height: 1.3; display: inline-block; }
.footer-nav a:hover { color: #fff; }
.footer-contact { font-size: .95rem; display: grid; gap: .7rem; line-height: 1.35; }
.footer-contact a { color: #cfe0f4; }
.socials { display: flex; gap: .6rem; margin-top: 1rem; }
.socials a { width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center; background: rgba(255,255,255,.08); color: #dbe6f6; }
.socials a:hover { background: var(--gold); color: var(--navy-900); }
.footer-disclaimer { border-top: 1px solid rgba(255,255,255,.12); padding: 1.5rem 0 2.25rem; font-size: .84rem; color: #8ca3c4; }
.footer-disclaimer p { max-width: 90ch; margin: 0 0 .75rem; }
.footer-legal { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; justify-content: space-between; }
.footer-legal nav { display: flex; flex-wrap: wrap; gap: 1rem; }
.footer-legal a { color: #b8c8de; text-decoration: none; font-size: .84rem; }
.footer-legal a:hover { color: #fff; }

/* Reveal-on-load (one gentle orchestrated entrance, reduced-motion safe) */
.js .reveal { opacity: 0; transform: translateY(14px); }
.js .reveal.in { opacity: 1; transform: none; transition: opacity .6s var(--ease), transform .6s var(--ease); }
@media (prefers-reduced-motion: reduce){ .js .reveal { opacity: 1 !important; transform: none !important; } }

.sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }

/* ---------- Contact two-column ---------- */
.two-col { display: grid; grid-template-columns: 1.4fr .9fr; gap: 2.5rem; align-items: start; }
@media (max-width: 860px){ .two-col { grid-template-columns: 1fr; gap: 1.75rem; } }

/* ---------- Mobile refinements ---------- */
@media (max-width: 620px){
  .container { width: min(100% - 2rem, var(--container)); }
  .form-card { padding: 1.35rem 1.15rem; }
  .cta-band { padding: 1.75rem 1.35rem; }
}
@media (max-width: 480px){
  .container { width: min(100% - 1.6rem, var(--container)); }
  /* stack grouped buttons full-width for comfortable tap targets */
  .btn-row { flex-direction: column; align-items: stretch; }
  .btn-row .btn { width: 100%; }
  /* let the hero badge sit under the photo instead of overlapping it */
  .hero__badge { position: static; margin: -14px auto 0; inset: auto; max-width: none; width: max-content; }
  .hero__arc { inset: auto -6% -8% -6%; height: 68%; }
  .hero__trust { gap: .45rem 1rem; }
  h1 { hyphens: auto; }
}
