/* ==========================================================================
   Mom's House — STS Template 3: "Clinical / Referral Ready"
   Metric-heavy, rectilinear design system for hospital & rehab referral sources.
   Palette: Ink / Ink 2 / Accent (teal) / Tint / Background
   ========================================================================== */

:root {
  --ink: #0F3D63;
  --ink-2: #2E3A45;
  --accent: #12968F;
  --accent-dark: #0D726D;
  --tint: #DCE4EA;
  --bg: #F7F9FA;
  --white: #FFFFFF;
  --border: rgba(46, 58, 69, 0.16);
  --border-strong: rgba(46, 58, 69, 0.28);
  --line: rgba(46, 58, 69, 0.14);

  --font-headline: 'Inter Tight', 'Inter', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  --max-width: 1200px;
  --radius: 4px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink-2);
  background: var(--bg);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-headline);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin: 0 0 0.5em;
  color: var(--ink);
}

h1 { font-size: clamp(2rem, 3.6vw, 2.7rem); }
h2 { font-size: 2.375rem; } /* 38px */
h3 { font-size: 1.2rem; font-weight: 600; }

p { margin: 0 0 1em; }

a { color: var(--accent-dark); text-decoration: none; }

img { max-width: 100%; display: block; }

.tabular { font-variant-numeric: tabular-nums; }

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

/* Hard hairline divider, edge to edge */
.section { padding: 88px 0; border-top: 0.5px solid var(--line); }
.section:first-of-type { border-top: none; }

@media (max-width: 720px) {
  .section { padding: 56px 0; }
}

.section-bg { background: var(--bg); }
.section-tint { background: var(--tint); }
.section-ink { background: var(--ink); color: var(--tint); border-top-color: rgba(220, 228, 234, 0.14); }
.section-ink h1, .section-ink h2, .section-ink h3 { color: var(--white); }
.section-ink p { color: rgba(220, 228, 234, 0.85); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 14px;
}
.section-ink .eyebrow { color: var(--accent); }

/* Static hairline rule beneath H2 — no draw-in animation, functional only */
.rule {
  width: 48px;
  height: 2px;
  background: var(--accent);
  margin: 20px 0 0;
}
.rule-center { margin-left: auto; margin-right: auto; }
.section-ink .rule { background: var(--accent); }

.lede {
  font-size: 1.05rem;
  color: var(--ink-2);
  max-width: 640px;
}
.section-ink .lede { color: rgba(220, 228, 234, 0.85); }

/* ---------- 12-column visible grid rhythm ---------- */

.grid-rhythm {
  position: relative;
  margin-top: 44px;
  padding: 20px 0;
  border-top: 0.5px solid var(--line);
  border-bottom: 0.5px solid var(--line);
  background-image: repeating-linear-gradient(
    to right,
    var(--line) 0,
    var(--line) 0.5px,
    transparent 0.5px,
    transparent calc(100% / 12)
  );
}
@media (max-width: 760px) { .grid-rhythm { background-image: none; } }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}

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

.btn-secondary {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}
.btn-secondary:hover { background: var(--ink); color: var(--white); }

.section-ink .btn-secondary {
  border-color: var(--accent);
  color: var(--white);
}
.section-ink .btn-secondary:hover { background: var(--accent); color: var(--ink); }

.btn-outline-white {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
}
.btn-outline-white:hover { background: var(--accent); border-color: var(--accent); color: var(--ink); }

.btn-block { width: 100%; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 32px;
}

/* ---------- Header / Nav — condensing sticky header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 249, 250, 0.96);
  border-bottom: 0.5px solid var(--line);
  transition: padding 0.2s ease, box-shadow 0.2s ease;
}
.site-header.is-condensed {
  box-shadow: 0 1px 0 var(--border);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  transition: padding 0.2s ease;
}
.site-header.is-condensed .nav-bar { padding: 11px 0; }

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 12px;
}
.badge-mark {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  transition: width 0.2s ease, height 0.2s ease;
}
.site-header.is-condensed .badge-mark { width: 26px; height: 26px; }
.brand-name {
  font-family: var(--font-headline);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--ink);
  line-height: 1.1;
}
.brand-name small {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-top: 3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  color: var(--ink-2);
  font-weight: 500;
  font-size: 15px;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a.active { color: var(--ink); border-color: var(--accent); }

.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-cta .btn { padding: 10px 20px; font-size: 14px; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-cta .btn-secondary { display: none; }
  .nav-toggle { display: block; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 0.5px solid var(--line);
    padding: 22px 24px;
    gap: 18px;
  }
}

/* ---------- Bordered photo frame — square, no bracket flourish ---------- */

.photo-frame {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.photo-frame img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Hero ---------- */

.hero { padding: 72px 0 84px; }

.hero-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: start;
}
.hero-copy { max-width: 540px; }

@media (max-width: 900px) {
  .hero-split { grid-template-columns: 1fr; gap: 40px; }
  .hero-copy { max-width: 100%; }
}

/* Credential rail — replaces photography with bordered data tiles */
.credential-rail {
  display: grid;
  gap: 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  background: var(--white);
}
.credential-tile {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 4px;
  border-top: 0.5px solid var(--line);
}
.credential-tile:first-child { border-top: none; }
.credential-tile span.label {
  font-weight: 600;
  font-size: 14.5px;
  color: var(--ink);
}

.page-hero {
  padding: 64px 0 56px;
  text-align: center;
}
.page-hero .lede { margin-left: auto; margin-right: auto; }
.page-hero .rule { margin-left: auto; margin-right: auto; }

/* Data block band — replaces hero photography on Services page */
.data-block-band {
  margin-top: 48px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 4px 0;
  background: var(--white);
}
.data-block-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 760px) { .data-block-grid { grid-template-columns: repeat(2, 1fr); } }
.data-block-item {
  padding: 26px 22px;
  border-left: 0.5px solid var(--line);
  text-align: left;
}
.data-block-item:first-child { border-left: none; }
.data-block-item .stat {
  font-family: var(--font-headline);
  font-weight: 600;
  font-size: 1.6rem;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.data-block-item .stat-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-2);
  margin-top: 4px;
}
@media (max-width: 760px) {
  .data-block-item:nth-child(2) { border-left: none; }
  .data-block-item:nth-child(n+3) { border-top: 0.5px solid var(--line); }
}

/* ---------- Bordered data cards ---------- */

.grid {
  display: grid;
  gap: 0;
  margin-top: 44px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}
.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: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.card {
  padding: 30px 26px;
  border-left: 0.5px solid var(--line);
  border-top: 0.5px solid var(--line);
  transition: background-color 0.2s ease;
}
.grid-2 .card:nth-child(1),
.grid-3 .card:nth-child(1),
.grid-4 .card:nth-child(1) { border-top: none; }
.grid > .card:first-child { border-left: none; }
.card:hover { background: var(--bg); }
.card h3 { margin-bottom: 8px; }
.card p { color: var(--ink-2); margin-bottom: 0; }

@media (max-width: 900px) {
  .grid-4 .card:nth-child(2) { border-top: none; }
  .grid-4 .card:nth-child(odd) { border-left: none; }
}
@media (max-width: 620px) {
  .grid .card { border-left: none !important; }
  .grid .card:not(:first-child) { border-top: 0.5px solid var(--line) !important; }
}

.card-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: 1.5px solid var(--accent);
  border-radius: var(--radius);
  color: var(--accent-dark);
  font-family: var(--font-headline);
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 14px;
}

/* ---------- Split layout (image + copy) ---------- */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.split.split-reverse .split-media { order: 2; }
.split.split-reverse .split-copy { order: 1; }

@media (max-width: 900px) {
  .split, .split.split-reverse { grid-template-columns: 1fr; }
  .split.split-reverse .split-media,
  .split.split-reverse .split-copy { order: initial; }
}

.split-media { aspect-ratio: 4 / 5; }

/* Bordered pull-quote data block — replaces a photograph */
.data-panel {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  background: var(--white);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.data-panel .panel-label {
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 16px;
}
.data-panel p { color: var(--ink); font-size: 1.05rem; margin-bottom: 0; }
.data-panel p strong { color: var(--ink); }

/* Bordered callout with accent left rule */
.callout {
  border-left: 2px solid var(--accent);
  padding: 4px 0 4px 22px;
  margin-top: 26px;
  font-size: 1rem;
  color: var(--ink);
}
.callout strong { color: var(--ink); }

/* Tinted differentiator block */
.callout-block {
  background: var(--tint);
  border-left: 2px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 22px 26px;
  margin-top: 22px;
}
.callout-block p { margin-bottom: 0; color: var(--ink-2); }

/* ---------- Checkmark lists ---------- */

.check-list {
  list-style: none;
  margin: 40px 0 0;
  padding: 0;
  display: grid;
}
.check-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 0;
  border-top: 0.5px solid var(--line);
  font-size: 1rem;
  color: var(--ink);
}
.check-list li:last-child { border-bottom: 0.5px solid var(--line); }
.check-mark {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  border: 1.5px solid var(--accent);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}
.check-mark svg { width: 11px; height: 11px; }
.check-mark path { stroke: var(--accent); stroke-width: 2.5; fill: none; stroke-linecap: square; }

.values-grid.check-list li { flex-direction: column; align-items: flex-start; gap: 6px; }
.values-grid.check-list h3 { margin: 0; font-size: 1.1rem; }
.values-grid.check-list .value-head { display: flex; align-items: center; gap: 12px; }
.values-grid.check-list p { margin: 0; color: var(--ink-2); }

/* ---------- Credential badges (trust line / reassurance) ---------- */

.badge-row {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.badge-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 8px 14px;
  font-weight: 600;
  font-size: 13px;
  color: var(--ink);
  background: var(--white);
}
.badge-chip::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 1px;
  flex-shrink: 0;
}

/* ---------- CTA banner ---------- */

.cta-banner { text-align: center; }
.cta-banner h2 { max-width: 640px; margin-left: auto; margin-right: auto; }
.cta-banner .btn-row { justify-content: center; }

/* ---------- Numbered steps — square badges, bordered grid ---------- */

.steps-line {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
}
@media (max-width: 900px) {
  .steps-line { grid-template-columns: 1fr; }
}

.step {
  padding: 30px 26px;
  border-left: 0.5px solid var(--line);
}
.steps-line .step:first-child { border-left: none; }
@media (max-width: 900px) {
  .steps-line .step { border-left: none; border-top: 0.5px solid var(--line); }
  .steps-line .step:first-child { border-top: none; }
}

.step-num {
  width: 34px;
  height: 34px;
  border: 1.5px solid var(--accent);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--accent-dark);
  font-family: var(--font-headline);
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.step h3 { margin-bottom: 8px; }
.step p { color: var(--ink-2); margin-bottom: 0; }

/* ---------- Numbered steps — bordered vertical grid (About / Services process) ---------- */

.spine {
  margin-top: 44px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
}

.spine-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 20px;
  padding: 26px 26px;
  border-top: 0.5px solid var(--line);
}
.spine-item:first-child { border-top: none; }

.spine-dot {
  width: 34px;
  height: 34px;
  border: 1.5px solid var(--accent);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-headline);
  font-weight: 600;
  color: var(--accent-dark);
  font-size: 1rem;
}

.spine-item h3 { margin-bottom: 8px; }
.spine-item p { color: var(--ink-2); margin-bottom: 0; }

@media (max-width: 620px) {
  .spine-item { grid-template-columns: 1fr; }
}

/* ---------- Testimonials ---------- */

.testimonial {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  background: var(--white);
}
.testimonial .quote-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: var(--radius);
  background: var(--tint);
  color: var(--ink);
  font-family: var(--font-headline);
  font-weight: 600;
  font-size: 12px;
  margin-bottom: 14px;
}
.testimonial p.quote { color: var(--ink); margin-bottom: 14px; }
.testimonial .cite {
  font-weight: 600;
  font-size: 13px;
  color: var(--accent-dark);
}

.testimonial-carousel {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .testimonial-carousel { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 760px) {
  .testimonial-carousel {
    grid-template-columns: none;
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 8px;
  }
  .testimonial-carousel .testimonial { flex: 0 0 82%; scroll-snap-align: start; }
}

.testimonial-feature {
  text-align: center;
  max-width: 740px;
  margin: 40px auto 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 36px;
  background: var(--white);
}
.testimonial-feature .quote-index { margin-left: auto; margin-right: auto; }
.testimonial-feature p.quote {
  font-family: var(--font-headline);
  font-weight: 500;
  font-size: 1.3rem;
  line-height: 1.5;
  color: var(--ink);
}
.testimonial-feature .rule { margin: 16px auto 16px; }

/* ---------- Service cards ---------- */

.service-card {
  border-left: 0.5px solid var(--line);
  border-top: 0.5px solid var(--line);
  padding: 30px;
}
.service-card .best-for {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 0.5px solid var(--line);
  font-size: 13.5px;
  color: var(--accent-dark);
  font-weight: 600;
}
.service-card.feature {
  grid-column: 1 / -1;
  background: var(--tint);
  border-top: none;
}

/* ---------- Contact / Form ---------- */

.urgent-banner {
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 18px 24px;
  text-align: center;
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--ink);
  margin-bottom: 40px;
  background: var(--white);
}
.urgent-banner a { color: var(--accent-dark); text-decoration: underline; }

.form-shell {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  max-width: 720px;
  margin: 0 auto;
}
@media (max-width: 600px) { .form-shell { padding: 24px; } }

.progress-label {
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 10px;
}
.progress-track {
  height: 3px;
  background: var(--tint);
  overflow: hidden;
  margin-bottom: 32px;
  border-radius: var(--radius);
}
.progress-fill {
  height: 100%;
  width: 50%;
  background: var(--accent);
  transition: width 0.2s ease;
}

.form-step { display: none; }
.form-step.active { display: block; }

.field-group { margin-bottom: 28px; }
.field-group > label.q-label {
  display: block;
  font-family: var(--font-headline);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--ink);
  margin-bottom: 14px;
}

.option-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
@media (max-width: 520px) { .option-grid { grid-template-columns: 1fr; } }

.option-pill { display: block; position: relative; }
.option-pill input { position: absolute; opacity: 0; }
.option-pill span {
  display: block;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-weight: 500;
  color: var(--ink-2);
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}
.option-pill span:hover { border-color: var(--accent); color: var(--ink); }
.option-pill input:checked + span {
  border-color: var(--accent);
  background: var(--tint);
  color: var(--ink);
}

.text-field { margin-bottom: 20px; }
.text-field label {
  display: block;
  font-weight: 600;
  font-size: 13px;
  color: var(--ink);
  margin-bottom: 8px;
}
.text-field input {
  width: 100%;
  padding: 13px 15px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ink);
}
.text-field input:focus { outline: none; border-color: var(--accent); }
.field-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 520px) { .field-pair { grid-template-columns: 1fr; } }

.consent-block {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  color: var(--ink-2);
  margin-bottom: 14px;
}
.consent-block input { margin-top: 4px; }
.consent-block a { text-decoration: underline; }

.form-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 14px;
  gap: 16px;
}
.link-btn {
  background: none;
  border: none;
  color: var(--ink-2);
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 15px;
  transition: color 0.2s ease;
}
.link-btn:hover { color: var(--ink); }

.reassurance { margin-top: 20px; }
.reassurance.badge-row { justify-content: center; }

.confirmation { display: none; text-align: center; }
.confirmation.active { display: block; }
.confirmation .check-circle {
  width: 52px;
  height: 52px;
  margin: 0 auto 20px;
  border: 1.5px solid var(--accent);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}
.confirmation .check-circle svg { width: 24px; height: 24px; }
.confirmation .check-circle path {
  fill: none;
  stroke: var(--accent);
  stroke-width: 2.5;
  stroke-linecap: square;
  stroke-linejoin: miter;
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--ink);
  color: rgba(220, 228, 234, 0.75);
  padding: 64px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 44px;
}
@media (max-width: 760px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand .badge-mark { width: 28px; height: 28px; }
.footer-brand span {
  font-family: var(--font-headline);
  font-weight: 600;
  color: var(--white);
  font-size: 1.05rem;
}
.footer-tagline { max-width: 320px; color: rgba(220, 228, 234, 0.6); margin-bottom: 22px; }
.footer-col h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.footer-col a { color: rgba(220, 228, 234, 0.75); font-weight: 400; transition: color 0.2s ease; }
.footer-col a:hover { color: var(--accent); }
.footer-cta { display: flex; flex-direction: column; gap: 10px; margin-top: 22px; max-width: 260px; }

.footer-disclaimer {
  border-top: 0.5px solid rgba(220, 228, 234, 0.14);
  margin-top: 48px;
  padding-top: 24px;
  font-size: 13px;
  color: rgba(220, 228, 234, 0.5);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-disclaimer p { margin: 0; max-width: 700px; }

/* ---------- Utility ---------- */

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.max-w-content { max-width: 680px; }
.section-intro { max-width: 720px; }

/* ==========================================================================
   Motion — functional only. 200ms transitions on state changes.
   No decorative fades, travel, or draw-in effects. Counters run once.
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; }
}
