/* ============================================================
   ORIXAR STUDIOS — style.css
   v1 — Sombre premium, focus conversion Calendly
   ============================================================ */

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 80px; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4 { margin: 0; font-weight: 600; letter-spacing: -0.02em; line-height: 1.15; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
em { font-family: 'Instrument Serif', Georgia, serif; font-style: italic; font-weight: 400; color: var(--accent); letter-spacing: 0; }

/* ---------- Design tokens ---------- */
:root {
  --bg:            #0b0b0d;
  --bg-elev:       #131317;
  --bg-muted:      #0f0f13;
  --line:          #1f1f26;
  --line-strong:   #2a2a33;
  --text:          #ededed;
  --text-dim:      #a1a1a8;
  --text-mute:     #6b6b72;
  --accent:        #d12a22;   /* coral chaud */
  --accent-hover:  #e5453a;
  --accent-soft:   rgba(209,42,34, 0.12);
  --brand-red:     #d12a22;   /* rouge du logo (point du I) */
  --radius-sm:     8px;
  --radius:        14px;
  --radius-lg:     22px;
  --shadow:        0 20px 60px -20px rgba(0,0,0,0.6);
  --max:           1180px;
  --pad:           clamp(20px, 4vw, 40px);

  /* Animation tokens */
  --ease:          cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out:      cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast:      160ms;
  --dur:           260ms;
  --dur-slow:      520ms;
}

/* ============================================================
   MICROANIMATIONS — scroll reveal (progressive enhancement)
   Le contenu est visible par défaut. On ne le masque QUE si le
   JS a confirmé qu'il pilotera l'animation (classe .reveal-js sur
   <html>). Si le JS échoue, tout reste visible.
   ============================================================ */
.reveal-js [data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity var(--dur-slow) var(--ease-out),
              transform var(--dur-slow) var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
.reveal-js [data-reveal].is-in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal-js [data-reveal],
  [data-reveal] { opacity: 1 !important; transform: none !important; }
}

/* ---------- Utilities ---------- */
.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-dim);
  padding: 6px 12px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--bg-elev);
}

.section {
  position: relative;
  padding: clamp(72px, 10vw, 120px) 0;
}
.section--muted {
  background:
    radial-gradient(120% 100% at 50% 0%, rgba(209,42,34,0.03), transparent 55%),
    var(--bg-muted);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
/* Texture points discrète (élément de design) */
.section--dots::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 22px 22px;
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 0%, transparent 75%);
          mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 0%, transparent 75%);
  pointer-events: none;
}
.section--dots > .container { position: relative; z-index: 1; }

.section__head {
  max-width: 720px;
  margin: 0 0 56px;
}
.section__head .eyebrow { margin-bottom: 20px; }
/* Filet accent décoratif sous le titre de section */
.section__title::after {
  content: '';
  display: block;
  width: 52px;
  height: 3px;
  margin-top: 22px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--accent), rgba(209,42,34,0));
}
.section__title {
  font-size: clamp(30px, 4.6vw, 52px);
  line-height: 1.05;
  margin-bottom: 18px;
}
.section__lead {
  color: var(--text-dim);
  font-size: clamp(16px, 1.4vw, 18px);
  max-width: 62ch;
}

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.005em;
  border: 1px solid transparent;
  transition:
    transform var(--dur-fast) var(--ease),
    background var(--dur) var(--ease),
    color var(--dur) var(--ease),
    border-color var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease);
  white-space: nowrap;
  overflow: hidden;
  isolation: isolate;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn span[aria-hidden="true"] {
  display: inline-block;
  transition: transform var(--dur) var(--ease-out);
}
.btn:hover span[aria-hidden="true"] { transform: translateX(3px); }

.btn--primary {
  background: var(--accent);
  color: #0b0b0d;
  font-weight: 600;
}
.btn--primary:hover {
  background: var(--accent-hover);
  box-shadow: 0 12px 30px -12px rgba(209,42,34,0.55);
}
.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line-strong);
}
.btn--ghost:hover { border-color: var(--text-dim); background: var(--bg-elev); }
/* Bouton sombre — pour usage sur fond accent (coral) */
.btn--dark {
  background: #0b0b0d;
  color: #fff;
  font-weight: 600;
}
.btn--dark:hover {
  background: #17171d;
  box-shadow: 0 14px 34px -14px rgba(0,0,0,0.6);
}
.btn--lg { padding: 18px 28px; font-size: 16px; }
.btn--sm { padding: 10px 18px; font-size: 14px; }
.btn--block { width: 100%; }

/* ---------- Bulle WhatsApp flottante ---------- */
.wa-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25d366;
  color: #fff;
  box-shadow: 0 12px 30px -8px rgba(0,0,0,0.55), 0 6px 16px -6px rgba(37,211,102,0.5);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  animation: wa-pop 0.4s var(--ease-out) 0.7s both;
}
.wa-fab:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 16px 38px -8px rgba(0,0,0,0.6), 0 8px 20px -6px rgba(37,211,102,0.6);
}
.wa-fab__icon { width: 30px; height: 30px; }
.wa-fab__pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25d366;
  z-index: -1;
  animation: wa-pulse 2.6s ease-out infinite;
}
.wa-fab__label {
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  background: #0b0b0d;
  color: #fff;
  border: 1px solid var(--line-strong);
  padding: 9px 14px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 10px 24px -10px rgba(0,0,0,0.7);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}
@media (hover: hover) {
  .wa-fab:hover .wa-fab__label {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
  }
}
@keyframes wa-pulse {
  0%   { transform: scale(1);   opacity: 0.5; }
  70%  { transform: scale(1.7); opacity: 0; }
  100% { opacity: 0; }
}
@keyframes wa-pop {
  from { transform: scale(0); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .wa-fab__pulse { display: none; }
  .wa-fab { animation: none; }
}

/* ============================================================
   BANDEAU MERIDIAN (promo builder)
   ============================================================ */
.promobar {
  background: #08080a;
  border-bottom: 1px solid var(--line);
  font-size: 12.5px;
  color: var(--text-dim);
}
.promobar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 8px 0;
  flex-wrap: wrap;
}
.promobar__text { display: inline-flex; align-items: center; gap: 8px; letter-spacing: 0.02em; }
.promobar__text strong { color: var(--text); font-weight: 600; }
.promobar__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(209,42,34,0.5);
  animation: pulse 2.2s ease-in-out infinite;
}
.promobar__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--accent);
  transition: color var(--dur) var(--ease);
}
.promobar__cta span { transition: transform var(--dur) var(--ease-out); }
.promobar__cta:hover { color: var(--accent-hover); }
.promobar__cta:hover span { transform: translateX(3px); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 11, 13, 0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
  gap: 24px;
}
/* ---------- Logo / wordmark de marque ---------- */
.brandmark {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  line-height: 1;
}
.brandmark__badge {
  flex: none;
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: #fff;
  display: grid;
  place-items: center;
  overflow: hidden;
  box-shadow: 0 4px 14px -6px rgba(0,0,0,0.6);
}
.brandmark__badge img { width: 100%; height: 100%; object-fit: contain; }
.brandmark__img {
  height: 34px;
  width: auto;
  display: block;
}
.brandmark--lg .brandmark__badge { width: 52px; height: 52px; border-radius: 14px; }
.brandmark--lg .brandmark__img { height: 46px; }

/* Icône WhatsApp dans les boutons */
.wa-ico { width: 18px; height: 18px; flex: none; }
.nav__links {
  display: flex;
  gap: 28px;
  font-size: 14px;
  color: var(--text-dim);
}
.nav__links a {
  position: relative;
  transition: color var(--dur) var(--ease);
  padding: 4px 0;
}
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform var(--dur) var(--ease-out);
}
.nav__links a:hover { color: var(--text); }
.nav__links a:hover::after { transform: scaleX(1); }

.nav__right { display: flex; align-items: center; gap: 12px; }

/* ---------- Burger + menu mobile ---------- */
.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  cursor: pointer;
  transition: border-color var(--dur) var(--ease);
}
.nav__burger:hover { border-color: var(--text-dim); }
.nav__burger span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--dur) var(--ease), opacity var(--dur-fast) var(--ease);
}
.nav__burger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.is-active span:nth-child(2) { opacity: 0; }
.nav__burger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 45;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 96px var(--pad) 48px;
  background: rgba(11, 11, 13, 0.98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease), visibility var(--dur);
}
html.menu-open { overflow: hidden; }
html.menu-open .mobile-menu { opacity: 1; visibility: visible; transform: none; }

.mobile-menu__links { display: flex; flex-direction: column; margin-bottom: 26px; }
.mobile-menu__links a {
  font-size: clamp(24px, 7vw, 30px);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  transition: color var(--dur) var(--ease), padding-left var(--dur) var(--ease);
}
.mobile-menu__links a:hover,
.mobile-menu__links a:active { color: var(--accent); padding-left: 8px; }

/* ============================================================
   HERO — fond photo + overlay
   ============================================================ */
.hero {
  position: relative;
  padding: clamp(96px, 14vw, 160px) 0 clamp(80px, 10vw, 120px);
  overflow: hidden;
  isolation: isolate;
  min-height: 560px;
  display: flex;
  align-items: center;
}

/* Photo de fond du studio (remplaçable : assets/hero-studio.jpg) */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(11,11,13,0.30), rgba(11,11,13,0.55)),
    url('assets/hero-studio.jpg') center 30% / cover no-repeat;
}

/* Overlay : sombre à gauche (lisibilité du texte), révèle le studio à droite,
   fondu bas pour la transition + touche d'accent chaud en haut à droite */
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(70% 60% at 88% 6%, rgba(209,42,34,0.12) 0%, rgba(209,42,34,0) 55%),
    linear-gradient(97deg, rgba(11,11,13,0.94) 0%, rgba(11,11,13,0.66) 40%, rgba(11,11,13,0.28) 68%, rgba(11,11,13,0.12) 100%),
    linear-gradient(180deg, rgba(11,11,13,0) 55%, rgba(11,11,13,0.92) 100%);
}

.hero__inner {
  position: relative;
  max-width: 780px;
  z-index: 1;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  margin-bottom: 20px;
  background: rgba(11,11,13,0.6);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  font-variant-numeric: tabular-nums;
}
.hero__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(209,42,34,0.55);
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(209,42,34,0.55); }
  50%      { box-shadow: 0 0 0 6px rgba(209,42,34,0); }
}

.hero__title {
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin-bottom: 22px;
}
.hero__lead {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--text-dim);
  max-width: 52ch;
  margin-bottom: 34px;
}
.hero__lead strong { color: var(--text); font-weight: 600; }
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}
.hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  font-size: 14px;
  color: var(--text-dim);
}
.hero__proof li { display: flex; align-items: center; gap: 8px; }
.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
}

/* ============================================================
   TRUST BAR — marquee infinie avec vraies icônes brand
   ============================================================ */
.trust {
  padding: 44px 0 40px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-muted);
  overflow: hidden;
}
.trust__label {
  text-align: center;
  font-size: 12px;
  color: var(--text-mute);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.marquee {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 42s linear infinite;
}
.marquee:hover .marquee__track {
  animation-play-state: paused;
}
.marquee__group {
  display: flex;
  align-items: center;
  gap: clamp(32px, 5vw, 64px);
  padding-right: clamp(32px, 5vw, 64px);
  flex: 0 0 auto;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--text-dim);
  white-space: nowrap;
  transition: color var(--dur) var(--ease), opacity var(--dur) var(--ease);
  opacity: 0.75;
}
.brand:hover { color: var(--text); opacity: 1; }
.brand svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  flex: none;
}

/* ============================================================
   STATS BAND — rupture de contraste, gros chiffres
   ============================================================ */
.stats {
  position: relative;
  padding: clamp(40px, 6vw, 64px) 0;
  overflow: hidden;
  background:
    radial-gradient(80% 160% at 50% 0%, rgba(209,42,34,0.14), transparent 60%),
    linear-gradient(180deg, #141319 0%, #100f14 100%);
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}
.stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 26px 26px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 30%, #000 70%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 30%, #000 70%, transparent);
  opacity: 0.5;
  pointer-events: none;
}
.stats__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat {
  text-align: center;
  padding: 8px 12px;
  position: relative;
}
.stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 46px;
  background: linear-gradient(180deg, transparent, var(--line-strong), transparent);
}
.stat__num {
  display: block;
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(44px, 6vw, 68px);
  line-height: 1;
  color: var(--accent);
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.stat__suffix {
  font-size: 0.4em;
  color: var(--text-dim);
  font-family: 'Inter', sans-serif;
  letter-spacing: 0;
}
.stat__label {
  display: block;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* ============================================================
   GRID + CARDS (promesse, usecases)
   ============================================================ */
.grid {
  display: grid;
  gap: 20px;
}
.grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.card {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition:
    border-color var(--dur) var(--ease),
    transform var(--dur) var(--ease),
    background var(--dur) var(--ease);
}
.card:hover {
  border-color: var(--line-strong);
  transform: translateY(-3px);
  background: #17171d;
}
.card__num {
  display: inline-block;
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  color: var(--accent);
  font-size: 22px;
  margin-bottom: 14px;
}
.card__title {
  font-size: 20px;
  margin-bottom: 10px;
}
.card p { color: var(--text-dim); }

/* Usecase (pour qui) — style plus dense */
.usecase {
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  transition: background .2s ease, border-color .2s ease;
}
.usecase:hover {
  background: var(--bg-elev);
  border-color: var(--line-strong);
}
.usecase__num {
  display: block;
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  color: var(--accent);
  font-size: 20px;
  margin-bottom: 12px;
}
.usecase h3 { font-size: 18px; margin-bottom: 6px; }
.usecase p { color: var(--text-dim); font-size: 15px; }

/* ============================================================
   STUDIO — CAROUSEL horizontal scroll-snap
   ============================================================ */
.carousel {
  position: relative;
  margin: 0 calc(var(--pad) * -1);
  padding: 0 var(--pad);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 4%, #000 96%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 4%, #000 96%, transparent 100%);
}
.carousel__track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 4px 0 24px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.carousel__track::-webkit-scrollbar { display: none; }

.carousel__slide {
  position: relative;
  flex: 0 0 min(620px, 82vw);
  margin: 0;
  scroll-snap-align: start;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  transition: transform var(--dur-slow) var(--ease-out);
}
.carousel__slide:hover { transform: translateY(-3px); }
.carousel__slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(11,11,13,0.72) 100%);
  pointer-events: none;
}

.carousel__img {
  display: block;
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}
.carousel__cap {
  position: absolute;
  left: 22px;
  bottom: 18px;
  right: 22px;
  z-index: 1;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
}

.carousel__hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-top: 8px;
}
.carousel__hint span[aria-hidden] {
  color: var(--accent);
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-size: 18px;
  animation: hint-slide 2.4s ease-in-out infinite;
}
.carousel__hint span[aria-hidden]:last-of-type {
  animation-delay: 1.2s;
}
@keyframes hint-slide {
  0%, 100% { transform: translateX(0); opacity: 0.6; }
  50%      { transform: translateX(4px); opacity: 1; }
}

/* ============================================================
   MATÉRIEL — gear grid
   ============================================================ */
.gear {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gear__card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 28px;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition:
    border-color var(--dur) var(--ease),
    transform var(--dur) var(--ease),
    background var(--dur) var(--ease);
}
.gear__card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  background: #17171d;
}
.gear__icon {
  flex: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid;
  place-items: center;
  transition: transform var(--dur) var(--ease);
}
.gear__card:hover .gear__icon { transform: scale(1.06) rotate(-2deg); }
.gear__icon svg { width: 22px; height: 22px; }

.gear__body { flex: 1; min-width: 0; }
.gear__cat {
  display: block;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 6px;
}
.gear__body h3 {
  font-size: 18px;
  margin-bottom: 8px;
  letter-spacing: -0.015em;
}
.gear__body p {
  color: var(--text-dim);
  font-size: 14.5px;
  line-height: 1.55;
}
.gear__meta {
  display: inline-block;
  margin-top: 8px;
  padding: 2px 10px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
  color: var(--text-mute);
  letter-spacing: 0.05em;
}

.specs {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 24px;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.spec {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 6px 8px;
}
.spec__k {
  font-size: 12px;
  color: var(--text-mute);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.spec__v { font-weight: 500; }

/* ============================================================
   INCLUS (checklist)
   ============================================================ */
.included {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 72px);
  align-items: start;
}
.included__copy .eyebrow { margin-bottom: 20px; }
.checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
}
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text-dim);
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.checklist li::before {
  content: '';
  flex: none;
  width: 18px;
  height: 18px;
  margin-top: 4px;
  border-radius: 50%;
  background: var(--accent-soft);
  border: 1.5px solid var(--accent);
  background-image:
    linear-gradient(45deg, transparent 42%, var(--accent) 42% 58%, transparent 58%),
    linear-gradient(-45deg, transparent 42%, var(--accent) 42% 58%, transparent 58%);
  background-size: 8px 2px, 12px 2px;
  background-repeat: no-repeat;
  background-position: 4px 10px, 6px 10px;
}

/* ============================================================
   MÉTHODE (steps)
   ============================================================ */
.steps {
  display: grid;
  gap: 8px;
  max-width: 900px;
}
.step {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.step:last-child { border-bottom: 0; }
.step__num {
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  color: var(--accent);
  font-size: 44px;
  line-height: 1;
}
.step h3 { font-size: 22px; margin-bottom: 6px; }
.step p { color: var(--text-dim); max-width: 60ch; }

/* ============================================================
   TARIFS
   ============================================================ */
.pricing {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.plan {
  position: relative;
  padding: 40px 34px;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.plan--feature {
  border-color: var(--accent);
  background:
    linear-gradient(180deg, rgba(209,42,34,0.06), transparent 40%),
    var(--bg-elev);
  box-shadow: 0 30px 80px -30px rgba(209,42,34,0.35);
}
.plan__badge {
  position: absolute;
  top: -12px;
  right: 24px;
  padding: 6px 14px;
  background: var(--accent);
  color: #0b0b0d;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
}
.plan__head { }
.plan__name { font-size: 22px; margin-bottom: 6px; }
.plan__sub { color: var(--text-dim); font-size: 15px; }
.plan__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.plan__amount {
  font-size: 42px;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--text);
}
.plan__unit { color: var(--text-dim); font-size: 15px; }
.plan__list li {
  padding: 10px 0;
  color: var(--text-dim);
  font-size: 15px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.plan__list li::before {
  content: '→';
  color: var(--accent);
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  margin-top: 0;
}
.pricing__foot {
  text-align: center;
  color: var(--text-dim);
  margin-top: 32px;
  font-size: 15px;
}
.pricing__foot a {
  color: var(--accent);
  font-weight: 500;
}

/* ============================================================
   RÉSERVATION
   ============================================================ */
.reserve__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(32px, 6vw, 72px);
  align-items: start;
}
.reserve__copy .eyebrow { margin-bottom: 20px; }
.reserve__points {
  margin-top: 24px;
  display: grid;
  gap: 12px;
}
.reserve__points li {
  padding-left: 22px;
  position: relative;
  color: var(--text-dim);
}
.reserve__points li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}
.reserve__widget {
  position: relative;
  background:
    linear-gradient(180deg, rgba(209,42,34,0.06), transparent 40%),
    var(--bg-elev);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  padding: 32px;
  min-height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 30px 70px -30px rgba(209,42,34,0.25);
}
/* Liseré accent en haut du widget (élément de design) */
.reserve__widget::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 24px;
  right: 24px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.calendly-placeholder {
  width: 100%;
  text-align: center;
  padding: 40px 20px;
  border: 1.5px dashed var(--line-strong);
  border-radius: var(--radius);
}
.calendly-placeholder__label {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.calendly-placeholder__hint {
  color: var(--text-dim);
  margin-bottom: 28px;
  font-size: 15px;
}

/* Carte contact (WhatsApp + téléphone) */
.contact-card { width: 100%; text-align: center; }
.contact-card__label {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 5px 12px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  margin-bottom: 20px;
}
.contact-card__title {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.contact-card__text {
  color: var(--text-dim);
  font-size: 15px;
  max-width: 34ch;
  margin: 0 auto 26px;
}
.contact-card__or {
  position: relative;
  margin: 22px 0 18px;
  color: var(--text-mute);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.contact-card__or::before {
  content: '';
  position: absolute;
  top: 50%; left: 0; right: 0;
  height: 1px;
  background: var(--line);
}
.contact-card__or span {
  position: relative;
  background: var(--bg-elev);
  padding: 0 14px;
}
.contact-card__phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
  transition: color var(--dur) var(--ease);
}
.contact-card__phone svg { width: 20px; height: 20px; color: var(--accent); }
.contact-card__phone:hover { color: var(--accent); }

/* ============================================================
   FAQ
   ============================================================ */
.faq { max-width: 860px; margin: 0 auto; }
.faq__list { display: grid; gap: 8px; }
.faq__item {
  border-bottom: 1px solid var(--line);
  padding: 4px 0;
}
.faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  cursor: pointer;
  list-style: none;
  font-weight: 500;
  font-size: 17px;
  transition: color .2s ease;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--accent); }
.faq__toggle {
  color: var(--text-dim);
  font-size: 22px;
  font-weight: 300;
  transition: transform .2s ease, color .2s ease;
}
.faq__item[open] .faq__toggle {
  transform: rotate(45deg);
  color: var(--accent);
}
.faq__item p {
  color: var(--text-dim);
  padding: 0 0 22px;
  max-width: 70ch;
}

/* ============================================================
   AVIS GOOGLE — cartes blanches (signal d'authenticité)
   ============================================================ */
.reviews {
  background:
    radial-gradient(120% 100% at 50% 0%, rgba(255,255,255,0.02), transparent 55%),
    #0d0d10;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
/* Logo Google multicolore */
.gicon { display: inline-flex; }
.gicon svg { width: 22px; height: 22px; display: block; }
.gicon--sm svg { width: 13px; height: 13px; }

.reviews__summary {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-top: 26px;
  padding: 14px 20px;
  background: var(--bg-elev);
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  flex-wrap: wrap;
}
.reviews__summary .gicon svg { width: 30px; height: 30px; }
.reviews__meta { display: grid; grid-template-columns: auto auto; align-items: center; gap: 2px 12px; }
.reviews__score {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  grid-row: span 2;
}
.reviews__score span { font-size: 15px; color: var(--text-mute); font-weight: 500; }
.reviews__stars { color: #fbbc04; font-size: 15px; letter-spacing: 2px; }
.reviews__count { font-size: 13px; color: var(--text-dim); }
.reviews__all {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  transition: color var(--dur) var(--ease);
}
.reviews__all span { transition: transform var(--dur) var(--ease-out); }
.reviews__all:hover { color: var(--accent-hover); }
.reviews__all:hover span { transform: translateX(3px); }

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 290px), 1fr));
  gap: 18px;
  align-items: start;
}
.review {
  background: #fff;
  border-radius: 16px;
  padding: 22px 22px 24px;
  box-shadow: 0 18px 40px -24px rgba(0,0,0,0.7);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.review:hover {
  transform: translateY(-3px);
  box-shadow: 0 26px 50px -24px rgba(0,0,0,0.8);
}
.review__top { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.review__avatar {
  flex: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--c, #7e57c2);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 600;
  font-size: 19px;
}
.review__id { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.review__name { color: #202124; font-weight: 600; font-size: 15.5px; letter-spacing: -0.01em; }
.review__src {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #5f6368;
  font-size: 12.5px;
}
.review__stars { color: #fbbc04; font-size: 16px; letter-spacing: 2px; margin-bottom: 10px; }
.review__text { color: #3c4043; font-size: 14.5px; line-height: 1.55; }
.review__visit {
  display: block;
  margin-top: 14px;
  color: #80868b;
  font-size: 12.5px;
}

/* ============================================================
   FINAL CTA — photo studio en fond (climax de conversion)
   ============================================================ */
.final {
  position: relative;
  padding: clamp(90px, 13vw, 150px) 0;
  text-align: center;
  overflow: hidden;
  border-top: 1px solid var(--line);
}
/* Fond photo + voile sombre + halo rouge (remplaçable : assets/studio-2.jpg) */
.final__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(11,11,13,0.74) 0%, rgba(11,11,13,0.84) 100%),
    radial-gradient(120% 85% at 50% 0%, rgba(209,42,34,0.30), transparent 55%),
    url('assets/studio-2.jpg') center / cover no-repeat;
}
.final__inner { position: relative; z-index: 1; }
.final__eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(255,255,255,0.72);
  padding: 6px 14px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  background: rgba(11,11,13,0.35);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  margin-bottom: 22px;
}
.final__title {
  font-size: clamp(34px, 5vw, 60px);
  color: var(--text);
  margin-bottom: 14px;
}
.final__title em { color: var(--accent); }
.final__sub {
  color: rgba(237,237,237,0.82);
  font-size: clamp(16px, 1.4vw, 18px);
  margin-bottom: 32px;
}
.final__note {
  display: block;
  margin-top: 22px;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: rgba(237,237,237,0.6);
}

/* ============================================================
   FOOTER — dernier point de contact
   ============================================================ */
.footer {
  position: relative;
  background: var(--bg-muted);
  border-top: 1px solid var(--line);
  padding-top: 80px;
  overflow: hidden;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 56px;
  padding-bottom: 56px;
}

/* --- Marque + contact --- */
.footer__logo { margin-bottom: 18px; align-items: flex-start; }
.footer__contact-link--addr { align-items: flex-start; }
.footer__contact-link--addr svg { margin-top: 2px; }
.footer__pitch {
  color: var(--text-dim);
  max-width: 40ch;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 32px;
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__contact-label {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 4px;
}
.footer__contact-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--text);
  transition: color var(--dur) var(--ease);
}
.footer__contact-link svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
  flex: none;
  transition: transform var(--dur) var(--ease);
}
.footer__contact-link:hover { color: var(--accent); }
.footer__contact-link:hover svg { transform: translateY(-1px); }

/* --- Aside : nav + réseaux --- */
.footer__aside {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: flex-start;
}
.footer__nav {
  display: grid;
  gap: 12px;
}
.footer__nav a {
  color: var(--text-dim);
  font-size: 15px;
  width: fit-content;
  position: relative;
  transition: color var(--dur) var(--ease), padding-left var(--dur) var(--ease);
}
.footer__nav a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width var(--dur) var(--ease);
}
.footer__nav a:hover {
  color: var(--text);
  padding-left: 20px;
}
.footer__nav a:hover::before { width: 12px; }

.footer__social-label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 14px;
}
.footer__social-icons {
  display: flex;
  gap: 10px;
}
.footer__social-icons a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--bg-elev);
  color: var(--text-dim);
  transition:
    color var(--dur) var(--ease),
    border-color var(--dur) var(--ease),
    background var(--dur) var(--ease),
    transform var(--dur) var(--ease);
}
.footer__social-icons svg { width: 18px; height: 18px; }
.footer__social-icons a:hover {
  color: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
}

/* --- Filigrane typographique --- */
.footer__wordmark {
  font-size: clamp(90px, 20vw, 260px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.8;
  color: transparent;
  background: linear-gradient(180deg, rgba(237,237,237,0.05), transparent 85%);
  -webkit-background-clip: text;
          background-clip: text;
  user-select: none;
  pointer-events: none;
  margin-bottom: -0.14em;
  white-space: nowrap;
  overflow: hidden;
}

/* --- Barre du bas --- */
.footer__bar {
  position: relative;
  z-index: 1;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  color: var(--text-mute);
  font-size: 13px;
  background: var(--bg-muted);
}
.footer__bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px 28px;
  flex-wrap: wrap;
}
.footer__legal {
  display: flex;
  gap: 20px;
}
.footer__legal a {
  color: var(--text-mute);
  transition: color var(--dur) var(--ease);
}
.footer__legal a:hover { color: var(--text-dim); }
.footer__credit a {
  color: var(--text-dim);
  border-bottom: 1px solid transparent;
  transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.footer__credit a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* --- Tablette large / petit desktop (≤ 1080px) --- */
@media (max-width: 1080px) {
  .hero__title { font-size: clamp(36px, 5.4vw, 60px); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 > *:last-child:nth-child(odd) { grid-column: span 2; }
  .gear { grid-template-columns: repeat(2, 1fr); }
}

/* --- Desktop : pas de menu mobile --- */
@media (min-width: 901px) {
  .mobile-menu { display: none; }
}

/* --- Tablette (≤ 900px) --- */
@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .nav__inner { gap: 12px; }

  .hero { min-height: 520px; }

  .section__head { margin-bottom: 40px; }

  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 > *:last-child:nth-child(odd) { grid-column: span 2; }

  .specs { grid-template-columns: repeat(2, 1fr); }
  .included { grid-template-columns: 1fr; }
  .checklist { grid-template-columns: 1fr 1fr; }

  .gear { grid-template-columns: repeat(2, 1fr); }

  .pricing { grid-template-columns: 1fr; }
  .plan { padding: 36px 30px; }

  .reserve__inner { grid-template-columns: 1fr; }
  .reserve__widget { min-height: 380px; }

  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; }
  .stat:nth-child(2)::after { display: none; }

  .footer__top { grid-template-columns: 1fr; gap: 44px; }
}

/* --- Mobile (≤ 640px) --- */
@media (max-width: 640px) {
  :root { --pad: 20px; }

  .btn--sm { padding: 10px 14px; font-size: 13px; }
  .nav__inner { padding-top: 12px; padding-bottom: 12px; }
  .nav__cta { display: none; }

  .hero {
    min-height: 520px;
    padding-top: 80px;
    padding-bottom: 72px;
  }
  .hero__title { font-size: 36px; line-height: 1.05; }
  .hero__lead { font-size: 16px; }
  .hero__ctas { flex-direction: column; align-items: stretch; }
  .hero__ctas .btn { width: 100%; }
  .hero__proof { gap: 12px 22px; font-size: 13px; }

  .section { padding: 64px 0; }
  .section__title { font-size: clamp(26px, 7vw, 36px); }

  .grid--3 { grid-template-columns: 1fr; }
  .grid--3 > *:last-child:nth-child(odd) { grid-column: auto; }

  .gear { grid-template-columns: 1fr; }
  .gear__card { padding: 22px; }

  .carousel__slide { flex-basis: 86vw; }
  .carousel__ph::after { left: 18px; bottom: 16px; right: 18px; }

  .brand { font-size: 14px; gap: 8px; }
  .brand svg { width: 18px; height: 18px; }
  .marquee__group { gap: 32px; padding-right: 32px; }

  .specs { grid-template-columns: 1fr 1fr; padding: 18px; }

  .checklist { grid-template-columns: 1fr; }
  .checklist li { padding: 12px 0; font-size: 14px; }

  .step { grid-template-columns: 54px 1fr; gap: 14px; padding: 22px 0; }
  .step__num { font-size: 30px; }
  .step h3 { font-size: 19px; }

  .plan { padding: 30px 22px; gap: 22px; }
  .plan__amount { font-size: 36px; }
  .plan__badge { right: 20px; }

  .reserve__widget { padding: 22px; min-height: 340px; }
  .calendly-placeholder { padding: 32px 16px; }

  .faq__item summary { font-size: 15px; padding: 18px 0; }

  .final { padding: 72px 0; }
  .final__title { font-size: 32px; }

  .footer { padding-top: 56px; }
  .footer__contact-link { font-size: 15px; }
  .footer__bar-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* --- Très petit (≤ 380px) --- */
@media (max-width: 380px) {
  .hero__title { font-size: 32px; }
  .section__title { font-size: 26px; }
  .plan__amount { font-size: 32px; }
}
