/* ============================================
   STÉPHANIE LASALLE — Glassmorphism discipliné · iOS / visionOS
   Refonte : glass tier-based, easing exponentiel, perf GPU.
   ============================================ */

*, *::before, *::after { box-sizing: border-box; }

:root {
  /* Palette chaude « Le Fil de Soi » — crème / caramel / espresso (dérivée du logo) */
  --ink: oklch(0.33 0.03 62);
  --ink-soft: oklch(0.47 0.032 64);
  --ink-mute: oklch(0.60 0.028 66);
  --paper: oklch(0.955 0.018 84);
  --line: oklch(0.80 0.022 76 / 0.55);
  --line-dark: oklch(0.33 0.03 62 / 0.10);

  /* Glass tiers : crème translucide chaude */
  --glass-strong: oklch(0.985 0.016 84 / 0.72);
  --glass-mid: oklch(0.985 0.016 84 / 0.48);
  --glass-soft: oklch(0.985 0.016 84 / 0.32);

  /* Surfaces solides tintées crème */
  --surface-1: oklch(0.975 0.016 82 / 0.92);
  --surface-2: oklch(0.955 0.02 80 / 0.9);

  --shadow-1: 0 1px 2px oklch(0.36 0.04 55 / 0.05), 0 4px 12px oklch(0.36 0.04 55 / 0.07);
  --shadow-2: 0 2px 6px oklch(0.36 0.04 55 / 0.07), 0 16px 40px oklch(0.36 0.04 55 / 0.11);
  --shadow-3: 0 4px 12px oklch(0.36 0.04 55 / 0.09), 0 28px 70px oklch(0.36 0.04 55 / 0.15);
  --shadow-press: 0 2px 6px oklch(0.36 0.04 55 / 0.09);

  --accent: oklch(0.58 0.07 62);
  --accent-soft: oklch(0.58 0.07 62 / 0.14);
  --accent-2: oklch(0.66 0.085 44);
  --success: oklch(0.62 0.09 150);

  --radius-s: 14px;
  --radius-m: 22px;
  --radius-l: 32px;
  --radius-xl: 40px;

  --font: 'Inter', system-ui, -apple-system, 'SF Pro Text', 'Segoe UI', sans-serif;
  --serif: 'Instrument Serif', 'Iowan Old Style', Georgia, serif;

  /* Easing exponentiel (ease-out-expo) — bien plus snappy que cubic 0.2,0.8 */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --d-fast: 220ms;
  --d-mid: 380ms;
  --d-slow: 600ms;
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  letter-spacing: -0.005em;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

/* ============ AURORA BACKGROUND ============
   3 blobs au lieu de 5 (perf GPU), gradient stable, grain sans blend-mode.
*/
.aurora {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background:
    linear-gradient(180deg,
      oklch(0.965 0.02 88) 0%,
      oklch(0.95 0.028 74) 40%,
      oklch(0.952 0.026 64) 72%,
      oklch(0.96 0.02 92) 100%);
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.4;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}
.blob-1 { width: 58vw; height: 58vw; background: oklch(0.88 0.065 48); top: -18vw; left: -10vw; animation: drift1 70s ease-in-out infinite alternate; }
.blob-2 { width: 50vw; height: 50vw; background: oklch(0.87 0.06 74); top: 18vh; right: -16vw; animation: drift2 80s ease-in-out infinite alternate; }
.blob-3 { width: 48vw; height: 48vw; background: oklch(0.89 0.045 120); bottom: -12vw; left: 8vw; animation: drift3 75s ease-in-out infinite alternate; opacity: 0.32; }
/* blob-4 et blob-5 cachés via CSS plutôt que retirés du HTML (préserve compat) */
.blob-4, .blob-5 { display: none; }

@keyframes drift1 { 0%{transform:translate3d(0,0,0) scale(1);} 100%{transform:translate3d(6vw,10vh,0) scale(1.12);} }
@keyframes drift2 { 0%{transform:translate3d(0,0,0) scale(1.05);} 100%{transform:translate3d(-8vw,6vh,0) scale(0.95);} }
@keyframes drift3 { 0%{transform:translate3d(0,0,0) scale(1);} 100%{transform:translate3d(10vw,-8vh,0) scale(1.08);} }

/* Grain : sans mix-blend-mode pour éviter le repaint cher pendant scroll */
.grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.5 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ============ GLASS PRIMITIVE — Tier-based ============
   Discipline : par défaut, .glass n'a PAS de backdrop-filter (trop coûteux).
   Les composants qui en ont vraiment besoin (nav, hero, contact, faq, marquee,
   floating-chip) ajoutent la classe `.has-blur` ou utilisent une définition
   override ci-dessous.
*/
.glass {
  background: var(--surface-1);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-1);
  transition: transform var(--d-mid) var(--ease-out-expo),
              box-shadow var(--d-mid) var(--ease-out-expo);
}

/* Tier 1 — Glass marqué (nav, contact dark, floating chips) */
.nav.glass,
.floating-chip.glass,
.kicker,
.marquee.glass,
.faq.glass,
.contact-card.glass,
.footer-inner.glass,
.hero-left.glass {
  background: var(--glass-strong);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  backdrop-filter: blur(24px) saturate(180%);
  border-color: oklch(1 0 0 / 0.55);
  box-shadow: var(--shadow-2), inset 0 1px 0 oklch(1 0 0 / 0.7);
}

/* Hover state : élévation subtile mais snappy */
.glass:hover,
.nav.glass:hover {
  /* nav ne bouge pas au hover (sticky, pas un component cliquable) */
}

.glass-frame {
  background: oklch(1 0 0 / 0.4);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  border: 1px solid oklch(1 0 0 / 0.5);
  box-shadow: var(--shadow-2);
  border-radius: var(--radius-l);
  overflow: hidden;
  padding: 10px;
}
.glass-frame img { width: 100%; height: 100%; object-fit: cover; border-radius: 24px; }

/* ============ NAV ============ */
.nav-wrap {
  position: sticky;
  top: 14px;
  z-index: 50;
  padding: 0 18px;
}
.nav {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px 14px 10px 22px;
  border-radius: 100px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 15.5px;
  letter-spacing: -0.01em;
}
.brand-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  box-shadow: 0 0 12px oklch(0.65 0.18 285 / 0.5);
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 4px;
  padding: 0;
  margin: 0;
}
.nav-links a {
  font-size: 14.5px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 100px;
  color: var(--ink-soft);
  transition: background var(--d-fast) var(--ease-out-expo),
              color var(--d-fast) var(--ease-out-expo);
}
.nav-links a:hover {
  background: oklch(1 0 0 / 0.55);
  color: var(--ink);
}
.nav-cta {
  background: var(--ink);
  color: oklch(1 0 0);
  font-weight: 500;
  font-size: 14px;
  padding: 10px 18px;
  border-radius: 100px;
  transition: transform var(--d-fast) var(--ease-out-expo),
              background var(--d-fast) var(--ease-out-expo),
              box-shadow var(--d-fast) var(--ease-out-expo);
}
.nav-cta:hover {
  transform: translate3d(0, -1px, 0);
  background: oklch(0.26 0.03 58);
  box-shadow: var(--shadow-2);
}

@media (max-width: 880px) {
  .nav-links { display: none; }
}

/* ============ TYPO HELPERS ============
   Bug fix : on retire le swap serif global sur tous les <em>.
   Le swap est désormais opt-in via .serif-em (ajouté manuellement aux endroits
   où c'est délibéré : hero title, about h2). Évite la baseline cassée Inter/serif.
*/
em {
  font-style: italic;
  /* font-family conservée — pas de swap automatique */
}
.hero-title em,
.about-text h2 em,
.section-title em,
.faq-intro h2 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.005em;
  /* Aligne le serif avec Inter via line-height local */
  line-height: 0.95;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-mute);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.section-tag::before {
  content: "";
  width: 28px; height: 1px;
  background: currentColor;
  opacity: 0.45;
}
.section-tag.light { color: oklch(1 0 0 / 0.7); }

.section-title {
  font-family: var(--serif);
  font-size: clamp(32px, 4.6vw, 58px);
  line-height: 1.06;
  letter-spacing: -0.008em;
  font-weight: 400;
  margin: 0 0 18px;
  color: var(--ink);
}
.section-lede {
  font-size: 21px;
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 65ch;
  margin: 0;
  letter-spacing: -0.008em;
  font-weight: 400;
}

.section {
  max-width: 1240px;
  margin: 0 auto;
  padding: 80px 22px;
}

/* Rythme : sections "respiration" (approche, parcours) plus aérées,
   sections "denses" (seances, faq, contact) plus compactes.
   Crée une cadence visuelle au lieu d'un défilement plat. */
#approche, #parcours { padding-top: 120px; padding-bottom: 100px; }
#galerie { padding-top: 100px; padding-bottom: 60px; }
#contact { padding-top: 64px; padding-bottom: 80px; }

.section-head {
  margin-bottom: 56px;
  max-width: 760px;
}
/* Section-head des sections respiration : plus de bottom margin */
#approche .section-head,
#parcours .section-head { margin-bottom: 72px; }

/* ============ HERO ============ */
.hero {
  max-width: 1240px;
  margin: 0 auto;
  padding: 48px 22px 40px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: stretch;
}
.card-xl {
  border-radius: var(--radius-xl);
  padding: 44px 44px 38px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 560px;
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
  padding: 8px 14px;
  border-radius: 100px;
  width: fit-content;
  margin-bottom: 24px;
}
.pulse-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 0 oklch(0.7 0.16 145 / 0.55);
  animation: pulse 2.4s var(--ease-out-quart) infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 oklch(0.7 0.16 145 / 0.55); }
  70%  { box-shadow: 0 0 0 12px oklch(0.7 0.16 145 / 0); }
  100% { box-shadow: 0 0 0 0 oklch(0.7 0.16 145 / 0); }
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(34px, 4.4vw, 60px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0 0 24px;
  color: var(--ink);
}
.hero-lede {
  font-size: 19px;
  color: var(--ink-soft);
  max-width: 56ch;
  margin: 0 0 30px;
  line-height: 1.55;
  letter-spacing: -0.005em;
}
.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 38px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  font-size: 15px;
  padding: 14px 22px;
  border-radius: 100px;
  border: 1px solid transparent;
  transition: transform var(--d-fast) var(--ease-out-expo),
              background var(--d-fast) var(--ease-out-expo),
              box-shadow var(--d-fast) var(--ease-out-expo);
}
/* Feel responsive sur press (Emil law) : scale down subtle */
.btn:active { transform: scale(0.97); }
/* Accessibility : focus-visible ring tinté brand, jamais d'outline none silencieux */
.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
.btn-primary {
  background: var(--ink);
  color: oklch(1 0 0);
  box-shadow: 0 6px 20px oklch(0.22 0.012 280 / 0.22);
}
.btn-primary:hover {
  transform: translate3d(0, -2px, 0);
  background: oklch(0.26 0.03 58);
  box-shadow: 0 14px 32px oklch(0.36 0.04 55 / 0.32);
}
.btn-primary:active {
  transform: translate3d(0, 0, 0) scale(0.97);
  box-shadow: var(--shadow-press);
}
.btn-ghost {
  background: oklch(1 0 0 / 0.5);
  color: var(--ink);
  border-color: oklch(1 0 0 / 0.65);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}
.btn-ghost:hover {
  transform: translate3d(0, -2px, 0);
  background: oklch(1 0 0 / 0.78);
}
.btn-ghost:active { transform: translate3d(0, 0, 0) scale(0.97); }
.btn-light {
  background: oklch(1 0 0);
  color: var(--ink);
  width: 100%;
  justify-content: center;
}
.btn-light:hover { transform: translate3d(0, -2px, 0); box-shadow: var(--shadow-2); }
.btn-light:active { transform: translate3d(0, 0, 0) scale(0.97); }
.btn-glass {
  background: oklch(1 0 0 / 0.55);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  border-color: oklch(1 0 0 / 0.65);
  color: var(--ink);
}
.btn-glass:hover { background: oklch(1 0 0 / 0.82); transform: translate3d(0, -2px, 0); }
.btn-glass:active { transform: translate3d(0, 0, 0) scale(0.97); }

/* Nav CTA : même traitement active + focus-visible */
.nav-cta:active { transform: translate3d(0, 0, 0) scale(0.97); }
.nav-cta:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
.nav-links a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  background: oklch(1 0 0 / 0.55);
}

.meta-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding-top: 24px;
  border-top: 1px solid var(--line-dark);
}
.meta-k {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--ink-mute);
  margin-bottom: 6px;
  line-height: 1;
}
.meta-v {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.45;
}

/* HERO right */
.hero-right {
  position: relative;
  min-height: 560px;
}
.hero-photo {
  height: 100%;
  position: relative;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 26px;
}
.hero-photo figcaption {
  position: absolute;
  left: 24px;
  bottom: 24px;
  background: oklch(0.28 0.03 55 / 0.58);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  color: oklch(1 0 0);
  padding: 14px 18px;
  border-radius: 18px;
  border: 1px solid oklch(1 0 0 / 0.2);
  display: flex;
  flex-direction: column;
}
.cap-label { font-size: 11px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.75; }
.cap-line { font-size: 14.5px; font-weight: 500; margin-top: 2px; }

.floating-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px 12px 14px;
  border-radius: 100px;
  font-size: 13px;
  z-index: 2;
}
.chip-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  color: oklch(1 0 0);
  display: grid; place-items: center;
  font-weight: 600;
}
.chip-title { font-weight: 600; font-size: 13.5px; }
.chip-sub { font-size: 11.5px; color: var(--ink-mute); }
/* Chips repositionnés à l'intérieur du parent (au lieu de déborder à -22px) */
.chip-1 { top: 24px; left: 12px; animation: float 7s var(--ease-out-quart) infinite; }
.chip-2 { bottom: 100px; right: 12px; animation: float 9s var(--ease-out-quart) infinite reverse; }

@keyframes float {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50%      { transform: translate3d(0, -4px, 0); }
}

/* MARQUEE */
.marquee {
  margin-top: 28px;
  border-radius: 100px;
  padding: 14px 0;
  overflow: hidden;
  position: relative;
}
.marquee::before,
.marquee::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0; width: 80px;
  pointer-events: none;
  z-index: 2;
}
.marquee::before { left: 0; background: linear-gradient(to right, var(--glass-strong), transparent); }
.marquee::after { right: 0; background: linear-gradient(to left, var(--glass-strong), transparent); }
.marquee-track {
  display: flex;
  gap: 28px;
  white-space: nowrap;
  animation: marquee 60s linear infinite;
  font-size: 14px;
  color: var(--ink-soft);
  font-weight: 500;
  padding: 0 28px;
  will-change: transform;
}
.marquee-track span:nth-child(odd) {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  color: var(--ink);
}
@keyframes marquee {
  0%   { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

/* ============ PILLARS ============
   Bug fix : retire .glass automatique sur pillar, applique surface solide
   tinté pour plus de lisibilité + perf. Hover : translateY only (pas double).
*/
.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.pillar {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: 22px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-1);
  transition: transform var(--d-mid) var(--ease-out-expo),
              box-shadow var(--d-mid) var(--ease-out-expo);
}
.pillar:hover {
  transform: translate3d(0, -4px, 0);
  box-shadow: var(--shadow-2);
}
.pillar-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 28px;
  color: var(--ink-mute);
  margin-bottom: 8px;
  line-height: 1;
}
.pillar-img {
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 18px;
  height: 180px;
}
.pillar-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--d-slow) var(--ease-out-expo);
}
.pillar:hover .pillar-img img { transform: scale(1.04); }
.pillar h3 {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.015em;
}
.pillar p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14.5px;
  line-height: 1.5;
}

/* ============ FORMATS ============
   Bug fix : retire .glass auto + .fc-photo en filigrane (anti-pattern Canva).
   min-height supprimé → le contenu coule, plus de vide sous-card.
*/
.formats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 24px;
}
/* TOUTES les format-cards : white opaque par défaut, "ink reveal" cinématique au hover.
   Le fond noir vient d'un pseudo-element ::after qui révèle via clip-path circle
   en expansion depuis le bas-centre — sensation d'encre qui se diffuse.
   Les couleurs texte/border cascadent via variables CSS avec un léger delay
   pour qu'elles s'alignent avec l'arrivée de l'encre.
*/
.format-card {
  --fc-fg: var(--ink);
  --fc-fg-soft: var(--ink-soft);
  --fc-fg-mute: var(--ink-mute);
  --fc-border: oklch(0.9 0.01 280);
  --fc-line: oklch(0.92 0.008 280);
  --fc-tag-bg: oklch(0.96 0.01 280);
  --fc-tag-fg: var(--ink-soft);
  --fc-cta: var(--accent);
  --fc-dot: var(--accent);
  --fc-color-delay: 0ms;

  background: oklch(1 0 0);
  border: 1px solid var(--fc-border);
  border-radius: var(--radius-l);
  padding: 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  isolation: isolate;
  overflow: visible;
  box-shadow: var(--shadow-1);
  color: var(--fc-fg);
  transition: border-color 360ms var(--ease-out-expo) var(--fc-color-delay),
              transform 480ms cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 480ms cubic-bezier(0.16, 1, 0.3, 1);
}

/* Le sweep d'encre noir — clip-path circle qui s'expanse du bas-centre.
   border-radius: inherit assure que les coins arrondis sont respectés.
   Easing strong ease-in-out-quart pour une diffusion organique. */
.format-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: oklch(0.28 0.035 55);
  border-radius: inherit;
  clip-path: circle(0% at 50% 110%);
  transition: clip-path 720ms cubic-bezier(0.77, 0, 0.175, 1);
  z-index: -1;
  pointer-events: none;
}
.format-card:hover::after {
  clip-path: circle(170% at 50% 110%);
}

/* Tous les enfants au-dessus du sweep + transitions avec léger delay
   pour laisser l'encre arriver d'abord (~180ms d'avance). */
.format-card > * {
  position: relative;
  z-index: 1;
}

/* HOVER : la cascade de variables couleurs (texte, tags, borders, dots, CTA).
   --fc-color-delay décale légèrement la transition pour synchro avec le sweep. */
.format-card:hover {
  --fc-fg: oklch(1 0 0);
  --fc-fg-soft: oklch(1 0 0 / 0.85);
  --fc-fg-mute: oklch(1 0 0 / 0.6);
  --fc-border: oklch(0.28 0.035 55);
  --fc-line: oklch(1 0 0 / 0.14);
  --fc-tag-bg: oklch(1 0 0 / 0.1);
  --fc-tag-fg: oklch(1 0 0 / 0.92);
  --fc-cta: oklch(1 0 0);
  --fc-dot: oklch(0.78 0.09 66);
  --fc-color-delay: 180ms;
  transform: translate3d(0, -8px, 0);
  box-shadow: 0 28px 60px oklch(0.28 0.035 55 / 0.34);
}
.fc-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
}
.fc-tag {
  font-size: 11px;
  font-weight: 600;
  padding: 5px 11px;
  border-radius: 100px;
  background: var(--fc-tag-bg);
  border: 1px solid var(--fc-line);
  color: var(--fc-tag-fg);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 380ms var(--ease-out-expo) var(--fc-color-delay, 0ms),
              color 380ms var(--ease-out-expo) var(--fc-color-delay, 0ms),
              border-color 380ms var(--ease-out-expo) var(--fc-color-delay, 0ms);
}
.fc-tag-accent {
  background: var(--accent);
  border-color: var(--accent);
  color: oklch(1 0 0);
}
.format-card:hover .fc-tag-accent {
  background: var(--accent);
  border-color: var(--accent);
  color: oklch(1 0 0);
}
.fc-time {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--fc-fg-mute);
  transition: color 380ms var(--ease-out-expo) var(--fc-color-delay, 0ms);
}
.format-card h3 {
  margin: 0 0 12px;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--fc-fg);
  transition: color 380ms var(--ease-out-expo) var(--fc-color-delay, 0ms);
}
.format-card p {
  margin: 0 0 18px;
  color: var(--fc-fg-soft);
  font-size: 15px;
  line-height: 1.55;
  transition: color 380ms var(--ease-out-expo) var(--fc-color-delay, 0ms);
}
.fc-list {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  color: var(--fc-fg);
}
.fc-list li {
  font-size: 14px;
  padding: 10px 0;
  border-top: 1px solid var(--fc-line);
  position: relative;
  padding-left: 18px;
  color: var(--fc-fg);
  transition: border-color 380ms var(--ease-out-expo) var(--fc-color-delay, 0ms),
              color 380ms var(--ease-out-expo) var(--fc-color-delay, 0ms);
}
.fc-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 16px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--fc-dot);
  opacity: 0.85;
  transition: background 380ms var(--ease-out-expo) var(--fc-color-delay, 0ms);
}
.fc-cta {
  margin-top: auto;
  font-weight: 500;
  font-size: 14.5px;
  color: var(--fc-cta);
  padding-top: 14px;
  border-top: 1px solid var(--fc-line);
  transition: transform var(--d-fast) var(--ease-out-expo),
              color 380ms var(--ease-out-expo) var(--fc-color-delay, 0ms),
              border-color 380ms var(--ease-out-expo) var(--fc-color-delay, 0ms);
  display: inline-block;
}
.fc-cta:hover { transform: translate3d(4px, 0, 0); }

/* fc-photo en filigrane retiré : on garde le sélecteur pour ne pas casser
   le HTML existant, mais on masque visuellement (les <div class="fc-photo">
   restent inertes). */
.fc-photo { display: none; }

/* Card mise en avant : reste white par défaut (cohérence), garde
   le badge POPULAIRE + ring brand-tinté + lift permanent.
   Au hover : suit la cascade noire des autres cards. */
.card-feature {
  --fc-border: oklch(0.65 0.18 285 / 0.4);
  box-shadow:
    0 0 0 1px oklch(0.65 0.18 285 / 0.18),
    0 20px 50px oklch(0.65 0.18 285 / 0.18);
  transform: translate3d(0, -6px, 0);
}
.card-feature::before {
  content: "Populaire";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: oklch(1 0 0);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  box-shadow: 0 6px 18px oklch(0.65 0.18 285 / 0.45);
  white-space: nowrap;
  z-index: 2;
}
.card-feature:hover {
  --fc-border: oklch(0.28 0.035 55);
  transform: translate3d(0, -10px, 0);
  box-shadow:
    0 0 0 1px oklch(0.65 0.18 285 / 0.3),
    0 32px 70px oklch(0.65 0.18 285 / 0.32);
}

.domains {
  background: var(--glass-strong);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-2);
  border-radius: var(--radius-l);
  padding: 36px;
}
.domains h3 {
  margin: 0 0 22px;
  font-size: 18px;
  font-weight: 600;
}
.domain-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.domain-grid span {
  font-size: 14px;
  font-weight: 500;
  padding: 10px 18px;
  border-radius: 100px;
  background: oklch(1 0 0 / 0.6);
  border: 1px solid var(--line);
  color: var(--ink-soft);
  transition: background var(--d-fast) var(--ease-out-expo),
              color var(--d-fast) var(--ease-out-expo),
              transform var(--d-fast) var(--ease-out-expo);
}
.domain-grid span:hover {
  background: var(--ink);
  color: oklch(1 0 0);
  transform: translate3d(0, -2px, 0);
}

/* ============ ABOUT ============ */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: stretch;
}
.about-photo {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.about-photo .glass-frame {
  flex: 1;
  min-height: 380px;
}
.about-photo .glass-frame img { min-height: 380px; }
.quote {
  background: var(--surface-1);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-1);
  border-radius: var(--radius-m);
  padding: 22px 26px;
}
.quote p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  line-height: 1.3;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}
.quote span {
  font-size: 13px;
  color: var(--ink-mute);
}
.card-light {
  border-radius: var(--radius-l);
  padding: 44px;
  background: var(--glass-strong);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-2);
}
.about-text h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 3.6vw, 46px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.008em;
  margin: 0 0 20px;
}
.about-text p {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 0 0 16px;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--line-dark);
}
.stat-n {
  font-family: var(--serif);
  font-size: 42px;
  line-height: 1;
  font-style: italic;
  margin-bottom: 4px;
  color: var(--ink);
}
.stat-l {
  font-size: 13px;
  color: var(--ink-mute);
}

/* ============ STEPS ============
   Bug fix : align-items stretch + .glass auto retiré (surface solide).
*/
.steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.step {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: 22px;
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 22px;
  align-items: stretch;
  box-shadow: var(--shadow-1);
  transition: transform var(--d-mid) var(--ease-out-expo),
              box-shadow var(--d-mid) var(--ease-out-expo);
}
.step:hover {
  transform: translate3d(0, -4px, 0);
  box-shadow: var(--shadow-2);
}
.step-img {
  width: 110px; height: 110px;
  border-radius: 18px;
  overflow: hidden;
  align-self: center;
}
.step-img img { width: 100%; height: 100%; object-fit: cover; }
.step-body {
  align-self: center;
}
.step-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--ink-mute);
  margin-bottom: 4px;
  display: block;
  line-height: 1;
}
.step-body h3 {
  margin: 0 0 6px;
  font-size: 20px;
  font-weight: 600;
}
.step-body p {
  margin: 0;
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.5;
}

/* ============ GALLERY ============
   Bug fix : retire le double transform (parent + img scale). Hover = uniquement
   img scale léger, parent ne bouge pas. Plus propre.
*/
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 14px;
}
.g-item {
  border-radius: var(--radius-m);
  overflow: hidden;
  position: relative;
  background: oklch(1 0 0 / 0.4);
  box-shadow: var(--shadow-1);
  transition: box-shadow var(--d-mid) var(--ease-out-expo);
}
.g-item:hover { box-shadow: var(--shadow-2); }
.g-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--d-slow) var(--ease-out-expo);
}
.g-item:hover img { transform: scale(1.06); }
.g-tall { grid-row: span 2; }
.g-wide { grid-column: span 2; }

/* ============ FAQ ============ */
.faq-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: start;
}
.faq-intro h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.008em;
  font-weight: 400;
  margin: 0 0 18px;
}
.faq-intro p {
  font-size: 16px;
  color: var(--ink-soft);
  margin: 0 0 26px;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq {
  border-radius: var(--radius-m);
  padding: 0;
  overflow: hidden;
}
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  transition: color var(--d-fast) var(--ease-out-expo);
}
.faq summary:hover { color: var(--accent); }
.faq summary::-webkit-details-marker { display: none; }
.faq-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: oklch(1 0 0 / 0.7);
  display: grid; place-items: center;
  font-weight: 400;
  font-size: 18px;
  flex-shrink: 0;
  transition: transform var(--d-mid) var(--ease-out-expo),
              background var(--d-mid) var(--ease-out-expo),
              color var(--d-mid) var(--ease-out-expo);
}
.faq[open] .faq-icon {
  transform: rotate(45deg);
  background: var(--ink);
  color: oklch(1 0 0);
}
.faq p {
  margin: 0;
  padding: 0 26px 24px;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-soft);
  /* Animation reveal smooth quand <details> s'ouvre */
  animation: faq-reveal var(--d-mid) var(--ease-out-expo);
}
@keyframes faq-reveal {
  from { opacity: 0; transform: translate3d(0, -4px, 0); }
  to   { opacity: 1; transform: translate3d(0, 0, 0); }
}

/* ============ CONTACT ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: stretch;
}
/* ============ CONTACT CARD — version LIGHT (white opaque) ============
   On override .contact-card.glass (2 classes) qui forçait du blur transparent.
   Surface white pure, texte ink dark, contrast WCAG AAA garanti.
*/
.contact-card.glass.card-light-contact,
.card-light-contact {
  background: oklch(1 0 0) !important;
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
  border: 1px solid var(--line) !important;
  color: var(--ink);
  border-radius: var(--radius-l);
  padding: 44px;
  box-shadow: var(--shadow-2);
}
.card-light-contact h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.008em;
  font-weight: 400;
  margin: 0 0 16px;
  color: var(--ink);
}
.card-light-contact .contact-lede {
  color: var(--ink-soft);
  font-size: 16px;
  margin: 0 0 28px;
  line-height: 1.55;
}
.card-light-contact .contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  border-top: 1px solid var(--line-dark);
}
.card-light-contact .contact-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-dark);
  font-size: 14.5px;
}
.card-light-contact .cl-label { color: var(--ink-mute); }
.card-light-contact .cl-value { color: var(--ink); font-weight: 500; }
.card-light-contact .cl-link {
  transition: color var(--d-fast) var(--ease-out-expo);
}
.card-light-contact .cl-link:hover { color: var(--accent); }

.card-light-contact .field span {
  font-size: 12px;
  color: var(--ink-mute);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.card-light-contact .field input,
.card-light-contact .field textarea {
  background: oklch(0.97 0.005 280);
  border: 1px solid oklch(0.9 0.005 280);
  color: var(--ink);
  font-family: inherit;
  font-size: 15px;
  padding: 12px 14px;
  border-radius: 14px;
  outline: none;
  transition: border-color var(--d-fast) var(--ease-out-expo),
              background var(--d-fast) var(--ease-out-expo),
              box-shadow var(--d-fast) var(--ease-out-expo);
  resize: vertical;
}
.card-light-contact .field input:focus,
.card-light-contact .field textarea:focus {
  border-color: var(--accent);
  background: oklch(1 0 0);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.card-light-contact .field input::placeholder,
.card-light-contact .field textarea::placeholder {
  color: oklch(0.62 0.005 280);
}
.card-light-contact .form-note {
  font-size: 12px;
  color: var(--ink-mute);
  margin: 0;
  text-align: center;
}
/* Submit button full-width quand .btn-block est appliqué */
.btn-block { width: 100%; justify-content: center; }

/* ============ Anciennes règles .card-dark conservées (compat autres usages) ============ */
.card-dark {
  background: linear-gradient(160deg,
    oklch(0.17 0.025 280),
    oklch(0.22 0.04 305));
  border: 1px solid oklch(1 0 0 / 0.08);
  color: oklch(1 0 0);
  border-radius: var(--radius-l);
  padding: 44px;
  box-shadow: var(--shadow-3);
}
.card-dark h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 600;
  margin: 0 0 16px;
  color: oklch(1 0 0);
}
.contact-lede {
  color: oklch(1 0 0 / 0.75);
  font-size: 16px;
  margin: 0 0 28px;
  line-height: 1.55;
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  border-top: 1px solid oklch(1 0 0 / 0.15);
}
.contact-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid oklch(1 0 0 / 0.12);
  font-size: 14.5px;
}
.cl-label { color: oklch(1 0 0 / 0.55); }
.cl-value { color: oklch(1 0 0); font-weight: 500; }
.cl-link {
  transition: color var(--d-fast) var(--ease-out-expo);
}
.cl-link:hover { color: oklch(0.85 0.12 220); }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field span {
  font-size: 12px;
  color: oklch(1 0 0 / 0.6);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.field input,
.field textarea {
  background: oklch(1 0 0 / 0.08);
  border: 1px solid oklch(1 0 0 / 0.18);
  color: oklch(1 0 0);
  font-family: inherit;
  font-size: 15px;
  padding: 12px 14px;
  border-radius: 14px;
  outline: none;
  transition: border-color var(--d-fast) var(--ease-out-expo),
              background var(--d-fast) var(--ease-out-expo);
  resize: vertical;
}
.field input:focus,
.field textarea:focus {
  border-color: oklch(1 0 0 / 0.45);
  background: oklch(1 0 0 / 0.13);
}
.field input::placeholder,
.field textarea::placeholder { color: oklch(1 0 0 / 0.4); }

.form-note {
  font-size: 12px;
  color: oklch(1 0 0 / 0.5);
  margin: 0;
  text-align: center;
}

/* MAP */
.map-wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
#map-card {
  position: relative;
  width: 100%;
  flex: 1;
  min-height: 480px;
  border-radius: var(--radius-l);
  overflow: hidden;
  border: 1px solid oklch(1 0 0 / 0.4);
  box-shadow: var(--shadow-2);
}
#leaflet-map { width: 100%; height: 100%; }
#map-loader {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: oklch(1 0 0 / 0.55);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  font-size: 13px; color: var(--ink-mute);
  z-index: 10;
  transition: opacity var(--d-mid) var(--ease-out-expo);
}
#map-loader.fade-out {
  opacity: 0;
  pointer-events: none;
}
.map-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

/* Leaflet polish */
.leaflet-control-attribution {
  background: oklch(1 0 0 / 0.7) !important;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  font-size: 10px !important;
  padding: 3px 8px !important;
  border-radius: 6px 0 0 0;
}
.leaflet-bar a {
  background: oklch(1 0 0 / 0.85) !important;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid oklch(1 0 0 / 0.5) !important;
  color: var(--ink) !important;
}
.leaflet-bar a:hover { background: oklch(1 0 0) !important; }
.lh-marker { background: transparent !important; border: none !important; }
.lh-marker svg {
  filter: drop-shadow(0 4px 8px oklch(0.22 0.012 280 / 0.28));
  transition: transform var(--d-mid) var(--ease-out-expo);
}
.lh-marker:hover svg { transform: translate3d(0, -2px, 0) scale(1.05); }

/* ============ FOOTER ============ */
.footer {
  padding: 60px 22px 30px;
  max-width: 1240px;
  margin: 0 auto;
}
.footer-inner {
  border-radius: var(--radius-l);
  padding: 48px 44px 36px;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
  gap: 32px;
}
.footer-col h4 {
  font-size: 12px;
  font-weight: 600;
  margin: 0 0 14px;
  color: var(--ink);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.footer-col p {
  margin: 12px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.6;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-col li, .footer-col a {
  font-size: 14px;
  color: var(--ink-soft);
  transition: color var(--d-fast) var(--ease-out-expo);
}
.footer-col a:hover { color: var(--ink); }
.brand-footer .brand-name { font-size: 18px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 26px;
  padding-top: 24px;
  font-size: 12.5px;
  color: var(--ink-mute);
  flex-wrap: wrap;
  gap: 10px;
}

/* ============ REVEAL ON SCROLL ============
   Classes appliquées par script.js. Définitions ici pour éviter le FOUC.
*/
.reveal-init {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
}
.reveal-in {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: opacity var(--d-slow) var(--ease-out-expo),
              transform var(--d-slow) var(--ease-out-expo);
}

/* ============ PLANNING / RDV ============
   Grille 7 col (heure + 6 jours) x 7 rangées (header + 6 créneaux).
   Slot libre = white opaque, hover noir. Réservé = gris désaturé, disabled.
   Évening row = teintée violet pour distinguer les créneaux soirée.
*/
.planning-wrap {
  display: grid;
  grid-template-columns: 0.85fr 2.15fr;
  gap: 28px;
  align-items: stretch;
}

.planning-meta {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 32px 28px;
  background: var(--surface-1);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-1);
}
.pm-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: start;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-dark);
}
.pm-item:last-child { border-bottom: 0; }
.pm-k {
  font-family: var(--serif);
  font-style: italic;
  font-size: 26px;
  color: var(--ink-mute);
  line-height: 1;
}
.pm-title {
  font-size: 15.5px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
  color: var(--ink);
}
.pm-sub {
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.45;
}

.planning-grid-wrap {
  background: var(--surface-1);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-1);
  padding: 28px;
  display: flex;
  flex-direction: column;
}
/* Widget de réservation Cal.com embarqué (remplace la grille décorative) */
.planning-embed {
  min-height: 660px;
  margin: 14px 0 6px;
  border-radius: var(--radius-m, 14px);
  overflow: hidden;
  background: var(--surface-0, #fff);
}
.planning-embed iframe { border-radius: inherit; }
@media (max-width: 640px) { .planning-embed { min-height: 720px; } }
/* Honeypot anti-bot du formulaire de contact (invisible, hors flux) */
.cf-hp { position: absolute !important; left: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.planning-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
  flex-wrap: wrap;
  gap: 10px;
}
.ph-week {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.ph-legend {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 12.5px;
  color: var(--ink-soft);
}
.legend-dot {
  display: inline-block;
  width: 10px; height: 10px;
  border-radius: 3px;
  margin-right: 6px;
  vertical-align: -1px;
}
.legend-free { background: oklch(1 0 0); border: 1px solid oklch(0.9 0.01 280); }
.legend-busy { background: oklch(0.93 0.005 280); }

.planning-grid {
  display: grid;
  grid-template-columns: 70px repeat(6, 1fr);
  gap: 6px;
}
.pg-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  border-radius: 10px;
  min-height: 44px;
  font-weight: 500;
}
.pg-head {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-mute);
  min-height: 32px;
}
.pg-corner { background: transparent; }
.pg-time {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--ink-soft);
  justify-content: flex-end;
  padding-right: 8px;
}

.pg-slot {
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  background: oklch(1 0 0);
  color: var(--ink);
  border: 1px solid oklch(0.9 0.01 280);
  border-radius: 10px;
  min-height: 44px;
  cursor: pointer;
  transition: background var(--d-fast) var(--ease-out-expo),
              color var(--d-fast) var(--ease-out-expo),
              border-color var(--d-fast) var(--ease-out-expo),
              transform var(--d-fast) var(--ease-out-expo),
              box-shadow var(--d-fast) var(--ease-out-expo);
}
.pg-slot:hover {
  background: oklch(0.30 0.035 58);
  color: oklch(1 0 0);
  border-color: oklch(0.30 0.035 58);
  transform: translate3d(0, -2px, 0);
  box-shadow: 0 8px 20px oklch(0.36 0.04 55 / 0.24);
}
.pg-slot:active { transform: scale(0.96); }
.pg-slot:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Créneaux soirée : pastille tintée violet pour différencier */
.pg-slot-evening {
  background: oklch(0.97 0.025 285);
  border-color: oklch(0.85 0.06 285);
  color: oklch(0.45 0.08 285);
}
.pg-slot-evening:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: oklch(1 0 0);
}

/* Réservé : gris désaturé, non cliquable, pas de hover */
.pg-slot.is-busy {
  background: oklch(0.93 0.005 280);
  color: oklch(0.7 0.005 280);
  border-color: oklch(0.92 0.005 280);
  cursor: not-allowed;
}
.pg-slot.is-busy:hover {
  transform: none;
  box-shadow: none;
  background: oklch(0.93 0.005 280);
  color: oklch(0.7 0.005 280);
  border-color: oklch(0.92 0.005 280);
}

/* Hors horaires (samedi PM, dimanche) : encore plus discret */
.pg-slot.pg-slot-off {
  background: transparent;
  color: oklch(0.85 0.005 280);
  border-color: oklch(0.94 0.005 280);
  border-style: dashed;
  cursor: not-allowed;
}
.pg-slot.pg-slot-off:hover {
  transform: none;
  box-shadow: none;
  background: transparent;
  color: oklch(0.85 0.005 280);
  border-color: oklch(0.94 0.005 280);
}

/* Slot sélectionné (après clic) : ring accent persistant */
.pg-slot.is-selected {
  background: var(--ink);
  color: oklch(1 0 0);
  border-color: var(--ink);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.planning-footnote {
  margin: 18px 0 0;
  font-size: 12.5px;
  color: var(--ink-mute);
  text-align: center;
  line-height: 1.55;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 980px) {
  .hero-grid,
  .about-grid,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .formats { grid-template-columns: 1fr; }
  .card-feature { transform: none; } /* sur mobile, pas de lift permanent */
  .steps { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 180px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .hero-right { min-height: 420px; }
  .planning-wrap { grid-template-columns: 1fr; }
  .planning-grid { grid-template-columns: 56px repeat(6, 1fr); gap: 4px; }
  .pg-slot, .pg-cell { font-size: 12px; min-height: 38px; border-radius: 8px; }
  .pg-time { font-size: 13px; }
}

@media (max-width: 640px) {
  .nav { padding: 8px 8px 8px 18px; }
  .brand-name { font-size: 14px; }
  .nav-cta { padding: 8px 14px; font-size: 13px; }
  .hero { padding: 30px 14px 24px; }
  .section { padding: 56px 14px; }
  /* Planning : scroll horizontal sur mobile pour garder la grille lisible */
  .planning-grid-wrap { padding: 18px; overflow-x: auto; }
  .planning-grid { min-width: 460px; }
  .planning-meta { padding: 22px 18px; }
  .card-xl { padding: 30px 24px; min-height: auto; }
  .meta-row { grid-template-columns: 1fr; gap: 10px; }
  .pillars { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; gap: 10px; }
  .g-wide { grid-column: span 2; }
  .g-tall { grid-row: span 1; }
  .card-dark, .card-light { padding: 28px; }
  .domains { padding: 24px; }
  .step { grid-template-columns: 80px 1fr; gap: 14px; padding: 16px; }
  .step-img { width: 80px; height: 80px; }
  .footer-inner { grid-template-columns: 1fr; padding: 30px 24px; }
  .footer { padding: 30px 14px; }
  .hero-photo figcaption { left: 14px; bottom: 14px; padding: 10px 14px; }
  .floating-chip { display: none; }
  .row-2 { grid-template-columns: 1fr; }
  .footer-bottom { justify-content: center; text-align: center; }
}

/* ============ MOTION ACCESSIBILITÉ ============
   Respecte prefers-reduced-motion : désactive blobs / float / marquee /
   reveal pour les utilisateurs sensibles ou en batterie économie.
*/
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .blob { animation: none !important; }
  .marquee-track { animation: none !important; }
  .floating-chip { animation: none !important; }
  .pulse-dot { animation: none !important; }
  .reveal-init {
    opacity: 1;
    transform: none;
  }
}

/* ============ « LE FIL DE SOI » — composants marque & sections ============ */
/* Marque : wordmark serif + spirale (logo) */
.brand-name {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 20px;
  letter-spacing: 0.005em;
}
.brand-mark {
  display: inline-flex;
  width: 26px;
  height: 26px;
  color: var(--accent);
  flex-shrink: 0;
}
.brand-mark svg { width: 100%; height: 100%; overflow: visible; }
.nav .brand-mark { animation: spiral-in 1.1s var(--ease-out-expo) both; }
@keyframes spiral-in {
  from { transform: rotate(-70deg) scale(0.55); opacity: 0; }
  to   { transform: rotate(0deg) scale(1); opacity: 1; }
}
.brand-footer .brand-name { font-size: 19px; }

/* 5 angles de la promesse */
.angles {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.angle {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: 26px 22px 24px 26px;
  box-shadow: var(--shadow-1);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform var(--d-mid) var(--ease-out-expo),
              box-shadow var(--d-mid) var(--ease-out-expo);
}
.angle::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(var(--accent-2), var(--accent));
  opacity: 0.6;
}
.angle:hover {
  transform: translate3d(0, -5px, 0);
  box-shadow: var(--shadow-2);
}
.angle-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 30px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 16px;
}
.angle h3 {
  margin: 0 0 10px;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.25;
  color: var(--ink);
}
.angle p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.angle strong { color: var(--ink); font-weight: 600; }

/* Prix mis en avant dans la carte « parcours » */
.fc-price {
  margin: 0 0 18px;
  padding: 14px 0 0;
  border-top: 1px solid var(--fc-line);
  font-size: 13.5px;
  color: var(--fc-fg-soft);
  transition: color 380ms var(--ease-out-expo) var(--fc-color-delay, 0ms),
              border-color 380ms var(--ease-out-expo) var(--fc-color-delay, 0ms);
}
.fc-price strong {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  color: var(--fc-fg);
  margin-right: 4px;
}

/* Responsive : 5 angles */
@media (max-width: 980px) {
  .angles { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .angles { grid-template-columns: 1fr; }
}

/* CTA réservation en ligne (Google Agenda) */
.planning-book {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  margin-top: 22px;
  padding-top: 24px;
  border-top: 1px solid var(--line-dark);
  text-align: center;
}
.planning-book .btn { font-size: 15px; }
.planning-book-note { font-size: 12.5px; color: var(--ink-mute); max-width: 44ch; }
