@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --danger: #7a1a1a;
  --forest: #1a2f23;
  --canopy: #243b2c;
  --moss: #3d7a56;
  --leaf: #5cb176;
  --bark: #c9903b;
  --sunlight: #f5dfa0;
  --mist: #f0f5f1;
  --cloud: #ffffff;
  --ink: #1a1a1a;
  --ash: #6b7c72;
  --line: rgba(61,122,86,.15);
  --glass: rgba(36,59,44,.65);
  --glass-light: rgba(255,255,255,.08);
  --shadow-sm: 0 2px 8px rgba(0,0,0,.06);
  --shadow-md: 0 8px 24px rgba(0,0,0,.1);
  --shadow-lg: 0 16px 48px rgba(0,0,0,.14);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --ease: cubic-bezier(.4,0,.2,1);
  --header-h: 84px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--cloud);
  line-height: 1.65;
  font-size: 19.2px;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--moss); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--leaf); }

img { display: block; max-width: 100%; height: auto; border-radius: var(--radius-md); }

.container { width: min(1140px, calc(100% - 2rem)); margin-inline: auto; }

/* ─── TOP BAR ─── */
.top-bar {
  background: var(--forest);
  color: rgba(255,255,255,.85);
  font-size: .8125rem;
  letter-spacing: .01em;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.top-bar a { color: var(--sunlight); font-weight: 500; }
.top-bar a:hover { color: #fff; }
.top-bar__inner {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: .75rem 0;
}
.top-bar__inner span,
.top-bar__inner a { display: inline-flex; align-items: center; gap: .35rem; }
.top-bar__inner svg { width: 14px; height: 14px; flex-shrink: 0; }

/* ─── HEADER ─── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(16px) saturate(1.6);
  -webkit-backdrop-filter: blur(16px) saturate(1.6);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s var(--ease);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 1rem;
}
.site-logo {
  font-weight: 800;
  font-size: 1.45rem;
  color: var(--forest);
  text-decoration: none;
  letter-spacing: -.02em;
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.site-logo:hover { color: var(--moss); }
.site-logo__region {
  font-weight: 400;
  font-size: .7rem;
  letter-spacing: .04em;
  color: var(--ash);
  text-transform: uppercase;
}

.site-nav ul { display: flex; gap: .25rem; list-style: none; align-items: center; }
.site-nav > ul > li > a,
.site-nav > ul > li > span {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  padding: .5rem .85rem;
  font-size: .9rem;
  font-weight: 500;
  color: var(--ink);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background .2s var(--ease), color .2s var(--ease);
}
.site-nav > ul > li > a:hover,
.site-nav > ul > li > span:hover,
.site-nav > ul > li:focus-within > span { background: var(--mist); color: var(--moss); }
.site-nav li { position: relative; }
.site-nav li ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 230px;
  padding: .75rem .5rem .5rem;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}
.site-nav li:hover > ul,
.site-nav li:focus-within > ul { display: grid; gap: 2px; }
.site-nav li ul a {
  display: block;
  padding: .55rem .75rem;
  font-size: .875rem;
  color: var(--ink);
  border-radius: var(--radius-sm);
  transition: background .15s var(--ease);
}
.site-nav li ul a:hover { background: var(--mist); color: var(--moss); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 0;
  -webkit-appearance: none;
  appearance: none;
  touch-action: manipulation;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  min-height: 2px;
  background: var(--forest);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s var(--ease);
  -webkit-transform: translateZ(0);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── HERO ─── */
.hero {
  position: relative;
  padding: 4rem 0 5.5rem;
  background: linear-gradient(135deg, var(--forest) 0%, var(--canopy) 50%, #1e3a28 100%);
  color: #fff;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 20%, rgba(92,177,118,.15) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 80%, rgba(201,144,59,.08) 0%, transparent 50%);
  pointer-events: none;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero__content { max-width: 560px; }
.eyebrow {
  display: inline-block;
  color: var(--bark);
  font-weight: 700;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: .75rem;
  padding: .3rem .75rem;
  background: rgba(201,144,59,.12);
  border-radius: 50px;
}
.hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -.025em;
  margin-bottom: 1.5rem;
}
.hero p { font-size: 1.05rem; opacity: .88; line-height: 1.6; margin-bottom: .5rem; }
.hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  list-style: none;
  margin-bottom: 1.75rem;
}
.hero__tags li {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .55rem 1.1rem;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50px;
  font-size: .9375rem;
  font-weight: 600;
  color: #fff;
}
.hero__tags li::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: var(--bark);
  border-radius: 50%;
  font-size: .7rem;
  font-weight: 700;
  flex-shrink: 0;
}
.hero__phone {
  display: block;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -.02em;
  text-decoration: none;
  margin-bottom: 1.75rem;
  transition: color .2s;
}
.hero__phone:hover { color: var(--leaf); }
.hero__media { position: relative; }
.hero__media img {
  border-radius: var(--radius-sm);
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
  aspect-ratio: 2/3;
  object-fit: cover;
  object-position: center 30%;
  max-height: 520px;
  width: 100%;
}
.hero__media::after {
  content: '';
  position: absolute;
  inset: -8px;
  border: 2px solid rgba(92,177,118,.2);
  border-radius: calc(var(--radius-sm) + 8px);
  pointer-events: none;
}

/* Buttons */
.button-row { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.75rem; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: .7rem 1.5rem;
  font-family: inherit;
  font-size: .9rem;
  font-weight: 600;
  border: 2px solid var(--moss);
  background: var(--moss);
  color: #fff;
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-decoration: none;
  transition: all .25s var(--ease);
  gap: .4rem;
}
.button:hover {
  background: var(--leaf);
  border-color: var(--leaf);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(61,122,86,.3);
}
.button--secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.35);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: .8rem;
  display: inline-flex;
  align-items: center;
  gap: .45em;
}
.button--secondary svg {
  width: 1.5em;
  height: 1.5em;
  flex-shrink: 0;
  stroke: var(--bark);
}
.button--secondary:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.6);
  color: #fff;
  box-shadow: none;
}
.button--dark { background: var(--forest); border-color: var(--forest); color: #fff; }
.button--dark:hover { background: var(--canopy); border-color: var(--canopy); }

/* ─── SECTIONS ─── */
.page-section { padding: 4.5rem 0; }
.page-section--muted { background: var(--mist); }
.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--moss);
  margin-bottom: .5rem;
}
.section-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--bark);
  margin-bottom: .75rem;
}
.section-subtitle { color: var(--ash); max-width: 720px; margin-bottom: 5rem; font-size: 1.2rem; line-height: 1.7; }
.prose { max-width: 780px; }
.prose--mt { margin-top: 3rem; }
.demande-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.demande-cta__phone {
  font-size: 2rem;
  font-weight: 700;
  color: var(--forest);
  text-decoration: none;
  letter-spacing: -.02em;
  line-height: 1;
}
.demande-cta__phone:hover { color: var(--bark); }
.demande-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  letter-spacing: .06em;
}
.demande-cta__btn svg {
  width: 1.5em;
  height: 1.5em;
  flex-shrink: 0;
  stroke: var(--bark);
}
.prose h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--bark);
  margin: 2.5rem 0 .75rem;
  letter-spacing: -.015em;
}
.prose h3 { font-size: 1.15rem; font-weight: 600; color: var(--canopy); margin: 2rem 0 .5rem; }
.prose p { margin-bottom: 1rem; color: var(--ink); }
.prose ul, .prose ol { margin: .75rem 0 1.25rem 1.25rem; }
.prose li { margin-bottom: .4rem; }

/* ─── CARDS ─── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}
.card {
  background: var(--cloud);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(61,122,86,.3);
}
.card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: .5rem; color: var(--forest); }
.card h3 a { color: inherit; }
.card h3 a:hover { color: var(--moss); }
.card p { font-size: .9rem; color: var(--ash); line-height: 1.55; }
.card--service { text-align: center; padding: 2rem 1.5rem; }
.card--service .card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  background: var(--mist);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card--service .card__icon svg { width: 26px; height: 26px; color: var(--moss); }

/* ─── TRUST ─── */
.trust {
  padding: 1.25rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--cloud);
}
.trust__list {
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
}
.trust__list li {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .45rem 1rem;
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 50px;
  font-size: .8125rem;
  font-weight: 600;
  color: var(--forest);
}
.trust__list li::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  background: var(--moss);
  color: #fff;
  border-radius: 50%;
  font-size: .65rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ─── PROCESS / STEPS ─── */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  list-style: none;
  counter-reset: step;
}
.steps li {
  counter-increment: step;
  position: relative;
  background: var(--cloud);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 2rem 1.25rem 1.5rem;
  text-align: center;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.steps li:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.steps li::before {
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, var(--moss), var(--leaf));
  color: #fff;
  border-radius: 50%;
  font-weight: 700;
  font-size: .95rem;
}
.steps strong { display: block; font-size: .95rem; color: var(--forest); margin-bottom: .4rem; }
.steps span { display: block; font-size: .825rem; color: var(--ash); line-height: 1.5; }

/* ─── EMERGENCY CTA ─── */
.band { background: var(--mist); }
.band--urgent {
  background: linear-gradient(135deg, var(--danger) 0%, #5c1010 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.band--urgent::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -60px;
  width: 120px;
  height: 120px;
  background: rgba(201,144,59,.15);
  border-radius: 50%;
  transform: translateY(-50%);
  animation: pulse-glow 3s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%, 100% { transform: translateY(-50%) scale(1); opacity: .6; }
  50% { transform: translateY(-50%) scale(1.4); opacity: 1; }
}
.band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2.5rem 0;
  position: relative;
  z-index: 1;
}
.band__inner h2 { font-size: 1.35rem; font-weight: 700; margin-bottom: .35rem; }
.band__inner p { font-size: .9rem; opacity: .8; }
.band--urgent .button { background: var(--bark); border-color: var(--bark); white-space: nowrap; font-size: 1.35rem; font-weight: 800; letter-spacing: -.01em; padding: .7rem 2rem; }
.band--urgent .button:hover { background: #d9a04a; border-color: #d9a04a; }

/* ─── FAQ ─── */
.faq-list { max-width: 780px; }
.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  margin-bottom: .625rem;
  overflow: hidden;
  transition: border-color .2s var(--ease);
}
.faq-list details[open] { border-color: rgba(61,122,86,.3); }
.faq-list summary {
  padding: 1rem 1.25rem;
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: background .2s var(--ease);
}
.faq-list summary:hover { background: var(--mist); }
.faq-list summary::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--moss);
  transition: transform .3s var(--ease);
  flex-shrink: 0;
}
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list details p {
  padding: 0 1.25rem 1rem;
  font-size: .9rem;
  color: var(--ash);
  line-height: 1.6;
}

/* ─── FORMS ─── */
.form { display: grid; gap: 1rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form label {
  display: flex;
  flex-direction: column;
  font-size: .8125rem;
  font-weight: 600;
  color: var(--forest);
  gap: .3rem;
}
input, textarea, select {
  width: 100%;
  min-height: 46px;
  padding: .65rem .85rem;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  font: inherit;
  font-size: .9rem;
  background: var(--cloud);
  color: var(--ink);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--moss);
  box-shadow: 0 0 0 3px rgba(61,122,86,.1);
}
textarea { min-height: 120px; resize: vertical; }

/* ─── CONTACT BLOCK ─── */
.contact-block { background: var(--mist); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.contact-info h2 { font-size: 1.6rem; font-weight: 800; color: var(--forest); margin-bottom: 1.25rem; }
.contact-info p { margin-bottom: .6rem; font-size: .95rem; color: var(--ink); }
.contact-info a { color: var(--moss); font-weight: 600; }
.contact-form-wrapper {
  background: var(--cloud);
  padding: 2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.contact-form-wrapper h2 { font-size: 1.2rem; font-weight: 700; color: var(--forest); margin-bottom: 1.25rem; }

/* ─── ZONE BLOCK ─── */
.tag-list { display: flex; gap: .4rem; flex-wrap: wrap; list-style: none; margin-top: .75rem; }
.tag-list li {
  padding: .3rem .7rem;
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 500;
  color: var(--forest);
}

/* ─── BREADCRUMBS ─── */
.breadcrumbs {
  padding: .75rem 0;
  border-bottom: 1px solid var(--line);
  background: var(--cloud);
}
.breadcrumbs ol { display: flex; gap: .5rem; flex-wrap: wrap; list-style: none; }
.breadcrumbs li { font-size: .8125rem; color: var(--ash); }
.breadcrumbs li + li::before { content: '›'; margin-right: .5rem; color: var(--ash); }
.breadcrumbs a { color: var(--ash); }
.breadcrumbs a:hover { color: var(--moss); }

/* ─── GALLERY ─── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}
.gallery-grid figure { position: relative; overflow: hidden; border-radius: var(--radius-md); }
.gallery-grid img {
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 0;
  transition: transform .4s var(--ease);
}
.gallery-grid figure:hover img { transform: scale(1.04); }
.gallery-grid figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: .75rem 1rem;
  background: linear-gradient(transparent, rgba(0,0,0,.6));
  color: #fff;
  font-size: .8125rem;
}

/* ─── FOOTER ─── */
.site-footer {
  background: var(--forest);
  color: rgba(255,255,255,.8);
  padding: 3.5rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
}
.site-footer h2 {
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: rgba(255,255,255,.5);
  margin-bottom: 1rem;
}
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: .4rem; }
.site-footer a { color: rgba(255,255,255,.75); font-size: .9rem; transition: color .2s var(--ease); }
.site-footer a:hover { color: var(--sunlight); }
.footer-brand { font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: .75rem; }
.footer-brand + p { font-size: .85rem; margin-bottom: .35rem; }
.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,.08);
  text-align: center;
  font-size: .78rem;
  color: rgba(255,255,255,.4);
}

/* ─── CALLBACK FORM (compact) ─── */
.form--inline {
  display: flex;
  gap: .5rem;
  align-items: end;
  margin-top: 1.25rem;
}
.form--inline label { font-size: .78rem; flex: 1; }
.form--inline input { min-height: 42px; }
.form--inline .button { min-height: 42px; white-space: nowrap; }

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── UTILITIES ─── */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}
.text-center { text-align: center; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .steps { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__content { max-width: 100%; }
  .hero__media { max-width: 100%; margin: 0; }
  .hero__media img { max-height: none; }
  .button-row { justify-content: center; }

  .contact-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }

  .hamburger { display: flex; }
  .site-nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    padding: 1rem;
  }
  .site-nav.open { display: block; }
  .site-nav ul { flex-direction: column; align-items: stretch; }
  .site-nav > ul > li > a,
  .site-nav > ul > li > span {
    padding: .75rem 1rem;
    width: 100%;
    justify-content: space-between;
  }
  .site-nav li ul {
    position: static;
    box-shadow: none;
    border: none;
    backdrop-filter: none;
    background: var(--mist);
    border-radius: var(--radius-sm);
    margin-top: .25rem;
  }

  .band__inner { flex-direction: column; text-align: center; }
}

@media (max-width: 560px) {
  .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .top-bar__inner { font-size: .75rem; gap: .75rem; }
}

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