/* ============================================================
   TAHITI FARANI — Système de design Apple-inspired
   Couleur principale : #00c2cb (teal/cyan)
   Typographie : Système natif (no Google Fonts)
   ============================================================ */

/* ── 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: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; background: var(--bg); color: var(--text); line-height: 1.6; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }
input, textarea, select { font-family: inherit; }

/* ── Tokens ── */
:root {
  /* Brand */
  --cyan: #00c2cb;
  --cyan-dark: #009ca6;
  --cyan-light: #00d8e2;
  --cyan-soft: rgba(0,194,203,0.1);
  --cyan-soft2: rgba(0,194,203,0.15);

  /* Light mode */
  --bg: #f5f5f7;
  --bg-white: #ffffff;
  --bg-card: #ffffff;
  --text: #1d1d1f;
  --text-muted: #86868b;
  --text-secondary: #515154;
  --border: #e5e5e7;
  --border-light: #f2f2f4;

  /* Dark */
  --bg-dark: #000000;
  --bg-dark-card: #1d1d1f;
  --bg-stone: #0c0c0e;
  --bg-stone-card: #141416;
  --text-light: #f5f5f7;
  --text-stone: #d4d4d8;
  --text-stone-muted: #8c8c96;
  --border-dark: #2d2d30;

  /* Shadows (Apple style) */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow: 0 4px 12px rgba(0,0,0,0.06), 0 2px 4px rgba(0,0,0,0.04);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.07), 0 3px 8px rgba(0,0,0,0.04);
  --shadow-lg: 0 20px 40px rgba(0,0,0,0.08), 0 8px 16px rgba(0,0,0,0.04);
  --shadow-xl: 0 40px 80px rgba(0,0,0,0.12);
  --shadow-dark: 0 20px 60px rgba(0,0,0,0.5);

  /* Radius */
  --r-xs: 6px;
  --r-sm: 10px;
  --r: 14px;
  --r-md: 18px;
  --r-lg: 22px;
  --r-xl: 28px;
  --r-2xl: 36px;
  --r-full: 9999px;

  /* Spacing */
  --section-py: clamp(64px, 8vw, 120px);
  --container-px: clamp(16px, 5vw, 80px);

  /* Nav height */
  --nav-h: 64px;
  --nav-h-scroll: 56px;
}

/* ── Skip link ── */
.skip-link { position: absolute; left: -9999px; top: 4px; z-index: 9999; background: var(--cyan); color: #fff; padding: 8px 16px; border-radius: var(--r-sm); font-weight: 700; }
.skip-link:focus { left: 4px; }

/* ── Container ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 var(--container-px); width: 100%; }
.container--wide { max-width: 1400px; }
.container--narrow { max-width: 800px; }

/* ── Section ── */
.section { padding: var(--section-py) 0; }
.section--sm { padding: clamp(40px, 5vw, 72px) 0; }
.section--lg { padding: clamp(80px, 10vw, 160px) 0; }
.section--dark { background: var(--bg-stone); color: var(--text-light); }
.section--white { background: var(--bg-white); }
.section--stone { background: #18181b; color: var(--text-light); }
.section--cyan { background: var(--cyan); color: #fff; }

/* ── Typography ── */
.tag { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--cyan); margin-bottom: 1rem; }
.tag--dark { color: rgba(0,194,203,0.85); }
.tag--white { color: rgba(255,255,255,0.7); }

h1, .h1 { font-size: clamp(2.6rem, 6vw, 5rem); font-weight: 900; line-height: 1.05; letter-spacing: -0.02em; }
h2, .h2 { font-size: clamp(2rem, 4.5vw, 3.5rem); font-weight: 900; line-height: 1.08; letter-spacing: -0.02em; }
h3, .h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); font-weight: 700; line-height: 1.25; }
h4, .h4 { font-size: 1.1rem; font-weight: 700; }

.accent { color: var(--cyan); }
.accent--dark { background: linear-gradient(135deg, var(--cyan), #007AFF); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.text-muted { color: var(--text-muted); }
.text-stone { color: var(--text-stone); }
.text-stone-muted { color: var(--text-stone-muted); }

/* ── Buttons ── */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 13px 28px; border-radius: var(--r-full); font-size: 15px; font-weight: 700; letter-spacing: 0.01em; transition: all 0.2s ease; cursor: pointer; white-space: nowrap; }
.btn-sm { padding: 9px 20px; font-size: 13.5px; }
.btn-lg { padding: 16px 36px; font-size: 17px; }

.btn-cyan { background: var(--cyan); color: #fff; }
.btn-cyan:hover { background: var(--cyan-dark); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(0,194,203,0.35); }
.btn-cyan:active { transform: translateY(0); }

.btn-dark { background: #1d1d1f; color: #fff; }
.btn-dark:hover { background: #2d2d30; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(0,0,0,0.25); }

.btn-outline { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.35); }
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.6); }

.btn-outline-dark { background: transparent; color: var(--text); border: 1.5px solid var(--border); }
.btn-outline-dark:hover { border-color: var(--text); background: var(--bg); }

.btn-ghost { background: rgba(255,255,255,0.08); color: #fff; }
.btn-ghost:hover { background: rgba(255,255,255,0.14); }

.btn-white { background: #fff; color: var(--bg-stone); }
.btn-white:hover { background: var(--text-stone); transform: translateY(-1px); }

/* ── Cards ── */
.card { background: var(--bg-card); border-radius: var(--r-md); box-shadow: var(--shadow); border: 1px solid var(--border-light); overflow: hidden; transition: box-shadow 0.2s, transform 0.2s; }
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.card--dark { background: var(--bg-dark-card); border-color: var(--border-dark); }
.card--dark:hover { box-shadow: 0 24px 60px rgba(0,0,0,0.4); }
.card--stone { background: var(--bg-stone-card); border-color: var(--border-dark); }

.glass { background: rgba(255,255,255,0.08); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.12); }
.glass--dark { background: rgba(0,0,0,0.4); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.08); }

/* ── Grid ── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }

/* ── ─────────── HEADER ─────────── ── */
.site-header { position: sticky; top: 0; z-index: 50; }

/* Top banner (teal gradient) */
.header-banner {
  background: linear-gradient(to right, #007d84, #009ca6, #00c2cb);
  border-bottom: 1px solid rgba(0,194,203,0.4);
  position: relative; overflow: hidden;
}
.header-banner::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(circle at left, rgba(255,255,255,0.18), transparent 35%),
              radial-gradient(circle at right, rgba(255,255,255,0.12), transparent 30%);
}
.header-banner-inner {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  min-height: 40px; padding: 8px 0;
}
.header-banner-left {
  display: flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.9); min-width: 0;
}
.header-banner-left span { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.header-banner-right { display: none; font-size: 12px; font-weight: 500; color: rgba(255,255,255,0.9); align-items: center; gap: 8px; flex-shrink: 0; white-space: nowrap; }
@media (min-width: 768px) { .header-banner-right { display: flex; } }

/* Main nav wrap (white / frosted) */
.header-nav-wrap {
  position: relative;
  background: rgba(255,255,255,0.88); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(231,229,228,0.7);
  transition: background 0.3s, box-shadow 0.3s;
}
.header-nav-wrap::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(90deg, rgba(0,194,203,0.05) 0%, transparent 20%, transparent 80%, rgba(0,194,203,0.06) 100%);
}
.header-nav-wrap.scrolled {
  background: rgba(255,255,255,0.94);
  box-shadow: 0 10px 35px rgba(0,0,0,0.08);
  border-bottom-color: rgba(231,229,228,0.8);
}
.header-nav-inner {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  height: 80px; transition: height 0.3s;
}
.header-nav-wrap.scrolled .header-nav-inner { height: 76px; }
.header-accent-line { height: 3px; width: 100%; background: linear-gradient(to right, #00c2cb, #67e8f9, transparent); }

/* Logo */
.nav-logo { display: flex; align-items: center; gap: 12px; min-width: 0; flex-shrink: 0; }
.nav-logo-img {
  width: 48px; height: 48px; border-radius: 14px; flex-shrink: 0;
  border: 1px solid #e7e5e4; background: white; padding: 6px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08), 0 0 0 1px rgba(0,0,0,0.04);
  overflow: hidden; transition: transform 0.3s, box-shadow 0.3s;
}
.nav-logo:hover .nav-logo-img { transform: scale(1.03); box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
.nav-logo-img img { width: 100%; height: 100%; object-fit: contain; }
.nav-logo-text { min-width: 0; line-height: 1.2; }
.nav-logo-tag  { display: block; font-size: 10px; font-weight: 700; letter-spacing: 0.24em; text-transform: uppercase; color: #00c2cb; }
.nav-logo-name { display: block; font-size: 18px; font-weight: 900; color: #1c1917; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.nav-logo-sub  { display: none; font-size: 12px; color: #78716c; }
@media (min-width: 640px) { .nav-logo-sub { display: block; } }

/* Desktop nav */
.nav-links { display: none; align-items: center; gap: 4px; }
@media (min-width: 1024px) { .nav-links { display: flex; } }

.nav-link {
  display: inline-flex; align-items: center; gap: 8px; padding: 10px 16px;
  border-radius: 9999px; font-size: 14px; font-weight: 600; color: #57534e;
  transition: background 0.15s, color 0.15s; white-space: nowrap;
}
.nav-link:hover { background: #f5f5f4; color: #1c1917; }
.nav-link.active { background: rgba(0,194,203,0.15); color: #007d84; }

/* About dropdown */
.nav-dropdown { position: relative; display: flex; align-items: center; }
.nav-dropdown-trigger { display: flex; align-items: center; }
.nav-chevron-btn {
  width: 40px; height: 40px; border-radius: 9999px; margin-left: 2px;
  display: inline-flex; align-items: center; justify-content: center;
  color: #78716c; transition: background 0.15s, color 0.15s;
}
.nav-chevron-btn:hover, .nav-chevron-btn.open { background: #f5f5f4; color: #1c1917; }
.nav-chevron-btn svg { transition: transform 0.2s; }
.nav-chevron-btn.open svg { transform: rotate(180deg); }

.nav-dropdown-menu {
  position: absolute; top: calc(100% + 12px); left: 0;
  width: 360px; border-radius: 28px;
  border: 1px solid rgba(231,229,228,0.9);
  background: rgba(255,255,255,0.97); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  padding: 8px;
  box-shadow: 0 24px 70px rgba(0,0,0,0.12), 0 0 0 1px rgba(0,0,0,0.04);
  opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(-4px);
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
}
.nav-dropdown-menu.open { opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0); }

.nav-dropdown-header {
  border-radius: 22px;
  background: linear-gradient(to right, rgba(0,194,203,0.1), rgba(207,250,254,0.4), transparent);
  padding: 16px; margin-bottom: 8px;
}
.nav-dropdown-header-tag  { font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: #007d84; margin-bottom: 4px; }
.nav-dropdown-header-desc { font-size: 14px; color: #57534e; line-height: 1.5; }

.nav-dropdown-item {
  display: flex; align-items: flex-start; gap: 12px; padding: 12px; border-radius: 22px;
  color: #57534e; font-size: 14px; transition: background 0.15s, color 0.15s;
}
.nav-dropdown-item:hover { background: #f5f5f4; color: #1c1917; }
.nav-dropdown-item.active { background: rgba(0,194,203,0.12); color: #007d84; }
.nav-dropdown-item-icon {
  width: 40px; height: 40px; border-radius: 14px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: #f5f5f4; color: #57534e; transition: background 0.15s;
}
.nav-dropdown-item:hover .nav-dropdown-item-icon,
.nav-dropdown-item.active .nav-dropdown-item-icon { background: white; }
.nav-dropdown-item.active .nav-dropdown-item-icon { color: #007d84; }
.nav-dropdown-item-label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 2px; }
.nav-dropdown-item-desc  { display: block; font-size: 12px; color: #a8a29e; line-height: 1.4; }

/* CTA adhérer */
.nav-cta-btn {
  display: inline-flex; align-items: center; gap: 8px; margin-left: 8px;
  padding: 10px 16px; border-radius: 9999px;
  background: #1c1917; color: white; font-size: 14px; font-weight: 700;
  box-shadow: 0 1px 3px rgba(0,0,0,0.12);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s; white-space: nowrap;
}
.nav-cta-btn:hover { background: #00c2cb; transform: translateY(-2px); box-shadow: 0 6px 16px rgba(0,0,0,0.15); }

/* Right side extras */
.nav-right { display: flex; align-items: center; gap: 12px; }
.nav-badge { display: none; border-radius: 9999px; border: 1px solid rgba(0,194,203,0.2); background: rgba(0,194,203,0.08); padding: 8px 12px; font-size: 12px; font-weight: 600; color: #007d84; }
@media (min-width: 1280px) { .nav-badge { display: block; } }

/* Mobile toggle */
.nav-toggle {
  width: 44px; height: 44px; border-radius: 14px;
  border: 1px solid #d6d3d1; background: white; color: #1c1917;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  transition: border-color 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s; flex-shrink: 0;
}
.nav-toggle:hover { border-color: #00c2cb; color: #007d84; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
@media (min-width: 1024px) { .nav-toggle { display: none; } }

/* Mobile drawer (slide from right, white) */
.mobile-drawer { position: fixed; inset: 0; z-index: 12000; display: none; }
.mobile-drawer.open { display: block; }
.mobile-drawer-backdrop { position: absolute; inset: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.45); backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px); cursor: pointer; border: none; }
.mobile-drawer-panel {
  position: absolute; right: 0; top: 0; height: 100%; width: 100%; max-width: 400px;
  background: white; border-left: 1px solid #e7e5e4;
  display: flex; flex-direction: column;
  box-shadow: -24px 0 64px rgba(0,0,0,0.15);
  transform: translateX(100%); transition: transform 0.3s cubic-bezier(0.16,1,0.3,1);
  overflow: hidden;
}
.mobile-drawer.open .mobile-drawer-panel { transform: translateX(0); }
.mobile-drawer-header {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 16px 20px; border-bottom: 1px solid #e7e5e4; flex-shrink: 0;
  background: rgba(255,255,255,0.95);
}
.mobile-drawer-tag   { display: block; font-size: 10px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: #00c2cb; margin-bottom: 2px; }
.mobile-drawer-title { display: block; font-size: 18px; font-weight: 900; color: #1c1917; }
.mobile-drawer-close {
  width: 44px; height: 44px; border-radius: 14px; flex-shrink: 0;
  border: 1px solid #d6d3d1; background: white; color: #57534e;
  display: inline-flex; align-items: center; justify-content: center; transition: background 0.15s;
}
.mobile-drawer-close:hover { background: #f5f5f4; }
.mobile-drawer-body { flex: 1; overflow-y: auto; padding: 20px; }

.mobile-drawer-intro {
  border-radius: 28px;
  background: linear-gradient(to bottom right, rgba(0,194,203,0.12), rgba(207,250,254,0.3), white);
  padding: 16px; margin-bottom: 20px;
}
.mobile-drawer-intro-tag  { font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: #007d84; margin-bottom: 8px; }
.mobile-drawer-intro-text { font-size: 14px; font-weight: 600; color: #1c1917; line-height: 1.5; }

.mobile-nav-link {
  display: flex; align-items: center; gap: 12px; padding: 16px; border-radius: 16px;
  font-size: 16px; font-weight: 600; color: #1c1917; background: #fafaf9;
  transition: background 0.15s, color 0.15s; margin-bottom: 8px;
}
.mobile-nav-link:hover, .mobile-nav-link.active { background: rgba(0,194,203,0.15); color: #007d84; }

.mobile-accordion { border: 1px solid #e7e5e4; border-radius: 24px; padding: 8px; margin-bottom: 8px; }
.mobile-accordion-btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 12px 16px; border-radius: 16px; background: #f5f5f4;
  font-size: 14px; font-weight: 700; color: #44403c;
}
.mobile-accordion-btn svg { transition: transform 0.2s; flex-shrink: 0; }
.mobile-accordion-btn.open svg { transform: rotate(180deg); }
.mobile-accordion-content { display: none; margin-top: 8px; }
.mobile-accordion-content.open { display: block; }

.mobile-accordion-item {
  display: flex; align-items: flex-start; gap: 12px; padding: 12px; border-radius: 16px;
  color: #57534e; font-size: 14px; transition: background 0.15s, color 0.15s; margin-bottom: 4px;
}
.mobile-accordion-item:hover, .mobile-accordion-item.active { background: rgba(0,194,203,0.12); color: #007d84; }
.mobile-accordion-icon {
  width: 36px; height: 36px; border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; background: #f5f5f4; font-size: 14px;
}
.mobile-nav-links { margin-top: 20px; display: flex; flex-direction: column; gap: 8px; }
.mobile-cta-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 16px; border-radius: 16px; background: #1c1917; color: white;
  font-size: 16px; font-weight: 700; transition: background 0.2s;
}
.mobile-cta-btn:hover { background: #00c2cb; }

/* ── ─────────── HERO ─────────── ── */
.hero {
  position: relative; overflow: hidden;
  min-height: 100svh; display: flex; align-items: flex-end;
  padding-bottom: clamp(60px, 8vw, 100px);
}
.hero--center { align-items: center; text-align: center; }
.hero--short { min-height: clamp(400px, 55vh, 600px); }

.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.55) 50%, rgba(0,0,0,0.2) 100%);
}
.hero-overlay--even { background: rgba(0,0,0,0.55); }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; z-index: 0; }
.hero-bg--dark { background-color: var(--bg-stone); background-image: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0,194,203,0.12) 0%, transparent 70%); }

.hero-content { position: relative; z-index: 2; }

.hero-tagline { font-size: clamp(13px,1.5vw,15px); font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--cyan); margin-bottom: 1rem; }
.hero-h1 { font-size: clamp(3.2rem, 9vw, 8rem); font-weight: 900; line-height: 1.0; letter-spacing: -0.03em; color: #fff; margin-bottom: 1.5rem; }
.hero-sub { font-size: clamp(1rem, 2vw, 1.25rem); color: rgba(255,255,255,0.72); max-width: 620px; line-height: 1.65; margin-bottom: 2.5rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.hero-actions--center { justify-content: center; }

/* Hero scroll indicator */
.hero-scroll { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 6px; color: rgba(255,255,255,0.4); font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; }
.hero-scroll-arrow { font-size: 18px; animation: bounce 2s infinite; }
@keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(5px); } }

/* Hero social sidebar */
.hero-social { position: absolute; right: 28px; bottom: 50%; transform: translateY(50%); z-index: 2; display: flex; flex-direction: column; gap: 12px; align-items: center; }
.hero-social-link { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.6); font-size: 14px; transition: background 0.15s, color 0.15s; }
.hero-social-link:hover { background: var(--cyan); color: #fff; }
.hero-social-line { width: 1px; height: 60px; background: rgba(255,255,255,0.15); }

/* Page hero (shorter) */
.page-hero {
  min-height: clamp(320px, 45vh, 520px); display: flex; align-items: flex-end;
  padding-bottom: clamp(48px, 6vw, 80px);
  background: var(--bg-stone);
  background-image: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0,194,203,0.1) 0%, transparent 70%);
  position: relative; overflow: hidden;
}
.page-hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to right, rgba(0,0,0,0.6) 0%, transparent 100%); pointer-events: none; }
.page-hero-content { position: relative; z-index: 1; }

/* ── ─────────── FOOTER ─────────── ── */
.footer { background: var(--bg-stone); color: var(--text-stone); padding: clamp(60px,7vw,100px) 0 0; position: relative; overflow: hidden; }
.footer::before { content: ''; position: absolute; top: -200px; left: 50%; transform: translateX(-50%); width: 800px; height: 800px; background: var(--cyan); opacity: 0.025; border-radius: 50%; filter: blur(120px); pointer-events: none; }

.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 48px; padding-bottom: 56px; border-bottom: 1px solid var(--border-dark); }

.footer-brand-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand-logo img { width: 48px; height: 48px; border-radius: var(--r-sm); background: #fff; padding: 4px; }
.footer-brand-logo-text strong { display: block; font-size: 15px; font-weight: 900; letter-spacing: 0.08em; text-transform: uppercase; color: #fff; }
.footer-brand-logo-text span { display: block; font-size: 9px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--cyan); margin-top: 1px; }
.footer-brand-desc { font-size: 13.5px; color: var(--text-stone-muted); line-height: 1.65; max-width: 320px; margin-bottom: 20px; }

.footer-social { display: flex; gap: 8px; }
.footer-social-btn { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.5); display: flex; align-items: center; justify-content: center; font-size: 15px; transition: background 0.2s, color 0.2s; }
.footer-social-btn:hover { background: rgba(255,255,255,0.14); color: #fff; }
.footer-social-btn[data-network="facebook"]:hover { background: #1877F2; color: #fff; }
.footer-social-btn[data-network="instagram"]:hover { background: #E4405F; color: #fff; }
.footer-social-btn[data-network="tiktok"]:hover { background: #fff; color: #000; }
.footer-social-btn[data-network="youtube"]:hover { background: #FF0000; color: #fff; }

.footer-col-title { font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 18px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-link { font-size: 14px; color: var(--text-stone-muted); transition: color 0.15s; }
.footer-link:hover { color: var(--cyan); }

.footer-contact-row { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; color: var(--text-stone-muted); line-height: 1.5; margin-bottom: 12px; }
.footer-contact-icon { color: var(--cyan); flex-shrink: 0; font-size: 14px; margin-top: 2px; }
.footer-contact-row a { color: var(--text-stone-muted); transition: color 0.15s; }
.footer-contact-row a:hover { color: var(--cyan); }

.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding: 20px 0; font-size: 12px; color: rgba(255,255,255,0.28); }
.footer-legal { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-legal a { color: rgba(255,255,255,0.28); transition: color 0.15s; }
.footer-legal a:hover { color: rgba(255,255,255,0.6); }
.footer-made-with { font-size: 12px; color: rgba(255,255,255,0.2); }
.footer-made-with a { color: rgba(255,255,255,0.35); transition: color 0.15s; }
.footer-made-with a:hover { color: var(--cyan); }

/* ── ─────────── HOME ─────────── ── */

/* Intro section */
.home-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.home-intro-images { position: relative; height: 560px; }
.home-intro-img1 { position: absolute; top: 0; left: 0; width: 72%; border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-xl); aspect-ratio: 3/4; object-fit: cover; }
.home-intro-img2 { position: absolute; bottom: 0; right: 0; width: 62%; border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-xl); border: 4px solid var(--bg-white); aspect-ratio: 4/3; object-fit: cover; }
.home-intro-img1 img, .home-intro-img2 img { width: 100%; height: 100%; object-fit: cover; }
.home-intro-text .tag { margin-bottom: 12px; }
.home-intro-h2 { font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 900; line-height: 1.1; letter-spacing: -0.025em; color: var(--text); margin-bottom: 1.2rem; }
.home-intro-body { font-size: 1.05rem; color: var(--text-secondary); line-height: 1.75; margin-bottom: 1rem; }
.home-intro-link { display: inline-flex; align-items: center; gap: 6px; font-size: 15px; font-weight: 700; color: var(--cyan); margin-top: 1rem; transition: gap 0.2s; }
.home-intro-link:hover { gap: 10px; }

/* Activities */
.activity-card { border-radius: var(--r-xl); overflow: hidden; position: relative; aspect-ratio: 3/4; cursor: pointer; }
.activity-card-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.activity-card:hover .activity-card-img { transform: scale(1.06); }
.activity-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.3) 50%, transparent 100%); }
.activity-card-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 28px; }
.activity-card-tag { font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--cyan); margin-bottom: 6px; }
.activity-card-title { font-size: 1.4rem; font-weight: 900; color: #fff; letter-spacing: -0.01em; margin-bottom: 6px; }
.activity-card-desc { font-size: 13.5px; color: rgba(255,255,255,0.65); line-height: 1.5; }
.activity-card-arrow { position: absolute; top: 20px; right: 20px; width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.6); font-size: 14px; transition: background 0.2s, color 0.2s; }
.activity-card:hover .activity-card-arrow { background: var(--cyan); color: #fff; }

/* Events section */
.event-featured { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: stretch; }
.event-featured-img { border-radius: var(--r-xl); overflow: hidden; aspect-ratio: 16/10; position: relative; }
.event-featured-img img { width: 100%; height: 100%; object-fit: cover; }
.event-date-badge { position: absolute; top: 20px; left: 20px; background: var(--cyan); border-radius: var(--r); padding: 10px 16px; text-align: center; }
.event-date-day { display: block; font-size: 28px; font-weight: 900; color: #fff; line-height: 1; }
.event-date-month { display: block; font-size: 11px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.85); margin-top: 2px; }
.event-featured-info { display: flex; flex-direction: column; justify-content: center; }
.event-category { font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--cyan); margin-bottom: 12px; }
.event-title { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 900; letter-spacing: -0.02em; color: #fff; margin-bottom: 12px; }
.event-location { font-size: 14px; color: rgba(255,255,255,0.5); margin-bottom: 20px; display: flex; align-items: center; gap: 6px; }
.event-desc { font-size: 15px; color: rgba(255,255,255,0.68); line-height: 1.65; margin-bottom: 28px; }

/* CTA band */
.cta-section { background: var(--cyan); color: #fff; padding: clamp(64px, 8vw, 100px) 0; text-align: center; }
.cta-section h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 900; letter-spacing: -0.025em; margin-bottom: 1rem; }
.cta-section p { font-size: 1.05rem; opacity: 0.88; max-width: 560px; margin: 0 auto 2rem; line-height: 1.65; }

/* ── ─────────── EVENT CARD ─────────── ── */
.event-card { border-radius: var(--r-lg); overflow: hidden; background: var(--bg-card); border: 1px solid var(--border); box-shadow: var(--shadow); transition: box-shadow 0.2s, transform 0.2s; display: flex; flex-direction: column; }
.event-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.event-card-img { aspect-ratio: 16/9; overflow: hidden; position: relative; }
.event-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.event-card:hover .event-card-img img { transform: scale(1.04); }
.event-card-body { padding: 20px 22px 24px; flex: 1; display: flex; flex-direction: column; }
.event-card-cat { font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--cyan); margin-bottom: 8px; }
.event-card-title { font-size: 1.05rem; font-weight: 800; color: var(--text); margin-bottom: 8px; line-height: 1.3; }
.event-card-date { font-size: 12.5px; color: var(--text-muted); margin-bottom: 12px; display: flex; align-items: center; gap: 5px; }
.event-card-desc { font-size: 13.5px; color: var(--text-secondary); line-height: 1.6; flex: 1; margin-bottom: 16px; }
.event-card-link { font-size: 13.5px; font-weight: 700; color: var(--cyan); display: inline-flex; align-items: center; gap: 5px; transition: gap 0.15s; }
.event-card-link:hover { gap: 9px; }

/* ── ─────────── BLOG CARD ─────────── ── */
.blog-card { border-radius: var(--r-lg); overflow: hidden; background: var(--bg-card); border: 1px solid var(--border); box-shadow: var(--shadow-sm); transition: box-shadow 0.2s, transform 0.2s; display: flex; flex-direction: column; }
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.blog-card-img { aspect-ratio: 16/9; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 20px 22px 22px; flex: 1; display: flex; flex-direction: column; }
.blog-card-cat { font-size: 10px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--cyan); margin-bottom: 8px; }
.blog-card-title { font-size: 1rem; font-weight: 800; color: var(--text); margin-bottom: 8px; line-height: 1.35; }
.blog-card-date { font-size: 12px; color: var(--text-muted); }
.blog-card-desc { font-size: 13.5px; color: var(--text-secondary); line-height: 1.55; margin-top: 10px; flex: 1; }

/* ── ─────────── PARTNER CARD ─────────── ── */
.partner-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 28px; box-shadow: var(--shadow-sm); transition: box-shadow 0.2s, transform 0.2s; display: flex; flex-direction: column; gap: 14px; }
.partner-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.partner-card-logo { width: 64px; height: 64px; border-radius: var(--r); overflow: hidden; background: var(--bg); }
.partner-card-logo img { width: 100%; height: 100%; object-fit: contain; }
.partner-card-name { font-size: 1.1rem; font-weight: 800; color: var(--text); }
.partner-card-location { font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); }
.partner-card-desc { font-size: 14px; color: var(--text-secondary); line-height: 1.6; flex: 1; }
.partner-card-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.partner-tag { font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: var(--r-full); background: var(--cyan-soft); color: var(--cyan-dark); }
.partner-card-link { display: inline-flex; align-items: center; gap: 5px; font-size: 13.5px; font-weight: 700; color: var(--cyan); transition: gap 0.15s; align-self: flex-start; }
.partner-card-link:hover { gap: 9px; }

/* ── ─────────── CONTACT ─────────── ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: start; }
.contact-info { }
.contact-info h2 { font-size: 1.8rem; font-weight: 900; letter-spacing: -0.02em; margin-bottom: 28px; }
.contact-row { display: flex; align-items: flex-start; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--border); }
.contact-row:last-child { border-bottom: none; }
.contact-icon { width: 40px; height: 40px; border-radius: var(--r-sm); background: var(--cyan-soft); color: var(--cyan); display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
.contact-detail { font-size: 15px; color: var(--text); font-weight: 500; }
.contact-detail small { display: block; font-size: 12px; color: var(--text-muted); font-weight: 400; margin-bottom: 2px; }
.contact-map { margin-top: 24px; border-radius: var(--r-lg); overflow: hidden; height: 240px; }
.contact-map iframe { width: 100%; height: 100%; border: none; }

/* Contact Form */
.contact-form-wrap { }
.contact-form-wrap h2 { font-size: 1.8rem; font-weight: 900; letter-spacing: -0.02em; margin-bottom: 8px; }
.contact-form-wrap p { font-size: 15px; color: var(--text-muted); margin-bottom: 28px; }
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: 13px; font-weight: 600; color: var(--text-secondary); margin-bottom: 7px; letter-spacing: 0.02em; }
.form-input, .form-textarea, .form-select { width: 100%; padding: 12px 16px; border: 1.5px solid var(--border); border-radius: var(--r); font-size: 15px; color: var(--text); background: var(--bg-white); transition: border-color 0.15s, box-shadow 0.15s; outline: none; }
.form-input:focus, .form-textarea:focus, .form-select:focus { border-color: var(--cyan); box-shadow: 0 0 0 3px var(--cyan-soft); }
.form-textarea { min-height: 140px; resize: vertical; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ── ─────────── ADHESION ─────────── ── */
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.benefit-card { background: var(--bg-white); border-radius: var(--r-lg); padding: 28px 24px; border: 1px solid var(--border); text-align: center; }
.benefit-icon { font-size: 2.5rem; margin-bottom: 14px; }
.benefit-title { font-size: 1rem; font-weight: 800; color: var(--text); margin-bottom: 8px; }
.benefit-desc { font-size: 13.5px; color: var(--text-secondary); line-height: 1.6; }

/* ── ─────────── ABOUT ─────────── ── */
.about-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 48px; }
.about-teaser { background: var(--bg-stone); border-radius: var(--r-xl); overflow: hidden; position: relative; aspect-ratio: 16/9; cursor: pointer; display: flex; align-items: flex-end; }
.about-teaser-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.about-teaser-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.85), transparent); }
.about-teaser-content { position: relative; z-index: 1; padding: 24px; }
.about-teaser-title { font-size: 1.3rem; font-weight: 900; color: #fff; margin-bottom: 4px; }
.about-teaser-desc { font-size: 13.5px; color: rgba(255,255,255,0.6); }
.about-teaser-link { position: absolute; top: 20px; right: 20px; z-index: 2; }

/* Mission / Valeurs */
.valeurs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.valeur-card { background: var(--bg-white); border-radius: var(--r-lg); padding: 24px 22px; border: 1px solid var(--border); }
.valeur-emoji { font-size: 2rem; margin-bottom: 12px; }
.valeur-title { font-size: 1rem; font-weight: 800; color: var(--text); margin-bottom: 8px; }
.valeur-desc { font-size: 13.5px; color: var(--text-secondary); line-height: 1.6; }

/* Section header (standard) */
.section-header { margin-bottom: clamp(36px, 5vw, 60px); max-width: 680px; }
.section-header--center { text-align: center; margin-left: auto; margin-right: auto; }
.section-header h2 { margin-bottom: 14px; }
.section-header p { font-size: 1.05rem; color: var(--text-secondary); line-height: 1.7; }
.section-header--white h2, .section-header--white p { color: inherit; }

/* Dark section header */
.section-header--dark { color: #fff; }
.section-header--dark p { color: rgba(255,255,255,0.6); }

/* ── Activity detail ── */
.activity-detail-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: center; }
.activity-detail-img { border-radius: var(--r-2xl); overflow: hidden; aspect-ratio: 4/5; }
.activity-detail-img img { width: 100%; height: 100%; object-fit: cover; }
.schedule-table { width: 100%; margin-top: 24px; border-collapse: collapse; }
.schedule-table th { text-align: left; font-size: 11px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); padding: 10px 14px; border-bottom: 1px solid var(--border); }
.schedule-table td { padding: 12px 14px; font-size: 14px; color: var(--text-secondary); border-bottom: 1px solid var(--border-light); }
.schedule-table tr:hover td { background: var(--bg); }

/* ── Info chips ── */
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.chip { display: inline-flex; align-items: center; gap: 5px; font-size: 12px; font-weight: 600; padding: 5px 12px; border-radius: var(--r-full); background: var(--cyan-soft); color: var(--cyan-dark); }

/* ── Legal pages ── */
.legal-content { max-width: 760px; margin: 0 auto; }
.legal-content h2 { font-size: 1.4rem; font-weight: 800; margin-bottom: 12px; margin-top: 40px; }
.legal-content p, .legal-content li { font-size: 15px; color: var(--text-secondary); line-height: 1.75; margin-bottom: 12px; }
.legal-content ul { padding-left: 20px; list-style: disc; }
.legal-content a { color: var(--cyan); text-decoration: underline; }

/* ── Toast/merci ── */
.merci-wrap { min-height: 70vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 80px 20px; }
.merci-icon { font-size: 4rem; margin-bottom: 20px; }
.merci-title { font-size: 2.5rem; font-weight: 900; letter-spacing: -0.03em; margin-bottom: 12px; }
.merci-sub { font-size: 1.1rem; color: var(--text-secondary); margin-bottom: 32px; }

/* ── 404 ── */
.notfound-wrap { min-height: 70vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 80px 20px; }
.notfound-code { font-size: clamp(5rem, 15vw, 9rem); font-weight: 900; color: var(--cyan); line-height: 1; letter-spacing: -0.04em; margin-bottom: 8px; }
.notfound-title { font-size: 2rem; font-weight: 900; letter-spacing: -0.02em; margin-bottom: 12px; }
.notfound-sub { font-size: 1rem; color: var(--text-muted); margin-bottom: 32px; }

/* ── Animations ── */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .home-intro-grid { gap: 48px; }
  .contact-grid { gap: 40px; }
  .activity-detail-grid { gap: 48px; }
  .nav-links, .nav-dropdown, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
}

@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .home-intro-grid { grid-template-columns: 1fr; }
  .home-intro-images { height: 320px; }
  .event-featured { grid-template-columns: 1fr; }
  .about-cards { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .valeurs-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero-social { display: none; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
