/* ============================================================
   yoga musthaves: affiliate directory
   Palette grounded in the products: eucalyptus + oat + clay
   ============================================================ */

:root {
  /* colour */
  --bg:        #F7F4EF;
  --surface:   #FFFFFF;
  --surface-2: #F1ECE2;
  --ink:       #23302B;
  --muted:     #6E7B73;
  --primary:   #2F5D50;
  --primary-dark: #234A40;
  --accent:    #C16E3E;   /* clay, prices and small accents only */
  --accent-soft:#F3E7DC;
  --line:      #E6E0D5;
  --ok:        #3F7A5F;

  /* type */
  --display: "Fraunces", Georgia, "Times New Roman", serif;
  --body: "Figtree", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* spacing scale */
  --s1: .25rem; --s2: .5rem; --s3: .75rem; --s4: 1rem; --s5: 1.5rem;
  --s6: 2rem; --s7: 3rem; --s8: 4rem; --s9: 5rem; --s10: 7rem;

  --radius: 14px;
  --radius-sm: 10px;
  --maxw: 1200px;
  --shadow: 0 1px 2px rgba(35,48,43,.04), 0 8px 30px rgba(35,48,43,.06);
  --shadow-lg: 0 12px 40px rgba(35,48,43,.12);
}

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

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

body {
  margin: 0;
  font-family: var(--body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -.01em;
  margin: 0 0 var(--s4);
  font-optical-sizing: auto;
}
h1 { font-size: clamp(2.3rem, 5.2vw, 3.7rem); font-weight: 470; }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
p { margin: 0 0 var(--s4); }

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--s5); }
.eyebrow {
  font-family: var(--body);
  font-size: .78rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 var(--s3);
}
.muted { color: var(--muted); }
.center { text-align: center; }
.lead { font-size: 1.18rem; color: #3a4842; max-width: 60ch; }

/* skip link */
.skip {
  position: absolute; left: -999px; top: 0;
  background: var(--primary); color: #fff; padding: .6rem 1rem; border-radius: 0 0 8px 0; z-index: 200;
}
.skip:focus { left: 0; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--body); font-weight: 600; font-size: 1rem;
  padding: .85rem 1.4rem; border-radius: 999px;
  border: 1px solid transparent; cursor: pointer;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
  line-height: 1;
}
.btn-primary,
.prose a.btn-primary,
.nav-links a.btn-primary,
.btn-primary:visited { background: var(--primary); color: #ffffff; }
.prose a.btn { text-decoration: none; }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-ghost { background: transparent; color: var(--primary); border-color: var(--line); }
.btn-ghost:hover { background: var(--surface); border-color: var(--primary); }
.btn-sm { padding: .6rem 1rem; font-size: .92rem; }
.btn .arrow { transition: transform .2s ease; }
.btn:hover .arrow { transform: translateX(3px); }

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

/* ---------- header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(247,244,239,.85);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
.site-header.scrolled { border-color: var(--line); box-shadow: 0 4px 24px rgba(35,48,43,.05); }
.nav { display: flex; align-items: center; gap: var(--s5); height: 72px; }
.brand { font-family: var(--display); font-size: 1.32rem; font-weight: 500; letter-spacing: -.02em; color: var(--ink); white-space: nowrap; display: inline-flex; align-items: center; }
.logo-img { height: 40px; width: auto; display: block; }
.logo-img--footer { height: 38px; }
@media (max-width: 720px) { .logo-img { height: 34px; } }
.brand b { color: var(--primary); font-weight: 600; }
.brand .leaf { color: var(--accent); }
.nav-links { display: flex; gap: var(--s5); margin-left: auto; align-items: center; }
.nav-links a { font-size: .98rem; font-weight: 500; color: #3a4842; position: relative; padding: .3rem 0; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0; background: var(--accent); transition: width .22s ease;
}
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { width: 100%; }
.nav-links a[aria-current="page"] { color: var(--primary); }
.nav-cta { margin-left: var(--s2); }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: .4rem; margin-left: auto; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; transition: transform .25s ease, opacity .25s 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 ---------- */
.hero { padding: clamp(2.5rem, 6vw, 5rem) 0 clamp(3rem, 6vw, 5.5rem); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: var(--s8); align-items: center; }
.hero h1 { margin-bottom: var(--s5); }
.hero h1 em { font-style: italic; color: var(--primary); }
.hero .lead { margin-bottom: var(--s6); }
.hero-actions { display: flex; gap: var(--s3); flex-wrap: wrap; align-items: center; }
.hero-trust { margin-top: var(--s6); display: flex; gap: var(--s5); flex-wrap: wrap; font-size: .92rem; color: var(--muted); }
.hero-trust b { color: var(--ink); font-weight: 700; }
.hero-trust span { display: flex; align-items: center; gap: .4rem; }

.hero-media { position: relative; min-height: 420px; }
.hero-media .card-float {
  position: absolute; border-radius: var(--radius); overflow: hidden;
  background: var(--surface); box-shadow: var(--shadow-lg); border: 1px solid var(--line);
}
.hero-media .card-float img { aspect-ratio: 1/1; object-fit: cover; width: 100%; }
.hero-media .f1 { width: 56%; top: 0; right: 4%; z-index: 2; transform: rotate(-2deg); }
.hero-media .f2 { width: 46%; bottom: 6%; left: 0; z-index: 3; transform: rotate(2deg); }
.hero-media .f3 { width: 38%; top: 38%; right: 0; z-index: 1; transform: rotate(3deg); }
.hero-media .blob {
  position: absolute; inset: 8% 6% 6% 8%; background:
    radial-gradient(120% 120% at 20% 10%, var(--accent-soft), transparent 60%),
    radial-gradient(120% 120% at 90% 80%, #DCE6DF, transparent 60%);
  border-radius: 40% 60% 55% 45%; filter: blur(4px); z-index: 0;
}

/* ---------- sections ---------- */
.section { padding: clamp(3rem, 7vw, 5.5rem) 0; }
.section-head { max-width: 60ch; margin-bottom: var(--s7); }
.section-head.center { margin-inline: auto; }
.section--alt { background: var(--surface-2); }

/* ---------- category tiles ---------- */
.cats { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s4); }
.cat {
  position: relative; border-radius: var(--radius); overflow: hidden; min-height: 220px;
  display: flex; align-items: flex-end; color: #fff; isolation: isolate;
  box-shadow: var(--shadow); transition: transform .2s ease, box-shadow .2s ease;
}
.cat:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.cat img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.cat::after { content:""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(35,48,43,0) 30%, rgba(28,40,35,.78) 100%); }
.cat-body { padding: var(--s5); width: 100%; }
.cat-body h3 { color: #fff; margin: 0 0 .2rem; }
.cat-body .count { font-size: .9rem; opacity: .9; display: flex; align-items: center; gap: .4rem; }

/* ---------- product grid ---------- */
.grid {
  display: grid; gap: var(--s5);
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}
.product {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.product:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: #d8d0c1; }
.product-media { aspect-ratio: 1/1; background: var(--surface-2); position: relative; }
.product-media img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; padding: 8%; }
.product-tag {
  position: absolute; top: .6rem; left: .6rem; font-size: .72rem; font-weight: 700;
  letter-spacing: .01em; background: var(--accent-soft); color: #9a532b;
  padding: .3rem .6rem; border-radius: 999px; border: 1px solid #ecd9c7; max-width: calc(100% - 1.2rem);
}
.cat-intro { max-width: 68ch; }
.cat-intro .lead { margin-bottom: var(--s4); color: #34433c; }
.cat-intro p:last-child { color: var(--muted); margin-bottom: 0; }
.product-body { padding: var(--s4) var(--s4) var(--s5); display: flex; flex-direction: column; flex: 1; }
.product-brand { font-size: .76rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--accent); margin-bottom: .35rem; }
.product-name {
  font-family: var(--body); font-weight: 600; font-size: 1rem; line-height: 1.35; margin: 0 0 var(--s2);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; min-height: 2.7em;
}
.product-hook {
  font-size: .95rem; font-weight: 600; color: var(--ink); line-height: 1.4; margin: 0 0 var(--s2);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.product-desc {
  font-size: .86rem; color: var(--muted); margin: 0 0 var(--s4);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.product-foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: var(--s3); }
.price { font-family: var(--display); font-size: 1.25rem; font-weight: 500; color: var(--ink); }
.price small { font-family: var(--body); font-size: .72rem; color: var(--muted); font-weight: 600; display: block; letter-spacing: .03em; }
.product .btn { flex-shrink: 0; }

/* ---------- filter bar ---------- */
.catalog-head { padding-top: clamp(2rem,5vw,3.5rem); padding-bottom: var(--s5); }
.filters {
  position: sticky; top: 72px; z-index: 40; background: var(--bg);
  padding: var(--s4) 0; border-bottom: 1px solid var(--line); margin-bottom: var(--s6);
}
.filters-row { display: flex; gap: var(--s3); flex-wrap: wrap; align-items: center; }
.search {
  flex: 1; min-width: 220px; display: flex; align-items: center; gap: .5rem;
  background: var(--surface); border: 1px solid var(--line); border-radius: 999px; padding: .55rem 1rem;
}
.search input { border: 0; outline: 0; background: transparent; font: inherit; width: 100%; color: var(--ink); }
.search svg { flex-shrink: 0; color: var(--muted); }
.select {
  appearance: none; background: var(--surface); border: 1px solid var(--line); border-radius: 999px;
  padding: .6rem 2.2rem .6rem 1rem; font: inherit; font-size: .95rem; color: var(--ink); cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236E7B73' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right .9rem center;
}
.chips { display: flex; gap: .5rem; flex-wrap: wrap; margin-top: var(--s3); }
.chip {
  font: inherit; font-size: .9rem; font-weight: 500; cursor: pointer;
  background: var(--surface); border: 1px solid var(--line); color: #3a4842;
  padding: .45rem .95rem; border-radius: 999px; transition: all .15s ease;
}
.chip:hover { border-color: var(--primary); }
.chip[aria-pressed="true"] { background: var(--primary); color: #fff; border-color: var(--primary); }
.result-count { font-size: .95rem; color: var(--muted); margin-bottom: var(--s4); }
.result-count b { color: var(--ink); }
.empty { text-align: center; padding: var(--s9) var(--s4); color: var(--muted); }

/* ---------- disclosure note ---------- */
.disclosure {
  background: var(--accent-soft); border: 1px solid #ecd9c7; border-radius: var(--radius-sm);
  padding: var(--s4) var(--s5); font-size: .92rem; color: #6b4a2e; display: flex; gap: .7rem; align-items: flex-start;
}
.disclosure svg { flex-shrink: 0; margin-top: 2px; }
.disclosure a { color: #6b4a2e; text-decoration: underline; font-weight: 600; }

/* ---------- brand strip ---------- */
.brandstrip { display: flex; flex-wrap: wrap; gap: var(--s6); justify-content: center; align-items: center; }
.brandstrip span { font-family: var(--display); font-size: 1.35rem; color: var(--muted); letter-spacing: .02em; opacity: .85; }

/* ---------- value props ---------- */
.values { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--s5); }
.value { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: var(--s6); }
.value .ic { width: 44px; height: 44px; border-radius: 12px; background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; margin-bottom: var(--s4); }
.value h3 { font-family: var(--body); font-weight: 700; font-size: 1.08rem; margin-bottom: var(--s2); }
.value p { font-size: .96rem; color: var(--muted); margin: 0; }

/* ---------- prose (content pages) ---------- */
.prose { max-width: 70ch; }
.prose h2 { margin-top: var(--s7); }
.prose ul { padding-left: 1.2rem; }
.prose li { margin-bottom: .5rem; }
.prose a { color: var(--primary); text-decoration: underline; }

/* ---------- contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s7); }
.field { margin-bottom: var(--s4); }
.field label { display: block; font-size: .9rem; font-weight: 600; margin-bottom: .35rem; }
.field input, .field textarea {
  width: 100%; font: inherit; padding: .75rem .9rem; border: 1px solid var(--line);
  border-radius: var(--radius-sm); background: var(--surface); color: var(--ink);
}
.field textarea { min-height: 140px; resize: vertical; }
.hp { position: absolute; left: -9999px; }
.info-card { background: var(--surface-2); border-radius: var(--radius); padding: var(--s6); }
.info-card dt { font-weight: 700; margin-top: var(--s4); }
.info-card dd { margin: 0; color: var(--muted); }

/* ---------- footer ---------- */
.site-footer { background: var(--primary-dark); color: #d6e2da; padding: var(--s8) 0 var(--s6); margin-top: var(--s9); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: var(--s7); margin-bottom: var(--s7); }
.site-footer .brand { color: #fff; margin-bottom: var(--s3); }
.site-footer .brand b { color: #fff; }
.site-footer p { color: #b7c8bf; font-size: .95rem; }
.footer-col h4 { font-family: var(--body); font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: #9fb3a9; margin-bottom: var(--s4); }
.footer-col a { display: block; color: #d6e2da; font-size: .96rem; padding: .25rem 0; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding-top: var(--s5); display: flex; justify-content: space-between; gap: var(--s4); flex-wrap: wrap; font-size: .88rem; color: #9fb3a9; }
.footer-bottom a { color: #9fb3a9; text-decoration: underline; }

/* ---------- back to top ---------- */
#toTop {
  position: fixed; right: 1.2rem; bottom: 1.2rem; z-index: 90;
  width: 46px; height: 46px; border-radius: 50%; border: 0; cursor: pointer;
  background: var(--primary); color: #fff; display: grid; place-items: center;
  opacity: 0; pointer-events: none; transform: translateY(10px); transition: all .25s ease; box-shadow: var(--shadow-lg);
}
#toTop.show { opacity: 1; pointer-events: auto; transform: translateY(0); }

/* ---------- reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- blog & article ---------- */
.article-head { max-width: 760px; margin: 0 auto; padding: clamp(2rem,5vw,3.5rem) 0 var(--s4); }
.crumb { font-size: .9rem; color: var(--muted); margin-bottom: var(--s4); }
.crumb a { color: var(--muted); }
.crumb a:hover { color: var(--primary); }
.article-meta { display: flex; align-items: center; gap: .7rem; margin-top: var(--s5); font-size: .95rem; line-height: 1.4; }
.article-meta img { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line); flex-shrink: 0; }
.article-body { max-width: 760px; margin: 0 auto; padding-bottom: var(--s7); }
.article-body > p:first-of-type { font-size: 1.16rem; color: #34433c; }
.article-cta { margin-top: var(--s6); }

.article-hero {
  max-width: 760px; margin: 0 auto var(--s6); border-radius: var(--radius); overflow: hidden;
  background: var(--surface-2); aspect-ratio: 16/9;
}
.article-hero img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; padding: 6%; }

.rec { margin: var(--s7) 0; padding: var(--s6); background: var(--surface-2); border-radius: var(--radius); }
.rec h2 { margin: 0 0 var(--s5); font-size: 1.25rem; }
.grid-rec { grid-template-columns: repeat(3, 1fr); gap: var(--s4); }

.faq-block { margin: var(--s7) 0; }
.faq-block > h2 { margin-bottom: var(--s4); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary { cursor: pointer; padding: var(--s4) 0; font-weight: 600; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.4rem; color: var(--accent); line-height: 1; flex-shrink: 0; }
.faq-item[open] summary::after { content: "\2212"; }
.faq-a { padding: 0 0 var(--s4); color: var(--muted); }
.faq-a p { margin: 0; }

.author-box { display: flex; gap: var(--s4); align-items: flex-start; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: var(--s5); margin: var(--s7) 0; }
.author-box img { width: 88px; height: 88px; border-radius: 50%; flex-shrink: 0; border: 2px solid var(--line); }
.author-name { font-family: var(--display); font-size: 1.2rem; font-weight: 500; margin: 0; }
.author-role { color: var(--accent); font-weight: 600; font-size: .9rem; margin: .1rem 0 .6rem; }
.author-bio { margin: 0; font-size: .95rem; color: var(--muted); }

.about-hero { display: grid; grid-template-columns: 320px 1fr; gap: var(--s7); align-items: center; margin-bottom: var(--s8); }
.about-photo { margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-photo img { width: 100%; height: auto; aspect-ratio: 1/1; object-fit: cover; display: block; }
.about-prose { max-width: 70ch; }
@media (max-width: 760px) { .about-hero { grid-template-columns: 1fr; } .about-photo { max-width: 300px; } }

.blog-cat { margin-bottom: var(--s8); }
.blog-cat-head { display: flex; justify-content: space-between; align-items: baseline; border-bottom: 1px solid var(--line); padding-bottom: var(--s3); margin-bottom: var(--s5); }
.blog-cat-head h2 { margin: 0; }
.muted-link { color: var(--muted); font-size: .92rem; white-space: nowrap; }
.muted-link:hover { color: var(--primary); }
.bloggrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s5); }
.blogcard { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: transform .2s ease, box-shadow .2s ease; }
.blogcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blogcard-img { aspect-ratio: 16/10; background: var(--surface-2); }
.blogcard-img img { width: 100%; height: 100%; object-fit: cover; }
.blogcard-body { padding: var(--s5); display: flex; flex-direction: column; flex: 1; }
.blogcard-cat { font-size: .74rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--accent); margin-bottom: .4rem; }
.blogcard h3 { font-size: 1.12rem; line-height: 1.25; margin: 0 0 var(--s3); }
.blogcard p { font-size: .92rem; color: var(--muted); margin: 0 0 var(--s4); }
.blogcard-link { margin-top: auto; color: var(--primary); font-weight: 600; font-size: .92rem; }
@media (max-width: 900px) { .bloggrid, .grid-rec { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 680px) { .bloggrid, .grid-rec { grid-template-columns: 1fr; } .author-box { flex-direction: column; } }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: var(--s7); }
  .hero-media { min-height: 340px; order: -1; }
  .cats { grid-template-columns: repeat(2, 1fr); }
  .values { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .nav-links {
    position: fixed; inset: 72px 0 auto 0; flex-direction: column; align-items: flex-start;
    gap: 0; background: var(--bg); border-bottom: 1px solid var(--line); padding: var(--s4) var(--s5) var(--s6);
    margin: 0; transform: translateY(-120%); transition: transform .3s ease; box-shadow: var(--shadow-lg);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { width: 100%; padding: .85rem 0; border-bottom: 1px solid var(--line); }
  .nav-links a::after { display: none; }
  .nav-cta { margin: var(--s4) 0 0; }
  .nav-toggle { display: block; }
  .cats { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .filters { top: 64px; }
  .nav { height: 64px; }
  .site-header.scrolled .nav { height: 64px; }
}

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