/* ==========================================================================
   MF Capital Group LLC — mfcapitalgroupllc.com
   Editorial identity: deep forest + copper on warm cream, Fraunces display
   serif over Inter. Deliberately shares NO visual language with
   hmpropertygrp.com (no navy, no gold, no glassmorphism, no gradients).

   Order: tokens · fonts · reset · type · layout · header · hero · trust ·
          sections · steps · situations · compare · faq · form · footer ·
          motion · legal pages · print
   ========================================================================== */

/* ------------------------------------------------------------------ fonts */
/* Self-hosted. No Google Fonts CDN is contacted at runtime — the woff2 files
   in /assets/fonts/ are the only source. Latin subset, variable weight. */
@font-face {
  font-family: "Fraunces";
  src: url("/assets/fonts/fraunces-latin-var.woff2") format("woff2");
  font-weight: 400 800;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
                 U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193,
                 U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "InterVar";
  src: url("/assets/fonts/inter-latin-var.woff2") format("woff2");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
                 U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193,
                 U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ----------------------------------------------------------------- tokens */
:root {
  /* palette — the whole identity lives here */
  --forest:      #14342b;
  --forest-deep: #0e241d;
  --forest-soft: #1c4438;
  --copper:      #b46a3c;   /* large text, rules, graphics only (3.9:1 on cream) */
  --copper-ink:  #8f4f27;   /* small text on cream — 5.9:1, AA */
  --copper-deep: #a55c31;   /* button fill under cream text — 4.6:1, AA */
  --copper-lit:  #d08b5c;   /* small text on forest — 4.9:1, AA */
  --cream:       #faf6ef;
  --paper:       #f3ece0;
  --ink:         #1c1a17;
  --ink-soft:    #55504a;
  --rule:        rgba(180, 106, 60, .30);
  --rule-soft:   rgba(28, 26, 23, .12);

  --font-display: "Fraunces", "Iowan Old Style", "Palatino Linotype", Palatino,
                  Georgia, "Times New Roman", serif;
  --font-body:    "InterVar", -apple-system, BlinkMacSystemFont, "Segoe UI",
                  Roboto, Helvetica, Arial, sans-serif;

  --wrap: 1180px;
  --gap: clamp(1.5rem, 4vw, 3rem);
  --section-y: clamp(4rem, 9vw, 7.5rem);
  --radius: 3px;            /* editorial = almost square corners */
}

/* paper grain: one tiny inline SVG, no image request, ~0.5 KB */
:root {
  --grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
}

/* ------------------------------------------------------------------ reset */
*, *::before, *::after { box-sizing: border-box; }
/* overflow-x MUST be `clip`, never `hidden`, and it must live here rather
   than on body. `overflow-x: hidden` computes overflow-y to `auto`, turning
   that element into a scroll container — which makes every
   IntersectionObserver rooted at the viewport report zero intersection and
   leaves every .reveal section permanently invisible. `clip` clips without
   creating a scroller. */
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  overflow-x: clip;
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
/* the grain sits behind everything, never intercepts a click */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: var(--grain);
  opacity: .30;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 0;
}
body > * { position: relative; z-index: 1; }

img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--copper-ink); text-underline-offset: .18em; }
a:hover { color: var(--forest); }

:focus-visible {
  outline: 3px solid var(--copper-deep);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--forest); color: var(--cream);
  padding: .8rem 1.2rem; z-index: 99; font-weight: 600;
}
.skip-link:focus { left: .5rem; top: .5rem; }

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

/* ------------------------------------------------------------------- type */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -.015em;
  margin: 0 0 .5em;
  font-variation-settings: "opsz" 60, "SOFT" 0, "WONK" 0;
}
h1 { font-size: clamp(2.5rem, 6.4vw, 4.5rem); letter-spacing: -.028em; }
h2 { font-size: clamp(2rem, 4.4vw, 3.1rem); letter-spacing: -.022em; }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.6rem); line-height: 1.18; }
h4 { font-size: 1.06rem; font-family: var(--font-body); font-weight: 700;
     letter-spacing: .01em; line-height: 1.35; }
p  { margin: 0 0 1.1em; max-width: 62ch; }
strong { font-weight: 650; }

.lede {
  font-size: clamp(1.1rem, 1.9vw, 1.32rem);
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 46ch;
}

/* section eyebrow: "01 — Tell us about the house" */
.eyebrow {
  display: flex; align-items: baseline; gap: .7rem;
  font-family: var(--font-body);
  font-size: .74rem; font-weight: 650;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--copper-ink);
  margin: 0 0 1.1rem;
}
.eyebrow__num {
  font-family: var(--font-display);
  font-size: 1.05rem; font-weight: 700; letter-spacing: .04em;
  font-variant-numeric: tabular-nums;
}
.eyebrow::after {
  content: ""; flex: 1 1 auto; height: 1px;
  background: var(--rule); transform: translateY(-.28em);
  max-width: 8rem;
}
.on-forest .eyebrow { color: var(--copper-lit); }
.on-forest .eyebrow::after { background: rgba(208, 139, 92, .38); }

/* ----------------------------------------------------------------- layout */
.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }
.section { padding-block: var(--section-y); }
.section--paper  { background: var(--paper); }
.section--forest { background: var(--forest); color: var(--cream); }
.section--forest p, .section--forest li { color: rgba(250, 246, 239, .84); }
.rule { height: 1px; background: var(--rule); border: 0; margin: 0; }

/* asymmetric editorial grid: content is deliberately off-centre */
.split {
  display: grid;
  gap: var(--gap);
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 900px) {
  .split { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(2rem, 6vw, 5rem); }
  .split--flip { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); }
  .split--sticky > :first-child { position: sticky; top: 6.5rem; }
}

/* --------------------------------------------------------------- buttons */
.btn {
  --btn-bg: var(--copper-deep);
  --btn-fg: #fff8f0;
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--font-body);
  font-size: 1rem; font-weight: 650; letter-spacing: .01em;
  padding: .95rem 1.6rem;
  border: 1px solid transparent; border-radius: var(--radius);
  background: var(--btn-bg); color: var(--btn-fg);
  text-decoration: none; cursor: pointer;
  position: relative; isolation: isolate;
  transition: background-color .18s ease, transform .18s ease, color .18s ease;
}
.btn:hover  { background: #8f4f27; color: #fff8f0; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn--lg    { padding: 1.1rem 2rem; font-size: 1.06rem; }
.btn--block { width: 100%; }
.btn[disabled] { opacity: .6; cursor: not-allowed; transform: none; }

/* ghost button on forest */
.btn--ghost {
  --btn-bg: transparent; --btn-fg: var(--cream);
  border-color: rgba(250, 246, 239, .38);
}
.btn--ghost:hover { background: rgba(250, 246, 239, .1); color: var(--cream); }

/* the "animated copper underline" CTA — a text link that draws its rule */
.link-cta {
  --u: var(--copper-deep);
  display: inline-block;
  font-weight: 650; text-decoration: none; color: var(--forest);
  padding-bottom: .22em; position: relative;
}
.link-cta::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 2px; background: var(--u);
  transform: scaleX(0); transform-origin: left center;
  transition: transform .38s cubic-bezier(.2, .7, .3, 1);
}
.link-cta:hover::after, .link-cta:focus-visible::after { transform: scaleX(1); }
.on-forest .link-cta { color: var(--cream); --u: var(--copper-lit); }

/* the primary CTA button grows a copper rule beneath it on hover */
.btn--underline::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px;
  height: 2px; background: var(--copper);
  transform: scaleX(0); transform-origin: left center;
  transition: transform .4s cubic-bezier(.2, .7, .3, 1);
}
.btn--underline:hover::after, .btn--underline:focus-visible::after { transform: scaleX(1); }
@media (prefers-reduced-motion: reduce) {
  .link-cta::after, .btn--underline::after { transition: none; }
}

/* ------------------------------------------------------------------ header */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(250, 246, 239, .94);
  backdrop-filter: saturate(1.1) blur(6px);
  border-bottom: 1px solid var(--rule);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding-block: .85rem;
}
.brand { display: inline-flex; align-items: center; gap: .7rem; text-decoration: none; color: var(--ink); }
.brand__mark { width: 38px; height: 38px; flex: none; }
.brand__name {
  font-family: var(--font-display); font-weight: 650;
  font-size: 1.12rem; line-height: 1.05; letter-spacing: -.012em;
  font-variation-settings: "opsz" 30;
}
.brand__sub {
  display: block; font-family: var(--font-body);
  font-size: .66rem; font-weight: 600; letter-spacing: .16em;
  text-transform: uppercase; color: var(--copper-ink); margin-top: .18rem;
}
.header__actions { display: flex; align-items: center; gap: 1.1rem; }
.header__phone {
  font-weight: 650; text-decoration: none; color: var(--forest);
  white-space: nowrap; font-variant-numeric: tabular-nums;
}
.header__phone:hover { color: var(--copper-ink); }
@media (max-width: 720px) {
  .brand__sub { display: none; }
  .header__phone .header__phone-label { display: none; }
  .btn { padding: .8rem 1.1rem; font-size: .95rem; }
}
/* Phones: the header cannot hold brand + phone + button without the button
   wrapping to four lines. Drop the header button — the sticky bar at the
   bottom of the screen (shown below 760px) already carries that exact CTA,
   and tap-to-call is the stronger action up here anyway. */
@media (max-width: 600px) {
  .header__actions .btn { display: none; }
  .brand__name { font-size: 1rem; white-space: nowrap; }
  .brand__mark { width: 34px; height: 34px; }
  .header__phone { font-size: 1rem; }
  .site-header__inner { padding-block: .7rem; }
}

/* -------------------------------------------------------------------- hero */
.hero {
  background: var(--forest);
  color: var(--cream);
  padding-block: clamp(3.5rem, 8vw, 7rem);
  position: relative; overflow: clip;   /* clip, not hidden — see the note on html */
}
.hero::after {              /* one thin copper rule, bottom edge */
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 3px; background: var(--copper);
}
.hero__grid {
  display: grid; gap: clamp(2.2rem, 5vw, 4rem);
  grid-template-columns: 1fr; align-items: center;
}
@media (min-width: 940px) {
  .hero__grid { grid-template-columns: minmax(0, 6.5fr) minmax(0, 5.5fr); }
}
.hero h1 { color: var(--cream); max-width: 15ch; margin-bottom: .38em; }
.hero h1 em {
  font-style: normal; color: var(--copper-lit);
  font-variation-settings: "opsz" 90, "WONK" 1;
}
.hero__lede { color: rgba(250, 246, 239, .82); font-size: clamp(1.08rem, 1.7vw, 1.28rem); max-width: 40ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem 1.4rem; align-items: center; margin-top: 2rem; }
.hero__phone {
  color: var(--cream); text-decoration: none; font-weight: 600;
  display: inline-flex; align-items: center; gap: .5rem;
}
.hero__phone strong { font-variant-numeric: tabular-nums; letter-spacing: .01em; }
.hero__phone:hover { color: var(--copper-lit); }
.hero__meta {
  margin-top: 2.4rem; padding-top: 1.4rem;
  border-top: 1px solid rgba(208, 139, 92, .3);
  font-size: .9rem; color: rgba(250, 246, 239, .7); max-width: 44ch;
}
.hero__art { width: 100%; }
.hero__art svg { width: 100%; height: auto; }

/* ------------------------------------------------------------- trust strip */
.trust {
  background: var(--cream);
  border-bottom: 1px solid var(--rule);
}
.trust__list {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (min-width: 860px) { .trust__list { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.trust__list li {
  padding: 1.6rem 1.2rem;
  font-size: .95rem; font-weight: 600; line-height: 1.35;
  display: flex; align-items: center; gap: .65rem;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
@media (min-width: 860px) { .trust__list li { border-bottom: 0; } }
.trust__list li:last-child { border-right: 0; }
@media (max-width: 859px) { .trust__list li:nth-child(2n) { border-right: 0; } }
.trust__list svg { width: 18px; height: 18px; flex: none; color: var(--copper); }

/* ------------------------------------------------------------------- steps */
.steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 0; counter-reset: step; }
@media (min-width: 880px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.steps li {
  padding: 2rem 1.6rem 2.2rem 0;
  border-top: 1px solid var(--rule);
}
@media (min-width: 880px) {
  .steps li { padding: 2.2rem 2rem 2.4rem 0; }
  .steps li + li { padding-left: 2rem; border-left: 1px solid var(--rule); }
}
.steps__n {
  font-family: var(--font-display); font-size: 2.4rem; font-weight: 700;
  color: var(--copper); line-height: 1; display: block; margin-bottom: .7rem;
  font-variant-numeric: tabular-nums; font-variation-settings: "opsz" 100, "WONK" 1;
}
.steps h3 { margin-bottom: .35em; }
.steps p { color: var(--ink-soft); font-size: .98rem; margin-bottom: 0; }

/* -------------------------------------------------------------- situations */
.situations {
  list-style: none; margin: 2.2rem 0 0; padding: 0;
  display: grid; gap: 1px; background: var(--rule);
  border: 1px solid var(--rule);
}
@media (min-width: 660px) { .situations { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .situations { grid-template-columns: repeat(4, 1fr); } }
.situations li { background: var(--cream); padding: 1.6rem 1.4rem; }
.section--paper .situations li { background: var(--paper); }
.situations h3 {
  font-size: 1.08rem; font-family: var(--font-body); font-weight: 700;
  letter-spacing: -.005em; margin-bottom: .4em;
}
.situations h3::before {
  content: ""; display: block; width: 26px; height: 2px;
  background: var(--copper); margin-bottom: .9rem;
}
.situations p { font-size: .93rem; color: var(--ink-soft); margin: 0; }

/* ----------------------------------------------------------------- compare */
.compare-wrap { overflow-x: auto; margin-top: 2rem; -webkit-overflow-scrolling: touch; }
.compare {
  width: 100%; min-width: 34rem; border-collapse: collapse;
  font-size: .97rem; text-align: left;
}
.compare caption {
  text-align: left; color: var(--ink-soft); font-size: .9rem;
  padding-bottom: .9rem; max-width: 60ch;
}
.compare th, .compare td { padding: .95rem 1rem; border-bottom: 1px solid var(--rule-soft); vertical-align: top; }
.compare thead th {
  font-family: var(--font-body); font-size: .74rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: var(--copper-ink);
  border-bottom: 1px solid var(--rule); white-space: nowrap;
}
.compare tbody th { font-weight: 650; width: 30%; }
.compare .col-us { background: rgba(180, 106, 60, .07); font-weight: 600; }
.compare tbody tr:last-child th, .compare tbody tr:last-child td { border-bottom: 0; }

.candour {
  margin-top: 1.8rem; padding: 1.4rem 1.5rem;
  border-left: 3px solid var(--copper);
  background: rgba(180, 106, 60, .07);
}
.candour p:last-child { margin-bottom: 0; }
.candour strong { color: var(--forest); }

/* --------------------------------------------------------------------- faq */
.faq { margin-top: 1.5rem; border-top: 1px solid var(--rule); }
.faq details { border-bottom: 1px solid var(--rule); }
.faq summary {
  cursor: pointer; list-style: none; padding: 1.25rem 2.5rem 1.25rem 0;
  font-family: var(--font-display); font-size: 1.16rem; font-weight: 600;
  line-height: 1.3; letter-spacing: -.012em; position: relative;
  font-variation-settings: "opsz" 40;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: .35rem; top: 1.65rem;
  width: 13px; height: 13px;
  border-right: 2px solid var(--copper); border-bottom: 2px solid var(--copper);
  transform: rotate(45deg); transition: transform .25s ease;
}
.faq details[open] summary::after { transform: rotate(-135deg); top: 1.9rem; }
.faq summary:hover { color: var(--copper-ink); }
.faq__a { padding: 0 2.5rem 1.5rem 0; }
.faq__a p { color: var(--ink-soft); margin-bottom: .8em; }
.faq__a p:last-child { margin-bottom: 0; }
@media (prefers-reduced-motion: reduce) { .faq summary::after { transition: none; } }

/* -------------------------------------------------------------------- form */
.form-card {
  background: var(--cream);
  border: 1px solid var(--rule);
  border-top: 3px solid var(--copper);
  padding: clamp(1.5rem, 3.4vw, 2.4rem);
}
.section--forest .form-card { background: var(--cream); color: var(--ink); }
.section--forest .form-card p { color: var(--ink-soft); }

.progress { display: flex; gap: .5rem; margin-bottom: 1.6rem; }
.progress__bar { height: 3px; flex: 1; background: var(--rule-soft); }
.progress__bar.is-done { background: var(--copper); }

.step { display: none; }
.step.is-active { display: block; animation: stepIn .34s ease both; }
@keyframes stepIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .step.is-active { animation: none; } }
/* With JavaScript off the stepper can never advance, so it is hidden entirely
   and the <noscript> form below takes over. */
.no-js .form-shell { display: none; }

.step__label {
  display: block; font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 650; line-height: 1.15;
  letter-spacing: -.018em; margin-bottom: .3rem;
}
.step__hint { color: var(--ink-soft); font-size: .95rem; margin-bottom: 1.4rem; }

.field { margin-bottom: 1.1rem; }
.field label { display: block; font-size: .88rem; font-weight: 650; margin-bottom: .4rem; }
.req { color: var(--copper-ink); }
.optional { color: var(--ink-soft); font-weight: 500; }

.input, select.input, textarea.input {
  width: 100%; font-family: var(--font-body); font-size: 1rem;
  padding: .82rem .9rem; color: var(--ink);
  background: #fff; border: 1px solid rgba(28, 26, 23, .22);
  border-radius: var(--radius);
  transition: border-color .16s ease, box-shadow .16s ease;
}
.input:focus {
  outline: none; border-color: var(--copper-deep);
  box-shadow: 0 0 0 3px rgba(180, 106, 60, .18);
}
.input[aria-invalid="true"] { border-color: #a5311f; }
select.input {
  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' fill='none' stroke='%238f4f27' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right .9rem center;
  padding-right: 2.4rem;
}
.field-row { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 520px) { .field-row { grid-template-columns: 2fr 1fr; } }

.error-msg { color: #8f2718; font-size: .85rem; margin: .35rem 0 0; min-height: 1px; font-weight: 600; }

/* honeypot — off-screen for humans, irresistible to bots */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.consent {
  display: flex; gap: .75rem; align-items: flex-start;
  padding: 1rem 1.1rem; margin: 1.3rem 0;
  border: 1px solid var(--rule); background: rgba(180, 106, 60, .05);
}
.consent input[type="checkbox"] {
  flex: none; width: 20px; height: 20px; margin-top: .12rem;
  accent-color: var(--copper-deep); cursor: pointer;
}
/* This is the most legally important sentence on the site and an A2P
   reviewer has to be able to read it. Keep it at 14px or larger. */
.consent label { font-size: .88rem; line-height: 1.55; color: var(--ink-soft); cursor: pointer; }
.consent.is-invalid { border-color: #a5311f; background: rgba(165, 49, 31, .06); }
.consent a { color: var(--copper-ink); }

.form-note { font-size: .82rem; color: var(--ink-soft); margin: .9rem 0 0; }

.thanks { text-align: left; }
.thanks__mark {
  width: 46px; height: 46px; margin-bottom: 1.1rem;
  display: grid; place-items: center;
  border: 2px solid var(--copper); border-radius: 50%; color: var(--copper-ink);
}
.thanks ul { margin: 1.2rem 0 0; padding: 0; list-style: none; }
.thanks li { padding: .6rem 0 .6rem 1.4rem; position: relative; font-size: .95rem; color: var(--ink-soft); }
.thanks li::before {
  content: ""; position: absolute; left: 0; top: 1.05rem;
  width: 8px; height: 1px; background: var(--copper);
}

.back-step {
  background: none; border: 0; padding: .4rem 0; margin-bottom: .6rem;
  font-family: var(--font-body); font-size: .85rem; font-weight: 600;
  color: var(--ink-soft); cursor: pointer;
}
.back-step:hover { color: var(--copper-ink); }

.noscript-form { margin-top: 1rem; }

/* ------------------------------------------------------------------ footer */
.site-footer {
  background: var(--forest-deep); color: rgba(250, 246, 239, .8);
  padding-top: clamp(3rem, 6vw, 5rem); font-size: .93rem;
  position: relative;
}
.site-footer a { color: rgba(250, 246, 239, .88); text-decoration: none; }
.site-footer a:hover { color: var(--copper-lit); text-decoration: underline; }
/* h3, not h4: the preceding heading on every page is an h2, and skipping a
   level is an accessibility failure. The look is unchanged. */
.site-footer h3 {
  font-family: var(--font-body);
  color: var(--copper-lit); font-size: .72rem; font-weight: 700;
  letter-spacing: .18em; line-height: 1.3; margin-bottom: 1rem;
  text-transform: uppercase;
}
.footer__grid { display: grid; gap: 2.2rem; grid-template-columns: 1fr; }
@media (min-width: 780px) { .footer__grid { grid-template-columns: 1.6fr 1fr 1fr; gap: 3rem; } }
.footer__grid ul { list-style: none; margin: 0; padding: 0; }
.footer__grid li { margin-bottom: .55rem; line-height: 1.5; }
.footer__brand { display: inline-flex; align-items: center; gap: .7rem; text-decoration: none; margin-bottom: 1rem; }
.footer__brand .brand__name { color: var(--cream); }
.footer__brand:hover { text-decoration: none; }
.footer__blurb { max-width: 34ch; color: rgba(250, 246, 239, .72); }

/* Cleveland skyline: a restrained silhouette above the legal line */
.skyline { margin-top: clamp(2.5rem, 5vw, 4rem); line-height: 0; }
.skyline svg { width: 100%; height: auto; display: block; color: rgba(208, 139, 92, .3); }

.footer__bottom {
  border-top: 1px solid rgba(250, 246, 239, .14);
  margin-top: 1.2rem; padding-block: 1.3rem;
  display: flex; flex-wrap: wrap; gap: .6rem 1.5rem; justify-content: space-between;
  font-size: .85rem; color: rgba(250, 246, 239, .6);
}
.footer__legal {
  font-size: .78rem; line-height: 1.6; color: rgba(250, 246, 239, .55);
  max-width: 88ch; padding-bottom: 2.5rem; margin: 0;
}
.footer__legal strong { color: rgba(250, 246, 239, .78); font-weight: 650; }

/* --------------------------------------------------------------- sticky CTA */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 45;
  padding: .7rem .9rem calc(.7rem + env(safe-area-inset-bottom));
  background: rgba(250, 246, 239, .96);
  border-top: 1px solid var(--rule);
  display: none;
  backdrop-filter: blur(6px);
}
@media (max-width: 760px) { .sticky-cta { display: block; } body { padding-bottom: 4.4rem; } }

/* ------------------------------------------------------------------ motion */
.reveal { opacity: 0; transform: translateY(14px); }
.reveal.is-in { opacity: 1; transform: none; transition: opacity .6s ease, transform .6s cubic-bezier(.2, .7, .3, 1); }
/* JS off (or no IntersectionObserver): never leave content invisible */
.no-js .reveal { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal.is-in { opacity: 1; transform: none; transition: none; }
}

/* ------------------------------------------------------------- legal pages */
.legal { max-width: 74ch; }
.legal h1 { font-size: clamp(2.1rem, 4.6vw, 3.2rem); margin-bottom: .3em; }
.legal h2 {
  font-size: clamp(1.35rem, 2.4vw, 1.72rem);
  margin-top: 2.4em; padding-top: 1.1rem; border-top: 1px solid var(--rule);
}
.legal h3 { font-size: 1.12rem; margin-top: 1.8em; font-family: var(--font-body); font-weight: 700; }
.legal p, .legal li { color: var(--ink-soft); }
.legal ul, .legal ol { padding-left: 1.2rem; margin-bottom: 1.2em; }
.legal li { margin-bottom: .5em; }
.legal .updated { font-size: .88rem; color: var(--ink-soft); margin-bottom: 2rem; }
.back-home {
  display: inline-block; margin-bottom: 2rem; font-size: .88rem;
  font-weight: 650; color: var(--copper-ink); text-decoration: none;
}
.back-home:hover { text-decoration: underline; }
.callout {
  border-left: 3px solid var(--copper);
  background: rgba(180, 106, 60, .07);
  padding: 1.3rem 1.5rem; margin: 1.8rem 0;
}
.callout p:last-child { margin-bottom: 0; }
.callout strong { color: var(--forest); }
/* ORC 5301.95 statutory block — deliberately loud, it is a legal disclosure */
.statute {
  border: 2px solid var(--forest);
  background: var(--paper);
  padding: 1.4rem 1.5rem; margin: 1.8rem 0;
}
.statute p { color: var(--ink); }
.statute p:last-child { margin-bottom: 0; }
.statute__title {
  font-family: var(--font-body); font-size: .74rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase; color: var(--forest);
  margin-bottom: .8rem;
}

/* ------------------------------------------------------------------- print */
@media print {
  body::before, .site-header, .sticky-cta, .hero__art, .skyline { display: none !important; }
  body { background: #fff; color: #000; font-size: 11pt; }
  .section { padding-block: 1rem; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: .8em; }
}
