/* =========================================================
   ABRATKIEWICZ – MARET – MEDICO | Avocats pénalistes
   Design system & global styles
   ========================================================= */

:root {
  /* Palette */
  --navy-900: #0d1726;
  --navy-800: #11203a;
  --navy-700: #1b3052;
  --navy-600: #24426e;
  --gold: #b08d57;
  --gold-light: #c9a86a;
  --gold-dark: #8f6f3f;
  --cream: #f7f5f1;
  --cream-dark: #ece7df;
  --white: #ffffff;
  --ink: #1c2530;
  --ink-soft: #45505c;
  --muted: #6b7682;
  --line: #e2ddd3;
  --urgent: #b3322c;
  --urgent-dark: #8f2622;
  --success: #2f7d54;

  /* Typo */
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Layout */
  --container: 1180px;
  --radius: 4px;
  --radius-lg: 10px;
  --shadow-sm: 0 2px 10px rgba(13, 23, 38, 0.06);
  --shadow-md: 0 10px 30px rgba(13, 23, 38, 0.10);
  --shadow-lg: 0 24px 60px rgba(13, 23, 38, 0.16);
  --header-h: 84px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.12; color: var(--navy-900); letter-spacing: -0.01em; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
h3 { font-size: clamp(1.35rem, 2vw, 1.7rem); }
h4 { font-size: 1.2rem; }
p { color: var(--ink-soft); }
.lead { font-size: 1.22rem; color: var(--ink-soft); line-height: 1.6; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--sans); font-size: .78rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase; color: var(--gold-dark);
  margin-bottom: 1.1rem;
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--gold); }
.eyebrow.center { justify-content: center; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: clamp(64px, 9vw, 120px) 0; }
.section--tight { padding: clamp(48px, 6vw, 80px) 0; }
.section--navy { background: var(--navy-800); color: var(--cream); }
.section--navy h1, .section--navy h2, .section--navy h3, .section--navy h4 { color: var(--white); }
.section--navy p { color: rgba(247, 245, 241, 0.78); }
.section--cream-dark { background: var(--cream-dark); }
.center { text-align: center; }
.measure { max-width: 720px; }
.measure.center { margin-left: auto; margin-right: auto; }
.grid { display: grid; gap: 28px; }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }
.mt-1 { margin-top: .5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.6rem; } .mt-4 { margin-top: 2.4rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  font-weight: 600; font-size: .98rem; padding: 15px 30px; border-radius: var(--radius);
  transition: all .25s var(--ease); cursor: pointer; line-height: 1; text-align: center;
  border: 1.5px solid transparent;
}
.btn--gold { background: var(--gold); color: var(--navy-900); }
.btn--gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--navy { background: var(--navy-800); color: var(--white); }
.btn--navy:hover { background: var(--navy-700); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--urgent { background: var(--urgent); color: #fff; }
.btn--urgent:hover { background: var(--urgent-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--outline { border-color: var(--navy-800); color: var(--navy-800); }
.btn--outline:hover { background: var(--navy-800); color: #fff; }
.btn--ghost-light { border-color: rgba(255,255,255,.5); color: #fff; }
.btn--ghost-light:hover { background: #fff; color: var(--navy-900); border-color: #fff; }
.btn--lg { padding: 18px 38px; font-size: 1.05rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: 16px; }
.btn-row.center { justify-content: center; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100; background: rgba(247, 245, 241, 0.92);
  backdrop-filter: blur(10px); border-bottom: 1px solid var(--line);
  transition: box-shadow .3s var(--ease);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.nav { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); }
.brand { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name { font-family: var(--serif); font-size: 1.32rem; font-weight: 600; color: var(--navy-900); letter-spacing: .02em; }
.brand__tag { font-size: .64rem; letter-spacing: .28em; text-transform: uppercase; color: var(--gold-dark); font-weight: 600; margin-top: 3px; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-size: .92rem; font-weight: 500; color: var(--ink); padding: 9px 14px;
  border-radius: var(--radius); transition: color .2s, background .2s; position: relative;
}
.nav-links a:hover { color: var(--navy-900); background: rgba(176,141,87,.10); }
.nav-links a.active { color: var(--gold-dark); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-phone { display: inline-flex; align-items: center; gap: .5rem; font-weight: 600; color: var(--navy-900); font-size: .95rem; }
.nav-phone svg { color: var(--gold-dark); }
.nav-toggle { display: none; width: 44px; height: 44px; flex-direction: column; justify-content: center; align-items: center; gap: 5px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--navy-900); transition: .3s var(--ease); border-radius: 2px; }
.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 {
  position: relative; background: linear-gradient(160deg, var(--navy-900) 0%, var(--navy-700) 100%);
  color: var(--cream); overflow: hidden;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 80% 20%, rgba(176,141,87,.18), transparent 45%);
  pointer-events: none;
}
.hero__inner { position: relative; z-index: 2; padding: clamp(70px, 12vw, 130px) 0 clamp(60px, 9vw, 110px); }
.hero h1 { color: #fff; max-width: 14ch; }
.hero .lead { color: rgba(247,245,241,.82); max-width: 56ch; }
.hero-stats { display: flex; flex-wrap: wrap; gap: clamp(28px, 5vw, 60px); margin-top: 2.8rem; padding-top: 2.2rem; border-top: 1px solid rgba(255,255,255,.14); }
.hero-stat__num { font-family: var(--serif); font-size: 2.6rem; color: var(--gold-light); line-height: 1; }
.hero-stat__label { font-size: .85rem; color: rgba(247,245,241,.7); margin-top: .4rem; }

/* ---------- Page hero (interior) ---------- */
.page-hero { background: linear-gradient(160deg, var(--navy-900), var(--navy-700)); color: var(--cream); padding: clamp(60px,9vw,110px) 0 clamp(48px,7vw,80px); position: relative; overflow: hidden; }
.page-hero::after { content:""; position:absolute; inset:0; background-image: radial-gradient(circle at 85% 15%, rgba(176,141,87,.16), transparent 50%); }
.page-hero__inner { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; }
.page-hero p { color: rgba(247,245,241,.82); max-width: 60ch; }
.breadcrumb { font-size: .82rem; color: rgba(247,245,241,.6); margin-bottom: 1.2rem; }
.breadcrumb a:hover { color: var(--gold-light); }

/* ---------- Cards ---------- */
.card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 34px 30px; transition: transform .3s var(--ease), box-shadow .3s var(--ease); height: 100%; }
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.card__icon { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 50%; background: rgba(176,141,87,.12); color: var(--gold-dark); margin-bottom: 1.2rem; }
.card__icon svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: .6rem; }
.card p { font-size: .98rem; }
.card__link { display: inline-flex; align-items: center; gap: .4rem; color: var(--gold-dark); font-weight: 600; font-size: .92rem; margin-top: 1rem; }
.card__link:hover { gap: .7rem; }

/* ---------- Domain list ---------- */
.domain-row { display: flex; gap: 20px; padding: 26px 0; border-bottom: 1px solid var(--line); }
.domain-row:last-child { border-bottom: 0; }
.domain-row__num { font-family: var(--serif); font-size: 1.6rem; color: var(--gold); min-width: 48px; }
.domain-row h3 { margin-bottom: .35rem; }

/* ---------- Team ---------- */
.team-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.team-card__photo { aspect-ratio: 4/5; background: linear-gradient(160deg, var(--navy-700), var(--navy-900)); display: grid; place-items: center; color: var(--gold-light); }
.team-card__photo svg { width: 64px; height: 64px; opacity: .5; }
.team-card__body { padding: 22px 24px 26px; }
.team-card__role { font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-dark); font-weight: 600; }
.team-card__name { margin: .35rem 0 .2rem; }
.badge { display: inline-block; font-size: .72rem; font-weight: 600; padding: 4px 10px; border-radius: 100px; background: rgba(176,141,87,.14); color: var(--gold-dark); margin-top: .4rem; }

/* ---------- Urgence banner ---------- */
.urgence-strip { background: var(--urgent); color: #fff; }
.urgence-strip .container { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px; padding-top: 22px; padding-bottom: 22px; }
.urgence-strip h3 { color: #fff; font-family: var(--sans); font-size: 1.15rem; font-weight: 700; }
.urgence-strip p { color: rgba(255,255,255,.9); font-size: .95rem; }
.urgence-strip .btn--ghost-light:hover { color: var(--urgent); }

/* ---------- Stats band ---------- */
.stat-band { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; text-align: center; }
.stat-band__num { font-family: var(--serif); font-size: clamp(2.4rem,4vw,3.2rem); color: var(--gold); line-height: 1; }
.stat-band__label { font-size: .9rem; color: var(--ink-soft); margin-top: .5rem; }
.section--navy .stat-band__label { color: rgba(247,245,241,.75); }

/* ---------- Press logos ---------- */
.press-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: clamp(24px,5vw,60px); }
.press-row span { font-family: var(--serif); font-size: 1.5rem; color: var(--muted); opacity: .8; font-style: italic; }

/* ---------- Testimonials ---------- */
.quote-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 34px 32px; height: 100%; }
.quote-card__stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 1rem; }
.quote-card blockquote { font-family: var(--serif); font-size: 1.25rem; line-height: 1.5; color: var(--navy-900); font-style: italic; }
.quote-card__author { margin-top: 1.2rem; font-weight: 600; font-size: .92rem; color: var(--ink); }
.quote-card__source { font-size: .82rem; color: var(--muted); }

/* ---------- Article cards ---------- */
.article-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.article-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.article-card__media { aspect-ratio: 16/9; background: linear-gradient(135deg, var(--navy-700), var(--navy-900)); position: relative; }
.article-card__cat { position: absolute; top: 14px; left: 14px; background: var(--gold); color: var(--navy-900); font-size: .72rem; font-weight: 700; padding: 5px 12px; border-radius: 100px; letter-spacing: .04em; }
.article-card__body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.article-card__date { font-size: .8rem; color: var(--muted); }
.article-card h3 { font-size: 1.3rem; margin: .5rem 0 .6rem; }
.article-card p { font-size: .95rem; flex: 1; }

/* ---------- FAQ ---------- */
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 20px; text-align: left; padding: 24px 0; font-family: var(--serif); font-size: 1.3rem; color: var(--navy-900); font-weight: 600; }
.faq-q .icon { flex-shrink: 0; width: 26px; height: 26px; position: relative; transition: transform .3s var(--ease); }
.faq-q .icon::before, .faq-q .icon::after { content: ""; position: absolute; background: var(--gold-dark); border-radius: 2px; }
.faq-q .icon::before { top: 50%; left: 0; right: 0; height: 2px; transform: translateY(-50%); }
.faq-q .icon::after { left: 50%; top: 0; bottom: 0; width: 2px; transform: translateX(-50%); transition: transform .3s var(--ease); }
.faq-item[open] .faq-q .icon::after { transform: translateX(-50%) scaleY(0); }
.faq-a { padding: 0 0 26px; max-width: 75ch; }
.faq-a p + p { margin-top: .8rem; }
details.faq-item summary { list-style: none; }
details.faq-item summary::-webkit-details-marker { display: none; }

/* ---------- Forms ---------- */
.form-grid { display: grid; gap: 18px; grid-template-columns: 1fr 1fr; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .86rem; font-weight: 600; color: var(--ink); }
.field label .req { color: var(--urgent); }
.field input, .field select, .field textarea {
  font-family: inherit; font-size: 1rem; padding: 13px 15px; border: 1.5px solid var(--line);
  border-radius: var(--radius); background: var(--white); color: var(--ink); transition: border-color .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); }
.field textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: .82rem; color: var(--muted); }
.urgent-check { display: flex; align-items: center; gap: 10px; background: rgba(179,50,44,.07); border: 1px solid rgba(179,50,44,.25); padding: 14px 16px; border-radius: var(--radius); }
.urgent-check input { width: 18px; height: 18px; accent-color: var(--urgent); }
.urgent-check label { font-size: .92rem; font-weight: 600; color: var(--urgent-dark); }

/* ---------- Contact info blocks ---------- */
.info-block { display: flex; gap: 16px; align-items: flex-start; padding: 18px 0; border-bottom: 1px solid var(--line); }
.info-block:last-child { border-bottom: 0; }
.info-block__icon { width: 44px; height: 44px; border-radius: 50%; background: rgba(176,141,87,.12); color: var(--gold-dark); display: grid; place-items: center; flex-shrink: 0; }
.info-block__icon svg { width: 22px; height: 22px; }
.info-block strong { display: block; color: var(--navy-900); font-size: .95rem; }
.info-block a, .info-block span { color: var(--ink-soft); }
.info-block a:hover { color: var(--gold-dark); }

/* ---------- Checklist ---------- */
.check-list li { display: flex; gap: 12px; align-items: flex-start; padding: 9px 0; color: var(--ink-soft); }
.check-list li::before { content: ""; flex-shrink: 0; width: 22px; height: 22px; margin-top: 2px; border-radius: 50%; background: rgba(47,125,84,.12) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%232f7d54' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/14px no-repeat; }
.section--navy .check-list li { color: rgba(247,245,241,.85); }

/* ---------- Steps ---------- */
.step { display: flex; gap: 20px; padding: 22px 0; }
.step__num { flex-shrink: 0; width: 46px; height: 46px; border-radius: 50%; background: var(--navy-800); color: var(--gold-light); font-family: var(--serif); font-size: 1.3rem; display: grid; place-items: center; }
.step h3 { font-size: 1.25rem; margin-bottom: .3rem; }

/* ---------- CTA section ---------- */
.cta-final { background: linear-gradient(160deg, var(--navy-900), var(--navy-700)); color: var(--cream); text-align: center; border-radius: var(--radius-lg); padding: clamp(48px,7vw,80px) 24px; position: relative; overflow: hidden; }
.cta-final::after { content:""; position:absolute; inset:0; background-image: radial-gradient(circle at 50% 0%, rgba(176,141,87,.2), transparent 55%); }
.cta-final > * { position: relative; z-index: 2; }
.cta-final h2 { color: #fff; }
.cta-final p { color: rgba(247,245,241,.82); }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-900); color: rgba(247,245,241,.72); padding: 64px 0 0; font-size: .92rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 48px; }
.footer-grid h4 { color: #fff; font-family: var(--sans); font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 1.2rem; }
.site-footer .brand__name { color: #fff; }
.footer-links li { margin-bottom: .6rem; }
.footer-links a:hover { color: var(--gold-light); }
.footer-contact li { display: flex; gap: 10px; margin-bottom: .7rem; }
.footer-contact svg { color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.footer-contact a:hover { color: var(--gold-light); }
.socials { display: flex; gap: 12px; margin-top: 1.2rem; }
.socials a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,.18); display: grid; place-items: center; color: rgba(247,245,241,.8); transition: .25s var(--ease); }
.socials a:hover { background: var(--gold); border-color: var(--gold); color: var(--navy-900); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 22px 0; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; font-size: .82rem; }
.footer-bottom a:hover { color: var(--gold-light); }

/* ---------- Mobile urgence floating ---------- */
.float-urgence {
  display: none; position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 90;
  background: var(--urgent); color: #fff; border-radius: 50px; padding: 15px;
  align-items: center; justify-content: center; gap: 10px; font-weight: 700;
  box-shadow: 0 8px 24px rgba(179,50,44,.45); animation: pulse 2.4s infinite;
}
@keyframes pulse { 0%,100% { box-shadow: 0 8px 24px rgba(179,50,44,.4); } 50% { box-shadow: 0 8px 30px rgba(179,50,44,.7); } }

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

/* ---------- Prose (articles / legal) ---------- */
.prose { max-width: 760px; }
.prose h2 { margin: 2.4rem 0 1rem; }
.prose h3 { margin: 1.8rem 0 .8rem; }
.prose p { margin-bottom: 1.1rem; }
.prose ul { margin: 0 0 1.1rem; padding-left: 0; }
.prose ul li { position: relative; padding-left: 26px; margin-bottom: .6rem; color: var(--ink-soft); }
.prose ul li::before { content: ""; position: absolute; left: 4px; top: 11px; width: 7px; height: 7px; background: var(--gold); border-radius: 50%; }
.prose strong { color: var(--navy-900); }
.prose a { color: var(--gold-dark); text-decoration: underline; text-underline-offset: 3px; }
.callout { background: rgba(176,141,87,.10); border-left: 3px solid var(--gold); padding: 20px 24px; border-radius: var(--radius); margin: 1.6rem 0; }
.callout p { margin: 0; color: var(--ink); }

/* ---------- Two-col content ---------- */
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(36px,6vw,72px); align-items: center; }
.media-frame { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 4/3; background: linear-gradient(150deg, var(--navy-700), var(--navy-900)); display: grid; place-items: center; color: rgba(201,168,106,.5); }
.media-frame svg { width: 80px; height: 80px; }

/* ---------- Map frame ---------- */
.map-frame { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); min-height: 320px; }
.map-frame iframe { width: 100%; height: 100%; min-height: 320px; border: 0; display: block; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 980px) {
  .cols-4 { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stat-band { grid-template-columns: repeat(2,1fr); gap: 32px; }
  .split { grid-template-columns: 1fr; }
}
.nav-mobile-cta { display: none; }
@media (max-width: 760px) {
  body { font-size: 16px; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex; position: absolute; top: var(--header-h); left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0; background: var(--cream);
    border-bottom: 1px solid var(--line); padding: 12px 24px 22px; box-shadow: var(--shadow-md);
  }
  .nav-links.open a { padding: 14px 8px; border-bottom: 1px solid var(--line); }
  .nav-links.open .nav-mobile-cta { display: inline-flex; margin-top: 16px; text-align: center; border-bottom: 0; }
  .cols-2, .cols-3 { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .float-urgence { display: flex; }
  .float-urgence + * , body { } /* spacing handled per page */
  .hero-stats { gap: 24px; }
  .hero-stat__num { font-size: 2.1rem; }
}
@media (max-width: 480px) {
  .stat-band { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

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