/* ========================================================
   Tom Paysage — Design System
   Palette : verts naturels + crème + accents terreux
   Typo    : Outfit (titres) + Inter (corps)
======================================================== */

:root {
  /* Couleurs primaires (vert nature) */
  --green-900: #12321f;
  --green-800: #1b4332;
  --green-700: #2d6a4f;
  --green-600: #40916c;
  --green-500: #52b788;
  --green-400: #74c69d;
  --green-200: #b7e4c7;
  --green-100: #d8f3dc;

  /* Neutres */
  --ink:       #14201a;
  --ink-soft:  #3c4a42;
  --muted:     #5d6b62;
  --line:      #e4e8e3;
  --cream:     #f7f6f1;
  --cream-2:   #eef3ec;
  --white:     #ffffff;

  /* Accent terreux / chaud */
  --sun:       #e9c46a;

  /* Semantique */
  --bg:        var(--white);
  --surface:   var(--white);
  --primary:   var(--green-700);
  --primary-hover: var(--green-800);
  --on-primary:#ffffff;

  /* Rayons & ombres */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-pill: 999px;
  --shadow-sm: 0 1px 2px rgba(20,40,26,.06), 0 2px 8px rgba(20,40,26,.05);
  --shadow-md: 0 8px 24px rgba(20,40,26,.08), 0 2px 8px rgba(20,40,26,.05);
  --shadow-lg: 0 24px 60px rgba(20,40,26,.14);

  /* Layout */
  --container: 1180px;
  --nav-h: 76px;

  --ease-out: cubic-bezier(.16,.84,.44,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); -webkit-text-size-adjust: 100%; }
html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;        /* empêche tout déplacement gauche/droite (mobile) */
  overscroll-behavior-x: none;
}
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
[hidden] { display: none !important; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }
h1, h2, h3, h4 { font-family: 'Outfit', sans-serif; line-height: 1.12; letter-spacing: -.02em; color: var(--ink); font-weight: 700; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 22px; }
.section { padding: clamp(48px, 6vw, 84px) 0; }
.section-alt { background: var(--cream); }

/* ---------- Focus visible (accessibilité) ---------- */
:focus-visible { outline: 3px solid var(--green-500); outline-offset: 2px; border-radius: 4px; }

/* ---------- Eyebrow & section heads ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: .82rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--green-700);
  background: var(--green-100);
  padding: 7px 14px; border-radius: var(--r-pill);
}
.eyebrow svg { color: var(--green-600); }
.section-head { max-width: 680px; margin: 0 auto clamp(28px,3.5vw,44px); text-align: center; }
.eyebrow-center { margin-bottom: 18px; }
.section-head h2, .zone-text h2, .contact-text h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); }
h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); }
.section-lead { color: var(--muted); font-size: 1.075rem; margin-top: 16px; }

/* ========================================================
   Boutons
======================================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 1rem;
  padding: 13px 22px; border-radius: var(--r-pill);
  border: 1.5px solid transparent; cursor: pointer;
  min-height: 48px; text-align: center; white-space: nowrap;
  transition: transform .18s var(--ease-out), background-color .18s var(--ease-out),
              box-shadow .18s var(--ease-out), color .18s var(--ease-out), border-color .18s var(--ease-out);
}
.btn:active { transform: scale(.97); }
.btn-lg { padding: 16px 28px; font-size: 1.06rem; min-height: 56px; }
.btn-block { width: 100%; }

.btn-primary { background: var(--primary); color: var(--on-primary); box-shadow: 0 8px 20px rgba(45,106,79,.28); }
.btn-primary:hover { background: var(--primary-hover); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(45,106,79,.34); }

.btn-outline { background: transparent; color: var(--green-800); border-color: var(--green-200); }
.btn-outline:hover { background: var(--green-100); border-color: var(--green-400); transform: translateY(-2px); }

.btn-ghost { background: transparent; color: var(--ink-soft); }
.btn-ghost:hover { background: var(--cream-2); color: var(--green-800); }

.btn-light { background: var(--white); color: var(--green-800); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* ========================================================
   Header / Nav
======================================================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.78);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s, box-shadow .25s, background-color .25s;
}
.site-header.scrolled { border-bottom-color: var(--line); box-shadow: var(--shadow-sm); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: var(--nav-h); gap: 18px; }

.brand { display: inline-flex; align-items: center; gap: 10px; font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 1.32rem; color: var(--ink); letter-spacing: -.02em; }
.brand-mark { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 12px; background: var(--green-100); color: var(--green-700); }
.brand-accent { color: var(--green-600); }
.brand-light { color: var(--white); }
.brand-light .brand-mark { background: rgba(255,255,255,.12); color: var(--green-200); }

.nav-links { display: flex; gap: 6px; }
.nav-links a { font-weight: 500; color: var(--ink-soft); padding: 9px 13px; border-radius: var(--r-sm); transition: color .15s, background-color .15s; white-space: nowrap; }
.nav-links a:hover { color: var(--green-800); background: var(--cream-2); }

.nav-cta { display: flex; align-items: center; gap: 10px; }
.btn-phone span { font-variant-numeric: tabular-nums; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 12px; background: var(--white); cursor: pointer; align-items: center; justify-content: center; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .25s var(--ease-out), opacity .2s; }
.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); }

.mobile-menu { padding: 12px 22px 26px; border-top: 1px solid var(--line); background: var(--white); display: grid; gap: 10px; }
.mobile-menu nav { display: grid; }
.mobile-menu nav a { padding: 13px 8px; font-weight: 600; color: var(--ink); border-bottom: 1px solid var(--line); font-family: 'Outfit', sans-serif; }
.mobile-menu .btn { margin-top: 6px; }

/* ========================================================
   Hero
======================================================== */
.hero { position: relative; overflow: hidden; padding: clamp(44px, 5.5vw, 80px) 0 clamp(48px,6vw,86px); }
.hero-bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(900px 480px at 88% -8%, var(--green-100) 0%, transparent 62%),
    radial-gradient(700px 420px at -6% 8%, var(--cream-2) 0%, transparent 60%),
    linear-gradient(180deg, var(--cream) 0%, var(--white) 70%);
}
.hero-inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.hero-content .eyebrow { margin-bottom: 22px; }
.hero h1 { font-size: clamp(2.3rem, 5.4vw, 4rem); font-weight: 800; }
.hero h1 .hl { color: var(--green-600); position: relative; }
.hero-sub { font-size: clamp(1.05rem, 1.6vw, 1.22rem); color: var(--ink-soft); margin-top: 22px; max-width: 540px; }
.hero-sub strong { color: var(--green-800); font-weight: 600; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 18px 26px; margin-top: 30px; }
.hero-trust li { display: flex; align-items: center; gap: 8px; font-size: .94rem; color: var(--ink-soft); font-weight: 500; }
.hero-trust svg { color: var(--green-600); flex-shrink: 0; }

.hero-visual { position: relative; }
.hero-badge {
  position: absolute; bottom: -18px; left: -14px;
  background: var(--white); border-radius: var(--r-md); box-shadow: var(--shadow-lg);
  padding: 16px 20px; display: grid; gap: 2px; border: 1px solid var(--line);
}
.hero-badge-num { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 1.7rem; color: var(--green-600); line-height: 1; }
.hero-badge-label { font-size: .82rem; color: var(--muted); font-weight: 500; }

/* ---------- Placeholders photo ---------- */
.photo-placeholder {
  display: grid; place-content: center; justify-items: center; gap: 6px; text-align: center;
  background: linear-gradient(135deg, var(--green-100), var(--cream-2));
  border: 2px dashed var(--green-200); border-radius: var(--r-lg);
  color: var(--green-700); aspect-ratio: 4 / 3; padding: 24px;
}
.photo-placeholder span { font-family: 'Outfit', sans-serif; font-weight: 600; }
.photo-placeholder small { color: var(--muted); font-size: .8rem; }
.photo-hero { aspect-ratio: 5 / 4; box-shadow: var(--shadow-lg); }
.hero-photo { width: 100%; height: auto; aspect-ratio: 3 / 2; object-fit: cover; border-radius: var(--r-lg); box-shadow: var(--shadow-lg); display: block; }
.photo-zone { aspect-ratio: 16 / 11; }

/* ========================================================
   Services
======================================================== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 32px; box-shadow: var(--shadow-sm);
  transition: transform .2s var(--ease-out), box-shadow .2s var(--ease-out), border-color .2s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--green-200); }
.service-icon { display: grid; place-items: center; width: 58px; height: 58px; border-radius: 16px; background: var(--green-100); color: var(--green-700); margin-bottom: 20px; }
.service-card h3 { font-size: 1.4rem; margin-bottom: 10px; }
.service-card > p { color: var(--muted); }
.service-feats { margin-top: 18px; display: grid; gap: 10px; }
.service-feats li { position: relative; padding-left: 26px; color: var(--ink-soft); font-size: .95rem; }
.service-feats li::before {
  content: ""; position: absolute; left: 0; top: 6px; width: 16px; height: 16px;
  background: var(--green-500); border-radius: 50%;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center/11px no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center/11px no-repeat;
}
.service-card-soon { background: linear-gradient(160deg, var(--cream), var(--white)); border-style: dashed; border-color: var(--green-200); }
.service-icon-soon { background: var(--white); }
.link-arrow { display: inline-flex; align-items: center; gap: 6px; margin-top: 18px; font-family: 'Outfit', sans-serif; font-weight: 600; color: var(--green-700); }
.link-arrow svg { transition: transform .2s var(--ease-out); }
.link-arrow:hover svg { transform: translateX(4px); }

/* ========================================================
   Avantages
======================================================== */
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.feature { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-md); padding: 28px 24px; box-shadow: var(--shadow-sm); }
.feature-ic { display: grid; place-items: center; width: 50px; height: 50px; border-radius: 14px; background: var(--green-700); color: var(--white); margin-bottom: 18px; }
.feature h3 { font-size: 1.18rem; margin-bottom: 8px; }
.feature p { color: var(--muted); font-size: .95rem; }

/* ========================================================
   Étapes
======================================================== */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; counter-reset: step; }
.step { position: relative; background: var(--cream); border-radius: var(--r-lg); padding: 34px 28px; border: 1px solid var(--line); }
.step-num { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 50%; background: var(--green-600); color: var(--white); font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 1.3rem; margin-bottom: 16px; }
.step h3 { font-size: 1.22rem; margin-bottom: 8px; }
.step p { color: var(--muted); }

/* ========================================================
   Zone d'intervention
======================================================== */
.zone-inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px,5vw,64px); align-items: center; }
.zone-map { width: 100%; aspect-ratio: 16 / 11; min-height: 300px; border: 0; border-radius: var(--r-lg); box-shadow: var(--shadow-md); display: block; }
.zone-text .eyebrow { margin-bottom: 18px; }
.zone-text .btn { margin-top: 26px; }

/* ========================================================
   Galerie
======================================================== */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.gallery .photo-placeholder { aspect-ratio: 1; }

/* ========================================================
   Contact
======================================================== */
.section-contact { background: linear-gradient(180deg, var(--white), var(--cream)); }
.contact-inner { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(36px,5vw,72px); align-items: start; }
.contact-text .eyebrow { margin-bottom: 18px; }
.contact-list { margin-top: 28px; display: grid; gap: 14px; }
.contact-list li { display: flex; align-items: center; gap: 12px; font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 1.1rem; }
.contact-list svg { color: var(--green-600); flex-shrink: 0; }
.contact-list a:hover { color: var(--green-700); }

.contact-form { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(24px,3vw,36px); box-shadow: var(--shadow-md); display: grid; gap: 18px; }
.field { display: grid; gap: 7px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field label { font-family: 'Outfit', sans-serif; font-weight: 600; font-size: .92rem; color: var(--ink); }
.req { color: var(--green-600); }
.field input, .field select, .field textarea {
  font-family: inherit; font-size: 1rem; color: var(--ink);
  padding: 13px 15px; border: 1.5px solid var(--line); border-radius: var(--r-sm);
  background: var(--cream); transition: border-color .15s, box-shadow .15s, background-color .15s;
  width: 100%; min-height: 48px;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--green-500); background: var(--white); box-shadow: 0 0 0 4px rgba(82,183,136,.18); }
.field input.invalid, .field select.invalid, .field textarea.invalid { border-color: #d1493f; box-shadow: 0 0 0 4px rgba(209,73,63,.14); }
.helper { font-size: .84rem; color: var(--muted); }
.error { font-size: .84rem; color: #c43b31; font-weight: 500; }
.form-success { display: flex; align-items: center; gap: 10px; background: var(--green-100); color: var(--green-800); font-weight: 600; padding: 14px 16px; border-radius: var(--r-sm); }
.form-success svg { color: var(--green-600); }

/* ========================================================
   Avis / témoignages  (généré via MCP magic, adapté au design system)
======================================================== */
.section-reviews { background: linear-gradient(180deg, var(--white), var(--cream)); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 28px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 16px;
  transition: transform .25s var(--ease-out), box-shadow .25s var(--ease-out), border-color .2s;
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--green-200); }
.review-head { display: flex; gap: 14px; align-items: center; }
.review-avatar {
  flex-shrink: 0; width: 54px; height: 54px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green-700), var(--green-500));
  color: var(--white); font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1.05rem;
  display: grid; place-items: center; box-shadow: 0 6px 14px rgba(45,106,79,.28);
}
.review-head h3 { font-size: 1.12rem; margin-bottom: 2px; }
.review-city { font-size: .86rem; color: var(--muted); margin-bottom: 6px; }
.stars { display: inline-flex; gap: 3px; }
.stars svg { width: 18px; height: 18px; fill: var(--green-600); }
.stars-sm svg { width: 16px; height: 16px; }
.review-card blockquote { color: var(--ink-soft); line-height: 1.65; position: relative; padding-left: 16px; border-left: 3px solid var(--green-200); }
.review-foot { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 16px; border-top: 1px solid var(--line); }
.review-foot span:first-child { font-size: .74rem; letter-spacing: .06em; text-transform: uppercase; font-weight: 600; color: var(--muted); }
.review-foot .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--green-500); animation: dotPulse 2s ease-in-out infinite; }
@keyframes dotPulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .4; transform: scale(.7); } }

.reviews-aggregate {
  margin: 44px auto 0; width: fit-content; max-width: 100%;
  display: flex; align-items: center; flex-wrap: wrap; gap: 12px;
  background: var(--white); border: 1px solid var(--green-200); border-radius: var(--r-pill);
  padding: 12px 22px; box-shadow: var(--shadow-sm);
}
.agg-avatars { display: flex; }
.agg-avatars span {
  width: 34px; height: 34px; border-radius: 50%; margin-left: -8px; border: 2px solid var(--white);
  background: linear-gradient(135deg, var(--green-700), var(--green-500)); color: var(--white);
  font-family: 'Outfit', sans-serif; font-weight: 600; font-size: .72rem; display: grid; place-items: center;
}
.agg-avatars span:first-child { margin-left: 0; }
.agg-text { font-size: .95rem; color: var(--ink-soft); }
.agg-text strong { font-family: 'Outfit', sans-serif; color: var(--green-700); }

@media (prefers-reduced-motion: reduce) { .review-foot .dot { animation: none; } }

/* ---------- Encart "matériel fourni par le client" (hero) ---------- */
.hero-note {
  display: flex; align-items: flex-start; gap: 12px;
  margin-top: 22px; padding: 14px 18px;
  background: var(--green-100); border: 1px solid var(--green-200);
  border-left: 4px solid var(--green-600); border-radius: var(--r-md);
  color: var(--ink); max-width: 540px;
}
.hero-note svg { color: var(--green-700); flex-shrink: 0; margin-top: 1px; }
.hero-note span { font-size: .98rem; line-height: 1.5; }
.hero-note strong { color: var(--green-800); }

/* ---------- Bloc d'appel (section contact) ---------- */
.contact-cta { display: flex; flex-direction: column; align-items: center; gap: 16px; text-align: center; }
.contact-cta-note { display: inline-flex; align-items: center; gap: 8px; color: var(--muted); font-weight: 500; }
.contact-cta-note svg { color: var(--green-600); }

/* ========================================================
   CTA banner
======================================================== */
.cta-banner { background: linear-gradient(135deg, var(--green-800), var(--green-600)); color: var(--white); }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; padding: clamp(40px,6vw,68px) 22px; flex-wrap: wrap; }
.cta-banner h2 { color: var(--white); font-size: clamp(1.6rem,3vw,2.3rem); }
.cta-banner p { color: var(--green-100); margin-top: 8px; font-size: 1.08rem; }

/* ========================================================
   Footer
======================================================== */
.site-footer { background: var(--green-900); color: var(--green-100); padding-top: 64px; }
.footer-inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; padding-bottom: 44px; }
.footer-brand .brand { margin-bottom: 16px; }
.footer-brand p { color: var(--green-200); max-width: 360px; opacity: .85; }
.footer-col h4 { font-family: 'Outfit', sans-serif; color: var(--white); font-size: 1.05rem; margin-bottom: 16px; }
.footer-col a { display: block; color: var(--green-200); padding: 6px 0; opacity: .82; transition: opacity .15s, color .15s; }
.footer-col a:hover { opacity: 1; color: var(--green-100); }
.footer-static { display: block; color: var(--green-200); padding: 6px 0; opacity: .82; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 22px 22px 30px; }
.footer-bottom p { color: var(--green-200); font-size: .9rem; opacity: .7; }

/* ========================================================
   Reveal on scroll
======================================================== */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s var(--ease-out), transform .6s var(--ease-out); }
.reveal.visible { opacity: 1; transform: none; }

/* ========================================================
   Responsive
======================================================== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1025px) {
  /* Sur grand écran, le menu mobile ne doit jamais apparaître */
  .mobile-menu { display: none !important; }
  .nav-toggle { display: none !important; }
}
@media (max-width: 1024px) {
  /* Passage en menu hamburger : évite que la nav se serre / passe sur 2 lignes */
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
}
@media (max-width: 880px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 520px; }
  .zone-inner { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .services-grid, .features-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}