/* Coreloop Advisory LLP — site styles
   Brand: Navy #163A5F · Teal #1BB6A6 · Montserrat (headings) · Inter (body) */

@font-face {
  font-family: "Montserrat";
  src: url("../assets/fonts/montserrat-var.woff") format("woff");
  font-weight: 500 800;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../assets/fonts/inter-var.woff") format("woff");
  font-weight: 400 700;
  font-display: swap;
}

:root {
  --navy: #163A5F;
  --navy-deep: #0F2A45;
  --navy-soft: #1E4A75;
  --teal: #1BB6A6;          /* accents, icons, borders, display text on navy */
  --teal-text: #117A70;     /* teal for text/links on light backgrounds (AA) */
  --teal-tint: #E6F6F4;
  --ink: #1F2A37;
  --muted: #5B6675;
  --line: #DDE4EB;
  --soft: #F3F6F9;
  --white: #FFFFFF;
  --on-navy: #C9D6E3;       /* body text on navy */

  --font-head: "Montserrat", "Segoe UI", Arial, sans-serif;
  --font-body: "Inter", "Segoe UI", Arial, sans-serif;

  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 1px 2px rgba(15, 42, 69, .06), 0 8px 24px rgba(15, 42, 69, .06);
  --shadow-lg: 0 2px 4px rgba(15, 42, 69, .06), 0 18px 40px rgba(15, 42, 69, .10);
  --container: 1160px;
  --gutter: clamp(20px, 4vw, 32px);
  --section: clamp(64px, 9vw, 112px);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--teal-text); text-underline-offset: 3px; }
a:hover { color: var(--navy); }
h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--navy);
  line-height: 1.18;
  margin: 0 0 .5em;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.2rem, 4.6vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.75rem, 3.2vw, 2.5rem); font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 700; }
h4 { font-size: 1.02rem; font-weight: 700; }
p { margin: 0 0 1em; }
ul { padding-left: 1.2em; }
:focus-visible { outline: 3px solid var(--teal); outline-offset: 3px; border-radius: 4px; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section); }
.section--soft { background: var(--soft); }
.section--navy { background: var(--navy); color: var(--on-navy); }
.section--navy h2, .section--navy h3 { color: var(--white); }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--navy); color: var(--white); padding: 10px 16px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; color: var(--white); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-weight: 700; font-size: .78rem;
  letter-spacing: .16em; text-transform: uppercase; color: var(--teal-text);
  margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: currentColor; border-radius: 2px; }
.section--navy .eyebrow, .hero .eyebrow, .page-hero .eyebrow, .cta-band .eyebrow { color: var(--teal); }

.lead { font-size: clamp(1.08rem, 1.6vw, 1.25rem); color: var(--muted); max-width: 44rem; }
.section-head { max-width: 46rem; margin-bottom: clamp(36px, 5vw, 56px); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-head); font-weight: 700; font-size: .95rem; letter-spacing: .01em;
  padding: 14px 24px; border-radius: 999px; border: 2px solid transparent;
  text-decoration: none; cursor: pointer; transition: transform .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
  line-height: 1.2; white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--teal); color: var(--navy); }
.btn--primary:hover { background: #2BC7B7; color: var(--navy); }
.btn--ghost { border-color: rgba(255,255,255,.45); color: var(--white); }
.btn--ghost:hover { border-color: var(--white); color: var(--white); background: rgba(255,255,255,.06); }
.btn--outline { border-color: var(--navy); color: var(--navy); }
.btn--outline:hover { background: var(--navy); color: var(--white); }
.btn--sm { padding: 10px 18px; font-size: .88rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

.text-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 700; font-size: .92rem; text-decoration: none; color: var(--teal-text);
}
.text-link svg { width: 16px; height: 16px; transition: transform .15s ease; }
.text-link:hover svg { transform: translateX(3px); }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.96);
  backdrop-filter: saturate(160%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 76px; }
.brand { display: inline-flex; align-items: center; flex: none; }
.brand img { height: 40px; width: auto; }
.nav-menu { display: flex; align-items: center; gap: 32px; }
.nav-links { display: flex; gap: 28px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  font-family: var(--font-head); font-weight: 600; font-size: .95rem;
  color: var(--navy); text-decoration: none; padding: 6px 0; position: relative;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px;
  background: var(--teal); transform: scaleX(0); transform-origin: left; transition: transform .2s ease;
}
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { transform: scaleX(1); }
.nav-toggle {
  display: none; background: none; border: 0; padding: 8px; margin-right: -8px; color: var(--navy); cursor: pointer;
}
.nav-toggle svg { width: 28px; height: 28px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

@media (max-width: 900px) {
  .nav { height: 66px; }
  .brand img { height: 32px; }
  .nav-toggle { display: inline-flex; }
  .nav-menu {
    position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--white); border-bottom: 1px solid var(--line); box-shadow: var(--shadow-lg);
    padding: 8px var(--gutter) 24px;
    display: none;
  }
  .nav-menu.is-open { display: flex; }
  .nav-links { flex-direction: column; gap: 0; }
  .nav-links a { display: block; padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
  .nav-links a::after { display: none; }
  .nav-links a[aria-current="page"] { color: var(--teal-text); }
  .nav-menu .btn { margin-top: 20px; }
}

/* Hero (home) */
.hero {
  position: relative; overflow: hidden;
  background: radial-gradient(1200px 600px at 85% 20%, #1E4A75 0%, rgba(30,74,117,0) 60%), var(--navy);
  color: var(--on-navy);
  padding-block: clamp(64px, 9vw, 120px) clamp(72px, 9vw, 128px);
}
.hero h1 { color: var(--white); max-width: 15ch; }
.hero h1 .accent { color: var(--teal); }
.hero .lead { color: var(--on-navy); }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.hero-copy .btn-row { margin-top: 32px; }
.hero-note { margin-top: 28px; font-size: .9rem; color: #9FB3C8; display: flex; flex-wrap: wrap; gap: 8px 18px; }
.hero-note span { display: inline-flex; align-items: center; gap: 8px; }
.hero-note svg { width: 16px; height: 16px; color: var(--teal); }
.hero-visual { position: relative; }
.hero-visual svg { width: 100%; height: auto; }
.hero-bg-mark {
  position: absolute; right: -220px; bottom: -300px; width: 760px; opacity: .05; pointer-events: none;
}
@media (max-width: 600px) {
  .hero-visual .loop-sub { display: none; }
  .hero-visual .loop-lab { font-size: 24px; }
}
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 520px; margin-inline: auto; width: 100%; }
}

/* Page hero (inner pages) */
.page-hero {
  position: relative; overflow: hidden;
  background: var(--navy); color: var(--on-navy);
  padding-block: clamp(56px, 8vw, 96px);
}
.page-hero h1 { color: var(--white); max-width: 20ch; }
.page-hero .lead { color: var(--on-navy); }
.page-hero .hero-bg-mark { right: -140px; bottom: -200px; width: 640px; opacity: .07; }
.breadcrumb { font-size: .85rem; margin-bottom: 18px; color: #9FB3C8; }
.breadcrumb a { color: #9FB3C8; }
.breadcrumb a:hover { color: var(--white); }

/* Capability strip */
.capabilities { padding-block: 36px; border-bottom: 1px solid var(--line); }
.capabilities-inner { display: flex; align-items: center; gap: 20px 32px; flex-wrap: wrap; }
.capabilities-label {
  font-family: var(--font-head); font-weight: 700; font-size: .8rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--muted); flex: none;
}
.chips { display: flex; flex-wrap: wrap; gap: 10px; list-style: none; margin: 0; padding: 0; }
.chip {
  font-family: var(--font-head); font-weight: 600; font-size: .85rem; color: var(--navy);
  background: var(--soft); border: 1px solid var(--line); border-radius: 999px; padding: 7px 14px;
}

/* Cards */
.grid { display: grid; gap: 24px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 1100px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 960px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-3, .grid-2, .grid-4 { grid-template-columns: 1fr; } }

.card {
  position: relative; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 28px; display: flex; flex-direction: column; gap: 4px;
  transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease;
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); border-color: #C9D5E0; }
.card p { color: var(--muted); margin-bottom: 18px; }
.grid-4 .card { padding: 26px 22px; }
.grid-4 .card h3 { font-size: 1.08rem; }
.grid-4 .card p { font-size: .95rem; margin-bottom: 14px; }
.card-tools { font-family: var(--font-head); font-weight: 600; font-size: .78rem !important; color: var(--teal-text) !important; letter-spacing: .01em; }
.card .text-link { margin-top: auto; }
.card h3 { margin-top: 18px; }
.icon-badge {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  background: var(--teal-tint); color: var(--teal-text);
}
.icon-badge svg { width: 26px; height: 26px; }
.section--navy .icon-badge { background: rgba(27,182,166,.14); color: var(--teal); }

/* Why */
.why-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(32px, 6vw, 80px); align-items: start; }
.why-grid .section-head { margin-bottom: 0; position: sticky; top: 110px; }
.why-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 36px 32px; }
.why-item h3 { font-size: 1.1rem; margin: 16px 0 8px; }
.why-item p { color: var(--muted); margin: 0; font-size: 1rem; }
@media (max-width: 960px) {
  .why-grid { grid-template-columns: 1fr; }
  .why-grid .section-head { position: static; }
}
@media (max-width: 560px) { .why-list { grid-template-columns: 1fr; } }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; list-style: none; margin: 0; padding: 0; counter-reset: step; position: relative; }
.steps::before {
  content: ""; position: absolute; top: 27px; left: 28px; right: 28px; height: 2px;
  background: linear-gradient(90deg, var(--teal), rgba(27,182,166,.25));
}
.step { position: relative; }
.step-num {
  position: relative; z-index: 1;
  width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center;
  background: var(--navy); color: var(--white); border: 4px solid var(--teal);
  font-family: var(--font-head); font-weight: 800; font-size: 1.1rem; margin-bottom: 20px;
}
.section--navy .step-num { background: var(--navy-deep); }
.step h3 { font-size: 1.15rem; }
.step p { color: var(--muted); font-size: 1rem; margin: 0; }
.section--navy .step p { color: var(--on-navy); }
@media (max-width: 900px) {
  .steps { grid-template-columns: 1fr 1fr; gap: 40px 24px; }
  .steps::before { display: none; }
}
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }

/* Engagement models */
.model {
  background: var(--navy-soft); border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius);
  padding: 32px 28px; color: var(--on-navy);
}
.model h3 { margin-top: 18px; }
.model p { margin: 0 0 16px; }
.model ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 8px; font-size: .95rem; }
.model li { display: flex; gap: 10px; align-items: flex-start; }
.model li svg { width: 18px; height: 18px; color: var(--teal); flex: none; margin-top: 4px; }

/* CTA band */
.cta-band {
  position: relative; overflow: hidden; border-radius: 20px;
  background: radial-gradient(700px 360px at 90% 10%, #1E4A75 0%, rgba(30,74,117,0) 70%), var(--navy);
  color: var(--on-navy); padding: clamp(40px, 6vw, 72px) clamp(28px, 6vw, 72px);
  display: grid; grid-template-columns: 1.4fr auto; gap: 32px; align-items: center;
}
.cta-band h2 { color: var(--white); margin-bottom: 12px; }
.cta-band p { margin: 0; max-width: 40rem; }
.cta-band .hero-bg-mark { right: -120px; bottom: -150px; width: 520px; opacity: .08; }
.cta-band > *:not(.hero-bg-mark) { position: relative; }
@media (max-width: 800px) { .cta-band { grid-template-columns: 1fr; } }

/* Services page */
.service-nav {
  position: sticky; top: 76px; z-index: 20; background: var(--white); border-bottom: 1px solid var(--line);
}
.service-nav ul { display: flex; gap: 8px; list-style: none; margin: 0; padding: 12px 0; overflow-x: auto; scrollbar-width: none; }
.service-nav ul::-webkit-scrollbar { display: none; }
.service-nav a {
  display: block; white-space: nowrap; font-family: var(--font-head); font-weight: 600; font-size: .88rem;
  color: var(--navy); text-decoration: none; padding: 8px 14px; border-radius: 999px; border: 1px solid var(--line);
}
.service-nav a:hover { border-color: var(--teal); color: var(--teal-text); }
@media (max-width: 900px) { .service-nav { top: 66px; } }

.service { padding-block: clamp(56px, 7vw, 88px); border-bottom: 1px solid var(--line); scroll-margin-top: 150px; }
.service:nth-of-type(even) { background: var(--soft); }
.service-grid { display: grid; grid-template-columns: minmax(0,.78fr) minmax(0,1.42fr); gap: clamp(28px, 5vw, 64px); align-items: start; }
.service-grid .lead { font-size: 1.1rem; }
.service-index { font-family: var(--font-head); font-weight: 800; color: var(--teal-text); font-size: .9rem; letter-spacing: .12em; margin: 20px 0 8px; display: block; }
.detail-stack { display: grid; gap: 20px; }
.detail-cols { display: grid; grid-template-columns: 1.25fr 1fr; gap: 20px; }
.detail--tools .chips { gap: 8px; }
.detail--tools .chip { background: var(--teal-tint); border-color: transparent; color: var(--teal-text); }
.detail {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 24px;
}
.detail h4 { font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.ticks { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; font-size: .97rem; }
.ticks li { display: flex; gap: 10px; align-items: flex-start; }
.ticks li svg { width: 18px; height: 18px; flex: none; margin-top: 4px; color: var(--teal-text); }
@media (max-width: 960px) { .service-grid { grid-template-columns: 1fr; } }
@media (max-width: 640px) { .detail-cols { grid-template-columns: 1fr; } }

/* About */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
.split--top { align-items: start; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } }
.prose p { color: var(--ink); }
.prose p.muted { color: var(--muted); }
.name-card {
  background: var(--soft); border: 1px solid var(--line); border-radius: 20px; padding: clamp(28px, 5vw, 48px);
}
.name-card img { width: 200px; margin-bottom: 28px; }
.name-card dl { margin: 0; display: grid; gap: 18px; }
.name-card dt { font-family: var(--font-head); font-weight: 700; color: var(--navy); }
.name-card dd { margin: 4px 0 0; color: var(--muted); }
.values { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 900px) { .values { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .values { grid-template-columns: 1fr; } }
.value { border-top: 3px solid var(--teal); padding-top: 18px; }
.value p { color: var(--muted); font-size: 1rem; margin: 0; }
.facts {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
}
.facts div { display: grid; grid-template-columns: 200px 1fr; gap: 16px; padding: 16px 24px; border-bottom: 1px solid var(--line); }
.facts div:last-child { border-bottom: 0; }
.facts dt { font-family: var(--font-head); font-weight: 700; color: var(--navy); font-size: .95rem; }
.facts dd { margin: 0; color: var(--ink); }
@media (max-width: 600px) { .facts div { grid-template-columns: 1fr; gap: 4px; } }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.form-card { background: var(--white); border: 1px solid var(--line); border-radius: 20px; padding: clamp(24px, 4vw, 40px); box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 20px; }
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 600px) { .form-grid { grid-template-columns: 1fr; } }
.field label { display: block; font-family: var(--font-head); font-weight: 600; font-size: .9rem; color: var(--navy); margin-bottom: 6px; }
.field .req { color: var(--teal-text); }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; font-size: 1rem; color: var(--ink);
  background: var(--white); border: 1px solid #C5D0DB; border-radius: var(--radius-sm); padding: 12px 14px;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(27,182,166,.25);
}
.consent { font-size: .9rem; color: var(--muted); display: flex; gap: 10px; align-items: flex-start; }
.consent input { width: 18px; height: 18px; margin-top: 3px; accent-color: var(--teal-text); flex: none; }
.hidden { position: absolute !important; left: -9999px !important; }
.form-card .btn { margin-top: 8px; }

.side-card { border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 24px; margin-bottom: 20px; }
.side-card h3 { font-size: 1.05rem; margin-bottom: 14px; }
.side-item { display: flex; gap: 14px; align-items: flex-start; }
.side-item + .side-item { margin-top: 16px; }
.side-item svg { width: 22px; height: 22px; color: var(--teal-text); flex: none; margin-top: 2px; }
.side-item p { margin: 0; color: var(--muted); font-size: .97rem; }
.side-item strong { display: block; color: var(--navy); font-family: var(--font-head); font-size: .92rem; }
.next-steps { list-style: none; margin: 0; padding: 0; counter-reset: n; display: grid; gap: 14px; }
.next-steps li { counter-increment: n; display: flex; gap: 14px; color: var(--muted); font-size: .97rem; }
.next-steps li::before {
  content: counter(n); flex: none; width: 28px; height: 28px; border-radius: 50%; display: grid; place-items: center;
  background: var(--teal-tint); color: var(--teal-text); font-family: var(--font-head); font-weight: 800; font-size: .85rem;
}

/* Legal / simple pages */
.legal { max-width: 760px; }
.legal h2 { font-size: 1.4rem; margin-top: 2em; }
.legal p, .legal li { color: var(--ink); }
.legal .updated { color: var(--muted); font-size: .95rem; }
.center-page { min-height: 60vh; display: grid; place-items: center; text-align: center; }
.center-page img { width: 120px; margin: 0 auto 28px; }
.center-page .btn-row { justify-content: center; margin-top: 28px; }

/* Footer */
.site-footer { background: var(--navy-deep); color: var(--on-navy); padding-top: clamp(56px, 7vw, 80px); font-size: .95rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; }
.footer-brand img { height: 40px; width: auto; margin-bottom: 18px; }
.footer-brand p { color: #9FB3C8; max-width: 22rem; }
.site-footer h4 { color: var(--white); font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 16px; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.site-footer a { color: var(--on-navy); text-decoration: none; }
.site-footer a:hover { color: var(--teal); text-decoration: underline; }
.footer-bottom {
  margin-top: 56px; border-top: 1px solid rgba(255,255,255,.1); padding-block: 24px 32px;
  display: grid; gap: 10px; font-size: .82rem; color: #8FA4BA;
}
.footer-bottom p { margin: 0; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

/* Reveal on scroll (progressive enhancement) */
.js .reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
.js .reveal.is-visible { opacity: 1; transform: none; }

/* Hero loop animation */
.loop-flow { stroke-dasharray: 6 14; animation: flow 3s linear infinite; }
@keyframes flow { to { stroke-dashoffset: -40; } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .js .reveal { opacity: 1; transform: none; }
}
