/* =========================================================================
   AUTO-ÉCOLE DE JOUARRE — DESIGN SYSTEM
   Couleurs : #111111 (encre), #FAF8F5 (papier), #FF5B23 (orange route),
   #E8460A (orange profond), #1B1B1D (asphalte), #FFD23F (jaune marquage)
   Typo : ITC Serif Gothic (titres, police fournie) / Inter (texte) /
   Space Mono (data)
   Signature : ligne de marquage routier en tirets, utilisée comme séparateur.
   ========================================================================= */

@font-face {
  font-family: "ITC Serif Gothic";
  src: url("../fonts/itc-serif-gothic-light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "ITC Serif Gothic";
  src: url("../fonts/itc-serif-gothic-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "ITC Serif Gothic";
  src: url("../fonts/itc-serif-gothic-extrabold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "ITC Serif Gothic";
  src: url("../fonts/itc-serif-gothic-heavy.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "ITC Serif Gothic";
  src: url("../fonts/itc-serif-gothic-black.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #111111;
  --paper: #faf8f5;
  --paper-alt: #f1ede6;
  --orange: #ff5b23;
  --orange-deep: #e8460a;
  --asphalt: #1b1b1d;
  --asphalt-2: #232326;
  --graphite: #5b5a57;
  --line: #e4dfd6;
  --line-dark: #38383a;
  --roadline: #ffd23f;
  --ok: #2f8f5b;

  --font-display: "League Spartan", "Inter", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: "Space Mono", "SFMono-Regular", monospace;

  --container: 1180px;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow-card: 0 1px 2px rgba(17, 17, 17, 0.04), 0 12px 28px -14px rgba(17, 17, 17, 0.18);
}

/* ---------------------------- RESET ------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; width: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  /* Pas d'overflow-x ici : Safari iOS a un bug documenté qui casse le
     positionnement "fixed" (utilisé par le popup) quand overflow est
     posé sur <body>. Le blocage du défilement latéral se fait sur
     <html> uniquement (voir plus haut), qui n'a pas ce problème. */
  width: 100%;
  max-width: 100vw;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-display); margin: 0; line-height: 1.08; }
p { margin: 0; }
button { font: inherit; cursor: pointer; }
input, select, textarea { font: inherit; }

.skip-link {
  position: absolute; left: -9999px; top: 0; background: var(--orange); color: #fff;
  padding: 10px 16px; z-index: 999; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 2px;
}

.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0; padding: 0; margin: -1px;
}

.text-orange { color: var(--orange); }

/* ---------------------------- BUTTONS -----------------------------------
   Boutons "taillés" plutôt que pilules plates génériques : bords plus
   carrés, relief façon bouton/interrupteur physique, petit effet
   d'enfoncement au clic — inspiré des interfaces tactiles et chaleureuses
   type Outer Wilds plutôt que du bouton web plat habituel. */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 26px; border-radius: 10px; font-weight: 700; font-size: 0.92rem;
  text-transform: uppercase; letter-spacing: 0.03em;
  border: 2px solid transparent; transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
  white-space: normal; text-align: center; position: relative; max-width: 100%;
}
.btn:active { transform: translateY(3px); }

.btn--primary {
  background: linear-gradient(180deg, #ff8a52, var(--orange) 55%, var(--orange-deep));
  color: #fff; border-color: rgba(0,0,0,0.18);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.4), inset 0 -3px 0 rgba(0,0,0,0.16), 0 4px 0 #b8340a, 0 8px 16px -8px rgba(232,70,10,0.5);
}
.btn--primary:hover { filter: brightness(1.04); }
.btn--primary:active { box-shadow: inset 0 1px 0 rgba(255,255,255,0.25), inset 0 -1px 0 rgba(0,0,0,0.16); }

.btn--outline {
  background: var(--paper); color: var(--ink); border-color: var(--ink);
  box-shadow: 0 3px 0 var(--ink);
}
.btn--outline:hover { background: var(--ink); color: #fff; }
.btn--outline:active { box-shadow: 0 0 0 var(--ink); }

.btn--outline.btn--on-dark {
  background: var(--asphalt-2); color: #fff; border-color: rgba(255,255,255,0.35);
  box-shadow: 0 3px 0 rgba(255,255,255,0.18);
}
.btn--outline.btn--on-dark:hover { background: #fff; color: var(--ink); }
.btn--outline.btn--on-dark:active { box-shadow: 0 0 0 rgba(255,255,255,0.18); }

.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); box-shadow: 0 3px 0 var(--line); }
.btn--ghost:active { box-shadow: 0 0 0 var(--line); }

.btn--sm { padding: 9px 18px; font-size: 0.82rem; }
.btn--lg { padding: 16px 30px; font-size: 0.98rem; }
.btn--block { width: 100%; }
.btn--mobile-only { display: none; }

/* ---------------------------- LAYOUT ------------------------------------ */
.section { padding: 96px 0; }
.section__inner, .site-header__inner, .site-footer__inner {
  max-width: var(--container); margin: 0 auto; padding: 0 28px;
}
.section--dark { background: var(--asphalt); color: #fff; }
.section--dark .section__lead { color: #c9c7c2; }

.section__eyebrow {
  font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.14em;
  font-size: 0.78rem; color: var(--orange); margin-bottom: 14px;
}
.section__title { font-size: clamp(1.8rem, 3.2vw, 2.6rem); font-weight: 700; max-width: 720px; letter-spacing: -0.01em; }
.section__lead { margin-top: 16px; max-width: 620px; color: var(--graphite); font-size: 1.05rem; }

.badge { font-family: var(--font-mono); font-size: 0.72rem; padding: 4px 10px; border-radius: 999px; text-transform: uppercase; letter-spacing: 0.04em; white-space: nowrap; }

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal--in { opacity: 1; transform: translateY(0); }

/* ---------------------------- OFFER MODAL ---------------------------------
   Présenté comme un vrai coupon/ticket de réduction (encoches sur les
   côtés + ligne perforée) plutôt qu'une simple pop-in générique. */
.site-panel { position: fixed; inset: 0; z-index: 100; display: flex; align-items: center; justify-content: center; padding: 20px; }
.site-panel[hidden] { display: none; }
.site-panel__scrim { position: absolute; inset: 0; background: rgba(17, 17, 17, 0.78); backdrop-filter: blur(3px); }
.site-panel__box {
  --img-h: 320px;
  position: relative; z-index: 1; width: 100%; max-width: 480px; max-height: 92vh; overflow-y: auto;
  background: var(--asphalt-2); border: 1px solid var(--line-dark); border-radius: 18px;
  text-align: left; color: #fff;
  box-shadow: 0 30px 70px -12px rgba(0,0,0,0.65), 0 0 0 1px rgba(255,91,35,0.25);
  animation: site-panel-in 0.32s cubic-bezier(.2,.9,.3,1.2);
}
@keyframes site-panel-in {
  from { opacity: 0; transform: scale(0.9) translateY(14px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .site-panel__box { animation: none; }
}

/* Encoches façon ticket, à la jonction photo / détails de l'offre */
.site-panel__notch {
  position: absolute; top: var(--img-h); transform: translateY(-50%); width: 24px; height: 24px;
  border-radius: 50%; background: rgba(20, 17, 15, 0.86); backdrop-filter: blur(3px); z-index: 3;
}
.site-panel__notch--left { left: -12px; }
.site-panel__notch--right { right: -12px; }
.site-panel__perforation {
  position: absolute; top: var(--img-h); left: 22px; right: 22px; z-index: 2; transform: translateY(-1px);
  border-top: 2px dashed rgba(255,255,255,0.28);
}

.site-panel__media { position: relative; }
.site-panel__media[hidden] { display: none; }
.site-panel__image {
  display: block; width: 100%; height: var(--img-h); object-fit: cover; object-position: top;
  border-radius: 18px 18px 0 0;
}
.site-panel__media::after {
  content: ""; position: absolute; inset: 0; border-radius: 18px 18px 0 0;
  background: linear-gradient(to bottom, transparent 55%, var(--asphalt-2) 100%);
}
.site-panel__tag {
  position: absolute; left: 20px; bottom: 22px; z-index: 1;
  display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-mono);
  font-size: 0.75rem; font-weight: 700; background: var(--orange); color: #fff;
  padding: 6px 14px; border-radius: 999px; box-shadow: 0 4px 14px -4px rgba(255,91,35,0.6);
}

.site-panel__body { padding: 22px 32px 32px; }
.site-panel__media[hidden] ~ .site-panel__perforation { top: 0; }
.site-panel__media[hidden] ~ .site-panel__body { padding-top: 46px; }
.site-panel__dismiss {
  position: absolute; top: 14px; right: 14px; z-index: 4; background: rgba(17,17,17,0.6); border: none; color: #fff;
  font-size: 1rem; width: 32px; height: 32px; border-radius: 50%; cursor: pointer; line-height: 1;
  display: flex; align-items: center; justify-content: center; backdrop-filter: blur(4px);
}
.site-panel__dismiss:hover { background: rgba(17,17,17,0.85); }
.site-panel__heading {
  font-size: 2.3rem; font-weight: 800; letter-spacing: -0.01em; line-height: 1.05;
}
.site-panel__text { margin-top: 10px; font-size: 1.1rem; color: #d8d6d2; }
.site-panel__price {
  margin-top: 16px; font-size: 1.05rem; color: #fff;
}
.site-panel__price strong { font-family: var(--font-mono); color: var(--roadline); font-size: 1.2em; }
.site-panel__date { margin-top: 6px; font-size: 0.82rem; color: #a8a6a1; font-family: var(--font-mono); }
.site-panel__box .btn { margin-top: 22px; }
.site-panel__dismiss-link {
  display: block; width: 100%; margin-top: 14px; background: none; border: none; color: #8f8d89;
  font-size: 0.82rem; padding: 6px; cursor: pointer; text-decoration: underline; text-underline-offset: 3px;
  text-align: center;
}
.site-panel__dismiss-link:hover { color: #d8d6d2; }

/* ---------------------------- HEADER ------------------------------------ */
body.panel-open { overflow: hidden; }

.site-header {
  position: sticky; top: 0; z-index: 50; background: rgba(250,248,245,0.85);
  backdrop-filter: blur(10px); border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.site-header.is-scrolled { border-color: var(--line); box-shadow: 0 4px 20px -12px rgba(0,0,0,0.15); }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; padding-bottom: 14px; gap: 20px; }

.brand { display: flex; align-items: center; gap: 10px; }
.brand__mark { color: var(--orange); display: flex; }
.brand__text { font-family: var(--font-display); font-weight: 700; font-size: 0.95rem; line-height: 1.15; letter-spacing: -0.01em; }

.main-nav { display: flex; gap: 30px; }
.main-nav a { font-size: 0.94rem; font-weight: 500; color: var(--ink); position: relative; padding: 4px 0; }
.main-nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -2px; height: 2px; background: var(--orange);
  transition: right 0.2s ease;
}
.main-nav a:hover::after { right: 0; }

.site-header__actions { display: flex; align-items: center; gap: 14px; }

.hamburger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 40px; background: none; border: none; padding: 0;
}
.hamburger span { display: block; height: 2px; width: 22px; background: var(--ink); border-radius: 2px; transition: transform 0.2s ease, opacity 0.2s ease; }
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  position: sticky; top: 0; z-index: 49; background: var(--paper); border-bottom: 1px solid var(--line);
  padding: 10px 28px 24px;
}
.mobile-nav nav { display: flex; flex-direction: column; }
.mobile-nav a { padding: 14px 4px; border-bottom: 1px solid var(--line); font-size: 1.05rem; font-weight: 600; }
.mobile-nav__actions { display: flex; gap: 12px; margin-top: 18px; }
.mobile-nav__actions .btn { flex: 1; }

/* ---------------------------- HERO --------------------------------------- */
.hero { position: relative; overflow: hidden; padding: 64px 0 80px; }
.hero__road {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.5;
  background:
    radial-gradient(600px 400px at 88% -10%, rgba(255,91,35,0.14), transparent 60%),
    radial-gradient(500px 320px at -5% 90%, rgba(255,210,63,0.10), transparent 65%);
}
.hero__inner {
  max-width: var(--container); margin: 0 auto; padding: 0 28px;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; position: relative;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-mono);
  font-size: 0.8rem; letter-spacing: 0.06em; color: var(--graphite); margin-bottom: 22px;
}
.eyebrow__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 4px rgba(255,91,35,0.15); }

.hero__title {
  font-size: clamp(2.6rem, 5.6vw, 4.3rem); font-weight: 800; letter-spacing: -0.02em;
}
.hero__subtitle { margin-top: 22px; max-width: 480px; font-size: 1.1rem; color: var(--graphite); }

.hero__price-seal {
  position: absolute; z-index: 3; right: -20px; top: -18px; width: 190px; height: 190px;
  display: flex; align-items: center; justify-content: center;
  animation: seal-pulse 2.4s ease-in-out infinite;
}
@keyframes seal-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.045); }
}
@media (prefers-reduced-motion: reduce) {
  .hero__price-seal { animation: none; }
}
.hero__price-seal-shape {
  position: absolute; inset: 0; width: 100%; height: 100%;
  fill: var(--ink); stroke: var(--roadline); stroke-width: 4;
  animation: seal-spin 26s linear infinite;
}
@keyframes seal-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@media (prefers-reduced-motion: reduce) {
  .hero__price-seal-shape { animation: none; }
}
.hero__price-seal::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  box-shadow: 0 18px 34px -10px rgba(17,17,17,0.6), 0 0 0 6px rgba(255,210,63,0.18); z-index: -1;
}
.hero__price-seal-content {
  position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center;
  transform: rotate(-6deg); text-align: center;
}
.hero__price-seal-label {
  font-family: var(--font-mono); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.04em;
  color: var(--roadline); max-width: 96px; line-height: 1.25;
}
.hero__price-seal-value {
  font-family: var(--font-display); font-weight: 900; font-size: 2.6rem; line-height: 1; color: #fff;
  margin-top: 4px;
}

.hero__actions { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }
.hero__note { margin-top: 14px; font-size: 0.8rem; color: var(--graphite); }

.hero__visual { position: relative; height: 480px; }
.hero__photo-frame {
  position: absolute; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-card);
  border: 6px solid var(--paper);
}
.hero__photo-frame--main { width: 78%; height: 82%; top: 0; right: 0; }
.hero__photo-frame--main img { height: 100%; width: 100%; object-fit: cover; }
.hero__photo-frame--small { width: 52%; aspect-ratio: 4/3; bottom: 0; left: 0; z-index: 2; }
.hero__photo-frame--small img { height: 100%; width: 100%; object-fit: cover; }

.hero__badge {
  position: absolute; top: 18px; left: -6px; background: var(--ink); color: #fff;
  padding: 12px 18px; border-radius: var(--radius-sm); display: flex; flex-direction: column;
  transform: rotate(-4deg); box-shadow: var(--shadow-card); z-index: 3;
}
.hero__badge-label { font-family: var(--font-display); font-weight: 800; font-size: 1.05rem; color: var(--orange); }
.hero__badge-sub { font-family: var(--font-mono); font-size: 0.68rem; color: #d8d6d2; letter-spacing: 0.04em; }

/* Signature — ligne de marquage routier, séparateur de sections */
.road-divider {
  height: 3px; margin: 0 auto; max-width: var(--container);
  background-image: repeating-linear-gradient(to right, var(--roadline) 0 26px, transparent 26px 46px);
  opacity: 0.85;
}

/* ---------------------------- SERVICES ----------------------------------- */
.services-grid {
  margin-top: 52px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
}
.service-card { background: var(--paper); padding: 30px 26px; display: flex; flex-direction: column; transition: background 0.2s ease; }
.service-card:hover { background: #fff; }
.service-card__icon { color: var(--orange); margin-bottom: 18px; }
.service-card__icon svg { width: 34px; height: 34px; }
.service-card h3 { font-size: 1.08rem; font-weight: 700; margin-bottom: 10px; }
.service-card p { color: var(--graphite); font-size: 0.92rem; flex: 1; }
.service-card__link { margin-top: 18px; font-weight: 600; font-size: 0.88rem; color: var(--orange-deep); }
.service-card__link:hover { text-decoration: underline; }

/* ---------------------------- TARIFS -------------------------------------- */
.tarifs-taux { margin-top: 18px; font-size: 0.92rem; color: #c9c7c2; display: flex; align-items: center; gap: 10px; }
.notes-row { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 28px; }
.eval-note {
  display: flex; gap: 12px; align-items: flex-start;
  background: var(--asphalt-2); border: 1px solid var(--line-dark); border-radius: var(--radius-sm);
  padding: 16px 18px; max-width: 460px; flex: 1 1 320px;
}
.eval-note--student { border-color: var(--orange); background: rgba(255, 91, 35, 0.08); }
.eval-note__icon { color: var(--roadline); font-size: 1.1rem; line-height: 1.4; }
.eval-note p { font-size: 0.9rem; color: #d8d6d2; }
.eval-note strong { color: #fff; }

.tabs { display: flex; gap: 8px; margin-top: 44px; border-bottom: 1px solid var(--line-dark); padding-bottom: 0; }
.tab {
  background: none; border: none; color: #8f8d89; font-weight: 600; font-size: 0.95rem;
  padding: 12px 18px; border-radius: 8px 8px 0 0; position: relative; top: 1px;
}
.tab[aria-selected="true"] { color: #fff; border-bottom: 2px solid var(--orange); }
.tab:hover { color: #fff; }

.price-grid { margin-top: 36px; display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; }
.price-card {
  background: var(--asphalt-2); border: 1px solid var(--line-dark); border-radius: var(--radius);
  padding: 28px 26px; display: flex; flex-direction: column; position: relative;
}
.price-card--highlight {
  border: 2px solid var(--orange); box-shadow: 0 0 0 1px var(--orange), 0 12px 28px -14px rgba(255,91,35,0.35);
  padding-top: 40px;
}
.price-card__ribbon {
  position: absolute; top: 0; left: 0; right: 0; background: var(--orange); color: #fff;
  font-family: var(--font-mono); font-size: 0.72rem; font-weight: 700; text-align: center;
  padding: 7px 10px; border-radius: calc(var(--radius) - 2px) calc(var(--radius) - 2px) 0 0;
  letter-spacing: 0.02em;
}
.price-card__head { display: block; }
.price-variant__nom {
  font-family: var(--font-display); font-size: 1.4rem; font-weight: 800; margin-top: 0;
  letter-spacing: -0.01em; line-height: 1.15;
}
.price-card__prix { margin-top: 16px; font-family: var(--font-mono); font-size: 2.1rem; font-weight: 700; color: var(--orange); }
.price-card__prix span { font-size: 1rem; color: #a8a6a1; }
.price-card__offer-label {
  display: inline-block; margin-top: 16px; font-family: var(--font-mono); font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.04em; color: var(--roadline);
  background: rgba(255, 210, 63, 0.12); padding: 3px 9px; border-radius: 999px;
}
.price-card__prix--offer { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; margin-top: 8px; }
.price-card__prix-old { font-size: 1.1rem; font-weight: 500; color: #8f8d89; text-decoration: line-through; }
.price-card__prix-new { font-size: 2.1rem; font-weight: 700; color: var(--orange); }
.price-card__tag { font-size: 0.78rem; color: var(--roadline); margin-top: 4px; font-weight: 600; }
.price-card__list { margin-top: 18px; margin-bottom: 26px; display: flex; flex-direction: column; gap: 9px; flex: 1; }
.price-card__list li { font-size: 0.88rem; color: #cfcdc8; padding-left: 20px; position: relative; }
.price-card__list li::before { content: "—"; position: absolute; left: 0; color: var(--orange); }

.price-toggle {
  margin-top: -6px; display: inline-flex; width: fit-content; background: #161617; border: 1px solid var(--line-dark);
  border-radius: 8px; padding: 3px; gap: 3px;
}
.price-toggle__btn {
  background: #2c2c30; border: none; color: #cfcdc8; font-family: var(--font-mono); font-size: 0.68rem;
  text-transform: uppercase; letter-spacing: 0.01em; padding: 6px 11px; border-radius: 6px; font-weight: 700;
  box-shadow: 0 2px 0 #111114, inset 0 1px 0 rgba(255,255,255,0.06);
  transform: translateY(0); white-space: nowrap;
  transition: transform 0.1s ease, box-shadow 0.1s ease, background 0.15s ease, color 0.15s ease;
}
.price-toggle__btn:hover:not(.is-active) { background: #38383e; }
.price-toggle__btn:active { transform: translateY(2px); box-shadow: inset 0 2px 3px rgba(0,0,0,0.5); }
.price-toggle__btn.is-active {
  background: var(--orange-deep); color: #fff; transform: translateY(2px);
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.45);
}

.options-tarifaires { margin-top: 40px; display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; max-width: 620px; }
.option-tarifaire {
  background: var(--asphalt-2); border: 1px solid var(--line-dark); border-radius: var(--radius);
  padding: 22px 24px; display: flex; flex-direction: column; gap: 10px;
}
.option-tarifaire__icon { color: var(--orange); }
.option-tarifaire__icon svg { width: 26px; height: 26px; }
.option-tarifaire__nom { font-weight: 700; font-size: 0.98rem; }
.option-tarifaire__desc { font-size: 0.84rem; color: #a8a6a1; flex: 1; }
.option-tarifaire__prix { font-family: var(--font-mono); font-weight: 700; font-size: 1.3rem; color: var(--orange); }

/* ---------------------------- AVIS (étoiles + bouton) ----------------------- */
.avis-google { margin-top: 44px; }
.avis-google-card {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 28px;
  width: 100%; max-width: 780px;
  background: var(--asphalt-2); border: 1px solid var(--line-dark); border-radius: var(--radius);
  padding: 34px 44px; box-shadow: var(--shadow-card);
}
.avis-google-card__identity { display: flex; align-items: center; gap: 20px; }
.avis-google-card__g {
  width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; color: #fff; flex-shrink: 0;
  background: conic-gradient(from -45deg, #4285F4 0deg 90deg, #34A853 90deg 180deg, #FBBC05 180deg 270deg, #EA4335 270deg 360deg);
}
.avis-google-card__rating-block { text-align: left; }
.avis-google-card__note { font-family: var(--font-mono); font-weight: 700; font-size: 2.4rem; line-height: 1; }
.avis-google-card__over5 { font-size: 1.1rem; color: #a8a6a1; font-weight: 400; }
.avis-google-card__stars { color: var(--roadline); font-size: 1.3rem; letter-spacing: 2px; margin-top: 2px; }
.avis-google-card__label { color: #a8a6a1; font-size: 0.85rem; margin-top: 2px; }
.avis-google-card .btn { flex-shrink: 0; }

.temoignages { margin-top: 32px; display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; max-width: 900px; }
.temoignage {
  margin: 0; background: var(--asphalt-2); border: 1px solid var(--line-dark); border-radius: var(--radius);
  padding: 24px 26px; display: flex; flex-direction: column; gap: 12px;
}
.temoignage__stars { color: var(--roadline); font-size: 0.95rem; letter-spacing: 2px; }
.temoignage__texte { font-size: 0.92rem; color: #e4e2dd; line-height: 1.5; flex: 1; }
.temoignage__footer { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.temoignage__prenom { font-style: normal; font-weight: 700; font-size: 0.88rem; }
.temoignage__source { font-family: var(--font-mono); font-size: 0.7rem; color: #8f8d89; text-transform: uppercase; letter-spacing: 0.04em; }

/* ---------------------------- AVIS (widget Google) ------------------------- */

/* ---------------------------- CONTACT -------------------------------------- */
.contact-grid { margin-top: 52px; display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px; }
.contact-list { display: flex; flex-direction: column; gap: 22px; }
.contact-list li { display: flex; gap: 14px; align-items: flex-start; min-width: 0; }
.contact-list li > div { min-width: 0; flex: 1; }
.contact-list__icon { font-size: 1.15rem; margin-top: 2px; flex-shrink: 0; }
.contact-list__label { display: block; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--graphite); margin-bottom: 3px; }
.contact-list div a, .contact-list div span { font-weight: 600; font-size: 1.02rem; overflow-wrap: break-word; word-break: break-word; }
.contact-list div a:hover { color: var(--orange-deep); }

.map-frame { margin-top: 30px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); height: 220px; }
.map-frame iframe { width: 100%; height: 100%; border: 0; }

.contact-form {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px; box-shadow: var(--shadow-card); display: flex; flex-direction: column; gap: 18px;
}
.form-row { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 7px; min-width: 0; }
.form-field label { font-size: 0.85rem; font-weight: 600; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; max-width: 100%; box-sizing: border-box;
  border: 1.5px solid var(--line); border-radius: 8px; padding: 11px 13px; background: var(--paper);
  transition: border-color 0.15s ease; font: inherit;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  border-color: var(--orange); outline: none;
}
.form-field textarea { resize: vertical; min-height: 100px; }
.form-required-note { font-size: 0.8rem; color: var(--graphite); margin-top: -8px; }
.form-status { font-size: 0.9rem; min-height: 1.2em; }
.form-status--ok { color: var(--ok); }
.form-status--error { color: var(--orange-deep); }

/* ---------------------------- FOOTER ---------------------------------------- */
.site-footer { background: var(--ink); color: #d8d6d2; padding: 64px 0 28px; }
.site-footer__inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; }
.site-footer__brand .brand__text { font-family: var(--font-display); font-weight: 800; font-size: 1.2rem; color: #fff; }
.site-footer__brand p { margin-top: 14px; font-size: 0.9rem; max-width: 320px; color: #a8a6a1; }
.site-footer__col h3 { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; color: #8f8d89; margin-bottom: 16px; }
.site-footer__col { display: flex; flex-direction: column; gap: 11px; }
.site-footer__col a { font-size: 0.92rem; }
.site-footer__col a:hover { color: var(--orange); }
.site-footer__bottom {
  max-width: var(--container); margin: 48px auto 0; padding: 24px 28px 0; border-top: 1px solid var(--line-dark);
  font-size: 0.82rem; color: #75736f;
}

/* ============================================================================
   DÉCORATIONS DE SAISON
   Activées uniquement quand SAISON.active = true dans js/data.js.
   Purement additif : ne modifie aucun texte, aucune structure du contenu.

   Système à 4 couches par thème, chacune redessinée entièrement à la main
   (aucune image, aucun clipart — SVG et formes CSS pures) pour rester dans
   l'identité noir/orange du site :
     .season-strip + .bulb        → bandeau sous le header, lumières
                                      individuelles qui scintillent chacune
                                      à leur rythme
     .season-particles + .particle → grandes formes en parallaxe (loin/flou
                                      + proche/net) qui dérivent dans le hero
     .season-sparkles + .sparkle  → fines paillettes qui scintillent
     .season-ornament             → badge animé en continu, près du logo
   ============================================================================ */

.season-strip { height: 20px; position: sticky; top: 0; z-index: 45; overflow: visible; }
.season-ornament { display: inline-block; position: relative; margin-left: 6px; top: -13px; }
.season-particles, .season-sparkles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.season-particles { z-index: 1; }
.season-sparkles { z-index: 2; }
.particle {
  position: absolute; top: -6%; animation-timing-function: linear; animation-iteration-count: infinite;
  animation-fill-mode: backwards;
}
.particle--far { filter: blur(1.2px); }
.bulb { position: absolute; top: 50%; transform: translateY(-50%); animation-iteration-count: infinite; animation-timing-function: ease-in-out; }
.sparkle {
  position: absolute; width: 3px; height: 3px; border-radius: 50%;
  animation-name: sparkle-twinkle; animation-iteration-count: infinite; animation-timing-function: ease-in-out;
}
@keyframes sparkle-twinkle {
  0%, 100% { opacity: 0; transform: scale(0.3); }
  50% { opacity: 1; transform: scale(1.6); }
}
@media (prefers-reduced-motion: reduce) {
  .season-particles, .season-sparkles { display: none; }
  .bulb, .season-ornament { animation: none !important; }
}

/* ---------- NOËL — lanternes chaudes et bois, esprit feu de camp ---------- */
.season-strip--noel { background: linear-gradient(to bottom, #2a1f16, #1b1310); }

.bulb--noel {
  width: 7px; height: 7px; border-radius: 50%;
  background: radial-gradient(circle, #ffe6b8, #ffb454 55%, rgba(255,180,84,0) 100%);
  box-shadow: 0 0 7px 2px rgba(255, 180, 84, 0.75);
  animation-name: bulb-twinkle-noel;
}
@keyframes bulb-twinkle-noel {
  0%, 100% { opacity: 0.45; transform: translateY(-50%) scale(0.8); }
  50% { opacity: 1; transform: translateY(-50%) scale(1.25); }
}

.season-ornament--noel {
  width: 15px; height: 15px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #6b4a30, #2a1c11 75%);
  border: 2px solid #1b1310; transform-origin: top center;
  animation: ornament-swing-noel 3.4s ease-in-out infinite;
}
@keyframes ornament-swing-noel {
  0%, 100% { transform: rotate(-14deg); }
  50% { transform: rotate(10deg); }
}
.season-ornament--noel::before {
  content: ""; position: absolute; top: 2px; left: 50%; width: 2px; height: 5px;
  background: var(--roadline); border-radius: 1px; transform: translateX(-50%);
  box-shadow: 0 0 5px rgba(255,210,63,0.85);
}

.particle--noel {
  width: calc(7px * var(--scale, 1)); height: calc(7px * var(--scale, 1)); border-radius: 50%;
  background: #ffffff; box-shadow: 0 0 8px rgba(255, 255, 255, 0.85);
  animation-name: particle-fall-sway;
}
.sparkle--noel { background: #ffd9a0; box-shadow: 0 0 6px 2px rgba(255, 200, 130, 0.85); }

/* Grand sapin, planté en bas du hero — silhouette reconnaissable au premier
   coup d'oeil plutôt qu'une suggestion abstraite */
.season-illustration { position: absolute; bottom: 0; z-index: 2; pointer-events: none; }
.season-illustration--noel {
  left: 20px; width: 130px; height: 168px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 130'%3E%3Crect x='42' y='108' width='16' height='20' rx='2' fill='%234a3323'/%3E%3Cpath d='M50 8 L60 26 L52 26 L64 46 L54 46 L68 68 L32 68 L46 46 L36 46 L48 26 L40 26 Z' fill='%23213f2c'/%3E%3Cpath d='M50 40 L62 60 L54 60 L70 84 L30 84 L46 60 L38 60 Z' fill='%232a4d37'/%3E%3Cpath d='M50 72 L66 96 L57 96 L76 112 L24 112 L43 96 L34 96 Z' fill='%2333593f'/%3E%3Cpath d='M50 4 L53.5 10.5 L60.5 11.5 L55.5 16.5 L56.8 23.5 L50 20 L43.2 23.5 L44.5 16.5 L39.5 11.5 L46.5 10.5 Z' fill='%23FFD23F'/%3E%3Ccircle cx='44' cy='58' r='3.4' fill='%23FF5B23'/%3E%3Ccircle cx='60' cy='66' r='3.4' fill='%23FFD23F'/%3E%3Ccircle cx='38' cy='80' r='3.4' fill='%23FFD23F'/%3E%3Ccircle cx='58' cy='88' r='3.4' fill='%23FF5B23'/%3E%3Ccircle cx='46' cy='100' r='3.4' fill='%23FF5B23'/%3E%3Ccircle cx='64' cy='102' r='3.4' fill='%23FFD23F'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-size: contain; background-position: bottom;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,0.45));
  animation: tree-sway 5s ease-in-out infinite;
}
@keyframes tree-sway {
  0%, 100% { transform: rotate(-1.2deg); }
  50% { transform: rotate(1.2deg); }
}

/* ---------- SAINT-VALENTIN — ligne de route en coeur, pas de rose bonbon ---------- */
.season-strip--saint-valentin { background: linear-gradient(to bottom, #1f1417, #17100f); }

.bulb--saint-valentin {
  width: 10px; height: 9px; background: linear-gradient(135deg, #ff5c7a, #d81145);
  transform: translateY(-50%) rotate(-45deg); animation-name: bulb-twinkle-valentin;
}
.bulb--saint-valentin::before, .bulb--saint-valentin::after {
  content: ""; position: absolute; width: inherit; height: inherit; background: inherit; border-radius: 50%;
}
.bulb--saint-valentin::before { top: -4.5px; left: 0; }
.bulb--saint-valentin::after { left: 4.5px; top: 0; }
@keyframes bulb-twinkle-valentin {
  0%, 100% { opacity: 0.5; transform: translateY(-50%) rotate(-45deg) scale(0.8); }
  50% { opacity: 1; transform: translateY(-50%) rotate(-45deg) scale(1.2); }
}

.season-ornament--saint-valentin { width: 16px; height: 15px; animation: ornament-pulse 1.8s ease-in-out infinite; }
@keyframes ornament-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.18); }
}
.season-ornament--saint-valentin::before {
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='15'%3E%3Cpath d='M8 14S1 9.5 1 5.3C1 2.9 2.7 1 5 1c1.4 0 2.4.7 3 1.6C8.6 1.7 9.6 1 11 1c2.3 0 4 1.9 4 4.3 0 4.2-7 9.7-7 9.7z' fill='%23D81145'/%3E%3C/svg%3E");
  background-size: contain; background-repeat: no-repeat;
  filter: drop-shadow(0 0 4px rgba(216, 17, 69, 0.6));
}

.particle--saint-valentin {
  width: calc(15px * var(--scale, 1)); height: calc(13px * var(--scale, 1));
  background: linear-gradient(135deg, #ff5c7a, #d81145);
  transform: rotate(-45deg);
  animation-name: particle-drift;
  filter: drop-shadow(0 0 5px rgba(216, 17, 69, 0.45));
}
.particle--saint-valentin::before, .particle--saint-valentin::after {
  content: ""; position: absolute; width: inherit; height: inherit; background: inherit; border-radius: 50%;
}
.particle--saint-valentin::before { top: calc(-6.5px * var(--scale, 1)); left: 0; }
.particle--saint-valentin::after { left: calc(6.5px * var(--scale, 1)); top: 0; }
.sparkle--saint-valentin { background: #ffb8a0; box-shadow: 0 0 6px 2px rgba(255, 138, 92, 0.85); }

/* Grand coeur qui flotte dans le hero — reconnaissable direct */
.season-illustration--saint-valentin {
  right: 30px; top: 18%; width: 108px; height: 96px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 90'%3E%3Cdefs%3E%3ClinearGradient id='g' x1='0' y1='0' x2='1' y2='1'%3E%3Cstop offset='0' stop-color='%23FF6B6B'/%3E%3Cstop offset='1' stop-color='%23C81145'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath d='M50,88 C20,65 2,45 2,25 C2,8 18,2 32,6 C40,11 46,17 50,25 C54,17 60,11 68,6 C82,2 98,8 98,25 C98,45 80,65 50,88 Z' fill='url(%23g)'/%3E%3Cellipse cx='30' cy='24' rx='11' ry='6' fill='%23ffffff' fill-opacity='.35' transform='rotate(-25 30 24)'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-size: contain;
  filter: drop-shadow(0 6px 16px rgba(200, 20, 70, 0.4));
  animation: heart-beat 1.8s ease-in-out infinite;
}
@keyframes heart-beat {
  0%, 100% { transform: scale(1) rotate(-4deg); }
  15% { transform: scale(1.12) rotate(-4deg); }
  30% { transform: scale(0.98) rotate(-4deg); }
  45% { transform: scale(1.08) rotate(-4deg); }
  60% { transform: scale(1) rotate(-4deg); }
}

/* ---------- PÂQUES — piste d'oeufs pastel, comme un chemin de chasse aux oeufs ---------- */
.season-strip--paques { background: linear-gradient(to bottom, #232326, #1b1b1d); }

.bulb--paques {
  width: 8px; height: 10px; border-radius: 50% 50% 50% 50% / 62% 62% 38% 38%;
  background: var(--egg-color, #ffd6e0); animation-name: bulb-bob-paques;
  box-shadow: 0 0 5px rgba(255, 255, 255, 0.35);
}
@keyframes bulb-bob-paques {
  0%, 100% { transform: translateY(-50%) rotate(-6deg); }
  50% { transform: translateY(-70%) rotate(6deg); }
}

.season-ornament--paques {
  width: 13px; height: 16px; border-radius: 50% 50% 50% 50% / 62% 62% 38% 38%;
  background: linear-gradient(160deg, #fff3b0, #ffd6e0 70%);
  animation: ornament-wobble-paques 2.6s ease-in-out infinite;
}
@keyframes ornament-wobble-paques {
  0%, 100% { transform: rotate(-10deg); }
  50% { transform: rotate(8deg); }
}
.season-ornament--paques::before {
  content: ""; position: absolute; top: 4px; left: 3px; width: 7px; height: 5px;
  border: 1px solid var(--orange-deep); border-top: none; border-right: none;
  transform: rotate(20deg); opacity: 0.7;
}

.particle--paques {
  width: calc(14px * var(--scale, 1)); height: calc(17px * var(--scale, 1));
  border-radius: 50% 50% 50% 50% / 62% 62% 38% 38%;
  background: var(--egg-color, #ffd6e0);
  animation-name: particle-drift-egg;
  box-shadow: 0 0 7px rgba(255, 255, 255, 0.4);
}
.sparkle--paques { background: #fff9e8; box-shadow: 0 0 6px 2px rgba(255, 249, 232, 0.9); }

/* Grand oeuf décoré, posé dans un nid en bas du hero */
.season-illustration--paques {
  right: 26px; width: 100px; height: 138px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 138'%3E%3Cellipse cx='50' cy='118' rx='42' ry='10' fill='%23c9954f' fill-opacity='.4'/%3E%3Cpath d='M20 108 Q10 100 22 96 Q16 88 28 88 Q26 78 38 82 Q44 108 20 108Z' fill='%23a9752f'/%3E%3Cpath d='M80 108 Q90 100 78 96 Q84 88 72 88 Q74 78 62 82 Q56 108 80 108Z' fill='%23c9954f'/%3E%3Cpath d='M50,4 C72,4 84,42 84,68 C84,98 68,114 50,114 C32,114 16,98 16,68 C16,42 28,4 50,4 Z' fill='%23FFF6E8'/%3E%3Cpath d='M50,4 C72,4 84,42 84,68 C84,98 68,114 50,114 C32,114 16,98 16,68 C16,42 28,4 50,4 Z' fill='url(%23eggshade)' fill-opacity='.5'/%3E%3Cdefs%3E%3ClinearGradient id='eggshade' x1='0' y1='0' x2='1' y2='1'%3E%3Cstop offset='0' stop-color='%23FFD6E0'/%3E%3Cstop offset='.5' stop-color='%23FFF3B0'/%3E%3Cstop offset='1' stop-color='%23C8F4DE'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath d='M20 50 Q35 40 50 50 T80 50' stroke='%23D7C6FF' stroke-width='6' fill='none'/%3E%3Cpath d='M17 72 Q35 64 50 72 T83 72' stroke='%23FF5B23' stroke-width='6' fill='none'/%3E%3Ccircle cx='30' cy='30' r='4' fill='%23FFD23F'/%3E%3Ccircle cx='58' cy='24' r='4' fill='%23FF5B23'/%3E%3Ccircle cx='68' cy='94' r='4' fill='%23D7C6FF'/%3E%3Ccircle cx='34' cy='96' r='4' fill='%23FFD23F'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-size: contain; background-position: bottom;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,0.4));
  animation: egg-wobble 3.2s ease-in-out infinite;
}
@keyframes egg-wobble {
  0%, 100% { transform: rotate(-3deg); }
  50% { transform: rotate(3deg); }
}

/* ---------- Animations de dérive partagées ---------- */
@keyframes particle-fall-sway {
  0% { transform: translate(0, -20px); }
  25% { transform: translate(10px, 130px); }
  50% { transform: translate(-8px, 280px); }
  75% { transform: translate(10px, 420px); }
  100% { transform: translate(0, 580px); }
}
@keyframes particle-drift {
  0% { transform: translateY(-20px) translateX(0) rotate(-45deg); }
  25% { transform: translateY(130px) translateX(16px) rotate(-38deg); }
  50% { transform: translateY(280px) translateX(-12px) rotate(-50deg); }
  75% { transform: translateY(420px) translateX(14px) rotate(-40deg); }
  100% { transform: translateY(580px) translateX(0) rotate(-45deg); }
}
@keyframes particle-drift-egg {
  0% { transform: translateY(-20px) translateX(0) rotate(0deg); }
  25% { transform: translateY(130px) translateX(18px) rotate(14deg); }
  50% { transform: translateY(280px) translateX(-16px) rotate(-12deg); }
  75% { transform: translateY(420px) translateX(12px) rotate(10deg); }
  100% { transform: translateY(580px) translateX(0) rotate(0deg); }
}

/* ---------------------------- FILET ANTI-DÉBORDEMENT --------------------------
   Par défaut, les enfants de grid/flex refusent de rétrécir sous la largeur
   de leur contenu (ex. un long email, un long nom de formule dans un menu
   déroulant) — c'est la cause la plus fréquente de débordement horizontal
   sur mobile. Cette règle l'autorise explicitement, sur tous les
   conteneurs concernés du site. */
.services-grid > *, .price-grid > *, .options-tarifaires > *, .contact-grid > *,
.form-row > *, .temoignages > *, .site-footer__inner > *, .price-toggle > * {
  min-width: 0;
}

/* ---------------------------- RESPONSIVE ------------------------------------- */
@media (max-width: 980px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .site-footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .main-nav { display: none; }
  .site-header__actions .btn--sm { display: none; }
  .hamburger { display: flex; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { height: 380px; margin-top: 20px; order: -1; }
  .hero__title { font-size: clamp(2.3rem, 9.5vw, 3rem); }
  .section { padding: 68px 0; }
  .season-illustration--noel { width: 95px; height: 123px; left: 12px; }
  .hero__price-seal { width: 130px; height: 130px; top: 14px; right: 10px; }
  .hero__price-seal-value { font-size: 2rem; }
  .season-illustration--saint-valentin { width: 78px; height: 70px; top: 6%; right: 16px; }
  .season-illustration--paques { width: 74px; height: 102px; right: 14px; }

  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { width: 100%; }

  .tabs { gap: 6px; }
  .tab { padding: 11px 14px; font-size: 0.86rem; }

  .price-card { padding: 24px 22px; }
  .service-card { padding: 26px 22px; }
  .service-card__icon svg { width: 30px; height: 30px; }

  .avis-google-card { padding: 28px 26px; }
  .contact-form { padding: 26px 24px; }
}

@media (max-width: 640px) {
  .section__inner { padding: 0 20px; }
  .site-header__inner { padding: 0 20px; }
  .form-row { grid-template-columns: 1fr; }
  .site-footer__inner { grid-template-columns: 1fr; gap: 32px; padding: 0 20px; }
  .btn--mobile-only { display: inline-flex; margin-top: 22px; }
  .option-tarifaire { flex-direction: column; align-items: flex-start; gap: 8px; }
  .options-tarifaires { grid-template-columns: 1fr; }
  .tabs { overflow-x: auto; -webkit-overflow-scrolling: touch; padding-bottom: 2px; }
  .tab { flex-shrink: 0; }
  .avis-google-card { flex-direction: column; align-items: flex-start; }
  .avis-google-card .btn { width: 100%; }

  /* HERO — simple empilement (photo au-dessus, texte en dessous), sans
     positionnement en plein écran ni éléments superposés en absolu :
     c'est la version qui a posé problème, on repart sur du solide. */
  .hero { padding: 32px 0 48px; }
  .hero__visual { height: 280px; }
  .hero__price-seal { width: 120px; height: 120px; top: 10px; right: 6px; }
  .hero__price-seal-value { font-size: 1.7rem; }
  .hero__badge { top: 10px; left: 0; }
  .season-illustration { display: none; }

  /* SERVICES et TARIFS — simple colonne unique empilée, pas de carrousel
     à glissement horizontal (source de débordements sur certains
     téléphones). */
  .services-grid { grid-template-columns: 1fr; }
  .price-grid { grid-template-columns: 1fr; }
}
