/* ===========================================================
   Royal Exterior Cleaning — styles.css
   Palette derived from the logo: deep navy, royal blue, silver.
   Mobile-first, accessible, reduced-motion aware.
   =========================================================== */

/* ---------- Design Tokens ---------- */
:root {
  /* Brand palette (from logo) */
  --navy-900: #00102e;
  --navy-800: #00163d;
  --navy-700: #011740;
  --navy-600: #0a2a63;
  --navy-500: #123a80;
  --blue-600: #1657b0;
  --blue-500: #1e6fd6;   /* royal blue — primary CTA */
  --blue-400: #3d8bef;
  --blue-300: #7fb4f5;
  --blue-100: #e7f1fd;
  --silver:   #c9d3e0;
  --silver-l: #eef2f7;

  /* Neutrals */
  --bg:        #ffffff;
  --bg-alt:    #f4f7fb;
  --bg-navy:   var(--navy-800);
  --surface:   #ffffff;
  --border:    #dde5ef;
  --border-navy: rgba(255,255,255,0.14);

  /* Text */
  --text:       #0f1b33;
  --text-muted: #4a586e;
  --text-faint: #7a869b;
  --text-on-navy:       #eaf1fb;
  --text-on-navy-muted: #a9bcd8;

  /* Semantic */
  --success: #1f9d55;
  --error:   #c0392b;

  /* Type scale (fluid) */
  --font-display: 'Cabinet Grotesk', 'Georgia', system-ui, sans-serif;
  --font-body: 'General Sans', system-ui, -apple-system, sans-serif;
  --text-xs:  0.8125rem;   /* 13px */
  --text-sm:  0.9375rem;   /* 15px */
  --text-base: 1.0625rem;  /* 17px */
  --text-lg:  clamp(1.15rem, 1.05rem + 0.5vw, 1.35rem);
  --text-xl:  clamp(1.5rem, 1.3rem + 1vw, 2rem);
  --text-2xl: clamp(2rem, 1.6rem + 2vw, 2.9rem);
  --text-hero: clamp(2.4rem, 1.7rem + 3.4vw, 4.2rem);

  /* Spacing */
  --space-1: 0.25rem;  --space-2: 0.5rem;  --space-3: 0.75rem;
  --space-4: 1rem;     --space-5: 1.5rem;  --space-6: 2rem;
  --space-8: 3rem;     --space-10: 4rem;   --space-12: 5rem;
  --space-16: 7rem;

  /* Radius & shadow */
  --r-sm: 8px; --r-md: 14px; --r-lg: 22px; --r-full: 999px;
  --shadow-sm: 0 1px 3px rgba(3,17,44,.08), 0 1px 2px rgba(3,17,44,.06);
  --shadow-md: 0 6px 20px rgba(3,17,44,.10);
  --shadow-lg: 0 18px 48px rgba(3,17,44,.16);
  --shadow-blue: 0 10px 30px rgba(30,111,214,.28);

  --maxw: 1160px;
  --header-h: 90px;
  --ease: cubic-bezier(.16,1,.3,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}
body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, picture, svg { max-width: 100%; display: block; }
a { color: var(--blue-600); text-decoration: none; }
a:hover { text-decoration: underline; }
button { font: inherit; cursor: pointer; }
h1,h2,h3,h4 { font-family: var(--font-display); line-height: 1.12; font-weight: 700; color: var(--navy-800); letter-spacing: -0.01em; }
ul { list-style: none; padding: 0; }

/* ---------- Skip link & focus ---------- */
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--navy-800); color: #fff; padding: .75rem 1.25rem;
  border-radius: 0 0 var(--r-sm) 0;
}
.skip-link:focus { left: 0; }
:focus-visible {
  outline: 3px solid var(--blue-500);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--space-5); }
.section { padding-block: clamp(var(--space-10), 8vw, var(--space-16)); }
.section--alt { background: var(--bg-alt); }
.section--navy { background: var(--navy-800); color: var(--text-on-navy); }
.section--navy h2, .section--navy h3 { color: #fff; }
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: var(--text-xs); font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--blue-600);
}
.section--navy .eyebrow { color: var(--blue-300); }
.eyebrow::before { content:""; width: 22px; height: 2px; background: currentColor; }
.section-head { max-width: 640px; margin-bottom: var(--space-8); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: var(--text-2xl); margin-block: .5rem .75rem; }
.section-head p { color: var(--text-muted); font-size: var(--text-lg); }
.section--navy .section-head p { color: var(--text-on-navy-muted); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .85rem 1.5rem; border-radius: var(--r-full);
  font-weight: 600; font-size: var(--text-sm); letter-spacing: .01em;
  border: 2px solid transparent; text-decoration: none;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s, color .2s;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--blue-500); color: #fff; box-shadow: var(--shadow-blue); }
.btn-primary:hover { background: var(--blue-600); }
.btn-secondary { background: #fff; color: var(--navy-800); border-color: var(--border); box-shadow: var(--shadow-sm); }
.btn-secondary:hover { border-color: var(--blue-500); color: var(--blue-600); }
.btn-ghost-light { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.35); }
.btn-ghost-light:hover { background: rgba(255,255,255,.16); }
.btn-lg { padding: 1.05rem 2rem; font-size: var(--text-base); }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 100;
  height: var(--header-h);
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s var(--ease);
}
.header--scrolled { box-shadow: var(--shadow-sm); }
.header .container { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.brand { display: flex; align-items: center; gap: .8rem; }
.header .brand img { width: 66px; height: 66px; }
.brand-name { font-family: var(--font-display); font-weight: 700; line-height: 1; color: var(--navy-800); }
.brand-name b { display: block; font-size: 1.35rem; letter-spacing: -.01em; }
.brand-name span { font-size: .82rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--blue-600); }
.nav { display: none; align-items: center; gap: var(--space-5); }
.nav a { color: var(--text); font-size: var(--text-sm); font-weight: 500; }
.nav a:hover { color: var(--blue-600); text-decoration: none; }
.header-cta { display: none; }
.nav-toggle {
  display: inline-flex; flex-direction: column; gap: 5px;
  background: none; border: 0; padding: 10px; border-radius: var(--r-sm);
}
.nav-toggle span { width: 24px; height: 2px; background: var(--navy-800); border-radius: 2px; transition: .3s var(--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); }

/* Mobile drawer */
.mobile-nav {
  position: fixed; inset: var(--header-h) 0 0 0; z-index: 99;
  background: #fff; padding: var(--space-6) var(--space-5);
  transform: translateX(100%); transition: transform .35s var(--ease);
  display: flex; flex-direction: column; gap: var(--space-3);
  overflow-y: auto;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a { font-size: var(--text-lg); font-weight: 600; color: var(--navy-800); padding: .6rem 0; border-bottom: 1px solid var(--border); }
.mobile-nav a:hover { color: var(--blue-600); text-decoration: none; }
.mobile-nav .btn { margin-top: var(--space-3); }

@media (min-width: 900px) {
  :root { --header-h: 112px; }
  .header .brand img { width: 90px; height: 90px; }
  .header .brand-name b { font-size: 1.8rem; }
  .header .brand-name span { font-size: .98rem; }
  .nav, .header-cta { display: flex; }
  .nav-toggle { display: none; }
}

/* ---------- Hero ---------- */
.hero { position: relative; background: var(--navy-800); color: #fff; overflow: hidden; }
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media::after {
  content:""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,16,46,.92) 0%, rgba(0,16,46,.72) 45%, rgba(0,16,46,.86) 100%);
}
@media (min-width: 780px) {
  .hero-media::after {
    background: linear-gradient(100deg, rgba(0,16,46,.96) 0%, rgba(0,16,46,.82) 42%, rgba(0,16,46,.35) 100%);
  }
}
.hero-inner { position: relative; z-index: 2; padding-block: clamp(var(--space-10), 12vw, var(--space-16)); max-width: 660px; }
.hero .badge-row { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: var(--space-5); }
.pill {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: var(--text-xs); font-weight: 600; letter-spacing: .02em;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  color: #fff; padding: .35rem .8rem; border-radius: var(--r-full);
}
.pill svg { width: 14px; height: 14px; color: var(--blue-300); }
.hero h1 { color: #fff; font-size: var(--text-hero); margin-bottom: var(--space-4); }
.hero h1 .accent { color: var(--blue-300); }
.hero-sub { font-size: var(--text-lg); color: var(--text-on-navy-muted); max-width: 52ch; margin-bottom: var(--space-6); }
.hero-actions { display: flex; flex-wrap: wrap; gap: var(--space-3); margin-bottom: var(--space-6); }
.hero-trust { display: flex; flex-wrap: wrap; gap: var(--space-5) var(--space-6); font-size: var(--text-sm); color: var(--text-on-navy-muted); }
.hero-trust li { display: flex; align-items: center; gap: .5rem; }
.hero-trust svg { width: 18px; height: 18px; color: var(--blue-300); flex: none; }

/* ---------- Credibility strip ---------- */
.credstrip { background: var(--blue-500); color: #fff; }
.credstrip .container { display: grid; grid-template-columns: 1fr; gap: var(--space-4); padding-block: var(--space-6); }
.cred { display: flex; align-items: center; gap: .8rem; }
.cred svg { width: 30px; height: 30px; flex: none; color: #fff; }
.cred b { display: block; font-family: var(--font-display); font-size: var(--text-lg); line-height: 1.1; }
.cred span { font-size: var(--text-sm); color: rgba(255,255,255,.85); }
@media (min-width: 720px) { .credstrip .container { grid-template-columns: repeat(3, 1fr); } }

/* ---------- Services ---------- */
.svc-grid { display: grid; grid-template-columns: 1fr; gap: var(--space-5); }
@media (min-width: 620px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .svc-grid { grid-template-columns: repeat(4, 1fr); } }
.svc-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: var(--space-6); box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
  display: flex; flex-direction: column;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--blue-300); }
.svc-icon {
  width: 58px; height: 58px; border-radius: var(--r-md);
  display: grid; place-items: center; margin-bottom: var(--space-4);
  background: linear-gradient(135deg, var(--navy-700), var(--blue-600));
  color: #fff;
}
.svc-icon svg { width: 30px; height: 30px; }
.svc-card h3 { font-size: var(--text-lg); margin-bottom: .5rem; }
.svc-card p { color: var(--text-muted); font-size: var(--text-sm); flex: 1; }
.svc-card .svc-link { margin-top: var(--space-4); font-size: var(--text-sm); font-weight: 600; color: var(--blue-600); display: inline-flex; align-items: center; gap: .35rem; }
.svc-card:hover .svc-link { gap: .6rem; }

/* ---------- Process ---------- */
.steps { display: grid; grid-template-columns: 1fr; gap: var(--space-5); counter-reset: step; }
@media (min-width: 720px) { .steps { grid-template-columns: repeat(4, 1fr); } }
.step { position: relative; padding-top: var(--space-6); }
.step-num {
  width: 48px; height: 48px; border-radius: var(--r-full);
  display: grid; place-items: center; margin-bottom: var(--space-4);
  background: var(--navy-800); color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 1.25rem;
}
.section--navy .step-num { background: var(--blue-500); }
.step h3 { font-size: var(--text-lg); margin-bottom: .4rem; }
.step p { color: var(--text-muted); font-size: var(--text-sm); }
.section--navy .step p { color: var(--text-on-navy-muted); }

/* ---------- Before / After ---------- */
.results-gallery {
  max-width: 860px; margin: 0 auto;
  columns: 1; column-gap: var(--space-5);
}
@media (min-width: 760px) { .results-gallery { columns: 2; } }
.result-card {
  overflow: hidden; border: 1px solid var(--border); border-radius: var(--r-lg);
  background: var(--surface); box-shadow: var(--shadow-md);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  break-inside: avoid; margin-bottom: var(--space-5);
}
.result-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.result-card img { width: 100%; height: auto; background: var(--navy-800); }
.result-card figcaption {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: .35rem var(--space-3);
  padding: var(--space-4) var(--space-5);
}
.result-card figcaption b { color: var(--navy-800); font-family: var(--font-display); font-size: var(--text-lg); }
.result-card figcaption span { color: var(--text-muted); font-size: var(--text-sm); }

/* ---------- Service Areas ---------- */
.areas-layout { display: grid; grid-template-columns: 1fr; gap: var(--space-8); align-items: start; }
@media (min-width: 860px) { .areas-layout { grid-template-columns: 1fr 1fr; } }
.county-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-3); }
.county {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-md);
  padding: var(--space-4); display: flex; align-items: center; gap: .7rem;
}
.county svg { width: 22px; height: 22px; color: var(--blue-500); flex: none; }
.county b { display: block; font-family: var(--font-display); font-size: 1.05rem; color: var(--navy-800); }
.county span { font-size: var(--text-xs); color: var(--text-faint); }
.town-list { margin-top: var(--space-4); font-size: var(--text-sm); color: var(--text-muted); }
.town-list b { color: var(--text); }

/* ---------- Promo banner ---------- */
.promo {
  background: linear-gradient(135deg, var(--navy-800), var(--blue-600));
  color: #fff; border-radius: var(--r-lg); overflow: hidden;
  padding: clamp(var(--space-6), 5vw, var(--space-10));
  display: grid; grid-template-columns: 1fr; gap: var(--space-5); align-items: center;
  text-align: center;
}
@media (min-width: 760px) { .promo { grid-template-columns: auto 1fr auto; text-align: left; } }
.promo-off { font-family: var(--font-display); font-weight: 700; line-height: 1; }
.promo-off .big { font-size: clamp(3rem, 8vw, 5rem); display: block; color: var(--blue-300); }
.promo-body h2 { color: #fff; font-size: var(--text-xl); margin-bottom: .35rem; }
.promo-body p { color: var(--text-on-navy-muted); font-size: var(--text-sm); }
.promo .btn { justify-self: center; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 760px; margin-inline: auto; display: flex; flex-direction: column; gap: var(--space-3); }
.faq-item { border: 1px solid var(--border); border-radius: var(--r-md); background: var(--surface); overflow: hidden; }
.faq-q {
  width: 100%; text-align: left; background: none; border: 0;
  padding: var(--space-5); font-family: var(--font-display); font-weight: 600; font-size: var(--text-lg);
  color: var(--navy-800); display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq-q .chev { flex: none; width: 22px; height: 22px; color: var(--blue-500); transition: transform .3s var(--ease); }
.faq-q[aria-expanded="true"] .chev { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq-a-inner { padding: 0 var(--space-5) var(--space-5); color: var(--text-muted); font-size: var(--text-sm); }

/* ---------- Estimate form ---------- */
.estimate-layout { display: grid; grid-template-columns: 1fr; gap: var(--space-8); align-items: start; }
@media (min-width: 900px) { .estimate-layout { grid-template-columns: 1fr 1.1fr; } }
.estimate-info h2 { font-size: var(--text-2xl); margin-bottom: var(--space-4); color: #fff; }
.estimate-info p { color: var(--text-on-navy-muted); margin-bottom: var(--space-6); }
.contact-methods { display: flex; flex-direction: column; gap: var(--space-3); }
.contact-card {
  display: flex; align-items: center; gap: var(--space-4);
  background: rgba(255,255,255,.06); border: 1px solid var(--border-navy);
  border-radius: var(--r-md); padding: var(--space-4); color: #fff;
  transition: background .2s, border-color .2s;
}
.contact-card:hover { background: rgba(255,255,255,.12); border-color: var(--blue-400); text-decoration: none; }
.contact-card .ci { width: 46px; height: 46px; border-radius: var(--r-md); background: var(--blue-500); display: grid; place-items: center; flex: none; }
.contact-card .ci svg { width: 24px; height: 24px; color: #fff; }
.contact-card b { display: block; font-family: var(--font-display); font-size: var(--text-lg); color: #fff; }
.contact-card span { font-size: var(--text-sm); color: var(--text-on-navy-muted); }

.form-card { background: #fff; border-radius: var(--r-lg); padding: clamp(var(--space-5), 4vw, var(--space-8)); box-shadow: var(--shadow-lg); }
.form-row { margin-bottom: var(--space-4); }
.form-row-2 { display: grid; grid-template-columns: 1fr; gap: var(--space-4); }
@media (min-width: 520px) { .form-row-2 { grid-template-columns: 1fr 1fr; } }
.form-label { display: block; font-size: var(--text-sm); font-weight: 600; color: var(--navy-800); margin-bottom: .4rem; }
.form-label .req { color: var(--error); }
.form-control {
  width: 100%; padding: .8rem .95rem; font: inherit; font-size: var(--text-sm);
  border: 1.5px solid var(--border); border-radius: var(--r-sm); background: #fff; color: var(--text);
  transition: border-color .2s, box-shadow .2s;
}
.form-control:focus { outline: none; border-color: var(--blue-500); box-shadow: 0 0 0 3px rgba(30,111,214,.15); }
.form-control::placeholder { color: var(--text-faint); }
textarea.form-control { resize: vertical; min-height: 96px; }
.form-control[aria-invalid="true"] { border-color: var(--error); }
.field-error { display: none; color: var(--error); font-size: var(--text-xs); margin-top: .3rem; }
.form-control[aria-invalid="true"] ~ .field-error { display: block; }
.form-hint { font-size: var(--text-xs); color: var(--text-faint); margin-top: var(--space-4); text-align: center; }
.form-status { margin-top: var(--space-4); padding: var(--space-4); border-radius: var(--r-sm); font-size: var(--text-sm); display: none; }
.form-status.show { display: block; }
.form-status.success { background: #e8f7ee; border: 1px solid #b7e6c8; color: #14713a; }
.form-status.info { background: var(--blue-100); border: 1px solid #cfe0f7; color: var(--navy-700); }
fieldset { border: 0; padding: 0; }
.checkbox-row { display: flex; align-items: flex-start; gap: .6rem; font-size: var(--text-sm); color: var(--text-muted); }
.checkbox-row input { margin-top: .25rem; width: 18px; height: 18px; accent-color: var(--blue-500); flex: none; }

/* ---------- Footer ---------- */
.footer { background: var(--navy-900); color: var(--text-on-navy-muted); padding-block: var(--space-10) var(--space-6); }
.footer-top { display: grid; grid-template-columns: 1fr; gap: var(--space-8); margin-bottom: var(--space-8); }
@media (min-width: 760px) { .footer-top { grid-template-columns: 1.4fr 1fr 1fr; } }
.footer .brand-name b, .footer .brand-name { color: #fff; }
.footer .brand img { width: 44px; height: 44px; }
.footer h4 { color: #fff; font-size: var(--text-sm); text-transform: uppercase; letter-spacing: .1em; margin-bottom: var(--space-4); }
.footer-blurb { margin-top: var(--space-4); font-size: var(--text-sm); max-width: 34ch; }
.footer-links li { margin-bottom: .6rem; }
.footer-links a { color: var(--text-on-navy-muted); font-size: var(--text-sm); }
.footer-links a:hover { color: #fff; }
.footer-contact li { display: flex; align-items: center; gap: .6rem; margin-bottom: .8rem; font-size: var(--text-sm); }
.footer-contact svg { width: 18px; height: 18px; color: var(--blue-300); flex: none; }
.footer-contact a { color: var(--text-on-navy-muted); }
.footer-contact a:hover { color: #fff; }
.social-row { display: flex; gap: .6rem; margin-top: var(--space-4); }
.social-row a {
  width: 40px; height: 40px; border-radius: var(--r-full); display: grid; place-items: center;
  background: rgba(255,255,255,.08); border: 1px solid var(--border-navy); color: #fff;
}
.social-row a:hover { background: var(--blue-500); border-color: var(--blue-500); text-decoration: none; }
.social-row svg { width: 20px; height: 20px; }
.footer-bottom { border-top: 1px solid var(--border-navy); padding-top: var(--space-5); display: flex; flex-wrap: wrap; gap: var(--space-3); justify-content: space-between; font-size: var(--text-xs); }

/* ---------- Mobile sticky call bar ---------- */
.call-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: grid; grid-template-columns: 1fr 1fr;
  background: var(--navy-800); box-shadow: 0 -4px 20px rgba(0,0,0,.2);
}
.call-bar a {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .95rem; color: #fff; font-weight: 600; font-size: var(--text-sm);
}
.call-bar a:hover { text-decoration: none; }
.call-bar a + a { border-left: 1px solid rgba(255,255,255,.15); }
.call-bar .call { background: var(--blue-500); }
.call-bar svg { width: 18px; height: 18px; }
@media (min-width: 900px) { .call-bar { display: none; } }
body { padding-bottom: 0; }
@media (max-width: 899px) { body { padding-bottom: 56px; } }

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