/* ==========================================================================
   Redbud Home Group — Site styles (editorial layout)
   Brand (logo.com kit): off-white #FCFCEF · charcoal #2F2A29 · redbud #861212 · black #000000
   Type: Libre Caslon Display (display) + Alegreya Sans (body)
   ========================================================================== */

/* ---- Design tokens ---- */
:root {
  /* Grounds */
  --bone:          #F3EFE6;   /* page background */
  --bone-2:        #EAE4D6;   /* alternate sections, chips */
  --paper:         #FCFCEF;   /* the kit's off-white — cards, inputs, text on dark */

  /* Ink */
  --ink:           #2F2A29;   /* charcoal — headings, body, dark sections */
  --ink-soft:      #5E5654;
  --ink-faint:     #8A817E;
  --black:         #000000;

  /* Accents */
  --redbud:        #861212;   /* the mark — primary buttons, key accents */
  --redbud-deep:   #6B0E0E;
  --redbud-light:  #E8B7B3;   /* crimson on dark grounds */
  --moss:          #5F6B4F;   /* secondary accent: the leaf — eyebrows, icons, hairline highlights */
  --moss-light:    #B7C1A4;   /* moss on dark grounds */

  /* Semantic */
  --bg:       var(--bone);
  --surface:  var(--paper);
  --text:     var(--ink);
  --heading:  var(--ink);
  --line:     #D8D1C0;
  --line-dark:#4A4341;
  --focus:    var(--redbud);

  /* Type */
  --font-display: 'Libre Caslon Display', 'Times New Roman', Georgia, serif;
  --font-body:    'Alegreya Sans', 'Gill Sans', 'Segoe UI', system-ui, sans-serif;

  /* Shape / depth / layout */
  --radius:    4px;
  --radius-lg: 8px;
  --shadow-sm: 0 1px 2px rgba(47,42,41,.06), 0 2px 10px rgba(47,42,41,.05);
  --shadow:    0 18px 44px rgba(47,42,41,.14);
  --maxw:      1240px;
  --nav-h:     84px;
}

/* ---- Reset-ish ---- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: var(--ink); text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-display); color: var(--heading); font-weight: 400; line-height: 1.06; margin: 0 0 .4em; letter-spacing: -.005em; }
p { margin: 0 0 1rem; }
ol, ul { margin: 0; padding: 0; }
:focus-visible { outline: 3px solid var(--focus); outline-offset: 3px; border-radius: 2px; }
.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; }
.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

/* ---- Layout helpers ---- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(20px, 5vw, 56px); }
.section { padding-block: clamp(64px, 9vw, 128px); }

/* Eyebrow: Caslon caps, letterspaced, in moss */
.eyebrow {
  font-family: var(--font-display);
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--moss);
  margin: 0 0 .9rem;
  display: inline-flex; align-items: center; gap: .6rem;
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: currentColor; }
h2.title { font-size: clamp(2.2rem, 4.6vw, 3.6rem); max-width: 16ch; }
.lead { font-size: 1.18rem; color: var(--ink-soft); max-width: 52ch; }

/* Section head: title left, lead right (editorial two-column head) */
.head-split { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(24px, 4vw, 64px); align-items: end; margin-bottom: clamp(36px, 5vw, 64px); }
.head-split .lead { margin: 0; }

/* Leaf list icons */
.li-icon { width: 20px; height: 20px; flex: none; color: var(--moss); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--font-body); font-weight: 700; font-size: 1rem; letter-spacing: .02em;
  padding: .9rem 1.6rem; border-radius: var(--radius); border: 1.5px solid transparent;
  cursor: pointer; line-height: 1.1; text-align: center;
  transition: transform .18s ease, background-color .18s ease, box-shadow .18s ease, color .18s ease, border-color .18s ease;
}
.btn svg { width: 1.1em; height: 1.1em; flex: none; }
.btn-primary { background: var(--redbud); color: #fff; }
.btn-primary:hover { background: var(--redbud-deep); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn-secondary { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-secondary:hover { background: var(--ink); color: var(--paper); transform: translateY(-2px); }
.btn-light { background: var(--paper); color: var(--ink); }
.btn-light:hover { background: #fff; transform: translateY(-2px); }
.btn-ghost-light { background: transparent; color: var(--paper); border-color: rgba(252,252,239,.6); }
.btn-ghost-light:hover { background: var(--paper); color: var(--ink); }
.btn-lg { padding: 1.05rem 1.9rem; font-size: 1.08rem; }
.btn-link { display: inline-flex; align-items: center; gap: .5rem; font-weight: 700; color: var(--redbud); border-bottom: 1.5px solid currentColor; padding-bottom: .1rem; }
.btn-link:hover { color: var(--redbud-deep); }
@media (prefers-reduced-motion: reduce) { .btn:hover { transform: none; } }

/* ---- Header: links left · logo centered · phone + CTA right ---- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--bone);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .2s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.nav { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; height: var(--nav-h); gap: 1rem; }
.brand { display: inline-flex; align-items: center; justify-self: center; }
.brand img { height: 46px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 1.6rem; list-style: none; }
.nav-links a:not(.btn) { font-weight: 500; color: var(--ink); font-size: .98rem; letter-spacing: .01em; position: relative; padding: .3rem 0; }
.nav-links a:not(.btn)::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: var(--redbud); transform: scaleX(0); transform-origin: left; transition: transform .2s ease; }
.nav-links a:not(.btn):hover { color: var(--redbud); }
.nav-links a:not(.btn):hover::after { transform: scaleX(1); }
.nav-links .btn { display: none; }
.nav-right { display: flex; align-items: center; justify-content: flex-end; gap: 1.2rem; }
.nav-phone { font-weight: 700; color: var(--ink); display: inline-flex; align-items: center; gap: .45rem; white-space: nowrap; font-variant-numeric: tabular-nums; }
.nav-phone svg { width: 18px; height: 18px; color: var(--redbud); }
.nav-phone:hover { color: var(--redbud); }
.nav-phone .txt { display: inline; }
.nav-right .btn { padding: .7rem 1.2rem; font-size: .95rem; }
.nav-toggle { display: none; background: none; border: 0; padding: 8px 8px 8px 0; cursor: pointer; color: var(--ink); align-items: center; gap: .5rem; font-family: var(--font-display); font-size: .78rem; letter-spacing: .18em; text-transform: uppercase; }
.nav-toggle svg { width: 24px; height: 24px; }

/* ---- Hero: full-bleed photograph, centered headline, review card overlapping the bottom edge ---- */
.hero { position: relative; overflow: visible; color: var(--paper); }
.hero-media { position: relative; overflow: hidden; min-height: clamp(560px, 82vh, 820px); display: grid; place-items: center; text-align: center; }
.hero-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,16,15,.30) 0%, rgba(20,16,15,.42) 55%, rgba(20,16,15,.72) 100%);
}
.hero-copy { position: relative; z-index: 1; max-width: 900px; padding: clamp(88px, 11vw, 130px) clamp(20px, 5vw, 56px) clamp(150px, 15vw, 190px); }
.hero-copy .eyebrow { color: var(--paper); opacity: .9; font-size: .85rem; justify-content: center; text-shadow: 0 1px 3px rgba(0,0,0,.45); }
.hero-copy .eyebrow::after { content: ""; width: 26px; height: 1px; background: currentColor; }
.hero h1 { font-size: clamp(2.5rem, 6vw, 4.9rem); color: var(--paper); text-wrap: balance; margin-bottom: .5em; text-shadow: 0 2px 12px rgba(0,0,0,.25); }
.hero h1 .accent { color: #F2C9C4; }
.hero-lead { font-size: clamp(1.08rem, 1.5vw, 1.25rem); color: rgba(252,252,239,.9); max-width: 60ch; margin-inline: auto; }
.hero-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: .9rem; margin-top: 1.9rem; }
.hero-trust { display: flex; flex-wrap: wrap; justify-content: center; gap: .8rem 2rem; margin: 2.2rem 0 0; list-style: none; }
.hero-trust li { display: inline-flex; align-items: center; gap: .5rem; font-weight: 500; color: rgba(252,252,239,.92); font-size: .98rem; }
.hero-trust .li-icon { color: var(--moss-light); }

/* Review bar — spans the photo's bottom edge on wide screens */
.hero-card {
  position: absolute; z-index: 2; left: 50%; transform: translateX(-50%); bottom: -56px;
  width: calc(min(var(--maxw), 100%) - clamp(40px, 10vw, 112px));
  display: grid; grid-template-columns: 1fr 1.15fr auto; gap: clamp(20px, 3vw, 56px); align-items: center;
  background: var(--surface); color: var(--ink);
  border-radius: var(--radius-lg); padding: clamp(20px, 2.4vw, 30px) clamp(22px, 3vw, 44px);
  box-shadow: var(--shadow); text-align: left;
}
.hero-card .eyebrow { margin-bottom: .4rem; }
.hero-card h2 { font-size: clamp(1.4rem, 1.8vw, 1.7rem); margin: 0; }
.hero-card ul { list-style: none; margin: 0; display: grid; gap: .5rem; }
.hero-card li { display: flex; gap: .6rem; align-items: flex-start; color: var(--ink); font-size: 1rem; }
.hero-card li .li-icon { margin-top: 2px; }
.hero-card .cta { min-width: 220px; }
.hero-card .btn { width: 100%; }
.hero-card .fineprint { text-align: center; font-size: .85rem; color: var(--ink-soft); margin: .55rem 0 0; }
.hero-card .fineprint a { color: var(--redbud); font-weight: 700; }

/* ---- Marks: three statements in a ruled row (the editorial "stats" row, without inventing numbers) ---- */
.marks { padding-top: calc(56px + clamp(40px, 6vw, 72px)); padding-bottom: clamp(40px, 6vw, 72px); }
.marks .wrap { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--ink); }
.mark { padding: clamp(24px, 3vw, 36px) clamp(16px, 2.4vw, 32px) 0; border-left: 1px solid var(--line); display: grid; gap: .8rem; align-content: start; }
.mark:first-child { border-left: 0; padding-left: 0; }
.mark svg { width: 28px; height: 28px; color: var(--moss); }
.mark p { font-family: var(--font-display); font-size: clamp(1.25rem, 2vw, 1.7rem); line-height: 1.2; margin: 0; color: var(--ink); max-width: 14ch; }

/* ---- Process: sticky heading + photo on the left, steps stacked on the right ---- */
.process { background: var(--bone); }
.process .wrap { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(32px, 6vw, 96px); align-items: start; }
.process-intro { position: sticky; top: calc(var(--nav-h) + 24px); }
.process-intro .btn { margin-top: .4rem; }
.process-intro figure { margin: clamp(28px, 3vw, 40px) 0 0; max-width: 340px; }
.process-intro figure img { width: 100%; height: auto; border-radius: var(--radius-lg); aspect-ratio: 4 / 5; object-fit: cover; }
.steps { list-style: none; border-top: 1px solid var(--ink); }
.step { display: grid; grid-template-columns: 96px 1fr; gap: clamp(16px, 3vw, 40px); padding: clamp(28px, 3.4vw, 44px) 0; border-bottom: 1px solid var(--line); }
.step .num { font-family: var(--font-display); font-size: clamp(3rem, 5vw, 4.4rem); line-height: .9; color: var(--redbud); }
.step h3 { font-size: clamp(1.5rem, 2.2vw, 1.9rem); }
.step p { margin: 0; color: var(--ink-soft); max-width: 48ch; }

/* ---- Situations: a ledger — one ruled row per situation ---- */
.situations { background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.sit-list { list-style: none; border-top: 1px solid var(--ink); }
.sit {
  display: grid; grid-template-columns: 56px 1fr 1.5fr; gap: clamp(16px, 3vw, 48px); align-items: start;
  padding: clamp(20px, 2.4vw, 30px) 0; border-bottom: 1px solid var(--line);
  transition: background-color .2s ease;
}
.sit:hover { background: linear-gradient(90deg, var(--bone) 0%, rgba(243,239,230,0) 70%); }
.sit .ic { width: 32px; height: 32px; color: var(--moss); margin-top: .15rem; }
.sit .ic svg { width: 30px; height: 30px; }
.sit h3 { font-size: clamp(1.3rem, 1.8vw, 1.6rem); margin: 0; }
.sit p { font-size: 1.02rem; color: var(--ink-soft); margin: .2rem 0 0; }
.sit-note { margin: clamp(24px, 3vw, 36px) 0 0; font-size: 1.08rem; color: var(--ink); }

/* ---- Why us: five ruled columns, left-aligned ---- */
.why { background: var(--bone); }
.why-grid { display: grid; grid-template-columns: repeat(5, 1fr); border-top: 1px solid var(--ink); }
.why-item { padding: clamp(24px, 3vw, 36px) clamp(14px, 2vw, 28px) clamp(20px, 2.4vw, 32px); border-left: 1px solid var(--line); }
.why-item:first-child { border-left: 0; padding-left: 0; }
.why-item .ic { width: 40px; height: 40px; color: var(--redbud); display: block; margin-bottom: 1.4rem; }
.why-item .ic svg { width: 36px; height: 36px; }
.why-item h3 { font-size: 1.35rem; margin-bottom: .45rem; }
.why-item p { font-size: 1rem; color: var(--ink-soft); margin: 0; }

/* ---- About: copy left, tall photo right, offset down ---- */
.about { background: var(--bone-2); }
.about .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 96px); align-items: center; }
.about-copy p { color: var(--ink-soft); }
.about-points { list-style: none; margin: 1.4rem 0 1.9rem; display: grid; grid-template-columns: 1fr 1fr; gap: .8rem 1.4rem; }
.about-points li { display: flex; gap: .6rem; align-items: flex-start; color: var(--ink); }
.about-points .li-icon { margin-top: 3px; }
.about-figure { position: relative; }
.about-figure img { border-radius: var(--radius-lg); width: 100%; height: auto; aspect-ratio: 4 / 5; object-fit: cover; box-shadow: var(--shadow); }
.about-figure .plate {
  position: absolute; left: -24px; bottom: 32px; background: var(--paper); color: var(--ink);
  padding: .9rem 1.2rem; border-radius: var(--radius); box-shadow: var(--shadow-sm);
  font-family: var(--font-display); font-size: 1.05rem; line-height: 1.2; max-width: 240px;
}
.about-figure .plate .eyebrow { display: block; margin-bottom: .2rem; }
.about-figure .plate .eyebrow::before { display: none; }

/* ---- Photo band: caption bottom-left ---- */
.photo-band { position: relative; overflow: hidden; color: var(--paper); }
.photo-band img { width: 100%; height: clamp(320px, 52vw, 600px); object-fit: cover; }
.photo-band .band-caption {
  position: absolute; inset: 0; display: flex; align-items: flex-end;
  background: linear-gradient(180deg, rgba(20,16,15,0) 30%, rgba(20,16,15,.72) 100%);
}
.photo-band .band-caption .wrap { padding-bottom: clamp(32px, 5vw, 64px); }
.photo-band .eyebrow { color: var(--moss-light); }
.photo-band p.head { font-family: var(--font-display); color: var(--paper); font-size: clamp(1.8rem, 3.8vw, 3rem); line-height: 1.12; margin: 0; max-width: 22ch; text-shadow: 0 2px 10px rgba(0,0,0,.3); }

/* ---- Offer: dark section, steps row, wide form sheet ---- */
.offer { background: var(--ink); color: var(--paper); }
.offer h2, .offer h3 { color: var(--paper); }
.offer .eyebrow { color: var(--moss-light); }
.offer .lead { color: rgba(252,252,239,.8); }
.offer .head-split { align-items: end; }
.step-list { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line-dark); margin-bottom: clamp(36px, 5vw, 56px); }
.step-list li { display: flex; gap: 1rem; align-items: flex-start; padding: clamp(20px, 2.6vw, 32px) clamp(14px, 2vw, 28px) clamp(16px, 2vw, 24px) 0; border-left: 1px solid var(--line-dark); padding-left: clamp(14px, 2vw, 28px); }
.step-list li:first-child { border-left: 0; padding-left: 0; }
.step-list .n { flex: none; font-family: var(--font-display); font-size: 1.9rem; line-height: 1; color: var(--redbud-light); margin-top: .1rem; }
.step-list strong { display: block; font-family: var(--font-display); font-size: 1.25rem; font-weight: 400; color: var(--paper); }
.step-list p { margin: .15rem 0 0; color: rgba(252,252,239,.72); font-size: .98rem; }

.form-card { background: var(--surface); color: var(--ink); border-radius: var(--radius-lg); padding: clamp(24px, 3.4vw, 48px); box-shadow: var(--shadow); }
.form-card h3 { font-size: 1.7rem; margin-bottom: .2rem; color: var(--ink); }
.form-card .sub { color: var(--ink-soft); margin-bottom: 1.6rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 clamp(16px, 2.4vw, 32px); }
.form-grid .span-2 { grid-column: 1 / -1; }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-weight: 700; color: var(--ink); margin-bottom: .35rem; font-size: .98rem; }
.field label .req { color: var(--redbud); }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: 1.05rem; color: var(--ink);
  padding: .75rem .9rem; border: 1.5px solid var(--line); border-radius: var(--radius);
  background: #fff; transition: border-color .15s ease, box-shadow .15s ease; min-height: 48px;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--redbud); box-shadow: 0 0 0 3px rgba(134,18,18,.16); }
.field .help { font-size: .88rem; color: var(--ink-soft); margin-top: .35rem; display: block; }
.field .error { font-size: .9rem; color: var(--redbud); margin-top: .35rem; display: none; }
.field.invalid input, .field.invalid select { border-color: var(--redbud); }
.field.invalid .error { display: block; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-foot { display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(16px, 3vw, 40px); align-items: start; margin-top: .4rem; }
.form-foot .btn { width: 100%; }
.form-note { font-size: .88rem; color: var(--ink-soft); margin: .8rem 0 0; text-align: center; }
.form-success { display: none; text-align: center; padding: 1rem 0; }
.form-success.show { display: block; }
.form-success .check { width: 64px; height: 64px; border-radius: 50%; background: var(--bone-2); color: var(--redbud); display: grid; place-items: center; margin: 0 auto 1rem; }
.form-success .check svg { width: 34px; height: 34px; }
.form-success h3 { color: var(--ink); }
.form-success a { color: var(--redbud); font-weight: 700; }

/* ---- Consent / opt-in ---- */
.consent { border: 0; margin: 0; padding: 0; display: grid; gap: .85rem; }
.consent .check { display: flex; gap: .65rem; align-items: flex-start; }
.consent input[type="checkbox"] { width: 20px; height: 20px; min-width: 20px; margin: 3px 0 0; accent-color: var(--redbud); flex: none; cursor: pointer; }
.consent label { font-size: .88rem; color: var(--ink-soft); line-height: 1.5; cursor: pointer; }
.consent label .req { color: var(--redbud); }
.consent a { color: var(--redbud); text-decoration: underline; text-underline-offset: 2px; }
.consent strong { color: var(--ink); }
.consent-error { display: none; color: var(--redbud); font-size: .88rem; margin: 0; }
.consent.invalid .consent-error { display: block; }
.consent.invalid #agree:not(:checked) { outline: 2px solid var(--redbud); outline-offset: 2px; }

/* ---- Footer: light, ruled ---- */
.site-footer { background: var(--bone); color: var(--ink-soft); padding-block: clamp(48px, 6vw, 80px) 0; border-top: 1px solid var(--line); }
.site-footer a { color: var(--ink); }
.site-footer a:hover { color: var(--redbud); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: clamp(28px, 4vw, 64px); }
.footer-brand .brand { justify-self: start; }
.footer-brand img { height: 44px; width: auto; }
.footer-brand p { max-width: 36ch; margin-top: 1.1rem; }
.footer-col h4 { font-family: var(--font-display); color: var(--moss); font-size: .78rem; letter-spacing: .18em; text-transform: uppercase; margin: 0 0 1rem; }
.footer-col ul { list-style: none; display: grid; gap: .6rem; }
.footer-col .contact-line { display: flex; align-items: center; gap: .6rem; }
.footer-col .contact-line svg { width: 18px; height: 18px; color: var(--redbud); flex: none; }
.footer-bottom { border-top: 1px solid var(--line); margin-top: clamp(32px, 5vw, 56px); padding-block: 1.4rem; display: flex; flex-wrap: wrap; justify-content: space-between; gap: .6rem 1.5rem; font-size: .9rem; color: var(--ink-faint); }
.footer-legal { display: flex; flex-wrap: wrap; gap: 1.3rem; }
.footer-legal a { color: var(--ink-soft); }

/* ==========================================================================
   Legal pages (Privacy / Terms)
   ========================================================================== */
.legal-nav { background: var(--bone); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 100; }
.legal-nav .wrap { display: flex; align-items: center; justify-content: space-between; height: var(--nav-h); gap: 1rem; }
.legal-nav .brand { justify-self: auto; }
.legal-nav .back { display: inline-flex; align-items: center; gap: .45rem; font-weight: 700; color: var(--ink); }
.legal-nav .back:hover { color: var(--redbud); }
.legal-nav .back svg { width: 18px; height: 18px; }

.legal { padding-block: clamp(40px, 6vw, 80px); }
.legal .wrap { max-width: 820px; }
.legal h1 { font-size: clamp(2.1rem, 5vw, 3.1rem); }
.legal .updated { color: var(--ink-soft); font-size: .98rem; margin: -.2rem 0 1.8rem; }
.legal h2 { font-size: 1.6rem; color: var(--ink); margin: 2.2rem 0 .6rem; }
.legal h3 { font-family: var(--font-body); font-weight: 700; font-size: 1.08rem; color: var(--ink); margin: 1.3rem 0 .4rem; }
.legal p, .legal li { color: var(--ink); }
.legal ul { padding-left: 1.2rem; margin: .4rem 0 1rem; }
.legal li { margin-bottom: .45rem; }
.legal a { color: var(--redbud); text-decoration: underline; text-underline-offset: 2px; }
.legal .callout { background: var(--paper); border-left: 4px solid var(--moss); padding: 1rem 1.2rem; border-radius: var(--radius); margin: 1.4rem 0; font-size: 1rem; }
.legal .callout p:last-child { margin-bottom: 0; }

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

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1100px) {
  .why-grid { grid-template-columns: repeat(3, 1fr); }
  .why-item:nth-child(4) { border-left: 0; padding-left: 0; }
  .why-item:nth-child(n+4) { border-top: 1px solid var(--line); }
}
@media (max-width: 960px) {
  /* Hero card drops into the flow beneath the photo */
  .hero-card { position: relative; left: auto; bottom: auto; transform: none; width: auto; grid-template-columns: 1fr; gap: 1.1rem; margin: -56px clamp(20px, 5vw, 56px) 0; }
  .hero-card .cta { min-width: 0; }
  .hero-copy { padding-bottom: clamp(96px, 14vw, 140px); }
  .marks { padding-top: clamp(48px, 7vw, 72px); }
  .process .wrap { grid-template-columns: 1fr; }
  .process-intro { position: static; }
  .process-intro figure { display: none; }
  .about .wrap { grid-template-columns: 1fr; }
  .about-figure { order: -1; max-width: 480px; }
  .about-figure .plate { left: 16px; bottom: 16px; }
  .head-split { grid-template-columns: 1fr; align-items: start; }
  .sit { grid-template-columns: 44px 1fr; }
  .sit p { grid-column: 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .step-list { grid-template-columns: 1fr; border-top: 0; }
  .step-list li { border-left: 0; padding-left: 0; border-top: 1px solid var(--line-dark); }
  .form-foot { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .nav { grid-template-columns: auto 1fr auto; }
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-right .btn { display: none; }
  .nav-phone .txt { display: none; }
  .nav-phone svg { width: 22px; height: 22px; }
  .brand img { height: 40px; }

  /* Mobile menu */
  .nav-links.open {
    display: flex; flex-direction: column; align-items: flex-start; gap: .3rem;
    position: absolute; top: var(--nav-h); left: 0; right: 0;
    background: var(--bone); border-bottom: 1px solid var(--line);
    padding: 1rem clamp(20px, 5vw, 56px) 1.4rem; box-shadow: var(--shadow);
  }
  .nav-links.open li { width: 100%; }
  .nav-links.open a:not(.btn) { display: block; width: 100%; padding: .75rem 0; font-size: 1.1rem; border-bottom: 1px solid var(--line); }
  .nav-links.open a:not(.btn)::after { display: none; }
  .nav-links.open .btn { display: inline-flex; margin-top: .8rem; width: 100%; }
}
@media (max-width: 720px) {
  .marks .wrap { grid-template-columns: 1fr; border-top: 0; }
  .mark { border-left: 0; padding: 1.2rem 0; border-top: 1px solid var(--line); }
  .mark:first-child { border-top: 1px solid var(--ink); }
  .mark p { max-width: none; }
  .why-grid { grid-template-columns: 1fr; border-top: 1px solid var(--ink); }
  .why-item, .why-item:nth-child(4) { border-left: 0; padding-left: 0; border-top: 1px solid var(--line); }
  .why-item:first-child { border-top: 0; }
  .step { grid-template-columns: 64px 1fr; }
}
@media (max-width: 620px) {
  body { font-size: 17px; }
  .about-points, .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
  .hero-card { margin-inline: 16px; }
}
