/* ─── Design tokens ───────────────────────────────────────── */
:root {
  --bg:           #faf7f2;
  --bg-alt:       #f2e9dc;
  --bg-dark:      #1a2330;
  --text:         #1a1410;
  --muted:        #7a6a58;
  --accent:       #b8703a;
  --accent-dark:  #8f5528;
  --accent-light: #f5e6d0;
  --green:        #2a4455;
  --green-light:  #dce7ee;
  --gold:         #c4a060;
  --gold-light:   #f0e2c4;
  --border:       #e0d3be;
  --maxw:         1200px;
  --radius:       12px;
  --radius-lg:    20px;
  --transition:   0.28s ease;
  --shadow-sm:    0 2px 10px rgba(26, 20, 16, 0.06);
  --shadow-md:    0 8px 32px rgba(26, 20, 16, 0.10);
  --shadow-lg:    0 20px 60px rgba(26, 20, 16, 0.15);
}

/* ─── Reset & base ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box }
html { scroll-behavior: smooth }

body {
  font-family: 'Inter', system-ui, Arial, sans-serif;
  margin: 0;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
}

h1, h2, h3 {
  font-family: 'Cormorant Garamond', 'Playfair Display', serif;
  line-height: 1.12;
  letter-spacing: -0.01em;
}
h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.25;
}

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

/* ─── Accessibility ───────────────────────────────────────── */
.skip {
  position: absolute; left: -999px; top: auto;
  width: 1px; height: 1px; overflow: hidden;
}
.skip:focus {
  left: 8px; top: 8px; width: auto; height: auto;
  background: #fff; padding: 8px 14px; z-index: 9999;
  border: 1px solid var(--border); border-radius: 4px;
}
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px }

/* ─── Scroll animations ───────────────────────────────────── */
[data-fade] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}
[data-fade].visible {
  opacity: 1;
  transform: translateY(0);
}
[data-fade="1"] { transition-delay: 0.10s }
[data-fade="2"] { transition-delay: 0.20s }
[data-fade="3"] { transition-delay: 0.30s }
[data-fade="4"] { transition-delay: 0.40s }

/* ─── Layout ──────────────────────────────────────────────── */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 28px }

/* ─── Header ──────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 247, 242, 0.95);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s ease;
}
.site-header.scrolled { box-shadow: 0 4px 24px rgba(26,20,16,0.07) }
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 12px; padding-bottom: 12px;
}
.logo-link { display: flex; align-items: center }

.nav { display: flex; gap: 36px; align-items: center }
.nav a {
  color: var(--muted); text-decoration: none;
  font-size: 11px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color var(--transition);
  position: relative;
}
.nav a::after {
  content: ''; position: absolute; left: 0; bottom: -4px;
  width: 0; height: 1px; background: var(--accent);
  transition: width var(--transition);
}
.nav a:hover { color: var(--text) }
.nav a:hover::after { width: 100% }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: transparent; border: 0; cursor: pointer; padding: 4px;
}
.nav-toggle span {
  display: block; width: 22px; height: 1.5px;
  background: var(--text); border-radius: 2px;
  transition: all var(--transition);
}

/* ─── Hero ────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex; align-items: center;
  background: url('assets/hero.jpg') 40% 20% / cover no-repeat;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    110deg,
    rgba(16, 10, 4, 0.75) 0%,
    rgba(16, 10, 4, 0.42) 52%,
    rgba(16, 10, 4, 0.06) 100%
  );
}
.hero-content {
  position: relative; z-index: 1;
  color: #fff; padding: 100px 28px 120px;
  max-width: 680px;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 10px; font-weight: 600; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--gold);
  margin: 0 0 22px;
}
.hero-eyebrow::before {
  content: '';
  display: block; width: 36px; height: 1px;
  background: var(--gold); flex-shrink: 0;
}
.hero-content h2 {
  font-size: clamp(44px, 6.5vw, 80px);
  font-weight: 400;
  margin: 0 0 22px; color: #fff;
  line-height: 1.08;
}
.hero-subtitle {
  font-size: 16px; color: rgba(255,255,255,0.80);
  margin: 0 0 44px; max-width: 420px;
  line-height: 1.80; font-weight: 300;
}
.hero-scroll {
  position: absolute; bottom: 36px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.40); font-size: 9px; letter-spacing: 0.18em;
  text-transform: uppercase; cursor: default;
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: translateX(-50%) translateY(0) }
  50%       { opacity: 0.8; transform: translateX(-50%) translateY(7px) }
}

/* ─── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--accent); color: #fff;
  padding: 14px 32px; border-radius: 2px;
  text-decoration: none; font-weight: 600; font-size: 11px;
  letter-spacing: 0.10em; text-transform: uppercase;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(184, 112, 58, 0.32);
}
.btn svg { transition: transform var(--transition) }
.btn:hover svg { transform: translateX(4px) }
.btn-hero { padding: 17px 42px; font-size: 12px }
.btn-outline {
  background: transparent; color: var(--accent);
  border: 1px solid currentColor;
}
.btn-outline:hover { background: var(--accent); color: #fff }

/* ─── Overline ────────────────────────────────────────────── */
.overline {
  display: inline-block;
  font-size: 10px; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 14px;
}

/* ─── Section headers ─────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 56px }
.section-header h3 {
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 400;
  margin: 0 0 12px; color: var(--text);
}
.section-sub {
  color: var(--muted); max-width: 460px;
  margin: 0 auto; font-size: 15px;
  font-weight: 300; line-height: 1.75;
}

/* ─── Collections ─────────────────────────────────────────── */
.collections { padding: 96px 0; background: var(--bg) }

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.card {
  border-radius: var(--radius-lg);
  background: #fff; overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-7px);
}
.card-img-wrap { overflow: hidden; background: var(--bg-alt) }
.card-img-wrap img {
  width: 100%; height: 300px; object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.card:hover .card-img-wrap img { transform: scale(1.06) }
.card-body { padding: 26px 24px 24px }
.card-body h4 {
  margin: 0 0 8px; font-size: 19px; color: var(--text);
  font-weight: 400;
}
.card-body p { margin: 0 0 18px; color: var(--muted); font-size: 14px; line-height: 1.65 }
.card-link {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.10em;
  text-transform: uppercase; color: var(--accent);
  text-decoration: none;
  transition: gap var(--transition);
}
.card-link:hover { gap: 12px }

/* ─── Matières ────────────────────────────────────────────── */
.matieres {
  background: var(--bg-alt);
  overflow: hidden;
}
.matieres-inner {
  display: grid;
  grid-template-columns: 380px 1fr;
  min-height: 480px;
}
.matieres-left {
  background: var(--text);
  padding: 72px 52px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative;
  overflow: hidden;
}
.matieres-left::after {
  content: 'M';
  position: absolute;
  font-family: 'Cormorant Garamond', serif;
  font-size: 420px; font-weight: 700; line-height: 1;
  color: rgba(255,255,255,0.03);
  right: -80px; bottom: -80px;
  pointer-events: none; user-select: none;
}
.matieres-title {
  font-size: clamp(48px, 6vw, 78px);
  font-weight: 400;
  color: #fff;
  margin: 0; line-height: 1.05;
}
.matieres-title em {
  font-style: italic;
  color: var(--gold);
}

.matieres-right {
  padding: 72px 64px;
  display: flex; flex-direction: column; justify-content: center;
  gap: 0;
}
.matiere-item {
  display: flex; gap: 28px; align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.matiere-item:first-child { padding-top: 0 }
.matiere-item:last-child { border-bottom: 0; padding-bottom: 0 }
.matiere-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px; font-weight: 400;
  color: var(--gold); opacity: 0.6;
  line-height: 1; flex-shrink: 0;
  width: 42px;
}
.matiere-content h4 {
  font-size: 15px; font-weight: 600;
  color: var(--text); margin: 0 0 8px;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.matiere-content p {
  font-size: 14px; color: var(--muted);
  margin: 0; line-height: 1.80; font-weight: 300;
}

@media (max-width: 960px) {
  .matieres-inner { grid-template-columns: 1fr }
  .matieres-left { padding: 52px 28px; min-height: 260px }
  .matieres-right { padding: 48px 28px }
}

/* ─── Stats strip ─────────────────────────────────────────── */
.stats {
  padding: 0;
  background: var(--text);
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.stat-item {
  text-align: center;
  padding: 48px 20px;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.stat-item:last-child { border-right: 0 }
.stat-number {
  font-family: 'Cormorant Garamond', 'Playfair Display', serif;
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 400;
  color: var(--gold);
  line-height: 1; margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 10px; letter-spacing: 0.20em; text-transform: uppercase;
  color: rgba(255,255,255,0.40);
}

/* ─── Savoir-faire ────────────────────────────────────────── */
.about {
  padding: 96px 0;
  background: var(--bg-alt);
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-left h3 {
  font-size: clamp(32px, 4.5vw, 54px);
  font-weight: 400;
  margin: 0 0 24px; color: var(--text);
  line-height: 1.12;
}
.about-left p {
  color: var(--muted); margin: 0 0 16px;
  font-size: 15px; line-height: 1.88; font-weight: 300;
}
.about-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  border-radius: var(--radius);
  overflow: hidden;
}
.value-card {
  background: #fff;
  padding: 30px 26px;
}
.value-card-icon {
  font-size: 20px; margin-bottom: 14px; display: block;
  color: var(--gold);
}
.value-card h5 {
  font-size: 13px; font-weight: 600; color: var(--text);
  margin: 0 0 8px; letter-spacing: 0.04em; text-transform: uppercase;
}
.value-card p {
  font-size: 13px; color: var(--muted); margin: 0; line-height: 1.6;
  font-weight: 300;
}

/* ─── Fondatrice ──────────────────────────────────────────── */
.fondatrice { padding: 96px 0; background: var(--bg) }
.fondatrice-inner {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 72px; align-items: start;
}
.fondatrice-img-wrap { position: relative }
.fondatrice-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.fondatrice-badge {
  position: absolute;
  bottom: -18px; right: -18px;
  background: var(--accent); color: #fff;
  width: 90px; height: 90px;
  border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  font-size: 9px; letter-spacing: 0.10em; text-transform: uppercase;
  line-height: 1.5; font-weight: 600;
  box-shadow: 0 6px 20px rgba(184,112,58,0.45);
}
.fondatrice-text h3 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  margin: 0 0 28px; color: var(--text);
  line-height: 1.1;
}
.fondatrice-text p {
  color: var(--muted); margin: 0 0 18px;
  font-size: 15px; line-height: 1.88; font-weight: 300;
}
.fondatrice-pull-quote {
  margin: 32px 0 0;
  padding: 24px 28px;
  border-left: 2px solid var(--gold);
  background: var(--accent-light);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.fondatrice-pull-quote p {
  font-family: 'Cormorant Garamond', 'Playfair Display', serif;
  font-size: 20px; font-style: italic;
  color: var(--text); margin: 0; line-height: 1.5;
}

/* ─── Instagram ───────────────────────────────────────────── */
.instagram {
  padding: 96px 0 80px;
  background: #14100c;
  overflow: hidden;
}
.instagram .section-header h3 { color: #fff }
.instagram .section-header .overline { color: var(--gold); opacity: 0.85 }
.instagram .section-sub { color: rgba(255,255,255,0.38) }
.instagram .container { position: relative; z-index: 1 }

.insta-handle {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 13px; color: rgba(255,255,255,0.38);
  letter-spacing: 0.03em; margin-top: 4px;
}

.carousel-wrapper {
  position: relative;
  width: 100%;
  padding: 0 60px;
}
.carousel-track-outer {
  overflow: hidden;
  width: 100%;
}
.insta-carousel {
  display: flex;
  gap: 14px;
  transition: transform 0.52s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

/* 4 cards desktop: (100vw - 120px wrapper padding - 3×14px gap) / 4 */
.insta-card {
  flex: 0 0 calc((100vw - 162px) / 4);
  position: relative;
  display: block;
  overflow: hidden;
  text-decoration: none;
  border-radius: 16px;
  background: rgba(255,255,255,0.05);
}
.insta-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.insta-card:hover img { transform: scale(1.05) }

/* Hover overlay */
.insta-overlay {
  position: absolute; inset: 0;
  background: rgba(14, 8, 4, 0);
  display: flex; align-items: center; justify-content: center;
  border-radius: inherit;
  transition: background 0.35s ease;
}
.insta-overlay-icon {
  color: #fff; opacity: 0;
  transform: scale(0.75);
  transition: opacity 0.32s ease, transform 0.32s ease;
}
.insta-card:hover .insta-overlay { background: rgba(14, 8, 4, 0.50) }
.insta-card:hover .insta-overlay-icon { opacity: 1; transform: scale(1) }

/* Caption bottom slide-up */
.insta-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 36px 16px 16px;
  background: linear-gradient(to top, rgba(14,8,4,0.92) 0%, transparent 100%);
  color: rgba(255,255,255,0.88);
  font-size: 12px; line-height: 1.55;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.32s ease, transform 0.32s ease;
  border-radius: 0 0 16px 16px;
}
.insta-card:hover .insta-caption { opacity: 1; transform: translateY(0) }

/* Prev / next buttons */
.carousel-btn {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  z-index: 10;
  width: 42px; height: 42px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 50%;
  color: rgba(255,255,255,0.80);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
  flex-shrink: 0;
}
.carousel-prev { left: 10px }
.carousel-next { right: 10px }
.carousel-btn:hover:not(:disabled) {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.32);
  color: #fff;
}
.carousel-btn:disabled { opacity: 0.15; cursor: default }

/* Pagination dots */
.carousel-dots {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; margin-top: 28px;
}
.carousel-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.20);
  border: 0; cursor: pointer; padding: 0;
  transition: background var(--transition), transform var(--transition);
  flex-shrink: 0;
}
.carousel-dot.active {
  background: var(--gold);
  transform: scale(1.4);
}

.insta-follow { text-align: center; margin: 32px 0 0 }
.insta-follow .btn-outline {
  border-color: rgba(255,255,255,0.22);
  color: rgba(255,255,255,0.70);
}
.insta-follow .btn-outline:hover {
  background: rgba(255,255,255,0.10);
  color: #fff; border-color: rgba(255,255,255,0.42);
  box-shadow: none; transform: none;
}

/* 2 cards on tablet */
@media (max-width: 1024px) {
  .insta-card { flex: 0 0 calc((100vw - 134px) / 2) }
}
/* 1 card on mobile */
@media (max-width: 640px) {
  .carousel-wrapper { padding: 0 48px }
  .insta-card { flex: 0 0 calc(100vw - 96px) }
  .carousel-btn { width: 36px; height: 36px }
}

/* ─── Testimonials ────────────────────────────────────────── */
.testimonials { padding: 96px 0; background: var(--bg-alt) }
.testimonials-grid { align-items: start }
.testimonial {
  border-radius: var(--radius-lg);
  padding: 36px 30px; background: #fff; margin: 0;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.testimonial:hover { box-shadow: var(--shadow-md); transform: translateY(-4px) }
.testimonial-stars {
  display: flex; gap: 3px; margin-bottom: 18px;
  color: var(--gold); font-size: 14px;
}
.testimonial blockquote {
  font-style: italic; color: var(--text);
  font-family: 'Cormorant Garamond', 'Playfair Display', serif;
  font-size: 18px; line-height: 1.70;
  margin: 0 0 26px;
}
.testimonial figcaption {
  display: flex; align-items: center; gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.testimonial figcaption img {
  width: 48px; height: 48px; object-fit: cover;
  border-radius: 50%; flex-shrink: 0;
  border: 2px solid var(--accent-light);
}
.testimonial figcaption strong { display: block; font-size: 14px; color: var(--text); font-weight: 600 }
.testimonial figcaption span { font-size: 12px; color: var(--muted) }
.testimonial figcaption span a {
  color: var(--accent); text-decoration: none; font-weight: 500;
  transition: color var(--transition);
}
.testimonial figcaption span a:hover { color: var(--accent-dark) }

/* ─── Avatar logo partenaire ──────────────────────────────── */
.partner-avatar {
  width: 48px; height: 48px;
  object-fit: contain;
  border-radius: 50%;
  border: 2px solid var(--accent-light);
  background: #fff;
  padding: 4px;
  flex-shrink: 0;
}

/* ─── Contact ─────────────────────────────────────────────── */
.contact {
  padding: 112px 0;
  background: var(--bg);
  overflow: hidden;
  position: relative;
}
.contact::before {
  content: 'DUELLES';
  position: absolute;
  font-family: 'Cormorant Garamond', 'Playfair Display', serif;
  font-size: clamp(80px, 18vw, 220px);
  font-weight: 700;
  color: rgba(26, 20, 16, 0.03);
  letter-spacing: 0.08em;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}
.contact-inner { text-align: center; position: relative; z-index: 1 }
.contact h3 {
  font-size: clamp(38px, 5.5vw, 68px);
  font-weight: 400;
  color: var(--text);
  margin: 0 0 18px;
  line-height: 1.08;
}
.contact p { color: var(--muted); margin: 0 0 24px; font-size: 15px; font-weight: 300 }
.contact-email {
  display: inline-block;
  font-family: 'Cormorant Garamond', 'Playfair Display', serif;
  font-size: clamp(22px, 3.5vw, 36px);
  font-weight: 400; color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid var(--accent-light);
  padding-bottom: 5px; margin-bottom: 36px;
  transition: border-color var(--transition), color var(--transition);
  letter-spacing: 0.01em;
}
.contact-email:hover { color: var(--text); border-color: var(--text) }
.contact-social a {
  color: var(--muted); text-decoration: none; font-size: 13px;
  letter-spacing: 0.06em;
  transition: color var(--transition);
}
.contact-social a:hover { color: var(--accent) }

/* ─── Footer ──────────────────────────────────────────────── */
.site-footer {
  background: var(--text);
  padding: 60px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 28px;
}
.footer-brand-desc {
  color: rgba(255,255,255,0.38);
  font-size: 13px; max-width: 240px;
  margin: 18px 0 0; line-height: 1.75; font-weight: 300;
}
.footer-col-title {
  font-size: 10px; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(255,255,255,0.28);
  margin: 0 0 20px; display: block;
}
.footer-col-links {
  display: flex; flex-direction: column; gap: 13px;
  list-style: none; padding: 0; margin: 0;
}
.footer-col-links a {
  color: rgba(255,255,255,0.55); text-decoration: none; font-size: 14px;
  transition: color var(--transition);
  font-weight: 300;
}
.footer-col-links a:hover { color: var(--gold) }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom small { color: rgba(255,255,255,0.22); font-size: 12px }
.footer-nav { display: flex; gap: 22px }
.footer-nav a {
  color: rgba(255,255,255,0.32); text-decoration: none; font-size: 12px;
  transition: color var(--transition);
}
.footer-nav a:hover { color: rgba(255,255,255,0.65) }

/* ─── Responsive ──────────────────────────────────────────── */
@media (max-width: 960px) {
  .about-inner { grid-template-columns: 1fr; gap: 48px }
  .about-right { max-width: 500px }
  .stats-inner { grid-template-columns: 1fr }
  .stat-item { border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.07) }
  .stat-item:last-child { border-bottom: 0 }
  .footer-grid { grid-template-columns: 1fr 1fr }
}

@media (max-width: 860px) {
  .fondatrice-inner { grid-template-columns: 1fr }
  .fondatrice-img-wrap { max-width: 280px }
  .fondatrice-badge { bottom: -14px; right: -14px; width: 78px; height: 78px }
}

@media (max-width: 800px) {
  .nav {
    display: none; flex-direction: column; align-items: flex-start;
    background: var(--bg); padding: 20px;
    border-radius: var(--radius);
    position: absolute; right: 16px; top: 72px;
    box-shadow: 0 12px 36px rgba(0,0,0,0.12);
    min-width: 200px; z-index: 99;
    border: 1px solid var(--border);
  }
  .nav.open { display: flex }
  .nav-toggle { display: flex }
  .hero { min-height: 80vh; background-position: 30% 20% }
  .hero-content { padding: 64px 28px 100px }
  .hero-scroll { display: none }
  .footer-grid { grid-template-columns: 1fr }
  .footer-bottom { flex-direction: column; align-items: flex-start }
}

@media (max-width: 640px) {
  .grid { grid-template-columns: 1fr }
  .about-right { grid-template-columns: 1fr }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important }
  [data-fade] { opacity: 1; transform: none }
}
