/* =========================================================
   TERNION SAGE — light content, dark accents
   Light reading surfaces by default; dark is reserved for the
   header, hero/page-hero, pull-quote band, CTA, and footer.
   Solid copper buttons drawn from the logo.
   Token NAMES are stable; dark scopes only change their VALUES.
   ========================================================= */

:root {
  /* Light defaults (content) */
  --bg:        #ffffff;   /* default section background */
  --bg2:       #f3f4f6;   /* alternate light section */
  --surface:   #ffffff;   /* cards */
  --surface-2: #f7f8fa;   /* inset / subtle fills */
  --line:      #e5e6ea;
  --line-2:    #d7d9df;
  --ink:       #20232a;   /* headings + strong text */
  --ink-soft:  #54585f;   /* body text */

  /* Brand (from logo) */
  --accent:      #e0612e;  /* copper — solid buttons & accents */
  --accent-deep: #c44e22;  /* hover / pressed */
  --amber:       #e3a44f;  /* warm accent, used on dark bands */

  --max:     1180px;
  --gutter:  clamp(20px, 5vw, 64px);
  --radius:  6px;
  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shadow: 0 22px 50px -32px rgba(20,22,28,.35);
}

/* ---------- dark scopes: same token names, dark values ----------
   Includes the content cards/boxes, so they render dark-on-light even
   when they sit inside a light section. */
.site-header, .hero, .page-hero, .quote-band, .cta-band, .site-footer, .subnav, .theme-dark,
.trio, .stats, .card, .award, .pub-card {
  --bg:        #21242a;
  --bg2:       #272b31;
  --surface:   #2f333b;
  --surface-2: #272b31;
  --line:      rgba(255,255,255,.12);
  --line-2:    rgba(255,255,255,.22);
  --ink:       #f2f3f5;
  --ink-soft:  #aab0ba;
}
/* resting lift so the dark cards read as boxes on the light sections */
.trio, .stats, .card, .award, .pub-card { box-shadow: 0 16px 40px -34px rgba(12,14,18,.6); }

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0; font-family: var(--sans); color: var(--ink-soft);
  background: var(--bg); line-height: 1.65; font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; line-height: 1.12;
  letter-spacing: -0.005em; color: var(--ink); margin: 0 0 .5em; }
h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.4vw, 1.85rem); }
p  { margin: 0 0 1.1em; }

.eyebrow { font-size: .75rem; font-weight: 600; letter-spacing: .22em;
  text-transform: uppercase; color: var(--accent); margin: 0 0 1.1rem;
  display: inline-flex; align-items: center; gap: .7rem; }
.eyebrow::before { content: ""; width: 28px; height: 1px; background: currentColor; display: inline-block; }

/* ---------- layout ---------- */
.wrap { max-width: var(--max); margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }
.section { padding: clamp(60px, 9vw, 116px) 0; background: var(--bg); color: var(--ink-soft); }
.section--alt { background: var(--bg2); }
/* Force a light panel even inside a dark-themed page (e.g. the coming-soon teaser);
   cards inside still render dark because they re-scope their own tokens. */
.section--light {
  --bg: #ffffff; --bg2: #f3f4f6; --surface: #ffffff; --surface-2: #f7f8fa;
  --line: #e5e6ea; --line-2: #d7d9df; --ink: #20232a; --ink-soft: #54585f;
  background: var(--bg2); color: var(--ink-soft);
}
.section--light h1, .section--light h2, .section--light h3 { color: var(--ink); }
.lead { font-size: 1.22rem; line-height: 1.6; color: var(--ink-soft); max-width: 62ch; }
.center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.gradient-text { background: linear-gradient(95deg, var(--accent), var(--amber));
  -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ---------- buttons (solid copper) ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--sans); font-weight: 600; font-size: .82rem;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 1rem 1.8rem; border-radius: var(--radius);
  border: 1px solid var(--accent); background: var(--accent); color: #fff;
  cursor: pointer; transition: background .2s ease, border-color .2s ease, transform .2s ease, color .2s ease;
}
.btn:hover { background: var(--accent-deep); border-color: var(--accent-deep); }
.btn--accent { background: var(--accent); border-color: var(--accent); color: #fff; }
.btn--accent:hover { background: var(--accent-deep); border-color: var(--accent-deep); }
.btn--ghost { background: transparent; color: var(--ink); border: 1px solid var(--line-2); }
.btn--ghost:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.btn .arrow { transition: transform .25s ease; }
.btn:hover .arrow { transform: translateX(4px); }

.textlink { font-family: var(--sans); font-weight: 600; font-size: .82rem;
  letter-spacing: .1em; text-transform: uppercase; color: var(--accent);
  display: inline-flex; align-items: center; gap: .5rem;
  border-bottom: 1px solid var(--line-2); padding-bottom: 3px;
  transition: gap .25s, border-color .25s, color .25s; }
.textlink:hover { gap: .85rem; border-color: var(--accent); color: var(--accent-deep); }

/* ---------- header / nav (dark) ---------- */
.site-header { position: sticky; top: 0; z-index: 100;
  background: rgba(26,29,33,.82); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 78px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand__lockup { height: 34px; width: auto; display: block; }
.site-footer .brand__lockup { height: 30px; margin-bottom: .2rem; }
.brand__logo { width: 34px; height: 40px; flex: none; }
.brand__name { font-family: var(--serif); font-size: 1.45rem; letter-spacing: .05em; color: #fff; line-height: 1; }
.brand__tag { font-size: .56rem; letter-spacing: .3em; text-transform: uppercase; color: var(--ink-soft); margin-top: 4px; }
.nav__menu { display: flex; align-items: center; gap: 1.9rem; list-style: none; margin: 0; padding: 0; }
.nav__menu > li { position: relative; }
.nav__menu a { font-size: .82rem; font-weight: 500; color: var(--ink-soft); padding: 8px 0; display: inline-block; transition: color .2s; }
.nav__menu a:hover, .nav__menu a[aria-current="page"] { color: #fff; }
.nav__menu a[aria-current="page"] { border-bottom: 2px solid var(--accent); }
.has-sub > a::after { content: "\203A"; margin-left: 6px; color: var(--ink-soft); }
.subnav { position: absolute; top: 100%; left: -16px; background: #262a30;
  border: 1px solid var(--line); box-shadow: var(--shadow); border-radius: var(--radius);
  list-style: none; margin: 0; padding: 10px; min-width: 238px;
  opacity: 0; visibility: hidden; transform: translateY(8px); transition: all .22s ease; }
.has-sub:hover .subnav, .has-sub:focus-within .subnav { opacity: 1; visibility: visible; transform: translateY(0); }
.subnav a { display: block; padding: 9px 12px; border-radius: var(--radius); font-size: .85rem; color: var(--ink-soft); }
.subnav a:hover { background: rgba(255,255,255,.05); color: #fff; }
.nav__cta { margin-left: .5rem; }
.nav__cta a { color: #fff !important; }
.nav__toggle { display: none; background: none; border: 0; cursor: pointer; width: 40px; height: 40px; padding: 8px; }
.nav__toggle span { display: block; height: 2px; background: #f2f3f5; margin: 5px 0; transition: .25s; }

/* ---------- hero (dark) ---------- */
.hero { position: relative; overflow: hidden; border-bottom: 1px solid var(--line);
  background:
    radial-gradient(120% 95% at 85% -15%, rgba(224,97,46,.20), transparent 55%),
    radial-gradient(90% 80% at -5% 115%, rgba(227,164,79,.10), transparent 55%),
    #21242a; }
.hero__inner { padding: clamp(70px, 11vw, 150px) 0 clamp(60px, 8vw, 110px); position: relative; z-index: 2; }
.hero h1 { max-width: 15ch; }
.hero h1 .accent { font-style: italic; }
.hero__tagline { font-family: var(--serif); font-style: italic; font-size: clamp(1.3rem, 2.4vw, 1.8rem); color: var(--ink-soft); margin: 0 0 2rem; }
.hero__rule { width: 64px; height: 3px; background: linear-gradient(90deg, var(--accent), var(--amber)); margin: 0 0 2rem; }
.hero__cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }
.hero__mark { position: absolute; right: 2%; top: 50%; transform: translateY(-50%); z-index: 1; opacity: .12; width: 300px; height: 350px; }

/* ---------- service trio ---------- */
.trio { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.trio__card { background: var(--surface); padding: clamp(28px, 4vw, 46px); transition: background .3s; }
.trio__num { font-family: var(--serif); font-size: .95rem; letter-spacing: .2em; color: var(--accent); }
.trio__card h3 { margin-top: .8rem; }
.trio__card p { color: var(--ink-soft); margin-bottom: 0; font-size: .98rem; }

/* ---------- stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.stat { background: var(--surface); padding: clamp(24px, 3vw, 38px); text-align: center; }
.stat__num { font-family: var(--serif); font-size: clamp(2.2rem, 4vw, 3rem); color: var(--accent); line-height: 1; }
.stat__label { font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-soft); margin-top: .6rem; }

/* ---------- cards ---------- */
.grid { display: grid; gap: clamp(20px, 3vw, 32px); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(26px, 3vw, 36px); display: flex; flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--line-2); }
.card h3 { font-size: 1.3rem; }
.card h4 { font-family: var(--sans); font-weight: 600; font-size: .76rem; letter-spacing: .16em; text-transform: uppercase; color: var(--accent); margin-bottom: .8rem; }
.card p { color: var(--ink-soft); font-size: .97rem; }
.card .textlink { margin-top: auto; }

/* ---------- publication cards ---------- */
.pub-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: transform .25s, box-shadow .25s; }
.pub-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.pub-card__band { aspect-ratio: 4 / 3; display: flex; align-items: flex-end; padding: 20px; color: #fff; }
.pub-card__band--1 { background: linear-gradient(155deg, #e0612e, #8a3c22); }
.pub-card__band--2 { background: linear-gradient(155deg, #9a4730, #48211a); }
.pub-card__band--3 { background: linear-gradient(155deg, #e3a44f, #b3631f); }
.pub-card__band--4 { background: linear-gradient(155deg, #4a4d53, #2c2f36); }
.pub-card__band h3 { color: #fff; margin: 0; font-size: 1.55rem; }
.pub-card__body { padding: 20px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.pub-card__body p { font-size: .93rem; color: var(--ink-soft); margin-bottom: .35rem; }
.pub-card__circ { font-family: var(--serif); font-style: italic; color: var(--accent); margin-bottom: 1.1rem !important; }
.pub-card__body .textlink { margin-top: auto; }

/* ---------- split / feature media ---------- */
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
.split--reverse .split__media { order: 2; }
.split__media { aspect-ratio: 4 / 5; border-radius: var(--radius); position: relative; overflow: hidden; box-shadow: var(--shadow); background: linear-gradient(150deg, #e0612e, #5e2a1c); }
.split__media--2 { background: linear-gradient(150deg, #545862, #26282c); }
.split__media-label { position: absolute; inset: auto 0 0 0; padding: 28px; font-family: var(--serif); font-style: italic; color: rgba(255,255,255,.94); font-size: 1.3rem; }
.placeholder-note { position: absolute; top: 14px; left: 14px; font-size: .62rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.7); border: 1px dashed rgba(255,255,255,.5); padding: 4px 8px; border-radius: 2px; }

/* ---------- editorial feature list ---------- */
.feature-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.6rem; }
.feature-list li { display: grid; grid-template-columns: auto 1fr; gap: 1.2rem; align-items: start; }
.feature-list .n { font-family: var(--serif); font-size: 1.05rem; color: var(--accent); border: 1px solid var(--line-2); border-radius: 50%; width: 46px; height: 46px; display: grid; place-items: center; flex: none; }
.feature-list strong { display: block; font-family: var(--serif); font-weight: 500; font-size: 1.15rem; margin-bottom: .2rem; color: var(--ink); }
.feature-list p { margin: 0; color: var(--ink-soft); font-size: .98rem; }

/* ---------- process steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px,2.5vw,28px); counter-reset: step; }
.step { position: relative; padding-top: 2.4rem; }
.step::before { counter-increment: step; content: "0" counter(step); position: absolute; top: 0; left: 0; font-family: var(--serif); font-size: 1.4rem; color: var(--accent); }
.step h3 { font-size: 1.2rem; }
.step p { color: var(--ink-soft); font-size: .95rem; margin: 0; }

/* ---------- pills ---------- */
.pills { display: flex; flex-wrap: wrap; gap: .6rem; list-style: none; padding: 0; margin: 1.4rem 0 0; }
.pills li { border: 1px solid var(--line-2); background: var(--surface); padding: .5rem 1rem; border-radius: 100px; font-size: .9rem; color: var(--ink-soft); }

/* ---------- quote band (dark) ---------- */
.quote-band { background: linear-gradient(120deg, #2c2017, #21242a); }
.quote { text-align: center; max-width: 34ch; margin: 0 auto; }
.quote p { font-family: var(--serif); font-size: clamp(1.5rem, 3vw, 2.2rem); line-height: 1.35; font-style: italic; color: var(--ink); }
.quote cite { font-family: var(--sans); font-style: normal; font-size: .8rem; letter-spacing: .16em; text-transform: uppercase; color: var(--amber); }

/* ---------- CTA band (dark) ---------- */
.cta-band { background: radial-gradient(120% 140% at 90% 10%, rgba(224,97,46,.22), transparent 55%), #21242a; }
.cta-band h2 { color: var(--ink); }

/* ---------- recognition ---------- */
.awards { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px,3vw,28px); }
.award { border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(24px,3vw,34px); background: var(--surface); }
.award .yr { font-family: var(--serif); color: var(--accent); font-size: .95rem; letter-spacing: .14em; }
.award h3 { font-size: 1.25rem; margin: .5rem 0 .4rem; }
.award p { color: var(--ink-soft); font-size: .92rem; margin: 0; }

/* ---------- interior page hero (dark) ---------- */
.page-hero { padding: clamp(70px, 9vw, 120px) 0 clamp(40px, 5vw, 64px); border-bottom: 1px solid var(--line);
  background: radial-gradient(110% 100% at 90% -20%, rgba(224,97,46,.16), transparent 55%), #21242a; }
.page-hero h1 { max-width: 19ch; }
.breadcrumb { font-size: .76rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 1.4rem; }
.breadcrumb a:hover { color: var(--amber); }

/* ---------- prose ---------- */
.prose { max-width: 70ch; }
.prose h3 { margin-top: 2.4rem; }
.prose p { color: var(--ink-soft); }
.prose strong { color: var(--ink); font-weight: 600; }
.prose a { color: var(--accent); border-bottom: 1px solid var(--line-2); }
.prose a:hover { border-color: var(--accent); color: var(--accent-deep); }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q { width: 100%; text-align: left; background: none; border: 0; cursor: pointer; padding: 1.5rem 0; display: flex; justify-content: space-between; gap: 1.5rem; align-items: center; font-family: var(--serif); font-size: 1.2rem; color: var(--ink); }
.faq__q .icon { flex: none; width: 24px; height: 24px; position: relative; }
.faq__q .icon::before, .faq__q .icon::after { content: ""; position: absolute; background: var(--accent); inset: 0; margin: auto; }
.faq__q .icon::before { width: 16px; height: 2px; }
.faq__q .icon::after { width: 2px; height: 16px; transition: transform .3s; }
.faq__item[open] .faq__q .icon::after { transform: rotate(90deg) scaleX(0); }
.faq__item[open] .faq__q { color: var(--accent); }
.faq__a { padding: 0 0 1.6rem; color: var(--ink-soft); max-width: 72ch; }

/* ---------- forms ---------- */
.form-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(28px, 4vw, 44px); box-shadow: var(--shadow); }
.field { margin-bottom: 1.3rem; }
.field > label { display: block; font-size: .78rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: .5rem; }
.req { color: var(--accent); }
.optional { text-transform: none; letter-spacing: 0; font-weight: 400; color: var(--ink-soft); }
.tgroup { border-top: 1px solid var(--line); margin-top: .4rem; padding-top: 1.4rem; }
.tgroup[hidden] { display: none; }
.tform-hint { font-size: .92rem; color: var(--ink-soft); background: var(--surface-2); border: 1px dashed var(--line-2); border-radius: var(--radius); padding: .85rem 1rem; margin: .2rem 0 0; }
.cl-resident[hidden], .cl-nonresident[hidden] { display: none; }
.notice { background: rgba(224,97,46,.07); border: 1px solid rgba(224,97,46,.32); border-radius: var(--radius); padding: 1rem 1.1rem; color: var(--ink); font-size: .96rem; }
.notice a.switch-to-mediakit { color: var(--accent); font-weight: 600; border-bottom: 1px solid var(--accent); }
.notice a.switch-to-mediakit:hover { color: var(--accent-deep); border-color: var(--accent-deep); }
.field input, .field select, .field textarea { width: 100%; font-family: var(--sans); font-size: 1rem; color: var(--ink); padding: .85rem 1rem; background: var(--surface-2); border: 1px solid var(--line-2); border-radius: var(--radius); transition: border-color .2s, background .2s; }
.field input::placeholder, .field textarea::placeholder { color: #9aa0a8; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); background: var(--surface); box-shadow: 0 0 0 3px rgba(224,97,46,.12); }
.field textarea { resize: vertical; min-height: 130px; }
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-note { font-size: .85rem; color: var(--ink-soft); }
.form-status { margin-top: 1rem; padding: 1rem; border-radius: var(--radius); font-size: .92rem; display: none; }
.form-status.ok { display: block; background: rgba(76,140,70,.12); color: #2f6b2a; border: 1px solid rgba(76,140,70,.4); }
.form-status.err { display: block; background: rgba(207,90,70,.10); color: #a3331f; border: 1px solid rgba(207,90,70,.4); }

/* choice groups (checkbox / radio) */
.choice-group { display: grid; gap: .6rem; }
.choice-group.cols-2 { grid-template-columns: 1fr 1fr; }
.choice { display: flex; align-items: flex-start; gap: .6rem; font-size: .96rem; color: var(--ink-soft); cursor: pointer; line-height: 1.4; }
.choice input { width: auto; margin-top: .2rem; accent-color: var(--accent); flex: none; }
fieldset { border: 0; padding: 0; margin: 0 0 1.3rem; }
fieldset > legend { font-size: .78rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: .6rem; padding: 0; }
.certify { display: flex; gap: .7rem; align-items: flex-start; background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 1rem; font-size: .9rem; color: var(--ink-soft); }
.certify input { width: auto; margin-top: .2rem; accent-color: var(--accent); flex: none; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
.phone-list { list-style: none; padding: 0; margin: 1.4rem 0 0; display: grid; gap: .9rem; }
.phone-list li { display: flex; justify-content: space-between; border-bottom: 1px dotted var(--line-2); padding-bottom: .7rem; }
.phone-list .region { color: var(--ink-soft); font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; }
.phone-list .num { font-family: var(--serif); font-size: 1.15rem; color: var(--ink); }
.phone-list .num a:hover { color: var(--accent); }

/* ---------- divider strip ---------- */
.strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg2); }
.strip__inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; padding: clamp(36px, 5vw, 56px) 0; }

/* ---------- footer (dark) ---------- */
.site-footer { background: #181a1e; color: var(--ink-soft); padding: clamp(56px, 7vw, 88px) 0 2rem; }
.site-footer a { color: var(--ink-soft); transition: color .2s; }
.site-footer a:hover { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.5rem; }
.footer-grid--5 { grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr; }
.footer__brand p { color: var(--ink-soft); margin-top: 1.2rem; font-size: .95rem; max-width: 34ch; }
.footer-col h4 { font-family: var(--sans); font-size: .76rem; letter-spacing: .16em; text-transform: uppercase; color: var(--amber); margin-bottom: 1.1rem; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .6rem; }
.footer-col a { font-size: .92rem; }
.footer-bottom { margin-top: clamp(40px, 5vw, 64px); padding-top: 1.6rem; border-top: 1px solid rgba(255,255,255,.10); display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: .82rem; }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } }

/* ---------- responsive ---------- */
@media (max-width: 960px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .trio { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .awards { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }

  .nav__toggle { display: block; }
  .nav__menu { position: fixed; inset: 78px 0 auto 0; background: #1f2228;
    flex-direction: column; align-items: stretch; gap: 0;
    padding: 1rem var(--gutter) 2rem; border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow); transform: translateY(-12px); opacity: 0;
    visibility: hidden; transition: .25s; max-height: calc(100vh - 78px); overflow-y: auto; }
  .nav__menu.open { transform: none; opacity: 1; visibility: visible; }
  .nav__menu > li { border-bottom: 1px solid var(--line); }
  .nav__menu > li a { padding: 14px 0; width: 100%; }
  .subnav { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; padding: 0 0 10px 14px; min-width: 0; background: transparent; }
  .has-sub > a::after { display: none; }
  .nav__cta { margin: 1rem 0 0; }
}
@media (max-width: 580px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .field--row { grid-template-columns: 1fr; }
  .choice-group.cols-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .phone-list li { flex-direction: column; gap: .2rem; }
}
