/* ============================================================
   Dravlek — static site styles
   Institutional & discreet: warm paper, deep navy, brass hairline.
   ============================================================ */

:root {
  --paper: #f4f1ea;
  --paper-raised: #fbfaf6;
  --ink: #0b111b;
  --navy: #101a2b;
  --navy-700: #16233a;

  --text: #17202e;
  --text-invert: #eef1f6;
  --muted: #59616f;
  --muted-invert: #9aa6b8;

  --brass: #a5824c;
  --brass-soft: #c2a878;

  --line: rgba(18, 27, 43, 0.14);
  --line-strong: rgba(18, 27, 43, 0.28);
  --line-invert: rgba(238, 241, 246, 0.16);

  --maxw: 1160px;
  --gutter: clamp(1.25rem, 5vw, 3.5rem);
  --radius: 2px;

  --sans: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --serif: "Newsreader", Georgia, "Times New Roman", serif;
}

/* ---------- reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.015em;
  text-wrap: balance;
  margin: 0;
}

p {
  margin: 0;
}

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

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

:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 3px;
}

/* ---------- layout primitives ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: clamp(4rem, 9vw, 7.5rem);
}

.section--tight {
  padding-block: clamp(3rem, 6vw, 4.5rem);
}

.navy {
  background: var(--navy);
  color: var(--text-invert);
}

.navy .eyebrow {
  color: var(--brass-soft);
}

/* ---------- type helpers ---------- */
.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  margin: 0;
}

.eyebrow--line {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.eyebrow--line::before {
  content: "";
  width: 2rem;
  height: 1px;
  background: currentColor;
  opacity: 0.7;
}

.display {
  font-size: clamp(2.4rem, 6vw, 4.1rem);
  line-height: 1.05;
}

.h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.85rem);
}

.h3 {
  font-size: clamp(1.3rem, 2.2vw, 1.6rem);
}

.lead {
  font-size: clamp(1.08rem, 1.6vw, 1.3rem);
  line-height: 1.55;
  color: var(--muted);
  max-width: 46ch;
}

.navy .lead {
  color: var(--muted-invert);
}

.measure {
  max-width: 58ch;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.95rem 1.6rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease,
    transform 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--primary {
  background: var(--ink);
  color: var(--text-invert);
}

.btn--primary:hover {
  background: var(--navy-700);
}

.btn--primary:disabled {
  opacity: 0.6;
  cursor: default;
  transform: none;
}

.btn--ghost {
  border-color: var(--line-strong);
  color: var(--text);
}

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

.navy .btn--primary {
  background: var(--brass);
  color: var(--ink);
}

.navy .btn--primary:hover {
  background: var(--brass-soft);
}

.navy .btn--ghost {
  border-color: var(--line-invert);
  color: var(--text-invert);
}

.navy .btn--ghost:hover {
  border-color: var(--brass-soft);
}

.textlink {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brass);
  transition: gap 0.2s ease;
}

.textlink:hover {
  gap: 0.85rem;
}

/* ---------- rule / utils ---------- */
.rule {
  height: 1px;
  background: var(--line);
  border: 0;
  margin: 0;
}

.navy .rule {
  background: var(--line-invert);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 100;
  background: var(--ink);
  color: var(--text-invert);
  padding: 0.75rem 1.25rem;
  font-size: 0.85rem;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

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

/* ---------- scroll reveal ---------- */
.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.reveal-ready [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 0.35rem;
  font-family: var(--serif);
  font-size: 1.45rem;
  letter-spacing: 0.01em;
  color: var(--ink);
}

.brand-mark {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brass);
  transform: translateY(-1px);
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 2.5vw, 2.4rem);
}

.nav-link {
  position: relative;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--muted);
  padding-block: 0.4rem;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: var(--text);
}

.nav-link.is-active {
  color: var(--text);
}

.nav-link.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1px;
  background: var(--brass);
}

.nav-cta {
  margin-left: 0.5rem;
  padding: 0.7rem 1.15rem;
  font-size: 0.72rem;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 0.55rem 0.9rem;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  cursor: pointer;
}

.mobile-nav {
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav nav {
  display: flex;
  flex-direction: column;
  padding: 1rem var(--gutter) 2rem;
}

.mobile-nav-link {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--ink);
  padding-block: 0.85rem;
  border-bottom: 1px solid var(--line);
}

@media (max-width: 760px) {
  .nav {
    display: none;
  }
  .nav-toggle {
    display: inline-flex;
  }
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  padding-block: clamp(3.5rem, 6vw, 5rem) 2.25rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  padding-bottom: 3rem;
}

.footer-brand {
  display: inline-flex;
  align-items: baseline;
  gap: 0.35rem;
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--text-invert);
}

.footer-brand .brand-mark {
  background: var(--brass-soft);
}

.footer-tagline {
  margin-top: 0.9rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--muted-invert);
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-col a,
.footer-col span {
  font-size: 0.9rem;
  color: var(--muted-invert);
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--brass-soft);
}

.footer-col-head {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-invert);
  margin-bottom: 0.4rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-top: 1.75rem;
  font-size: 0.8rem;
  color: var(--muted-invert);
}

@media (max-width: 760px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .footer-cols {
    grid-template-columns: 1fr 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: min(86vh, 800px);
  padding-top: clamp(3.5rem, 9vw, 7rem);
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -18%;
  right: -12%;
  width: min(70vw, 780px);
  height: min(70vw, 780px);
  background: radial-gradient(
    circle at center,
    color-mix(in srgb, var(--brass) 22%, transparent) 0%,
    transparent 62%
  );
  filter: blur(8px);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent,
    color-mix(in srgb, var(--ink) 45%, transparent)
  );
  pointer-events: none;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-canvas canvas {
  display: block;
  width: 100%;
  height: 100%;
  animation: canvasIn 1.4s ease both;
}

@keyframes canvasIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.hero-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
      100deg,
      var(--navy) 0%,
      color-mix(in srgb, var(--navy) 80%, transparent) 34%,
      transparent 66%
    ),
    linear-gradient(
      to bottom,
      transparent 55%,
      color-mix(in srgb, var(--ink) 55%, transparent) 100%
    );
}

.hero-content {
  position: relative;
  z-index: 2;
  flex: 1;
}

.hero-title {
  margin-top: 1.6rem;
  max-width: 14ch;
}

.hero-lead {
  margin-top: 1.75rem;
  color: var(--muted-invert);
  max-width: 52ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2.5rem;
  padding-bottom: clamp(3.5rem, 7vw, 5.5rem);
}

.hero-meta {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--line-invert);
}

.meta-list {
  list-style: none;
  margin: 0;
  padding: 1.75rem 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.meta-list li {
  display: flex;
  flex-direction: column;
  font-size: 0.9rem;
  color: var(--muted-invert);
  padding-bottom: 1.75rem;
}

.meta-list span {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--brass-soft);
  margin-bottom: 0.25rem;
}

/* ---------- home: what we do ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.split-title {
  margin-top: 1.4rem;
  max-width: 12ch;
}

.split-body {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
}

.para {
  color: var(--muted);
  max-width: 54ch;
}

.sec-head {
  max-width: 42ch;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.sec-head h2 {
  margin-top: 1.2rem;
}

/* ---------- home: services ---------- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.service-card {
  position: relative;
  background: var(--paper);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  min-height: 300px;
  transition: background 0.25s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: var(--brass);
  transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-card:hover {
  background: var(--paper-raised);
}

.service-card:hover::before {
  width: 100%;
}

.service-num {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--brass);
  letter-spacing: 0.1em;
}

.service-title {
  margin-top: 1.5rem;
  transition: color 0.2s ease;
}

.service-card:hover .service-title {
  color: var(--ink);
}

.service-body {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.98rem;
}

.service-foot {
  margin-top: 2.5rem;
}

/* ---------- home: clients ---------- */
.client-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
}

.client-card {
  padding-top: 1.75rem;
  border-top: 1px solid var(--brass);
}

.client-title {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--text-invert);
}

.client-body {
  margin-top: 0.9rem;
  color: var(--muted-invert);
  font-size: 0.95rem;
}

/* ---------- home: cta ---------- */
.cta {
  padding-top: clamp(3rem, 6vw, 4.5rem);
  padding-bottom: clamp(4rem, 8vw, 6rem);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(2.5rem, 5vw, 4rem);
  background: var(--paper-raised);
  border: 1px solid var(--line);
  border-left: 3px solid var(--brass);
}

.cta-title {
  max-width: 18ch;
}

@media (max-width: 860px) {
  .split,
  .service-grid,
  .client-grid,
  .meta-list {
    grid-template-columns: 1fr;
  }
  .service-card {
    min-height: 0;
  }
  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .hero-title {
    max-width: 100%;
  }
  .hero-actions {
    gap: 0.75rem;
  }
  .hero-actions .btn {
    flex: 1 1 auto;
    justify-content: center;
  }
  .meta-list li {
    padding-bottom: 1.1rem;
  }
  .meta-list li:last-child {
    padding-bottom: 0;
  }
  .cta-inner .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================================
   Interior pages (about / services / contact)
   ============================================================ */
.page-hero {
  padding-top: clamp(3.5rem, 7vw, 5.5rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}

.page-hero-inner {
  max-width: 24ch;
}

.page-hero-title {
  margin-top: 1.4rem;
}

.page-hero-lead {
  margin-top: 1.75rem;
  max-width: 56ch;
}

.prose p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 62ch;
}

.prose p + p {
  margin-top: 1.4rem;
}

.prose.on-navy p {
  color: var(--muted-invert);
}

/* facts */
.fact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.fact {
  background: var(--paper);
  padding: 1.75rem;
}

.fact-label {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.fact-value {
  margin-top: 0.6rem;
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--ink);
}

/* principles */
.principle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
}

.principle-card {
  padding-top: 1.75rem;
  border-top: 1px solid var(--brass);
}

.principle-title {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--text-invert);
}

.principle-body {
  margin-top: 0.9rem;
  color: var(--muted-invert);
  font-size: 0.95rem;
}

/* generic cta band */
.cta-band {
  padding-block: clamp(3.5rem, 7vw, 5.5rem);
}

.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cta-band-inner h2 {
  max-width: 16ch;
}

@media (max-width: 860px) {
  .fact-grid {
    grid-template-columns: 1fr 1fr;
  }
  .principle-grid {
    grid-template-columns: 1fr;
  }
  .cta-band-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .page-hero-inner,
  .page-hero-lead {
    max-width: 100%;
  }
  .cta-band-inner .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ---------- services page ---------- */
.svc-list {
  border-top: 1px solid var(--line);
}

.svc-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  padding-block: clamp(2.5rem, 5vw, 3.75rem);
  border-bottom: 1px solid var(--line);
}

.svc-row-lead {
  max-width: 46ch;
}

.svc-num {
  font-family: var(--serif);
  font-size: 0.95rem;
  color: var(--brass);
  letter-spacing: 0.1em;
}

.svc-title {
  margin-top: 1rem;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
}

.svc-desc {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.6;
}

.svc-points {
  list-style: none;
  margin: 0;
  padding: 0;
  align-self: center;
  display: grid;
  gap: 0.9rem;
}

.svc-points li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--text);
  font-size: 0.98rem;
}

.svc-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brass);
}

.approach {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

@media (max-width: 860px) {
  .svc-row,
  .approach {
    grid-template-columns: 1fr;
  }
}

/* ---------- contact page ---------- */
.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}

.contact-aside {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-block {
  border-top: 1px solid var(--line);
  padding-top: 1.25rem;
}

.contact-label {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-email {
  display: inline-block;
  margin-top: 0.7rem;
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--ink);
  border-bottom: 1px solid var(--brass);
  padding-bottom: 2px;
  transition: color 0.2s ease;
}

.contact-email:hover {
  color: var(--brass);
}

.contact-value {
  margin-top: 0.7rem;
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--ink);
}

.contact-note {
  margin-top: 0.7rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
  max-width: 34ch;
}

.form-wrap {
  background: var(--paper-raised);
  border: 1px solid var(--line);
  border-top: 3px solid var(--brass);
  padding: clamp(1.75rem, 4vw, 2.75rem);
}

.form {
  display: grid;
  gap: 1.4rem;
}

.field {
  display: grid;
  gap: 0.5rem;
}

.field label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.field input,
.field select,
.field textarea {
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--text);
  background: var(--paper);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field textarea {
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--brass);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--brass) 18%, transparent);
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-note {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.5;
}

.form-note a {
  color: var(--brass);
  border-bottom: 1px solid color-mix(in srgb, var(--brass) 45%, transparent);
}

.form-note a:hover {
  border-bottom-color: var(--brass);
}

.error-msg {
  font-size: 0.9rem;
  color: #a4362f;
  background: color-mix(in srgb, #a4362f 8%, transparent);
  border-left: 3px solid #a4362f;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
}

.error-msg[hidden] {
  display: none;
}

.success {
  padding: clamp(1.5rem, 4vw, 2.25rem) 0;
}

.success[hidden] {
  display: none;
}

.success-title {
  font-family: var(--serif);
  font-size: 1.9rem;
  color: var(--ink);
}

.success-body {
  margin-top: 0.9rem;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.6;
  max-width: 42ch;
}

@media (max-width: 860px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
  .reveal-ready [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }
  .hero-canvas canvas {
    animation: none;
  }
}
