/* ==========================================================================
   Mom's House — STS Template 4: "Peace of Mind"
   Clarity and sequence. Numbered circles, gold-outlined, joined by solid
   blue connectors. Widest-appeal palette: blue reads safe, gold keeps it warm.
   Palette: Ink / Ink 2 / Accent (gold) / Tint / Background
   ========================================================================== */

:root {
  --ink: #123A5C;
  --ink-2: #3E7CB1;
  --accent: #F2B134;
  --accent-dark: #D6941C;
  --tint: #CFE3F2;
  --bg: #F6FAFD;
  --cream: #FFFFFF;
  --white: #FFFFFF;
  --border: rgba(18, 58, 92, 0.14);
  --border-accent: rgba(242, 177, 52, 0.55);

  --font-headline: 'Bitter', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  --max-width: 1160px;
  --radius: 8px;
}

* { 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: 18px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

h1 { font-size: clamp(2.1rem, 4.2vw, 2.5rem); }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.15rem); }
h3 { font-size: 1.25rem; font-weight: 600; }

p { margin: 0 0 1em; }

a { color: var(--ink-2); text-decoration: none; }

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

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

/* Full-width blue rule dividing every section, generous padding either side */
.section { padding: 100px 0; border-top: 3px solid var(--ink); }
.section:first-of-type { border-top: none; }

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

.section-bg { background: var(--bg); }
.section-tint { background: var(--tint); }
.section-ink { background: var(--ink); color: var(--tint); border-top-color: var(--accent); }
.section-ink h1, .section-ink h2, .section-ink h3 { color: var(--cream); }
.section-ink p { color: rgba(207, 227, 242, 0.9); }

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

/* Gold underline accent beneath every H2 */
.rule {
  width: 64px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  margin: 22px 0 0;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.5s ease;
}
.rule.is-visible { transform: scaleX(1); }
.rule-center { margin-left: auto; margin-right: auto; transform-origin: center; }
.section-ink .rule { background: var(--accent); }

.lede {
  font-size: 1.1rem;
  color: var(--ink-2);
  max-width: 640px;
}
.section-ink .lede { color: rgba(207, 227, 242, 0.9); }

/* ---------- 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.02em;
  padding: 15px 30px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}

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

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

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

.btn-outline-cream {
  background: transparent;
  border-color: rgba(207, 227, 242, 0.5);
  color: var(--cream);
}
.btn-outline-cream:hover { background: var(--accent); border-color: var(--accent); color: var(--ink); }

.btn-block { width: 100%; }

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

/* ---------- Header / Nav ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 250, 253, 0.94);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 12px;
}
.crest {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
}
.brand-name {
  font-family: var(--font-headline);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--ink);
  line-height: 1.1;
}
.brand-name small {
  display: block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav-links a {
  position: relative;
  color: var(--ink-2);
  font-weight: 500;
  font-size: 15px;
  transition: color 0.15s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
  transition: width 0.25s ease;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--ink); }

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

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 6px 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: 68px;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 24px;
    gap: 20px;
  }
}

/* ---------- Photo frame ---------- */

.bracket-frame {
  position: relative;
  overflow: visible;
}
.bracket-frame .bracket-img {
  overflow: hidden;
  border-radius: var(--radius);
}
.bracket-frame .bracket-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bracket-frame::before,
.bracket-frame::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  z-index: 2;
  pointer-events: none;
  transition: width 0.2s ease, height 0.2s ease, border-color 0.2s ease;
}
.bracket-frame::before {
  top: -9px;
  left: -9px;
  border-top: 2.5px solid var(--accent);
  border-left: 2.5px solid var(--accent);
  border-top-left-radius: 4px;
}
.bracket-frame::after {
  bottom: -9px;
  right: -9px;
  border-bottom: 2.5px solid var(--accent);
  border-right: 2.5px solid var(--accent);
  border-bottom-right-radius: 4px;
}
.bracket-frame:hover::before { width: 40px; height: 40px; border-color: var(--accent-dark); }
.bracket-frame:hover::after { width: 40px; height: 40px; border-color: var(--accent-dark); }

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

.hero { padding: 88px 0 100px; }

.hero-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}
.hero-copy { max-width: 520px; }
.hero-photo-frame {
  aspect-ratio: 4 / 5;
}
.hero-photo-frame .bracket-img { height: 100%; }

@media (max-width: 900px) {
  .hero-split { grid-template-columns: 1fr; gap: 48px; }
  .hero-copy { max-width: 100%; }
  .hero-photo-frame { max-width: 380px; margin: 0 auto; }
}

.trust-line {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 28px;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.03em;
  color: var(--ink-2);
}
.trust-line span::before {
  content: "—";
  color: var(--accent-dark);
  margin-right: 8px;
}

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

.hero-band {
  margin-top: 56px;
  aspect-ratio: 21 / 9;
  overflow: hidden;
  border-radius: var(--radius);
  border: 3px solid var(--ink);
}
.hero-band img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Cards ---------- */

.grid {
  display: grid;
  gap: 28px;
  margin-top: 48px;
}
.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 {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 30px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.card:hover { border-color: var(--border-accent); box-shadow: 0 8px 24px rgba(18, 58, 92, 0.08); transform: translateY(-2px); }
.card h3 { margin-bottom: 10px; transition: color 0.2s ease; }
.card:hover h3 { color: var(--ink-2); }
.card p { color: var(--ink-2); margin-bottom: 0; }

/* Icon-in-circle badge — gold-outlined circle, numbered, matches the process-step device */
.card-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-headline);
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 18px;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.card:hover .card-badge { background: var(--accent); color: var(--ink); }

.card-eyebrow {
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin-bottom: 8px;
  display: block;
}

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

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split.split-reverse { grid-template-columns: 1fr 1fr; }
.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; }
.split-media .bracket-img { height: 100%; }

/* Compact portrait variant — a headshot shouldn't dominate the layout the way an
   environmental photo does, so give it a fixed, modest width instead of half the row. */
.split.split-compact { grid-template-columns: 300px 1fr; }
@media (max-width: 900px) {
  .split.split-compact { grid-template-columns: 1fr; }
  .split.split-compact .split-media { max-width: 240px; margin: 0 auto; }
}

/* Bordered pull-quote callout with gold accent rule down left edge */
.callout {
  border-left: 3px solid var(--accent);
  padding: 4px 0 4px 24px;
  margin-top: 28px;
  font-size: 1.02rem;
  color: var(--ink);
}
.callout strong { color: var(--ink); }

/* Tinted differentiator block with left accent rule */
.callout-block {
  background: var(--tint);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 24px 28px;
  margin-top: 24px;
  transition: background-color 0.2s ease, border-left-color 0.2s ease;
}
.callout-block:hover { border-left-color: var(--accent-dark); }
.callout-block p { margin-bottom: 0; color: var(--ink); }

/* ---------- Open values grid (no card containers) ---------- */

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 56px;
  margin-top: 48px;
}
@media (max-width: 700px) { .values-grid { grid-template-columns: 1fr; } }
.value-item { border-top: 3px solid var(--border); padding-top: 22px; transition: border-color 0.2s ease; }
.value-item:hover { border-top-color: var(--accent); }
.value-item h3 { margin-bottom: 8px; font-size: 1.15rem; transition: color 0.2s ease; }
.value-item:hover h3 { color: var(--ink-2); }
.value-item p { margin-bottom: 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: horizontal connector, progress-bar fill (Home) ---------- */

.steps-line {
  position: relative;
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.steps-line::before {
  content: "";
  position: absolute;
  top: 21px;
  left: 8%;
  right: 8%;
  height: 4px;
  border-radius: 2px;
  background: var(--tint);
  z-index: 0;
}
.steps-line::after {
  content: "";
  position: absolute;
  top: 21px;
  left: 8%;
  right: 8%;
  height: 4px;
  border-radius: 2px;
  background: var(--ink-2);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.9s ease;
  z-index: 0;
}
.steps-line.is-visible::after { transform: scaleX(1); }

@media (max-width: 900px) {
  .steps-line { grid-template-columns: 1fr; }
  .steps-line::before, .steps-line::after { display: none; }
}

.step { position: relative; z-index: 1; }
.step-num {
  position: relative;
  z-index: 1;
  width: 44px;
  height: 44px;
  border: 2.5px solid var(--accent);
  border-radius: 50%;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-headline);
  font-weight: 600;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.step:hover .step-num { background: var(--accent); border-color: var(--accent-dark); color: var(--ink); }
.step h3 { margin-bottom: 8px; transition: color 0.2s ease; }
.step:hover h3 { color: var(--ink-2); }
.step p { color: var(--ink-2); margin-bottom: 0; }

/* ---------- Numbered steps: vertical alternating spine (About / Services process) ---------- */

.spine {
  position: relative;
  margin-top: 56px;
  padding: 8px 0;
}
.spine::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  border-radius: 2px;
  background: var(--ink-2);
  transform: translateX(-50%) scaleY(0);
  transform-origin: top center;
  transition: transform 0.9s ease;
}
.spine.is-visible::before { transform: translateX(-50%) scaleY(1); }

.spine-item {
  position: relative;
  width: 46%;
  padding: 4px 0 48px;
}
.spine-item:last-child { padding-bottom: 8px; }
.spine-item:nth-child(odd) { margin-right: 54%; text-align: right; }
.spine-item:nth-child(even) { margin-left: 54%; }

.spine-dot {
  position: absolute;
  top: 3px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: var(--bg);
  border: 3px solid var(--accent);
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
.spine-item:nth-child(odd) .spine-dot { right: -6.3%; }
.spine-item:nth-child(even) .spine-dot { left: -6.3%; }
.spine-item:hover .spine-dot { background: var(--accent); border-color: var(--accent-dark); }

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

@media (max-width: 760px) {
  .spine::before { left: 8px; }
  .spine-item,
  .spine-item:nth-child(odd),
  .spine-item:nth-child(even) {
    width: auto;
    margin-left: 34px;
    margin-right: 0;
    text-align: left;
  }
  .spine-item:nth-child(odd) .spine-dot,
  .spine-item:nth-child(even) .spine-dot { left: -30px; right: auto; }
}

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

.testimonial {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  background: var(--white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.testimonial:hover { border-color: var(--accent); box-shadow: 0 8px 24px rgba(18, 58, 92, 0.08); }
.testimonial .quote-mark {
  font-family: var(--font-headline);
  font-size: 2.4rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
  transition: color 0.2s ease;
}
.testimonial:hover .quote-mark { color: var(--accent-dark); }
.testimonial p.quote { color: var(--ink); margin-bottom: 14px; }
.testimonial .cite {
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--ink-2);
  transition: color 0.2s ease;
}
.testimonial:hover .cite { color: var(--ink); }

.testimonial-carousel {
  margin-top: 48px;
}
@media (max-width: 760px) {
  .testimonial-carousel {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 8px;
    margin-top: 40px;
  }
  .testimonial-carousel .testimonial {
    flex: 0 0 82%;
    scroll-snap-align: start;
  }
}
@media (min-width: 761px) {
  .testimonial-carousel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

.testimonial-feature {
  text-align: center;
  max-width: 760px;
  margin: 40px auto 0;
}
.testimonial-feature .quote-mark { font-size: 3rem; }
.testimonial-feature p.quote {
  font-family: var(--font-headline);
  font-size: 1.35rem;
  line-height: 1.5;
  color: var(--ink);
}
.testimonial-feature .rule { margin: 18px auto 18px; }

/* ---------- Promise list (plain, hairline rows — no cards) ---------- */

.promise-list {
  list-style: none;
  margin: 40px auto 0;
  padding: 0;
  max-width: 760px;
  display: grid;
}
.promise-list li {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px 16px;
  margin: 0 -16px;
  border-top: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 1.05rem;
  color: var(--ink);
  transition: background-color 0.2s ease;
}
.promise-list li:last-child { border-bottom: 1px solid var(--border); }
.promise-list li:hover { background: var(--tint); }
.promise-list li::before {
  content: "●";
  flex-shrink: 0;
  font-size: 9px;
  color: var(--accent-dark);
  margin-top: 8px;
  transition: color 0.2s ease;
}
.promise-list li:hover::before { color: var(--ink); }

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

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.service-card:hover { border-color: var(--accent); box-shadow: 0 8px 24px rgba(18, 58, 92, 0.08); }
.service-card.feature {
  grid-column: 1 / -1;
  border-top: 4px solid var(--accent);
  background: var(--tint);
}
.service-card.feature:hover { border-color: var(--border); border-top-color: var(--accent-dark); }
.service-card h3 { transition: color 0.2s ease; }
.service-card:hover h3 { color: var(--ink-2); }
.service-card .best-for {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  font-size: 14px;
  color: var(--ink-2);
  font-weight: 600;
}

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

.urgent-banner {
  border: 1px solid var(--border-accent);
  border-radius: var(--radius);
  padding: 20px 26px;
  text-align: center;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--ink);
  margin-bottom: 44px;
  background: var(--tint);
}
.urgent-banner a { color: var(--ink-2); text-decoration: underline; }

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

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

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

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

.option-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
@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: 15px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-weight: 500;
  color: var(--ink-2);
  cursor: pointer;
  transition: border-color 0.15s ease, color 0.15s ease, background-color 0.15s 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);
}
.option-pill input:checked + span:hover {
  border-color: var(--accent-dark);
}

.text-field { margin-bottom: 22px; }
.text-field label {
  display: block;
  font-weight: 600;
  font-size: 13px;
  color: var(--ink);
  margin-bottom: 8px;
}
.text-field input {
  width: 100%;
  padding: 14px 16px;
  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: 16px;
}
@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: 16px;
}
.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: 16px;
  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.15s ease;
}
.link-btn:hover { color: var(--ink); }

.reassurance {
  text-align: center;
  font-size: 13px;
  color: var(--ink-2);
  margin-top: 20px;
}

.confirmation { display: none; text-align: center; }
.confirmation.active { display: block; }
.confirmation .check-circle {
  width: 64px;
  height: 64px;
  margin: 0 auto 22px;
}
.confirmation .check-circle circle {
  fill: none;
  stroke: var(--accent);
  stroke-width: 2;
}
.confirmation .check-circle path {
  fill: none;
  stroke: var(--accent-dark);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 30;
  stroke-dashoffset: 30;
  transition: stroke-dashoffset 0.5s ease 0.15s;
}
.confirmation.active .check-circle path { stroke-dashoffset: 0; }

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

.site-footer {
  background: var(--ink);
  color: rgba(207, 227, 242, 0.85);
  padding: 72px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 48px;
}
@media (max-width: 760px) {
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
}
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand .crest { width: 30px; height: 30px; }
.footer-brand span {
  font-family: var(--font-headline);
  font-weight: 600;
  color: var(--cream);
  font-size: 1.1rem;
}
.footer-tagline { max-width: 320px; color: rgba(207, 227, 242, 0.65); margin-bottom: 24px; }
.footer-col h4 {
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.footer-col a { color: rgba(207, 227, 242, 0.85); font-weight: 400; transition: color 0.15s ease; }
.footer-col a:hover { color: var(--accent); }
.footer-cta { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; max-width: 260px; }

.footer-disclaimer {
  border-top: 1px solid rgba(207, 227, 242, 0.18);
  margin-top: 56px;
  padding-top: 26px;
  font-size: 13px;
  color: rgba(207, 227, 242, 0.55);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-disclaimer p { margin: 0; max-width: 700px; }

/* ---------- Sticky mobile call bar ---------- */

.mobile-call-bar {
  display: none;
}
@media (max-width: 720px) {
  .mobile-call-bar {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    gap: 10px;
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
    background: var(--ink);
    border-top: 3px solid var(--accent);
    box-shadow: 0 -6px 20px rgba(18, 58, 92, 0.18);
  }
  .mobile-call-bar .btn { flex: 1; padding: 13px 18px; font-size: 14px; }
  .mobile-call-bar .btn-primary { background: var(--accent); border-color: var(--accent); color: var(--ink); }
  .mobile-call-bar .btn-primary:hover { background: var(--accent-dark); border-color: var(--accent-dark); }
  .mobile-call-bar .btn-secondary { background: transparent; border-color: rgba(207, 227, 242, 0.5); color: var(--cream); }
  /* Room for the fixed bar so it never covers footer content */
  body { padding-bottom: 72px; }
}

/* ---------- 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 — 350ms fades with an 8px rise. Progress bars fill on scroll.
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-1.is-visible { transition-delay: 0.08s; }
.reveal-2.is-visible { transition-delay: 0.16s; }
.reveal-3.is-visible { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .rule, .steps-line::after, .spine::before {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
