/* ---------- Design tokens ---------- */
:root {
  --bg: #f2f8fb;
  --bg-alt: #fdf1f2;
  --surface: #ffffff;
  --ink: #111111;
  --ink-muted: #787774;
  --line: #eaeaea;

  --pastel-blue-bg: #e1f3fe;
  --pastel-blue-fg: #1f6c9f;
  --pastel-red-bg: #fdebec;
  --pastel-red-fg: #9f2f2d;
  --pastel-green-bg: #edf3ec;
  --pastel-green-fg: #346538;
  --pastel-yellow-bg: #fbf3db;
  --pastel-yellow-fg: #956400;

  --shadow: 0 2px 10px rgba(17, 17, 17, 0.05);
  --radius: 12px;
  --radius-sm: 6px;
  --max-width: 1180px;
  --font-heading: "Newsreader", "Iowan Old Style", Georgia, serif;
  --font-body: "Manrope", system-ui, -apple-system, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, "SF Mono", monospace;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
}

h1, h2, h3, h4 {
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
  margin: 0 0 0.5em;
}

p { margin: 0 0 1em; color: var(--ink); }

a { color: inherit; text-decoration: none; }

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

svg { stroke-width: 2.2; }

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

.section {
  padding: 104px 0;
}

.section--alt {
  background: var(--bg-alt);
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.section-head h2 {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(1.9rem, 3.2vw, 2.5rem);
  letter-spacing: -0.02em;
}

.eyebrow {
  display: inline-block;
  color: var(--pastel-blue-fg);
  background: var(--pastel-blue-bg);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.94rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.btn:active { transform: scale(0.98); }

.btn--primary {
  background: var(--ink);
  color: var(--bg);
}
.btn--primary:hover { background: #333333; }

.btn--outline {
  background: transparent;
  border-color: currentColor;
  color: var(--ink);
}
.btn--outline:hover { background: var(--ink); color: var(--bg); }

.btn--ghost {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--line);
}
.btn--ghost:hover { border-color: var(--ink); }

.btn--block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(242, 248, 251, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--ink);
}

.logo img { width: 32px; height: 32px; }

.nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink-muted);
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--ink);
  border-color: var(--pastel-blue-fg);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 18px;
}

.phone-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink);
}

.phone-link svg { flex-shrink: 0; color: var(--pastel-blue-fg); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

/* ---------- Hero ---------- */
.hero {
  background: var(--bg);
  padding: 112px 0 96px;
  position: relative;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31, 108, 159, 0.5) 0%, transparent 70%);
  opacity: 0.05;
  pointer-events: none;
}

.hero::before {
  width: 520px;
  height: 520px;
  top: -160px;
  right: -120px;
}

.hero::after {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(159, 47, 45, 0.45) 0%, transparent 70%);
  bottom: -140px;
  left: 4%;
  opacity: 0.04;
}

.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-family: var(--font-heading);
  font-weight: 400;
  color: var(--ink);
  font-size: clamp(2.3rem, 4vw, 3.4rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 22px;
}

.hero p.lead {
  font-size: 1.08rem;
  color: var(--ink-muted);
  max-width: 480px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 44px;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--ink-muted);
}

.hero-badge svg { color: var(--pastel-blue-fg); }

.hero-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 32px;
  color: var(--ink);
}

.hero-card h3 {
  margin-bottom: 18px;
  font-family: var(--font-body);
  font-size: 1.1rem;
}

.hero-card ul {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: grid;
  gap: 14px;
}

.hero-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.94rem;
  color: var(--ink-muted);
}

.hero-card li svg { color: var(--pastel-green-fg); flex-shrink: 0; }

/* ---------- Trust strip ---------- */
.trust-strip {
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-strip .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.01em;
  color: var(--ink);
}

/* ---------- Cards / grids ---------- */
.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); }

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--pastel-blue-bg);
  color: var(--pastel-blue-fg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

/* Cycle accent colors so the grid reads as varied, not uniform */
.grid--3 .card:nth-child(4n+1) .card-icon,
.grid--2 .card:nth-child(4n+1) .card-icon { background: var(--pastel-blue-bg); color: var(--pastel-blue-fg); }
.grid--3 .card:nth-child(4n+2) .card-icon,
.grid--2 .card:nth-child(4n+2) .card-icon { background: var(--pastel-green-bg); color: var(--pastel-green-fg); }
.grid--3 .card:nth-child(4n+3) .card-icon,
.grid--2 .card:nth-child(4n+3) .card-icon { background: var(--pastel-yellow-bg); color: var(--pastel-yellow-fg); }
.grid--3 .card:nth-child(4n+4) .card-icon,
.grid--2 .card:nth-child(4n+4) .card-icon { background: var(--pastel-red-bg); color: var(--pastel-red-fg); }

.card h3 { font-size: 1.12rem; }

.card p { color: var(--ink-muted); margin-bottom: 0; }

.card a.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-weight: 700;
  color: var(--pastel-blue-fg);
}

/* ---------- Split sections ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.split img,
.split .image-block {
  border-radius: var(--radius);
  width: 100%;
}

.image-block {
  aspect-ratio: 4 / 3.2;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-muted);
  overflow: hidden;
}

.image-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.check-list {
  list-style: none;
  margin: 24px 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-weight: 600;
  color: var(--ink-muted);
}

.check-list svg {
  flex-shrink: 0;
  color: var(--pastel-green-fg);
  margin-top: 3px;
}

/* ---------- CTA banner ---------- */
.cta-banner {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-banner h2 {
  font-family: var(--font-heading);
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.cta-banner p { color: var(--ink-muted); margin: 0; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(251, 251, 250, 0.7);
  padding: 64px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(251, 251, 250, 0.14);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--bg);
  margin-bottom: 14px;
}

.footer-grid h4 {
  color: rgba(251, 251, 250, 0.92);
  font-family: var(--font-body);
  font-size: 0.92rem;
  margin-bottom: 18px;
}

.footer-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.footer-grid a:hover { color: #8fc4e0; }

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  color: rgba(251, 251, 250, 0.5);
}

/* ---------- Page header (inner pages) ---------- */
.page-header {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--line);
  padding: 64px 0;
  text-align: center;
}

.page-header h1 {
  font-family: var(--font-heading);
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.page-header p { color: var(--ink-muted); max-width: 560px; margin: 0 auto; }

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  color: var(--ink-muted);
  margin-bottom: 14px;
}

/* ---------- Contact page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}

.contact-info-card {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
}

.contact-info-card ul {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: grid;
  gap: 20px;
}

.contact-info-card li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.contact-info-card .info-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--pastel-blue-fg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-card strong { display: block; color: var(--ink); }
.contact-info-card span { color: var(--ink-muted); font-size: 0.95rem; }

.form-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-card:focus-within {
  border-color: var(--pastel-blue-fg);
  box-shadow: 0 0 0 3px rgba(31, 108, 159, 0.14);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field { margin-bottom: 18px; }

.field label {
  display: block;
  font-weight: 700;
  margin-bottom: 6px;
  font-size: 0.88rem;
  color: var(--ink);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.96rem;
  color: var(--ink);
  background: var(--surface);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--pastel-blue-fg);
  box-shadow: 0 0 0 3px rgba(31, 108, 159, 0.14);
}

.field textarea { resize: vertical; min-height: 120px; }

.form-note {
  font-size: 0.83rem;
  color: var(--ink-muted);
  margin-top: 10px;
}

.form-success {
  display: none;
  background: var(--pastel-green-bg);
  border: 1px solid var(--pastel-green-fg);
  color: var(--pastel-green-fg);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  font-weight: 700;
  margin-bottom: 20px;
}

.form-success.visible { display: block; }

.map-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 28px;
  border: 1px solid var(--line);
}

.map-wrap iframe {
  width: 100%;
  height: 320px;
  border: 0;
  display: block;
}

.radius-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(60%, 340px);
  aspect-ratio: 1 / 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 2px dashed var(--pastel-blue-fg);
  background: rgba(31, 108, 159, 0.08);
  pointer-events: none;
}

.radius-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.03em;
  padding: 6px 12px;
  border-radius: 999px;
  box-shadow: var(--shadow);
}

/* ---------- About page ---------- */
.value-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* ---------- Gallery page ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-alt);
  position: relative;
  transition: box-shadow 0.2s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.03);
}

.gallery-item:hover {
  box-shadow: var(--shadow);
}

.gallery-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 48px 24px;
  color: var(--ink-muted);
  border: 1px dashed var(--line);
  border-radius: var(--radius);
}

/* ---------- Reviews page ---------- */
.review-cta {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 48px;
  text-align: center;
}

.review-cta .btn { margin: 6px; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero .container,
  .split,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-card { order: -1; }

  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-grid { grid-template-columns: 1fr 1fr; }

  .value-list { grid-template-columns: 1fr; }
}

/* Nav switches to the hamburger menu well before the header's content
   would otherwise wrap/overlap (logo + 6 links + phone + CTA needs ~1150px). */
@media (max-width: 1160px) {
  .nav-links, .header-cta .phone-link span.phone-text { display: none; }

  .nav-toggle { display: flex; }

  .nav.open .nav-links {
    display: flex;
    position: absolute;
    top: 84px;
    left: 0;
    right: 0;
    background: var(--surface);
    flex-direction: column;
    padding: 20px 24px;
    gap: 18px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
}

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

  .grid--3, .grid--4, .grid--2 { grid-template-columns: 1fr; }

  .gallery-grid { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }

  .cta-banner { padding: 36px; text-align: center; justify-content: center; }

  .footer-grid { grid-template-columns: 1fr; }

  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ================================================================
   Motion & interaction layer — quiet, invisible-until-noticed
   ================================================================ */

.site-header { transition: box-shadow 0.3s ease; }
.site-header .container { transition: height 0.3s ease; }
.site-header.is-scrolled .container { height: 68px; }
.site-header.is-scrolled { box-shadow: 0 1px 0 var(--line); }

.nav-links a { position: relative; }

.nav-toggle span { transition: transform 0.25s ease, opacity 0.25s ease; }
.nav-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-active span:nth-child(2) { opacity: 0; }
.nav-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.btn:active { transform: scale(0.98); }
.btn.is-loading { pointer-events: none; opacity: 0.7; }

.nav.open .nav-links {
  background: var(--surface);
}

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal.in-view { opacity: 1; transform: none; }

/* ---------- Scroll progress bar ---------- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: var(--pastel-blue-fg);
  z-index: 1000;
  transition: width 0.1s ease-out;
}

/* ---------- Back to top ---------- */
.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  cursor: pointer;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s ease, color 0.2s ease;
  z-index: 90;
}
.back-to-top.is-visible { opacity: 1; transform: none; pointer-events: auto; }
.back-to-top:hover { background: var(--ink); color: var(--bg); }

/* ---------- Gallery lightbox ---------- */
.gallery-item {
  cursor: zoom-in;
  position: relative;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17,17,17,0) 55%, rgba(17,17,17,0.35) 100%);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}
.gallery-item:hover::after { opacity: 1; }

.gallery-zoom-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.85);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
}
.gallery-item:hover .gallery-zoom-icon { opacity: 1; transform: translate(-50%, -50%) scale(1); }

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(17, 17, 17, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  padding: 40px;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: 90vw;
  max-height: 84vh;
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
  transform: scale(0.96);
  transition: transform 0.3s ease;
}
.lightbox.is-open img { transform: scale(1); }
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease;
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(255, 255, 255, 0.2); }
.lightbox-close { top: 24px; right: 24px; }
.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  html { scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}
