/* ═══════════════════════════════════════════════════════════ */
/*  RESET & VARIABLES                                         */
/* ═══════════════════════════════════════════════════════════ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  /* Palette claire/épurée */
  --bg: #f8f7f4;
  --bg-alt: #f0efeb;
  --bg-warm: #ece8e1;
  --surface: #ffffff;
  --ink: #1a1a1a;
  --ink-soft: #3a3a3a;
  --smoke: #6b6b6b;
  --mist: #999999;
  --cloud: #d4d2cd;
  --border: #e5e3de;

  /* Accents from logo */
  --blue: #2d7dd2;
  --orange: #e8913a;
  --accent: #1a1a1a;

  /* Fonts - keeping the original site's fonts */
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Inter', -apple-system, sans-serif;

  /* Spacing */
  --section-pad: clamp(60px, 8vw, 120px);
  --container: 1140px;

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

html { scroll-behavior: smooth; overflow-x: clip; scroll-padding-top: 80px; }

@media (min-width: 1024px) and (max-width: 1439px) {
  html { zoom: 0.8; }
}
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  width: 100%;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 clamp(20px, 4vw, 40px); }

/* ═══════════════════════════════════════════════════════════ */
/*  REVEAL ANIMATIONS                                         */
/* ═══════════════════════════════════════════════════════════ */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
[data-reveal-stagger] > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
[data-reveal-stagger].revealed > *:nth-child(1) { transition-delay: 0s; }
[data-reveal-stagger].revealed > *:nth-child(2) { transition-delay: 0.1s; }
[data-reveal-stagger].revealed > *:nth-child(3) { transition-delay: 0.2s; }
[data-reveal-stagger].revealed > *:nth-child(4) { transition-delay: 0.3s; }
[data-reveal-stagger].revealed > * { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════════════════════════ */
/*  HEADER / NAV                                              */
/* ═══════════════════════════════════════════════════════════ */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0 clamp(20px, 4vw, 40px);
  height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  background: var(--bg);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.header.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 1px 12px rgba(0,0,0,0.04);
}
.header__logo img {
  height: 30px;
  width: auto;
}
.nav { display: flex; align-items: center; gap: 32px; }
.nav a {
  font-size: 13px; font-weight: 500; letter-spacing: 0.5px;
  text-transform: uppercase; color: var(--smoke);
  transition: color 0.3s;
  position: relative;
}
.nav a:hover { color: var(--ink); }
.nav a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1.5px; background: var(--ink);
  transition: width 0.3s var(--ease);
}
.nav a:hover::after { width: 100%; }
.nav__cta {
  font-size: 12px !important; font-weight: 600 !important;
  letter-spacing: 1px !important;
  padding: 8px 20px;
  border: 1.5px solid var(--ink) !important;
  border-radius: 24px;
  transition: background 0.3s, color 0.3s !important;
}
.nav__cta:hover {
  background: var(--ink) !important;
  color: var(--bg) !important;
}
.nav__cta::after { display: none !important; }

/* Mobile nav */
.nav-toggle { display: none; width: 28px; height: 20px; flex-direction: column; justify-content: space-between; }
.nav-toggle span { display: block; width: 100%; height: 2px; background: var(--ink); transition: 0.3s; border-radius: 1px; }

/* ═══════════════════════════════════════════════════════════ */
/*  SECTION TITLES                                            */
/* ═══════════════════════════════════════════════════════════ */
.section-title {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: var(--ink);
}
.section-subtitle {
  font-size: 14px;
  color: var(--smoke);
  margin-top: 8px;
  letter-spacing: 0.3px;
}

/* ═══════════════════════════════════════════════════════════ */
/*  1. HERO                                                   */
/* ═══════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column;
  justify-content: flex-start; align-items: center;
  text-align: center;
  padding: 120px 24px 0;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 30%, rgba(45,125,210,0.03), transparent 60%);
  pointer-events: none;
}
.hero__spacer-top { flex: 1; }
.hero__spacer-bottom { flex: 0.6; }
.hero__content {
  max-width: 680px;
  animation: heroFadeIn 1.2s var(--ease-out) both;
}
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(32px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero__title {
  font-family: var(--serif);
  font-size: clamp(48px, 7vw, 72px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -1px;
  color: var(--ink);
  margin-bottom: 12px;
}
@keyframes emblемBlurIn {
  from { filter: blur(12px); opacity: 0; }
  to   { filter: blur(0px);  opacity: 0.92; }
}
.hero__emblem {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: clamp(16px, 2.5vw, 28px);
}
.hero__emblem img {
  height: clamp(128px, 18vw, 176px);
  width: auto;
  opacity: 0.92;
  animation: emblемBlurIn 1.2s ease-out both;
}
.hero__logos {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(4px, 1vw, 8px);
  margin-bottom: 32px;
}
.hero__logo {
  height: auto;
}
.hero__logo--optique {
  max-width: clamp(160px, 28vw, 260px);
}
.hero__logo--harksen {
  max-width: clamp(220px, 42vw, 420px);
}
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.hero__baseline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: clamp(17px, 2.2vw, 22px);
  font-weight: 400;
  color: var(--smoke);
  letter-spacing: 0.3px;
  margin-bottom: 16px;
}
.hero__headline {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 400;
  margin-bottom: 18px;
}
.hero__text {
  font-size: 16px;
  color: var(--smoke);
  line-height: 1.7;
  max-width: 460px;
  margin: 0 auto 96px;
}

/* Action Cards */
.hero__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 240px));
  gap: 16px;
  max-width: 520px;
  margin: 0 auto;
  justify-content: center;
  animation: heroFadeIn 1.2s var(--ease-out) 0.3s both;
}
.action-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.action-card__desc {
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 20px;
  flex: 1;
}
.action-card:hover {
  border-color: var(--cloud);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}
.action-card--primary {
  background: var(--surface);
  border-color: var(--ink);
  color: var(--ink);
}
.action-card--primary:hover {
  border-color: var(--ink);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.action-card__icon {
  width: 48px; height: 48px;
  margin: 0 auto 16px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.action-card--primary .action-card__icon { background: var(--bg-alt); }
.action-card:not(.action-card--primary) .action-card__icon { background: var(--bg-alt); }

.action-card__icon svg { width: 22px; height: 22px; stroke-width: 1.5; }
.action-card--primary .action-card__icon svg { stroke: var(--ink); }
.action-card:not(.action-card--primary) .action-card__icon svg { stroke: var(--ink); }

.action-card__title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 6px;
}
.action-card__phone {
  font-family: var(--sans);
  font-size: 19px;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.action-card--primary .action-card__desc { color: var(--smoke); }
.action-card:not(.action-card--primary) .action-card__desc { color: var(--smoke); }

.action-card__btn {
  display: inline-block;
  padding: 10px 28px;
  border-radius: 24px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: background 0.3s, color 0.3s;
  margin-top: auto;
}
.action-card--primary .action-card__btn { background: var(--blue); color: white; }
.action-card--primary:hover .action-card__btn { background: #1a6abf; }
.action-card:not(.action-card--primary) .action-card__btn {
  border: 1.5px solid var(--border);
  color: var(--ink);
}
.action-card:not(.action-card--primary):hover .action-card__btn {
  border-color: var(--blue); background: var(--blue); color: white;
}

/* Scroll hint */
.hero__scroll {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--mist);
  padding-bottom: 24px;
  animation: heroFadeIn 1s var(--ease-out) 0.8s both;
}
.hero__scroll-line {
  width: 1px; height: 32px;
  background: linear-gradient(to bottom, var(--mist), transparent);
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}
.hero__trust {
  margin-top: 24px;
  font-size: 13px;
  color: var(--mist);
  letter-spacing: 0.5px;
}

/* ═══════════════════════════════════════════════════════════ */
/*  2. SPÉCIALITÉS                                            */
/* ═══════════════════════════════════════════════════════════ */
.specialites {
  padding: var(--section-pad) 0;
  background: var(--bg-alt);
}
.specialites__header {
  text-align: center;
  margin-bottom: 48px;
}
.spec-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.spec-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.spec-card:hover {
  border-color: var(--cloud);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}
.spec-card__num {
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 300;
  color: var(--border);
  line-height: 1;
  margin-bottom: 12px;
  transition: color 0.3s;
}
.spec-card:hover .spec-card__num { color: var(--blue); }
.spec-card__title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 8px;
}
.spec-card__desc {
  font-size: 13px;
  color: var(--smoke);
  line-height: 1.5;
  margin-bottom: 16px;
}
.spec-card__link {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--ink);
  position: relative;
  display: inline-block;
}
.spec-card__link::after {
  content: ' →';
  transition: transform 0.3s;
  display: inline-block;
}
.spec-card:hover .spec-card__link::after { transform: translateX(4px); }

/* ═══════════════════════════════════════════════════════════ */
/*  3. MARQUES & OFFRES                                       */
/* ═══════════════════════════════════════════════════════════ */
.marques-offres {
  padding: var(--section-pad) 0;
}
.mo-header { text-align: center; margin-bottom: 48px; }
.mo-split {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 40px;
  align-items: start;
}

/* Offre vidéo */
.offre__label {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 4px;
}
.offre__sub { font-size: 13px; color: var(--smoke); margin-bottom: 20px; }
.offre__video-wrap {
  width: 100%;
  aspect-ratio: 9/16;
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg-warm);
  position: relative;
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}
.offre__video-wrap video {
  width: 100%; height: 100%; object-fit: cover;
}
.offre__video-play {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.15);
  transition: background 0.3s;
  pointer-events: none;
}
.offre__video-wrap:hover .offre__video-play { background: rgba(0,0,0,0.05); }
.offre__video-play span {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(255,255,255,0.92);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  transition: transform 0.3s;
}
.offre__video-wrap:hover .offre__video-play span { transform: scale(1.08); }

.offre__links { display: flex; flex-direction: column; gap: 8px; margin-top: 16px; }
.offre__link {
  display: flex; align-items: center;
  padding: 18px 20px;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  transition: border-color 0.3s, transform 0.2s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.offre__link::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  border-radius: 12px 0 0 12px;
  transition: width 0.3s;
}
.offre__link--blue::before { background: var(--blue); }
.offre__link--orange::before { background: var(--orange); }
.offre__link:hover { border-color: var(--cloud); transform: translateX(4px); }
.offre__link:hover::before { width: 6px; }
.offre__link-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--bg); display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.offre__link-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(0,0,0,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}
.offre__link:hover .offre__link-dot {
  transform: scale(1.2);
  box-shadow: 0 0 0 5px rgba(0,0,0,0.08);
}
.offre__link-dot--blue { background: var(--blue); }
.offre__link-dot--orange { background: var(--orange); }
.offre__link-text { font-size: 16px; font-weight: 600; }
.offre__link-desc { font-size: 13px; color: var(--smoke); }
.offre__link > div { flex: 1; padding-left: 16px; }
.offre__link-arrow {
  font-size: 16px;
  color: var(--mist);
  transition: color 0.3s, transform 0.3s;
  flex-shrink: 0;
  padding-right: 4px;
}
.offre__link:hover .offre__link-arrow { color: var(--ink); transform: translateX(3px); }

/* Mosaïque marques */
.gallery__label {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 4px;
}
.gallery__sub { font-size: 13px; color: var(--smoke); margin-bottom: 20px; }

.mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
.mosaic__cell {
  background: var(--bg-warm);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: opacity 0.7s var(--ease), transform 0.3s var(--ease);
  aspect-ratio: 9/16;
  cursor: pointer;
}
.mosaic__cell:hover {
  transform: scale(1.04);
  z-index: 2;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.mosaic__cell--tall { grid-row: span 2; aspect-ratio: 9/32; }
.mosaic__cell--wide { grid-column: span 2; aspect-ratio: 18/16; }

.mosaic__brand {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--smoke);
  text-align: center;
  padding: 8px;
  transition: color 0.3s;
}
.mosaic__cell:hover .mosaic__brand { color: var(--ink); }
.mosaic__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.7s var(--ease);
}

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(248, 247, 244, 0.97);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s var(--ease);
}
.lightbox.active { opacity: 1; pointer-events: auto; }
.lightbox__img {
  max-width: 90vw; max-height: 90vh;
  object-fit: contain;
  transform: scale(0.92);
  transition: transform 0.4s var(--ease-out);
  -webkit-user-select: none;
  user-select: none;
}
.lightbox.active .lightbox__img { transform: scale(1); }
.lightbox__brand {
  position: absolute;
  bottom: 20px; left: 50%;
  transform: translateX(-50%);
  color: rgba(26,26,26,0.5);
  font-size: 11px; letter-spacing: 1.5px;
  text-transform: uppercase;
}
.lightbox__close {
  position: absolute;
  top: 16px; right: 20px;
  background: none; border: none;
  color: var(--ink); font-size: 30px;
  cursor: pointer; opacity: 0.5;
  line-height: 1; transition: opacity 0.2s;
}
.lightbox__close:hover { opacity: 1; }
.lightbox__nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: var(--bg-alt); border: 0.5px solid var(--border);
  color: var(--ink); font-size: 18px;
  padding: 10px 14px; border-radius: 8px;
  cursor: pointer; transition: background 0.2s;
}
.lightbox__nav:hover { background: var(--bg-warm); }
.lightbox__nav--prev { left: 20px; }
.lightbox__nav--next { right: 20px; }

/* Proof row */
.proof-row {
  display: flex; gap: 10px; margin-top: 20px;
}
.proof-stat {
  flex: 1;
  text-align: center;
  padding: 16px 8px;
  background: var(--surface);
  border-radius: 12px;
  border: 1.5px solid var(--border);
}
.proof-stat__num {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  color: var(--ink);
}
.proof-stat__label { font-size: 11px; color: var(--smoke); letter-spacing: 0.5px; }
.proof-stat--google { border-color: #e3e0d6; }
.proof-stat--facebook { border-color: #e3e0d6; }
.proof-stat__stars {
  color: #f4b400;
  font-size: 13px;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 2px;
}
.proof-stat__source {
  font-size: 10px;
  font-weight: 600;
  color: var(--mist);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Vitrine */
.vitrine {
  display: flex; gap: 16px; align-items: stretch; margin-top: 20px;
}
.vitrine__photo {
  flex: 2;
  min-height: 100px;
  background: var(--bg-warm);
  border-radius: 12px;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  color: var(--mist);
  font-size: 13px;
  font-weight: 500;
}
.vitrine__info { flex: 1; display: flex; flex-direction: column; justify-content: center; gap: 4px; }
.vitrine__line { font-size: 14px; font-weight: 600; }
.vitrine__sub { font-size: 12px; color: var(--smoke); }

/* ═══════════════════════════════════════════════════════════ */
/*  4. POURQUOI HARKSEN                                       */
/* ═══════════════════════════════════════════════════════════ */
.pourquoi {
  padding: var(--section-pad) 0;
}
.pq-header {
  text-align: center;
  margin-bottom: 48px;
}
.pq-layout {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 48px;
  align-items: center;
}
.pq__citation {
  font-family: var(--serif);
  font-size: clamp(18px, 2.5vw, 22px);
  font-style: italic;
  line-height: 1.6;
  color: var(--ink-soft);
  padding-left: 24px;
  border-left: 2px solid var(--blue);
  margin-bottom: 32px;
}
.pq__points { display: flex; flex-direction: column; gap: 14px; }
.pq__point {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14px; color: var(--smoke); line-height: 1.6;
}
.pq__point strong { color: var(--ink); }
.pq__point-icon {
  flex-shrink: 0;
  width: 24px; height: 24px;
  background: var(--bg-alt);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.pq__point-icon svg { width: 14px; height: 14px; stroke: var(--blue); stroke-width: 2; }

.team-photo {
  width: 100%;
  aspect-ratio: 5/4;
  background: var(--bg-warm);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
}
.team-photo__icon { font-size: 48px; opacity: 0.3; }
.team-photo__label { font-size: 13px; color: var(--smoke); font-weight: 500; text-align: center; }
.team-photo__caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 16px 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
  color: white;
  font-family: var(--serif);
  font-size: 14px;
  font-style: italic;
  text-align: center;
}

/* ═══════════════════════════════════════════════════════════ */
/*  5. LOCALISATION                                           */
/* ═══════════════════════════════════════════════════════════ */
.localisation {
  padding: var(--section-pad) 0;
  background: var(--bg-alt);
}
.loc-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.loc__address {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 16px;
}
.loc__horaires { margin-bottom: 24px; }
.loc__jour { font-size: 14px; color: var(--smoke); margin-bottom: 4px; }
.loc__jour strong { color: var(--ink); }
.loc__ferme { color: var(--mist); }
.loc__infos { margin-top: 16px; display: flex; flex-direction: column; gap: 8px; }
.loc__info-item { display: flex; align-items: center; gap: 10px; font-size: 15px; color: var(--ink-soft); }
.loc__info-item svg { width: 18px; height: 18px; flex-shrink: 0; stroke: var(--blue); }
.loc__info-item a { color: var(--ink); text-decoration: none; font-weight: 500; }
.loc__info-item a:hover { color: var(--blue); }
.loc__buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.loc__btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  font-size: 14px; font-weight: 500;
  transition: border-color 0.3s, background 0.3s;
}
.loc__btn:hover { border-color: var(--blue); background: var(--blue); color: white; }
.loc__btn svg { width: 18px; height: 18px; stroke-width: 1.5; }
.loc__btn:hover svg { stroke: white; }
.loc__map {
  width: 100%; aspect-ratio: 4/3;
  background: var(--bg-warm);
  border-radius: 16px;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  color: var(--mist);
  font-size: 14px;
}

/* ═══════════════════════════════════════════════════════════ */
/*  6. RDV                                                    */
/* ═══════════════════════════════════════════════════════════ */
.rdv {
  padding: var(--section-pad) 0;
  scroll-margin-top: 80px;
}
.rdv__header { text-align: center; margin-bottom: 48px; }
.rdv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}
.rdv-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.rdv-card:hover {
  border-color: var(--cloud);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}
.rdv-card__icon {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--bg-alt);
  margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
}
.rdv-card__icon svg { width: 24px; height: 24px; stroke: var(--ink); stroke-width: 1.5; }
.rdv-card__title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 8px;
}
.rdv-card__desc {
  font-size: 14px;
  color: var(--smoke);
  line-height: 1.6;
  margin-bottom: 8px;
}
.rdv-card__list {
  text-align: left;
  margin-bottom: 24px;
  padding: 0 8px;
  flex: 1;
  width: 100%;
}
.rdv-card__list li {
  font-size: 13px;
  color: var(--smoke);
  padding: 4px 0;
  padding-left: 16px;
  position: relative;
}
.rdv-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--border);
}
.rdv-card__cta {
  display: inline-block;
  padding: 12px 32px;
  background: var(--blue);
  color: white;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: background 0.3s, transform 0.2s;
  margin-top: auto;
}
.rdv-card__cta:hover { background: #1a6abf; transform: translateY(-2px); }

/* ═══════════════════════════════════════════════════════════ */
/*  7. CONTACT                                                */
/* ═══════════════════════════════════════════════════════════ */
.contact {
  padding: var(--section-pad) 0;
  background: var(--bg-alt);
}
.contact__header { text-align: center; margin-bottom: 48px; }
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}
.contact__info-block {
  margin-bottom: 24px;
}
.contact__info-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--mist);
  margin-bottom: 6px;
}
.contact__info-value {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
}
.contact__info-value a {
  transition: color 0.3s;
}
.contact__info-value a:hover { color: var(--blue); }

.contact__cta-rdv {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px;
  background: var(--blue); color: white;
  border-radius: 12px;
  font-size: 14px; font-weight: 600;
  margin-top: 16px;
  transition: background 0.3s, transform 0.2s;
}
.contact__cta-rdv:hover { background: #1a6abf; transform: translateY(-2px); }
.contact__cta-rdv svg { width: 18px; height: 18px; stroke: white; stroke-width: 1.5; }

.contact__form { display: flex; flex-direction: column; gap: 12px; }
.form-input, .form-textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink);
  transition: border-color 0.3s;
  outline: none;
}
.form-input:focus, .form-textarea:focus { border-color: var(--blue); }
.form-input::placeholder, .form-textarea::placeholder { color: var(--mist); }
.form-textarea { min-height: 120px; resize: vertical; }
.form__submit {
  display: inline-block;
  padding: 14px 36px;
  background: var(--blue); color: white;
  border: none; border-radius: 12px;
  font-size: 14px; font-weight: 600;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  align-self: flex-start;
}
.form__submit:hover { background: #1a6abf; transform: translateY(-2px); }

/* ═══════════════════════════════════════════════════════════ */
/*  FOOTER                                                    */
/* ═══════════════════════════════════════════════════════════ */
.footer {
  padding: 32px 0;
  border-top: 1px solid var(--border);
  text-align: center;
}
.footer__inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.footer__logo img { height: 28px; }
.footer__info {
  display: flex; flex-direction: column; gap: 6px; text-align: left;
}
.footer__info-row {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--smoke);
}
.footer__info-row svg { flex-shrink: 0; stroke: var(--mist); }
.footer__info-row a { color: var(--smoke); transition: color 0.3s; }
.footer__info-row a:hover { color: var(--ink); }
.footer__copy { font-size: 12px; color: var(--mist); }
.footer__links { display: flex; gap: 20px; }
.footer__links a {
  font-size: 12px; color: var(--mist);
  transition: color 0.3s;
}
.footer__links a:hover { color: var(--ink); }

/* ═══════════════════════════════════════════════════════════ */
/*  BACK TO TOP                                               */
/* ═══════════════════════════════════════════════════════════ */
.back-to-top {
  position: fixed; bottom: 28px; right: 28px;
  width: 44px; height: 44px;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  z-index: 50;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.back-to-top.visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { transform: translateY(-3px); border-color: var(--ink); }
.back-to-top svg { width: 18px; height: 18px; stroke: var(--ink); stroke-width: 2; }

/* ═══════════════════════════════════════════════════════════ */
/*  MODALS                                                    */
/* ═══════════════════════════════════════════════════════════ */
.modal {
  position: fixed; inset: 0; z-index: 200;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
  padding: 20px;
}
.modal.active { opacity: 1; pointer-events: auto; }
.modal__overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.5);
}
.modal__content {
  position: relative;
  background: var(--surface);
  border-radius: 20px;
  max-width: 480px;
  width: 90vw;
  overflow: hidden;
  padding: 36px 32px 28px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.15);
  z-index: 1;
}
.modal__body {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.modal__pills {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 4px 0;
}
.modal__pill {
  background: var(--bg-alt);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.4;
}
.modal__cta {
  text-align: center;
  padding-top: 4px;
}
.modal__close {
  position: absolute;
  top: 16px; right: 16px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--bg-alt);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  color: var(--smoke);
  transition: background 0.3s, color 0.3s;
  z-index: 5;
}
.modal__close:hover { background: var(--border); color: var(--ink); }

.modal__label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--blue);
  margin-bottom: 12px;
}
.modal__title {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 16px;
}
.modal__title em { font-style: italic; color: var(--blue); }
.modal__body p { font-size: 15px; color: var(--smoke); line-height: 1.7; margin-bottom: 16px; }
.modal__block { margin: 24px 0; }
.modal__block h4 {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
}
.modal__block ul, .modal__block ol { padding-left: 0; }
.modal__block li {
  font-size: 14px; color: var(--smoke);
  padding: 4px 0 4px 20px;
  position: relative;
  line-height: 1.6;
}
.modal__block ul li::before {
  content: ''; position: absolute; left: 0; top: 12px;
  width: 6px; height: 6px; border-radius: 50%; background: var(--blue);
}
.modal__block ol { counter-reset: step; }
.modal__block ol li { counter-increment: step; }
.modal__block ol li::before {
  content: counter(step) '.';
  position: absolute; left: 0; top: 4px;
  font-weight: 600; color: var(--blue); font-size: 13px;
}
.modal__block--highlight {
  background: var(--bg-alt);
  padding: 24px;
  border-radius: 12px;
  border-left: 3px solid var(--blue);
}
.modal__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 12px; }
.modal__card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px;
}
.modal__card h5 { font-size: 14px; font-weight: 600; margin-bottom: 8px; }
.modal__features { display: flex; flex-direction: column; gap: 8px; margin-top: 8px; }
.modal__feature { font-size: 14px; color: var(--smoke); line-height: 1.5; }
.modal__zones { display: flex; gap: 12px; margin-top: 12px; }
.modal__zone { flex: 1; text-align: center; padding: 16px 8px; background: var(--surface); border-radius: 10px; }
.modal__zone-icon { font-size: 24px; display: block; margin-bottom: 6px; }
.modal__zone-title { display: block; font-size: 13px; font-weight: 600; }
.modal__zone-desc { display: block; font-size: 11px; color: var(--mist); }
.modal__steps { counter-reset: step; }
.modal__steps li { padding-left: 20px; margin-bottom: 8px; }
.modal__cta {
  text-align: center;
  padding: 24px;
  background: var(--bg-alt);
  border-radius: 12px;
  margin-top: 24px;
}
.modal__cta p { font-size: 15px; color: var(--smoke); margin-bottom: 12px; }
.modal__btn {
  display: inline-block;
  padding: 12px 28px;
  background: var(--ink); color: white;
  border-radius: 24px;
  font-size: 14px; font-weight: 600;
  transition: background 0.3s;
}
.modal__btn:hover { background: var(--ink-soft); }

/* RDV Modal (iframe) */
.modal--iframe .modal__content {
  max-width: 1100px; width: 95vw; height: 90vh; padding: 0;
  position: relative;
}
.modal--iframe .modal__close {
  position: absolute; top: -48px; right: 0;
  width: 40px; height: 40px;
  background: var(--surface);
  border-radius: 50%;
  z-index: 15;
}
.modal--iframe iframe {
  width: 100%; height: 100%; border: none; border-radius: 20px;
}

/* Fullscreen modal (offre video & images) */
.modal--fullscreen .modal__content {
  max-width: 420px; width: 90vw; max-height: 90vh;
  padding: 0; border-radius: 20px;
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.modal--fullscreen .modal__content--dark { background: #000; }
.modal--fullscreen .modal__content--light { background: #fff; padding: 20px; box-shadow: 0 8px 40px rgba(0,0,0,0.25); }
.modal--fullscreen video { width: 100%; height: 100%; object-fit: contain; border-radius: 20px; }
.modal--fullscreen img { max-width: 100%; max-height: 90vh; object-fit: contain; border-radius: 12px; box-shadow: 0 2px 16px rgba(0,0,0,0.08); }

/* Blocs offre verticaux */
.offre__bloc-marques {
  padding: clamp(40px, 6vw, 72px) 0;
}
.offre__bloc-header {
  text-align: center;
  margin-bottom: clamp(24px, 4vw, 40px);
}

/* Vidéo + Forfaits côte à côte */
.offre__bloc-video-forfaits {
  padding: clamp(40px, 6vw, 72px) 0;
}
.offre__bloc-video-header {
  text-align: center;
  margin-bottom: clamp(24px, 3vw, 36px);
}
.offre__bloc-video-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: stretch;
}
.offre__col-video {
  display: flex;
  flex-direction: column;
}
.offre__video-wrap--full {
  width: 340px;
  flex: 1;
  flex-shrink: 0;
  aspect-ratio: unset !important;
  height: 100%;
  margin-top: 0;
}
.offre__video-wrap--full video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.offre__col-forfaits {
  min-width: 0;
}
@media (max-width: 900px) {
  .offre__bloc-video-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .offre__video-wrap--full {
    width: 55%;
    margin: 0 auto;
    flex: none;
    aspect-ratio: 9/16 !important;
    height: auto;
  }
}
@media (max-width: 500px) {
  .offre__video-wrap--full { width: 75%; }
}
.offre__accordeons--full {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
/* Mosaic en bande horizontale */
.mosaic--strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}
.mosaic--strip .mosaic__cell {
  aspect-ratio: 3/2;
  border-radius: 12px;
}
@media (max-width: 900px) {
  .mosaic--strip { grid-template-columns: repeat(3, 1fr); }
  .mosaic--strip .mosaic__cell:nth-child(n+7) { display: none; }
  .offre__video-center .offre__video-wrap { width: 65%; }
}
@media (max-width: 500px) {
  .mosaic--strip { grid-template-columns: repeat(2, 1fr); }
  .mosaic--strip .mosaic__cell:nth-child(n+5) { display: none; }
}


.offre__accordeons { display: flex; flex-direction: column; margin-top: 16px; }
.accordeon { border-bottom: 0.5px solid var(--border); }
.accordeon:first-child { border-top: 0.5px solid var(--border); }
.accordeon__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 4px;
  background: transparent;
  cursor: pointer;
  text-align: left;
  gap: 16px;
  transition: opacity 0.2s;
}
.accordeon__trigger:hover { opacity: 0.7; }
.accordeon__trigger::before { display: none; }
details[open] > .accordeon__trigger { opacity: 1; }
.accordeon__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--smoke);
  margin-bottom: 3px;
}
.accordeon__trigger--blue .accordeon__label { color: var(--blue); }
.accordeon__trigger--orange .accordeon__label { color: var(--orange); }
.accordeon__name {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  color: var(--ink);
}
.offre__link-text { font-size: 15px; font-weight: 600; color: var(--ink); margin-bottom: 2px; }
.offre__link-desc { font-size: 13px; color: var(--smoke); }
.accordeon__arrow {
  flex-shrink: 0;
  width: 20px; height: 20px;
  display: flex; align-items: center; justify-content: center;
  color: var(--mist);
  transition: transform 0.3s var(--ease-out);
}
.accordeon__arrow svg { width: 14px; height: 14px; stroke: currentColor; stroke-width: 2; fill: none; }
details[open] > .accordeon__trigger .accordeon__arrow { transform: rotate(90deg); color: var(--ink); }
.accordeon__body {
  padding: 0 4px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  animation: accOpen 0.22s var(--ease-out);
}
@keyframes accOpen {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Mosaic 5 colonnes pleine largeur */
.mosaic--strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-bottom: 24px;
}
.mosaic--strip .mosaic__cell {
  aspect-ratio: 9/16;
  border-radius: 10px;
}
@media (max-width: 900px) {
  .mosaic--strip { grid-template-columns: repeat(5, 1fr); gap: 6px; }
  .mosaic--strip .mosaic__cell:nth-child(n+6) { display: none; }
}
@media (max-width: 500px) {
  .mosaic--strip { grid-template-columns: repeat(5, 1fr); gap: 4px; }
  .mosaic--strip .mosaic__cell:nth-child(n+6) { display: none; }
}

/* ═══════════════════════════════════════════════════════════ */
/*  MODALS OFFRES                                             */
/* ═══════════════════════════════════════════════════════════ */
.modal--offre .modal__content--offre {
  background: var(--surface);
  border-radius: 20px;
  max-width: 520px;
  width: 90vw;
  padding: 36px 32px 28px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.15);
  z-index: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.offre-modal__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--blue);
}
.offre-modal__title {
  font-family: var(--serif);
  font-size: clamp(16px, 2.5vw, 20px);
  font-weight: 400;
  line-height: 1.3;
  color: var(--ink);
  margin: 0;
}
.offre-modal__intro {
  font-size: 13px;
  color: var(--smoke);
  line-height: 1.5;
}
.offre-modal__grille {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
}
.offre-modal__card {
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 14px 12px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.offre-modal__card--featured {
  border-color: var(--blue);
  background: rgba(45,125,210,0.04);
}
.offre-modal__badge {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(45,125,210,0.1);
  border-radius: 4px;
  padding: 2px 6px;
  align-self: flex-start;
}
.offre-modal__card-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 6px;
}
.offre-modal__nom {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
}
.offre-modal__prix {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}
.offre-modal__card--featured .offre-modal__nom,
.offre-modal__card--featured .offre-modal__prix { color: var(--blue); }
.offre-modal__desc {
  font-size: 11px;
  color: var(--smoke);
  line-height: 1.4;
}
.offre-modal__avantages {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.offre-modal__avantage {
  font-size: 13px;
  color: var(--smoke);
  line-height: 1.4;
}
.offre-modal__note {
  font-size: 11px;
  color: var(--mist);
  font-style: italic;
}
.offre-modal__cta {
  display: inline-block;
  text-align: center;
  padding: 12px 24px;
  background: var(--blue);
  color: white;
  border-radius: 24px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: background 0.3s;
}
.offre-modal__cta:hover { background: var(--ink-soft); }

@media (max-width: 900px) {
  .modal--offre .modal__content--offre { padding: 28px 20px 22px; }
  .offre-modal__grille { gap: 6px; }
  .offre-modal__card { padding: 10px 8px; }
  .offre-modal__nom, .offre-modal__prix { font-size: 13px; }
}
/* ═══════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .nav { display: none; }
  .nav.mobile-open {
    display: flex; flex-direction: column;
    position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
    background: var(--bg);
    padding: 40px 24px;
    gap: 24px;
    z-index: 99;
  }
  .nav.mobile-open a { font-size: 18px; }
  .nav-toggle { display: flex; }
  .header__logo img { height: 20px; }

  /* Hero mobile: logo + baseline + headline = first screen */
  .hero { min-height: auto; padding: 72px 20px 32px; justify-content: flex-start; }
  .hero__emblem img { height: 80px; }
  .hero__baseline { font-size: 14px; margin-bottom: 8px; }
  .hero__actions { margin: 100px auto 0; gap: 10px; }
  .hero__content { padding-top: 10vh; }
  .hero__logos { gap: 4px; margin-bottom: 32px; }
  .hero__logo--optique { max-width: 140px; }
  .hero__logo--harksen { max-width: 240px; }
  .hero__text { font-size: 13px; margin-bottom: 0; }
  .hero__trust { display: none; }
  .hero__headline { margin-bottom: 40px; }
  .hero__actions { grid-template-columns: 1fr 1fr; width: 90%; max-width: 520px; margin: 100px auto 0; }
  .action-card { padding: 16px 10px; }
  .action-card__title { font-size: 15px; }
  .action-card__phone { font-size: 13px; white-space: nowrap; letter-spacing: 0; }
  .action-card__desc { font-size: 11px; }
  .action-card__btn { padding: 8px 12px; font-size: 11px; }
  .action-card__icon { width: 36px; height: 36px; margin-bottom: 10px; }
  .hero__scroll { display: none; }
  .hero__spacer-top, .hero__spacer-bottom { display: none; }

  /* Spécialités mobile: compact 2×2 */
  .spec-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .spec-card { padding: 20px 14px; }
  .spec-card__num { font-size: 28px; margin-bottom: 6px; }
  .spec-card__title { font-size: 16px; margin-bottom: 4px; }
  .spec-card__desc { font-size: 11px; margin-bottom: 10px; }
  .spec-card__link { font-size: 11px; }

  /* Offre video smaller on mobile */
  .mo-split { grid-template-columns: 1fr; }
  .offre__video-wrap { width: 65%; margin: 0 auto; }

  /* Mosaic 2×2 on mobile */
  .mosaic { grid-template-columns: repeat(2, 1fr); }
  .mosaic__cell:nth-child(n+5) { display: none; }
  .mosaic__cell { aspect-ratio: 9/16; }
  .mosaic__cell--wide { grid-column: span 1; aspect-ratio: 9/16; }
  .mosaic__cell--tall { grid-row: span 1; aspect-ratio: 9/16; }

  /* Hide RDV and Contact section on mobile */
  .rdv { display: block; }
  .contact { display: none; }

  .pq-layout { grid-template-columns: 1fr; }
  .team-photo { max-height: 250px; aspect-ratio: 16/9; }
  .team-photo img { object-position: center; }

  .loc-layout { grid-template-columns: 1fr; }
  .rdv-grid { grid-template-columns: 1fr 1fr; gap: 10px; max-width: 520px; }
  .rdv-card { padding: 16px 10px; }
  .rdv-card__icon { width: 48px; height: 48px; margin-bottom: 16px; }
  .rdv-card__title { font-size: 20px; }
  .rdv-card__list { display: none; }
  .contact-layout { grid-template-columns: 1fr; }

  .modal { padding: 12px; }
  .modal__content { padding: 32px 24px; }
  .modal__grid { grid-template-columns: 1fr; }
  .modal__zones { flex-direction: column; }

  /* More space between sections on mobile */
  .specialites, .marques-offres, .pourquoi, .localisation, .rdv, .contact { padding-top: clamp(72px, 14vw, 110px); padding-bottom: clamp(72px, 14vw, 110px); }
  .specialites__header, .section-header { margin-bottom: clamp(32px, 6vw, 48px); }
  .footer { padding: 48px 0 120px; }
  .footer__inner { flex-direction: column; align-items: center; gap: 20px; }
  .footer__info { align-items: center; text-align: center; }
  .footer__links { flex-direction: column; gap: 10px; align-items: center; }

  .footer__inner { flex-direction: column; text-align: center; }

  .proof-row { flex-wrap: wrap; }
  .proof-stat { min-width: 80px; }
}

@media (max-width: 500px) {
  .spec-grid { grid-template-columns: 1fr 1fr; }
  .hero__actions { grid-template-columns: 1fr 1fr; width: 90%; max-width: 520px; margin: 100px auto 0; }
  .proof-row { display: grid; grid-template-columns: 1fr 1fr; }
}
</style>

/* details/summary reset */
details.accordeon { list-style: none; }
details.accordeon > summary { list-style: none; }
details.accordeon > summary::-webkit-details-marker { display: none; }
details.accordeon > summary::marker { display: none; }

/* ════════════════════════════════════════
   FORFAITS — 1 trigger + 3 cartes
════════════════════════════════════════ */
.forfaits {
  max-width: 960px;
  margin: 0 auto;
}

.forfaits__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 0;
  background: transparent;
  border: none;
  border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
  cursor: pointer;
  text-align: left;
  transition: opacity 0.2s;
}
.forfaits__trigger:hover { opacity: 0.7; }
.forfaits__trigger-label {
  font-family: var(--serif);
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 400;
  color: var(--ink);
  flex: 1;
}
.forfaits__trigger-sub {
  font-size: 13px;
  color: var(--smoke);
}
.forfaits__trigger-arrow {
  flex-shrink: 0;
  width: 24px; height: 24px;
  color: var(--smoke);
  transition: transform 0.3s var(--ease-out);
}
.forfaits__trigger-arrow svg { width: 100%; height: 100%; }
.forfaits__trigger[aria-expanded="true"] .forfaits__trigger-arrow {
  transform: rotate(180deg);
  color: var(--ink);
}
.forfaits__trigger[aria-expanded="true"] {
  border-bottom-color: transparent;
}

.forfaits__panel {

  border-bottom: 0.5px solid var(--border);
  padding-bottom: 40px;
  animation: forfaitsOpen 0.35s var(--ease-out);
}
.forfaits__panel[hidden] { display: none !important; }
@keyframes forfaitsOpen {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.forfaits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-top: 24px;
}

.forfait-card {
  border: 0.5px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: transparent;
}
.forfait-card--blue {
  border-color: var(--blue);
  background: transparent;
}

.forfait-card__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--smoke);
  margin-bottom: 6px;
}
.forfait-card--blue .forfait-card__label { color: var(--blue); }

.forfait-card__title {
  font-family: var(--serif);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 10px;
}
.forfait-card__desc {
  font-size: 13px;
  color: var(--smoke);
  line-height: 1.6;
}

.forfait-card__body { flex: 1; display: flex; flex-direction: column; gap: 16px; }

.forfait-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.forfait-card__list li {
  font-size: 13px;
  color: var(--smoke);
}
.forfait-card__note {
  font-size: 11px;
  color: var(--mist);
  font-style: italic;
}

.forfait-card__prix-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
.forfait-card__prix-item {
  border: 0.5px solid var(--border);
  border-radius: 10px;
  padding: 10px 8px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  align-items: center;
  text-align: center;
}
.forfait-card__prix-item--featured {
  border: 1.5px solid var(--blue);
  background: rgba(45,125,210,0.04);
}
.forfait-card__prix-badge {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(45,125,210,0.1);
  border-radius: 4px;
  padding: 2px 6px;
}
.forfait-card__prix-nom {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}
.forfait-card__prix-item--featured .forfait-card__prix-nom { color: var(--blue); }
.forfait-card__prix-val {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
}
.forfait-card__prix-item--featured .forfait-card__prix-val { color: var(--blue); }
.forfait-card__prix-desc {
  font-size: 10px;
  color: var(--smoke);
  line-height: 1.3;
}

.forfait-card__cta {
  display: block;
  text-align: center;
  padding: 11px 20px;
  background: var(--blue);
  color: white;
  border-radius: 24px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: background 0.2s;
  margin-top: auto;
}
.forfait-card__cta:hover { background: var(--ink-soft); }
.forfait-card--blue .forfait-card__cta { background: var(--blue); }
.forfait-card--blue .forfait-card__cta:hover { background: #1e5fa0; }

/* Mobile */
@media (max-width: 900px) {
  .forfaits__grid { grid-template-columns: 1fr; gap: 12px; }
  .forfaits__trigger-sub { display: none; }
}

/* ════════════════════════════════════════
   FORFAITS details/summary natif
════════════════════════════════════════ */
.forfaits {
  max-width: 720px;
  margin: 0 auto;
}
/* ── Bandeau forfaits 3 colonnes ── */
/* ═══════════════════════════════════════════════════════════ */
/* ── Bandeau forfaits 3 colonnes — style Apple              */
/* ═══════════════════════════════════════════════════════════ */
.bandeau-forfaits {
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  background: var(--surface);
  box-shadow: 0 2px 24px rgba(0,0,0,0.04);
}

.bandeau-forfaits__headers {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
}


.bforfait__sep {
  width: 1px;
  background: var(--border);
  align-self: stretch;
}

.bforfait { min-width: 0; }

/* ── En-tête cliquable ── */
.bforfait__header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding: 32px 32px 28px;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background 0.25s;
  position: relative;
}
.bforfait__header:not([aria-expanded="true"]) {
  background: #ffffff;
  border-bottom: 2px solid transparent;
  transition: background 0.2s, border-color 0.2s;
}
.bforfait__header:hover:not([aria-expanded="true"]) {
  background: var(--bg-warm);
  border-bottom: 2px solid var(--blue);
}

/* Hint au-dessus du bandeau */
.bandeau-forfaits__hint {
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--smoke);
  margin-bottom: 10px;
}
.bforfait__header[aria-expanded="true"] { background: var(--blue); }

/* Numéro géant qui déborde en haut */
.bforfait__num {
  position: absolute;
  top: -18px;
  left: 20px;
  font-family: var(--sans);
  font-size: 80px;
  font-weight: 800;
  line-height: 1;
  color: var(--border);
  letter-spacing: -4px;
  pointer-events: none;
  transition: color 0.25s;
  z-index: 1;
}
.bforfait__header[aria-expanded="true"] .bforfait__num {
  color: rgba(255,255,255,0.15);
}
.bforfait__header:hover:not([aria-expanded="true"]) .bforfait__num {
  color: var(--cloud);
}

.bforfait__label {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  transition: color 0.25s;
}
.bforfait__header[aria-expanded="true"] .bforfait__label { color: rgba(255,255,255,0.45); }
.bandeau-forfaits__headers > .bforfait:nth-child(3) .bforfait__label,
.bandeau-forfaits__headers > .bforfait:nth-child(5) .bforfait__label { color: var(--orange); }
.bandeau-forfaits__headers > .bforfait:nth-child(3) .bforfait__header[aria-expanded="true"] .bforfait__label,
.bandeau-forfaits__headers > .bforfait:nth-child(5) .bforfait__header[aria-expanded="true"] .bforfait__label { color: rgba(255,255,255,0.45); }

.bforfait__name {
  font-family: var(--sans);
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.5px;
  line-height: 1.15;
  transition: color 0.25s;
}
.bforfait__header[aria-expanded="true"] .bforfait__name { color: #fff; }

.bforfait__tagline {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 300;
  color: var(--smoke);
  line-height: 1.4;
  padding-right: 32px;
  transition: color 0.25s;
}
.bforfait__header[aria-expanded="true"] .bforfait__tagline { color: rgba(255,255,255,0.55); }

.bforfait__arrow {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px; height: 20px;
  color: var(--smoke);
  transition: transform 0.3s var(--ease-out), color 0.25s;
}
.bforfait__arrow svg { width: 100%; height: 100%; }
.bforfait__header[aria-expanded="true"] .bforfait__arrow {
  transform: translateY(-50%) rotate(180deg);
  color: rgba(255,255,255,0.6);
}

/* ── Corps déroulant pleine largeur ── */
.bforfait__body {
  border-top: 1px solid var(--border);
  padding: 36px 40px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
  min-height: 520px;
  animation: bforfaitOpen 0.3s var(--ease-out);
}
.bforfait__body[hidden] { display: none !important; }

@keyframes bforfaitOpen {
  from { opacity: 0; transform: translateX(32px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Titre — pleine largeur, une seule ligne, 2 graisses */
.bforfait__body-title {
  font-family: var(--sans);
  font-size: clamp(22px, 2.8vw, 36px);
  line-height: 1.2;
  letter-spacing: -1px;
  white-space: nowrap;
  width: 100%;
  text-align: center;
  margin-top: 48px;
}
.bforfait__body-title--light {
  font-weight: 300;
  color: var(--smoke);
}
.bforfait__body-title--bold {
  font-weight: 700;
  color: var(--ink);
}

/* Rangée des 2 chiffres côte à côte */
.bforfait__features-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  width: 100%;
  margin-top: 20px;
}
.bforfait__feature-divider {
  width: 1px;
  background: var(--border);
  align-self: stretch;
  margin: 0 14px;
  flex-shrink: 0;
}

/* Bloc chiffre/feature */
.bforfait__feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.bforfait__feature-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--blue);
}
.bforfait__feature-value {
  font-family: var(--sans);
  font-size: 44px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -2px;
  line-height: 1;
}
.bforfait__feature-value sup {
  font-size: 22px;
  font-weight: 400;
  vertical-align: super;
  letter-spacing: 0;
}
.bforfait__feature-desc {
  font-size: 12px;
  font-weight: 300;
  color: var(--smoke);
  line-height: 1.5;
  text-align: center;
}

/* Liste épurée */
.bforfait__list {
  list-style: none;
  margin-top: 0;
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  align-items: flex-start;
  text-align: left;
}
.bforfait__list li {
  font-size: 14px;
  font-weight: 400;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.2;
}
.bforfait__list li::before {
  content: '';
  display: block;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
}

/* Note */
.bforfait__note {
  font-size: 11px;
  font-weight: 300;
  color: var(--mist);
  font-style: italic;
}

/* Badges mutuelles */
.bforfait__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.bforfait__badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 13px;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 500;
  color: var(--smoke);
  background: var(--bg-alt);
}

/* CTA */
.bforfait__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 13px 30px;
  background: var(--ink);
  color: #fff;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.2px;
  transition: background 0.2s, transform 0.15s;
}
.bforfait__cta:hover { background: var(--ink-soft); transform: translateY(-1px); }

/* ── Mobile ── */
@media (max-width: 700px) {
  /* Forfaits mobile : onglets en colonne compacte */
  .bandeau-forfaits__headers {
    grid-template-columns: 1fr;
    border-radius: 12px 12px 0 0;
  }
  .bforfait__sep { width: 100%; height: 1px; }
  .bforfait__header {
    padding: 12px 16px;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    min-height: 56px;
  }
  .bforfait__name {
    font-size: 14px;
    line-height: 1.2;
    flex-shrink: 0;
    white-space: normal;
    max-width: 40%;
  }
  .bforfait__tagline {
    font-size: 11px;
    flex: 1;
    white-space: normal;
    line-height: 1.3;
    opacity: 0.75;
  }
  .bforfait__arrow { margin-left: auto; flex-shrink: 0; }
  .bforfait__body { padding: 20px 16px; gap: 16px; }
  .bforfait__body-title { font-size: 18px; white-space: normal; }
  .bforfait__features-row { flex-direction: row; flex-wrap: wrap; gap: 12px; justify-content: center; }
  .bforfait__feature-divider { display: none; }
  .bforfait__feature-value { font-size: 32px; }
  .bforfait__feature-desc { font-size: 11px; }
  .bspec__content { gap: 16px; }
}

.forfait-body {
  padding: 0 4px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.forfait-body__desc {
  font-size: 14px;
  color: var(--smoke);
  line-height: 1.6;
}
.forfait-body__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.forfait-body__list li { font-size: 13px; color: var(--smoke); }
.forfait-body__note { font-size: 11px; color: var(--mist); font-style: italic; }

.forfait-body__prix {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.forfait-body__prix-item {
  border: 0.5px solid var(--border);
  border-radius: 10px;
  padding: 12px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}
.forfait-body__prix-item--star { border: 1.5px solid var(--blue); }
.forfait-body__prix-badge {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(45,125,210,0.1);
  border-radius: 4px;
  padding: 2px 6px;
}
.forfait-body__prix-nom { font-size: 13px; font-weight: 600; color: var(--ink); }
.forfait-body__prix-item--star .forfait-body__prix-nom { color: var(--blue); }
.forfait-body__prix-val { font-family: var(--serif); font-size: 20px; font-weight: 500; color: var(--ink); }
.forfait-body__prix-item--star .forfait-body__prix-val { color: var(--blue); }
.forfait-body__prix-desc { font-size: 10px; color: var(--smoke); line-height: 1.3; }

.forfait-body__cta {
  display: inline-block;
  align-self: flex-start;
  padding: 10px 24px;
  background: var(--blue);
  color: white;
  border-radius: 24px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: background 0.2s;
}
.forfait-body__cta:hover { background: var(--ink-soft); }

/* ═══════════════════════════════════════════════════════════ */
/*  ACCORDÉON SPÉCIALITÉS                                     */
/* ═══════════════════════════════════════════════════════════ */
.spec-accordion {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.spec-acc__item {
  border-bottom: 1px solid var(--border);
}
.spec-acc__item:first-child {
  border-top: 1px solid var(--border);
}
.spec-acc__header {
  width: 100%;
  display: grid;
  grid-template-columns: 40px 1fr auto 24px;
  align-items: center;
  gap: 16px;
  padding: 22px 0;
  background: none;
  cursor: pointer;
  text-align: left;
  transition: opacity 0.2s;
}
.spec-acc__header:hover { opacity: 0.75; }
.spec-acc__num {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--mist);
}
.spec-acc__title {
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
}
.spec-acc__desc {
  font-size: 13px;
  color: var(--smoke);
  font-weight: 300;
}
.spec-acc__arrow svg {
  width: 20px;
  height: 20px;
  stroke: var(--mist);
  transition: transform 0.25s;
}
.spec-acc__header[aria-expanded="true"] .spec-acc__arrow svg {
  transform: rotate(180deg);
}
.spec-acc__header[aria-expanded="true"] .spec-acc__title {
  color: var(--blue);
}
.spec-acc__body {
  padding: 0 0 28px 56px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  animation: specOpen 0.25s ease;
}
@keyframes specOpen {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.spec-acc__body p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.7;
  margin: 0;
}
.spec-acc__body h4 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--ink);
  margin: 8px 0 0;
}
.spec-acc__body ul, .spec-acc__body ol {
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 0;
}
.spec-acc__body li {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
}
.spec-acc__cta {
  margin-top: 8px;
}
.spec-acc__cta a {
  font-size: 14px;
  font-weight: 500;
  color: var(--blue);
  text-decoration: none;
}
.spec-acc__cta a:hover { text-decoration: underline; }

@media (max-width: 600px) {
  .spec-acc__header { grid-template-columns: 32px 1fr 20px; }
  .spec-acc__desc { display: none; }
  .spec-acc__body { padding-left: 32px; }
}

/* ═══════════════════════════════════════════════════════════ */
/*  BANDEAU SPÉCIALITÉS (même style que forfaits)             */
/* ═══════════════════════════════════════════════════════════ */
.bandeau-specialites__headers {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr auto 1fr;
  border: 1.5px solid var(--border);
  border-radius: 16px 16px 0 0;
  overflow: hidden;
}
.bspec { display: contents; }
.bspec__body {
  border-radius: 0 0 16px 16px;
  text-align: left;
}
.bspec__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  width: 100%;
  text-align: left;
}
.bspec__col {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
}
.bspec__col h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink);
  margin: 8px 0 0;
  text-align: center;
}
.bspec__col p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.7;
  margin: 0;
}
@media (max-width: 700px) {
  /* Spécialités mobile : onglets en colonne compacte */
  .bandeau-specialites__headers {
    grid-template-columns: 1fr;
    border-radius: 12px 12px 0 0;
  }
  .bandeau-specialites .bforfait__header {
    padding: 14px 16px;
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }
  .bandeau-specialites .bforfait__name { font-size: 15px; line-height: 1.2; }
  .bandeau-specialites .bforfait__tagline { font-size: 11px; flex: 1; }
  .bandeau-specialites .bforfait__arrow { margin-left: auto; flex-shrink: 0; }
  .bspec__content { grid-template-columns: 1fr; gap: 16px; }
}

.loc__header { text-align: center; margin-bottom: 40px; }
.loc__nom {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 8px;
}

.nos-marques-section {
  padding: var(--section-pad) 0;
  background: var(--bg-alt);
}

/* ═══════════════════════════════════════════════════════════ */
/*  DESKTOP/MOBILE VISIBILITY                                  */
/* ═══════════════════════════════════════════════════════════ */
.desktop-only { display: block; }
.mobile-only  { display: none; }
@media (max-width: 700px) {
  .desktop-only { display: none !important; }
  .mobile-only  { display: block !important; }
}

/* ═══════════════════════════════════════════════════════════ */
/*  ACCORDÉON MOBILE INLINE (spécialités + forfaits)          */
/* ═══════════════════════════════════════════════════════════ */
.spec-mobile-accordion {
  border: 1.5px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}
.sma__item {
  border-bottom: 1px solid var(--border);
}
.sma__item:last-child { border-bottom: none; }
.sma__header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  background: #fff;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s;
}
.sma__header[aria-expanded="true"] {
  background: var(--blue);
}
.sma__name {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
}
.sma__header[aria-expanded="true"] .sma__name { color: #fff; }
.sma__arrow svg {
  width: 18px;
  height: 18px;
  stroke: var(--mist);
  flex-shrink: 0;
  transition: transform 0.25s;
}
.sma__header[aria-expanded="true"] .sma__arrow svg {
  transform: rotate(180deg);
  stroke: rgba(255,255,255,0.7);
}
.sma__body {
  padding: 16px 18px;
  background: var(--bg-alt);
  animation: specOpen 0.2s ease;
}
.sma__body p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.7;
  margin: 0 0 8px;
}
.sma__body p:last-child { margin-bottom: 0; }
.sma__note {
  font-size: 12px !important;
  color: var(--mist) !important;
  font-style: italic;
}
