/* ═══════════════════════════════════════
   DESIGN TOKENS
═══════════════════════════════════════ */
:root {
  /* Colors */
  --dark:         #0B0B0B;
  --dark-surface: #161616;
  --gold:         #C8A84B;
  --gold-light:   #D9BE78;
  --gold-dark:    #A88930;
  --cream:        #F4EFE4;
  --cream-dark:   #EAE3D2;
  --text-dark:    #1A1A1A;
  --text-light:   #F0EDE6;
  --text-muted:   #7A7A7A;
  --border-cream: #DDD6C4;

  /* Typography */
  --font-display: 'Cormorant Garamond', serif;
  --font-body:    'Nunito', sans-serif;

  /* Type scale */
  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.25rem;
  --text-2xl:  1.5rem;
  --text-3xl:  1.875rem;
  --text-4xl:  2.5rem;
  --text-5xl:  3.5rem;
  --text-6xl:  5rem;

  /* Spacing (8px grid) */
  --sp-1:  8px;
  --sp-2:  16px;
  --sp-3:  24px;
  --sp-4:  32px;
  --sp-5:  40px;
  --sp-6:  48px;
  --sp-8:  64px;
  --sp-10: 80px;
  --sp-12: 96px;
  --sp-16: 128px;

  /* Layout */
  --container-max: 1100px;
  --section-pad:   var(--sp-6) var(--sp-3);

  /* Borders */
  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-pill: 100px;

  /* Transitions */
  --t-fast: 0.15s ease;
  --t-base: 0.3s ease;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }

a { text-decoration: none; color: inherit; }

ul { list-style: none; }

/* ═══════════════════════════════════════
   LAYOUT HELPERS
═══════════════════════════════════════ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--sp-3);
}

/* ═══════════════════════════════════════
   TYPOGRAPHY
═══════════════════════════════════════ */
h1, h2, h3 { line-height: 1.15; }

.label {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-2);
}

.label-light { color: var(--gold-light); }

.section-header {
  text-align: center;
  margin-bottom: var(--sp-8);
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  color: var(--text-dark);
  margin-bottom: var(--sp-2);
}

.section-intro {
  font-size: var(--text-lg);
  color: var(--text-muted);
  max-width: 560px;
  margin-inline: auto;
}

/* ═══════════════════════════════════════
   BUTTONS — Liquid Glass
═══════════════════════════════════════ */

/* SVG filter injected by JS — hidden from layout */
.lg-svg-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  pointer-events: none;
}

/* Base */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  background: transparent;
  border: none;
  white-space: nowrap;
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn:hover  { transform: scale(1.06); }
.btn:active { transform: scale(0.97); }

/* Text colour per variant */
.btn-gold         { color: var(--gold); }
.btn-outline-gold { color: var(--gold-light); }
.btn-outline-dark { color: var(--text-dark); }

.btn-gold-sm {
  padding: 10px 20px;
  font-size: var(--text-sm);
  color: var(--gold);
}

.btn-lg { padding: 18px 40px; font-size: var(--text-base); }

/* Featured CTA — solid gold fill + strong glow */
.btn-featured { color: var(--dark); }

.btn-featured .lg-backdrop {
  background: var(--gold);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.btn-featured .lg-bubble {
  box-shadow:
    0 0 0 1px rgba(200,168,75,.35),
    0 4px 16px rgba(0,0,0,.18),
    inset  2px  2px .5px -2px rgba(255,255,255,.55),
    inset -2px -2px .5px -2px rgba(255,255,255,.32),
    inset  1px  1px 1px -.5px rgba(255,255,255,.7),
    inset -1px -1px 1px -.5px rgba(255,255,255,.38),
    inset 0 0 10px 4px rgba(200,168,75,.18),
    inset 0 0  3px 2px rgba(200,168,75,.10),
    0 0 32px rgba(200,168,75,.55),
    0 0 60px rgba(200,168,75,.22);
}
.btn-featured:hover .lg-bubble {
  box-shadow:
    0 0 0 1px rgba(200,168,75,.5),
    0 6px 20px rgba(0,0,0,.2),
    inset  2px  2px .5px -2px rgba(255,255,255,.65),
    inset -2px -2px .5px -2px rgba(255,255,255,.4),
    inset  1px  1px 1px -.5px rgba(255,255,255,.8),
    inset -1px -1px 1px -.5px rgba(255,255,255,.45),
    inset 0 0 12px 5px rgba(200,168,75,.25),
    inset 0 0  4px 2px rgba(200,168,75,.14),
    0 0 42px rgba(200,168,75,.7),
    0 0 80px rgba(200,168,75,.3);
}

/* ── Glass bubble — the "liquid" 3-D halo ── */
.lg-bubble {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 0;
  transition: box-shadow 0.35s ease;
  box-shadow:
    0 0 6px  rgba(0,0,0,.04),
    0 2px 8px rgba(0,0,0,.12),
    inset  2px  2px .5px -2px rgba(255,255,255,.38),
    inset -2px -2px .5px -2px rgba(255,255,255,.22),
    inset  1px  1px 1px -.5px rgba(255,255,255,.5),
    inset -1px -1px 1px -.5px rgba(255,255,255,.28),
    inset 0 0 8px 4px  rgba(200,168,75,.07),
    inset 0 0 2px 2px  rgba(200,168,75,.04),
    0 0 18px rgba(200,168,75,.22);
}

.btn:hover .lg-bubble {
  box-shadow:
    0 0 6px  rgba(0,0,0,.04),
    0 6px 16px rgba(0,0,0,.16),
    inset  2px  2px .5px -2px rgba(255,255,255,.52),
    inset -2px -2px .5px -2px rgba(255,255,255,.32),
    inset  1px  1px 1px -.5px rgba(255,255,255,.65),
    inset -1px -1px 1px -.5px rgba(255,255,255,.38),
    inset 0 0 10px 4px rgba(200,168,75,.12),
    inset 0 0  3px 2px rgba(200,168,75,.07),
    0 0 28px rgba(200,168,75,.38);
}

/* ── Backdrop distortion layer ── */
.lg-backdrop {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  overflow: hidden;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  pointer-events: none;
  z-index: -1;
}

/* ── Text above glass ── */
.lg-text {
  position: relative;
  z-index: 2;
  pointer-events: none;
}

/* ═══════════════════════════════════════
   NAVIGATION — Floating on scroll
═══════════════════════════════════════ */
.nav-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding-inline: var(--sp-3);
  padding-top: 0;
  transition: padding-top 0.35s ease-out;
}

.nav-header.scrolled { padding-top: 14px; }

/* Inner wrapper shrinks + gets glass pill on scroll */
.nav-wrapper {
  max-width: 1100px;
  margin-inline: auto;
  border: 1px solid transparent;
  border-radius: 0;
  transition:
    max-width      0.35s ease-out,
    background     0.35s ease-out,
    border-color   0.35s ease-out,
    border-radius  0.35s ease-out,
    box-shadow     0.35s ease-out;
}

.nav-header.scrolled .nav-wrapper {
  max-width: 860px;
  background: rgba(11, 11, 11, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-color: rgba(200, 168, 75, 0.15);
  border-radius: 14px;
  box-shadow: 0 4px 28px rgba(0, 0, 0, 0.45);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 58px;
  padding-inline: var(--sp-3);
  transition: height 0.35s ease-out, padding-inline 0.35s ease-out;
}

.nav-header.scrolled .nav-inner {
  height: 48px;
  padding-inline: var(--sp-2);
}

/* Logo — crossfade icône ↔ complet */
.nav-logo-link {
  position: relative;
  display: flex;
  align-items: center;
  height: 36px;
  overflow: visible;
}

/* Logo icône (symbole circulaire) — visible dans la hero */
.nav-logo-icon {
  height: 36px;
  width: auto;
  max-width: none;
  display: block;
  filter: drop-shadow(0 0 10px rgba(200, 168, 75, 0.45));
  opacity: 1;
  transition: opacity 0.45s ease;
}

/* Logo complet (texte horizontal) — visible après la hero */
.nav-logo-full {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 26px;
  width: auto;
  max-width: none; /* empêche le reset CSS de le comprimer */
  display: block;
  filter: drop-shadow(0 0 10px rgba(200, 168, 75, 0.35));
  opacity: 0;
  transition: opacity 0.45s ease;
}

/* Quand on a passé la hero section */
.nav-header.hero-passed .nav-logo-icon { opacity: 0; }
.nav-header.hero-passed .nav-logo-full { opacity: 1; }

/* Desktop links */
.nav-links-desktop {
  display: none;
  align-items: center;
  gap: var(--sp-1);
}

.nav-link {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(240, 237, 230, 0.78);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  transition: color var(--t-fast), background var(--t-fast);
  text-decoration: none;
}
.nav-link:hover {
  color: var(--gold);
  background: rgba(200, 168, 75, 0.08);
}
.nav-link--active {
  color: var(--gold) !important;
  background: rgba(200, 168, 75, 0.08);
}

/* Animated hamburger button */
.nav-hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid rgba(200, 168, 75, 0.22);
  border-radius: var(--radius-md);
  cursor: pointer;
  color: var(--text-light);
  transition: background var(--t-fast), border-color var(--t-fast);
}
.nav-hamburger:hover {
  background: rgba(200, 168, 75, 0.08);
  border-color: rgba(200, 168, 75, 0.45);
}

/* SVG paths animate open ↔ close */
.nav-hamburger-svg {
  width: 20px;
  height: 20px;
  transition: transform 300ms ease-in-out;
}
.nav-hamburger-svg.open { transform: rotate(-45deg); }

.hbg-path-s {
  stroke-dasharray: 12 63;
  transition: stroke-dasharray 300ms ease-in-out, stroke-dashoffset 300ms ease-in-out;
}
.nav-hamburger-svg.open .hbg-path-s {
  stroke-dasharray: 20 300;
  stroke-dashoffset: -32.42px;
}

/* Mobile full-screen menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 58px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
  background: rgba(8, 8, 8, 0.97);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-top: 1px solid rgba(200, 168, 75, 0.12);
}
.mobile-menu.open {
  display: flex;
  animation: mobileMenuIn 0.22s ease-out both;
}
@keyframes mobileMenuIn {
  from { opacity: 0; transform: scale(0.97); }
  to   { opacity: 1; transform: scale(1); }
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  padding: var(--sp-5) var(--sp-4);
}

.mobile-menu-links { display: flex; flex-direction: column; gap: var(--sp-1); }

.mobile-link {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 8vw, 2.8rem);
  font-weight: 300;
  color: var(--text-light);
  padding: var(--sp-2) var(--sp-3);
  border-radius: var(--radius-md);
  transition: color var(--t-fast), background var(--t-fast);
  text-decoration: none;
  text-align: center;
}
.mobile-link:hover {
  color: var(--gold);
  background: rgba(200, 168, 75, 0.06);
}
.mobile-link--active {
  color: var(--gold) !important;
}

.mobile-menu-actions { display: flex; flex-direction: column; gap: var(--sp-2); align-items: center; }

@media (min-width: 768px) {
  .nav-links-desktop { display: flex; }
  .nav-hamburger     { display: none;  }
  .mobile-menu       { display: none !important; }
}

/* ═══════════════════════════════════════
   HERO — WebGL Shader
═══════════════════════════════════════ */
.hero {
  position: relative;
  width: 100%;
  height: 100svh;
  background: #000;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 30%;
  background: linear-gradient(to bottom, transparent, #000);
  pointer-events: none;
  z-index: 2;
}

#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-inline: var(--sp-3);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  padding: 0.55rem 1.4rem;
  background: rgba(200, 168, 75, 0.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(200, 168, 75, 0.3);
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(217, 190, 120, 0.9);
  margin-bottom: var(--sp-4);
  animation: heroFadeDown 0.8s ease-out both;
}

.hero-logo {
  width: 280px;
  max-width: 65vw;
  height: auto;
  display: block;
  margin-inline: auto;
  margin-bottom: var(--sp-4);
  filter: drop-shadow(0 0 32px rgba(200, 168, 75, 0.6));
  animation: heroFadeUp 0.8s ease-out 0.15s both;
}
@media (max-width: 480px) { .hero-logo { width: 180px; } }

.hero-headline {
  display: flex;
  flex-direction: column;
  gap: 0.02em;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: var(--sp-3);
  animation: heroFadeUp 0.8s ease-out 0.25s both;
}
.hero-headline span:first-child {
  background: linear-gradient(135deg, #D9BE78, #C8A84B, #F0D98A);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-headline span:last-child {
  background: linear-gradient(135deg, #C8A84B, #A88930, #D9BE78);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(var(--text-base), 2vw, var(--text-xl));
  font-weight: 300;
  color: rgba(240, 237, 230, 0.82);
  max-width: 560px;
  line-height: 1.6;
  margin-bottom: var(--sp-5);
  animation: heroFadeUp 0.8s ease-out 0.35s both;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  justify-content: center;
  animation: heroFadeUp 0.8s ease-out 0.45s both;
}

@keyframes heroFadeDown {
  from { opacity: 0; transform: translateY(-18px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════
   HOOK — Accroche problème (style technique)
═══════════════════════════════════════ */
.hook {
  position: relative;
  background: #000;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100svh;
}

/* Coins */
.hook-corner {
  position: absolute;
  width: 36px;
  height: 36px;
  z-index: 5;
  pointer-events: none;
}
.hook-tl { top: 52px;    left: 20px;  border-top:    1px solid rgba(255,255,255,0.15); border-left:  1px solid rgba(255,255,255,0.15); }
.hook-tr { top: 52px;    right: 20px; border-top:    1px solid rgba(255,255,255,0.15); border-right: 1px solid rgba(255,255,255,0.15); }
.hook-bl { bottom: 44px; left: 20px;  border-bottom: 1px solid rgba(255,255,255,0.15); border-left:  1px solid rgba(255,255,255,0.15); }
.hook-br { bottom: 44px; right: 20px; border-bottom: 1px solid rgba(255,255,255,0.15); border-right: 1px solid rgba(255,255,255,0.15); }

/* Logo en fond */
.hook-bg-logo {
  display: none;
  position: absolute;
  right: -4%;
  top: 50%;
  transform: translateY(-50%);
  width: 50%;
  z-index: 1;
  opacity: 0.12;
  pointer-events: none;
}
.hook-bg-logo img { width: 100%; height: auto; filter: brightness(20); }
@media (min-width: 860px) { .hook-bg-logo { display: block; } }

/* Barre top */
.hook-topbar {
  position: relative;
  z-index: 5;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 12px 0;
}
.hook-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hook-topbar-left,
.hook-topbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: monospace;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.hook-brand { color: rgba(200,168,75,0.7); font-weight: 600; }
.hook-topbar-sep { display: block; width: 1px; height: 12px; background: rgba(255,255,255,0.2); }
.hook-topbar-dot { display: block; width: 3px; height: 3px; border-radius: 50%; background: rgba(255,255,255,0.3); }
.hook-topbar-right { display: none; }
@media (min-width: 640px) { .hook-topbar-right { display: flex; } }

/* Contenu */
.hook-content {
  position: relative;
  z-index: 3;
  flex: 1;
  display: flex;
  align-items: center;
  padding: var(--sp-5) 0;
}

@media (min-width: 640px) {
  .hook-content { padding: var(--sp-8) 0; }
}

.hook-inner { max-width: 520px; }

/* Ligne 001 */
.hook-rule-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  opacity: 0.4;
}
.hook-rule-short { display: block; width: 28px; height: 1px; background: #fff; flex-shrink: 0; }
.hook-rule-num   { font-family: monospace; font-size: 10px; color: #fff; letter-spacing: 0.15em; flex-shrink: 0; }
.hook-rule-long  { display: block; flex: 1; height: 1px; background: #fff; }

/* Titre */
.hook-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 300;
  color: #fff;
  line-height: 1.1;
  letter-spacing: 0.01em;
  margin-bottom: 16px;
}

/* Points décoratifs (CSS pur) */
.hook-dots-strip {
  width: 100%;
  height: 2px;
  margin-bottom: 20px;
  background-image: radial-gradient(circle, rgba(255,255,255,0.3) 1px, transparent 1px);
  background-size: 8px 2px;
  opacity: 0.35;
}

/* Corps */
.hook-body {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  color: rgba(240, 237, 230, 0.85);
  line-height: 1.85;
  margin-bottom: 16px;
}

/* Closing */
.hook-closing {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 300;
  font-style: italic;
  color: var(--gold-light);
  margin-bottom: 28px;
}

/* Notation */
.hook-notation {
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0.3;
  font-family: monospace;
  font-size: 9px;
  color: #fff;
  letter-spacing: 0.15em;
}
.hook-notation-line { display: block; width: 80px; height: 1px; background: #fff; }

/* Barre statut bas */
.hook-statusbar {
  position: relative;
  z-index: 5;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 10px 0;
}
.hook-statusbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hook-statusbar-left,
.hook-statusbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.hook-statusbar span {
  font-family: monospace;
  font-size: 9px;
  color: rgba(255,255,255,0.28);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.hook-pulse-dots { display: flex; gap: 4px; }
.hook-pulse-dots span {
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(200,168,75,0.55);
  animation: hook-pulse 1.5s ease-in-out infinite;
}
.hook-pulse-dots span:nth-child(2) { animation-delay: 0.2s; }
.hook-pulse-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes hook-pulse {
  0%, 100% { opacity: 0.3; }
  50%       { opacity: 1; }
}

@media (max-width: 600px) {
  .hook-statusbar-right { display: none; }
  .hook-corner { width: 22px; height: 22px; }
}

/* ═══════════════════════════════════════
   ABOUT — Woven Light Particles
═══════════════════════════════════════ */
.about {
  position: relative;
  background: #000;
  overflow: hidden;
  min-height: 70vh;
  display: flex;
  align-items: center;
}

#about-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.about-canvas-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.about-content {
  position: relative;
  z-index: 2;
  max-width: 740px;
  margin-inline: auto;
  text-align: center;
  padding: var(--sp-6) var(--sp-3);
}

.about-quote {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 300;
  color: #fff;
  line-height: 1.2;
  margin-bottom: var(--sp-6);
}

.about-body {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.1rem);
  font-weight: 300;
  color: rgba(240, 237, 230, 0.88);
  line-height: 1.85;
  margin-bottom: var(--sp-4);
}

.about-closing {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 300;
  font-style: italic;
  color: var(--gold-light);
  margin-top: var(--sp-6);
}

/* ═══════════════════════════════════════
   METHOD — Pour qui & Comment je travaille
═══════════════════════════════════════ */
.method {
  background: #000;
  padding: var(--sp-5) 0 var(--sp-6);
}

.method-header {
  max-width: 680px;
  margin-inline: auto;
  text-align: center;
  padding-bottom: var(--sp-6);
}

.method-h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: var(--sp-4);
}

.method-lead {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  font-style: italic;
  font-weight: 300;
  color: var(--gold-light);
  margin-bottom: var(--sp-3);
}

.method-intro {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 300;
  line-height: 1.8;
  color: rgba(240, 237, 230, 0.78);
  max-width: 580px;
  margin-inline: auto;
}

/* ── Marquee ── */
.marquee-section {
  overflow: hidden;
  padding: var(--sp-6) 0;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent);
  mask-image:         linear-gradient(to right, transparent, #000 12%, #000 88%, transparent);
}

.marquee-row {
  overflow: hidden;
  margin-bottom: var(--sp-2);
}
.marquee-row:last-child { margin-bottom: 0; }

@keyframes marquee-left {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes marquee-right {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

.marquee-track {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: marquee-left 45s linear infinite;
}
.marquee-track.marquee-reverse { animation: marquee-right 50s linear infinite; }
.marquee-track.marquee-slow    { animation: marquee-left  55s linear infinite; }

.marquee-tag {
  display: inline-flex;
  align-items: center;
  padding: 9px 20px;
  border-radius: var(--radius-pill);
  background: rgba(200, 168, 75, 0.06);
  border: 1px solid rgba(200, 168, 75, 0.18);
  color: rgba(240, 237, 230, 0.82);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 400;
  white-space: nowrap;
  transition: background var(--t-fast), color var(--t-fast);
  cursor: default;
}
.marquee-tag:hover {
  background: rgba(200, 168, 75, 0.13);
  color: var(--gold-light);
}

/* ── Pillars ── */
.pillars-block { margin-top: var(--sp-10); text-align: center; }

.pillars-block .label { display: block; margin-bottom: var(--sp-2); }

.pillars-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--cream);
  margin-top: 0;
  margin-bottom: var(--sp-6);
}

.pillars-grid {
  display: grid;
  grid-template-columns: 1fr;
  margin-top: var(--sp-10);
  border-top: 1px dashed rgba(200, 168, 75, 0.2);
}

.pillar-card {
  padding: var(--sp-5) var(--sp-4);
  border-bottom: 1px dashed rgba(200, 168, 75, 0.2);
}
.pillar-card:last-child { border-bottom: none; }

/* Accordion toggle button */
.pillar-toggle {
  display: flex;
  flex-direction: column;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  padding: 0;
}

.pillar-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 5.5rem);
  font-weight: 300;
  line-height: 1;
  color: rgba(200, 168, 75, 0.45);
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-4);
}

.pillar-title-row {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.pillar-title {
  flex: 1;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  font-weight: 400;
  color: var(--cream);
  letter-spacing: 0.02em;
}

.pillar-plus {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(200, 168, 75, 0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--gold);
  transition: transform 0.35s ease, background 0.25s ease;
  line-height: 1;
}

.pillar-card.open .pillar-plus {
  transform: rotate(45deg);
  background: rgba(200, 168, 75, 0.1);
}

/* Collapsible content — clipped to 2 lines when closed */
.pillar-body-wrap {
  position: relative;
  overflow: hidden;
  max-height: 3.6em;
  margin-top: var(--sp-3);
  transition: max-height 0.5s ease;
}

.pillar-body-wrap::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1.8em;
  background: linear-gradient(transparent, #000);
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.pillar-card.open .pillar-body-wrap {
  max-height: 600px;
}

.pillar-card.open .pillar-body-wrap::after {
  opacity: 0;
}

.pillar-body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 300;
  line-height: 1.8;
  color: rgba(240, 237, 230, 0.82);
  margin-bottom: var(--sp-3);
}

.pillar-result {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 400;
  line-height: 1.7;
  color: rgba(200, 168, 75, 0.85);
  border-left: 2px solid rgba(200, 168, 75, 0.4);
  padding-left: var(--sp-3);
}

.pillar-result-label {
  font-weight: 600;
  text-transform: uppercase;
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 4px;
  color: var(--gold);
}

@media (min-width: 900px) {
  .pillars-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .pillar-card {
    border-bottom: none;
    border-right: 1px dashed rgba(200, 168, 75, 0.4);
    padding: var(--sp-6) var(--sp-5);
  }
  .pillar-card:last-child { border-right: none; }
}

/* ═══════════════════════════════════════
   PRICING — Glassy animated
═══════════════════════════════════════ */
.pricing {
  position: relative;
  padding: var(--section-pad);
  background: #080808;
  overflow: hidden;
}

.pricing-inner {
  position: relative;
  z-index: 2;
}

/* Section header on dark bg */
.pricing-h2,
.pricing-inner .section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(var(--text-3xl), 5vw, var(--text-5xl));
  font-weight: 300;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.pricing-intro {
  color: rgba(240, 237, 230, 0.85);
}

/* ── Glass cards row ── */
/* ── Original flex row ── */
.glass-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: var(--sp-6);
}

@media (min-width: 640px) {
  .glass-row { flex-direction: row; flex-wrap: wrap; justify-content: center; align-items: stretch; }
  .glass-card { flex: 1; max-width: 260px; }
}

@media (min-width: 900px) {
  .glass-row { flex-wrap: nowrap; align-items: center; gap: 20px; }
  .glass-card { max-width: 260px; }
}

/* ── Base glass card ── */
.glass-card {
  width: 100%;
  padding: 28px 24px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(135deg,
    rgba(255, 255, 255, 0.07) 0%,
    rgba(255, 255, 255, 0.02) 100%
  );
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  transition: transform var(--t-base), box-shadow var(--t-base);
}

.glass-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* ── Featured (Premium) card ── */
.glass-card-featured {
  background: linear-gradient(135deg,
    rgba(255, 255, 255, 0.14) 0%,
    rgba(255, 255, 255, 0.06) 100%
  );
  border-color: rgba(200, 168, 75, 0.4);
  box-shadow:
    0 0 0 1px rgba(200, 168, 75, 0.15),
    0 24px 64px rgba(0, 0, 0, 0.5);
}
.glass-card-featured:hover {
  transform: translateY(-4px);
}

/* Popular badge */
.glass-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--dark);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

/* ── Plan name & description ── */
.glass-plan {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 6px;
}

.glass-plan-unit {
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  font-weight: 300;
  color: rgba(240, 237, 230, 0.5);
  letter-spacing: 0;
}

.glass-desc {
  font-size: var(--text-sm);
  color: rgba(240, 237, 230, 0.90);
  line-height: 1.7;
  flex: 1;
}

/* ── Price block ── */
.glass-price-wrap {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  margin: 4px 0;
}

.glass-amount {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 3.5rem);
  font-weight: 200;
  letter-spacing: -0.03em;
  color: var(--text-light);
  line-height: 1;
}

.glass-price-devis-wrap { align-items: center; }

.glass-amount-devis {
  font-size: var(--text-2xl) !important;
  color: rgba(240, 237, 230, 0.5) !important;
}

.glass-suffix {
  display: flex;
  flex-direction: column;
  padding-bottom: 6px;
}

.glass-cur {
  font-size: var(--text-lg);
  color: var(--text-light);
  line-height: 1.2;
}

.glass-per {
  font-size: var(--text-xs);
  color: rgba(240, 237, 230, 0.45);
}

/* ── Divider ── */
.glass-divider {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.12) 30%,
    rgba(255, 255, 255, 0.12) 70%,
    transparent
  );
}

.glass-divider-gold {
  background: linear-gradient(
    90deg,
    transparent,
    rgba(200, 168, 75, 0.5) 30%,
    rgba(200, 168, 75, 0.5) 70%,
    transparent
  );
}

/* ── Feature list ── */
.glass-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.glass-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: var(--text-sm);
  color: rgba(240, 237, 230, 0.78);
  line-height: 1.45;
}

.glass-check {
  flex-shrink: 0;
  color: var(--gold);
  margin-top: 1px;
}

/* ── Pricing note ── */
.pricing-note {
  text-align: center;
  font-size: var(--text-sm);
  line-height: 1.7;
  max-width: 520px;
  margin-inline: auto;
}

.pricing-note-light { color: rgba(240, 237, 230, 0.65); }

.pricing-cta {
  text-align: center;
  margin-top: var(--sp-6);
}


/* ═══════════════════════════════════════
   FINAL CTA (dark, video background)
═══════════════════════════════════════ */
.cta-dark {
  position: relative;
  padding: var(--sp-5) var(--sp-3) calc(var(--sp-8) + 85px);
  background: var(--dark);
  overflow: hidden;
  text-align: center;
}

#cta-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.cta-dark-content {
  position: relative;
  z-index: 2;
  color: var(--text-light);
}

.cta-dark-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, var(--text-5xl));
  color: var(--gold);
  margin-bottom: var(--sp-3);
}

.cta-dark-content p {
  font-size: var(--text-lg);
  color: rgba(240,237,230,0.8);
  margin-bottom: var(--sp-6);
  line-height: 1.7;
}

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.footer {
  background: #000;
  padding: 75px 0 var(--sp-4);
  border-top: 1px solid rgba(200, 168, 75, 0.35);
  color: rgba(240,237,230,0.6);
}

/* Grid 4 colonnes */
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-8);
  padding-bottom: var(--sp-8);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: var(--sp-5);
}

/* Colonne brand */
.footer-brand-top {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  margin-bottom: var(--sp-3);
}

.footer-brand-logo {
  height: 36px;
  width: auto;
  object-fit: contain;
  display: block;
}

.footer-brand-desc {
  font-size: var(--text-sm);
  line-height: 1.7;
  color: rgba(240,237,230,0.55);
  max-width: 28ch;
}

/* Colonnes liens */
.footer-col-title {
  font-family: var(--font-display);
  font-size: var(--text-base);
  color: var(--gold);
  letter-spacing: 0.08em;
  margin-bottom: var(--sp-3);
}

.footer-col-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.footer-col-list a {
  font-size: var(--text-sm);
  color: rgba(240,237,230,0.55);
  transition: color var(--t-fast);
}
.footer-col-list a:hover { color: var(--gold); }

/* Liens sociaux avec icône */
.footer-social-link {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}

.footer-social-link svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  opacity: 0.6;
  transition: opacity var(--t-fast);
}
.footer-social-link:hover svg { opacity: 1; }

/* Newsletter */
.footer-newsletter-row {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
  margin-bottom: var(--sp-1);
}

.footer-newsletter-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(200,168,75,0.3);
  padding: 6px 0;
  color: rgba(240,237,230,0.85);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  outline: none;
  transition: border-color var(--t-fast);
  box-sizing: border-box;
}
.footer-newsletter-input::placeholder { color: rgba(240,237,230,0.3); }
.footer-newsletter-input:focus { border-bottom-color: var(--gold); }

.footer-newsletter-btn {
  align-self: flex-start;
  padding: 5px 14px;
  background: transparent;
  color: var(--gold);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(200,168,75,0.4);
  border-radius: 4px;
  cursor: pointer;
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast);
}
.footer-newsletter-btn:hover {
  background: var(--gold);
  color: #0B0B0B;
  border-color: var(--gold);
}

.footer-newsletter-feedback {
  font-size: var(--text-xs);
  min-height: 1.2em;
  color: rgba(240,237,230,0.4);
}
.footer-newsletter-feedback.success { color: #6fcf97; }
.footer-newsletter-feedback.error   { color: #eb5757; }

/* Bas de footer */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
  font-size: var(--text-xs);
  color: rgba(240,237,230,0.3);
  flex-wrap: wrap;
}

.footer-bottom-email {
  color: rgba(240,237,230,0.4);
  transition: color var(--t-fast);
}
.footer-bottom-email:hover { color: var(--gold); }

/* ═══════════════════════════════════════
   RESPONSIVE — TABLET (640px+)
═══════════════════════════════════════ */
@media (min-width: 640px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* ═══════════════════════════════════════
   RESPONSIVE — DESKTOP (900px+)
═══════════════════════════════════════ */
@media (min-width: 900px) {
  /* Nav */
  .nav-links { display: flex; }
  .hamburger  { display: none; }

  /* Section padding */
  :root { --section-pad: var(--sp-8) var(--sp-3); }

  /* Section header h2 larger */
  .section-header h2 { font-size: var(--text-4xl); }

  /* CTA */
  .cta-dark-content h2 { font-size: var(--text-5xl); }

  /* Footer 4 cols */
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.4fr; }
}

/* ═══════════════════════════════════════
   PAGE À PROPOS
═══════════════════════════════════════ */

/* Nav always in scrolled/pill state on inner pages */
.page-about .nav-header { padding-top: 14px; }
.page-about .nav-header .nav-logo-icon { opacity: 0; }
.page-about .nav-header .nav-logo-full { opacity: 1; }

/* ── Hero ── */
.ap-hero {
  position: relative;
  min-height: 80svh;
  background: #000;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: var(--sp-10) 0 var(--sp-8);
}

.ap-hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.ap-hero-fade {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(to right, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.7) 45%, rgba(0,0,0,0.35) 100%),
    linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, transparent 20%, transparent 80%, rgba(0,0,0,0.7) 100%);
  pointer-events: none;
}

.ap-hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  height: 70%;
  background: radial-gradient(ellipse at center, rgba(200,168,75,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.ap-hero-content {
  position: relative;
  z-index: 3;
  max-width: 820px;
  padding-top: var(--sp-8);
}

.ap-hero-content .label {
  display: block;
  margin-bottom: var(--sp-4);
}

.ap-hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4.8rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.12;
  color: #fff;
  letter-spacing: -0.01em;
  margin-bottom: var(--sp-5);
}

.ap-hero-line {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-bottom: var(--sp-4);
}

.ap-hero-sub {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 300;
  color: rgba(240,237,230,0.65);
  line-height: 1.75;
  max-width: 540px;
}

/* Scroll hint */
.ap-hero-scroll {
  position: absolute;
  bottom: var(--sp-5);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.ap-hero-scroll span {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50%       { opacity: 0.9; transform: scaleY(1.15); }
}

/* ── Content sections ── */
.ap-section {
  background: #000;
  padding: var(--sp-8) 0;
  border-top: 1px solid rgba(200,168,75,0.08);
}
.ap-section-alt { background: #05050a; }

.ap-section-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-6);
}

@media (min-width: 760px) {
  .ap-section-inner {
    grid-template-columns: 200px 1fr;
    gap: var(--sp-8);
    align-items: start;
  }
}

.ap-section-aside {
  position: static;
}

@media (min-width: 760px) {
  .ap-section-aside {
    position: sticky;
    top: 100px;
  }
}

.ap-section-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1;
  color: rgba(200,168,75,0.55);
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-2);
}

.ap-section-title {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.04em;
}

.ap-section-body p {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  font-weight: 300;
  line-height: 1.9;
  color: rgba(240,237,230,0.82);
  margin-bottom: var(--sp-3);
}
.ap-section-body p:last-child { margin-bottom: 0; }

.ap-bold {
  font-weight: 600 !important;
  color: rgba(240,237,230,0.96) !important;
}

/* Blockquote */
.ap-quote {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-weight: 300;
  font-style: italic;
  color: var(--gold-light);
  border-left: 2px solid var(--gold);
  padding-left: var(--sp-4);
  margin-top: var(--sp-5);
  line-height: 1.4;
}

/* Section 4 — Principles */
.ap-principles-intro {
  color: rgba(240,237,230,0.65) !important;
  font-style: italic;
  margin-bottom: var(--sp-5) !important;
}

.ap-principles {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
  margin-bottom: var(--sp-5);
}

.ap-principle {
  border-left: 1px solid rgba(200,168,75,0.3);
  padding-left: var(--sp-4);
}

.ap-principle-label {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 400;
  color: #fff;
  margin-bottom: var(--sp-1);
  letter-spacing: 0.02em;
}

.ap-principle p {
  margin-bottom: 0 !important;
}

.ap-principles-closing {
  font-style: italic;
  color: rgba(240,237,230,0.55) !important;
}

/* ═══════════════════════════════════════
   SCROLL ANIMATIONS
═══════════════════════════════════════ */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════
   MODAL — Q&A popup
═══════════════════════════════════════ */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-3);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}
.modal-backdrop.open {
  opacity: 1;
  pointer-events: all;
}

.modal-card {
  background: #0e0e0e;
  border: 1px solid rgba(200, 168, 75, 0.22);
  border-radius: 18px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(200,168,75,0.06);
  max-width: 580px;
  width: 100%;
  padding: var(--sp-5) var(--sp-5);
  transform: scale(0.96) translateY(14px);
  opacity: 0;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.22s ease;
}
.modal-backdrop.open .modal-card {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--sp-3);
  margin-bottom: var(--sp-4);
  padding-bottom: var(--sp-3);
  border-bottom: 1px solid rgba(200, 168, 75, 0.12);
}

.modal-title {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3vw, 1.55rem);
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1.2;
}

.modal-close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  padding: 6px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: color var(--t-fast), background var(--t-fast), transform 0.2s;
  margin-top: 2px;
}
.modal-close:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  transform: rotate(90deg);
}

.modal-body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 300;
  color: rgba(240, 237, 230, 0.82);
  line-height: 1.85;
}

/* Tags du marquee — curseur pointer sur les vrais (pas les doublons) */
.marquee-tag[aria-hidden="true"] { pointer-events: none; }

/* ── Calendly modal variant ── */
#calendly-backdrop {
  align-items: flex-start;
  overflow-y: auto;
  padding: 20px;
}

.modal-card--calendly {
  max-width: 780px;
  margin: auto;
  padding: var(--sp-4);
}

.modal-card--calendly .modal-body {
  padding: 0;
  overflow: hidden;
  border-radius: 0 0 10px 10px;
  height: clamp(500px, calc(88svh - 90px), 700px);
}

.modal-card--calendly .calendly-inline-widget,
.modal-card--calendly .calendly-inline-widget iframe {
  width: 100% !important;
  height: 100% !important;
}

.marquee-tag:not([aria-hidden]) {
  cursor: pointer;
  transition: background var(--t-fast), border-color var(--t-fast), color var(--t-fast);
}
.marquee-tag:not([aria-hidden]):hover {
  background: rgba(200, 168, 75, 0.14);
  border-color: rgba(200, 168, 75, 0.45);
  color: var(--gold-light);
}

/* ═══════════════════════════════════════
   OFFRES PAGE
═══════════════════════════════════════ */

.page-offres .nav-header .nav-logo-icon { opacity: 0; }
.page-offres .nav-header .nav-logo-full { opacity: 1; }

.page-offres .hook,
.page-contact .hook { padding-top: 72px; }

/* ── Hero ── */
.of-hero {
  position: relative;
  min-height: 68svh;
  background: #000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--sp-10);
}

.of-hero-glow {
  position: absolute;
  top: 30%;
  left: -5%;
  width: 55%;
  height: 70%;
  background: radial-gradient(ellipse at center, rgba(200,168,75,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.of-hero-content {
  padding-top: var(--sp-8);
  padding-bottom: var(--sp-8);
  max-width: 760px;
}

.of-hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4.8rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.12;
  color: #fff;
  letter-spacing: -0.01em;
  margin-bottom: var(--sp-5);
}

.of-hero-line {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-bottom: var(--sp-4);
}

.of-hero-sub {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 300;
  color: rgba(240,237,230,0.65);
  line-height: 1.75;
  margin-bottom: var(--sp-3);
}

.of-hero-intro {
  font-family: var(--font-body);
  font-size: clamp(0.92rem, 1.5vw, 1rem);
  font-weight: 300;
  color: rgba(240,237,230,0.5);
  line-height: 1.85;
  max-width: 580px;
}

/* Anchor pills */
.of-hero-anchors {
  border-top: 1px solid rgba(200,168,75,0.1);
  padding: var(--sp-3) 0;
  background: rgba(255,255,255,0.015);
}

.of-anchor-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.of-anchor-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: none;
  color: rgba(240,237,230,0.55);
  text-decoration: none;
  padding: 5px 14px;
  border: 1px solid rgba(200,168,75,0.18);
  border-radius: var(--radius-pill);
  transition: color var(--t-fast), border-color var(--t-fast), background var(--t-fast);
}
/* Neutralise le reset de hook-statusbar span */
.of-anchor-link span {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  text-transform: none;
  color: rgba(200,168,75,0.7);
  font-weight: 400;
}
.of-anchor-link:hover {
  color: #fff;
  border-color: rgba(200,168,75,0.45);
  background: rgba(200,168,75,0.07);
}
.of-anchor-link:hover span {
  color: var(--gold);
}

/* ── Offer sections ── */
.of-section {
  background: #000;
  padding: var(--sp-10) 0;
  border-top: 1px solid rgba(200,168,75,0.08);
}
.of-section-alt { background: #05050a; }

.of-section-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-6);
}

@media (min-width: 760px) {
  .of-section-inner {
    grid-template-columns: 200px 1fr;
    gap: var(--sp-10);
    align-items: start;
  }
}

/* Aside */
.of-aside {
  position: sticky;
  top: 100px;
}

.of-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1;
  color: rgba(200,168,75,0.55);
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-2);
}

.of-name {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.02em;
  margin-bottom: var(--sp-2);
}

.of-price {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.2vw, 1.7rem);
  font-weight: 600;
  color: var(--gold);
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: var(--sp-1);
}
.of-price-unit {
  font-size: 0.62em;
  font-weight: 300;
  opacity: 0.75;
}
.of-price-devis {
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  font-weight: 400;
}

.of-duration {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 400;
  color: rgba(240,237,230,0.35);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--sp-4);
}

.of-cta-link {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--gold);
  text-decoration: none;
  opacity: 0.8;
  transition: opacity var(--t-fast);
}
.of-cta-link:hover { opacity: 1; }

/* Body */
.of-body {
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
}

.of-block-title {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: var(--sp-3);
}

.of-block p,
.of-result p {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  font-weight: 300;
  line-height: 1.9;
  color: rgba(240,237,230,0.82);
}

.of-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.of-list li {
  font-family: var(--font-body);
  font-size: clamp(0.92rem, 1.4vw, 1rem);
  font-weight: 300;
  line-height: 1.7;
  color: rgba(240,237,230,0.82);
  padding-left: var(--sp-4);
  position: relative;
}
.of-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.8em;
  opacity: 0.65;
}

.of-result {
  background: rgba(200,168,75,0.05);
  border-left: 2px solid rgba(200,168,75,0.35);
  padding: var(--sp-4) var(--sp-4) var(--sp-4) var(--sp-5);
  border-radius: 0 3px 3px 0;
}

.of-note {
  border-top: 1px solid rgba(200,168,75,0.07);
  padding-top: var(--sp-4);
}
.of-note p {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(240,237,230,0.72);
}
.of-note strong {
  color: rgba(240,237,230,0.88);
  font-weight: 500;
}

/* ── Why 3 months ── */
.of-why {
  background: #000;
  padding: var(--sp-10) 0;
  border-top: 1px solid rgba(200,168,75,0.08);
  color: rgba(240,237,230,0.88);
}

.of-why-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-6);
}

@media (min-width: 760px) {
  .of-why-inner {
    grid-template-columns: 200px 1fr;
    gap: var(--sp-10);
    align-items: start;
  }
}

.of-why-title {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 400;
  font-style: italic;
  color: rgba(240,237,230,0.88);
  line-height: 1.35;
}

.of-why-body p {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  font-weight: 300;
  line-height: 1.9;
  color: rgba(240,237,230,0.82);
  margin-bottom: var(--sp-3);
}
.of-why-body p:last-child { margin-bottom: 0; }

/* ── Add-ons ── */
.of-addons {
  background: #05050a;
  padding: var(--sp-10) 0;
  border-top: 1px solid rgba(200,168,75,0.08);
  color: rgba(240,237,230,0.88);
}

.of-addons-header {
  margin-bottom: var(--sp-8);
}
.of-addons-header .label { display: block; margin-bottom: var(--sp-3); }

.of-addons-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 300;
  font-style: italic;
  color: #fff;
  margin-bottom: var(--sp-3);
}

.of-addons-sub {
  font-family: var(--font-body);
  font-size: clamp(0.92rem, 1.5vw, 1rem);
  font-weight: 300;
  color: rgba(240,237,230,0.78);
  line-height: 1.75;
  max-width: 540px;
}

.of-addons-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-3);
}

@media (min-width: 600px) {
  .of-addons-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Addon glass card ── */
.of-addon {
  position: relative;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.10);
  background: linear-gradient(135deg, #010101 0%, #090909 50%, #010101 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  overflow: hidden;
  cursor: default;
  transform: scale(1) rotate(0deg);
  transition: transform 0.5s ease, border-color 0.5s ease, box-shadow 0.5s ease;
}
.of-addon:hover {
  transform: scale(1.05) rotate(-1deg);
  border-color: rgba(255,255,255,0.25);
  box-shadow: 0 24px 60px rgba(255,255,255,0.05), 0 8px 24px rgba(0,0,0,0.6);
}

/* Background layer */
.of-addon-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

/* Inner overlay gradient */
.of-addon-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top right, rgba(255,255,255,0.05), rgba(255,255,255,0.10));
  opacity: 0.4;
  transition: opacity 0.5s ease;
}
.of-addon:hover .of-addon-overlay { opacity: 0.65; }

/* Glowing blob bottom-left */
.of-addon-glow {
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 192px;
  height: 192px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.10) 0%, transparent 70%);
  filter: blur(32px);
  opacity: 0.3;
  transform: scale(1);
  transition: opacity 0.7s ease, transform 0.7s ease;
  animation: addonGlowBounce 3s ease-in-out infinite;
}
.of-addon:hover .of-addon-glow {
  opacity: 0.55;
  transform: scale(1.12);
}

@keyframes addonGlowBounce {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-10px) scale(1.05); }
}

/* Ping circles */
.of-addon-ping {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  animation: addonPing 2.4s ease-out infinite;
}
.of-addon-ping-1 {
  top: 40px; left: 40px;
  width: 64px; height: 64px;
  filter: blur(12px);
}
.of-addon-ping-2 {
  bottom: 64px; right: 64px;
  width: 48px; height: 48px;
  filter: blur(10px);
  animation-delay: 0.6s;
}

@keyframes addonPing {
  0%   { transform: scale(0.9); opacity: 0.5; }
  70%  { transform: scale(1.6); opacity: 0;   }
  100% { transform: scale(0.9); opacity: 0;   }
}

/* Shimmer sweep */
.of-addon-shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255,255,255,0.05),
    transparent
  );
  transform: translateX(100%) skewX(-12deg);
  transition: transform 1s ease;
}
.of-addon:hover .of-addon-shimmer {
  transform: translateX(-200%) skewX(-12deg);
}

/* Corner accents */
.of-addon-corner {
  position: absolute;
  width: 80px;
  height: 80px;
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.of-addon:hover .of-addon-corner { opacity: 1; }
.of-addon-corner-tl {
  top: 0; left: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.10) 0%, transparent 60%);
  border-radius: 0 0 20px 0;
}
.of-addon-corner-br {
  bottom: 0; right: 0;
  background: linear-gradient(315deg, rgba(255,255,255,0.10) 0%, transparent 60%);
  border-radius: 20px 0 0 0;
}

/* Content */
.of-addon-content {
  position: relative;
  z-index: 3;
  padding: var(--sp-5);
}

.of-addon-name {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 400;
  color: #fff;
  margin-bottom: var(--sp-1);
}

.of-addon-price {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--gold);
  margin-bottom: var(--sp-3);
  letter-spacing: 0.02em;
}

.of-addon-desc {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(240,237,230,0.80);
  line-height: 1.75;
}

/* Animated bottom line */
.of-addon-line {
  margin-top: var(--sp-3);
  height: 1px;
  width: 33%;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.6), transparent);
  border-radius: 999px;
  transition: width 0.5s ease, height 0.5s ease;
  animation: addonLinePulse 2.5s ease-in-out infinite;
}
.of-addon:hover .of-addon-line {
  width: 50%;
  height: 2px;
}

@keyframes addonLinePulse {
  0%, 100% { opacity: 0.5; }
  50%       { opacity: 1;   }
}


/* ── How to choose ── */
.of-choose {
  background: #000;
  padding: var(--sp-10) 0;
  border-top: 1px solid rgba(200,168,75,0.08);
  color: rgba(240,237,230,0.88);
}

.of-choose-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-6);
}

@media (min-width: 760px) {
  .of-choose-inner {
    grid-template-columns: 200px 1fr;
    gap: var(--sp-10);
    align-items: start;
  }
}

.of-choose-title {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.04em;
}

.of-choose-body p {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  font-weight: 300;
  line-height: 1.9;
  color: rgba(240,237,230,0.82);
  margin-bottom: var(--sp-3);
}

/* ═══════════════════════════════════════
   PACKAGE CARDS — glassmorphism accordion
═══════════════════════════════════════ */

.pkg-section {
  background: #000;
  padding: var(--sp-6) 0 var(--sp-10);
}

.pkg-grid {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  max-width: 860px;
  margin: 0 auto;
}

/* ── Base card ── */
.pkg-card {
  position: relative;
  background: linear-gradient(135deg,
    rgba(255,255,255,0.07) 0%,
    rgba(255,255,255,0.02) 100%
  );
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  overflow: hidden;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: rgba(240,237,230,0.85);
  transition: transform 0.45s cubic-bezier(0.32,0.72,0,1),
              box-shadow 0.45s cubic-bezier(0.32,0.72,0,1),
              border-color 0.45s ease;
  cursor: pointer;
}

.pkg-card:hover {
  transform: translateY(-4px) scale(1.008);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  border-color: rgba(255,255,255,0.2);
}

.pkg-card--open {
  border-color: rgba(200,168,75,0.35);
  box-shadow:
    0 0 0 1px rgba(200,168,75,0.12),
    0 24px 64px rgba(0,0,0,0.5);
}

/* ── Animated white glow blob ── */
.pkg-glow {
  position: absolute;
  top: -60px;
  left: -60px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
  z-index: 0;
}

.pkg-card:hover .pkg-glow,
.pkg-card--open .pkg-glow {
  opacity: 1;
}

/* ── White shimmer sweep ── */
.pkg-shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255,255,255,0.05) 50%,
    transparent 60%
  );
  transform: translateX(110%) skewX(-12deg);
  transition: transform 0.9s ease;
  pointer-events: none;
  z-index: 1;
}

.pkg-card:hover .pkg-shimmer {
  transform: translateX(-210%) skewX(-12deg);
}

/* ── Corner accents ── */
.pkg-corner {
  position: absolute;
  width: 60px;
  height: 60px;
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.pkg-card:hover .pkg-corner,
.pkg-card--open .pkg-corner {
  opacity: 1;
}

.pkg-corner-tl {
  top: 0; left: 0;
  background: radial-gradient(circle at top left, rgba(255,255,255,0.12) 0%, transparent 70%);
}

.pkg-corner-br {
  bottom: 0; right: 0;
  background: radial-gradient(circle at bottom right, rgba(255,255,255,0.12) 0%, transparent 70%);
}

/* ── Toggle button (always visible header) ── */
.pkg-toggle {
  position: relative;
  z-index: 3;
  width: 100%;
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-4) var(--sp-4);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

@media (max-width: 600px) {
  .pkg-toggle {
    flex-wrap: wrap;
    gap: var(--sp-2);
    padding: var(--sp-3);
  }
}

/* ── Radio indicator ── */
.pkg-radio {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.pkg-card--open .pkg-radio {
  border-color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.08);
}

.pkg-radio-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #fff;
  transform: scale(0);
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.pkg-card--open .pkg-radio-dot {
  transform: scale(1);
}

/* ── Card meta (num + name) ── */
.pkg-meta {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex: 1;
}

.pkg-num {
  display: none;
}

.pkg-name-wrap {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pkg-name {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-weight: 400;
  color: rgba(240,237,230,0.92);
  margin: 0;
  line-height: 1.1;
}

.pkg-card--open .pkg-name {
  color: #fff;
}

.pkg-tagline {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 300;
  color: rgba(240,237,230,0.70);
  margin: 0;
  letter-spacing: 0.02em;
}

/* ── Price column ── */
.pkg-price-col {
  text-align: right;
  flex-shrink: 0;
}

.pkg-price {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 400;
  color: var(--gold);
  margin: 0;
  line-height: 1.1;
}

.pkg-price-unit {
  font-size: 0.75em;
  font-weight: 300;
  color: rgba(200,168,75,0.7);
}

.pkg-price-devis {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 400;
  color: var(--gold);
  margin: 0;
}

.pkg-duration {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 300;
  color: rgba(240,237,230,0.65);
  margin: 0;
  letter-spacing: 0.04em;
}

/* ── Accordion body ── */
.pkg-body {
  position: relative;
  z-index: 3;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.65s cubic-bezier(0.32, 0.72, 0, 1);
}

.pkg-card--open .pkg-body {
  max-height: 1800px;
}

.pkg-body-inner {
  padding: 0 var(--sp-4) var(--sp-5);
  color: rgba(240,237,230,0.82);
}

@media (max-width: 600px) {
  .pkg-body-inner {
    padding: 0 var(--sp-3) var(--sp-4);
  }
}

.pkg-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.12), transparent);
  margin-bottom: var(--sp-4);
}

.pkg-block {
  margin-bottom: var(--sp-4);
}

.pkg-cta {
  display: inline-block;
  margin-top: var(--sp-3);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.25s ease, letter-spacing 0.25s ease;
}

.pkg-cta:hover {
  color: var(--gold-light);
  letter-spacing: 0.1em;
}
.of-choose-body p:last-child { margin-bottom: 0; }

/* ═══════════════════════════════════════
   CONTACT PAGE — ct-* classes
═══════════════════════════════════════ */

/* ── Section layout ── */
.ct-section {
  background: #000;
  padding: var(--sp-10) 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  color: rgba(240,237,230,0.88);
}

.ct-section--alt {
  background: #05050a;
}

.ct-section-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-6);
}

@media (min-width: 760px) {
  .ct-section-inner {
    grid-template-columns: 220px 1fr;
    gap: var(--sp-10);
    align-items: start;
  }
}

/* ── Aside ── */
.ct-aside {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.ct-num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: rgba(240,237,230,0.38);
  line-height: 1;
}

.ct-title {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 400;
  font-style: italic;
  color: rgba(240,237,230,0.88);
  line-height: 1.3;
}

/* ── Body text ── */
.ct-lead {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.6vw, 1.1rem);
  font-weight: 400;
  color: rgba(240,237,230,0.92);
  line-height: 1.85;
  margin-bottom: var(--sp-4);
}

.ct-p {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  font-weight: 300;
  color: rgba(240,237,230,0.78);
  line-height: 1.9;
  margin-bottom: var(--sp-3);
}

.ct-strong {
  color: rgba(240,237,230,0.96);
  font-weight: 600;
}

.ct-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  margin-bottom: var(--sp-4);
}

.ct-list li {
  font-family: var(--font-body);
  font-size: clamp(0.92rem, 1.4vw, 1rem);
  font-weight: 300;
  color: rgba(240,237,230,0.80);
  line-height: 1.7;
  padding-left: var(--sp-4);
  position: relative;
}

.ct-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.8em;
  opacity: 0.7;
}

/* ── Outcome box ── */
.ct-outcome {
  border-left: 2px solid rgba(200,168,75,0.35);
  padding: var(--sp-3) var(--sp-4);
  background: rgba(200,168,75,0.04);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-top: var(--sp-4);
  margin-bottom: var(--sp-6);
}

.ct-outcome-label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: var(--sp-2);
}

.ct-outcome p {
  font-family: var(--font-body);
  font-size: clamp(0.92rem, 1.4vw, 1rem);
  font-weight: 300;
  color: rgba(240,237,230,0.80);
  line-height: 1.8;
}

/* ── Calendly full-width block ── */
.ct-calendly-wrap {
  margin-top: var(--sp-8);
  padding-bottom: var(--sp-10);
  scroll-margin-top: 80px;
}

.ct-calendly-header {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-5);
}

.ct-calendly-label {
  font-family: monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  white-space: nowrap;
  flex-shrink: 0;
}

.ct-calendly-rule {
  display: block;
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.10), transparent);
}

/* Widget container */
.ct-calendly {
  position: relative;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.10);
  overflow: hidden;
  background: #000;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6);
}

.ct-calendly-glow {
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(200,168,75,0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.ct-calendly-corner {
  position: absolute;
  width: 60px;
  height: 60px;
  pointer-events: none;
  z-index: 2;
}
.ct-calendly-tl {
  top: 0; left: 0;
  background: radial-gradient(circle at top left, rgba(200,168,75,0.15) 0%, transparent 70%);
}
.ct-calendly-br {
  bottom: 0; right: 0;
  background: radial-gradient(circle at bottom right, rgba(200,168,75,0.15) 0%, transparent 70%);
}

.ct-calendly .calendly-inline-widget {
  position: relative;
  z-index: 1;
}

/* ── Contact form ── */
.ct-form {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  margin-top: var(--sp-4);
}

.ct-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ct-label {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  color: rgba(240,237,230,0.88);
  letter-spacing: 0.02em;
}

.ct-field-hint {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 300;
  color: rgba(240,237,230,0.45);
  line-height: 1.6;
}

.ct-input,
.ct-textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  color: rgba(240,237,230,0.92);
  transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  outline: none;
}

.ct-input::placeholder,
.ct-textarea::placeholder {
  color: rgba(240,237,230,0.28);
}

.ct-input:focus,
.ct-textarea:focus {
  border-color: rgba(200,168,75,0.5);
  background: rgba(255,255,255,0.07);
  box-shadow: 0 0 0 3px rgba(200,168,75,0.08);
}

.ct-input.ct-error,
.ct-textarea.ct-error {
  border-color: rgba(220, 80, 80, 0.5);
}

.ct-textarea {
  resize: vertical;
  min-height: 160px;
}

.ct-char-count {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: rgba(240,237,230,0.35);
  text-align: right;
  margin-top: 2px;
}

.ct-char-count.ct-ok {
  color: rgba(100,200,120,0.7);
}

.ct-field-error {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: rgba(220,80,80,0.85);
  min-height: 1.2em;
}

.ct-form-footer {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  margin-top: var(--sp-2);
}

.ct-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  align-self: flex-start;
}

.ct-submit-icon {
  transition: transform 0.25s ease;
}
.ct-submit:hover .ct-submit-icon {
  transform: translateX(4px);
}

.ct-form-feedback {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 400;
  min-height: 1.4em;
}
.ct-form-feedback.success { color: rgba(100,200,120,0.9); }
.ct-form-feedback.error   { color: rgba(220,80,80,0.85);  }

/* ── Channels grid ── */
.ct-channels-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-3);
}

@media (min-width: 560px) {
  .ct-channels-grid { grid-template-columns: repeat(2, 1fr); }
}

.ct-channel {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.10);
  background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  overflow: hidden;
  transition: border-color 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
  text-decoration: none;
  color: inherit;
  display: block;
  cursor: pointer;
}

.ct-channel:hover {
  border-color: rgba(255,255,255,0.22);
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}

.ct-channel-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.ct-channel-content {
  position: relative;
  z-index: 1;
  padding: var(--sp-5);
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
}

.ct-channel-type {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.ct-channel-value {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 400;
  color: #fff;
  text-decoration: none;
  transition: color var(--t-fast);
  margin: 4px 0;
}
.ct-channel-value:hover { color: var(--gold-light); }

.ct-channel-desc {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 300;
  color: rgba(240,237,230,0.55);
  line-height: 1.6;
  margin-top: var(--sp-1);
}

/* ── Before list ── */
.ct-before-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}

.ct-before-item {
  border-left: 2px solid rgba(255,255,255,0.10);
  padding-left: var(--sp-4);
  transition: border-color var(--t-base);
}
.ct-before-item:hover {
  border-color: rgba(200,168,75,0.35);
}

.ct-before-label {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 400;
  color: rgba(240,237,230,0.95);
  margin-bottom: var(--sp-2);
  line-height: 1.2;
}

.ct-before-item p {
  font-family: var(--font-body);
  font-size: clamp(0.92rem, 1.4vw, 1rem);
  font-weight: 300;
  color: rgba(240,237,230,0.72);
  line-height: 1.85;
}

/* ═══════════════════════════════════════
   MOBILE — réduction des espaces inter-sections
═══════════════════════════════════════ */
@media (max-width: 759px) {
  /* Homepage sections */
  .about          { min-height: unset; padding: var(--sp-4) 0; }
  .about-content  { padding: var(--sp-4) var(--sp-3); }
  .about-quote    { margin-bottom: var(--sp-3); }
  .about-closing  { margin-top: var(--sp-3); }
  .method         { padding: var(--sp-5) 0; }
  .method-header  { padding-bottom: var(--sp-3); }
  .pillars-block  { margin-top: var(--sp-4); }
  .pillars-grid   { margin-top: var(--sp-4); }
  .marquee-section { padding: var(--sp-3) 0; }
  .pricing        { padding: var(--sp-5) var(--sp-3); }
  .cta-dark       { padding: var(--sp-5) var(--sp-3) var(--sp-6); }

  /* À propos sections */
  .ap-hero        { min-height: unset; padding: var(--sp-6) 0 var(--sp-4); }
  .ap-hero-content { padding-top: var(--sp-6); }
  .ap-section     { padding: var(--sp-3) 0; }
  .ap-section-inner { gap: var(--sp-2); }

  /* Hook (hero offres & contact) */
  .hook              { min-height: unset; }
  .hook-corner       { display: none; }
  .hook-content      { padding: var(--sp-4) 0; }
  .hook-headline     { font-size: clamp(2rem, 8vw, 3rem); }

  /* Offres sections */
  .of-section   { padding: var(--sp-5) 0; }
  .of-why       { padding: var(--sp-5) 0; }
  .of-addons    { padding: var(--sp-5) 0; }
  .of-choose    { padding: var(--sp-5) 0; }
  .pkg-section  { padding: var(--sp-3) 0 var(--sp-5); }

  /* Contact sections */
  .ct-section   { padding: var(--sp-5) 0; }
  .ct-calendly-wrap { margin-top: var(--sp-4); padding-bottom: var(--sp-5); }

  /* Footer */
  .footer       { padding-top: var(--sp-6); }
  .footer-grid  { gap: var(--sp-5); padding-bottom: var(--sp-5); }
}
