/* ==========================================================================
   Gabarits : accueil boutique, collection, ville, guide, pages fixes
   Réutilise les tokens de site.css — aucune nouvelle valeur hexadécimale.
   ========================================================================== */

main { display: block; }

.container { padding-left: var(--gutter); padding-right: var(--gutter); }

.section-block { padding: clamp(40px, 6vw, 76px) 0; }
.section-block--tint { background: var(--tint); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.section-block h2,
.btu-block h2,
.truth-block h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(24px, 3vw, 36px);
  letter-spacing: -.02em;
  line-height: 1.1;
  margin-bottom: 18px;
  text-wrap: balance;
}

.page-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 4.4vw, 52px);
  letter-spacing: -.03em;
  line-height: 1.03;
  margin: 8px 0 20px;
  text-wrap: balance;
}

.lede { font-size: clamp(16px, 1.5vw, 18.5px); line-height: 1.65; color: var(--ink-muted); max-width: 70ch; text-wrap: pretty; }
.muted { color: var(--ink-faint); font-size: 14.5px; line-height: 1.6; margin-top: 12px; }

main p { margin-bottom: 14px; line-height: 1.65; color: var(--ink-soft); max-width: 72ch; }
main ul, main ol { margin: 0 0 18px; padding-left: 22px; color: var(--ink-soft); max-width: 72ch; }
main ul li, main ol li { margin-bottom: 8px; line-height: 1.6; }
main ul { list-style: disc; }
main ol { list-style: decimal; }

/* --- Fil d'Ariane --------------------------------------------------------- */

.crumbs { padding: 20px 0 4px; font-size: 13.5px; }
.crumbs ol { display: flex; flex-wrap: wrap; gap: 6px; list-style: none; padding: 0; margin: 0; }
.crumbs li + li::before { content: "›"; color: #c3d2de; margin-right: 6px; }
.crumbs a { color: var(--ink-faint); text-decoration: none; }
.crumbs a:hover { color: var(--blue-500); }
.crumbs [aria-current] { color: var(--ink-faint); }

/* --- Accueil boutique ----------------------------------------------------- */

.hero-store {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(48px, 6vw, 86px) 0 clamp(54px, 7vw, 96px);
  background:
    radial-gradient(circle at 13% 18%, rgba(112, 196, 239, .18), transparent 24%),
    linear-gradient(135deg, #f8fcff 0%, #eef8fb 52%, #e8f4f8 100%);
  border-bottom: 1px solid var(--line);
}

.hero-store::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: .33;
  background-image: linear-gradient(rgba(10, 61, 98, .045) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(10, 61, 98, .045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to right, #000, transparent 72%);
}

.hero-store__orb {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(1px);
  pointer-events: none;
}
.hero-store__orb--one {
  width: 300px; height: 300px;
  right: 8%; top: 10%;
  background: rgba(95, 176, 230, .12);
}
.hero-store__orb--two {
  width: 180px; height: 180px;
  right: 35%; bottom: -8%;
  border: 1px solid rgba(43, 143, 199, .18);
}

.hero-store__grid {
  display: grid;
  grid-template-columns: minmax(0, .98fr) minmax(420px, .82fr);
  gap: clamp(48px, 7vw, 96px);
  align-items: center;
}

.hero-store__copy { position: relative; z-index: 2; }

.hero-store__eyebrow,
.home-kicker {
  margin: 24px 0 0;
  max-width: none;
  color: var(--blue-500);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .13em;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero-store__title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(40px, 4.25vw, 60px);
  line-height: 1;
  letter-spacing: -.042em;
  margin: 16px 0 0;
  text-wrap: balance;
}
.hero-store__title .accent { display: inline-block; }

.hero-store__lede {
  font-size: clamp(17px, 1.5vw, 19px);
  line-height: 1.62;
  color: var(--ink-muted);
  margin-top: 24px;
  max-width: 49ch;
  text-wrap: pretty;
}

.hero-store__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 17px 22px;
  margin: 30px 0 24px;
}

.hero-store__guide {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
  text-underline-offset: 5px;
  text-decoration-thickness: 1px;
}
.hero-store__guide:hover { color: var(--blue-500); }

.hero-store__proofs {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 20px;
  padding: 0;
  margin: 0;
  max-width: none;
  list-style: none;
}
.hero-store__proofs li {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 0;
  color: var(--ink-dim);
  font-size: 13.5px;
  line-height: 1.4;
}
.hero-store__proofs span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #dff4eb;
  color: #17805a;
  font-size: 11px;
  font-weight: 800;
}

/* --- Alerte chaleur ------------------------------------------------------- */

.halert {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: 100%;
  padding: 8px 9px 8px 13px;
  border-radius: var(--radius-pill);
  background: rgba(255, 250, 242, .8);
  border: 1px solid #f2d7b6;
  box-shadow: 0 10px 30px -18px rgba(143, 91, 24, .5);
  backdrop-filter: blur(8px);
}

/* Le point pulse pour signaler que l'information est datée du jour, pas
 * imprimée une fois pour toutes. L'animation est coupée si l'utilisateur a
 * demandé moins de mouvement — un bandeau d'urgence n'est pas une exception. */
.halert__pulse {
  position: relative;
  flex: none;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: #e07b1f;
}
.halert__pulse::after {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid #e07b1f;
  opacity: 0;
  animation: halert-ping 2.4s ease-out infinite;
}
@keyframes halert-ping {
  0%   { transform: scale(.5); opacity: .7; }
  70%  { transform: scale(1.25); opacity: 0; }
  100% { opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .halert__pulse::after { animation: none; }
}

.halert__msg {
  margin: 0;
  max-width: none;
  font-size: 13px;
  line-height: 1.4;
  color: #6b4a1c;
  font-weight: 500;
}
.halert__msg strong { color: #4a3210; font-weight: 700; }

.halert__info {
  flex: none;
  width: 26px; height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #eccfa8;
  background: var(--white);
  color: #b07220;
  border-radius: 50%;
  cursor: pointer;
  transition: background .15s, color .15s;
}
.halert__info:hover { background: #b07220; color: var(--white); border-color: #b07220; }

/* Infobulle : positionnée sous la pastille, jamais au-dessus — au-dessus elle
 * sortirait du cadre sur les écrans où le hero commence haut. */
.halert__note {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  z-index: 40;
  width: min(380px, calc(100vw - 44px));
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 24px 48px -20px rgba(10, 61, 98, .38);
}
.halert__note::before {
  content: "";
  position: absolute;
  top: -7px; left: 26px;
  width: 12px; height: 12px;
  background: var(--white);
  border-left: 1px solid var(--line);
  border-top: 1px solid var(--line);
  transform: rotate(45deg);
}
.halert__note p { font-size: 14px; line-height: 1.6; color: var(--ink-soft); margin-bottom: 10px; max-width: none; }
.halert__note p:last-child { margin-bottom: 0; }
.halert__note-cta a { font-weight: 700; }

/* --- Carte produit du hero ------------------------------------------------ */

.hcard {
  position: relative;
  background: var(--white);
  border: 1px solid rgba(213, 227, 239, .9);
  border-radius: 30px;
  overflow: hidden;
  box-shadow:
    0 46px 90px -38px rgba(10, 61, 98, .36),
    0 12px 28px -20px rgba(10, 61, 98, .22);
}

.hcard__media {
  position: relative;
  display: block;
  height: clamp(300px, 31vw, 390px);
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 68%, rgba(95, 176, 230, .17), transparent 31%),
    linear-gradient(155deg, #eff8fc, #dceef6);
  border-bottom: 1px solid rgba(213, 227, 239, .75);
}
.hcard__media::after {
  content: "";
  position: absolute;
  left: 19%; right: 19%; bottom: 12%;
  height: 22px;
  border-radius: 50%;
  background: rgba(10, 61, 98, .13);
  filter: blur(13px);
}
.hcard__media img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 112%;
  object-fit: contain;
  display: block;
  transform: translateY(4%);
}

.hcard__badge {
  position: absolute;
  z-index: 4;
  left: 20px; top: 20px;
  background: rgba(255, 255, 255, .88);
  border: 1px solid rgba(255, 255, 255, .95);
  border-radius: var(--radius-pill);
  padding: 8px 13px;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--navy-700);
  box-shadow: 0 8px 20px -14px rgba(10, 61, 98, .55);
  backdrop-filter: blur(10px);
}

.hcard__surface {
  position: absolute;
  z-index: 4;
  top: 19px; right: 19px;
  display: flex;
  flex-direction: column;
  margin: 0;
  max-width: none;
  padding: 11px 14px;
  border-radius: 15px;
  background: var(--navy-700);
  color: var(--white);
  box-shadow: 0 14px 28px -18px rgba(10, 61, 98, .8);
}
.hcard__surface strong {
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1;
}
.hcard__surface span { margin-top: 3px; color: #b9d7f0; font-size: 10.5px; }

.hcard__air {
  position: absolute;
  z-index: 1;
  width: 72px;
  height: 18px;
  border-top: 3px solid rgba(43, 143, 199, .26);
  border-radius: 50%;
}
.hcard__air--one { top: 42%; left: 12%; transform: rotate(8deg); }
.hcard__air--two { top: 55%; right: 10%; transform: rotate(-8deg); }

.hcard__body { padding: 22px 24px 24px; }
.hcard__heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}
.hcard__overline {
  margin: 0 0 2px;
  max-width: none;
  color: var(--ink-faint);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.hcard__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  color: var(--ink);
  letter-spacing: -.025em;
  margin: 0;
  max-width: none;
}

.hcard__specs {
  list-style: none;
  padding: 0;
  margin: 0 0 17px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  max-width: none;
}
.hcard__specs li {
  margin: 0;
  padding: 11px 9px 10px;
  border-radius: 13px;
  background: var(--tint);
  text-align: center;
}
.hcard__specs strong {
  display: block;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
}
.hcard__specs span { display: block; margin-top: 2px; color: var(--ink-faint); font-size: 10.5px; }

.hcard__price {
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: 6px;
  margin: 0;
  max-width: none;
  flex-wrap: wrap;
}
.hcard__amount {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 28px;
  letter-spacing: -.03em;
  color: var(--ink);
  white-space: nowrap;
}
.hcard__vat { font-size: 11px; color: var(--ink-faint); }

.hcard__actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
}
.hcard__actions .btn { min-width: 0; }
.hcard__link {
  padding: 12px 6px;
  font-size: 13.5px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
}

.hcard__stock {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 16px 0 0;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--green);
  max-width: none;
}

/* --- Accueil : sections éditoriales -------------------------------------- */

.home-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 34px;
  margin-bottom: clamp(30px, 4vw, 48px);
}
.home-section-head > div { flex: 1 1 560px; }
.home-section-head > p {
  flex: 0 1 410px;
  margin: 0 0 2px;
  color: var(--ink-muted);
  font-size: 16px;
  line-height: 1.65;
}
.home-section-head .home-kicker,
.home-how .home-kicker,
.home-local .home-kicker { margin-top: 0; margin-bottom: 12px; }
.home-section-head h2,
.home-how h2,
.home-local h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(34px, 4vw, 52px);
  letter-spacing: -.045em;
  line-height: 1;
  text-wrap: balance;
}
.home-section-head--compact { align-items: center; }

.pick-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.pick-card {
  position: relative;
  min-height: 355px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 25px;
  background: #edf7fb;
  color: var(--ink);
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.pick-card::after {
  content: "";
  position: absolute;
  right: -50px; bottom: -65px;
  width: 190px; height: 190px;
  border: 1px solid rgba(43, 143, 199, .16);
  border-radius: 50%;
  box-shadow: 0 0 0 28px rgba(43, 143, 199, .04);
}
.pick-card:hover {
  transform: translateY(-6px);
  border-color: #bbdcea;
  box-shadow: 0 24px 48px -30px rgba(10, 61, 98, .5);
  color: var(--ink);
}
.pick-card--dark {
  border-color: var(--navy-800);
  background: var(--navy-800);
  color: var(--white);
}
.pick-card--dark:hover { color: var(--white); border-color: var(--navy-700); }
.pick-card--dark::after { border-color: rgba(127, 196, 239, .19); box-shadow: 0 0 0 28px rgba(127, 196, 239, .04); }
.pick-card--sun { background: #fff5e8; border-color: #f4dfc5; }
.pick-card--sun::after { border-color: rgba(246, 166, 35, .2); box-shadow: 0 0 0 28px rgba(246, 166, 35, .05); }

.pick-card__number {
  position: absolute;
  top: 26px; right: 26px;
  color: var(--ink-faint);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
}
.pick-card--dark .pick-card__number { color: #7495ad; }
.pick-card__icon {
  width: 60px; height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: auto;
  border-radius: 18px;
  background: rgba(255, 255, 255, .78);
  color: var(--navy-700);
  box-shadow: 0 12px 25px -20px rgba(10, 61, 98, .6);
}
.pick-card--dark .pick-card__icon { background: rgba(127, 196, 239, .13); color: var(--blue-300); }
.pick-card--sun .pick-card__icon { color: #ad6a17; }
.pick-card__meta {
  position: relative;
  z-index: 2;
  margin-top: 38px;
  color: var(--blue-500);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: .055em;
  text-transform: uppercase;
}
.pick-card--dark .pick-card__meta { color: var(--blue-300); }
.pick-card--sun .pick-card__meta { color: #a56517; }
.pick-card strong {
  position: relative;
  z-index: 2;
  margin-top: 9px;
  max-width: 15ch;
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.05;
}
.pick-card__text {
  position: relative;
  z-index: 2;
  margin-top: 11px;
  max-width: 32ch;
  color: var(--ink-muted);
  font-size: 14px;
  line-height: 1.55;
}
.pick-card--dark .pick-card__text { color: #a9c1d2; }
.pick-card__link {
  position: relative;
  z-index: 2;
  margin-top: 20px;
  font-size: 13.5px;
  font-weight: 800;
}
.pick-card__link span { margin-left: 5px; }

.home-how {
  background: var(--navy-900);
  color: var(--white);
}
.home-how__grid {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(420px, 1.22fr);
  gap: clamp(42px, 8vw, 110px);
  align-items: center;
}
.home-how h2 { color: var(--white); }
.home-how__copy .lede { margin: 22px 0 24px; color: #a9c1d2; }
.text-link {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  text-underline-offset: 5px;
}
.text-link:hover { color: var(--blue-300); }

.air-demo {
  position: relative;
  min-height: 390px;
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  overflow: hidden;
  border: 1px solid rgba(127, 196, 239, .2);
  border-radius: 30px;
  background: #102f43;
  box-shadow: 0 36px 70px -42px rgba(0, 0, 0, .8);
}
.air-demo__room,
.air-demo__outside { position: relative; padding: 28px; }
.air-demo__room { background: linear-gradient(150deg, rgba(95, 176, 230, .13), rgba(10, 42, 64, .25)); }
.air-demo__outside { background: linear-gradient(160deg, #c86d26, #a94721); }
.air-demo__label {
  display: block;
  color: #91b3ca;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.air-demo__outside .air-demo__label { color: #ffe0c6; }
.air-demo__temp {
  display: block;
  margin-top: 7px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 900;
  letter-spacing: -.06em;
}
.air-demo__temp span { margin-left: 3px; font-size: .42em; font-weight: 700; vertical-align: top; }
.air-demo__unit {
  position: absolute;
  z-index: 3;
  left: 50%; bottom: 38px;
  width: 104px; height: 180px;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, .62);
  border-radius: 26px 26px 19px 19px;
  background: linear-gradient(160deg, #f7fbfd, #cadfe9);
  box-shadow: 0 26px 36px -20px rgba(0, 0, 0, .65);
}
.air-demo__unit::before {
  content: "24°";
  position: absolute;
  left: 13px; right: 13px; top: 78px;
  padding: 8px 0;
  border-radius: 8px;
  background: var(--navy-700);
  color: var(--blue-300);
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 800;
  text-align: center;
}
.air-demo__unit::after {
  content: "";
  position: absolute;
  left: 23px; right: 23px; bottom: 20px;
  height: 34px;
  border-top: 2px solid #9ebdcd;
  border-bottom: 2px solid #9ebdcd;
  background: linear-gradient(#9ebdcd 2px, transparent 2px) 0 8px / 100% 10px;
}
.air-demo__unit > span {
  position: absolute;
  top: 26px;
  left: 24px; right: 24px;
  height: 2px;
  background: #9ebdcd;
}
.air-demo__unit > span:nth-child(2) { top: 36px; }
.air-demo__unit > span:nth-child(3) { top: 46px; }
.air-demo__flow {
  position: absolute;
  width: 70px; height: 24px;
  border-top: 3px solid rgba(127, 196, 239, .55);
  border-radius: 50%;
}
.air-demo__flow--one { left: 12%; top: 52%; transform: rotate(10deg); }
.air-demo__flow--two { right: 9%; top: 45%; transform: rotate(-12deg); }
.air-demo__hose {
  position: absolute;
  z-index: 2;
  right: 25%;
  bottom: 60px;
  width: 26%;
  height: 80px;
  border-right: 18px solid #d6e4ea;
  border-bottom: 18px solid #d6e4ea;
  border-radius: 0 0 42px 0;
}
.air-demo__heat {
  position: absolute;
  z-index: 4;
  right: 24px; bottom: 25px;
  max-width: 100px;
  color: #fff0e3;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
  text-align: right;
}

.home-sizing .btu-block {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(0, 1.28fr);
  gap: 26px 46px;
  align-items: start;
}
.home-sizing .btu-block > h2,
.home-sizing .btu-block > p:first-of-type { display: none; }
.home-sizing .table-scroll { margin: 0; }
.home-sizing .data-table { min-width: 540px; box-shadow: 0 18px 45px -38px rgba(10, 61, 98, .5); }
.home-sizing .btu-block__link {
  grid-column: 1;
  grid-row: 1;
  margin: 0;
  padding: 28px;
  border-radius: 22px;
  background: var(--navy-700);
}
.home-sizing .btu-block__link::before {
  content: "Vous hésitez ?";
  display: block;
  margin-bottom: 8px;
  color: var(--blue-300);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.home-sizing .btu-block__link a {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1.35;
  text-decoration: none;
}
.home-sizing .btu-block__link a:hover { color: var(--blue-300); }

.home-local { overflow: hidden; }
.home-local__grid {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(420px, 1.18fr);
  gap: clamp(50px, 8vw, 105px);
  align-items: center;
}
.home-local__copy > p:not(.home-kicker) {
  margin: 20px 0 0;
  color: var(--ink-muted);
  font-size: 16px;
}
.home-local__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 34px;
  border-top: 1px solid var(--line);
}
.home-local__stats p {
  margin: 0;
  padding: 20px 10px 0 0;
}
.home-local__stats strong {
  display: block;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -.03em;
}
.home-local__stats span { display: block; margin-top: 4px; color: var(--ink-faint); font-size: 11.5px; }
.home-local__cities {
  position: relative;
  padding: 30px;
  border-radius: 28px;
  background: var(--tint);
  border: 1px solid var(--line);
}
.home-local__cities::before {
  content: "";
  position: absolute;
  width: 150px; height: 150px;
  top: -70px; right: -55px;
  border: 26px solid rgba(95, 176, 230, .08);
  border-radius: 50%;
}
.home-local__cities-title {
  margin: 0 0 18px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 800;
}
.home-local .city-links {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  max-height: 260px;
  overflow: hidden;
}
.home-local .city-links a { padding: 10px 12px; font-size: 13.5px; }
.home-local .city-links__more { margin: 18px 0 0; font-size: 14px; }

.section-block > .container > .trust { margin-top: 10px; }
.trust__item {
  position: relative;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
}
.trust__item svg {
  width: 42px; height: 42px;
  padding: 9px;
  border-radius: 13px;
  background: #eef7fb;
}

/* --- Fiche produit -------------------------------------------------------- */

.pdp { padding: 4px 0 clamp(32px, 5vw, 56px); }

.pdp__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}

.pdp__figure {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(180deg, #f7fbfe, #e8f2fa);
  aspect-ratio: 1 / 1;
}
.pdp__figure img { width: 100%; height: 100%; object-fit: contain; display: block; }
.pdp__image-note {
  margin: 10px 4px 0;
  max-width: none;
  font-size: 12.5px;
  line-height: 1.45;
  color: var(--ink-faint);
}

.pdp__thumbs {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: flex;
  gap: 12px;
  max-width: none;
}
.pdp__thumbs li {
  margin: 0;
  width: 88px; height: 88px;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: #f2f8fc;
}
.pdp__thumbs img { width: 100%; height: 100%; object-fit: contain; display: block; }

.pdp__brand {
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--blue-500);
  margin: 0 0 8px;
  max-width: none;
}
.pdp__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(26px, 3.4vw, 40px);
  line-height: 1.06;
  letter-spacing: -.03em;
  margin: 0 0 14px;
  text-wrap: balance;
}
.pdp__pitch { font-size: 16.5px; line-height: 1.6; color: var(--ink-muted); margin-bottom: 22px; }

.pdp__keyspecs {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(96px, 1fr));
  gap: 12px;
  max-width: none;
}
.pdp__keyspecs li {
  margin: 0;
  padding: 12px 6px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
}
.pdp__keyspecs strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  color: var(--navy-700);
  letter-spacing: -.02em;
  font-variant-numeric: tabular-nums;
}
.pdp__keyspecs span { display: block; font-size: 12px; color: var(--ink-faint); margin-top: 3px; line-height: 1.3; }

.pdp__pricebox {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 22px 24px;
  background: var(--white);
  box-shadow: 0 18px 40px -28px rgba(10, 61, 98, .5);
}
.pdp__status-label {
  margin: 0 0 4px;
  max-width: none;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--blue-500);
}

.pdp__price { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; margin: 0 0 8px; max-width: none; }
.pdp__amount {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(32px, 4vw, 42px);
  letter-spacing: -.035em;
  color: var(--ink);
}
.pdp__vat { font-size: 13.5px; color: var(--ink-faint); }

.pdp__stock {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-faint);
  margin: 0 0 18px;
  max-width: none;
}
.pdp__stock.is-in { color: var(--green); }
.pdp__stock .dot { background: currentColor; }

.pdp__eta {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
  background: var(--tint);
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  padding: 12px 14px;
  margin: 16px 0 0;
  max-width: none;
}

.pdp__perks { list-style: none; padding: 0; margin: 14px 0 0; max-width: none; }
.pdp__perks li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 7px;
  font-size: 13.5px;
  color: var(--ink-dim);
}
.pdp__perks li:last-child { margin-bottom: 0; }
.pdp__perks li::before {
  content: "";
  position: absolute;
  left: 2px; top: .55em;
  width: 11px; height: 6px;
  border-left: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  transform: translateY(-60%) rotate(-45deg);
}

/*
 * Étiquette énergie. Le règlement UE 626/2011 impose de l'afficher près du prix
 * et dans une taille au moins égale à celle du prix en vente à distance : d'où
 * la pastille, et d'où le fait que ce bloc soit collé au bloc de prix.
 */
.pdp__energy {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 16px 0 0;
  font-size: 14px;
  color: var(--ink-soft);
  max-width: none;
}
.pdp__energy-class {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  padding: 6px 12px;
  border-radius: 8px;
  background: var(--green);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
}
.pdp__energy--pending {
  display: block;
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink-faint);
  border-left: 3px solid var(--line-thumb);
  padding-left: 12px;
}

.pdp__included { list-style: none; padding: 0; }
.pdp__included li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
  color: var(--ink-soft);
}
.pdp__included li::before {
  content: "";
  position: absolute;
  left: 0; top: .5em;
  width: 13px; height: 7px;
  border-left: 2.4px solid var(--blue-500);
  border-bottom: 2.4px solid var(--blue-500);
  transform: translateY(-60%) rotate(-45deg);
}

/* --- Bloc « c'est fait pour / ce n'est pas fait pour » -------------------- */

.fit {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  margin: 24px 0 0;
}
.fit__col {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px 24px;
  background: var(--white);
}
.fit__col--yes { border-color: #bfe3d1; background: #f4fbf7; }
.fit__col--no { border-color: #f0d9c0; background: #fefaf5; }
.fit__col p { margin-bottom: 0; }
.fit__label {
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 8px !important;
}
.fit__col--yes .fit__label { color: #17805a; }
.fit__col--no .fit__label { color: #b06a20; }
.fit__cta { margin-top: 12px !important; font-weight: 700; }

/* --- Panier : lignes, quantités ------------------------------------------ */

.cartline {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-soft);
  margin: 0;
}
.cartline:last-child { border-bottom: none; }

.cartline__thumb {
  flex: none;
  width: 62px; height: 62px;
  border-radius: 12px;
  background: linear-gradient(180deg, #f2f8fc, #e3eff8);
  border: 1px solid var(--line-thumb);
}
.cartline--page .cartline__thumb { width: 88px; height: 88px; }

.cartline__main { flex: 1; min-width: 0; }
.cartline__name { font-weight: 700; color: var(--ink); font-size: 15px; margin: 0; max-width: none; }
.cartline__unit { font-size: 13px; color: var(--ink-faint); margin: 2px 0 10px; max-width: none; }
.cartline__price { font-weight: 800; color: var(--ink); font-size: 15.5px; margin: 0; white-space: nowrap; max-width: none; }

.cartline__remove {
  border: none;
  background: none;
  padding: 0;
  margin-top: 8px;
  font-size: 12.5px;
  color: var(--ink-faint);
  text-decoration: underline;
  cursor: pointer;
}
.cartline__remove:hover { color: #c0392b; }

.qty { display: inline-flex; align-items: center; border: 1px solid var(--line-thumb); border-radius: 10px; overflow: hidden; }
.qty__btn {
  width: 30px; height: 30px;
  border: none;
  background: var(--white);
  color: var(--navy-700);
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  transition: background .15s;
}
.qty__btn:hover:not(:disabled) { background: #eef5fb; }
.qty__btn:disabled { color: #b9cbda; cursor: not-allowed; }
.qty__value { min-width: 30px; text-align: center; font-weight: 700; font-size: 14px; font-variant-numeric: tabular-nums; }

.cart__error,
.cartpage__error {
  margin: 12px 0 0;
  padding: 11px 14px;
  border-radius: 12px;
  background: #fdf1ef;
  border: 1px solid #f2cec8;
  color: #a03024;
  font-size: 13.5px;
  line-height: 1.5;
  max-width: none;
}
.cart__checkout:disabled { background: #b6ccdc; cursor: not-allowed; box-shadow: none; }

/* --- Page /panier/ -------------------------------------------------------- */

.cartpage { padding-top: 34px; padding-bottom: clamp(40px, 6vw, 72px); }
.cartpage__items { list-style: none; padding: 0; margin: 0 0 22px; border-top: 1px solid var(--line); }
.cartpage__empty { padding: 26px 0; }
.cartpage__empty p { margin-bottom: 16px; }

.cartpage__foot {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px 24px;
  background: var(--tint);
}
.cartpage__total { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; margin-bottom: 6px; max-width: none; }
.cartpage__total strong { font-family: var(--font-display); font-weight: 800; font-size: 26px; color: var(--ink); letter-spacing: -.02em; }
.cartpage__ship { font-size: 13px; color: var(--ink-faint); margin-bottom: 16px; max-width: none; }
.cartpage__secure { font-size: 12.5px; color: var(--ink-faint); margin: 12px 0 0; text-align: center; max-width: none; }

/* --- Confirmation de commande -------------------------------------------- */

.thanks { padding-top: 40px; padding-bottom: clamp(40px, 6vw, 76px); }
.thanks__state[hidden] { display: none; }
.thanks__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px; height: 62px;
  border-radius: 50%;
  background: #eaf8f1;
  color: var(--green);
  margin-bottom: 8px;
}
.thanks__spinner {
  display: inline-block;
  width: 46px;
  height: 46px;
  margin-bottom: 16px;
  border: 4px solid var(--line);
  border-top-color: var(--blue-500);
  border-radius: 50%;
  animation: checkout-spin .8s linear infinite;
}
@keyframes checkout-spin { to { transform: rotate(360deg); } }
.thanks ol { padding-left: 20px; }
.thanks ol li { margin-bottom: 12px; }

/* ==========================================================================
   Landing locale : hero, réassurance, split, CTA
   ========================================================================== */

.lhero {
  padding: clamp(28px, 4vw, 52px) 0 clamp(32px, 4.5vw, 60px);
  background: linear-gradient(180deg, #fbfdff 0%, #eef6fc 100%);
  border-bottom: 1px solid var(--line);
}

.lhero__grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}

.lhero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid #d9e9f6;
  border-radius: var(--radius-pill);
  padding: 7px 14px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--green);
  margin: 0 0 18px;
  max-width: none;
}

.lhero__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(32px, 4.6vw, 56px);
  line-height: 1;
  letter-spacing: -.035em;
  margin: 0 0 16px;
  text-wrap: balance;
}

.lhero__lede {
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1.6;
  color: var(--ink-muted);
  max-width: 52ch;
  margin-bottom: 26px;
}

.lhero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 20px; }

.lhero__perks {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 13.5px;
  color: var(--ink-faint);
  font-weight: 500;
  max-width: none;
}
.lhero__perks li { margin: 0; position: relative; padding-left: 18px; }
.lhero__perks li::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 11px; height: 6px;
  border-left: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  transform: translateY(-70%) rotate(-45deg);
}

/* Carte de preuve locale — remplace la photo produit qu'on n'a pas encore. */
.lcard {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 26px 28px;
  box-shadow: 0 18px 44px -24px rgba(10, 61, 98, .35);
}
.lcard__head {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 17px;
  color: var(--ink);
  margin-bottom: 18px;
  letter-spacing: -.01em;
}
.lcard__stats { list-style: none; padding: 0; margin: 0 0 18px; max-width: none; }
.lcard__stats li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line-soft);
  margin: 0;
}
.lcard__stats li:last-child { border-bottom: none; }
.lcard__stats strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 19px;
  color: var(--navy-700);
  letter-spacing: -.015em;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.lcard__stats span { font-size: 13px; color: var(--ink-faint); text-align: right; line-height: 1.4; }
.lcard__foot {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink-dim);
  padding-top: 16px;
  border-top: 1px solid var(--line);
  margin: 0;
}
.lcard__src { color: var(--ink-faint); font-size: 12px; }

/* ==========================================================================
   Hubs locaux : une landing principale et deux branches par ville
   ========================================================================== */

.city-landing-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(34px, 4.8vw, 68px) 0 clamp(48px, 6vw, 82px);
  background:
    radial-gradient(circle at 76% 30%, rgba(78, 177, 230, .18), transparent 29%),
    linear-gradient(135deg, #f8fcff 0%, #edf8fc 62%, #e7f4f8 100%);
  border-bottom: 1px solid var(--line);
}
.city-landing-hero::after {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  right: -160px;
  bottom: -280px;
  border: 1px solid rgba(43, 143, 199, .12);
  border-radius: 50%;
  box-shadow: 0 0 0 64px rgba(43, 143, 199, .035);
}
.city-landing-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .96fr) minmax(430px, 1.04fr);
  gap: clamp(40px, 7vw, 92px);
  align-items: center;
}
.city-landing-hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--blue-500);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: .085em;
  text-transform: uppercase;
}
.city-landing-hero__kicker span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(28, 157, 107, .1);
}
.city-landing-hero h1 {
  max-width: 12ch;
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(42px, 4.6vw, 64px);
  font-weight: 700;
  letter-spacing: -.048em;
  line-height: .98;
  text-wrap: balance;
}
.city-landing-hero h1 em {
  color: var(--blue-500);
  font-style: normal;
}
.city-landing-hero__lede {
  max-width: 57ch;
  margin: 22px 0 0;
  color: var(--ink-muted);
  font-size: clamp(16px, 1.35vw, 18px);
  line-height: 1.62;
}
.city-landing-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 28px;
}
.city-landing-hero__perks {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 30px 0 0;
  padding: 22px 0 0;
  max-width: 580px;
  border-top: 1px solid rgba(103, 145, 171, .22);
  list-style: none;
}
.city-landing-hero__perks li { margin: 0; }
.city-landing-hero__perks strong {
  display: block;
  color: var(--navy-800);
  font-family: var(--font-display);
  font-size: 19px;
  letter-spacing: -.02em;
}
.city-landing-hero__perks span {
  display: block;
  margin-top: 2px;
  color: var(--ink-faint);
  font-size: 11.5px;
}

.city-offer {
  overflow: hidden;
  border: 1px solid rgba(201, 222, 234, .92);
  border-radius: 28px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 34px 80px -42px rgba(7, 56, 88, .5);
  backdrop-filter: blur(12px);
}
.city-offer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 17px 20px;
  border-bottom: 1px solid var(--line-soft);
}
.city-offer__head p {
  margin: 0;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}
.city-offer__head span {
  padding: 6px 10px;
  border-radius: 999px;
  background: #eaf7f1;
  color: #167957;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.city-offer__media {
  position: relative;
  min-height: 300px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(145deg, #f8fcff, #e8f5fa);
}
.city-offer__media img {
  position: relative;
  z-index: 1;
  width: min(64%, 280px);
  height: auto;
  filter: drop-shadow(0 28px 26px rgba(18, 65, 92, .17));
  transition: transform .3s ease;
}
.city-offer__media:hover img { transform: translateY(-5px) scale(1.015); }
.city-offer__halo {
  position: absolute;
  width: 255px;
  height: 255px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .75);
  box-shadow: 0 0 0 38px rgba(255, 255, 255, .28);
}
.city-offer__delivery {
  position: absolute;
  z-index: 2;
  right: 16px;
  bottom: 15px;
  padding: 8px 11px;
  border-radius: 11px;
  background: rgba(8, 48, 73, .92);
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
}
.city-offer__body {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  padding: 20px;
}
.city-offer__body > div { display: flex; align-items: baseline; gap: 6px; flex-wrap: wrap; }
.city-offer__eyebrow {
  flex-basis: 100%;
  color: var(--ink-faint);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.city-offer__body strong {
  color: var(--navy-800);
  font-family: var(--font-display);
  font-size: 29px;
  letter-spacing: -.035em;
}
.city-offer__body small { color: var(--ink-faint); font-size: 11px; }
.city-offer__body a { font-size: 13px; font-weight: 800; text-decoration: none; }
.city-offer__models {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-soft);
  list-style: none;
}
.city-offer__models li {
  min-width: 0;
  margin: 0;
  padding: 13px 14px;
  border-right: 1px solid var(--line-soft);
}
.city-offer__models li:last-child { border-right: 0; }
.city-offer__models span,
.city-offer__models strong { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.city-offer__models span { color: var(--ink-faint); font-size: 10.5px; }
.city-offer__models strong { margin-top: 3px; color: var(--ink); font-size: 12.5px; }

.city-products { scroll-margin-top: 92px; }
.city-products__help {
  margin: 24px 0 0;
  color: var(--ink-muted);
  font-size: 14px;
  text-align: center;
}
.city-products__help a { font-weight: 800; }
.city-reasons__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.city-reasons article {
  min-height: 220px;
  padding: 26px;
  border: 1px solid #d8e8f1;
  border-radius: 22px;
  background: var(--white);
}
.city-reasons article > span {
  color: var(--blue-500);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
}
.city-reasons h3 {
  margin: 42px 0 10px;
  color: var(--navy-800);
  font-family: var(--font-display);
  font-size: 23px;
  letter-spacing: -.03em;
}
.city-reasons article p { margin: 0; color: var(--ink-muted); font-size: 14px; line-height: 1.62; }
.city-context__intro { margin-top: 20px; color: var(--ink-muted); line-height: 1.68; }
.city-context__link { display: inline-block; margin-top: 21px; font-size: 14px; font-weight: 800; }

.city-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(38px, 5.5vw, 76px) 0 clamp(44px, 6vw, 82px);
  background:
    radial-gradient(circle at 78% 25%, rgba(95, 176, 230, .15), transparent 25%),
    linear-gradient(145deg, #f9fcff, #edf7fb);
  border-bottom: 1px solid var(--line);
}
.city-hero::before {
  content: "";
  position: absolute;
  width: 330px; height: 330px;
  right: -90px; bottom: -170px;
  border: 1px solid rgba(43, 143, 199, .12);
  border-radius: 50%;
  box-shadow: 0 0 0 44px rgba(43, 143, 199, .035);
}
.city-hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(390px, .95fr);
  gap: clamp(40px, 7vw, 90px);
  align-items: center;
}
.city-hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 19px;
  color: var(--blue-500);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.city-hero__kicker span {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(28, 157, 107, .1);
}
.city-hero h1 {
  max-width: 13ch;
  font-family: var(--font-body);
  font-size: clamp(39px, 4.5vw, 61px);
  font-weight: 700;
  letter-spacing: -.045em;
  line-height: 1;
  text-wrap: balance;
}
.city-hero h1 em { color: var(--blue-500); font-style: normal; }
.city-hero__lede {
  max-width: 59ch;
  margin: 22px 0 0;
  color: var(--ink-muted);
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1.65;
}
.city-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.city-hero__perks {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin: 21px 0 0;
  padding: 0;
  max-width: none;
  color: var(--ink-faint);
  font-size: 13px;
  list-style: none;
}
.city-hero__perks li { position: relative; margin: 0; padding-left: 17px; }
.city-hero__perks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 800;
}

.city-brief {
  overflow: hidden;
  border: 1px solid rgba(213, 227, 239, .9);
  border-radius: 26px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 32px 70px -40px rgba(10, 61, 98, .5);
  backdrop-filter: blur(10px);
}
.city-brief__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 22px;
  border-bottom: 1px solid var(--line);
}
.city-brief__top p {
  margin: 0;
  color: var(--ink-faint);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.city-brief__top span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 11px;
  background: var(--navy-700);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 800;
}
.city-brief__place {
  margin: 0;
  padding: 22px 22px 18px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -.035em;
}
.city-brief dl { margin: 0; padding: 0 22px 22px; }
.city-brief dl > div {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 18px;
  padding: 15px 0;
  border-top: 1px solid var(--line-soft);
}
.city-brief dt {
  color: var(--ink-faint);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.city-brief dd {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.5;
}

.city-tree {
  position: relative;
  z-index: 4;
  background: var(--navy-900);
}
.city-tree__inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-top: 12px;
  padding-bottom: 12px;
}
.city-tree__label {
  flex: none;
  margin: 0;
  color: #829cae;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.city-tree ol {
  display: flex;
  align-items: stretch;
  gap: 6px;
  margin: 0;
  padding: 0;
  max-width: none;
  list-style: none;
}
.city-tree li { margin: 0; }
.city-tree a {
  height: 48px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 16px;
  border: 1px solid transparent;
  border-radius: 13px;
  color: #b9cad8;
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none;
}
.city-tree a span { color: #66859a; font-size: 10.5px; letter-spacing: .04em; }
.city-tree a:hover { background: #102e42; color: var(--white); }
.city-tree a.is-active {
  border-color: rgba(127, 196, 239, .2);
  background: #13364d;
  color: var(--white);
}
.city-tree a.is-active span { color: var(--blue-300); }

.city-context__grid {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: clamp(40px, 8vw, 110px);
  align-items: start;
}
.city-context h2,
.city-section-head h2,
.city-areas h2,
.city-coverage h2 {
  margin-top: 12px;
  font-family: var(--font-body);
  font-size: clamp(31px, 3.5vw, 46px);
  font-weight: 700;
  letter-spacing: -.04em;
  line-height: 1.04;
}
.city-context__content > p {
  color: var(--ink-muted);
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1.75;
}
.city-context__advice {
  margin-top: 25px;
  padding: 21px 23px;
  border-left: 3px solid var(--blue-500);
  border-radius: 0 18px 18px 0;
  background: #f1f8fc;
}
.city-context__advice > span {
  display: block;
  margin-bottom: 7px;
  color: var(--blue-500);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.city-context__advice p { margin: 0; color: var(--ink-soft); }

.city-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 36px;
  margin-bottom: 32px;
}
.city-section-head > div { flex: 1 1 600px; }
.city-section-head > p {
  flex: 0 1 390px;
  margin: 0;
  color: var(--ink-muted);
  font-size: 15.5px;
  line-height: 1.65;
}
.city-section-head .home-kicker { margin-top: 0; }

.city-paths {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.city-path {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid #d7e9f3;
  border-radius: 25px;
  background: #edf8fb;
  color: var(--ink);
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}
.city-path:hover {
  transform: translateY(-5px);
  color: var(--ink);
  box-shadow: 0 26px 50px -38px rgba(10, 61, 98, .55);
}
.city-path--dark { border-color: var(--navy-800); background: var(--navy-800); color: var(--white); }
.city-path--dark:hover { color: var(--white); }
.city-path__number {
  align-self: flex-end;
  color: var(--ink-faint);
  font-size: 11px;
  font-weight: 800;
}
.city-path--dark .city-path__number { color: #6f91a8; }
.city-path__eyebrow {
  margin-top: auto;
  color: var(--blue-500);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.city-path--dark .city-path__eyebrow { color: var(--blue-300); }
.city-path strong {
  display: block;
  max-width: 18ch;
  margin-top: 9px;
  font-family: var(--font-display);
  font-size: clamp(23px, 2.5vw, 31px);
  line-height: 1.05;
  letter-spacing: -.03em;
}
.city-path > span:not(.city-path__number, .city-path__eyebrow, .city-path__link) {
  max-width: 52ch;
  margin-top: 13px;
  color: var(--ink-muted);
  font-size: 14px;
  line-height: 1.55;
}
.city-path--dark > span:not(.city-path__number, .city-path__eyebrow, .city-path__link) { color: #a9c1d2; }
.city-path__link { margin-top: 20px; font-size: 13.5px; font-weight: 800; }

.city-areas {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr);
  gap: clamp(42px, 8vw, 100px);
  align-items: start;
}
.city-areas .home-kicker,
.city-coverage .home-kicker { margin-top: 0; }
.city-areas > div > p:last-child,
.city-coverage > div > p {
  margin-top: 18px;
  color: var(--ink-muted);
}
.city-areas ul,
.city-coverage__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
  padding: 0;
  max-width: none;
  list-style: none;
}
.city-areas li,
.city-coverage__list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 52px;
  margin: 0;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--white);
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}
.city-areas li span,
.city-coverage__list li span {
  color: var(--ink-faint);
  font-size: 10.5px;
  font-weight: 800;
}

.city-subhero {
  padding: clamp(42px, 6vw, 76px) 0;
  background: linear-gradient(145deg, #f9fcff, #edf7fb);
  border-bottom: 1px solid var(--line);
}
.city-subhero--delivery { background: linear-gradient(145deg, #fbfdff, #f1f8f5); }
.city-subhero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, .9fr);
  gap: clamp(40px, 7vw, 90px);
  align-items: center;
}
.city-subhero h1 {
  max-width: 17ch;
  margin-top: 13px;
  font-family: var(--font-body);
  font-size: clamp(37px, 4.3vw, 58px);
  font-weight: 700;
  letter-spacing: -.045em;
  line-height: 1.02;
  text-wrap: balance;
}
.city-subhero .lede { margin-top: 21px; }
.city-answer,
.city-delivery-card {
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: 23px;
  background: var(--white);
  box-shadow: 0 24px 55px -38px rgba(10, 61, 98, .5);
}
.city-answer > span {
  display: block;
  color: var(--blue-500);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.city-answer > strong {
  display: block;
  margin-top: 10px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 25px;
  line-height: 1.1;
}
.city-answer p { margin: 13px 0 0; color: var(--ink-muted); font-size: 14px; }

.city-delivery-card { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; }
.city-delivery-card p {
  margin: 0;
  padding: 14px 8px;
  border-radius: 14px;
  background: var(--tint);
  text-align: center;
}
.city-delivery-card strong {
  display: block;
  color: var(--navy-700);
  font-family: var(--font-display);
  font-size: 19px;
  line-height: 1.05;
}
.city-delivery-card span { display: block; margin-top: 5px; color: var(--ink-faint); font-size: 10.5px; line-height: 1.35; }

.delivery-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  max-width: none;
  list-style: none;
}
.delivery-steps li {
  min-height: 220px;
  margin: 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
}
.delivery-steps li > span {
  color: var(--blue-500);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
}
.delivery-steps strong {
  display: block;
  margin-top: 32px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 20px;
}
.delivery-steps p { margin: 10px 0 0; color: var(--ink-muted); font-size: 14px; }

.city-coverage {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(42px, 7vw, 90px);
  align-items: start;
}

/* --- Bande de réassurance ------------------------------------------------- */

.tstrip { background: var(--white); border-bottom: 1px solid var(--line); }
.tstrip__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 32px;
  padding-top: 16px;
  padding-bottom: 16px;
}
.tstrip p {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
  max-width: none;
}
.tstrip svg { color: var(--blue-500); flex: none; }
.tstrip--validation {
  background: #fffaf0;
  border-color: #f0dfb6;
}
.tstrip--validation p { color: #765b1c; }

/* --- Deux colonnes -------------------------------------------------------- */

/*
 * minmax(0, 1fr) et non 1fr : une piste de grille prend par défaut la largeur
 * min-content de son contenu. Le tableau BTU a un min-width de 480 px, il
 * élargissait donc la colonne au-delà du viewport mobile. Avec minmax(0, …) la
 * piste peut rétrécir et .table-scroll reprend son rôle d'ascenseur.
 */
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(24px, 3.5vw, 48px);
  align-items: start;
}
.split h2 { margin-top: 0; }
.split .callout { margin: 0; }
.callout__cta { margin: 14px 0 0; font-weight: 700; }

/* --- Bande de conversion -------------------------------------------------- */

.cta-band { background: var(--navy-700); padding: clamp(44px, 6vw, 76px) 0; text-align: center; }
.cta-band h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(24px, 3.2vw, 40px);
  letter-spacing: -.025em;
  line-height: 1.06;
  color: var(--white);
  margin: 0 auto 26px;
  max-width: 20ch;
  text-wrap: balance;
}
.cta-band p { color: #9fc4e3; font-size: 14px; margin: 20px auto 0; max-width: none; }

/* --- CTA collant (mobile) ------------------------------------------------- */

.sticky-cta { display: none; }

@media (max-width: 820px) {
  .sticky-cta {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 60;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 11px 16px calc(11px + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid var(--line);
    box-shadow: 0 -6px 24px rgba(10, 61, 98, .1);
  }
  .sticky-cta span { font-size: 13px; font-weight: 600; color: var(--ink-dim); }
  .sticky-cta .btn { flex: none; }
  /* Le CTA collant ne doit pas masquer le pied de page. */
  .site-footer { padding-bottom: 72px; }
}

@media (max-width: 980px) {
  .hero-store__grid { grid-template-columns: minmax(0, 1fr); }
  .hero-store__copy { max-width: 720px; }
  .hcard { width: min(100%, 620px); margin: 0 auto; }
  .hcard__media { height: clamp(330px, 55vw, 430px); }

  .pick-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pick-card:last-child { grid-column: 1 / -1; min-height: 300px; }

  .home-how__grid,
  .home-local__grid { grid-template-columns: minmax(0, 1fr); }
  .home-how__copy,
  .home-local__copy { max-width: 700px; }
  .air-demo { width: min(100%, 720px); }
  .home-local__cities { width: min(100%, 720px); }

  .home-sizing .btu-block { grid-template-columns: minmax(0, 1fr); }
  .home-sizing .btu-block__link { grid-column: 1; grid-row: auto; }

  .city-hero__grid,
  .city-landing-hero__grid,
  .city-subhero__grid,
  .city-context__grid,
  .city-areas,
  .city-coverage { grid-template-columns: minmax(0, 1fr); }
  .city-brief,
  .city-offer,
  .city-answer,
  .city-delivery-card { width: min(100%, 680px); }
  .city-tree__inner { align-items: flex-start; flex-direction: column; gap: 8px; padding-top: 14px; padding-bottom: 14px; }
  .city-tree ol { width: 100%; overflow-x: auto; }
  .city-tree a { white-space: nowrap; }
  .city-landing-hero__grid { gap: 34px; }
  .city-offer { width: min(100%, 660px); }
  .city-reasons__grid { grid-template-columns: minmax(0, 1fr); }
  .city-reasons article { min-height: 0; }
  .city-reasons h3 { margin-top: 26px; }

  .pdp__grid { grid-template-columns: minmax(0, 1fr); }
  .pdp__figure { max-width: 520px; }
}

@media (max-width: 900px) {
  .lhero__grid { grid-template-columns: minmax(0, 1fr); }
  .split { grid-template-columns: minmax(0, 1fr); }
}

/* --- Bandeau livraison ---------------------------------------------------- */

.ship-banner {
  display: flex;
  align-items: center;
  gap: 11px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 13px 16px;
  font-size: 14.5px;
  color: var(--ink-soft);
  margin: 0 0 24px;
  max-width: none;
}
.ship-banner svg { flex: none; }

/* --- Cartes catégorie ----------------------------------------------------- */

.cat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 16px; }
.cat-grid--compact { grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); }

.cat-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  text-decoration: none;
  transition: border-color .15s, transform .15s, box-shadow .15s;
}
.cat-card:hover { border-color: #9cc6e6; transform: translateY(-2px); box-shadow: 0 10px 26px rgba(10, 61, 98, .08); }
.cat-card__title { font-family: var(--font-display); font-weight: 800; font-size: 18px; color: var(--ink); letter-spacing: -.01em; }
.cat-card__text { font-size: 14px; line-height: 1.55; color: var(--ink-dim); }
.cat-card__go { margin-top: auto; font-size: 14px; font-weight: 600; color: var(--blue-500); }

/* --- Grille produits ------------------------------------------------------ */

.pgrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; }

.pcard { border: 1px solid var(--line); border-radius: 16px; background: var(--white); overflow: hidden; display: flex; flex-direction: column; }
.pcard__link { text-decoration: none; display: block; }
.pcard__media { display: block; aspect-ratio: 1/1; background: #eef5fb; }
.pcard__media img { width: 100%; height: 100%; object-fit: cover; }
.pcard__name { display: block; padding: 14px 16px 0; font-weight: 700; color: var(--ink); font-size: 15.5px; }
.pcard__specs { display: flex; flex-wrap: wrap; gap: 6px 14px; padding: 8px 16px 0; margin: 0; list-style: none; font-size: 13px; color: var(--ink-faint); }
.pcard__specs strong { color: var(--ink-soft); }
.pcard__foot { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; padding: 14px 16px 16px; margin: auto 0 0; }
.pcard__price { font-family: var(--font-display); font-weight: 800; font-size: 20px; }
.pcard__stock { font-size: 12.5px; color: var(--ink-faint); }
.pcard__stock.is-in { color: var(--green); font-weight: 600; }

.grid-empty {
  border: 1px dashed var(--line-thumb);
  border-radius: 18px;
  padding: clamp(28px, 5vw, 48px);
  background: var(--tint);
  text-align: center;
}
.grid-empty__title { font-family: var(--font-display); font-weight: 800; font-size: 20px; color: var(--ink); margin-bottom: 10px; }
.grid-empty p { max-width: 58ch; margin-left: auto; margin-right: auto; }
.grid-empty__cta { margin-top: 20px; }

/* --- Tableaux ------------------------------------------------------------- */

.table-scroll { overflow-x: auto; margin: 0 0 20px; }

.data-table {
  width: 100%;
  min-width: 480px;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: var(--white);
  font-size: 14.5px;
}
.data-table caption { caption-side: top; text-align: left; padding-bottom: 10px; font-size: 13.5px; color: var(--ink-faint); }
.data-table th, .data-table td { padding: 13px 16px; border-bottom: 1px solid var(--line-soft); text-align: left; }
.data-table thead th { background: var(--tint); font-size: 12.5px; text-transform: uppercase; letter-spacing: .05em; color: var(--ink-faint); border-bottom: 1px solid var(--line); }
.data-table tbody th { font-weight: 600; color: var(--ink); }
.data-table tbody td { color: var(--ink-dim); }
.data-table tbody tr:last-child th, .data-table tbody tr:last-child td { border-bottom: none; }
.data-table .is-yes { color: var(--navy-700); font-weight: 700; }
.data-table a { color: var(--navy-700); font-weight: 600; }

/* --- Blocs éditoriaux ----------------------------------------------------- */

.btu-block__link { font-weight: 600; }

.truth-block { border-left: 3px solid var(--blue-500); padding-left: clamp(16px, 3vw, 28px); }

.callout {
  border: 1px solid #cfe4f4;
  background: #f3f9fe;
  border-radius: 16px;
  padding: 20px 22px;
  margin: 20px 0;
}
.callout__label { font-size: 12.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--blue-500); margin-bottom: 6px; }
.callout p:last-child { margin-bottom: 0; }

.warn-block {
  border: 1px solid #f3d9a8;
  background: #fdf7ec;
  border-radius: 14px;
  padding: 16px 18px;
  margin: 0 0 22px;
  color: #6b5326;
  font-size: 15px;
  line-height: 1.6;
  max-width: none;
}

.answer {
  border: 1px solid var(--line);
  background: var(--tint);
  border-radius: 16px;
  padding: 22px 24px;
  margin: 0 0 24px;
}
.answer__label { font-size: 12.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--ink-faint); margin-bottom: 8px; }
.answer p:last-child { font-size: 17px; line-height: 1.6; color: var(--ink); margin-bottom: 0; }

.trust { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 28px; }
.trust__item h3 { font-size: 17px; font-weight: 700; margin: 12px 0 6px; }
.trust__item p { font-size: 14.5px; color: var(--ink-dim); margin: 0; }

/* --- Listes de liens ------------------------------------------------------ */

.link-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.link-list--inline { flex-direction: row; flex-wrap: wrap; gap: 10px 22px; }
.link-list a { font-weight: 600; }

.city-links { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 10px; }
.city-links a {
  display: flex; align-items: baseline; gap: 8px;
  padding: 12px 15px; border: 1px solid var(--line); border-radius: 12px;
  background: var(--white); text-decoration: none; font-weight: 600; font-size: 15px;
  transition: border-color .15s, background .15s;
}
.city-links a:hover { border-color: #9cc6e6; background: #f3f9fe; }
.city-links span { font-size: 12.5px; color: var(--ink-faint); font-weight: 500; }

.city-links__more { margin-top: 16px; font-weight: 600; }

/* Index des communes : compact, scannable, 150 entrées sans mur de texte. */
.commune-index {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 4px 18px;
  max-width: none;
}
.commune-index li { margin: 0; font-size: 14.5px; line-height: 1.5; }
.commune-index span { color: var(--ink-faint); font-size: 12.5px; }

.muted-inline { color: var(--ink-faint); font-size: 12.5px; }

.guide-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.guide-list a {
  display: flex; flex-direction: column; gap: 6px;
  padding: 22px; border: 1px solid var(--line); border-radius: 16px;
  background: var(--white); text-decoration: none;
  transition: border-color .15s, transform .15s;
}
.guide-list a:hover { border-color: #9cc6e6; transform: translateY(-2px); }
.guide-list strong { font-family: var(--font-display); font-size: 19px; font-weight: 800; color: var(--ink); letter-spacing: -.015em; }
.guide-list span { font-size: 14.5px; line-height: 1.55; color: var(--ink-dim); }

/* --- FAQ ------------------------------------------------------------------ */

.faq { display: flex; flex-direction: column; border-top: 1px solid var(--line-faq); max-width: 78ch; }
.faq__item { border-bottom: 1px solid var(--line-faq); }
.faq__item h3 { font: inherit; margin: 0; }

.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 2px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-weight: 700;
  font-size: clamp(15.5px, 1.7vw, 17px);
  color: var(--ink);
  transition: opacity .15s;
}
.faq__q:hover { opacity: .68; }

.faq__icon {
  position: relative;
  flex: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--line-thumb);
  color: var(--navy-700);
}
.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  background: currentColor;
  border-radius: 2px;
}
.faq__icon::before { width: 14px; height: 2.4px; transform: translate(-50%, -50%); }
.faq__icon::after { width: 2.4px; height: 14px; transform: translate(-50%, -50%); transition: opacity .15s; }
.faq__item.is-open .faq__icon::after { opacity: 0; }

.faq__a {
  padding: 0 44px 20px 2px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-dim);
  text-wrap: pretty;
}

/* --- Guides --------------------------------------------------------------- */

.guide-section { margin: 0 0 32px; }
.guide-section h2 { margin-top: 8px; }
.guide-cta { display: flex; flex-wrap: wrap; gap: 12px; margin: 0 0 28px; }
.anchors { font-size: 14.5px; color: var(--ink-faint); }
.anchors a { font-weight: 600; }
.anchor-target { display: block; height: 0; scroll-margin-top: 140px; }

/* --- Calculateur BTU ------------------------------------------------------ */

.calc { border: 1px solid var(--line); border-radius: 18px; padding: 22px 24px; background: var(--white); }
.calc > label { display: block; font-weight: 700; font-size: 15.5px; margin-bottom: 14px; }
.calc__field { display: flex; align-items: center; gap: 10px; margin-top: 8px; font-weight: 400; }
.calc__field input {
  width: 110px; padding: 11px 13px; font-size: 16px;
  border: 1.5px solid #dbe7f1; border-radius: 12px; background: var(--white); color: var(--ink);
}
.calc__opts { border: none; padding: 0; margin: 0 0 16px; }
.calc__opts legend { font-size: 12.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--ink-faint); padding: 0; margin-bottom: 10px; }
.calc__opts label { display: flex; align-items: flex-start; gap: 9px; font-size: 14.5px; color: var(--ink-soft); margin-bottom: 8px; cursor: pointer; }
.calc__opts input { margin-top: 3px; flex: none; }
.calc__out {
  font-family: var(--font-display); font-weight: 800; font-size: clamp(20px, 2.6vw, 28px);
  color: var(--navy-700); letter-spacing: -.02em; margin: 0 0 10px;
}
.calc__cta a { font-weight: 700; }

/* --- Pages fixes ---------------------------------------------------------- */

.identity {
  list-style: none;
  padding: 18px 22px;
  margin: 0 0 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--tint);
  max-width: 62ch;
}
.identity li { margin-bottom: 7px; font-size: 15px; color: var(--ink-soft); }
.identity li:last-child { margin-bottom: 0; }
.identity strong { color: var(--ink); font-weight: 600; }

main h2 { font-family: var(--font-display); font-weight: 800; font-size: clamp(21px, 2.4vw, 27px); letter-spacing: -.02em; margin: 30px 0 12px; }
main h3 { font-size: 17.5px; font-weight: 700; margin: 22px 0 8px; }
.big-link { font-family: var(--font-display); font-weight: 800; font-size: clamp(20px, 2.6vw, 28px); letter-spacing: -.02em; }

/* --- Header : note du bandeau --------------------------------------------- */

.topbar__note { align-items: center; color: #b9d7f0; padding-left: 18px; border-left: 1px solid rgba(255, 255, 255, .2); }

/* --- Responsive ----------------------------------------------------------- */

@media (max-width: 700px) {
  .hero-store {
    padding-top: 30px;
    background: linear-gradient(145deg, #f8fcff, #e8f4f8);
  }
  .hero-store::before { background-size: 44px 44px; opacity: .22; }
  .hero-store__eyebrow { margin-top: 20px; }
  .hero-store__title {
    font-size: clamp(38px, 10.8vw, 47px);
    line-height: 1.02;
    letter-spacing: -.038em;
  }
  .hero-store__lede { font-size: 16.5px; margin-top: 19px; }
  .hero-store__actions { align-items: stretch; flex-direction: column; margin-top: 24px; }
  .hero-store__actions .btn { width: 100%; justify-content: center; }
  .hero-store__guide { justify-content: center; min-height: 36px; }
  .hero-store__proofs { gap: 8px 14px; }

  .hcard { border-radius: 24px; }
  .hcard__media { height: clamp(270px, 88vw, 370px); }
  .hcard__badge { left: 14px; top: 14px; font-size: 10px; }
  .hcard__surface { top: 13px; right: 13px; padding: 9px 11px; }
  .hcard__surface strong { font-size: 16px; }
  .hcard__body { padding: 19px; }
  .hcard__heading { align-items: flex-start; }
  .hcard__name { font-size: 20px; }
  .hcard__amount { font-size: 24px; }
  .hcard__actions { grid-template-columns: minmax(0, 1fr); gap: 3px; }

  .pdp__keyspecs { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pdp__keyspecs strong { font-size: 18px; overflow-wrap: anywhere; }
  .pdp__image-note { overflow-wrap: anywhere; }

  .home-section-head { align-items: flex-start; flex-direction: column; gap: 17px; }
  .home-section-head > div,
  .home-section-head > p { flex: auto; }
  .home-section-head h2,
  .home-how h2,
  .home-local h2 { font-size: clamp(32px, 10vw, 43px); }

  .pick-grid { grid-template-columns: minmax(0, 1fr); }
  .pick-card,
  .pick-card:last-child { grid-column: auto; min-height: 320px; }

  .home-how__grid,
  .home-local__grid { gap: 36px; }
  .air-demo { min-height: 330px; grid-template-columns: 1.2fr .8fr; border-radius: 23px; }
  .air-demo__room,
  .air-demo__outside { padding: 19px; }
  .air-demo__unit { width: 86px; height: 152px; bottom: 30px; }
  .air-demo__unit::before { top: 66px; }
  .air-demo__unit::after { bottom: 16px; }
  .air-demo__unit > span { top: 22px; }
  .air-demo__unit > span:nth-child(2) { top: 31px; }
  .air-demo__unit > span:nth-child(3) { top: 40px; }
  .air-demo__hose { right: 24%; bottom: 48px; border-width: 14px; }
  .air-demo__heat { right: 15px; bottom: 16px; max-width: 75px; font-size: 10.5px; }

  .home-sizing .btu-block__link { padding: 22px; }
  .home-sizing .data-table { min-width: 500px; }

  .home-local__stats { gap: 8px; }
  .home-local__stats strong { font-size: 19px; }
  .home-local__cities { padding: 22px 18px; border-radius: 22px; }
  .home-local .city-links { grid-template-columns: minmax(0, 1fr); max-height: 330px; }

  .city-hero { padding-top: 30px; }
  .city-landing-hero { padding-top: 28px; }
  .city-landing-hero h1 { font-size: clamp(38px, 11vw, 48px); }
  .city-landing-hero__actions { flex-direction: column; }
  .city-landing-hero__actions .btn { width: 100%; justify-content: center; }
  .city-landing-hero__perks { gap: 10px; }
  .city-landing-hero__perks strong { font-size: 16px; }
  .city-landing-hero__perks span { font-size: 10px; }
  .city-offer__media { min-height: 250px; }
  .city-offer__body { align-items: flex-start; flex-direction: column; }
  .city-offer__models { grid-template-columns: minmax(0, 1fr); }
  .city-offer__models li { display: flex; justify-content: space-between; gap: 18px; border-right: 0; border-bottom: 1px solid var(--line-soft); }
  .city-offer__models li:last-child { border-bottom: 0; }
  .city-hero h1,
  .city-subhero h1 { font-size: clamp(36px, 10.8vw, 46px); }
  .city-hero__actions { flex-direction: column; }
  .city-hero__actions .btn { width: 100%; justify-content: center; }
  .city-brief dl > div { grid-template-columns: minmax(0, 1fr); gap: 6px; }
  .city-tree__inner { padding-left: var(--gutter); padding-right: var(--gutter); }
  .city-tree ol { padding-bottom: 2px; }
  .city-tree a { padding: 0 13px; }
  .city-section-head { align-items: flex-start; flex-direction: column; gap: 15px; }
  .city-section-head > div,
  .city-section-head > p { flex: auto; }
  .city-paths,
  .city-areas ul,
  .city-coverage__list,
  .delivery-steps { grid-template-columns: minmax(0, 1fr); }
  .city-path { min-height: 300px; }
  .city-delivery-card { grid-template-columns: minmax(0, 1fr); }
  .city-delivery-card p { display: flex; align-items: center; justify-content: space-between; gap: 12px; text-align: left; }
  .city-delivery-card span { margin-top: 0; text-align: right; }
  .delivery-steps li { min-height: 190px; }

  .ship-banner { align-items: flex-start; }
  .truth-block { padding-left: 14px; }

  /* La pastille d'alerte passe en bloc : en ligne, « Forte chaleur en
   * Centre-Val de Loire » seul occupait déjà deux lignes dans un rayon de 999 px. */
  .halert { display: flex; border-radius: 16px; align-items: flex-start; padding: 12px 14px; }
  .halert__pulse { margin-top: 5px; }
  .halert__msg { min-width: 0; }
  .halert__info { margin-left: auto; }
  .halert__note { left: -2px; }

  .pdp__thumbs li { width: 72px; height: 72px; }
  .cartline--page .cartline__thumb { width: 62px; height: 62px; }
}
