/* ============================================================
   State Templates — Design A (Editorial Trust) + Design B (Open)
   igual-child · palette: navy #09172e · brown #b8967e
   BEM. Mobile-first. Breakpoints: 768, 1024, 1280.
   All classes prefixed st- to avoid collision with igual parent.
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* igual palette */
  --st-navy:        #09172e;
  --st-navy-2:      #1f2f4a;
  --st-accent:      #b8967e;   /* igual brown */
  --st-accent-dk:   #a07060;
  --st-ink:         #262626;
  --st-ink-2:       #4a4a4a;
  --st-ink-3:       #797979;
  --st-paper:       #faf8f6;
  --st-paper-tint:  #f2ede8;
  --st-line:        #e0d5ca;
  --st-ok:          #1E6B41;
  --st-white:       #FFFFFF;

  --st-font: 'DM Sans', 'Marcellus', system-ui, -apple-system, sans-serif;

  --st-radius:      12px;
  --st-radius-sm:   8px;
  --st-radius-pill: 999px;

  --st-shadow:      0 4px 20px rgba(9,23,46,.09);
  --st-shadow-lg:   0 12px 40px rgba(9,23,46,.14);

  --st-gutter-mobile: 20px;
  --st-gutter-tablet: 32px;
  --st-gutter-desk:   56px;
}

/* ---------- Layout util ---------- */
.st-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: var(--st-gutter-mobile);
  padding-right: var(--st-gutter-mobile);
}
@media (min-width: 768px) {
  .st-container { padding-left: var(--st-gutter-tablet); padding-right: var(--st-gutter-tablet); }
}
@media (min-width: 1024px) {
  .st-container { padding-left: var(--st-gutter-desk); padding-right: var(--st-gutter-desk); }
}

/* ---------- Eyebrow ---------- */
.st-eyebrow {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: .6rem;
}
.st-eyebrow--accent { color: var(--st-accent); }
.st-eyebrow--gold   { color: var(--st-accent); }
.st-eyebrow__rule {
  display: inline-block;
  width: 24px; height: 2px;
  background: var(--st-accent);
  vertical-align: middle;
  margin-right: 8px;
}

/* ---------- Badges ---------- */
.st-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 13px;
  border-radius: var(--st-radius-pill);
  font-size: .8rem;
  font-weight: 600;
}
.st-badge--tint { background: var(--st-paper-tint); color: var(--st-navy); border: 1px solid var(--st-line); }
.st-badge__dot  { width: 8px; height: 8px; background: var(--st-ok); border-radius: 50%; flex-shrink: 0; }

/* ---------- Cards ---------- */
.st-card { background: var(--st-white); border: 1px solid var(--st-line); border-radius: var(--st-radius); }
.st-card--shadow { box-shadow: var(--st-shadow); }

/* ---------- Icons ---------- */
.st-icon         { display: inline-block; width: 16px; height: 16px; vertical-align: middle; }
.st-icon--inline { margin-left: 6px; }
.st-icon--white  { filter: brightness(0) invert(1); }
.st-icon svg     { width: 100%; height: 100%; }

/* ---------- Buttons ---------- */
.st-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--st-font);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .03em;
  padding: 13px 22px;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: var(--st-radius-sm);
  cursor: pointer;
  transition: background .18s, color .18s, border-color .18s;
}
.st-btn--pill      { border-radius: var(--st-radius-pill); }
.st-btn--lg        { padding: 15px 28px; font-size: 15px; }
.st-btn--uppercase { text-transform: uppercase; letter-spacing: .07em; font-size: 13px; }
.st-btn--block     { width: 100%; justify-content: center; }

.st-btn--accent {
  background: var(--st-accent);
  color: var(--st-white);
  border-color: var(--st-accent);
}
.st-btn--accent:hover { background: var(--st-accent-dk); border-color: var(--st-accent-dk); }

.st-btn--primary {
  background: var(--st-navy);
  color: var(--st-white);
  border-color: var(--st-navy);
}
.st-btn--primary:hover { background: var(--st-navy-2); border-color: var(--st-navy-2); }

.st-btn--ghost {
  background: transparent;
  color: var(--st-navy);
  border-color: var(--st-navy);
}
.st-btn--ghost:hover { background: var(--st-navy); color: var(--st-white); }

/* Ghost dark — always visible on dark hero/bridge backgrounds */
.st-btn--ghost-dark {
  background: rgba(255,255,255,.15);
  color: var(--st-white);
  border: 2px solid rgba(255,255,255,.75);
}
.st-btn--ghost-dark:hover {
  background: rgba(255,255,255,.28);
  border-color: var(--st-white);
}

/* Push content below the fixed igual navbar (80px height) */
body.ssd-state-page { padding-top: 80px; }
body.ssd-city-page  { padding-top: 80px; }
@media (max-width: 767px) {
  body.ssd-state-page { padding-top: 70px; }
  body.ssd-city-page  { padding-top: 70px; }
}

/* ── Fix position:sticky on TOC ──────────────────────────────
   Both body and .igual-body-inner have overflow:hidden which
   silently breaks sticky. Must override on state/city pages.
   overflow-x:hidden on body is kept to prevent horizontal scroll
   but overflow-y must be visible/auto for sticky to work.
────────────────────────────────────────────────────────────── */
body.ssd-state-page,
body.ssd-city-page {
  overflow-y: visible !important;
}
body.ssd-state-page .igual-body-inner,
body.ssd-city-page  .igual-body-inner {
  overflow: visible !important;
}

/* ---------- Breadcrumb — standalone bar below igual fixed navbar ---------- */
.st-breadcrumb {
  width: 100%;
  background: var(--st-white);
  border-top: 3px solid var(--st-accent);
  border-bottom: 1px solid var(--st-line);
  padding: 8px 0;
  font-size: 13px;
  color: var(--st-ink-2);
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}
.st-breadcrumb__link       { color: var(--st-ink-2); text-decoration: none; }
.st-breadcrumb__link:hover { color: var(--st-accent); }
.st-breadcrumb__sep        { margin: 0 8px; color: #B7BCC6; font-size: 11px; }
.st-breadcrumb__current    { color: var(--st-ink); font-weight: 600; }

/* ══════════════════════════════════════════════════
   DESIGN A — Editorial Trust (navy + brown)
════════════════════════════════════════════════════ */

/* A2 · HERO */
.st-hero--a {
  background: var(--st-navy);
  color: var(--st-white);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}
.st-hero__ring {
  position: absolute;
  right: -60px; top: -60px;
  width: 420px; height: 420px;
  border: 70px solid rgba(184,150,126,.1);
  border-radius: 50%;
  pointer-events: none;
}
.st-hero--a .st-hero__inner {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 1024px) {
  .st-hero--a .st-hero__inner { grid-template-columns: 1fr 340px; align-items: start; }
}
.st-hero--a .st-hero__title {
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--st-white);
  margin-bottom: 1rem;
}
.st-hero--a .st-hero__intro p { font-size: .97rem; color: rgba(255,255,255,.8); line-height: 1.7; margin-bottom: 1.2rem; }
.st-hero__bullets { list-style: none; margin: 0 0 1.5rem; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: .45rem .75rem; }
.st-hero__bullet  { display: flex; align-items: flex-start; gap: .4rem; font-size: .88rem; color: rgba(255,255,255,.88); }
.st-hero__bullet-mark { color: var(--st-accent); font-weight: 700; flex-shrink: 0; }
.st-hero__actions { display: flex; flex-wrap: wrap; gap: .75rem; }
.st-hero__updated { font-size: .78rem; color: rgba(255,255,255,.5); margin-top: .8rem; }

/* Hero plate (flag card) */
.st-hero__plate {
  background: var(--st-navy-2);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--st-radius);
  overflow: hidden;
}
.st-hero__plate-flag { width: 100%; height: 160px; object-fit: cover; display: block; }
.st-hero__plate-placeholder {
  width: 100%; height: 160px;
  background: rgba(255,255,255,.06);
  display: grid; place-items: center;
}
.st-hero__plate-placeholder span { font-size: 64px; font-weight: 800; color: rgba(255,255,255,.15); }
.st-hero__plate-label { padding: .9rem 1.1rem; }
.st-hero__plate-kicker { font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.45); }
.st-hero__plate-name   { font-size: 1.1rem; font-weight: 700; color: var(--st-white); }

/* A3 · SNAPSHOT */
.st-snapshot--a { padding: 4rem 0; background: var(--st-paper-tint); }
.st-snapshot--a .st-snapshot__card {
  background: var(--st-white);
  border: 1px solid var(--st-line);
  border-radius: var(--st-radius);
  padding: 2rem 2rem;
  position: relative;
  overflow: hidden;
}
.st-snapshot__accent {
  position: absolute;
  top: 0; left: 0;
  width: 5px; height: 100%;
  background: var(--st-accent);
  border-radius: var(--st-radius) 0 0 var(--st-radius);
}
.st-snapshot__title { font-size: 1.3rem; font-weight: 700; color: var(--st-navy); margin-bottom: 1.2rem; }
.st-snapshot__grid  {
  display: grid;
  gap: .6rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) { .st-snapshot__grid { grid-template-columns: 1fr 1fr; } }
.st-snapshot__row { display: flex; gap: .5rem; font-size: .88rem; }
.st-snapshot__term { font-weight: 600; color: var(--st-navy); flex: 0 0 auto; min-width: 180px; }
.st-snapshot__def  { color: var(--st-ink-2); }
.st-snapshot__approval {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  border-top: 1px solid var(--st-line);
  padding-top: 1.5rem;
}
@media (min-width: 640px) { .st-snapshot__approval { grid-template-columns: repeat(4, 1fr); } }
.st-snapshot__stat-num   { font-size: 1.6rem; font-weight: 800; color: var(--st-navy); }
.st-snapshot__stat-label { font-size: .75rem; color: var(--st-ink-3); margin-top: .2rem; }

/* ══════════════════════════════════════════════════
   DESIGN B — Open & Approachable (navy + brown)
════════════════════════════════════════════════════ */

/* B2 · HERO */
.st-hero--b {
  background: var(--st-navy);
  color: var(--st-white);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}
.st-hero__blob {
  position: absolute;
  top: -100px; right: -60px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(184,150,126,.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.st-hero--b .st-hero__inner {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 1024px) {
  .st-hero--b .st-hero__inner { grid-template-columns: 1fr 360px; align-items: start; gap: 3rem; }
}
.st-hero--b .st-hero__title {
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--st-white);
  margin: 1rem 0 1.1rem;
}
.st-hero__title-accent { color: var(--st-accent); }
.st-hero--b .st-hero__intro p { font-size: .97rem; color: rgba(255,255,255,.8); line-height: 1.7; margin-bottom: 1.2rem; }

/* Hero stat card (Design B) */
.st-hero__card { background: var(--st-white); border-radius: var(--st-radius); overflow: hidden; padding: 1.4rem; }
.st-hero__card-flag         { width: 100%; height: 140px; object-fit: cover; display: block; border-radius: var(--st-radius-sm); margin-bottom: .9rem; }
.st-hero__card-placeholder  {
  width: 100%; height: 140px;
  background: var(--st-paper-tint);
  display: grid; place-items: center;
  border-radius: var(--st-radius-sm);
  margin-bottom: .9rem;
}
.st-hero__card-placeholder span { font-size: 48px; font-weight: 800; color: var(--st-navy); opacity: .18; }
.st-hero__card-kicker { font-size: .75rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--st-ink-3); margin-bottom: .75rem; }
.st-hero__card-stats { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; }
.st-hero__card-stat-val   { font-size: 1.4rem; font-weight: 800; color: var(--st-navy); line-height: 1.1; }
.st-hero__card-stat-label { font-size: .72rem; color: var(--st-ink-3); margin-top: .15rem; }

/* B3 · SNAPSHOT (card grid variant) */
.st-snapshot--b { padding: 3.5rem 0; background: var(--st-paper); }
.st-snapshot__panel {
  background: var(--st-white);
  border: 1px solid var(--st-line);
  border-radius: var(--st-radius);
  padding: 1.8rem 2rem;
}
.st-snapshot--b .st-snapshot__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: .75rem;
  margin-bottom: 1.5rem;
}
.st-snapshot__kicker { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--st-accent); margin-bottom: .3rem; }
.st-snapshot--b .st-snapshot__title { font-size: 1.2rem; font-weight: 700; color: var(--st-navy); }
.st-snapshot__updated { font-size: .8rem; font-weight: 600; color: var(--st-accent); text-decoration: none; margin-top: .4rem; }
.st-snapshot--b .st-snapshot__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: .75rem;
  list-style: none;
  margin: 0; padding: 0;
}
@media (min-width: 640px)  { .st-snapshot--b .st-snapshot__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .st-snapshot--b .st-snapshot__grid { grid-template-columns: repeat(3, 1fr); } }
.st-snapshot__card {
  background: var(--st-paper-tint);
  border: 1px solid var(--st-line);
  border-left: 4px solid var(--st-accent);
  border-radius: var(--st-radius-sm);
  padding: 1rem 1.1rem;
}
.st-snapshot__term { font-weight: 700; font-size: .83rem; color: var(--st-navy); margin-bottom: .25rem; }
.st-snapshot__def  { font-size: .85rem; color: var(--st-ink-2); line-height: 1.5; }

/* ── Shared CTA BRIDGE ── */
.st-cta-bridge {
  position: relative;
  overflow: hidden;
  background: var(--st-navy);
  padding: 3rem 0;
  color: var(--st-white);
}
.st-cta-bridge__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
  align-items: center;
}
@media (min-width: 1024px) { .st-cta-bridge__inner { flex-wrap: nowrap; } }
.st-cta-bridge__ring {
  position: absolute;
  right: -80px; top: -80px;
  width: 350px; height: 350px;
  border: 55px solid rgba(184,150,126,.1);
  border-radius: 50%;
  pointer-events: none;
}
.st-cta-bridge__title { font-size: 1.25rem; font-weight: 700; color: var(--st-white); margin-bottom: .4rem; }
.st-cta-bridge__lede  { font-size: .88rem; color: rgba(255,255,255,.85); line-height: 1.6; }
.st-cta-bridge__actions { display: flex; flex-wrap: wrap; gap: .75rem; flex-shrink: 0; }

/* CTA bridge button overrides — ensure both buttons visible on dark navy bg */
.st-cta-bridge__actions .st-btn--accent {
  background: var(--st-accent);
  color: var(--st-white);
  border-color: var(--st-accent);
}
.st-cta-bridge__actions .st-btn--accent:hover {
  background: var(--st-accent-dk);
  border-color: var(--st-accent-dk);
}
.st-cta-bridge__actions .st-btn--ghost,
.st-cta-bridge__actions .st-btn--ghost-dark {
  background: rgba(255,255,255,.15);
  color: var(--st-white);
  border: 2px solid rgba(255,255,255,.75);
}
.st-cta-bridge__actions .st-btn--ghost:hover,
.st-cta-bridge__actions .st-btn--ghost-dark:hover {
  background: rgba(255,255,255,.28);
  border-color: var(--st-white);
}

/* ── Shared AREAS WE SERVE ── */
.st-areas { padding: 3.5rem 0; background: var(--st-paper-tint); }
.st-areas__head { margin-bottom: 2rem; }
.st-areas__eyebrow { font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--st-accent); margin-bottom: .4rem; }
.st-areas__title { font-size: 1.3rem; font-weight: 700; color: var(--st-navy); margin-bottom: .4rem; }
.st-areas__lede  { font-size: .88rem; color: var(--st-ink-3); line-height: 1.6; }
.st-areas__grid  { display: flex; flex-direction: column; gap: 1.5rem; }
.st-areas__region-head { display: flex; align-items: center; gap: .75rem; margin-bottom: .75rem; }
.st-areas__region-abbr {
  width: 38px; height: 38px;
  background: var(--st-navy);
  color: var(--st-white);
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: .8rem; font-weight: 700;
  flex-shrink: 0;
}
.st-areas__region-title { font-size: .9rem; font-weight: 700; color: var(--st-navy); }
.st-areas__cities { display: flex; flex-wrap: wrap; gap: .4rem .75rem; list-style: none; margin: 0; padding: 0; }

/* Design A — inline city links */
.st-areas__city { display: inline-flex; align-items: center; }
.st-areas__city-link { font-size: .88rem; color: var(--st-navy); text-decoration: none; font-weight: 500; }
.st-areas__city-link:hover { color: var(--st-accent); text-decoration: underline; }
.st-areas__sep { margin-left: .4rem; color: var(--st-ink-3); }

/* Design B — pill links */
.st-areas__city-pill {
  display: inline-block;
  padding: .32rem .8rem;
  background: var(--st-white);
  border: 1px solid var(--st-line);
  border-radius: var(--st-radius-pill);
  font-size: .83rem;
  font-weight: 500;
  color: var(--st-navy);
  text-decoration: none;
  transition: background .15s;
}
.st-areas__city-pill:hover { background: var(--st-navy); color: var(--st-white); border-color: var(--st-navy); }

/* ── Shared BODY CONTENT + TOC ── */
.st-body {
  padding: 3.5rem 0;
  background: var(--st-paper);
  overflow: visible; /* REQUIRED — overflow:hidden on parent breaks position:sticky */
}
.st-body__inner {
  display: grid;
  gap: 2.5rem;
  /* align-items:start is critical — stretch would make both columns equal height
     which prevents the TOC from having room to scroll */
  align-items: start;
}
@media (min-width: 1024px) {
  .st-body__inner {
    grid-template-columns: 260px 1fr;
    align-items: start;
  }
  .st-body__toc {
    position: sticky;
    top: 100px; /* clears 80px fixed navbar + 20px breathing room */
    /* max-height keeps TOC from growing taller than viewport */
    max-height: calc(100vh - 120px);
    overflow-y: auto;
  }
}

.st-body__toc {
  background: var(--st-white);
  border: 1px solid var(--st-line);
  border-radius: var(--st-radius);
  padding: 1.2rem 1.4rem;
}
.st-body__toc-title { font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--st-accent); margin-bottom: .8rem; }
.st-body__toc-list  { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .4rem; }
.st-body__toc-item  { display: flex; align-items: baseline; gap: .5rem; }
.st-body__toc-num   { font-size: .72rem; font-weight: 700; color: var(--st-accent); flex-shrink: 0; min-width: 1.5em; }
.st-body__toc-link  { font-size: .83rem; color: var(--st-navy); text-decoration: none; line-height: 1.4; }
.st-body__toc-link:hover { color: var(--st-accent); text-decoration: underline; }

.st-rich-text h2 { font-size: 1.3rem; font-weight: 700; color: var(--st-navy); margin: 2rem 0 .8rem; }
.st-rich-text h3 { font-size: 1.05rem; font-weight: 700; color: var(--st-navy); margin: 1.5rem 0 .6rem; }
.st-rich-text p  { font-size: .95rem; color: var(--st-ink-2); line-height: 1.75; margin-bottom: .9rem; }
.st-rich-text ul, .st-rich-text ol { margin: 0 0 1rem 1.5rem; }
.st-rich-text li { font-size: .93rem; color: var(--st-ink-2); line-height: 1.7; margin-bottom: .35rem; }
.st-rich-text a  { color: var(--st-navy); text-decoration: underline; }
.st-rich-text a:hover { color: var(--st-accent); }

/* ── Shared TEAM ── */
.st-team { padding: 4rem 0; background: var(--st-white); }
.st-team__head    { margin-bottom: 2rem; }
.st-team__eyebrow { font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--st-accent); margin-bottom: .4rem; }
.st-team__title   { font-size: 1.3rem; font-weight: 700; color: var(--st-navy); }
.st-team__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px)  { .st-team__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .st-team__grid { grid-template-columns: repeat(4, 1fr); } }

.st-team__card {
  background: var(--st-white);
  border: 1px solid var(--st-line);
  border-radius: var(--st-radius);
  overflow: hidden;
}
.st-team__photo {
  position: relative;
  height: 140px;
  background: var(--tone, var(--st-navy));
  display: flex;
  align-items: center;
  justify-content: center;
}
.st-team__photo-img      { width: 100%; height: 100%; object-fit: cover; }
.st-team__photo-initials { font-size: 2.5rem; font-weight: 800; color: rgba(255,255,255,.6); }
.st-team__photo-overlay  { position: absolute; inset: 0; background: linear-gradient(to top, rgba(9,23,46,.45), transparent); }
.st-team__photo-years    {
  position: absolute; bottom: 8px; right: 8px;
  background: var(--st-accent);
  color: var(--st-white);
  font-size: .7rem; font-weight: 700;
  padding: .2rem .5rem;
  border-radius: 4px;
}
.st-team__body { padding: 1.1rem 1.2rem; }
.st-team__name { font-size: .97rem; font-weight: 700; color: var(--st-navy); margin-bottom: .2rem; }
.st-team__role { font-size: .78rem; color: var(--st-accent); font-weight: 600; margin-bottom: .7rem; }
.st-team__blurb { font-size: .82rem; color: var(--st-ink-2); line-height: 1.55; margin-bottom: .7rem; }
.st-team__creds { display: flex; flex-direction: column; gap: .25rem; margin-bottom: .7rem; }
.st-team__cred  { display: flex; gap: .4rem; font-size: .78rem; }
.st-team__cred dt { font-weight: 600; color: var(--st-navy); }
.st-team__cred dd { color: var(--st-ink-3); }
.st-team__memberships { display: flex; flex-wrap: wrap; gap: .35rem; list-style: none; margin: 0 0 .7rem; padding: 0; }
.st-team__membership  {
  padding: .18rem .55rem;
  background: var(--st-paper-tint);
  border: 1px solid var(--st-line);
  border-radius: var(--st-radius-pill);
  font-size: .68rem; font-weight: 600; color: var(--st-navy);
}
.st-team__bio-link { font-size: .82rem; font-weight: 600; color: var(--st-accent); text-decoration: none; }
.st-team__bio-link:hover { text-decoration: underline; }

/* ── Shared FAQ ── */
.st-faq { padding: 4rem 0; background: var(--st-paper-tint); }
/* Design A — centered */
.st-faq__head { margin-bottom: 1.8rem; }
/* Design B — sidebar layout */
.st-faq__layout {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 1024px) { .st-faq__layout { grid-template-columns: 280px 1fr; align-items: start; } }
.st-faq__eyebrow { font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--st-accent); margin-bottom: .4rem; }
.st-faq__title   { font-size: 1.25rem; font-weight: 700; color: var(--st-navy); margin-bottom: .5rem; }
.st-faq__lede    { font-size: .88rem; color: var(--st-ink-3); line-height: 1.6; }
.st-faq__lede a  { color: var(--st-navy); text-decoration: underline; }

.st-faq__item { border-bottom: 1px solid var(--st-line); }
.st-faq__item:first-of-type { border-top: 1px solid var(--st-line); }
.st-faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 0;
  font-size: .95rem;
  font-weight: 600;
  color: var(--st-navy);
  cursor: pointer;
  list-style: none;
}
.st-faq__q::-webkit-details-marker { display: none; }
.st-faq__icon { font-size: 1.2rem; font-weight: 300; color: var(--st-accent); flex-shrink: 0; transition: transform .2s; }
details[open] .st-faq__icon { transform: rotate(45deg); }
.st-faq__a {
  padding: 0 0 1.1rem;
  font-size: .9rem;
  color: var(--st-ink-2);
  line-height: 1.7;
}

/* ── Shared CONVERSION ── */
.st-conversion { padding: 4.5rem 0; background: var(--st-paper); }
.st-conversion__panel {
  display: grid;
  gap: 2.5rem;
  background: var(--st-white);
  border: 1px solid var(--st-line);
  border-radius: var(--st-radius);
  padding: 2.5rem 2rem;
}
@media (min-width: 1024px) {
  .st-conversion__panel { grid-template-columns: 1fr 1fr; align-items: start; padding: 3rem 3.5rem; }
}
.st-conversion__eyebrow { font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--st-accent); margin-bottom: .4rem; }
.st-conversion__title   { font-size: clamp(1.2rem, 2.5vw, 1.55rem); font-weight: 700; color: var(--st-navy); margin-bottom: .8rem; }
.st-conversion__lede    { font-size: .92rem; color: var(--st-ink-2); line-height: 1.65; margin-bottom: 1.5rem; }
.st-conversion__phone   { margin-bottom: .5rem; }
.st-conversion__phone-label { font-size: .78rem; color: var(--st-ink-3); }
.st-conversion__phone-num   { font-size: 1.1rem; font-weight: 700; color: var(--st-navy); text-decoration: none; display: block; }
.st-conversion__phone-num:hover { color: var(--st-accent); }
.st-conversion__phone-hours { font-size: .75rem; color: var(--st-ink-3); margin-top: .2rem; }

.st-conversion__phone-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--st-paper-tint);
  border: 1px solid var(--st-line);
  border-radius: var(--st-radius-sm);
  padding: 1rem 1.2rem;
  margin-bottom: .5rem;
}
.st-conversion__phone-icon {
  width: 40px; height: 40px;
  background: var(--st-navy);
  border-radius: 50%;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.st-conversion__phone-icon svg { width: 18px; height: 18px; fill: var(--st-white); }

/* Form (reuse .form classes from state-form.php) */
.form { display: flex; flex-direction: column; gap: .9rem; }
.form__field { display: flex; flex-direction: column; gap: .3rem; }
.form__label { font-size: .83rem; font-weight: 600; color: var(--st-navy); }
.form__req   { color: var(--st-accent); }
.form__input {
  width: 100%;
  padding: .7rem .9rem;
  border: 1px solid var(--st-line);
  border-radius: var(--st-radius-sm);
  font-size: .93rem;
  font-family: var(--st-font);
  color: var(--st-ink);
  background: var(--st-white);
  transition: border-color .16s, box-shadow .16s;
}
.form__input:focus {
  outline: none;
  border-color: var(--st-navy);
  box-shadow: 0 0 0 3px rgba(9,23,46,.1);
}
.form__input--textarea  { resize: vertical; min-height: 80px; }
.form__input--select    { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2309172e' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right .9rem center; padding-right: 2.2rem; }
.form__submit { margin-top: .3rem; }
.form__legal  { font-size: .74rem; color: var(--st-ink-3); line-height: 1.5; }
.form__notice { padding: .75rem 1rem; border-radius: var(--st-radius-sm); font-size: .88rem; font-weight: 600; }
.form__notice--ok    { background: #e6f5ec; color: #1E6B41; border: 1px solid #b0d8bc; }
.form__notice--error { background: #fdecea; color: #a32a2a; border: 1px solid #f0b4b4; }
