/* ============================================================
   LAURETHAN DECO — Design System v3
   Palette VIVE : Corail · Jaune d'or · Menthe · Violet
   Typo : Fredoka (titres) + Nunito (corps)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@400;500;600;700&family=Nunito:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&display=swap');

/* ── Variables ──────────────────────────────────────────── */
:root {
  --coral:       #FF6B00;
  --coral-mid:   #FF8A33;
  --coral-light: #FFAD66;
  --coral-pale:  #FFE4C8;
  --yellow:      #FFB300;
  --yellow-mid:  #FFC533;
  --yellow-pale: #FFF0CC;
  --mint:        #4ECDC4;
  --mint-mid:    #6DD7D0;
  --mint-pale:   #D4F5EC;
  --purple:      #F97316;
  --purple-mid:  #FB923C;
  --purple-pale: #FFF3EC;
  --blue:        #38BDF8;
  --blue-pale:   #E0F5FE;
  --rose:        #F472B6;
  --rose-pale:   #FCE7F3;
  --dark:        #2D2D2D;
  --dark-mid:    #4A4A4A;
  --dark-soft:   #6B6B6B;
  --brown:       #5C3D2E;
  --cream:       #FFF8EE;
  --peach:       #FFF2DC;
  --mint-bg:     #EDFAF6;
  --lilac-bg:    #FFFBEE;
  --gold-bg:     #FFFAED;
  --white:       #FFFFFF;

  --font-head: 'Fredoka', 'Comic Sans MS', cursive;
  --font-body: 'Nunito', system-ui, sans-serif;

  --r-xs:   4px;
  --r-sm:   10px;
  --r-md:   18px;
  --r-lg:   28px;
  --r-xl:   40px;
  --r-pill: 999px;

  --shadow-xs: 0 1px 4px rgba(28,28,58,.06);
  --shadow-sm: 0 4px 16px rgba(28,28,58,.09);
  --shadow-md: 0 10px 40px rgba(28,28,58,.13);
  --shadow-lg: 0 24px 70px rgba(28,28,58,.18);
  --shadow-card: 0 6px 28px rgba(232,86,58,.12);

  --ease: cubic-bezier(.25,.46,.45,.94);
  --bounce: cubic-bezier(.34,1.56,.64,1);
  --t: .3s var(--ease);
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--dark);
  line-height: 1.65;
  overflow-x: hidden;
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 28 28'%3E%3Cpath d='M6 22L4 26L2 24L6 18Z' fill='%23A0522D'/%3E%3Cpath d='M6 18L22 2L26 6L10 22Z' fill='%23DEB887'/%3E%3Cpath d='M22 2L26 6' stroke='%23333' stroke-width='1'/%3E%3Cpath d='M6 18L10 22' stroke='%23666' stroke-width='0.5'/%3E%3Cellipse cx='5' cy='23' rx='2.5' ry='1.5' fill='%23FF6B00' opacity='0.6'/%3E%3C/svg%3E") 2 26, auto;
}
.paint-canvas {
  position: fixed; top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none; z-index: 9998;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: var(--font-body); cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
input, textarea, select { font-family: var(--font-body); }

/* ── Layout ──────────────────────────────────────────────── */
.container       { width: min(1160px, 100% - 3rem); margin-inline: auto; }
.container-sm    { width: min(780px,  100% - 3rem); margin-inline: auto; }
.container-xs    { width: min(620px,  100% - 3rem); margin-inline: auto; }
.section         { padding: clamp(4rem, 8vw, 7rem) 0; }
.section-sm      { padding: clamp(2.5rem, 5vw, 4rem) 0; }
.grid-2          { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4rem); align-items: center; }
.grid-3          { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.grid-4          { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; }
.text-center     { text-align: center; }
.flex-center     { display: flex; align-items: center; justify-content: center; }
.flex-between    { display: flex; align-items: center; justify-content: space-between; }

/* ── Typography ──────────────────────────────────────────── */
.t-hero  { font-family: var(--font-head); font-size: clamp(3rem,8vw,7rem);  font-weight: 700; line-height: 1; }
.t-h1    { font-family: var(--font-head); font-size: clamp(2.5rem,6vw,5rem); font-weight: 700; line-height: 1.05; }
.t-h2    { font-family: var(--font-head); font-size: clamp(2rem,4vw,3.5rem); font-weight: 600; line-height: 1.1; }
.t-h3    { font-family: var(--font-head); font-size: clamp(1.5rem,3vw,2.2rem); font-weight: 600; line-height: 1.15; }
.t-h4    { font-family: var(--font-head); font-size: 1.3rem; font-weight: 600; }
.t-lead  { font-size: clamp(1rem,1.6vw,1.15rem); font-weight: 400; line-height: 1.8; color: var(--dark-soft); }
.t-small { font-size: .82rem; font-weight: 500; }
.t-tag   { font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }

/* ── Badges ──────────────────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center; gap: .3rem;
  padding: .3rem .85rem;
  border-radius: var(--r-pill);
  font-size: .7rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
}
.badge-coral  { background: var(--coral-pale);  color: var(--coral); }
.badge-yellow { background: var(--yellow-pale); color: #8B6800; }
.badge-mint   { background: var(--mint-pale);   color: #007A5E; }
.badge-purple { background: var(--purple-pale); color: var(--purple); }
.badge-blue   { background: var(--blue-pale);   color: #0278A6; }
.badge-rose   { background: var(--rose-pale);   color: #9D1B6C; }
.badge-white  { background: rgba(255,255,255,.2); color: white; border: 1px solid rgba(255,255,255,.3); }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .85rem 2rem;
  border-radius: var(--r-pill);
  font-family: var(--font-body);
  font-size: .95rem; font-weight: 700;
  letter-spacing: .02em;
  transition: all var(--t);
  cursor: pointer;
  white-space: nowrap;
  border: none;
}
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.btn-coral  { background: var(--coral);  color: white; }
.btn-coral:hover  { background: #C94430; transform: translateY(-3px) scale(1.02); box-shadow: 0 12px 32px rgba(232,86,58,.4); }
.btn-yellow { background: var(--yellow); color: var(--dark); }
.btn-yellow:hover { background: #E8AD20; transform: translateY(-3px) scale(1.02); box-shadow: 0 12px 32px rgba(249,194,46,.4); }
.btn-mint   { background: var(--mint);   color: white; }
.btn-mint:hover   { background: #009970; transform: translateY(-3px) scale(1.02); box-shadow: 0 12px 32px rgba(0,181,137,.4); }
.btn-purple { background: var(--purple); color: white; }
.btn-purple:hover { background: #7340E5; transform: translateY(-3px) scale(1.02); box-shadow: 0 12px 32px rgba(139,92,246,.4); }
.btn-dark   { background: var(--dark);   color: white; }
.btn-dark:hover   { background: var(--coral); transform: translateY(-3px) scale(1.02); box-shadow: 0 12px 32px rgba(28,28,58,.35); }
.btn-outline-white {
  background: transparent; color: white;
  border: 2px solid rgba(255,255,255,.6);
}
.btn-outline-white:hover { background: white; color: var(--coral); }
.btn-outline-coral {
  background: transparent; color: var(--coral);
  border: 2px solid var(--coral);
}
.btn-outline-coral:hover { background: var(--coral); color: white; }
.btn-sm { padding: .6rem 1.4rem; font-size: .85rem; }
.btn-lg { padding: 1.1rem 2.5rem; font-size: 1.05rem; }

/* ── Section labels ──────────────────────────────────────── */
.section-label {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-body);
  font-size: .72rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--coral);
  margin-bottom: .75rem;
}
.section-label::before {
  content: '';
  display: block; width: 28px; height: 3px;
  background: var(--coral);
  border-radius: 2px;
}
.section-label.mint   { color: var(--mint);   }
.section-label.mint::before   { background: var(--mint); }
.section-label.yellow { color: #8B6800; }
.section-label.yellow::before { background: var(--yellow); }
.section-label.purple { color: var(--purple); }
.section-label.purple::before { background: var(--purple); }
.section-label.white  { color: rgba(255,255,255,.8); }
.section-label.white::before  { background: rgba(255,255,255,.6); }

/* ── Divider wave ────────────────────────────────────────── */
.wave-divider { display: block; width: 100%; line-height: 0; overflow: hidden; }
.wave-divider svg { display: block; width: 100%; }

/* ── Photo frame (real photo + CSS fallback) ─────────────── */
.photo-frame {
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  background: #EEE;
  width: 100%; height: 100%;
}
.photo-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s var(--ease);
}
.photo-frame:hover img { transform: scale(1.05); }
.photo-frame .css-fallback {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 0;
}
.photo-frame img.loaded + .css-fallback { display: none; }
.photo-frame img { position: relative; z-index: 1; }

/* ── CSS Art fallbacks ───────────────────────────────────── */
.fb-aquarelle {
  background:
    radial-gradient(ellipse 60% 50% at 30% 40%, rgba(76,201,240,.85) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 70% 60%, rgba(56,189,248,.7) 0%, transparent 55%),
    radial-gradient(ellipse 40% 40% at 60% 20%, rgba(164,202,240,.8) 0%, transparent 50%),
    linear-gradient(150deg, #E0F5FE 0%, #7DD3FC 40%, #3B82F6 80%, #1D4ED8 100%);
}
.fb-dessin {
  background:
    repeating-linear-gradient(45deg, rgba(28,28,58,.06) 0px, rgba(28,28,58,.06) 1px, transparent 1px, transparent 14px),
    repeating-linear-gradient(-45deg, rgba(28,28,58,.04) 0px, rgba(28,28,58,.04) 1px, transparent 1px, transparent 14px),
    linear-gradient(160deg, #F8F5F0 0%, #EDE8E0 60%, #D4CAB8 100%);
}
.fb-acrylique {
  background:
    radial-gradient(ellipse 50% 50% at 25% 35%, rgba(232,86,58,.9) 0%, transparent 50%),
    radial-gradient(ellipse 45% 50% at 70% 25%, rgba(249,194,46,.85) 0%, transparent 50%),
    radial-gradient(ellipse 40% 40% at 55% 70%, rgba(0,181,137,.8) 0%, transparent 50%),
    radial-gradient(ellipse 35% 35% at 80% 65%, rgba(139,92,246,.75) 0%, transparent 50%),
    linear-gradient(135deg, #FFF5D0 0%, #FFD23F 50%, #FF8C42 100%);
}
.fb-mix {
  background:
    radial-gradient(ellipse 30% 40% at 20% 30%, rgba(244,114,182,.8) 0%, transparent 50%),
    radial-gradient(ellipse 40% 35% at 65% 25%, rgba(232,86,58,.75) 0%, transparent 50%),
    radial-gradient(ellipse 35% 45% at 45% 70%, rgba(139,92,246,.7) 0%, transparent 50%),
    radial-gradient(ellipse 25% 30% at 80% 55%, rgba(249,194,46,.8) 0%, transparent 50%),
    linear-gradient(160deg, #FCE7F3 0%, #F9C22E 35%, #8B5CF6 70%, #E8563A 100%);
}
.fb-encre {
  background:
    radial-gradient(ellipse 80% 80% at 40% 40%, rgba(56,189,248,.9) 0%, transparent 60%),
    radial-gradient(ellipse 60% 60% at 70% 70%, rgba(99,102,241,.8) 0%, transparent 55%),
    radial-gradient(ellipse 40% 40% at 20% 70%, rgba(244,114,182,.7) 0%, transparent 50%),
    conic-gradient(from 0deg at 55% 45%, #7C3AED 0deg, #2563EB 90deg, #06B6D4 180deg, #8B5CF6 270deg, #7C3AED 360deg);
}
.fb-gravure {
  background:
    repeating-linear-gradient(0deg, rgba(92,61,46,.1) 0px, rgba(92,61,46,.1) 1px, transparent 1px, transparent 8px),
    repeating-linear-gradient(90deg, rgba(92,61,46,.06) 0px, rgba(92,61,46,.06) 1px, transparent 1px, transparent 8px),
    linear-gradient(160deg, #FFF0DC 0%, #E8C88A 40%, #C4962A 70%, #5C3D2E 100%);
}
.fb-ecole {
  background:
    radial-gradient(ellipse 50% 50% at 30% 40%, rgba(249,194,46,.9) 0%, transparent 55%),
    radial-gradient(ellipse 40% 40% at 65% 30%, rgba(232,86,58,.8) 0%, transparent 50%),
    radial-gradient(ellipse 50% 50% at 55% 70%, rgba(0,181,137,.75) 0%, transparent 55%),
    linear-gradient(170deg, #FFF5D0 0%, #FFD23F 40%, #00B589 80%, #2E2E52 100%);
}
.fb-galerie {
  background:
    radial-gradient(ellipse 50% 60% at 35% 40%, rgba(139,92,246,.85) 0%, transparent 55%),
    radial-gradient(ellipse 45% 45% at 70% 60%, rgba(232,86,58,.8) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 50% 80%, rgba(249,194,46,.7) 0%, transparent 55%),
    linear-gradient(135deg, #EDE9FF 0%, #8B5CF6 40%, #E8563A 80%, #F9C22E 100%);
}
.fb-portrait {
  background:
    radial-gradient(ellipse 45% 55% at 50% 38%, rgba(252,213,180,.9) 0%, transparent 55%),
    radial-gradient(ellipse 60% 40% at 50% 75%, rgba(232,160,100,.7) 0%, transparent 55%),
    radial-gradient(ellipse 30% 30% at 20% 30%, rgba(0,181,137,.5) 0%, transparent 50%),
    linear-gradient(170deg, #DCFAF3 0%, #FFF5D0 40%, #FAD4A0 70%, #E8563A 100%);
}
.fb-stage {
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(249,194,46,.9) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 20% 60%, rgba(232,86,58,.8) 0%, transparent 50%),
    radial-gradient(ellipse 40% 40% at 80% 30%, rgba(0,181,137,.7) 0%, transparent 50%),
    linear-gradient(145deg, #FFF5D0 0%, #F9C22E 35%, #E8563A 65%, #1C1C3A 100%);
}
.fb-famille {
  background:
    radial-gradient(ellipse 50% 50% at 40% 40%, rgba(244,114,182,.85) 0%, transparent 55%),
    radial-gradient(ellipse 45% 45% at 70% 60%, rgba(249,194,46,.8) 0%, transparent 50%),
    radial-gradient(ellipse 35% 40% at 25% 70%, rgba(139,92,246,.7) 0%, transparent 50%),
    linear-gradient(160deg, #FCE7F3 0%, #F9C22E 40%, #8B5CF6 80%, #E8563A 100%);
}

/* ── NAVBAR ──────────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 70px;
  display: flex; align-items: center;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
  transition: all .4s var(--ease);
}
.navbar.solid {
  background: var(--cream);
  box-shadow: 0 2px 20px rgba(28,28,58,.08);
}
.navbar.transparent { background: transparent; }
.nav-logo { display: flex; align-items: center; }
.nav-logo svg { height: 46px; width: auto; }
.nav-links {
  display: flex; align-items: center; gap: .2rem;
  margin-left: auto;
}
.nav-link {
  padding: .5rem 1rem;
  font-size: .9rem; font-weight: 600;
  color: var(--dark); border-radius: var(--r-pill);
  transition: all var(--t);
}
.nav-link:hover, .nav-link.active { color: var(--coral); background: var(--coral-pale); }
.nav-cta {
  margin-left: .5rem;
  padding: .6rem 1.4rem;
  background: var(--coral); color: white;
  border-radius: var(--r-pill);
  font-size: .9rem; font-weight: 700;
  transition: all var(--t);
}
.nav-cta:hover, .nav-cta.active { background: #C94430; color: white; box-shadow: 0 6px 20px rgba(232,86,58,.4); }
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  margin-left: auto; padding: 8px;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2.5px;
  background: var(--dark); border-radius: 2px;
  transition: all var(--t);
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
.mobile-nav {
  display: none; flex-direction: column; gap: .25rem;
  position: fixed; top: 70px; left: 0; right: 0; z-index: 199;
  background: var(--cream);
  padding: 1rem 1.5rem 1.5rem;
  box-shadow: 0 8px 30px rgba(28,28,58,.12);
  border-top: 1px solid rgba(28,28,58,.06);
}
.mobile-nav.open { display: flex; }
.mobile-nav .nav-link {
  padding: .85rem 1rem; font-size: 1rem;
  border-radius: var(--r-md);
}
.mobile-nav .nav-link:hover { background: var(--coral-pale); color: var(--coral); }

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  padding-top: 70px;
  background: linear-gradient(135deg, #FFFBF5 0%, #FFF8EE 55%, #FFF1DC 100%);
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
/* Background blobs — chauds et lumineux */
.hero::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
  background: radial-gradient(circle, rgba(249,194,46,.28) 0%, transparent 70%);
  top: -100px; left: -100px;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 40% 60% 30% 70% / 60% 40% 50% 50%;
  background: radial-gradient(circle, rgba(232,86,58,.13) 0%, transparent 70%);
  bottom: -80px; left: 20%;
  pointer-events: none;
}
.hero-left {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(2.5rem,5vw,5rem) clamp(1.5rem,4vw,4rem);
}
.hero-eyebrow {
  display: flex; align-items: center; gap: .75rem;
  margin-bottom: 1.5rem;
}
.hero-eyebrow-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--coral); }
.hero-eyebrow span { font-size: .78rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--dark-soft); }
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(3rem,7vw,6.5rem);
  font-weight: 700; line-height: 1;
  color: var(--dark);
  margin-bottom: 1.5rem;
}
.hero-title .line-coral  { color: var(--coral);    display: block; }
.hero-title .line-yellow { color: #D97706;          display: block; }
.hero-title .line-mint   { color: #009970;          display: block; }
.hero-subtitle {
  font-size: clamp(.9rem,1.4vw,1.1rem); font-weight: 400;
  color: var(--dark-soft); line-height: 1.75;
  max-width: 420px; margin-bottom: 2.5rem;
}
.hero-buttons { display: flex; gap: .85rem; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 2rem; margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(28,28,58,.1);
}
.hero-stat-num {
  font-family: var(--font-head); font-size: 2rem; font-weight: 700;
  color: var(--dark); line-height: 1;
}
.hero-stat-lbl { font-size: .72rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--dark-soft); margin-top: .3rem; }

.hero-right {
  position: relative; overflow: hidden;
}
.hero-photo-grid {
  position: absolute; inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0; padding: 0;
}
.hero-photo-grid .photo-frame { border-radius: var(--r-md); }
.hero-photo-grid .photo-frame:first-child { grid-row: span 2; border-radius: var(--r-lg) var(--r-md) var(--r-md) var(--r-lg); }
.hero-overlay {
  position: absolute; bottom: 0; left: 0; right: 0; height: 40%;
  background: linear-gradient(to top, rgba(28,28,58,.8) 0%, transparent 100%);
  pointer-events: none;
}

/* ── INTRO ───────────────────────────────────────────────── */
.intro-section { background: var(--cream); position: relative; overflow: hidden; }
.intro-blob {
  position: absolute; border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
  filter: blur(70px); pointer-events: none; opacity: .5;
}
.intro-art-wrap {
  border-radius: var(--r-xl);
  overflow: visible;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.intro-art-wrap .photo-frame { height: 100%; }
.intro-floater {
  position: absolute;
  background: white;
  border-radius: var(--r-lg);
  padding: 1.1rem 1.4rem;
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: .75rem;
}
.intro-floater.f1 { bottom: 1.5rem; right: -1.5rem; }
.intro-floater.f2 { top: 1.5rem; left: -1.5rem; }
.floater-icon {
  width: 44px; height: 44px; border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.fi-coral  { background: var(--coral-pale); }
.fi-yellow { background: var(--yellow-pale); }
.fi-mint   { background: var(--mint-pale); }
.floater-icon svg { width: 22px; height: 22px; }
.floater-num {
  font-family: var(--font-head); font-size: 1.6rem; font-weight: 700; line-height: 1;
}
.floater-txt { font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--dark-soft); }

.intro-features { display: flex; flex-direction: column; gap: .9rem; margin: 1.75rem 0 2rem; }
.intro-feat {
  display: flex; gap: .85rem; align-items: flex-start;
  padding: 1rem 1.2rem;
  background: white;
  border-radius: var(--r-md);
  border-left: 4px solid transparent;
  transition: all var(--t);
}
.intro-feat.coral  { border-color: var(--coral); }
.intro-feat.yellow { border-color: var(--yellow); }
.intro-feat.mint   { border-color: var(--mint); }
.intro-feat.purple { border-color: var(--purple); }
.intro-feat:hover { transform: translateX(4px); box-shadow: var(--shadow-sm); }
.feat-dot {
  width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; margin-top: .4rem;
}
.feat-dot.coral  { background: var(--coral); }
.feat-dot.yellow { background: var(--yellow); }
.feat-dot.mint   { background: var(--mint); }
.feat-dot.purple { background: var(--purple); }
.intro-feat strong { font-size: .92rem; font-weight: 700; display: block; margin-bottom: .2rem; }
.intro-feat p { font-size: .85rem; color: var(--dark-soft); line-height: 1.55; }

/* ── ACTIVITY CARDS ──────────────────────────────────────── */
.act-card {
  background: white;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--t);
  display: flex; flex-direction: column;
}
.act-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-md); }
.act-card-photo {
  aspect-ratio: 4/3; overflow: hidden; position: relative;
}
.act-card-photo .photo-frame { width: 100%; height: 100%; border-radius: 0; }
.act-card-badge {
  position: absolute; top: 1rem; left: 1rem; z-index: 2;
}
.act-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.act-card-body h3 { font-family: var(--font-head); font-size: 1.4rem; font-weight: 600; margin: .6rem 0 .5rem; color: var(--dark); }
.act-card-body p  { font-size: .88rem; color: var(--dark-soft); line-height: 1.7; flex: 1; margin-bottom: 1.1rem; }
.act-price {
  display: flex; align-items: baseline; gap: .3rem;
  font-family: var(--font-head); font-size: 1.6rem; font-weight: 700;
  color: var(--coral); margin-bottom: 1rem;
}
.act-price span { font-family: var(--font-body); font-size: .78rem; font-weight: 600; color: var(--dark-soft); }
.act-link {
  display: flex; align-items: center; gap: .4rem;
  font-size: .85rem; font-weight: 700; color: var(--coral);
  transition: gap var(--t);
}
.act-link:hover { gap: .7rem; }
.act-link svg { width: 15px; height: 15px; }

/* ── JUMP DROPDOWN ──────────────────────────────────────── */
.jump-dropdown { background: var(--cream); padding: 1rem 0; position: relative; z-index: 10; }
.jump-dropdown .container { position: relative; display: flex; justify-content: center; }
.jump-dropdown-toggle {
  display: flex; align-items: center; gap: .6rem;
  background: white; border: 2px solid var(--coral-pale);
  border-radius: var(--r-pill); padding: .7rem 1.5rem;
  font-family: var(--font-head); font-size: .95rem; font-weight: 600;
  color: var(--dark); cursor: pointer; transition: all var(--t);
  box-shadow: var(--shadow-sm);
}
.jump-dropdown-toggle:hover { border-color: var(--coral); }
.jump-dropdown-toggle svg { transition: transform var(--t); }
.jump-dropdown-toggle.open svg { transform: rotate(180deg); }
.jump-dropdown-menu {
  position: absolute; top: calc(100% + .5rem); left: 50%;
  transform: translateX(-50%); min-width: 280px;
  background: white; border-radius: var(--r-lg);
  box-shadow: var(--shadow-md); border: 1px solid var(--coral-pale);
  overflow: hidden; display: none; flex-direction: column;
}
.jump-dropdown-menu.show { display: flex; }
.jump-dropdown-item {
  padding: .75rem 1.2rem; font-size: .9rem; font-weight: 500;
  color: var(--dark); text-decoration: none;
  transition: background var(--t), color var(--t);
  border-bottom: 1px solid rgba(0,0,0,.04);
}
.jump-dropdown-item:last-child { border-bottom: none; }
.jump-dropdown-item:hover { background: var(--coral-pale); color: var(--coral); }

/* ── TECHNIQUES GRID ─────────────────────────────────────── */
.tech-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; }
.tech-card-link { text-decoration: none; color: inherit; display: block; }
.tech-card {
  background: white;
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: all var(--t);
  box-shadow: var(--shadow-xs);
}
.tech-card:hover { transform: translateY(-6px) scale(1.01); box-shadow: var(--shadow-md); }
.tech-photo { aspect-ratio: 4/3; overflow: hidden; position: relative; }
.tech-photo .photo-frame { width: 100%; height: 100%; border-radius: 0; }
.tech-body { padding: 1.1rem 1.25rem 1.4rem; }
.tech-body h4 { font-family: var(--font-head); font-size: 1.1rem; font-weight: 600; color: var(--dark); margin-bottom: .4rem; }
.tech-body p  { font-size: .82rem; color: var(--dark-soft); line-height: 1.65; }

/* ── SPECIAL ATELIERS ────────────────────────────────────── */
.atelier-card {
  background: white;
  border-radius: var(--r-xl);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  box-shadow: var(--shadow-sm);
  transition: all var(--t);
}
.atelier-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.atelier-photo { position: relative; overflow: hidden; min-height: 280px; }
.atelier-photo .photo-frame { height: 100%; border-radius: 0; }
.atelier-body { padding: 2rem 2.25rem; display: flex; flex-direction: column; justify-content: center; }
.atelier-body h3 { font-family: var(--font-head); font-size: 1.6rem; font-weight: 600; color: var(--dark); margin: .6rem 0 .75rem; }
.atelier-body p  { font-size: .9rem; color: var(--dark-soft); line-height: 1.75; margin-bottom: 1.5rem; }
.atelier-price {
  font-family: var(--font-head); font-size: 2rem; font-weight: 700;
  color: var(--coral); margin-bottom: 1.25rem; line-height: 1;
}
.atelier-price sub { font-family: var(--font-body); font-size: .8rem; font-weight: 600; color: var(--dark-soft); }

/* ── COLLAB SCOLAIRE ─────────────────────────────────────── */
.collab-card {
  border-radius: var(--r-xl);
  overflow: hidden;
  position: relative;
  min-height: 380px;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.collab-photo { position: absolute; inset: 0; }
.collab-photo .photo-frame { height: 100%; border-radius: 0; }
.collab-photo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(28,28,58,.85) 30%, rgba(28,28,58,.3) 70%, transparent 100%);
}
.collab-body {
  position: relative; z-index: 2;
  padding: 2rem;
  color: white;
}
.collab-body h3 { font-family: var(--font-head); font-size: 1.8rem; font-weight: 600; margin: .5rem 0 .75rem; }
.collab-body p  { font-size: .9rem; line-height: 1.7; color: rgba(255,255,255,.75); margin-bottom: 1.25rem; max-width: 480px; }

/* ── GALERIE GRID ────────────────────────────────────────── */
.galerie-masonry {
  columns: 3 220px;
  column-gap: .9rem;
}
.galerie-item {
  break-inside: avoid;
  margin-bottom: .9rem;
  border-radius: var(--r-md);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  transition: all var(--t);
  box-shadow: var(--shadow-xs);
}
.galerie-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); z-index: 2; }
.galerie-item .photo-frame { border-radius: 0; }

/* Photos affichées à leur taille naturelle — pas de recadrage */
.act-module .galerie-item .photo-frame { height: auto; overflow: visible; }
.act-module .galerie-item .photo-frame img {
  width: 100%;
  height: auto;
  object-fit: unset;
  aspect-ratio: unset;
}
.act-module .galerie-item .photo-frame .css-fallback { aspect-ratio: 1; position: relative; }

/* Garder les formats forcés hors galerie (hero, cards…) */
.galerie-item .photo-frame img, .galerie-item .photo-frame .css-fallback { aspect-ratio: 1; }
.galerie-item.tall .photo-frame img, .galerie-item.tall .photo-frame .css-fallback { aspect-ratio: 2/3; }
.galerie-item.wide .photo-frame img, .galerie-item.wide .photo-frame .css-fallback { aspect-ratio: 4/3; }

.galerie-overlay {
  position: absolute; inset: 0;
  background: rgba(28,28,58,.7);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: .5rem;
  opacity: 0; transition: opacity var(--t);
}
.galerie-item:hover .galerie-overlay { opacity: 1; }
.go-icon {
  width: 48px; height: 48px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,.6);
  display: flex; align-items: center; justify-content: center;
}
.go-icon svg { width: 20px; height: 20px; stroke: white; fill: none; }
.go-title { font-family: var(--font-head); font-size: 1rem; color: white; text-align: center; padding: 0 .75rem; }
.go-cat   { font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.6); }

/* ── FILTER BUTTONS ──────────────────────────────────────── */
.filter-wrap { display: flex; justify-content: center; flex-wrap: wrap; gap: .5rem; margin-bottom: 2.5rem; }
.filter-btn {
  padding: .5rem 1.2rem;
  border-radius: var(--r-pill);
  border: 2px solid rgba(28,28,58,.12);
  background: white;
  font-family: var(--font-body); font-size: .78rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--dark-soft);
  transition: all var(--t);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--coral); border-color: var(--coral); color: white;
}

/* ── GALERIE JUMP NAV ────────────────────────────────────── */
.gal-jump {
  position: sticky;
  top: 64px;
  z-index: 90;
  background: rgba(255,251,245,.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(28,28,58,.08);
  padding: .65rem 0;
}
.gal-jump-inner {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
  padding: .25rem 1rem;
  justify-content: center;
}
.gal-jump-btn {
  flex-shrink: 0;
  padding: .35rem .8rem;
  border-radius: var(--r-pill);
  border: 1.5px solid rgba(28,28,58,.13);
  background: white;
  font-family: var(--font-body);
  font-size: .72rem; font-weight: 700;
  letter-spacing: .03em;
  color: var(--dark-soft);
  transition: all var(--t);
  white-space: nowrap;
  cursor: pointer;
}
.gal-jump-btn:hover {
  border-color: var(--coral);
  color: var(--coral);
  background: var(--coral-pale);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(232,86,58,.15);
}

/* ── ACTIVITY MODULE ─────────────────────────────────────── */
.act-module { padding: clamp(3rem, 6vw, 5rem) 0; border-bottom: 1px solid rgba(28,28,58,.07); }

.act-module-header {
  display: flex;
  align-items: stretch;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid rgba(28,28,58,.08);
  flex-wrap: wrap;
}
.act-module-accent {
  width: 5px;
  border-radius: 3px;
  flex-shrink: 0;
  align-self: stretch;
  min-height: 52px;
}
.act-module-info { flex: 1; min-width: 0; display: flex; flex-direction: column; justify-content: center; }
.act-module-info h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: .35rem;
}
.act-module-info p {
  font-size: .9rem;
  color: var(--dark-soft);
  margin: 0;
  max-width: 520px;
  line-height: 1.6;
}
.act-module-count {
  margin-left: auto;
  align-self: flex-start;
  padding: .4rem .95rem;
  border-radius: var(--r-sm);
  font-family: var(--font-body);
  font-size: .72rem; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase;
  flex-shrink: 0;
}

@media (max-width:600px) {
  .act-module-header { gap: 1rem; flex-wrap: wrap; }
  .act-module-accent { min-height: 44px; }
  .gal-jump { top: 56px; }
  .act-module-count { margin-left: 0; }
}

/* ── GALLERY SUB-TABS ────────────────────────────────────── */
.gal-subtabs {
  display: flex;
  gap: .5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.gal-subtab {
  padding: .45rem 1.4rem;
  border: 2px solid #38BDF8;
  border-radius: var(--r-pill);
  font-family: var(--font-head);
  font-size: .88rem;
  font-weight: 600;
  color: #38BDF8;
  background: transparent;
  cursor: pointer;
  transition: all var(--t);
}
.gal-subtab.active,
.gal-subtab:hover {
  background: #38BDF8;
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 3px 10px rgba(56,189,248,.25);
}
.gal-subgrid { display: none; }
.gal-subgrid.active { display: block; }

/* ── TESTIMONIALS INVITE ─────────────────────────────────── */
.review-invite {
  background: white;
  border-radius: var(--r-xl);
  padding: 2.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 2px dashed rgba(232,86,58,.25);
}
.review-stars { display: flex; justify-content: center; gap: .25rem; margin-bottom: 1rem; }
.review-star { font-size: 1.6rem; }
.review-invite h3 { font-family: var(--font-head); font-size: 1.6rem; margin-bottom: .6rem; }
.review-invite p  { color: var(--dark-soft); font-size: .95rem; margin-bottom: 1.5rem; }
.review-links { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ── CONTACT ─────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.35fr; gap: 2.5rem; align-items: start; }
.info-card {
  background: white;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.info-card-photo { aspect-ratio: 16/8; overflow: hidden; }
.info-card-photo .photo-frame { height: 100%; border-radius: 0; }
.info-card-body { padding: 1.75rem; }
.info-row {
  display: flex; gap: .9rem; align-items: flex-start;
  padding: .9rem 0; border-bottom: 1px solid rgba(28,28,58,.06);
}
.info-row:last-of-type { border-bottom: none; }
.info-icon-box {
  width: 40px; height: 40px; border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.ii-coral  { background: var(--coral-pale); }
.ii-yellow { background: var(--yellow-pale); }
.ii-mint   { background: var(--mint-pale); }
.ii-purple { background: var(--purple-pale); }
.info-icon-box svg { width: 18px; height: 18px; }
.info-lbl { font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--dark-soft); margin-bottom: .25rem; }
.info-val { font-size: .95rem; font-weight: 600; color: var(--dark); line-height: 1.55; }
.info-val a { color: var(--coral); transition: color var(--t); }
.info-val a:hover { color: #C94430; }

.form-card {
  background: white;
  border-radius: var(--r-xl);
  padding: 2.25rem;
  box-shadow: var(--shadow-sm);
}
.form-group { margin-bottom: 1.2rem; }
.form-label {
  display: block; font-size: .72rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--dark-soft); margin-bottom: .45rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-ctrl {
  width: 100%; padding: .9rem 1.1rem;
  border: 2px solid rgba(28,28,58,.1);
  border-radius: var(--r-md); background: var(--cream);
  font-family: var(--font-body); font-size: .95rem; color: var(--dark);
  transition: all var(--t); outline: none; appearance: none;
}
.form-ctrl:focus { border-color: var(--coral); background: white; box-shadow: 0 0 0 3px rgba(232,86,58,.1); }
.form-ctrl::placeholder { color: rgba(28,28,58,.3); }
textarea.form-ctrl { min-height: 130px; resize: vertical; }
select.form-ctrl {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='none' stroke='%235C5C7A' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right .9rem center;
  background-size: 1.1rem; padding-right: 2.5rem;
}
.form-check {
  display: flex; align-items: flex-start; gap: .6rem;
}
.form-check input[type="checkbox"] {
  width: 18px; height: 18px; margin-top: 2px;
  accent-color: var(--coral); cursor: pointer; flex-shrink: 0;
}
.form-check label { font-size: .82rem; color: var(--dark-soft); cursor: pointer; line-height: 1.55; }
.form-submit {
  width: 100%; padding: 1.05rem;
  background: var(--coral); color: white;
  border: none; border-radius: var(--r-pill);
  font-family: var(--font-body); font-size: .98rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center; gap: .6rem;
  margin-top: .5rem; transition: all var(--t); cursor: pointer;
}
.form-submit:hover { background: #C94430; transform: translateY(-2px); box-shadow: 0 12px 30px rgba(232,86,58,.4); }
.form-submit svg { width: 18px; height: 18px; stroke: white; fill: none; }
.form-success { display: none; text-align: center; padding: 2.5rem; }
.form-success.show { display: block; }
.success-icon {
  width: 68px; height: 68px; border-radius: 50%; border: 3px solid var(--mint);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem;
}
.success-icon svg { width: 32px; height: 32px; stroke: var(--mint); fill: none; }

/* ── PAGE HERO ───────────────────────────────────────────── */
.page-hero {
  padding-top: 70px; min-height: 48vh;
  display: flex; flex-direction: column; justify-content: flex-end;
  position: relative; overflow: hidden;
}
.page-hero-bg { position: absolute; inset: 0; }
.page-hero-bg .photo-frame { height: 100%; border-radius: 0; }
.page-hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(28,28,58,.55) 0%, rgba(28,28,58,.72) 60%, rgba(28,28,58,.93) 100%);
}
.page-hero-content { position: relative; z-index: 2; padding: var(--sp-xl, 3rem) 0; }
.page-hero-content .section-label.white { margin-bottom: .6rem; }
.page-hero-h1 {
  font-family: var(--font-head);
  font-size: clamp(2.8rem,7vw,5.5rem);
  font-weight: 700; color: white; line-height: 1; margin-bottom: 1rem;
  text-shadow: 0 2px 12px rgba(0,0,0,.5), 0 1px 3px rgba(0,0,0,.4);
}
.page-hero-h1 span { color: white; }
.page-hero-desc { font-size: 1rem; font-weight: 500; color: white; max-width: 520px; line-height: 1.75; text-shadow: 0 2px 10px rgba(0,0,0,.6), 0 1px 3px rgba(0,0,0,.4); }

/* ── VISITE ATELIER ─────────────────────────────────────── */
.tour-viewer {
  position: relative;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--dark);
  box-shadow: 0 16px 48px rgba(58,40,0,.18);
}
.tour-slides {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.tour-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .6s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1a1a1a;
}
.tour-slide.active { opacity: 1; z-index: 1; }
.tour-slide img {
  width: 100%; height: 100%;
  object-fit: contain;
  background: #1a1a1a;
}
.tour-slide video {
  width: 100%; height: 100%;
  object-fit: contain;
  background: #1a1a1a;
}
.tour-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2.5rem 1.5rem 1.25rem;
  background: linear-gradient(transparent, rgba(0,0,0,.65));
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.tour-caption-text {
  color: white;
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 600;
  text-shadow: 0 1px 4px rgba(0,0,0,.4);
}
.tour-caption-counter {
  color: rgba(255,255,255,.6);
  font-size: .8rem;
  font-weight: 600;
  white-space: nowrap;
}
.tour-btn {
  position: absolute;
  top: 50%; z-index: 3;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.9);
  box-shadow: 0 2px 12px rgba(0,0,0,.2);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, transform .2s;
}
.tour-btn:hover { background: white; transform: translateY(-50%) scale(1.1); }
.tour-btn.prev { left: .75rem; }
.tour-btn.next { right: .75rem; }
.tour-btn svg { width: 20px; height: 20px; stroke: var(--dark); stroke-width: 2.5; fill: none; }
.tour-dots {
  display: flex;
  justify-content: center;
  gap: .4rem;
  padding: 1rem 0;
  background: var(--dark);
  border-radius: 0 0 var(--r-xl) var(--r-xl);
}
.tour-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.25);
  border: none;
  cursor: pointer;
  transition: background .3s, transform .3s;
  padding: 0;
}
.tour-dot.active {
  background: var(--coral);
  transform: scale(1.3);
}
.tour-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .5rem;
  margin-top: 1.5rem;
}
.tour-tag {
  padding: .45rem 1rem;
  border-radius: 2rem;
  font-size: .8rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all .25s;
  background: var(--cream);
  color: var(--dark-soft);
}
.tour-tag.active {
  background: var(--coral);
  color: white;
}
@media (max-width: 768px) {
  .tour-slides { aspect-ratio: 4/3; }
  .tour-btn { width: 38px; height: 38px; }
  .tour-btn svg { width: 16px; height: 16px; }
}

/* ── CTA BANNER ──────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, #FF6B00, #FF9500);
  padding: clamp(3rem,6vw,5rem) 0;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: none;
}
.cta-inner { position: relative; z-index: 1; text-align: center; }
.cta-inner h2 {
  font-family: var(--font-head);
  font-size: clamp(2.5rem,5vw,4rem); font-weight: 700;
  color: white; line-height: 1.1; margin-bottom: .75rem;
}
.cta-inner h2 span { color: var(--yellow); }
.cta-inner p { color: rgba(255,255,255,.75); font-size: 1rem; margin-bottom: 2rem; }
.cta-btns { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-item {
  background: white; border-radius: var(--r-lg);
  border: 2px solid rgba(28,28,58,.07); overflow: hidden;
  margin-bottom: .75rem;
}
.faq-trigger {
  width: 100%; padding: 1.3rem 1.6rem;
  display: flex; justify-content: space-between; align-items: center;
  background: none; border: none; cursor: pointer; text-align: left;
  font-family: var(--font-body); font-size: .97rem; font-weight: 700;
  color: var(--dark); gap: 1rem;
}
.faq-trigger svg { width: 20px; height: 20px; flex-shrink: 0; stroke: var(--coral); fill: none; transition: transform var(--t); }
.faq-item.open .faq-trigger svg { transform: rotate(180deg); }
.faq-body { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-body p { padding: 0 1.6rem 1.3rem; font-size: .9rem; color: var(--dark-soft); line-height: 1.75; }

/* ── MAP ─────────────────────────────────────────────────── */
.map-frame {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 2px solid rgba(28,28,58,.06);
  margin-top: 2.5rem;
}
.map-frame iframe { width: 100%; height: 380px; display: block; border: none; }

/* ── LIGHTBOX ────────────────────────────────────────────── */
.lightbox {
  display: none; position: fixed; inset: 0;
  background: rgba(28,28,58,.92); z-index: 999;
  align-items: center; justify-content: center; padding: 1.5rem;
}
.lightbox.open { display: flex; }
.lb-inner { max-width: 90vw; max-height: 90vh; width: auto; border-radius: var(--r-xl); overflow: hidden; display: flex; align-items: center; justify-content: center; }
.lb-inner .photo-frame { width: auto; max-width: 100%; max-height: 90vh; }
.lb-inner .photo-frame img { aspect-ratio: auto; width: auto; max-width: 90vw; max-height: 90vh; object-fit: contain; }
.lb-inner .photo-frame .css-fallback { aspect-ratio: 4/3; }
.lb-close {
  position: fixed; top: 1.5rem; right: 1.5rem;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.15); border: 1.5px solid rgba(255,255,255,.3);
  color: white; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--t); cursor: pointer;
}
.lb-close:hover { background: var(--coral); border-color: var(--coral); }
.lb-arrow {
  position: fixed; top: 50%; transform: translateY(-50%);
  width: 50px; height: 50px; border-radius: 50%;
  background: rgba(255,255,255,.15); border: 1.5px solid rgba(255,255,255,.3);
  color: white; display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all var(--t); z-index: 1000;
}
.lb-arrow:hover { background: var(--coral); border-color: var(--coral); }
.lb-prev { left: 1.5rem; }
.lb-next { right: 1.5rem; }

/* ── FOOTER ──────────────────────────────────────────────── */
.footer { background: var(--dark); color: rgba(255,255,255,.6); padding: clamp(3.5rem,7vw,6rem) 0 1.75rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.08); margin-bottom: 1.75rem; }
.footer-logo { margin-bottom: 1.25rem; }
.footer-logo svg { height: 42px; width: auto; }
.footer-about { font-size: .88rem; line-height: 1.8; margin-bottom: 1.5rem; }
.footer-socials { display: flex; gap: .6rem; }
.social-btn {
  width: 38px; height: 38px; border-radius: var(--r-sm);
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center; transition: all var(--t);
}
.social-btn:hover { background: var(--coral); border-color: var(--coral); }
.social-btn svg { width: 16px; height: 16px; stroke: white; fill: none; }
.footer-col h4 { font-family: var(--font-head); font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 1rem; }
.footer-links { display: flex; flex-direction: column; gap: .5rem; }
.footer-links a { font-size: .88rem; color: rgba(255,255,255,.55); transition: color var(--t); }
.footer-links a:hover { color: var(--coral-light); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-copy { font-size: .78rem; color: rgba(255,255,255,.3); }
.heart { color: var(--coral); animation: pulse 2s ease infinite; display: inline-block; }
@keyframes pulse { 0%,100%{transform:scale(1)} 50%{transform:scale(1.3)} }

/* ── SCROLL REVEAL ───────────────────────────────────────── */
.reveal       { opacity:0; transform:translateY(22px); transition:opacity .6s var(--ease),transform .6s var(--ease); }
.reveal-left  { opacity:0; transform:translateX(-28px);transition:opacity .6s var(--ease),transform .6s var(--ease); }
.reveal-right { opacity:0; transform:translateX(28px); transition:opacity .6s var(--ease),transform .6s var(--ease); }
.reveal.vis,.reveal-left.vis,.reveal-right.vis { opacity:1; transform:none; }
.d1{transition-delay:.08s}.d2{transition-delay:.16s}.d3{transition-delay:.24s}.d4{transition-delay:.32s}

/* ── BACK TO TOP ─────────────────────────────────────────── */
.back-top {
  position:fixed; bottom:1.75rem; right:1.75rem; z-index:50;
  width:44px; height:44px; border-radius:50%;
  background:var(--coral); color:white;
  display:flex; align-items:center; justify-content:center;
  opacity:0; transform:translateY(12px); pointer-events:none;
  transition:all var(--t); box-shadow:0 6px 20px rgba(232,86,58,.4);
}
.back-top svg{width:18px;height:18px;stroke:white;fill:none;}
.back-top.vis{opacity:1;transform:none;pointer-events:all;}
.back-top:hover{background:#C94430;transform:translateY(-3px);}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media(max-width:1024px){
  .hero{grid-template-columns:1fr;min-height:auto;}
  .hero-right{height:60vw;min-height:320px;max-height:520px;}
  .grid-4{grid-template-columns:1fr 1fr;}
  .footer-grid{grid-template-columns:1fr 1fr;gap:2rem;}
  .atelier-card{grid-template-columns:1fr;}
  .atelier-photo{min-height:240px;}
}
@media(max-width:768px){
  .nav-links{display:none;}
  .nav-hamburger{display:flex;}
  .grid-2,.contact-grid{grid-template-columns:1fr;}
  .grid-3,.tech-grid{grid-template-columns:1fr 1fr;}
  .galerie-masonry{columns:2 160px;}
  .hero-stats{gap:1.25rem;}
  .form-row{grid-template-columns:1fr;}
}
@media(max-width:480px){
  .grid-3,.tech-grid{grid-template-columns:1fr;}
  .galerie-masonry{columns:1;}
  .hero-buttons{flex-direction:column;align-items:flex-start;}
  .footer-grid{grid-template-columns:1fr;}
  .footer-bottom{flex-direction:column;text-align:center;}
}
@media(max-width:640px){
  .horaires-grid{grid-template-columns:1fr;}
}
