/* =========================================================================
   Ménage Airbnb Bruxelles — Design System
   Professional, conversion-focused, fast. No framework dependency.
   ========================================================================= */

:root {
  /* Brand palette */
  --c-primary: #0e7c66;        /* emerald-teal */
  --c-primary-dark: #0a5a4a;
  --c-primary-light: #1aa284;
  --c-primary-soft: #e7f4f0;
  --c-accent: #ff6b57;         /* warm coral */
  --c-accent-dark: #e8543f;
  --c-accent-soft: #fff0ed;
  --c-gold: #f4b740;

  --c-ink: #122019;            /* near-black green */
  --c-body: #38473f;
  --c-muted: #6b7a72;
  --c-line: #e3eae6;
  --c-bg: #ffffff;
  --c-bg-soft: #f6faf8;
  --c-bg-dark: #0f1c17;

  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 28px;
  --shadow-sm: 0 1px 2px rgba(18,32,25,.06), 0 2px 8px rgba(18,32,25,.05);
  --shadow: 0 6px 24px rgba(18,32,25,.08);
  --shadow-lg: 0 24px 60px rgba(18,32,25,.16);

  --ff-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --ff-display: "Sora", var(--ff-sans);

  --container: 1180px;
  --gap: clamp(1.5rem, 4vw, 4rem);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--ff-sans);
  color: var(--c-body);
  background: var(--c-bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: var(--c-primary); text-decoration: none; }
a:hover { color: var(--c-primary-dark); }
ul { padding: 0; list-style: none; }
h1, h2, h3, h4 { font-family: var(--ff-display); color: var(--c-ink); line-height: 1.15; font-weight: 700; letter-spacing: -.02em; }
h1 { font-size: clamp(2.1rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.45rem); }
p { color: var(--c-body); }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 22px; }
.section { padding-block: clamp(3.5rem, 8vw, 6.5rem); }
.section--soft { background: var(--c-bg-soft); }
.section--dark { background: var(--c-bg-dark); color: #cfe0d9; }
.section--dark h2, .section--dark h3 { color: #fff; }
.center { text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--ff-display); font-weight: 600; font-size: .8rem;
  letter-spacing: .12em; text-transform: uppercase; color: var(--c-primary);
  background: var(--c-primary-soft); padding: .4rem .85rem; border-radius: 999px;
}
.section-head { max-width: 720px; margin-inline: auto; margin-bottom: clamp(2rem, 5vw, 3.5rem); }
.section-head .lead { font-size: 1.15rem; color: var(--c-muted); margin-top: 1rem; }
.lead { font-size: 1.18rem; color: var(--c-muted); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--ff-display); font-weight: 600; font-size: 1rem;
  padding: .95rem 1.6rem; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--c-accent); color: #fff; box-shadow: 0 10px 24px rgba(255,107,87,.32); }
.btn--primary:hover { background: var(--c-accent-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 16px 32px rgba(255,107,87,.36); }
.btn--ghost { background: #fff; color: var(--c-ink); border-color: var(--c-line); }
.btn--ghost:hover { border-color: var(--c-primary); color: var(--c-primary); transform: translateY(-2px); }
.btn--dark { background: var(--c-primary); color: #fff; }
.btn--dark:hover { background: var(--c-primary-dark); color: #fff; transform: translateY(-2px); }
.btn--lg { padding: 1.1rem 2rem; font-size: 1.08rem; }
.btn--block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.82); backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--c-line);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1rem; height: 74px; }
.brand { display: flex; align-items: center; gap: .6rem; font-family: var(--ff-display); font-weight: 800; font-size: 1.18rem; color: var(--c-ink); letter-spacing: -.02em; }
.brand:hover { color: var(--c-ink); }
.brand__mark { width: 38px; height: 38px; border-radius: 11px; background: linear-gradient(135deg, var(--c-primary), var(--c-primary-light)); display: grid; place-items: center; color: #fff; box-shadow: var(--shadow-sm); flex: none; }
.brand small { display: block; font-family: var(--ff-sans); font-weight: 500; font-size: .68rem; color: var(--c-muted); letter-spacing: .02em; }
.nav-links { display: flex; align-items: center; gap: 1.6rem; }
.nav-links a { font-weight: 500; color: var(--c-body); font-size: .98rem; }
.nav-links a:hover { color: var(--c-primary); }
.nav-cta { display: flex; align-items: center; gap: .75rem; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: .4rem; }
.nav-toggle svg { width: 28px; height: 28px; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; background: linear-gradient(180deg, var(--c-primary-soft) 0%, #fff 62%); }
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; padding-block: clamp(3rem, 7vw, 5.5rem); }
.hero__badge { display: inline-flex; align-items: center; gap: .5rem; background: #fff; border: 1px solid var(--c-line); padding: .5rem 1rem; border-radius: 999px; font-size: .88rem; font-weight: 600; color: var(--c-ink); box-shadow: var(--shadow-sm); margin-bottom: 1.4rem; }
.hero__badge .stars { color: var(--c-gold); letter-spacing: 1px; }
.hero h1 { margin-bottom: 1.2rem; }
.hero h1 .hl { color: var(--c-primary); position: relative; white-space: nowrap; }
.hero__sub { font-size: 1.2rem; color: var(--c-body); max-width: 36ch; margin-bottom: 1.8rem; }
.hero__cta { display: flex; flex-wrap: wrap; gap: .9rem; margin-bottom: 1.6rem; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 1.2rem 1.6rem; color: var(--c-muted); font-size: .92rem; font-weight: 500; }
.hero__trust span { display: inline-flex; align-items: center; gap: .45rem; }
.hero__trust svg { width: 18px; height: 18px; color: var(--c-primary); }
.hero__visual { position: relative; }
.hero__card {
  background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  padding: 1.6rem; border: 1px solid var(--c-line);
}
.hero__card-img { aspect-ratio: 4/3; border-radius: var(--radius); background:
  linear-gradient(135deg, #d4ece4, #eef7f3); display: grid; place-items: center; overflow: hidden; position: relative; }
.hero__floating {
  position: absolute; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-lg);
  padding: .85rem 1.1rem; display: flex; align-items: center; gap: .7rem; font-weight: 600; color: var(--c-ink); font-size: .92rem; border: 1px solid var(--c-line);
}
.hero__floating .ico { width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; flex: none; }
.hero__floating--1 { top: 8%; left: -6%; }
.hero__floating--2 { bottom: 9%; right: -5%; }
.hero__floating small { display: block; font-weight: 500; color: var(--c-muted); font-size: .78rem; }

/* ---------- Logos / stats bar ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; text-align: center; }
.stat__num { font-family: var(--ff-display); font-weight: 800; font-size: clamp(1.8rem, 4vw, 2.6rem); color: var(--c-primary); line-height: 1; }
.stat__label { color: var(--c-muted); font-size: .95rem; margin-top: .4rem; }

/* ---------- Cards grid ---------- */
.grid { display: grid; gap: 1.4rem; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.card {
  background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius);
  padding: 1.7rem; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease, border-color .2s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--c-primary-soft); }
.card__ico { width: 52px; height: 52px; border-radius: 14px; background: var(--c-primary-soft); color: var(--c-primary); display: grid; place-items: center; margin-bottom: 1.1rem; }
.card__ico svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: .55rem; }
.card p { color: var(--c-muted); font-size: .98rem; }

/* USP variant */
.usp { display: flex; gap: 1rem; align-items: flex-start; padding: 1.3rem; background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius); }
.usp .card__ico { margin: 0; flex: none; }
.usp h3 { font-size: 1.1rem; }

/* ---------- Process / steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; counter-reset: step; }
.step { position: relative; padding: 1.6rem; background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius); }
.step__num { width: 42px; height: 42px; border-radius: 12px; background: var(--c-primary); color: #fff; font-family: var(--ff-display); font-weight: 700; display: grid; place-items: center; margin-bottom: 1rem; }
.step h3 { font-size: 1.12rem; margin-bottom: .4rem; }
.step p { font-size: .95rem; color: var(--c-muted); }

/* ---------- Pricing ---------- */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; align-items: stretch; }
.price-card { background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius-lg); padding: 2rem 1.8rem; display: flex; flex-direction: column; position: relative; box-shadow: var(--shadow-sm); }
.price-card--popular { border-color: var(--c-primary); box-shadow: var(--shadow-lg); transform: scale(1.03); }
.price-card__tag { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--c-accent); color: #fff; font-family: var(--ff-display); font-weight: 600; font-size: .8rem; padding: .35rem 1rem; border-radius: 999px; letter-spacing: .03em; }
.price-card h3 { font-size: 1.25rem; }
.price-card__price { font-family: var(--ff-display); font-weight: 800; font-size: 2.6rem; color: var(--c-ink); margin: .6rem 0 .1rem; }
.price-card__price span { font-size: .95rem; font-weight: 500; color: var(--c-muted); }
.price-card__from { font-size: .85rem; color: var(--c-muted); text-transform: uppercase; letter-spacing: .08em; }
.price-card ul { margin: 1.4rem 0; display: grid; gap: .7rem; }
.price-card li { display: flex; gap: .6rem; align-items: flex-start; font-size: .96rem; color: var(--c-body); }
.price-card li svg { width: 20px; height: 20px; color: var(--c-primary); flex: none; margin-top: 2px; }
.price-card .btn { margin-top: auto; }

/* ---------- Testimonials ---------- */
.testi { background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius); padding: 1.7rem; box-shadow: var(--shadow-sm); }
.testi__stars { color: var(--c-gold); letter-spacing: 2px; margin-bottom: .8rem; }
.testi p { color: var(--c-ink); font-size: 1.02rem; }
.testi__author { display: flex; align-items: center; gap: .8rem; margin-top: 1.2rem; }
.testi__avatar { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg, var(--c-primary-light), var(--c-primary)); color: #fff; display: grid; place-items: center; font-family: var(--ff-display); font-weight: 700; flex: none; }
.testi__author b { color: var(--c-ink); display: block; font-size: .95rem; }
.testi__author small { color: var(--c-muted); }

/* ---------- Coverage / communes ---------- */
.communes-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: .85rem; }
.commune-pill {
  display: flex; align-items: center; justify-content: space-between; gap: .5rem;
  background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius-sm);
  padding: .85rem 1.1rem; font-weight: 600; color: var(--c-ink); transition: all .18s ease;
}
.commune-pill:hover { border-color: var(--c-primary); background: var(--c-primary-soft); color: var(--c-primary-dark); transform: translateY(-2px); }
.commune-pill small { font-weight: 500; color: var(--c-muted); }
.commune-pill svg { width: 16px; height: 16px; opacity: .5; }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(135deg, var(--c-primary-dark), var(--c-primary)); border-radius: var(--radius-lg); padding: clamp(2.2rem, 5vw, 3.6rem); color: #fff; text-align: center; position: relative; overflow: hidden; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.85); max-width: 52ch; margin: 1rem auto 1.8rem; font-size: 1.12rem; }
.cta-band .btn--ghost { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.3); }
.cta-band .btn--ghost:hover { background: rgba(255,255,255,.2); color: #fff; }

/* ---------- Quote form ---------- */
.quote { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.form-card { background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius-lg); padding: clamp(1.6rem, 3vw, 2.4rem); box-shadow: var(--shadow-lg); }
.form-row { display: grid; gap: 1rem; margin-bottom: 1rem; }
.form-row--2 { grid-template-columns: 1fr 1fr; }
.field label { display: block; font-weight: 600; font-size: .9rem; color: var(--c-ink); margin-bottom: .35rem; }
.field input, .field select, .field textarea {
  width: 100%; padding: .8rem .95rem; border: 1.5px solid var(--c-line); border-radius: var(--radius-sm);
  font-family: inherit; font-size: 1rem; color: var(--c-ink); background: var(--c-bg-soft); transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--c-primary); box-shadow: 0 0 0 3px var(--c-primary-soft); background: #fff; }
.field textarea { resize: vertical; min-height: 96px; }
.form-note { font-size: .82rem; color: var(--c-muted); margin-top: .8rem; }
.form-success { display: none; text-align: center; padding: 2rem 1rem; }
.form-success.show { display: block; }
.form-success .ico { width: 64px; height: 64px; border-radius: 50%; background: var(--c-primary-soft); color: var(--c-primary); display: grid; place-items: center; margin: 0 auto 1rem; }

/* ---------- FAQ ---------- */
.faq { max-width: 800px; margin-inline: auto; display: grid; gap: .8rem; }
.faq-item { background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius-sm); overflow: hidden; }
.faq-item summary { cursor: pointer; padding: 1.15rem 1.3rem; font-family: var(--ff-display); font-weight: 600; color: var(--c-ink); list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem; font-size: 1.05rem; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.5rem; color: var(--c-primary); font-weight: 400; transition: transform .2s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-body { padding: 0 1.3rem 1.2rem; color: var(--c-muted); }

/* ---------- Article / blog ---------- */
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.post-card { background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s; display: flex; flex-direction: column; }
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.post-card__img { aspect-ratio: 16/9; background: linear-gradient(135deg, var(--c-primary-soft), #dceee8); position: relative; display: grid; place-items: center; }
.post-card__cat { position: absolute; top: .8rem; left: .8rem; background: #fff; color: var(--c-primary); font-size: .76rem; font-weight: 700; padding: .3rem .7rem; border-radius: 999px; text-transform: uppercase; letter-spacing: .04em; }
.post-card__body { padding: 1.3rem; display: flex; flex-direction: column; flex: 1; }
.post-card__body h3 { font-size: 1.18rem; margin-bottom: .5rem; }
.post-card__body h3 a { color: var(--c-ink); }
.post-card__body h3 a:hover { color: var(--c-primary); }
.post-card__meta { font-size: .82rem; color: var(--c-muted); margin-top: auto; padding-top: 1rem; display: flex; gap: .8rem; }

.article { max-width: 760px; margin-inline: auto; }
.article__header { margin-bottom: 2rem; }
.article__meta { color: var(--c-muted); font-size: .92rem; display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1rem; }
.article-body { font-size: 1.08rem; line-height: 1.8; }
.article-body h2 { margin: 2.4rem 0 1rem; }
.article-body h3 { margin: 1.8rem 0 .8rem; }
.article-body p { margin-bottom: 1.2rem; }
.article-body ul, .article-body ol { margin: 0 0 1.3rem 1.2rem; display: grid; gap: .5rem; }
.article-body ul li { list-style: disc; }
.article-body ol li { list-style: decimal; }
.article-body blockquote { border-left: 4px solid var(--c-primary); background: var(--c-bg-soft); padding: 1rem 1.4rem; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; margin: 1.6rem 0; font-style: italic; color: var(--c-ink); }
.article-body a { text-decoration: underline; }
.article-body strong { color: var(--c-ink); }

.toc { background: var(--c-bg-soft); border: 1px solid var(--c-line); border-radius: var(--radius); padding: 1.3rem 1.5rem; margin-bottom: 2rem; }
.toc b { font-family: var(--ff-display); color: var(--c-ink); display: block; margin-bottom: .6rem; }
.toc ul { display: grid; gap: .4rem; }
.toc a { font-size: .96rem; }

/* ---------- Breadcrumb ---------- */
.breadcrumb { font-size: .88rem; color: var(--c-muted); padding-block: 1.1rem; display: flex; gap: .5rem; flex-wrap: wrap; }
.breadcrumb a { color: var(--c-muted); }
.breadcrumb a:hover { color: var(--c-primary); }
.breadcrumb .sep { opacity: .5; }

/* ---------- Page hero (interior) ---------- */
.page-hero { background: linear-gradient(180deg, var(--c-primary-soft), #fff); padding-block: clamp(2rem, 5vw, 3.5rem); }
.page-hero h1 { margin-bottom: 1rem; }
.page-hero .lead { max-width: 60ch; }

/* ---------- Footer ---------- */
.site-footer { background: var(--c-bg-dark); color: #9fb3aa; padding-block: clamp(3rem, 6vw, 4.5rem) 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 2rem; margin-bottom: 2.5rem; }
.site-footer h4 { color: #fff; font-size: 1rem; margin-bottom: 1rem; font-family: var(--ff-display); }
.site-footer a { color: #9fb3aa; font-size: .95rem; }
.site-footer a:hover { color: #fff; }
.site-footer .brand { color: #fff; margin-bottom: 1rem; }
.site-footer .brand small { color: #7e9087; }
.footer-col ul { display: grid; gap: .6rem; }
.footer-desc { font-size: .95rem; max-width: 34ch; margin-bottom: 1.2rem; }
.footer-contact li { display: flex; gap: .6rem; align-items: center; margin-bottom: .6rem; font-size: .95rem; }
.footer-contact svg { width: 18px; height: 18px; color: var(--c-primary-light); flex: none; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 1.6rem; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: .85rem; color: #7e9087; }
.footer-bottom a { color: #7e9087; }

/* ---------- Sticky mobile CTA ---------- */
.mobile-cta { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 60; background: #fff; border-top: 1px solid var(--c-line); padding: .7rem 1rem; gap: .6rem; box-shadow: 0 -6px 20px rgba(0,0,0,.06); }
.mobile-cta .btn { flex: 1; }

/* ---------- Misc ---------- */
.tag-row { display: flex; flex-wrap: wrap; gap: .5rem; }
.tag { background: var(--c-primary-soft); color: var(--c-primary-dark); font-size: .82rem; font-weight: 600; padding: .3rem .8rem; border-radius: 999px; }
.checklist { display: grid; gap: .7rem; }
.checklist li { display: flex; gap: .6rem; align-items: flex-start; }
.checklist svg { width: 22px; height: 22px; color: var(--c-primary); flex: none; margin-top: 2px; }
.divider { height: 1px; background: var(--c-line); border: 0; margin-block: 2rem; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4rem); align-items: center; }
.media-frame { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/3; background: linear-gradient(135deg,#d4ece4,#eef7f3); display:grid; place-items:center; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { order: -1; max-width: 460px; }
  .grid--3, .grid--4, .pricing, .steps, .post-grid { grid-template-columns: 1fr 1fr; }
  .quote, .split { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .price-card--popular { transform: none; }
}
@media (max-width: 680px) {
  body { font-size: 16px; }
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-menu-open .nav-links { display: flex; position: absolute; top: 74px; left: 0; right: 0; flex-direction: column; background: #fff; padding: 1.2rem; gap: 1rem; border-bottom: 1px solid var(--c-line); box-shadow: var(--shadow); }
  .grid--3, .grid--4, .pricing, .steps, .post-grid, .stats, .footer-grid { grid-template-columns: 1fr; }
  .form-row--2 { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; gap: 1.6rem; }
  .nav-cta .btn--ghost { display: none; }
  .mobile-cta { display: flex; }
  body { padding-bottom: 72px; }
  .hero__floating { display: none; }
}

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } }
