/* CKLEAN AUTO 45 — shared stylesheet. Dark-forward, crisp light body, one brand green. */
:root {
  --bg: #ffffff;
  --bg-2: #f1f4f0;
  --ink: #141a16;
  --mid: #59635c;
  --line: #e2e7e1;
  --line-strong: #ccd4cb;

  --dark: #0e1310;
  --dark-2: #171e19;
  --on-dark: #e9ede9;
  --on-dark-mid: rgba(233,237,233,0.66);

  --green: #2f9e44;
  --green-hover: #26823a;
  --green-hi: #55cc6d;
  --green-ink: #1c6a2e;
  --star: #e9b73c;

  --maxw: 1220px;
  --pad: clamp(1.15rem, 4.5vw, 3.5rem);

  --fs-label: 0.72rem;
  --fs-body: 1.04rem;
  --fs-lead: clamp(1.08rem, 1.5vw, 1.28rem);
  --fs-h3: clamp(1.25rem, 2.2vw, 1.6rem);
  --fs-h2: clamp(2rem, 4.8vw, 3.35rem);
  --fs-h1: clamp(2.65rem, 6.4vw, 5.1rem);

  --ff-display: "Archivo", "Arial Narrow", system-ui, sans-serif;
  --ff-body: "Figtree", system-ui, -apple-system, "Segoe UI", sans-serif;

  color-scheme: light;
}

* { box-sizing: border-box; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

/* transitions between pages — the content cross-fades, the header stays put */
@keyframes pageFade { from { opacity: 0; transform: translateY(7px); } }
@media (prefers-reduced-motion: no-preference) {
  main, footer { animation: pageFade .42s cubic-bezier(.22,.61,.36,1) both; }
  html.is-leaving main, html.is-leaving footer {
    opacity: 0; transform: translateY(-5px);
    transition: opacity .22s ease, transform .22s ease;
    animation: none;
  }
}

body {
  margin: 0; background: var(--bg); color: var(--ink);
  font-family: var(--ff-body); font-size: var(--fs-body); line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { margin: 0; font-family: var(--ff-display); font-weight: 800; line-height: 1.04; letter-spacing: -0.02em; text-wrap: balance; color: inherit; }
p { margin: 0; }
a { color: inherit; }
img, svg { display: block; max-width: 100%; }

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }

/* technical / monospace eyebrow — reads like a code comment: "// LA VAPEUR" */
.label {
  display: inline-flex; align-items: baseline; gap: 0.55em;
  font-family: ui-monospace, "SFMono-Regular", "Menlo", "Consolas", monospace;
  font-size: var(--fs-label); font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--green-ink);
}
.label::before { content: "//"; color: var(--green); font-weight: 700; }
.hero .label::before, .phero .label::before, .sec--dark .label::before, .cta-band .label::before { color: var(--green-hi); }

.btn {
  display: inline-flex; align-items: center; gap: 0.55em;
  font-family: var(--ff-body); font-weight: 600; font-size: 0.86rem; letter-spacing: 0.04em;
  text-decoration: none; padding: 1rem 1.8rem; border-radius: 999px;
  background: var(--green); color: #fff; border: 1px solid var(--green);
  transition: background .18s ease, border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.btn:hover { background: var(--green-hover); border-color: var(--green-hover); transform: translateY(-2px); box-shadow: 0 10px 24px -12px rgba(47,158,68,0.6); }
.btn--ghost { background: transparent; color: currentColor; border-color: currentColor; opacity: 0.92; }
.btn--ghost:hover { background: rgba(127,127,127,0.08); transform: translateY(-2px); box-shadow: none; opacity: 1; }
.btn--lg { padding: 1.15rem 2.1rem; font-size: 0.94rem; }

a:focus-visible, .btn:focus-visible, button:focus-visible, summary:focus-visible { outline: 2px solid var(--green-hi); outline-offset: 3px; }

/* reveal — content is ALWAYS fully visible; JS only adds a gentle rise on scroll-in. */
.reveal-on .reveal { transform: translateY(14px); transition: transform .55s cubic-bezier(.2,.7,.2,1); will-change: transform; }
.reveal-on .reveal.in { transform: none; will-change: auto; }
@media (prefers-reduced-motion: reduce) { .reveal-on .reveal { transform: none !important; transition: none; } }

/* ---------- header (dark) ---------- */
header.bar { position: sticky; top: 0; z-index: 40; background: rgba(14,19,16,0.9); backdrop-filter: blur(10px); border-bottom: 1px solid rgba(255,255,255,0.1); transition: background .5s cubic-bezier(.22,.61,.36,1), border-color .5s cubic-bezier(.22,.61,.36,1), padding .5s cubic-bezier(.22,.61,.36,1); }
.bar__in { display: flex; align-items: center; gap: 1.5rem; padding-block: 0.7rem; max-width: var(--maxw); transition: background .5s cubic-bezier(.22,.61,.36,1), border-color .5s cubic-bezier(.22,.61,.36,1), box-shadow .5s cubic-bezier(.22,.61,.36,1), border-radius .5s cubic-bezier(.22,.61,.36,1), gap .5s cubic-bezier(.22,.61,.36,1), padding .5s cubic-bezier(.22,.61,.36,1), max-width .5s cubic-bezier(.22,.61,.36,1); }
/* detached once scrolled — narrows into a centered rounded floating bar (keeps the nav) */
header.bar.is-float { background: transparent; border-bottom-color: transparent; padding-top: 0.65rem; }
header.bar.is-float .bar__in {
  max-width: min(62rem, calc(100% - 1.8rem));
  margin-inline: auto;
  background: rgba(14,19,16,0.98);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  box-shadow: 0 18px 44px -14px rgba(0,0,0,0.62), inset 0 1px 0 rgba(255,255,255,0.06);
  gap: 1.1rem;
  padding: 0.4rem 0.6rem 0.4rem 1.3rem;
}
header.bar.is-float .bar__brand img { height: 30px; }
header.bar.is-float .bar__tel { display: none; }
header.bar.is-float .bar__nav { gap: 1.1rem; }
header.bar.is-float .bar__nav a { font-size: 0.78rem; padding-block: 0.2rem; }
header.bar.is-float .bar__cta { padding-block: 0.68rem; padding-inline: 1.25rem; }
.bar__brand { display: flex; align-items: center; text-decoration: none; margin-right: auto; }
.bar__brand img { height: 44px; width: auto; transition: height .5s cubic-bezier(.22,.61,.36,1); }
.bar__nav { display: flex; gap: 1.7rem; transition: gap .5s cubic-bezier(.22,.61,.36,1); }
.bar__nav a { font-size: 0.82rem; font-weight: 600; letter-spacing: 0.02em; text-decoration: none; color: var(--on-dark-mid); padding-block: 0.3rem; border-bottom: 2px solid transparent; transition: color .18s, border-color .18s, font-size .5s cubic-bezier(.22,.61,.36,1), padding .5s cubic-bezier(.22,.61,.36,1); }
.bar__nav a:hover, .bar__nav a[aria-current="page"] { color: var(--on-dark); border-color: var(--green-hi); }
.bar__tel { font-family: var(--ff-display); font-weight: 800; font-size: 1rem; text-decoration: none; color: var(--on-dark); white-space: nowrap; display: inline-flex; align-items: center; gap: 0.4em; }
.bar__tel svg { width: 15px; height: 15px; fill: var(--green-hi); }
.bar__cta { white-space: nowrap; transition: background .18s ease, border-color .18s ease, transform .18s ease, box-shadow .18s ease, padding .5s cubic-bezier(.22,.61,.36,1); }
@media (prefers-reduced-motion: reduce) { header.bar, .bar__in, .bar__brand img, .bar__nav, .bar__nav a, .bar__cta { transition: none; } }
.bar__burger { display: none; width: 42px; height: 42px; border: 1px solid rgba(255,255,255,0.25); background: transparent; border-radius: 999px; cursor: pointer; align-items: center; justify-content: center; }
.bar__burger span, .bar__burger span::before, .bar__burger span::after { content: ""; display: block; width: 18px; height: 2px; background: var(--on-dark); position: relative; }
.bar__burger span::before { position: absolute; top: -6px; }
.bar__burger span::after { position: absolute; top: 6px; }
@media (max-width: 1000px) {
  .bar__nav, .bar__cta { display: none; }
  .bar__burger { display: inline-flex; }
  .bar__in { gap: 0.9rem; }
  .bar__nav.is-open { display: flex; flex-direction: column; gap: 0; position: absolute; left: 0; right: 0; top: 100%; background: var(--dark); border-bottom: 1px solid rgba(255,255,255,0.1); padding: 0.4rem var(--pad) 1rem; }
  .bar__nav.is-open a { padding-block: 0.85rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
  header.bar.is-float .bar__nav.is-open { position: fixed; left: 0.8rem; right: 0.8rem; top: 3.9rem; border: 1px solid rgba(255,255,255,0.12); border-radius: 16px; padding-inline: 1.1rem; box-shadow: 0 20px 46px -16px rgba(0,0,0,0.6); }
}
@media (max-width: 560px) { .bar__tel { display: none; } .bar__brand img { height: 38px; } }

/* ---------- home hero ---------- */
.hero { position: relative; background: var(--dark); color: var(--on-dark); overflow: hidden; }
.hero__media { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 58% center; }
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(55% 70% at 88% 12%, rgba(47,158,68,0.16), transparent 60%),
    linear-gradient(88deg, rgba(14,19,16,0.95) 0%, rgba(14,19,16,0.86) 30%, rgba(14,19,16,0.42) 66%, rgba(14,19,16,0.22) 100%),
    linear-gradient(0deg, rgba(14,19,16,0.55), transparent 45%);
}
/* floating rating card over the hero photo — desktop only, decorative (info repeated in .hero__proof for a11y) */
.hero__badge {
  position: absolute; z-index: 1; right: 0; bottom: clamp(1.4rem, 4vw, 2.4rem);
  display: flex; align-items: center; gap: 0.7rem;
  background: rgba(14,19,16,0.55); backdrop-filter: blur(14px) saturate(1.4); -webkit-backdrop-filter: blur(14px) saturate(1.4);
  border: 1px solid rgba(255,255,255,0.14); border-radius: 999px;
  padding: 0.6rem 1.2rem 0.6rem 0.85rem;
  box-shadow: 0 20px 44px -18px rgba(0,0,0,0.6);
}
.hero__badge .stars { font-size: 0.82rem; }
.hero__badge b { font-family: var(--ff-display); font-weight: 900; font-size: 1.1rem; color: var(--on-dark); }
.hero__badge span:last-child { font-size: 0.78rem; color: var(--on-dark-mid); white-space: nowrap; }
@media (max-width: 860px) { .hero__badge { display: none; } }
.hero__row { position: relative; }
.hero__in { position: relative; z-index: 1; display: grid; gap: 1.35rem; align-content: center; max-width: 42rem; padding-block: clamp(3rem, 8vw, 5.75rem); }
.hero .label { color: var(--green-hi); }
.hero h1 { font-size: var(--fs-h1); font-weight: 900; letter-spacing: -0.03em; }
.hero h1 em { font-style: normal; color: var(--green-hi); }
.hero__sub { color: var(--on-dark-mid); font-size: var(--fs-lead); max-width: 40ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 0.4rem; }
.hero__proof { display: flex; align-items: center; gap: 0.6rem; font-size: 0.88rem; color: var(--on-dark-mid); flex-wrap: wrap; }
.hero__proof b { color: var(--on-dark); font-family: var(--ff-display); font-weight: 800; }
.stars { color: var(--star); letter-spacing: 0.1em; }
.hero__chips { position: relative; z-index: 1; border-top: 1px solid rgba(255,255,255,0.12); display: flex; flex-wrap: wrap; gap: 0.4rem 2.2rem; padding-block: 0.9rem; font-size: 0.82rem; letter-spacing: 0.02em; color: var(--on-dark-mid); }
.hero__chips span { display: inline-flex; align-items: center; gap: 0.55em; }
.hero__chips span::before { content: ""; width: 6px; height: 6px; background: var(--green-hi); border-radius: 50%; }

/* ---------- page hero (sub-pages) ---------- */
.phero { background: var(--dark); color: var(--on-dark); border-bottom: 1px solid rgba(255,255,255,0.1); }
.crumb { font-size: 0.78rem; color: var(--on-dark-mid); display: flex; gap: 0.45em; flex-wrap: wrap; }
.crumb a { color: var(--on-dark-mid); text-decoration: none; }
.crumb a:hover { color: var(--on-dark); }
.phero .label { color: var(--green-hi); }
.phero h1 { font-size: clamp(1.95rem, 4vw, 3rem); font-weight: 800; letter-spacing: -0.02em; line-height: 1.14; }
.phero__actions { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 0.3rem; }

/* legal / utility pages — single column */
.phero__in { padding: clamp(2.8rem, 6vw, 4.4rem) 0 clamp(1.4rem, 3.5vw, 2.1rem); display: grid; gap: clamp(1.1rem, 2.2vw, 1.6rem); max-width: 46rem; }
.phero__in .crumb { margin-bottom: clamp(0.3rem, 1.6vw, 0.85rem); }

.phero__lead { color: var(--on-dark-mid); font-size: var(--fs-lead); line-height: 1.64; max-width: 46ch; }

/* service pages — full-bleed photo behind the text */
.phero--photo { position: relative; overflow: hidden; }
.phero--photo .phero__bg { position: absolute; inset: 0; }
.phero--photo .phero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: 62% center; display: block; }
.phero--photo .phero__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(55% 70% at 92% 8%, rgba(47,158,68,0.16), transparent 60%),
    linear-gradient(90deg, rgba(14,19,16,0.95) 0%, rgba(14,19,16,0.86) 40%, rgba(14,19,16,0.55) 74%, rgba(14,19,16,0.38) 100%),
    linear-gradient(0deg, rgba(14,19,16,0.82) 0%, rgba(14,19,16,0.2) 42%, transparent 68%);
}
.phero--photo .phero__in {
  position: relative; z-index: 1; max-width: var(--maxw); justify-items: start;
  padding: clamp(2.6rem, 5.5vw, 4.2rem) 0 clamp(1.5rem, 3.2vw, 2.1rem);
  gap: clamp(1.05rem, 2.2vw, 1.55rem);
}
.phero--photo .phero__in h1 { max-width: 20ch; }
.phero--photo .phero__lead { max-width: 42ch; }
.phero--photo .phero__in ~ .wrap { position: relative; z-index: 1; }
.phero--photo .phero__in > .crumb { margin-bottom: clamp(0.3rem, 1.6vw, 0.9rem); }

/* ---------- stats (graphic hairline grid) ---------- */
.stats { background: var(--dark); color: var(--on-dark); }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,0.12); }
.stat { background: var(--dark); padding: clamp(1.4rem, 3vw, 2.2rem) clamp(1.1rem, 2.2vw, 1.6rem); display: grid; gap: 0.5rem; align-content: start; }
.stat b { display: flex; align-items: baseline; gap: 0.1em; font-family: var(--ff-display); font-weight: 900; font-size: clamp(2.6rem, 5.4vw, 4.2rem); letter-spacing: -0.038em; line-height: 0.9; font-variant-numeric: tabular-nums; text-shadow: 0 0 34px rgba(85,204,109,0.32); }
.stat b .u { color: var(--green-hi); font-size: 0.4em; letter-spacing: 0; text-shadow: none; }
.stat span { display: block; font-size: 0.78rem; color: var(--on-dark-mid); letter-spacing: 0.01em; max-width: 20ch; }
.stats__dots { display: none; justify-content: center; gap: 0.5rem; padding-top: 1rem; }
.stats__dots span { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.25); transition: background .2s ease, transform .2s ease; }
.stats__dots span.is-active { background: var(--green-hi); transform: scale(1.35); }
@media (max-width: 720px) { .stats__grid { grid-template-columns: 1fr 1fr; } }

/* ---------- section scaffold ---------- */
section { padding-block: clamp(2.75rem, 5.5vw, 4.75rem); }
.sec--alt { background: var(--bg-2); border-block: 1px solid var(--line); }
.sec--dark { position: relative; background: var(--dark); color: var(--on-dark); overflow: hidden; }
.sec--dark .label { color: var(--green-hi); }
.sec--dark::before, .sec--dark::after,
.cta-band::before, .cta-band::after {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
}
.sec--dark::before, .cta-band::before {
  background:
    radial-gradient(60% 75% at 84% 0%, rgba(47,158,68,0.16), transparent 60%),
    radial-gradient(50% 65% at 8% 100%, rgba(47,158,68,0.1), transparent 65%);
}
.sec--dark::after, .cta-band::after {
  opacity: 0.05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.sec--dark > .wrap, .cta-band > .wrap { position: relative; z-index: 1; }
.head { display: grid; gap: 0.7rem; max-width: 54ch; margin-bottom: clamp(1.4rem, 3vw, 2.1rem); }
.head h2 { font-size: var(--fs-h2); }
.head p { color: var(--mid); font-size: var(--fs-lead); }
.sec--dark .head p { color: var(--on-dark-mid); }

/* header variant — numbered "01 —" step marker above the title */
.head__num { font-family: var(--ff-display); font-weight: 900; font-size: 0.95rem; letter-spacing: 0.16em; color: var(--green); }
.sec--dark .head__num { color: var(--green-hi); }

/* header variant — centered block (used on the home FAQ) */
.head--center { max-width: 46ch; margin-inline: auto; justify-items: center; text-align: center; }

/* thin context strip — replaces a full "how it works" block on secondary pages */
/* context strip — sits inside the dark hero, at its foot */
.strip { display: flex; flex-wrap: wrap; gap: 0.6rem 1.9rem; align-items: center; border-top: 1px solid rgba(255,255,255,0.12); padding: clamp(1.1rem, 2.8vw, 1.6rem) 0 clamp(1.2rem, 3vw, 1.8rem); font-size: 0.82rem; color: var(--on-dark-mid); }
.strip span { display: inline-flex; align-items: center; gap: 0.55em; }
.strip span::before { content: ""; flex: none; width: 6px; height: 6px; border-radius: 50%; background: var(--green-hi); }

/* discrete "see also" line near the footer — replaces the 3 big cross-link cards */
.also { display: flex; flex-wrap: wrap; gap: 0.5rem 1.6rem; align-items: baseline; border-top: 1px solid var(--line); padding-top: 1.6rem; font-size: 0.92rem; color: var(--mid); }
.also > span { font-weight: 600; color: var(--ink); }
.also a { text-decoration: none; font-weight: 600; color: var(--ink); display: inline-flex; align-items: baseline; gap: 0.4em; }
.also a::before { content: "\2192"; color: var(--green); }
.also a:hover { color: var(--green-ink); }

/* ---------- services ---------- */
.svc { position: relative; display: flex; flex-direction: column; border: 1.5px solid var(--line-strong); background: var(--bg); border-radius: 16px; overflow: hidden; text-decoration: none; color: inherit; transition: transform .22s ease, box-shadow .22s ease, border-color .18s ease; }
.svc:hover { border-color: var(--green); transform: translateY(-6px) scale(1.012); box-shadow: 0 0 0 3px rgba(47,158,68,0.18), 0 0 42px -6px rgba(47,158,68,0.4), 0 30px 60px -22px rgba(20,26,22,0.5); z-index: 3; }
@media (prefers-reduced-motion: reduce) { .svc:hover { transform: none; } }
.svc__img { aspect-ratio: 3 / 2; background: var(--bg-2); overflow: hidden; }
.svc__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.svc:hover .svc__img img { transform: scale(1.05); }
.svc__body { padding: 1.1rem 1.2rem 1.3rem; display: grid; gap: 0.45rem; align-content: start; flex: 1; }
.svc__body h3 { font-size: 1.1rem; font-weight: 800; }
.svc__body p { font-size: 0.9rem; color: var(--mid); }
.svc__more { margin-top: auto; font-size: 0.76rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--green-ink); }
.svc-extra { margin-top: 1.1rem; font-size: 0.9rem; color: var(--mid); }

/* bento layout (home): one tall lead card + three compact rows */
.svc-bento { display: grid; grid-template-columns: 1.32fr 1fr; gap: 1.1rem; }
.svc-bento .svc--lead { grid-row: span 3; }
.svc-bento .svc--lead .svc__img { aspect-ratio: 4 / 3; }
.svc-bento .svc--lead .svc__body { padding: 1.3rem 1.4rem 1.5rem; }
.svc-bento .svc--lead .svc__body h3 { font-size: clamp(1.35rem, 2.4vw, 1.75rem); }
.svc-bento .svc--lead .svc__body p { font-size: 0.96rem; }
.svc-bento .svc--row { flex-direction: row; align-items: stretch; }
.svc-bento .svc--row .svc__img { flex: none; width: 40%; aspect-ratio: auto; }
.svc-bento .svc--row .svc__body { padding: 1rem 1.2rem; gap: 0.3rem; }
.svc-bento .svc--row .svc__body h3 { font-size: 1rem; }
.svc-bento .svc--row .svc__body p { font-size: 0.84rem; }
@media (max-width: 860px) {
  .svc-bento { grid-template-columns: 1fr; }
  .svc-bento .svc--lead { grid-row: auto; }
  .svc-bento .svc--row { flex-direction: column; }
  .svc-bento .svc--row .svc__img { width: 100%; aspect-ratio: 3 / 2; }
}
/* phones: swipeable slider instead of a tall stack */
@media (max-width: 640px) {
  .svc-bento {
    display: flex; grid-template-columns: none; align-items: flex-start;
    gap: 0.85rem; padding-bottom: 0.4rem;
    overflow-x: auto; overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .svc-bento::-webkit-scrollbar { display: none; }
  .svc-bento > .svc { flex: 0 0 86%; scroll-snap-align: start; }
  .svc-bento > .svc:hover { transform: none; box-shadow: none; z-index: auto; }
  .svc-bento .svc--row { flex-direction: column; }
  .svc-bento .svc--row .svc__img,
  .svc-bento .svc--lead .svc__img { width: 100%; aspect-ratio: 16 / 10; }
  .svc-bento .svc--lead .svc__body { padding: 1.1rem 1.2rem 1.3rem; }
}

/* ---------- why / split ---------- */
.why { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(1.5rem, 3.5vw, 2.75rem); align-items: center; }
.why__media, .split__media {
  position: relative; overflow: hidden; border-radius: 5px; aspect-ratio: 4 / 3;
  box-shadow: 0 2px 4px rgba(20,26,22,0.05), 0 34px 60px -30px rgba(20,26,22,0.42), inset 0 0 0 1px rgba(20,26,22,0.07);
}
/* subtle inner vignette so the photo has soft edges instead of a hard rectangle */
.why__media::after, .split__media::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; border-radius: inherit;
  background: radial-gradient(120% 120% at 50% 45%, transparent 55%, rgba(14,19,16,0.28) 100%);
}
.why__media img, .split__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.why__text { display: grid; gap: 1rem; }
.why__text p { color: var(--mid); }
.why__text strong { color: var(--ink); }
.guarantees { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; margin-top: clamp(1.3rem, 2.8vw, 2rem); }
.g { border-top: 3px solid var(--green); padding-top: 1rem; display: grid; gap: 0.45rem; }
.g h3 { font-size: 1.02rem; font-weight: 800; }
.g p { font-size: 0.88rem; color: var(--mid); }
@media (max-width: 860px) {
  .why { grid-template-columns: 1fr; gap: 1.9rem; }
  .why__text { gap: 1.25rem; }
  .guarantees { grid-template-columns: 1fr; gap: 1.6rem; margin-top: clamp(1.9rem, 6vw, 2.6rem); }
  .g { padding-top: 1.2rem; }
}

.split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(1.5rem, 3.5vw, 2.75rem); align-items: center; }
.split--rev .split__media { order: 2; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } .split--rev .split__media { order: -1; } .prose { gap: 1.15rem; } }

/* ---------- prose ---------- */
.prose { display: grid; gap: 0.95rem; max-width: 68ch; }
.prose p { color: var(--mid); }
.prose strong { color: var(--ink); }
.prose h2 { font-size: var(--fs-h2); }
.prose h3 { font-size: var(--fs-h3); font-weight: 800; margin-top: 0.6rem; }
.prose ul { margin: 0.2rem 0 0; padding: 0; list-style: none; display: grid; gap: 0.5rem; }
.prose ul li { padding-left: 1.4em; position: relative; color: var(--mid); }
.prose ul li::before { content: ""; position: absolute; left: 0; top: 0.6em; width: 7px; height: 7px; background: var(--green); border-radius: 50%; }

/* ---------- process ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.15rem; counter-reset: s; }
.step { display: grid; gap: 0.5rem; align-content: start; padding-top: 1rem; border-top: 1px solid var(--line-strong); position: relative; }
.step::before { counter-increment: s; content: counter(s, decimal-leading-zero); font-family: var(--ff-display); font-weight: 900; font-size: 1.05rem; color: var(--green); }
.step h3 { font-size: 1.05rem; font-weight: 800; }
.step p { font-size: 0.88rem; color: var(--mid); }
@media (max-width: 860px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .steps { grid-template-columns: 1fr; } }

/* ---------- ceramic (dark band) ---------- */
.ceramic { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 3.5vw, 3rem); align-items: center; }
.ceramic__media { position: relative; border-radius: 5px; overflow: hidden; aspect-ratio: 5 / 4; box-shadow: 0 40px 70px -34px rgba(0,0,0,0.55), inset 0 0 0 1px rgba(255,255,255,0.08); }
.ceramic__media::after { content: ""; position: absolute; inset: 0; pointer-events: none; border-radius: inherit; background: radial-gradient(120% 120% at 50% 45%, transparent 52%, rgba(14,19,16,0.5) 100%); }
.ceramic__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ceramic__text { display: grid; gap: 1.1rem; }
.ceramic__text h2 { font-size: var(--fs-h2); }
.ceramic__text > p { color: var(--on-dark-mid); font-size: var(--fs-lead); }
.ceramic__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.7rem; }
.ceramic__list li { display: flex; gap: 0.7em; font-size: 0.95rem; color: var(--on-dark); }
.ceramic__list li::before { content: ""; flex: none; width: 8px; height: 8px; margin-top: 0.55em; background: var(--green-hi); border-radius: 50%; }
.ceramic__badge { display: flex; align-items: center; gap: 1rem; padding-top: 0.4rem; }
.ceramic__badge img { height: 46px; width: auto; }
.ceramic__badge span { font-size: 0.82rem; color: var(--on-dark-mid); }
@media (max-width: 860px) { .ceramic { grid-template-columns: 1fr; } .ceramic__media { order: -1; aspect-ratio: 16/10; } }

/* ---------- tarifs ---------- */
.price-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.price { border: 1px solid var(--line); border-radius: 3px; background: var(--bg); padding: clamp(1.5rem, 3vw, 2.1rem); display: grid; gap: 1rem; align-content: start; }
.price--feature { border-color: var(--green); box-shadow: 0 0 0 1px var(--green), 0 0 36px -10px rgba(47,158,68,0.4); }
.price__top { display: grid; gap: 0.3rem; }
.price__name { font-family: var(--ff-display); font-weight: 800; font-size: 1.2rem; }
.price__meta { font-size: 0.78rem; letter-spacing: 0.06em; color: var(--mid); text-transform: uppercase; }
.price__rows { display: grid; border-top: 1px solid var(--line); }
.price__row { display: flex; justify-content: space-between; gap: 1rem; padding-block: 0.62rem; border-bottom: 1px solid var(--line); font-size: 0.92rem; }
.price__row b { font-family: var(--ff-display); font-weight: 800; font-variant-numeric: tabular-nums; }
.price__list ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 0.42rem; font-size: 0.88rem; color: var(--mid); }
.price__list li { padding-left: 1.3em; position: relative; }
.price__list li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 800; }
.options { margin-top: 1rem; border: 1px solid var(--line); border-radius: 3px; background: var(--bg); padding: clamp(1.1rem, 2.6vw, 1.6rem); }
.options h3 { font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--mid); margin-bottom: 0.9rem; font-family: var(--ff-body); font-weight: 700; }
.options ul { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 0.4rem 1.6rem; }
.options li { display: flex; justify-content: space-between; gap: 1rem; font-size: 0.9rem; border-bottom: 1px dashed var(--line); padding-block: 0.42rem; }
.options li b { font-family: var(--ff-display); font-weight: 800; font-variant-numeric: tabular-nums; white-space: nowrap; }
.price-note { margin-top: 0.8rem; font-size: 0.82rem; color: var(--mid); }
@media (max-width: 720px) { .price-grid { grid-template-columns: 1fr; } }

/* ---------- zone ---------- */
.zone { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 3.5vw, 2.75rem); align-items: center; }
.zone__map { width: 100%; min-height: 340px; height: 100%; border: 1px solid var(--line); border-radius: 3px; filter: grayscale(0.35) contrast(1.03); }
.zone__text { display: grid; gap: 1.1rem; }
.zone__text p { color: var(--mid); }
.communes { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.communes span { font-size: 0.82rem; border: 1px solid var(--line-strong); border-radius: 2px; padding: 0.35rem 0.72rem; background: var(--bg); }
@media (max-width: 820px) { .zone { grid-template-columns: 1fr; } .zone__map { min-height: 260px; } }

/* ---------- avis ---------- */
.rating-head {
  position: relative; overflow: hidden; display: flex; align-items: center; gap: 1.1rem; flex-wrap: wrap;
  margin-bottom: clamp(1.6rem, 3.5vw, 2.4rem);
  padding: clamp(1rem, 2.4vw, 1.4rem) clamp(1.2rem, 3vw, 1.7rem);
  background: var(--bg-2); border: 1px solid var(--line); border-radius: 18px;
}
.rating-head::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(60% 170% at 2% 50%, rgba(47,158,68,0.15), transparent 70%);
}
.rating-head .big, .rating-head .stars, .rating-head .src { position: relative; z-index: 1; }
.rating-head .big { font-family: var(--ff-display); font-weight: 900; font-size: clamp(3.2rem, 6vw, 4.8rem); line-height: 1; letter-spacing: -0.035em; font-variant-numeric: tabular-nums; text-shadow: 0 0 38px rgba(47,158,68,0.22); }
.rating-head .stars { font-size: 1.35rem; }
.rating-head .src { font-size: 0.85rem; color: var(--mid); }
/* reviews = a slider: 3 cards in view, the rest behind a visible track */
.reviews {
  --rev-gap: clamp(1.1rem, 2vw, 1.7rem);
  display: flex; align-items: flex-start; gap: var(--rev-gap);
  overflow-x: auto; overscroll-behavior-x: contain;
  scroll-snap-type: x proximity; -webkit-overflow-scrolling: touch;
  padding-bottom: 0.9rem;
  scrollbar-width: thin; scrollbar-color: var(--green) var(--line);
}
.reviews::-webkit-scrollbar { height: 6px; }
.reviews::-webkit-scrollbar-track { background: var(--line); border-radius: 999px; }
.reviews::-webkit-scrollbar-thumb { background: var(--green); border-radius: 999px; }
.reviews { padding-top: 0.5rem; }
.reviews > .review { flex: 0 0 30%; scroll-snap-align: start; }
.review {
  position: relative; overflow: hidden; margin: 0; border: 1px solid var(--line); border-radius: 14px;
  padding: clamp(1.5rem, 2.6vw, 2rem); display: grid; gap: 1.1rem; align-content: start; background: var(--bg);
  transition: transform .22s ease, box-shadow .22s ease, border-color .18s ease;
}
.review::before {
  content: "\201C"; position: absolute; top: -0.5rem; right: 0.9rem; z-index: 0; pointer-events: none;
  font-family: var(--ff-display); font-weight: 900; font-size: 4.6rem; line-height: 1; color: var(--green); opacity: 0.1;
}
.review:hover { border-color: var(--green); transform: translateY(-4px); box-shadow: 0 0 0 3px rgba(47,158,68,0.14), 0 26px 48px -26px rgba(20,26,22,0.38); }
@media (prefers-reduced-motion: reduce) { .review:hover { transform: none; } }
.review .stars, .review p, .review cite { position: relative; z-index: 1; }
.review .stars { font-size: 0.95rem; }
.review p { font-size: 0.97rem; line-height: 1.68; }
.review cite { font-style: normal; font-size: 0.8rem; font-weight: 700; color: var(--mid); letter-spacing: 0.03em; padding-top: 0.2rem; border-top: 1px solid var(--line); }
@media (max-width: 900px) { .reviews > .review { flex-basis: 45%; } }
@media (max-width: 640px) {
  .reviews { scroll-snap-type: x mandatory; scrollbar-width: none; padding-bottom: 0.4rem; }
  .reviews::-webkit-scrollbar { display: none; }
  .reviews > .review { flex-basis: 87%; }
}

/* ---------- faq ---------- */
.faq { display: grid; max-width: 74ch; border-top: 1px solid var(--line); }
.faq--center { margin-inline: auto; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; padding: 0.95rem 0; font-family: var(--ff-display); font-weight: 800; font-size: 1.02rem; list-style: none; display: flex; justify-content: space-between; gap: 1rem; align-items: baseline; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--green); font-weight: 800; flex: none; }
.faq details[open] summary::after { content: "\2013"; }
.faq details > p { padding: 0 0 1rem; color: var(--mid); max-width: 66ch; }

/* ---------- cta band ---------- */
.cta-band { position: relative; background: var(--dark); color: var(--on-dark); overflow: hidden; }
.cta-band__in { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.2rem 2rem; padding-block: clamp(1.9rem, 4vw, 2.8rem); }
.cta-band h2 { font-size: clamp(1.5rem, 3vw, 2.05rem); }
.cta-band p { color: var(--on-dark-mid); margin-top: 0.35rem; font-size: 0.95rem; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 0.7rem; }

/* ---------- contact page (form + plain details, no boxes) ---------- */
.contact-grid { display: grid; grid-template-columns: 1.4fr 0.85fr; gap: clamp(1.8rem, 4vw, 3.2rem); align-items: start; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }

.cform { display: grid; gap: 1rem; max-width: 40rem; }
.cform__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 560px) { .cform__row { grid-template-columns: 1fr; } }
.cform__hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.field { display: grid; gap: 0.42rem; }
.field > span { font-size: 0.76rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--mid); }
.field input, .field select, .field textarea {
  font: inherit; color: var(--ink); width: 100%;
  background: var(--bg); border: 1px solid var(--line-strong); border-radius: 12px;
  padding: 0.8rem 1rem; transition: border-color .15s ease, box-shadow .15s ease;
}
.field textarea { resize: vertical; min-height: 7rem; }
.field select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2359635c' d='M1 1l5 5 5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.4rem; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(47,158,68,0.14); }
.cform > .btn { justify-self: start; margin-top: 0.3rem; }
.cform__status { font-size: 0.92rem; font-weight: 600; margin-top: 0.2rem; }
.cform__status:empty { display: none; }
.cform__status.is-ok { color: var(--green-ink); }
.cform__status.is-err { color: #c0392b; }
.cform__status.is-info { color: var(--mid); }
.cform__legal { font-size: 0.78rem; color: var(--mid); max-width: 46ch; }

.contact-side { display: grid; gap: 0; align-content: start; }
.cs { display: grid; gap: 0.3rem; padding-block: 0.9rem; border-top: 1px solid var(--line); }
.cs:first-child { border-top: 0; padding-top: 0; }
.cs .k { font-size: 0.74rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green-ink); }
.cs p { font-size: 0.92rem; color: var(--mid); }
.cs__v { font-family: var(--ff-display); font-weight: 800; font-size: 1.15rem; text-decoration: none; color: var(--ink); width: max-content; border-bottom: 1px solid var(--line-strong); padding-bottom: 1px; }
.cs__v:hover { border-color: var(--green); }
.cs--badge { display: flex; gap: 0.9rem; align-items: flex-start; }
.cs--badge img { height: 30px; width: auto; margin-top: 0.15rem; flex: none; }

/* ---------- footer ---------- */
footer { background: var(--dark); color: var(--on-dark-mid); padding-block: 2.1rem; border-top: 1px solid rgba(255,255,255,0.1); }
.foot { display: grid; gap: 1.1rem; }
.foot__top { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem 2rem; }
.foot__top img { height: 46px; width: auto; }
.foot__nav { display: flex; flex-wrap: wrap; gap: 1.3rem; font-size: 0.85rem; }
.foot__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.6rem 2rem; align-items: center; font-size: 0.8rem; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.1rem; }
.foot a { color: var(--on-dark); text-decoration: none; }
.foot a:hover { color: #fff; }

/* ---------- mobile call FAB (detached bubble, bottom-right) ---------- */
.call-fab {
  display: none; position: fixed; right: 0.9rem; bottom: 0.9rem; z-index: 50;
  align-items: center; gap: 0.5em;
  background: var(--green); color: #fff; text-decoration: none;
  font-family: var(--ff-display); font-weight: 800; font-size: 0.95rem; letter-spacing: 0.02em;
  padding: 0.85rem 1.25rem; border-radius: 999px;
  box-shadow: 0 10px 26px -6px rgba(0,0,0,0.4), 0 0 0 4px rgba(47,158,68,0.16);
}
.call-fab svg { width: 17px; height: 17px; fill: currentColor; }
.call-fab:active { transform: scale(0.97); }
.call-fab.is-hidden { display: none; }
@media (max-width: 640px) { .call-fab { display: inline-flex; } }
@media (prefers-reduced-motion: reduce) { .call-fab:active { transform: none; } }

/* ---------- splash screen (home) ---------- */
#splash {
  position: fixed; inset: 0; z-index: 120; display: grid; place-items: center;
  background: #0e1310 url("splatchscreen.jpg") center / cover no-repeat;
  animation: splashOut .55s ease 2s forwards;
}
#splash::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(125% 90% at 50% 42%, rgba(14,19,16,0.34), rgba(14,19,16,0.92));
}
.splash__logo {
  position: relative; width: min(56vw, 288px); height: auto;
  filter: drop-shadow(0 14px 44px rgba(0,0,0,0.5));
  animation: splashLogo .8s cubic-bezier(.2,.7,.2,1) both;
}
#splash.is-gone { opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .5s ease, visibility 0s linear .5s; }
@keyframes splashLogo { from { opacity: 0; transform: translateY(10px) scale(.96); } to { opacity: 1; transform: none; } }
@keyframes splashOut { to { opacity: 0; visibility: hidden; pointer-events: none; } }
@media (prefers-reduced-motion: reduce) { #splash { animation-duration: .01s; animation-delay: .3s; } .splash__logo { animation: none; } }

/* ---------- statement (impact line) ---------- */
.statement { background: var(--bg-2); border-block: 1px solid var(--line); }
.statement__in { padding-block: clamp(2rem, 4vw, 3rem); display: grid; gap: 1.15rem; }
.statement p { font-family: var(--ff-display); font-weight: 800; font-size: clamp(1.8rem, 3.6vw, 2.9rem); line-height: 1.12; letter-spacing: -0.025em; max-width: 26ch; text-wrap: balance; }
.statement p em { font-style: normal; color: var(--green-ink); box-shadow: inset 0 -0.14em 0 rgba(47,158,68,0.22); }
.statement span { font-size: var(--fs-lead); color: var(--mid); max-width: 46ch; }

/* ---------- price simulator ---------- */
.estim { display: grid; grid-template-columns: 1.5fr 1fr; gap: clamp(1.5rem, 3vw, 2.6rem); align-items: start; }
.estim__fields { display: grid; gap: 0.9rem; }

/* accordion steps: one group open at a time, pick → advance, click a past step to go back */
.estim__group { margin: 0; padding: 0; border: 1px solid var(--line); border-radius: 16px; background: var(--bg); overflow: hidden; }
.estim__ghead { display: flex; align-items: center; gap: 0.8rem; width: 100%; padding: 1rem 1.25rem; cursor: pointer; user-select: none; -webkit-tap-highlight-color: transparent; }
.estim__ghead:focus-visible { outline: 2px solid var(--green-hi); outline-offset: -2px; }
.estim__gtitle { flex: none; font-family: var(--ff-body); font-weight: 700; font-size: 0.76rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mid); }
.estim__group.is-open .estim__gtitle { color: var(--green-ink); }
.estim__gsummary { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; text-align: right; font-size: 0.92rem; font-weight: 600; color: var(--ink); }
.estim__gchev { flex: none; color: var(--green); font-size: 1.2rem; line-height: 1; transition: transform .2s ease; }
.estim__group.is-open .estim__gchev { transform: rotate(90deg); }
.estim__group.is-open .estim__ghead { border-bottom: 1px solid var(--line); }
.estim__gbody { display: grid; gap: 0.55rem; padding: 1rem 1.25rem 1.25rem; }
.estim__group:not(.is-open) .estim__gbody { display: none; }
.opt { display: flex; align-items: center; gap: 0.75rem; background: var(--bg); border: 1px solid var(--line); border-radius: 999px; padding: 0.72rem 1.15rem; cursor: pointer; font-size: 0.92rem; transition: border-color .15s ease, box-shadow .15s ease; }
.opt:hover { border-color: var(--line-strong); }
.opt input { accent-color: var(--green); width: 1.05rem; height: 1.05rem; flex: none; margin: 0; }
.opt span { flex: 1; }
.opt b { font-family: var(--ff-display); font-weight: 800; font-variant-numeric: tabular-nums; color: var(--mid); white-space: nowrap; }
.opt:has(input:checked) { border-color: var(--green); box-shadow: 0 0 0 1px var(--green); }
.opt:has(input:checked) b { color: var(--green-ink); }
.estim__result {
  position: sticky; top: 6rem; overflow: hidden; background: var(--dark); color: var(--on-dark);
  border-radius: 20px; padding: clamp(1.7rem, 3vw, 2.3rem); display: grid; gap: 0.75rem;
  box-shadow: 0 34px 64px -28px rgba(20,26,22,0.55), 0 0 0 1px rgba(255,255,255,0.06) inset;
}
.estim__result::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(75% 90% at 100% 0%, rgba(47,158,68,0.24), transparent 62%);
}
.estim__result > * { position: relative; z-index: 1; }
.estim__rlabel { font-family: ui-monospace, "SFMono-Regular", "Menlo", "Consolas", monospace; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--green-hi); }
.estim__price { font-family: var(--ff-display); font-weight: 900; font-size: clamp(3.1rem, 6.4vw, 4.5rem); line-height: 1; letter-spacing: -0.032em; font-variant-numeric: tabular-nums; text-shadow: 0 0 46px rgba(85,204,109,0.4); }
.estim__price small { font-size: 0.9rem; font-weight: 600; color: var(--on-dark-mid); letter-spacing: 0; display: block; margin-top: 0.25rem; font-family: var(--ff-body); text-shadow: none; }
.estim__note { font-size: 0.82rem; color: var(--on-dark-mid); }
.estim__result .btn { margin-top: 0.5rem; justify-content: center; }
.estim__tel { font-size: 0.85rem; color: var(--on-dark-mid); text-decoration: none; text-align: center; }
.estim__tel:hover { color: var(--on-dark); }
@media (max-width: 860px) { .estim { grid-template-columns: 1fr; } .estim__result { position: static; } }

/* ---------- mobile: turn the remaining card rows into sliders ---------- */
@media (max-width: 640px) {
  .steps, .price-grid, .guarantees {
    display: flex; grid-template-columns: none; align-items: stretch;
    gap: 0.9rem; padding-bottom: 0.4rem;
    overflow-x: auto; overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .steps::-webkit-scrollbar, .price-grid::-webkit-scrollbar, .guarantees::-webkit-scrollbar { display: none; }
  .steps > .step { flex: 0 0 78%; scroll-snap-align: start; }
  .price-grid > .price { flex: 0 0 88%; scroll-snap-align: start; }
  .guarantees > .g { flex: 0 0 78%; scroll-snap-align: start; }

  /* reviews & service cards: equal height, text capped so no card is left with a big empty gap */
  .reviews { align-items: stretch; }
  .review p { display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden; }
  .svc-bento { align-items: stretch; }
  .svc-bento .svc--lead .svc__body h3 { font-size: 1rem; }
  .svc-bento .svc__body p { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

  /* stats: one metric at a time, auto-advances on its own (see app.js) */
  .stats__grid {
    display: flex; grid-template-columns: none;
    overflow-x: auto; scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch; scrollbar-width: none;
  }
  .stats__grid::-webkit-scrollbar { display: none; }
  .stats__grid > .stat { flex: 0 0 100%; scroll-snap-align: start; }
  .stats__dots { display: flex; }

  /* options: a compact divided list instead of five separate pills — mobile only */
  .estim__group--list .estim__gbody { gap: 0; }
  .estim__group--list .opt { border: 0; border-radius: 0; border-bottom: 1px solid var(--line); padding: 0.7rem 0.1rem; background: transparent; }
  .estim__group--list .opt:last-child { border-bottom: 0; }
  .estim__group--list .opt:has(input:checked) { box-shadow: none; }
  .estim__group--list .opt:has(input:checked) span { color: var(--green-ink); font-weight: 600; }
}
