/* ==========================================================
   Vlnadom — fleecehouse.digital
   Rodinný rozpočet v teple domova
   ========================================================== */

:root {
  --night: #201711;
  --wool: #2a1f18;
  --felt: #34271f;
  --felt-hi: #3f3027;
  --cream: #f4e9dc;
  --muted: #bfa992;
  --line: rgba(217, 164, 65, 0.18);
  --line-soft: rgba(244, 233, 220, 0.10);
  --honey: #d9a441;
  --honey-dim: #a87c2c;
  --moss: #8aa06c;
  --clay: #c8705d;

  --r-sm: 10px;
  --r-md: 18px;
  --r-lg: 28px;

  --shadow-1: 0 2px 6px rgba(0, 0, 0, .28);
  --shadow-2: 0 18px 42px rgba(0, 0, 0, .42);

  --display: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
  --body: "Segoe UI", Roboto, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --mono: ui-monospace, "SFMono-Regular", "Cascadia Mono", Consolas, monospace;

  --wrap: 1140px;
  --pad: 24px;
}

/* ---------- základ ---------- */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background-color: var(--night);
  background-image:
    radial-gradient(1100px 620px at 78% -8%, rgba(217, 164, 65, .13), transparent 62%),
    radial-gradient(900px 520px at 4% 12%, rgba(138, 160, 108, .10), transparent 60%),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, .014) 0 2px, transparent 2px 4px),
    repeating-linear-gradient(-45deg, rgba(0, 0, 0, .05) 0 2px, transparent 2px 4px);
  color: var(--cream);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: var(--honey); text-decoration: none; }
a:hover { color: #f0c477; }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.01em;
  margin: 0 0 .5em;
}

h1 { font-size: clamp(2.1rem, 5.2vw, 3.5rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); }
h3 { font-size: 1.24rem; }

p { margin: 0 0 1rem; }

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.band { padding: 84px 0; position: relative; }
.band-alt { background: linear-gradient(180deg, rgba(42, 31, 24, 0) 0%, rgba(42, 31, 24, .75) 12%, rgba(42, 31, 24, .75) 88%, rgba(42, 31, 24, 0) 100%); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--honey);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 0;
  border-top: 2px dashed var(--honey-dim);
}

.lead { color: var(--muted); font-size: 1.06rem; max-width: 62ch; }

.section-head { max-width: 720px; margin-bottom: 46px; }

/* ---------- šitý rám (signature) ---------- */
.stitch {
  position: relative;
  background: linear-gradient(160deg, var(--felt) 0%, var(--wool) 100%);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-1);
}
.stitch::after {
  content: "";
  position: absolute;
  inset: 7px;
  border: 2px dashed rgba(244, 233, 220, .16);
  border-radius: calc(var(--r-md) - 7px);
  pointer-events: none;
}

/* ---------- tlačidlá ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  border: 0;
  font: 600 .98rem/1 var(--body);
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  text-align: center;
}
.btn-main {
  background: linear-gradient(135deg, var(--honey) 0%, #c58a2f 100%);
  color: #2a1c0a;
  box-shadow: 0 10px 24px rgba(217, 164, 65, .22);
}
.btn-main:hover { transform: translateY(-2px); color: #2a1c0a; box-shadow: 0 14px 30px rgba(217, 164, 65, .3); }
.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 2px dashed rgba(244, 233, 220, .28);
}
.btn-ghost:hover { border-color: var(--honey); color: var(--honey); transform: translateY(-2px); }
.btn-wide { width: 100%; }

:focus-visible {
  outline: 3px solid var(--honey);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- hlavička ---------- */
.top {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(32, 23, 17, .82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-soft);
}
.top-in {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 74px;
}
.brand { display: flex; align-items: center; gap: 12px; color: var(--cream); }
.brand:hover { color: var(--cream); }
.brand svg { width: 38px; height: 38px; flex: none; }
.brand-name { font-family: var(--display); font-size: 1.3rem; font-weight: 600; line-height: 1; }
.brand-sub { display: block; font-family: var(--mono); font-size: .62rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); margin-top: 4px; }

.nav { margin-left: auto; display: flex; align-items: center; gap: 26px; }
.nav a { color: var(--cream); font-size: .95rem; position: relative; padding: 6px 0; }
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  border-bottom: 2px dashed var(--honey);
  opacity: 0;
  transition: opacity .2s ease;
}
.nav a:hover::after, .nav a.is-active::after { opacity: 1; }
.nav .btn { padding: 11px 20px; }

.nav-doc { margin-left: auto; display: flex; align-items: center; }
.nav-doc .btn { padding: 11px 20px; font-size: .9rem; }

.burger {
  display: none;
  margin-left: auto;
  width: 46px; height: 42px;
  background: transparent;
  border: 2px dashed rgba(244, 233, 220, .28);
  border-radius: var(--r-sm);
  cursor: pointer;
  padding: 10px;
}
.burger span { display: block; height: 2px; background: var(--cream); margin: 4px 0; transition: .2s; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------- hero ---------- */
.hero { padding: 76px 0 70px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 54px;
  align-items: center;
}
.hero h1 span { color: var(--honey); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.hero-note { font-size: .88rem; color: var(--muted); margin-top: 18px; }

.hero-art { position: relative; }
.hero-art img {
  width: 100%;
  aspect-ratio: 4 / 3.4;
  object-fit: cover;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-2);
  filter: saturate(.92) brightness(.9);
}
.hero-tag {
  position: absolute;
  left: -18px;
  bottom: 28px;
  padding: 16px 20px;
  background: var(--felt);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-2);
  border: 2px dashed rgba(217, 164, 65, .35);
  max-width: 230px;
}
.hero-tag b { font-family: var(--mono); font-size: 1.5rem; color: var(--honey); display: block; }
.hero-tag small { color: var(--muted); font-size: .82rem; line-height: 1.4; display: block; margin-top: 2px; }

/* ---------- pásik dôvery ---------- */
.strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line-soft);
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--line-soft);
}
.strip div { background: var(--wool); padding: 24px 20px; text-align: center; }
.strip b { display: block; font-family: var(--mono); font-size: 1.5rem; color: var(--cream); }
.strip span { font-size: .85rem; color: var(--muted); }

/* ---------- mriežky ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }

.card { padding: 30px 28px; }
.card h3 { margin-bottom: 8px; }
.card p { color: var(--muted); font-size: .96rem; margin: 0; }
.card-ico {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: rgba(217, 164, 65, .12);
  margin-bottom: 16px;
}
.card-ico svg { width: 24px; height: 24px; stroke: var(--honey); fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

/* ---------- ako to funguje ---------- */
.steps-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 50px; align-items: center; }
.steps-grid img { border-radius: var(--r-lg); aspect-ratio: 3 / 3.6; object-fit: cover; box-shadow: var(--shadow-2); filter: saturate(.9) brightness(.88); }
.step { display: flex; gap: 20px; padding: 20px 0; border-bottom: 2px dashed var(--line-soft); }
.step:last-child { border-bottom: 0; }
.step-n {
  flex: none;
  width: 46px; height: 46px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--mono);
  color: var(--night);
  background: var(--honey);
  font-weight: 700;
}
.step h3 { margin-bottom: 4px; }
.step p { color: var(--muted); font-size: .96rem; margin: 0; }

/* ---------- kalkulačka (signature) ---------- */
.calc { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.calc-panel { padding: 32px 30px; }
.field { margin-bottom: 18px; }
.field label { display: flex; justify-content: space-between; align-items: baseline; font-size: .9rem; margin-bottom: 7px; color: var(--cream); }
.field label b { font-family: var(--mono); color: var(--honey); font-weight: 600; }
.field input[type="range"] { width: 100%; accent-color: var(--honey); height: 26px; }
.field input[type="number"],
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  background: rgba(0, 0, 0, .22);
  border: 2px dashed rgba(244, 233, 220, .18);
  border-radius: var(--r-sm);
  color: var(--cream);
  font: 400 1rem/1.4 var(--body);
}
.field textarea { min-height: 128px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--honey); outline: none; }
.field select option { background: var(--felt); color: var(--cream); }

.blanket { display: flex; flex-direction: column; gap: 10px; margin: 6px 0 22px; }
.thread { display: grid; grid-template-columns: 120px 1fr 78px; align-items: center; gap: 12px; font-size: .88rem; }
.thread span:first-child { color: var(--muted); }
.thread-bar { height: 22px; border-radius: 6px; background: rgba(255, 255, 255, .05); overflow: hidden; }
.thread-bar i {
  display: block; height: 100%;
  border-radius: 6px;
  transition: width .45s ease;
  background-image: repeating-linear-gradient(90deg, rgba(0, 0, 0, .16) 0 3px, transparent 3px 7px);
}
.thread-val { font-family: var(--mono); text-align: right; color: var(--cream); }
.t-fix i { background-color: var(--clay); }
.t-food i { background-color: var(--honey); }
.t-kids i { background-color: var(--moss); }
.t-other i { background-color: #8f7ba6; }
.t-save i { background-color: #6f9fb0; }

.calc-out {
  margin-top: auto;
  padding: 20px 22px;
  border-radius: var(--r-md);
  background: rgba(217, 164, 65, .10);
  border: 2px dashed rgba(217, 164, 65, .34);
}
.calc-out strong { font-family: var(--mono); font-size: 1.9rem; color: var(--honey); display: block; }
.calc-out p { margin: 6px 0 0; font-size: .88rem; color: var(--muted); }
.calc-warn { color: var(--clay) !important; }

/* ---------- cenník ---------- */
.toggle-wrap { display: flex; align-items: center; justify-content: center; gap: 14px; margin-bottom: 36px; }
.toggle-btn {
  padding: 10px 22px;
  border-radius: 999px;
  border: 2px dashed rgba(244, 233, 220, .22);
  background: transparent;
  color: var(--cream);
  cursor: pointer;
  font: 600 .92rem var(--body);
  transition: .2s;
}
.toggle-btn.is-on { background: var(--honey); color: #2a1c0a; border-style: solid; border-color: var(--honey); }

.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.plan { padding: 34px 30px; display: flex; flex-direction: column; }
.plan-top { border-bottom: 2px dashed var(--line-soft); padding-bottom: 20px; margin-bottom: 20px; }
.plan h3 { margin-bottom: 4px; }
.plan-desc { color: var(--muted); font-size: .9rem; margin: 0 0 16px; }
.price { display: flex; align-items: baseline; gap: 6px; }
.price b { font-family: var(--mono); font-size: 2.6rem; color: var(--cream); line-height: 1; }
.price span { color: var(--muted); font-size: .9rem; }
.price-note { font-size: .8rem; color: var(--muted); margin: 8px 0 0; }
.plan ul { list-style: none; padding: 0; margin: 0 0 26px; }
.plan li { position: relative; padding-left: 28px; margin-bottom: 11px; font-size: .95rem; }
.plan li::before {
  content: "";
  position: absolute; left: 4px; top: 9px;
  width: 12px; height: 7px;
  border-left: 2px solid var(--moss);
  border-bottom: 2px solid var(--moss);
  transform: rotate(-45deg);
}
.plan .btn { margin-top: auto; }
.plan-hi { border: 2px solid rgba(217, 164, 65, .5); box-shadow: 0 20px 46px rgba(0, 0, 0, .5); }
.plan-hi::after { border-color: rgba(217, 164, 65, .3); }
.plan-badge {
  position: absolute; top: -14px; left: 30px;
  background: var(--honey); color: #2a1c0a;
  font: 700 .72rem/1 var(--body);
  letter-spacing: .08em; text-transform: uppercase;
  padding: 8px 14px; border-radius: 999px;
}
.pay-note {
  margin-top: 28px; padding: 22px 26px;
  font-size: .9rem; color: var(--muted);
}
.pay-note b { color: var(--cream); }

/* ---------- recenzie ---------- */
.quote { padding: 30px 28px; display: flex; flex-direction: column; gap: 16px; }
.quote p { font-family: var(--display); font-size: 1.08rem; color: var(--cream); margin: 0; }
.quote footer { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.avatar {
  width: 42px; height: 42px; flex: none;
  border-radius: 50%;
  display: grid; place-items: center;
  font: 700 .95rem var(--body);
  background: rgba(138, 160, 108, .22);
  color: var(--moss);
}
.quote small { display: block; color: var(--muted); font-size: .82rem; }
.quote cite { font-style: normal; font-weight: 600; font-size: .95rem; }

/* ---------- prečo Vlnadom ---------- */
.why-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 50px; align-items: center; }
.why-grid img { border-radius: var(--r-lg); aspect-ratio: 4 / 3.2; object-fit: cover; box-shadow: var(--shadow-2); filter: saturate(.9) brightness(.88); }
.ticks { list-style: none; padding: 0; margin: 22px 0 0; }
.ticks li { position: relative; padding-left: 30px; margin-bottom: 12px; color: var(--muted); font-size: .97rem; }
.ticks li strong { color: var(--cream); font-weight: 600; }
.ticks li::before {
  content: "";
  position: absolute; left: 4px; top: 9px;
  width: 13px; height: 8px;
  border-left: 2px solid var(--honey);
  border-bottom: 2px solid var(--honey);
  transform: rotate(-45deg);
}

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.qa { border-bottom: 2px dashed var(--line-soft); }
.qa-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 22px 4px;
  background: none; border: 0;
  color: var(--cream);
  font: 600 1.04rem/1.4 var(--display);
  text-align: left;
  cursor: pointer;
}
.qa-q i {
  flex: none; width: 26px; height: 26px;
  border-radius: 50%;
  border: 2px dashed var(--honey);
  position: relative;
  transition: transform .25s ease;
}
.qa-q i::before, .qa-q i::after {
  content: ""; position: absolute; inset: 0; margin: auto;
  background: var(--honey);
}
.qa-q i::before { width: 10px; height: 2px; }
.qa-q i::after { width: 2px; height: 10px; transition: opacity .25s ease; }
.qa.is-open .qa-q i { transform: rotate(180deg); }
.qa.is-open .qa-q i::after { opacity: 0; }
.qa-a { max-height: 0; overflow: hidden; transition: max-height .32s ease; }
.qa-a p { color: var(--muted); font-size: .96rem; padding: 0 4px 22px; margin: 0; }

/* ---------- kontakt ---------- */
.contact-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 30px; }
.form-panel { padding: 34px 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.check { display: flex; gap: 12px; align-items: flex-start; font-size: .85rem; color: var(--muted); margin: 4px 0 20px; }
.check input { margin-top: 4px; accent-color: var(--honey); width: 18px; height: 18px; flex: none; }
.err { display: block; color: var(--clay); font-size: .8rem; margin-top: 5px; min-height: 1em; }
.form-ok {
  display: none;
  margin-top: 18px; padding: 16px 20px;
  border-radius: var(--r-sm);
  background: rgba(138, 160, 108, .14);
  border: 2px dashed rgba(138, 160, 108, .5);
  color: var(--cream);
  font-size: .93rem;
}
.form-ok.is-on { display: block; }

.contact-side { display: flex; flex-direction: column; gap: 22px; }
.contact-side img { border-radius: var(--r-md); aspect-ratio: 16 / 9; object-fit: cover; filter: saturate(.9) brightness(.85); }
.info { padding: 26px 28px; }
.info dl { margin: 0; display: grid; gap: 16px; }
.info dt { font-family: var(--mono); font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; color: var(--honey); }
.info dd { margin: 3px 0 0; font-size: .98rem; }
.info a { color: var(--cream); border-bottom: 2px dashed var(--honey); }
.info a:hover { color: var(--honey); }

/* ---------- pätička ---------- */
.foot { border-top: 1px solid var(--line-soft); padding: 56px 0 34px; background: rgba(0, 0, 0, .2); }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 34px; }
.foot p { color: var(--muted); font-size: .9rem; }
.foot h4 { font-family: var(--mono); font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--honey); margin: 0 0 14px; }
.foot ul { list-style: none; padding: 0; margin: 0; }
.foot li { margin-bottom: 9px; }
.foot li a { color: var(--cream); font-size: .93rem; }
.foot li a:hover { color: var(--honey); }
.foot-btm {
  margin-top: 40px; padding-top: 22px;
  border-top: 2px dashed var(--line-soft);
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between;
  font-size: .84rem; color: var(--muted);
}
.disclaimer { margin-top: 22px; font-size: .82rem; color: var(--muted); opacity: .85; max-width: 70ch; }

/* ---------- cookie lišta ---------- */
.cookie {
  position: fixed;
  left: 16px; right: 16px; bottom: 16px;
  z-index: 90;
  max-width: 940px;
  margin: 0 auto;
  padding: 24px 26px;
  background: var(--felt);
  border-radius: var(--r-md);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .6);
  border: 2px dashed rgba(217, 164, 65, .38);
  display: none;
  gap: 22px;
  align-items: center;
}
.cookie.is-on { display: flex; }
.cookie p { margin: 0; font-size: .9rem; color: var(--muted); }
.cookie p b { color: var(--cream); display: block; font-family: var(--display); font-size: 1.05rem; margin-bottom: 4px; }
.cookie-actions { display: flex; gap: 10px; flex: none; }
.cookie .btn { padding: 12px 20px; font-size: .9rem; }

/* ---------- právne stránky ---------- */
.doc { padding: 60px 0 80px; }
.doc-inner { max-width: 860px; margin: 0 auto; padding: 44px 46px; }
.doc-inner h2 { margin-top: 36px; font-size: 1.42rem; }
.doc-inner h2:first-of-type { margin-top: 26px; }
.doc-inner ul { padding-left: 22px; color: var(--muted); }
.doc-inner li { margin-bottom: 9px; }
.doc-inner p { color: var(--muted); }
.doc-meta { font-family: var(--mono); font-size: .78rem; color: var(--honey); letter-spacing: .1em; text-transform: uppercase; }
.back-link { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 26px; font-size: .92rem; }
.doc-table { width: 100%; border-collapse: collapse; margin: 18px 0; font-size: .93rem; }
.doc-table th, .doc-table td { text-align: left; padding: 12px 14px; border-bottom: 2px dashed var(--line-soft); }
.doc-table th { color: var(--honey); font-family: var(--mono); font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; }
.doc-table td { color: var(--muted); }

/* ---------- animácia príchodu ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-in { opacity: 1; transform: none; }

/* ---------- responzivita ---------- */
@media (max-width: 980px) {
  .hero-grid, .steps-grid, .calc, .contact-grid, .why-grid { grid-template-columns: 1fr; }
  .grid-3, .plans { grid-template-columns: 1fr 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid img { aspect-ratio: 16 / 9; }
  .hero-art { order: -1; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .band { padding: 58px 0; }
  .nav-doc { margin-left: auto; display: flex; align-items: center; }
.nav-doc .btn { padding: 11px 20px; font-size: .9rem; }

.burger { display: block; }
  .nav {
    position: absolute;
    top: 74px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--felt);
    padding: 10px 20px 22px;
    border-bottom: 2px dashed var(--line);
    display: none;
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 13px 0; border-bottom: 1px solid var(--line-soft); }
  .nav .btn { margin-top: 14px; }
  .grid-3, .grid-2, .plans, .strip, .form-row, .foot-grid { grid-template-columns: 1fr; }
  .strip div { padding: 18px; }
  .hero-tag { left: 12px; bottom: 12px; }
  .thread { grid-template-columns: 96px 1fr 66px; font-size: .82rem; }
  .cookie { flex-direction: column; align-items: stretch; padding: 20px; }
  .cookie-actions { flex-direction: column; }
  .doc-inner { padding: 30px 22px; }
  .nav-doc .btn { padding: 10px 14px; font-size: .82rem; }
  .plan-hi { order: -1; }
}

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