/* =========================================================================
   Éclat Pau — design system
   Palette : Béarn slate ink + glacial aqua (clarity) + ochre (reserved for
   the tax-credit signal only). Type: Bricolage Grotesque / Instrument Sans /
   IBM Plex Mono for data. Signature: the squeegee wipe.
   ========================================================================= */

:root {
  --ink: #0d1f24;
  --ink-90: #12282e;
  --slate: #1b3a40;
  --slate-soft: #2c565c;
  --aqua: #35d6bc;
  --aqua-deep: #17a389;
  --aqua-wash: #e2f6f2;
  --eau: #e7edec;
  --paper: #f6f8f7;
  --white: #ffffff;
  --ochre: #e8a33d;
  --line: rgba(13, 31, 36, .12);
  --line-dark: rgba(255, 255, 255, .14);

  --display: "Bricolage Grotesque", "Arial Narrow", sans-serif;
  --body: "Instrument Sans", system-ui, -apple-system, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;

  --wrap: 1200px;
  --gut: clamp(18px, 5vw, 40px);
  --r: 4px;
  --r-lg: 14px;
  --bar-h: 68px;

  --ease: cubic-bezier(.22, .61, .36, 1);
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--slate);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, video { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

:focus-visible {
  outline: 3px solid var(--aqua-deep);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--ink); color: #fff; padding: 12px 18px;
}
.skip:focus { left: 8px; top: 8px; }

/* ------------------------------------------------------------- typography */

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -.03em;
  line-height: .98;
  margin: 0 0 .5em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.1rem, 6vw, 4.1rem); font-weight: 800; }
h2 { font-size: clamp(1.9rem, 4.6vw, 3.1rem); }
h3 { font-size: clamp(1.25rem, 2.4vw, 1.6rem); letter-spacing: -.02em; }
h4 { font-size: 1.08rem; letter-spacing: -.01em; }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: clamp(1.05rem, 2.1vw, 1.32rem);
  line-height: 1.55;
  color: var(--slate-soft);
  max-width: 60ch;
}

/* The eyebrow encodes place, not decoration: it is always a location or a
   category label, set in mono so it reads as metadata. */
.eyebrow {
  flex-wrap: wrap;
  font-family: var(--mono);
  font-size: .74rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--aqua-deep);
  margin: 0 0 1.1em;
  display: flex;
  align-items: center;
  gap: .7em;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--aqua-deep);
  flex: none;
}
.on-dark .eyebrow, .dark .eyebrow { color: var(--aqua); }
.on-dark .eyebrow::before, .dark .eyebrow::before { background: var(--aqua); }

/* ---------------------------------------------------------------- layout */

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gut); }
.sect { padding-block: clamp(56px, 9vw, 116px); }
.sect--tight { padding-block: clamp(40px, 6vw, 72px); }
.dark { background: var(--ink); color: rgba(255, 255, 255, .8); }
.dark h1, .dark h2, .dark h3, .dark h4 { color: #fff; }
.wash { background: var(--paper); }
.aqua-wash { background: var(--aqua-wash); }

.grid { display: grid; gap: clamp(20px, 3vw, 34px); }
.g-2 { grid-template-columns: repeat(2, 1fr); }
.g-3 { grid-template-columns: repeat(3, 1fr); }
.g-4 { grid-template-columns: repeat(4, 1fr); }

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
}

.sect-head { max-width: 66ch; margin-bottom: clamp(30px, 4vw, 56px); }

@media (max-width: 900px) {
  .g-3, .g-4 { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .g-2, .g-3, .g-4 { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------- buttons */

.btn {
  display: inline-flex;
  align-items: center;
  gap: .6em;
  padding: 15px 26px;
  border: 1px solid transparent;
  border-radius: var(--r);
  font-weight: 600;
  font-size: .97rem;
  letter-spacing: -.01em;
  transition: transform .18s var(--ease), background .18s, color .18s, border-color .18s;
  will-change: transform;
}
.btn .ico { flex: none; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary { background: var(--aqua); color: var(--ink); }
.btn--primary:hover { background: #4ce4cb; }
.btn--ink { background: var(--ink); color: #fff; }
.btn--ink:hover { background: var(--slate); }
.btn--ghost { border-color: var(--line); color: var(--ink); }
.btn--ghost:hover { border-color: var(--ink); }
.dark .btn--ghost { border-color: var(--line-dark); color: #fff; }
.dark .btn--ghost:hover { border-color: #fff; }
/* Over a photograph the border alone is not enough — a faint scrim keeps the
   label legible whatever the frame behind it. */
.hero .btn--ghost {
  border-color: rgba(255, 255, 255, .45); color: #fff;
  background: rgba(11, 18, 32, .32); backdrop-filter: blur(6px);
}
.hero .btn--ghost:hover { border-color: #fff; background: rgba(11, 18, 32, .5); }
.btn--block { width: 100%; justify-content: center; }

.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }

/* -------------------------------------------------------------- topbar */

.topbar {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line);
  transition: background .25s;
}
.topbar__in {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; height: var(--bar-h);
}
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--display); font-weight: 800; font-size: 1.22rem; letter-spacing: -.035em; color: var(--ink); }
.brand__mark {
  width: 26px; height: 26px; flex: none;
  background: var(--ink);
  position: relative; overflow: hidden;
  border-radius: 3px;
}
/* The mark is a squeegee stroke crossing a pane. */
.brand__mark::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(115deg, transparent 38%, var(--aqua) 38%, var(--aqua) 56%, transparent 56%);
}

.mainnav { display: flex; gap: 4px; }
.mainnav a {
  padding: 9px 12px; font-size: .92rem; font-weight: 500; color: var(--slate);
  border-radius: var(--r); position: relative; white-space: nowrap;
}
.mainnav a:hover { color: var(--ink); background: var(--eau); }
.mainnav a[aria-current="page"] { color: var(--ink); font-weight: 600; }
.mainnav a[aria-current="page"]::after {
  content: ""; position: absolute; left: 13px; right: 13px; bottom: 3px;
  height: 2px; background: var(--aqua);
}

.topbar__cta { display: flex; align-items: center; gap: 10px; flex: none; }
.topbar__cta .btn { white-space: nowrap; }
.callnow {
  display: inline-flex; align-items: center; gap: .5em; white-space: nowrap;
  font-family: var(--mono); font-size: .92rem; font-weight: 500; color: var(--ink);
  padding: 9px 14px; border: 1px solid var(--line); border-radius: var(--r);
}
.callnow:hover { border-color: var(--ink); }

.burger {
  display: none; background: none; border: 1px solid var(--line);
  border-radius: var(--r); padding: 9px 11px; color: var(--ink);
}

@media (max-width: 1180px) {
  .mainnav, .topbar__cta .btn { display: none; }
  .burger { display: inline-flex; }
}
@media (max-width: 460px) {
  .callnow span { display: none; }
}

/* --------------------------------------------- mobile sheet (bottom-up) */

.sheet {
  position: fixed; inset: 0; z-index: 200;
  display: grid; align-items: end;
  pointer-events: none;
}
.sheet__veil {
  position: absolute; inset: 0;
  background: rgba(13, 31, 36, .55);
  opacity: 0; transition: opacity .3s var(--ease);
  backdrop-filter: blur(2px);
}
.sheet__panel {
  position: relative;
  background: var(--white);
  border-radius: 18px 18px 0 0;
  padding: 10px var(--gut) calc(24px + env(safe-area-inset-bottom));
  transform: translateY(101%);
  transition: transform .38s var(--ease);
  max-height: 86vh; overflow-y: auto;
}
.sheet[data-open="true"] { pointer-events: auto; }
.sheet[data-open="true"] .sheet__veil { opacity: 1; }
.sheet[data-open="true"] .sheet__panel { transform: translateY(0); }

.sheet__grip { width: 42px; height: 4px; background: var(--line); border-radius: 4px; margin: 6px auto 18px; }
.sheet__nav { display: grid; gap: 2px; margin-bottom: 20px; }
.sheet__nav a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 15px 4px; font-family: var(--display); font-size: 1.35rem;
  font-weight: 600; letter-spacing: -.03em; color: var(--ink);
  border-bottom: 1px solid var(--line);
}
.sheet__nav a .ico { color: var(--aqua-deep); }
.sheet__close { position: absolute; top: 14px; right: var(--gut); background: none; border: 0; color: var(--slate); }

/* -------------------------------- mobile action bar (the app-like part) */

.actionbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 150;
  display: none;
  grid-template-columns: 1fr 1fr auto;
  gap: 8px;
  padding: 9px var(--gut) calc(9px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(14px) saturate(150%);
  border-top: 1px solid var(--line);
}
.actionbar .btn { padding: 13px 12px; font-size: .92rem; justify-content: center; }
.actionbar .btn--wa { background: var(--eau); color: var(--ink); padding-inline: 14px; }

@media (max-width: 1180px) {
  .actionbar { display: grid; }
  body { padding-bottom: 78px; }
}

/* ============================== HERO ==================================== */

.hero {
  position: relative;
  min-height: min(94svh, 860px);
  display: flex; align-items: flex-end;
  overflow: hidden;
  background: var(--ink);
  isolation: isolate;
}
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media video, .hero__media img {
  width: 100%; height: 100%; object-fit: cover;
}
/* Two-stop scrim keeps the type legible without greying the whole frame. */
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(13, 31, 36, .94) 0%, rgba(13, 31, 36, .58) 42%, rgba(13, 31, 36, .22) 78%),
    linear-gradient(105deg, rgba(13, 31, 36, .5), transparent 60%);
}

.hero__in { position: relative; width: 100%; padding-block: clamp(38px, 7vw, 84px); }
.hero__body { max-width: 34ch; }
.hero h1 { color: #fff; margin-bottom: .34em; }
.hero h1 em { font-style: normal; color: var(--aqua); display: block; }
.hero__sub { color: rgba(255, 255, 255, .82); font-size: clamp(1rem, 2vw, 1.22rem); max-width: 46ch; margin-bottom: 30px; line-height: 1.55; }
.hero .btn-row { margin-bottom: 30px; }

/* SIGNATURE — the squeegee wipe.
   On load, a diagonal band travels once across the hero: ahead of it the
   frame is blurred and desaturated, behind it it is sharp. It is the
   window-cleaner's own stroke used as the page-load moment. */
.hero__media video, .hero__media img { animation: none; }
.hero[data-wipe="run"] .hero__media > * {
  animation: clarify 1.5s .15s var(--ease) both;
}
@keyframes clarify {
  from { filter: blur(14px) saturate(.35) brightness(.8); transform: scale(1.06); }
  to   { filter: blur(0) saturate(1) brightness(1); transform: scale(1); }
}
.squeegee {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  overflow: hidden;
}
.squeegee::before {
  content: ""; position: absolute;
  top: -30%; bottom: -30%; left: -40%; width: 46%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, .05) 32%, rgba(53, 214, 188, .5) 50%, rgba(255, 255, 255, .06) 68%, transparent);
  transform: rotate(9deg);
}
.hero[data-wipe="run"] .squeegee::before {
  animation: swipe 1.45s .1s var(--ease) forwards;
}
@keyframes swipe {
  from { left: -46%; opacity: 0; }
  22%  { opacity: 1; }
  to   { left: 116%; opacity: 0; }
}

/* ---------------------------------------------------- hero price tag
   The price is the offer, so it is set as a display object rather than a
   line of copy: it has to survive being glanced at, not read. */
.hero__grid { display: grid; gap: clamp(22px, 3vw, 44px); align-items: end; }
.pricetag {
  display: inline-flex; flex-direction: column; align-items: flex-start;
  padding: 18px 24px 20px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .22);
  border-left: 3px solid var(--aqua);
  border-radius: var(--r);
  backdrop-filter: blur(8px);
}
.pricetag__v {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(3.1rem, 9vw, 4.6rem);
  line-height: .88; letter-spacing: -.05em;
  color: var(--aqua);
}
.pricetag__l {
  font-family: var(--mono); font-size: .82rem; letter-spacing: .1em;
  text-transform: uppercase; color: #fff; margin-top: 8px;
}
.pricetag__n {
  font-size: .88rem; color: rgba(255, 255, 255, .68);
  margin-top: 9px; max-width: 22ch; line-height: 1.4;
}
/* Struck-through reference price: sets the 199 € against what it replaces. */
.pricetag__was {
  font-family: var(--mono); font-size: .78rem; color: rgba(255, 255, 255, .5);
  text-decoration: line-through; margin-bottom: 6px;
}

@media (min-width: 1041px) {
  .hero__grid { grid-template-columns: minmax(0, 1.5fr) auto; }
  .hero__body { max-width: 32ch; }
  .hero__sub { max-width: 46ch; }
}
@media (max-width: 1040px) {
  .pricetag { align-self: start; }
}

/* Badge strip: the ochre is spent here and nowhere else. */
.badges { display: flex; flex-wrap: wrap; gap: 8px; }
.badge {
  display: inline-flex; align-items: center; gap: .45em;
  font-family: var(--mono); font-size: .76rem; letter-spacing: .02em;
  padding: 7px 11px; border-radius: 100px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .2);
  color: rgba(255, 255, 255, .92);
}
.badge:first-child {
  background: rgba(232, 163, 61, .18);
  border-color: rgba(232, 163, 61, .5);
  color: #ffd79a;
}
.badge .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--aqua); flex: none; }
.badge:first-child .dot { background: var(--ochre); }

.hero__scroll {
  position: absolute; right: var(--gut); bottom: clamp(38px, 7vw, 84px);
  font-family: var(--mono); font-size: .7rem; letter-spacing: .18em;
  text-transform: uppercase; color: rgba(255, 255, 255, .5);
  writing-mode: vertical-rl; display: none;
}
@media (min-width: 1041px) { .hero__scroll { display: block; } .hero__sub { max-width: 46ch; } }

/* ------------------------------------------------------------- stat rail */

.statrail { border-block: 1px solid var(--line-dark); background: var(--ink-90); }
.statrail__in { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 26px var(--gut); border-left: 1px solid var(--line-dark); }
.stat:first-child { border-left: 0; }
.stat__v { font-family: var(--display); font-size: clamp(1.7rem, 3.4vw, 2.5rem); font-weight: 800; color: var(--aqua); letter-spacing: -.04em; line-height: 1; }
.stat__l { font-size: .84rem; color: rgba(255, 255, 255, .62); margin-top: 8px; line-height: 1.4; }
@media (max-width: 780px) {
  .statrail__in { grid-template-columns: repeat(2, 1fr); }
  .stat { border-top: 1px solid var(--line-dark); }
  .stat:nth-child(-n+2) { border-top: 0; }
  .stat:nth-child(odd) { border-left: 0; }
}

/* ------------------------------------------------- services (snap rail) */

.rail { display: grid; gap: 18px; grid-template-columns: repeat(3, 1fr); }
@media (max-width: 1040px) {
  /* On mobile the services become a horizontal snap rail — this is the
     single biggest cue that separates an app-feel from a stacked CMS page. */
  .rail {
    grid-auto-flow: column;
    grid-auto-columns: 79%;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: var(--gut);
    padding-inline: var(--gut);
    margin-inline: calc(var(--gut) * -1);
    scrollbar-width: none;
  }
  .rail::-webkit-scrollbar { display: none; }
  .rail > * { scroll-snap-align: start; }
}

.svc {
  display: flex; flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color .22s, transform .22s var(--ease);
}
.svc:hover { border-color: var(--ink); transform: translateY(-4px); }
.svc__img { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: var(--eau); }
.svc__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.svc:hover .svc__img img { transform: scale(1.05); }
.svc__ico {
  position: absolute; left: 12px; bottom: 12px;
  width: 40px; height: 40px; display: grid; place-items: center;
  background: var(--ink); color: var(--aqua); border-radius: 50%;
}
.svc__body { padding: 20px 20px 22px; display: flex; flex-direction: column; flex: 1; }
.svc__body h3 { margin-bottom: .4em; }
.svc__body p { font-size: .95rem; color: var(--slate-soft); }
.svc__foot {
  margin-top: auto; padding-top: 16px; display: flex; align-items: center;
  justify-content: space-between; gap: 12px; border-top: 1px solid var(--line);
}
.svc__price { font-family: var(--mono); font-size: .88rem; color: var(--ink); font-weight: 500; }
.svc__more { display: inline-flex; align-items: center; gap: .4em; font-size: .88rem; font-weight: 600; color: var(--aqua-deep); }
.svc__more .ico { transition: transform .2s var(--ease); }
.svc:hover .svc__more .ico { transform: translateX(4px); }

.rail-hint {
  display: none; font-family: var(--mono); font-size: .72rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--slate-soft); margin-top: 14px;
}
@media (max-width: 1040px) { .rail-hint { display: block; } }

/* -------------------------------------------------------- comparison table */

.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
table { width: 100%; border-collapse: collapse; font-size: .95rem; }
th, td { text-align: left; padding: 15px 16px; border-bottom: 1px solid var(--line); vertical-align: top; }
thead th {
  font-family: var(--mono); font-size: .74rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--slate-soft); font-weight: 500; border-bottom-color: var(--ink);
}
tbody th { font-weight: 600; color: var(--ink); }
.dark table th, .dark table td { border-bottom-color: var(--line-dark); }
.dark thead th { color: rgba(255, 255, 255, .6); border-bottom-color: rgba(255, 255, 255, .4); }
.dark tbody th { color: #fff; }

.cmp td:last-child, .cmp th:last-child { background: var(--aqua-wash); color: var(--ink); font-weight: 500; }
.dark .cmp td:last-child, .dark .cmp th:last-child { background: rgba(53, 214, 188, .12); color: #fff; }

/* On a phone a three-column comparison is unreadable sideways, so it becomes
   a stacked list where the cross and tick carry the comparison. */
@media (max-width: 680px) {
  .cmp thead { display: none; }
  .cmp, .cmp tbody, .cmp tr, .cmp th, .cmp td { display: block; width: 100%; }
  .cmp tr { padding: 16px 0; border-bottom: 1px solid var(--line); }
  .dark .cmp tr { border-bottom-color: var(--line-dark); }
  .cmp tbody th {
    padding: 0 0 9px; border: 0;
    font-family: var(--mono); font-size: .72rem; letter-spacing: .12em;
    text-transform: uppercase; color: var(--slate-soft); font-weight: 500;
  }
  .dark .cmp tbody th { color: rgba(255, 255, 255, .55); }
  .cmp td { border: 0; padding: 3px 0 3px 26px; position: relative; font-size: .94rem; }
  .cmp td::before {
    content: "✕"; position: absolute; left: 2px; top: 3px;
    color: var(--slate-soft); font-size: .82rem;
  }
  .cmp td[data-col]::after {
    content: " — " attr(data-col);
    font-family: var(--mono); font-size: .7rem; letter-spacing: .06em;
    color: var(--slate-soft); text-transform: uppercase;
  }
  .dark .cmp td::before, .dark .cmp td[data-col]::after { color: rgba(255, 255, 255, .42); }
  .cmp td:last-child { background: transparent !important; font-weight: 600; }
  .cmp td:last-child::before { content: "✓"; color: var(--aqua-deep); }
  .dark .cmp td:last-child { color: #fff; }
  .dark .cmp td:last-child::before { color: var(--aqua); }
  .dark .cmp td:last-child[data-col]::after { color: var(--aqua); }
}

/* ------------------------------------------------------------ price table */

.prices { width: 100%; }
.prices td { padding: 17px 16px; }
.prices .p-price { font-family: var(--mono); font-weight: 500; color: var(--ink); white-space: nowrap; }
.prices .p-unit { font-family: var(--mono); font-size: .8rem; color: var(--slate-soft); white-space: nowrap; }
.prices .p-detail { font-size: .87rem; color: var(--aqua-deep); }

.taxbox {
  border: 1px solid rgba(232, 163, 61, .45);
  background: rgba(232, 163, 61, .08);
  border-radius: var(--r-lg);
  padding: clamp(22px, 3.5vw, 36px);
}
.taxbox h3 { color: var(--ink); }
.taxbox__ex {
  font-family: var(--mono); font-size: .92rem; line-height: 1.7;
  border-left: 3px solid var(--ochre); padding-left: 16px; margin-top: 18px; color: var(--ink);
}

/* --------------------------------------------------------------- process */

.steps { counter-reset: s; display: grid; gap: 0; }
.step {
  counter-increment: s;
  display: grid; grid-template-columns: 72px 1fr; gap: 20px;
  padding: 26px 0; border-top: 1px solid var(--line);
  align-items: start;
}
.step:last-child { border-bottom: 1px solid var(--line); }
.step::before {
  content: counter(s, decimal-leading-zero);
  font-family: var(--mono); font-size: 1.5rem; color: var(--aqua-deep); font-weight: 500;
  line-height: 1;
}
.dark .step { border-color: var(--line-dark); }
.dark .step::before { color: var(--aqua); }
.step p { color: var(--slate-soft); font-size: .97rem; margin: 0; }
.dark .step p { color: rgba(255, 255, 255, .7); }
@media (max-width: 560px) { .step { grid-template-columns: 46px 1fr; gap: 14px; } }

/* ------------------------------------------------------------ zone list */

.zones {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
/* Borders on the cells, pulled 1px outward and clipped by the container —
   an incomplete last row then ends cleanly instead of showing a grey gap. */
.zone { padding: 18px 20px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); margin: 0 -1px -1px 0; }
.zone__n { font-family: var(--display); font-weight: 600; font-size: 1.08rem; color: var(--ink); letter-spacing: -.02em; }
.zone__m { font-family: var(--mono); font-size: .78rem; color: var(--slate-soft); margin-top: 5px; }
.zone__m b { color: var(--aqua-deep); font-weight: 500; }

/* --------------------------------------------------------- testimonials */

.quotes { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
@media (max-width: 780px) { .quotes { grid-template-columns: 1fr; } }
.quote { border: 1px solid var(--line-dark); border-radius: var(--r-lg); padding: 26px; background: var(--ink-90); }
.quote__stars { display: flex; gap: 2px; color: var(--ochre); margin-bottom: 14px; }
.quote blockquote { margin: 0 0 18px; font-size: 1.03rem; line-height: 1.6; color: rgba(255, 255, 255, .88); }
.quote__who { font-family: var(--mono); font-size: .8rem; color: var(--aqua); }
.quote__who span { color: rgba(255, 255, 255, .5); }

/* ------------------------------------------------------------------- faq */

.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 21px 0; cursor: pointer; list-style: none;
  font-family: var(--display); font-size: clamp(1.02rem, 2vw, 1.2rem); font-weight: 600;
  color: var(--ink); letter-spacing: -.02em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; flex: none; width: 13px; height: 13px;
  border-right: 2px solid var(--aqua-deep); border-bottom: 2px solid var(--aqua-deep);
  transform: rotate(45deg); transition: transform .25s var(--ease); margin-top: -5px;
}
.faq details[open] summary::after { transform: rotate(-135deg); margin-top: 4px; }
.faq details > div { padding-bottom: 22px; max-width: 78ch; color: var(--slate-soft); }

/* ------------------------------------------------------------------ blog */

.posts { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 32px); }
@media (max-width: 980px) { .posts { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .posts { grid-template-columns: 1fr; } }

.post { display: flex; flex-direction: column; }
.post__img { aspect-ratio: 3 / 2; overflow: hidden; border-radius: var(--r-lg); background: var(--eau); margin-bottom: 16px; }
.post__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.post:hover .post__img img { transform: scale(1.04); }
.post__meta { font-family: var(--mono); font-size: .74rem; letter-spacing: .08em; text-transform: uppercase; color: var(--slate-soft); margin-bottom: 9px; display: flex; gap: 10px; flex-wrap: wrap; }
.post__meta .tag { color: var(--aqua-deep); }
.post h3 { margin-bottom: .4em; }
.post:hover h3 { color: var(--aqua-deep); }
.post p { font-size: .94rem; color: var(--slate-soft); margin: 0; }

.post--wide { grid-column: 1 / -1; display: grid; grid-template-columns: 1.15fr 1fr; gap: clamp(22px, 4vw, 48px); align-items: center; padding-bottom: clamp(24px, 4vw, 40px); border-bottom: 1px solid var(--line); }
.post--wide .post__img { margin-bottom: 0; aspect-ratio: 16 / 10; }
.post--wide h3 { font-size: clamp(1.5rem, 3.2vw, 2.2rem); }
.post--wide p { font-size: 1.03rem; }
@media (max-width: 780px) { .post--wide { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------- article */

.article { max-width: 74ch; margin-inline: auto; }
.article__head { max-width: 74ch; margin-inline: auto; }
.article__hero { border-radius: var(--r-lg); overflow: hidden; margin-block: clamp(24px, 4vw, 44px); aspect-ratio: 21 / 9; }
.article__hero img { width: 100%; height: 100%; object-fit: cover; }
.prose { font-size: 1.08rem; line-height: 1.75; color: var(--slate); }
.prose h2 { font-size: clamp(1.5rem, 3vw, 2.05rem); margin-top: 2em; margin-bottom: .6em; }
.prose h3 { font-size: clamp(1.15rem, 2.2vw, 1.35rem); margin-top: 1.8em; margin-bottom: .5em; }
.prose h2 + h3 { margin-top: 1em; }
.prose ul, .prose ol { padding-left: 1.15em; margin-bottom: 1.3em; }
.prose li { margin-bottom: .5em; }
.prose li::marker { color: var(--aqua-deep); }
.prose a { color: var(--aqua-deep); text-decoration: underline; text-underline-offset: 3px; }
.prose blockquote { margin: 1.8em 0; padding-left: 20px; border-left: 3px solid var(--aqua); font-size: 1.12rem; color: var(--ink); }
.prose table { font-size: .95rem; margin-bottom: 1.5em; }
.prose strong { color: var(--ink); }
.prose code { font-family: var(--mono); font-size: .9em; background: var(--eau); padding: 2px 6px; border-radius: 3px; }

.toc { border: 1px solid var(--line); border-radius: var(--r-lg); padding: 22px 24px; margin-bottom: 34px; background: var(--paper); }
.toc__t { font-family: var(--mono); font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--slate-soft); margin-bottom: 12px; }
.toc ol { margin: 0; padding-left: 1.2em; font-size: .95rem; }
.toc li { margin-bottom: 6px; }
.toc a { color: var(--slate); }
.toc a:hover { color: var(--aqua-deep); }

/* ------------------------------------------------------------------ form */

.form { display: grid; gap: 16px; }
.field { display: grid; gap: 7px; }
.field label { font-size: .87rem; font-weight: 600; color: var(--ink); }
.field label .req { color: var(--aqua-deep); }
.field input, .field select, .field textarea {
  font: inherit; font-size: 1rem; padding: 13px 15px;
  border: 1px solid var(--line); border-radius: var(--r);
  background: var(--white); color: var(--ink); width: 100%;
  transition: border-color .18s, box-shadow .18s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--aqua-deep); box-shadow: 0 0 0 3px rgba(53, 214, 188, .22);
}
.field textarea { min-height: 130px; resize: vertical; }
.field small { font-size: .8rem; color: var(--slate-soft); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.form-note { font-size: .84rem; color: var(--slate-soft); }
.alert { padding: 14px 16px; border-radius: var(--r); font-size: .94rem; }
.alert--ok { background: var(--aqua-wash); color: var(--aqua-deep); border: 1px solid var(--aqua); }
.alert--err { background: #fdecec; color: #a32020; border: 1px solid #f0b4b4; }

/* -------------------------------------------------------------- subheader */

.subhead { background: var(--ink); color: rgba(255, 255, 255, .78); padding-block: clamp(44px, 7vw, 92px); position: relative; overflow: hidden; }
.subhead::after {
  content: ""; position: absolute; top: -60%; right: -12%; width: 46%; height: 220%;
  background: linear-gradient(105deg, transparent, rgba(53, 214, 188, .1), transparent);
  transform: rotate(9deg); pointer-events: none;
}
.subhead h1 { font-size: clamp(2.1rem, 6vw, 3.9rem); }
.crumbs { font-family: var(--mono); font-size: .76rem; letter-spacing: .06em; color: rgba(255, 255, 255, .5); margin-bottom: 18px; }
.crumbs a:hover { color: var(--aqua); }
.crumbs span { margin-inline: 8px; }

/* ------------------------------------------------------------------ CTA */

.cta { background: var(--aqua); color: var(--ink); }
.cta h2 { color: var(--ink); max-width: 26ch; }
.cta p { color: rgba(13, 31, 36, .74); max-width: 52ch; }
.cta .btn--ink:hover { background: #0a171b; }

/* --------------------------------------------------------------- footer */

.foot { background: var(--ink); color: rgba(255, 255, 255, .62); padding-top: clamp(48px, 7vw, 82px); font-size: .93rem; }
.foot a:hover { color: var(--aqua); }
.foot__top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.1fr; gap: clamp(24px, 4vw, 48px); padding-bottom: 44px; }
@media (max-width: 900px) { .foot__top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .foot__top { grid-template-columns: 1fr; } }
.foot .brand { color: #fff; margin-bottom: 14px; }
.foot h4 { color: #fff; font-size: .8rem; font-family: var(--mono); font-weight: 500; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 16px; }
.foot ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.foot__bot { border-top: 1px solid var(--line-dark); padding-block: 22px; display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; font-size: .82rem; font-family: var(--mono); }
.foot__hours { display: grid; gap: 6px; font-family: var(--mono); font-size: .84rem; }
.foot__hours div { display: flex; justify-content: space-between; gap: 12px; }

/* --------------------------------------------------------------- reveal */

.rv { opacity: 0; transform: translateY(22px); }
.rv.in { opacity: 1; transform: none; transition: opacity .6s var(--ease), transform .6s var(--ease); }

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

/* ------------------------------------------------------------------ misc */

.mono { font-family: var(--mono); }
.center { text-align: center; }
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.hide-mobile { }
@media (max-width: 700px) { .hide-mobile { display: none !important; } }
.tick { display: grid; gap: 11px; list-style: none; padding: 0; margin: 0; }
.tick li { display: grid; grid-template-columns: 22px 1fr; gap: 11px; font-size: .97rem; align-items: start; }
.tick .ico { color: var(--aqua-deep); margin-top: 3px; }
.dark .tick .ico { color: var(--aqua); }
.imgframe { border-radius: var(--r-lg); overflow: hidden; }
.imgframe img { width: 100%; }
