:root {
  --ink: #09212b;
  --muted: #53656d;
  --paper: #f7fbfc;
  --white: #ffffff;
  --brand: #0f5f73;
  --brand-dark: #083344;
  --accent: #27c5bd;
  --accent-strong: #12a89f;
  --sand: #f1d8a3;
  --line: rgba(8, 51, 68, 0.12);
  --shadow: 0 24px 70px rgba(8, 51, 68, 0.16);
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: 1180px;
  --header-h: 78px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
:focus-visible { outline: 3px solid rgba(39, 197, 189, 0.75); outline-offset: 4px; }
.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 999;
  transform: translateY(-150%);
  background: var(--brand-dark);
  color: var(--white);
  padding: .75rem 1rem;
  border-radius: 999px;
}
.skip-link:focus { transform: translateY(0); }
.container { width: min(calc(100% - 2rem), var(--container)); margin-inline: auto; }
.section { padding: 96px 0; position: relative; }
.eyebrow {
  margin: 0 0 14px;
  color: var(--accent-strong);
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: .78rem;
}
.section-heading { max-width: 760px; margin-bottom: 42px; }
.section-heading.compact { max-width: 620px; }
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(2.65rem, 6vw, 5.75rem); line-height: .94; letter-spacing: -.065em; margin-bottom: 24px; }
h2 { font-size: clamp(2rem, 3.8vw, 3.35rem); line-height: 1.02; letter-spacing: -.045em; margin-bottom: 18px; }
h3 { font-size: 1.15rem; line-height: 1.2; margin-bottom: 10px; }
p { color: var(--muted); }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(247, 251, 252, 0.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.site-header.is-scrolled { border-color: var(--line); box-shadow: 0 10px 30px rgba(8, 51, 68, .08); background: rgba(247, 251, 252, .92); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.brand { display: inline-flex; align-items: center; gap: .8rem; font-weight: 800; }
.brand-mark {
  width: 56px; height: 56px; border-radius: 18px;
  display: block; overflow: hidden;
  background: var(--white);
  box-shadow: 0 14px 28px rgba(8, 51, 68, .22);
}
.brand-mark img { width: 100%; height: 100%; object-fit: cover; }
.brand-text { display: grid; line-height: 1.1; }
.brand-text span { font-size: .78rem; color: var(--muted); font-weight: 700; }
.primary-nav { display: flex; align-items: center; gap: .35rem; }
.primary-nav a { padding: .72rem .9rem; border-radius: 999px; color: #25414a; font-weight: 750; font-size: .94rem; }
.primary-nav a:hover { background: rgba(15, 95, 115, .08); color: var(--brand-dark); }
.primary-nav .nav-cta { background: var(--brand-dark); color: var(--white); padding-inline: 1.1rem; }
.primary-nav .nav-cta:hover { background: var(--brand); color: var(--white); }
.nav-socials { display: inline-flex; align-items: center; gap: .3rem; margin-left: .15rem; }
.primary-nav .social-link, .social-link {
  position: relative;
  width: 38px; height: 38px; padding: 0; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--white); color: var(--brand-dark); border: 1px solid var(--line);
  box-shadow: 0 8px 18px rgba(8, 51, 68, .1);
}
.social-link svg { width: 20px; height: 20px; fill: currentColor; }
.primary-nav .social-link:hover, .social-link:hover { background: var(--brand); border-color: var(--brand); color: var(--white); transform: translateY(-2px); }
.social-link[data-social-tooltip]::before {
  content: attr(data-social-tooltip);
  position: absolute; z-index: 70; left: 50%; bottom: calc(100% + 10px);
  width: max-content; max-width: 220px; padding: 7px 10px; border-radius: 9px;
  background: var(--brand-dark); color: var(--white);
  font-size: .75rem; font-weight: 800; line-height: 1.2; white-space: nowrap;
  box-shadow: 0 10px 24px rgba(8, 51, 68, .22);
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: translate(-50%, 5px); transition: opacity .16s ease, transform .16s ease, visibility .16s ease;
}
.social-link[data-social-tooltip]::after {
  content: ""; position: absolute; z-index: 70; left: 50%; bottom: calc(100% + 4px);
  border: 6px solid transparent; border-top-color: var(--brand-dark);
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: translateX(-50%); transition: opacity .16s ease, visibility .16s ease;
}
.social-link[data-social-tooltip]:hover::before,
.social-link[data-social-tooltip]:focus-visible::before,
.social-link[data-social-tooltip]:hover::after,
.social-link[data-social-tooltip]:focus-visible::after {
  opacity: 1; visibility: visible;
}
.social-link[data-social-tooltip]:hover::before,
.social-link[data-social-tooltip]:focus-visible::before { transform: translate(-50%, 0); }
.nav-socials .social-link[data-social-tooltip]::before { top: calc(100% + 10px); bottom: auto; transform: translate(-50%, -5px); }
.nav-socials .social-link[data-social-tooltip]::after {
  top: calc(100% + 4px); bottom: auto;
  border-top-color: transparent; border-bottom-color: var(--brand-dark);
}
.nav-socials .social-link[data-social-tooltip]:hover::before,
.nav-socials .social-link[data-social-tooltip]:focus-visible::before { transform: translate(-50%, 0); }
.nav-toggle { display: none; background: var(--white); border: 1px solid var(--line); border-radius: 14px; width: 46px; height: 46px; padding: 11px; }
.nav-toggle span { display: block; height: 2px; background: var(--brand-dark); margin: 5px 0; border-radius: 999px; transition: transform .2s ease, opacity .2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero { min-height: 100svh; display: grid; align-items: center; overflow: hidden; padding-top: calc(var(--header-h) + 54px); }
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(39, 197, 189, .18), transparent 30%),
    radial-gradient(circle at 85% 18%, rgba(241, 216, 163, .32), transparent 27%),
    linear-gradient(180deg, #f7fbfc 0%, #edf7f8 100%);
}
.hero-bg::after {
  content: ""; position: absolute; inset: auto -12% -24% auto; width: 60vw; aspect-ratio: 1;
  border-radius: 999px; background: rgba(15, 95, 115, .08); filter: blur(2px);
}
.hero-grid { position: relative; display: grid; grid-template-columns: minmax(0, 1.04fr) minmax(340px, .78fr); gap: 54px; align-items: center; }
.hero-lead { font-size: clamp(1.05rem, 2vw, 1.28rem); max-width: 680px; margin-bottom: 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 34px; }
.hero-socials { display: inline-flex; align-items: center; gap: 8px; }
.button {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 52px; padding: .85rem 1.22rem;
  border-radius: 999px; font-weight: 850; border: 1px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--brand-dark); color: var(--white); box-shadow: 0 18px 34px rgba(8, 51, 68, .24); }
.button-primary:hover { background: var(--brand); }
.button-secondary { background: var(--white); color: var(--brand-dark); border-color: var(--line); }
.button-light { background: var(--white); color: var(--brand-dark); }
.button-outline-light { color: var(--white); border-color: rgba(255, 255, 255, .35); }
.button-outline-light:hover { background: rgba(255, 255, 255, .12); }
.trust-list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; max-width: 690px; margin: 0; }
.trust-list div { background: rgba(255,255,255,.72); border: 1px solid var(--line); border-radius: 20px; padding: 18px; box-shadow: 0 10px 24px rgba(8, 51, 68, .06); }
.trust-list dt { font-size: 2rem; font-weight: 950; letter-spacing: -.06em; color: var(--brand-dark); line-height: 1; }
.trust-list dd { margin: 6px 0 0; color: var(--muted); font-weight: 720; }
.hero-media { position: relative; }
.hero-media::before {
  content: ""; position: absolute; inset: 28px -18px -18px 28px; border-radius: var(--radius-xl); background: var(--accent); opacity: .18;
}
.hero-media img { position: relative; width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--radius-xl); box-shadow: var(--shadow); }
.floating-card {
  position: absolute; left: -28px; bottom: 34px; max-width: 270px;
  background: rgba(255,255,255,.92); backdrop-filter: blur(14px); border: 1px solid rgba(255,255,255,.74);
  border-radius: 22px; padding: 17px 18px 17px 44px; box-shadow: 0 18px 42px rgba(8, 51, 68, .18);
}
.floating-card strong, .floating-card span { display: block; }
.floating-card span { color: var(--muted); font-size: .92rem; line-height: 1.35; }
.status-dot { position: absolute; left: 18px; top: 23px; width: 12px; height: 12px; border-radius: 99px; background: var(--accent); box-shadow: 0 0 0 7px rgba(39, 197, 189, .18); }

.intro-strip { padding-top: 34px; }
.strip-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.strip-card { background: var(--white); border: 1px solid var(--line); border-radius: 26px; padding: 26px; box-shadow: 0 14px 38px rgba(8, 51, 68, .07); }
.strip-icon { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 14px; background: #e2fbf9; color: var(--brand); font-weight: 950; margin-bottom: 18px; }
.strip-card p { margin-bottom: 0; }

.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.service-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 16px 44px rgba(8, 51, 68, .08); }
.service-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.service-slide-card img { aspect-ratio: 16 / 9; object-fit: contain; background: #f5f5f3; }
.service-card div { padding: 24px; }
.service-card p { margin-bottom: 0; }

.about-section { background: #ffffff; overflow: hidden; }
.about-grid { display: grid; grid-template-columns: .9fr 1fr; gap: 68px; align-items: center; }
.about-media { position: relative; min-height: 560px; }
.about-img-main { width: 84%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--radius-xl); box-shadow: var(--shadow); }
.about-img-overlap { position: absolute; right: 0; bottom: 0; width: 54%; aspect-ratio: 3 / 4; object-fit: cover; border-radius: 28px; border: 10px solid var(--white); box-shadow: 0 22px 52px rgba(8, 51, 68, .2); }
.mission-card { padding: 22px 24px; border-radius: 22px; background: #edfafa; border: 1px solid rgba(39, 197, 189, .22); margin-top: 20px; }
.mission-card.alt { background: #fff8e8; border-color: rgba(241, 216, 163, .52); }
.mission-card p { margin-bottom: 0; }

.process-section { background: linear-gradient(180deg, #f7fbfc 0%, #eef8f8 100%); }
.process-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; counter-reset: process; }
.process-item { position: relative; background: var(--white); border: 1px solid var(--line); border-radius: 24px; padding: 24px; box-shadow: 0 12px 34px rgba(8, 51, 68, .06); }
.process-item span { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 999px; background: var(--brand-dark); color: var(--white); font-weight: 950; margin-bottom: 22px; }
.process-item p { margin-bottom: 0; }

.gallery-section { background: var(--white); }
.media-accordion { display: grid; gap: 24px; }
.media-group {
  overflow: hidden; border: 1px solid var(--line); border-radius: 28px;
  background: #eaf4f5; box-shadow: 0 16px 40px rgba(8, 51, 68, .1);
}
.media-group-header { display: flex; align-items: center; gap: 16px; padding: 20px 24px; background: var(--white); border-bottom: 1px solid var(--line); }
.media-group-header > strong {
  display: grid; place-items: center; flex: 0 0 48px; height: 48px; border-radius: 50%;
  background: var(--brand-dark); color: var(--white); font-size: 1rem;
}
.media-group-header h3 { margin: 0; color: var(--brand-dark); font-size: 1.22rem; }
.media-group-header p { margin: 2px 0 0; color: var(--muted); font-size: .9rem; }
.media-carousel {
  position: relative; height: clamp(460px, 75vh, 760px); padding: 18px 24px; overflow: hidden;
}
.media-track {
  display: flex; align-items: stretch; gap: 12px; height: 100%; min-height: 0;
  overflow-x: auto; padding: 8px 0; scroll-snap-type: x proximity;
  scrollbar-width: none; overscroll-behavior-inline: contain;
}
.media-track::-webkit-scrollbar { display: none; }
.media-card {
  position: relative; flex: 1 0 74px; min-width: 74px; height: 100%; overflow: hidden;
  scroll-snap-align: center; border-radius: 24px; background: var(--brand-dark);
  box-shadow: 0 14px 34px rgba(8, 51, 68, .13);
  opacity: .74; transition: flex .6s ease, opacity .45s ease, box-shadow .45s ease;
}
.media-card.is-active { flex: 7 0 420px; opacity: 1; box-shadow: 0 22px 54px rgba(8, 51, 68, .22); }
.media-card img, .media-card video { width: 100%; height: 100%; object-fit: cover; }
.media-card video { background: #061f29; }
.media-card-info {
  position: absolute; inset: auto 0 0; display: flex; align-items: end; justify-content: space-between; gap: 12px;
  padding: 46px 16px 15px; color: var(--white);
  background: linear-gradient(transparent, rgba(6, 31, 41, .88));
}
.media-card-info { opacity: 0; transition: opacity .3s ease; }
.media-card.is-active .media-card-info { opacity: 1; }
.media-card-info strong { max-width: 70%; line-height: 1.25; }
.media-open {
  flex: 0 0 auto; border: 0; border-radius: 999px; padding: 9px 13px;
  background: var(--white); color: var(--brand-dark); font-weight: 850;
}
.media-badge {
  position: absolute; top: 14px; left: 14px; padding: 6px 10px; border-radius: 999px;
  background: rgba(6, 31, 41, .8); color: var(--white); font-size: .76rem; font-weight: 900;
}
.media-card:not(.is-active) .media-badge { left: 50%; transform: translateX(-50%); }
.faq-section { background: var(--white); }
.faq-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: 54px; align-items: start; }
.faq-list { display: grid; gap: 12px; }
.faq-list details { background: var(--paper); border: 1px solid var(--line); border-radius: 20px; padding: 0 20px; }
.faq-list details[open] { background: #edfafa; border-color: rgba(39, 197, 189, .35); }
.faq-list summary { position: relative; padding: 20px 34px 20px 0; color: var(--brand-dark); font-weight: 850; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 2px; top: 50%; transform: translateY(-50%); font-size: 1.45rem; color: var(--accent-strong); }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { padding-right: 24px; margin: -3px 0 20px; }
.map-section { background: radial-gradient(circle at 80% 10%, rgba(39, 197, 189, .14), transparent 32%), #f7fbfc; }
.map-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 48px; align-items: center; }
.county-list { display: flex; flex-wrap: wrap; gap: 10px; margin: 28px 0 20px; }
.county-chip { border: 1px solid var(--line); background: var(--white); color: var(--brand-dark); padding: .68rem .9rem; border-radius: 999px; font-weight: 850; transition: background .2s ease, color .2s ease, transform .2s ease; }
.county-chip:hover { transform: translateY(-1px); }
.county-chip.is-active { background: var(--brand-dark); color: var(--white); border-color: var(--brand-dark); }
.region-info { background: var(--white); border: 1px solid var(--line); border-radius: 24px; padding: 22px; box-shadow: 0 12px 34px rgba(8, 51, 68, .07); }
.region-info strong { display: block; font-size: 1.2rem; margin-bottom: 5px; }
.region-info p { margin-bottom: 0; }
.map-card { position: relative; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-xl); padding: 18px; box-shadow: var(--shadow); overflow: hidden; }
.coverage-map { display: block; width: 100%; aspect-ratio: 760 / 520; min-height: 0; border: 0; border-radius: 24px; background: #e9f5f4; }
.map-note { font-size: .88rem; margin: 12px 6px 0; }

.cta-section { padding-top: 40px; }
.cta-card { display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: center; background: linear-gradient(135deg, var(--brand-dark), #0b5868); color: var(--white); border-radius: var(--radius-xl); padding: clamp(28px, 5vw, 54px); box-shadow: var(--shadow); }
.cta-card h2, .cta-card p { color: var(--white); }
.cta-card p { opacity: .84; margin-bottom: 0; }
.contact-actions { display: grid; gap: 12px; min-width: min(330px, 100%); }
.copy-button { min-height: 48px; border: 1px solid rgba(255,255,255,.3); background: rgba(255,255,255,.08); color: var(--white); border-radius: 999px; font-weight: 850; padding: .8rem 1rem; }
.copy-button:hover { background: rgba(255,255,255,.15); }
.contact-socials { display: flex; align-items: center; justify-content: center; gap: 9px; margin-top: 4px; }
.contact-socials > span { margin-right: 3px; color: rgba(255,255,255,.82); font-size: .88rem; font-weight: 800; }
.contact-socials .social-link { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.3); color: var(--white); box-shadow: none; }
.contact-socials .social-link:hover { background: var(--white); border-color: var(--white); color: var(--brand-dark); }

.site-footer { padding: 44px 0 50px; background: #061f29; color: var(--white); }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr 1fr; gap: 30px; }
.site-footer p, .site-footer a, .site-footer span { color: rgba(255,255,255,.72); }
.site-footer strong { display: block; color: var(--white); margin-bottom: 8px; }
.footer-brand { margin-bottom: 14px; }
address { font-style: normal; display: grid; gap: 8px; }
.site-footer a:hover { color: var(--white); }

.image-dialog { width: min(1080px, calc(100% - 2rem)); border: 0; border-radius: 28px; padding: 16px 68px; background: var(--white); box-shadow: var(--shadow); }
.image-dialog::backdrop { background: rgba(6, 31, 41, .72); backdrop-filter: blur(4px); }
.dialog-media { display: grid; place-items: center; min-height: 240px; }
.dialog-media img, .dialog-media video { width: 100%; max-height: 76vh; object-fit: contain; border-radius: 20px; background: #061f29; }
.image-dialog p { margin: 12px 8px 4px; color: var(--ink); font-weight: 850; }
.dialog-close { position: absolute; right: 20px; top: 20px; width: 42px; height: 42px; border: 0; border-radius: 999px; background: rgba(6, 31, 41, .86); color: var(--white); font-size: 1.8rem; line-height: 1; }
.dialog-arrow {
  position: absolute; z-index: 2; top: 50%; transform: translateY(-50%);
  width: 46px; height: 60px; border: 0; border-radius: 16px;
  background: rgba(6, 31, 41, .82); color: var(--white); font-size: 2.2rem;
}
.dialog-prev { left: 12px; }
.dialog-next { right: 12px; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.reveal-delay { transition-delay: .14s; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  :root { --header-h: 72px; }
  .section { padding: 76px 0; }
  .hero-grid, .about-grid, .faq-layout, .map-layout, .cta-card { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-media { max-width: 600px; }
  .floating-card { left: 20px; }
  .strip-grid, .services-grid { grid-template-columns: 1fr; }
  .process-list { grid-template-columns: repeat(2, 1fr); }
  .media-carousel { height: clamp(420px, 75vh, 680px); }
  .media-card.is-active { flex-basis: 360px; }
  .about-media { min-height: 480px; max-width: 640px; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 1120px) {
  .nav-toggle { display: block; }
  .primary-nav {
    position: absolute; top: calc(100% + 10px); left: 1rem; right: 1rem;
    display: grid; gap: 4px; padding: 10px; background: rgba(255,255,255,.96); border: 1px solid var(--line); border-radius: 22px; box-shadow: var(--shadow);
    transform: translateY(-10px); opacity: 0; visibility: hidden; pointer-events: none; transition: .2s ease;
  }
  .primary-nav.is-open { transform: translateY(0); opacity: 1; visibility: visible; pointer-events: auto; }
  .primary-nav a { padding: .9rem 1rem; }
  .nav-socials { justify-content: center; gap: 10px; margin: 6px 0 2px; }
  .primary-nav .social-link { width: 42px; height: 42px; padding: 0; }
}

@media (max-width: 760px) {
  .trust-list { grid-template-columns: 1fr; }
  .hero-actions .button { width: 100%; }
  .hero-socials { width: 100%; justify-content: center; }
  .process-list { grid-template-columns: 1fr; }
  .media-accordion { gap: 18px; }
  .media-group { border-radius: 20px; }
  .media-group-header { padding: 16px; gap: 12px; }
  .media-group-header > strong { flex-basis: 42px; height: 42px; }
  .media-group-header h3 { font-size: 1.05rem; }
  .media-group-header p { font-size: .8rem; }
  .media-carousel { height: clamp(360px, 75vh, 580px); padding: 12px; }
  .media-track { gap: 8px; }
  .media-card { flex: 0 0 54px; min-width: 54px; border-radius: 18px; }
  .media-card.is-active { flex: 0 0 76vw; }
  .image-dialog { padding: 58px 12px 14px; }
  .dialog-arrow { top: auto; bottom: 12px; width: 42px; height: 42px; border-radius: 50%; }
  .dialog-prev { left: 12px; }
  .dialog-next { right: 12px; }
  .image-dialog p { padding-inline: 48px; text-align: center; }
  .about-media { min-height: 390px; }
  .about-img-main { width: 88%; }
  .about-img-overlap { width: 58%; border-width: 7px; }
  .map-card { padding: 10px; }
  .coverage-map { min-height: 0; border-radius: 18px; }
  .cta-card { border-radius: 24px; }
}

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