/* ============================================
   1. RESET + VARIABLES
============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
  /* DARK theme (default) */
  --bg: #0a0a0a;
  --bg-2: #131313;
  --bg-3: #1a1a1a;
  --surface: rgba(255, 255, 255, 0.03);
  --surface-hover: rgba(255, 255, 255, 0.06);
  --line: rgba(255, 255, 255, 0.08);
  --line-2: rgba(255, 255, 255, 0.14);
  --text: #f5f5f3;
  --text-2: #c8c8c3;
  --text-3: #7a7a75;

  /* Brand — règle UI 10% : jaune réservé aux CTA + accents critiques */
  --yellow: #f5b800;
  --yellow-bright: #ffd233;
  --gold: #1a1a18;          /* anciennement gold — désormais charbon noir */
  --charcoal: #1a1a18;       /* nouvel accent secondaire neutre */
  --charcoal-soft: #3a3a36;
  --accent-glow: rgba(245, 184, 0, 0.12);

  --radius: 18px;
  --radius-sm: 10px;
  --radius-lg: 28px;

  --container: 1340px;
  --gutter: clamp(20px, 4vw, 56px);

  --t-fast: 0.25s cubic-bezier(0.22, 1, 0.36, 1);
  --t-med: 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  --t-slow: 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

/* LIGHT theme override */
[data-theme="light"] {
  --bg: #faf9f6;
  --bg-2: #f1efe9;
  --bg-3: #e8e6df;
  --surface: rgba(0, 0, 0, 0.025);
  --surface-hover: rgba(0, 0, 0, 0.05);
  --line: rgba(10, 10, 10, 0.09);
  --line-2: rgba(10, 10, 10, 0.16);
  --text: #0e0e0c;
  --text-2: #4a4a45;
  --text-3: #888880;
  --gold: #0e0e0c;          /* charcoal pur sur fond clair */
  --charcoal: #0e0e0c;
  --charcoal-soft: #4a4a45;
}

html, body {
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  font-feature-settings: "ss01", "cv11";
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
img, video, svg { max-width: 100%; display: block; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

::selection { background: var(--yellow); color: #000; }

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: #050505; }
::-webkit-scrollbar-thumb { background: #2a2a2a; border-radius: 6px; }
::-webkit-scrollbar-thumb:hover { background: var(--yellow); }

/* ============================================
   2. SECTION THEMING
============================================ */
.theme-light {
  background: var(--bg);
  color: var(--text);
}
section[data-theme="light"] {
  background: #faf9f6;
  color: #0e0e0c;
}
section[data-theme="light"] .lead { color: #4a4a45; }

/* ============================================
   3. TYPO HELPERS
============================================ */
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--text-3);
  margin-bottom: 28px;
}
.eyebrow::before {
  content: ""; width: 28px; height: 1px;
  background: currentColor; opacity: 0.5;
}
section[data-theme="light"] .eyebrow { color: #6a6a65; }

h1, h2, h3, h4 {
  font-family: "Fraunces", serif;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.h-display {
  font-size: clamp(48px, 8.4vw, 132px);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.h-section {
  font-size: clamp(38px, 5.2vw, 68px);
  font-weight: 300;
  line-height: 1;
}

/* Italic accent dans les titres — finesse plutôt que couleur agressive */
em.gold {
  font-style: italic;
  font-weight: 300;
  color: inherit;
  position: relative;
  display: inline-block;
}
em.gold::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: 0.04em;
  height: 0.08em;
  background: var(--yellow);
  opacity: 0.55;
  border-radius: 2px;
}
section[data-theme="light"] em.gold::after { opacity: 0.75; }

.lead {
  font-size: clamp(17px, 1.4vw, 20px);
  color: var(--text-2);
  max-width: 60ch;
  line-height: 1.65;
}

/* ============================================
   4. LAYOUT
============================================ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

section {
  position: relative;
  padding: clamp(80px, 11vw, 160px) 0;
}

/* ============================================
   5. CURSOR — classique (custom retiré)
============================================ */
/* Le curseur custom a été retiré, on utilise le pointeur système */

/* ============================================
   6. LOADER
============================================ */
.loader {
  position: fixed; inset: 0;
  background: var(--bg);
  z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
}
.loader-logo {
  font-family: "Fraunces", serif;
  font-size: 80px;
  font-weight: 300;
  letter-spacing: -0.04em;
  overflow: hidden;
  height: 1em;
  display: flex;
}
.loader-logo span {
  display: inline-block;
  transform: translateY(100%);
  animation: loader-up 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.loader-logo span:nth-child(1) { animation-delay: 0.1s; }
.loader-logo span:nth-child(2) { animation-delay: 0.2s; }
.loader-logo span:nth-child(3) { animation-delay: 0.3s; }
.loader-bar {
  margin-top: 32px;
  width: 240px; height: 1px;
  background: rgba(255,255,255,0.1);
  overflow: hidden;
}
.loader-bar::after {
  content: ""; display: block; height: 100%; width: 100%;
  background: var(--yellow);
  transform: translateX(-100%);
  animation: loader-bar 1.6s cubic-bezier(0.65, 0, 0.35, 1) 0.4s forwards;
}
.loader.done {
  animation: loader-out 0.8s cubic-bezier(0.65, 0, 0.35, 1) 1.8s forwards;
  pointer-events: none;
}
@keyframes loader-up { to { transform: translateY(0); } }
@keyframes loader-bar { to { transform: translateX(0); } }
@keyframes loader-out { to { opacity: 0; visibility: hidden; transform: translateY(-100%); } }

/* ============================================
   7. HEADER + MEGA MENU
============================================ */
.header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background var(--t-med), backdrop-filter var(--t-med), padding var(--t-med);
}
.header.scrolled {
  background: rgba(10, 10, 10, 0.78);
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 12px 0;
}
.header.light-mode {
  background: rgba(250, 249, 246, 0.85);
  backdrop-filter: blur(22px) saturate(140%);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  color: #0e0e0c;
}
.header.light-mode .nav { background: rgba(0,0,0,0.03); border-color: rgba(0,0,0,0.08); }
.header.light-mode .nav a,
.header.light-mode .nav button.nav-link { color: #4a4a45; }
.header.light-mode .nav a:hover,
.header.light-mode .nav button.nav-link:hover { color: #0e0e0c; background: rgba(0,0,0,0.05); }
.header.light-mode .btn-ghost { border-color: rgba(0,0,0,0.18); color: #0e0e0c; }
.header.light-mode .btn-ghost:hover { background: rgba(0,0,0,0.05); }

.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 28px;
}

.logo {
  display: flex; align-items: center; gap: 12px;
  font-family: "Fraunces", serif;
  font-weight: 400;
  font-size: 28px;
  letter-spacing: -0.03em;
}
.logo-mark {
  height: 36px;
  width: auto;
  display: block;
  color: var(--text); /* hérite — blanc en dark, charbon en light */
  transition: color var(--t-fast);
}
.header.light-mode .logo-mark { color: #0e0e0c; }

.nav {
  display: flex; align-items: center; gap: 2px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 100px;
  padding: 6px;
  position: relative;
}
.nav > .nav-item { position: relative; }
.nav a, .nav button.nav-link {
  font-size: 14px;
  font-weight: 500;
  padding: 11px 18px;
  border-radius: 100px;
  transition: background var(--t-fast), color var(--t-fast);
  color: rgba(255,255,255,0.78);
  display: inline-flex; align-items: center; gap: 6px;
  white-space: nowrap;
}
.nav a:hover, .nav button.nav-link:hover {
  background: rgba(255,255,255,0.06); color: #fff;
}
.nav a.active { background: var(--yellow); color: #000; }

.nav-caret {
  width: 10px; height: 10px;
  transition: transform var(--t-fast);
}
.nav-item.open .nav-caret { transform: rotate(180deg); }

/* MEGA MENU panel */
.megamenu {
  position: fixed;
  top: 80px; left: 50%;
  transform: translateX(-50%) translateY(-10px);
  width: min(1100px, 92vw);
  background: var(--bg);
  border: 1px solid var(--line-2);
  border-radius: 22px;
  padding: 36px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  opacity: 0; visibility: hidden;
  pointer-events: none;
  transition: all var(--t-med);
  z-index: 110;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.megamenu.show {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.header.light-mode + .megamenu, .megamenu.light {
  background: #fff;
  border-color: rgba(0,0,0,0.1);
  box-shadow: 0 30px 80px rgba(0,0,0,0.18);
}
.megamenu-col h6 {
  margin-bottom: 16px;
  font-weight: 400;
}
/* Titre de catégorie cliquable vers la page parent (avec flèche discrète) */
.megamenu-cat-link {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.55);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color var(--t-fast), gap var(--t-fast);
}
.megamenu-cat-link:hover {
  color: var(--yellow);
  gap: 10px;
}
.megamenu-cat-icon { width: 16px; height: 16px; flex-shrink: 0; }
.megamenu-cat-arrow {
  width: 9px; height: 9px;
  flex-shrink: 0;
  opacity: 0.55;
  transition: opacity var(--t-fast), transform var(--t-fast);
}
.megamenu-cat-link:hover .megamenu-cat-arrow {
  opacity: 1;
  transform: translateX(2px);
}
.megamenu.light .megamenu-cat-link { color: #6a6a65; }
.megamenu.light .megamenu-cat-link:hover { color: #0e0e0c; }
.megamenu-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.megamenu-col a {
  font-size: 14px;
  color: var(--text-2);
  transition: color var(--t-fast), padding-left var(--t-fast);
  display: inline-flex; align-items: center;
}
.megamenu-col a:hover { color: #fff; padding-left: 4px; }
.megamenu.light .megamenu-col a { color: #4a4a45; }
.megamenu.light .megamenu-col a:hover { color: #0e0e0c; }

.header-cta {
  display: flex; gap: 12px; align-items: center;
}

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 14.5px; font-weight: 600;
  padding: 14px 22px;
  border-radius: 100px;
  transition: all var(--t-fast);
  white-space: nowrap;
  cursor: pointer;
  letter-spacing: 0;
}
.btn-primary {
  background: var(--yellow);
  color: #000;
}
.btn-primary:hover {
  background: var(--yellow-bright);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -10px var(--accent-glow);
}
.btn-ghost {
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
}
.btn-ghost:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.4); }
section[data-theme="light"] .btn-ghost { border-color: rgba(0,0,0,0.18); color: #0e0e0c; }
section[data-theme="light"] .btn-ghost:hover { background: rgba(0,0,0,0.05); border-color: rgba(0,0,0,0.4); }

.btn-icon {
  width: 14px; height: 14px;
  transition: transform var(--t-fast);
}
.btn:hover .btn-icon { transform: translateX(4px); }

.btn-lg { padding: 18px 28px; font-size: 15px; }

.menu-burger { display: none; }

@media (max-width: 1100px) {
  .nav, .megamenu { display: none; }
  .header-cta .btn-ghost { display: none; }
  .menu-burger {
    display: flex; flex-direction: column; gap: 5px;
    width: 46px; height: 46px;
    align-items: center; justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.18);
  }
  .menu-burger span {
    width: 18px; height: 1.5px; background: #fff;
  }
  .header.light-mode .menu-burger { border-color: rgba(0,0,0,0.18); }
  .header.light-mode .menu-burger span { background: #0e0e0c; }
}

/* ============================================
   8. HERO
============================================ */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 130px;
  padding-bottom: 80px;
  overflow: hidden;
  color: #fff;
}

.hero-bg {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.55;
  filter: contrast(1.05) brightness(0.7);
}
.hero-bg::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(245, 184, 0, 0.10) 0%, transparent 55%),
    radial-gradient(ellipse at 75% 85%, rgba(245, 184, 0, 0.06) 0%, transparent 55%);
  z-index: 2;
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,0.6) 0%, rgba(10,10,10,0.4) 50%, var(--bg) 100%);
  z-index: 3;
}

.hero-grid-overlay {
  position: absolute; inset: 0; z-index: 1;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.hero-inner { position: relative; z-index: 5; width: 100%; }

.hero-meta {
  display: flex; align-items: center; gap: 16px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.hero-meta-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 0 rgba(245,184,0,0.6);
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(245,184,0,0.6); }
  100% { box-shadow: 0 0 0 14px rgba(245,184,0,0); }
}

.hero-title { margin-bottom: 40px; max-width: 14ch; }
.hero-title .word { display: inline-block; overflow: hidden; vertical-align: top; }
.hero-title .word > span {
  display: inline-block;
  transform: translateY(110%);
  animation: word-up 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
@keyframes word-up { to { transform: translateY(0); } }

.hero-bottom {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: end;
  margin-top: 80px;
}
@media (max-width: 900px) {
  .hero-bottom { grid-template-columns: 1fr; gap: 32px; margin-top: 48px; }
}

.hero-cta-group { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding: 28px 32px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  backdrop-filter: blur(14px);
}
.hero-stat-num {
  font-family: "Fraunces", serif;
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #fff;
  display: block;
}
.hero-stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 8px;
}

.scroll-indicator {
  position: absolute;
  bottom: 30px; left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.scroll-indicator-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  position: relative;
  overflow: hidden;
}
.scroll-indicator-line::after {
  content: ""; position: absolute;
  width: 100%; height: 30%;
  background: var(--yellow);
  animation: scroll-down 2s ease-in-out infinite;
}
@keyframes scroll-down { 0% { top: -30%; } 100% { top: 100%; } }

/* ============================================
   9. MARQUEE
============================================ */
.marquee {
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 28px 0;
  overflow: hidden;
  background: #0e0e0e;
  color: #f5f5f3;
}
.marquee-track {
  display: flex; gap: 60px;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
}
.marquee-item {
  display: inline-flex; align-items: center; gap: 18px;
  font-family: "Fraunces", serif;
  font-size: 30px; font-weight: 300; font-style: italic;
  color: rgba(255,255,255,0.85);
}
.marquee-item::after {
  content: "✦"; color: rgba(255,255,255,0.25); font-style: normal; font-size: 14px;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================
   10. SECTION HEADERS
============================================ */
.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 80px;
}
@media (max-width: 900px) {
  .section-head { grid-template-columns: 1fr; gap: 32px; margin-bottom: 50px; }
}

/* ============================================
   11. PRODUITS GRID (LIGHT SECTION)
============================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 1024px) { .products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .products-grid { grid-template-columns: 1fr; } }

.product-card {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(10,10,10,0.07);
  box-shadow: 0 2px 16px -8px rgba(0,0,0,0.06);
  transition: transform var(--t-med), box-shadow var(--t-med), border-color var(--t-med);
  cursor: pointer;
  isolation: isolate;
  display: flex;
  flex-direction: column;
}
/* Trait jaune subtil en bas qui s'étend au hover (accent sympa) */
.product-card::after {
  content: "";
  position: absolute;
  left: 28px; right: 28px; bottom: 0;
  height: 2px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 4;
}
.product-card:hover {
  border-color: rgba(10,10,10,0.18);
  transform: translateY(-6px);
  box-shadow: 0 24px 50px -20px rgba(0,0,0,0.18);
}
.product-card:hover::after { transform: scaleX(1); }

.product-card-bg {
  position: relative;
  width: 100%;
  height: 62%;
  overflow: hidden;
  background: linear-gradient(180deg, #f5f3ec 0%, #ebe7dc 100%);
  border-bottom: 1px solid rgba(10,10,10,0.06);
  transition: background var(--t-med);
}
.product-card-bg svg,
.product-card-bg img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}
.product-card:hover .product-card-bg svg,
.product-card:hover .product-card-bg img { transform: scale(1.04); }

.product-card-content {
  flex: 1;
  padding: 24px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.product-card-tag {
  display: inline-block;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #8a8a82;
  font-weight: 600;
}
.product-card-tag b {
  color: var(--yellow);
  font-weight: 700;
}
.product-card-title {
  font-family: "Fraunces", serif;
  font-size: 26px;
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: #0e0e0c;
  margin-top: 2px;
}
.product-card-list {
  font-size: 12px;
  list-style: none;
  display: flex; gap: 6px; flex-wrap: wrap;
  margin-top: 4px;
}
.product-card-list li {
  padding: 5px 11px;
  background: rgba(10,10,10,0.04);
  border: 1px solid rgba(10,10,10,0.08);
  border-radius: 100px;
  color: #4a4a45;
  font-size: 11.5px;
  font-weight: 500;
}

.product-card-arrow {
  position: absolute;
  top: 22px; right: 22px;
  width: 44px; height: 44px;
  background: #ffffff;
  border: 1px solid rgba(10,10,10,0.08);
  color: #0e0e0c;
  border-radius: 50%;
  display: grid; place-items: center;
  z-index: 4;
  transition: all var(--t-fast);
  box-shadow: 0 4px 12px -4px rgba(0,0,0,0.08);
}
.product-card:hover .product-card-arrow {
  background: var(--yellow); border-color: var(--yellow);
  color: #0a0a0a; transform: rotate(-45deg);
}

/* ============================================
   12. SERVICES COMPLETS — fenêtre 3D centrée (LIGHT)
============================================ */
.services-complete-section {
  background: #0a0a0a;
  color: #f5f5f3;
  position: relative;
}
/* Halo lumineux discret pour casser le noir total et créer de la profondeur */
.services-complete-section::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 40%, rgba(255,255,255,0.04) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 70%, rgba(245, 184, 0, 0.025) 0%, transparent 50%);
  pointer-events: none;
}
.services-complete-section > .container { position: relative; z-index: 1; }
.services-complete-section .section-head .lead { color: rgba(255,255,255,0.7); }
.services-complete-section .eyebrow { color: rgba(255,255,255,0.55); }
.services-complete-section > .container { position: relative; z-index: 1; }
.services-complete-section .section-head { margin-bottom: 50px; }
.services-complete-section .section-head .lead { color: #4a4a45; }

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr; gap: 40px; }
  .services-canvas { max-width: 480px; margin: 0 auto; }
  .services-col { max-width: 480px; margin: 0 auto; }
}

.services-col {
  display: flex; flex-direction: column;
  gap: 34px;
}

.service-item {
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.10);
}
.service-item:first-child { border-top: 0; padding-top: 0; }

.service-icon {
  width: 38px; height: 38px;
  margin-bottom: 14px;
  color: #f5f5f3;
  stroke-width: 1.3;
}

.service-title {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #f5f5f3;
  margin-bottom: 8px;
  letter-spacing: 0;
  line-height: 1.3;
}
.service-desc {
  font-size: 14.5px;
  color: rgba(255,255,255,0.62);
  line-height: 1.55;
}

.services-canvas {
  aspect-ratio: 3/4;
  position: relative;
  display: grid; place-items: center;
  /* Fond noir transparent — la fenêtre blanche ressort naturellement */
}
.services-canvas canvas {
  width: 100% !important; height: 100% !important;
  display: block;
  position: relative;
  z-index: 2;
}
/* Spotlight subtil derrière la fenêtre (effet projecteur showroom) */
.services-canvas::before {
  content: "";
  position: absolute;
  width: 80%; height: 80%;
  top: 10%; left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.06) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
  filter: blur(20px);
}
/* Ombre douce sous la fenêtre */
.services-canvas::after {
  content: "";
  position: absolute;
  bottom: 6%; left: 50%;
  transform: translateX(-50%);
  width: 55%; height: 18px;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.55) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
  filter: blur(6px);
}

/* ============================================
   12B. ATELIER / ÉQUIPE — éditorial photos (LIGHT)
============================================ */
.atelier-section { background: #faf9f6; }

.atelier-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  align-items: center;
}
@media (max-width: 1024px) { .atelier-grid { grid-template-columns: 1fr; gap: 40px; } }

.atelier-text h2 { margin-bottom: 28px; }
.atelier-text .lead { margin-bottom: 24px; }
.atelier-text p { color: #4a4a45; margin-bottom: 20px; line-height: 1.65; font-size: 16px; }

.trust-badges {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-top: 36px;
}
.trust-badge {
  padding: 11px 18px;
  border: 1px solid rgba(10,10,10,0.14);
  border-radius: 100px;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #2a2a26;
  background: transparent;
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.trust-badge svg { width: 13px; height: 13px; opacity: 0.7; }

.atelier-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 240px 240px;
  gap: 14px;
  position: relative;
}
@media (max-width: 600px) {
  .atelier-images { grid-template-rows: 180px 180px; }
}
.atelier-img {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: #ddd;
}
.atelier-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}
.atelier-img:hover img { transform: scale(1.05); }
.atelier-img-1 { grid-column: 1; grid-row: 1 / 3; }
.atelier-img-2 { grid-column: 2; grid-row: 1; }
.atelier-img-3 { grid-column: 2; grid-row: 2; }

/* ============================================
   12C. PARALLAX BANNER — citation founder
============================================ */
.parallax-banner {
  position: relative;
  height: 70vh;
  min-height: 480px;
  overflow: hidden;
  display: grid;
  place-items: center;
  isolation: isolate;
}
.parallax-img {
  position: absolute; inset: -10% 0 -10% 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 0;
}
@supports not (background-attachment: fixed) {
  .parallax-img { background-attachment: scroll; }
}
.parallax-banner::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.6), rgba(10,10,10,0.75));
  z-index: 1;
}
.parallax-quote {
  position: relative; z-index: 2;
  max-width: 920px;
  text-align: center;
  padding: 0 var(--gutter);
  color: #fff;
}
.parallax-quote h2 {
  font-family: "Fraunces", serif;
  font-weight: 300;
  font-size: clamp(28px, 4.4vw, 56px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.parallax-quote em {
  font-style: italic;
  color: #fff;
  position: relative;
  display: inline-block;
}
.parallax-quote em::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 4px;
  height: 5px;
  background: rgba(245,184,0,0.55);
  border-radius: 2px;
}
.parallax-cite {
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

/* ============================================
   13. INSPIRATIONS GALLERY
============================================ */
.gallery-section {
  background: #0a0a0a;
  color: #f5f5f3;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 200px;
  gap: 16px;
  margin-top: 40px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.8) 100%);
  opacity: 0; transition: opacity var(--t-fast);
}
.gallery-item:hover::after { opacity: 1; }
.gallery-caption {
  position: absolute;
  left: 20px; bottom: 20px;
  z-index: 2;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--t-fast);
}
.gallery-item:hover .gallery-caption { opacity: 1; transform: translateY(0); }

.gi-1 { grid-column: span 5; grid-row: span 2; }
.gi-2 { grid-column: span 4; grid-row: span 1; }
.gi-3 { grid-column: span 3; grid-row: span 2; }
.gi-4 { grid-column: span 4; grid-row: span 1; }
.gi-5 { grid-column: span 4; grid-row: span 2; }
.gi-6 { grid-column: span 4; grid-row: span 1; }
.gi-7 { grid-column: span 4; grid-row: span 1; }

@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gi-1, .gi-2, .gi-3, .gi-4, .gi-5, .gi-6, .gi-7 {
    grid-column: span 1; grid-row: span 1;
  }
  .gi-1 { grid-column: span 2; }
}

/* ============================================
   14. PROCESS (LIGHT)
============================================ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 60px;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,0.06);
  overflow: hidden;
  box-shadow: 0 4px 30px -10px rgba(0,0,0,0.08);
}
@media (max-width: 1024px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .process-grid { grid-template-columns: 1fr; } }

.step {
  padding: 44px 32px;
  border-left: 1px solid rgba(0,0,0,0.06);
  transition: background var(--t-med);
  position: relative;
}
.step:first-child { border-left: 0; }
@media (max-width: 1024px) {
  .step { border-left: 0; border-top: 1px solid rgba(0,0,0,0.06); }
  .step:nth-child(1), .step:nth-child(2) { border-top: 0; }
}
.step:hover { background: rgba(245,184,0,0.06); }
.step-num {
  font-family: "Fraunces", serif;
  font-size: 14px; font-style: italic;
  color: var(--gold);
  margin-bottom: 28px;
  letter-spacing: 0.1em;
}
.step-icon {
  width: 52px; height: 52px;
  margin-bottom: 24px;
  color: #0e0e0c;
  stroke-width: 1.2;
}
.step-title {
  font-family: "Fraunces", serif;
  font-size: 24px; font-weight: 400;
  margin-bottom: 12px; line-height: 1.1;
  color: #0e0e0c;
}
.step-desc { font-size: 15px; color: #4a4a45; line-height: 1.55; }

/* ============================================
   15. AVIS GOOGLE (LIGHT)
============================================ */
.reviews-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 60px;
  flex-wrap: wrap;
  gap: 32px;
}
.reviews-rating {
  display: flex; align-items: center; gap: 24px;
  padding: 24px 32px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius);
  box-shadow: 0 4px 24px -8px rgba(0,0,0,0.08);
}
.reviews-rating-num {
  font-family: "Fraunces", serif;
  font-size: 60px;
  font-weight: 300;
  line-height: 1;
  color: #0e0e0c;
}
.reviews-rating-info { display: flex; flex-direction: column; gap: 4px; }
.reviews-rating-stars { display: flex; gap: 2px; color: var(--yellow); }
.reviews-rating-stars svg { width: 18px; height: 18px; }
.reviews-rating-meta { font-size: 13px; color: #6a6a65; }
.google-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600;
  padding: 8px 14px;
  background: rgba(66, 133, 244, 0.08);
  border: 1px solid rgba(66, 133, 244, 0.25);
  border-radius: 100px;
  color: #1967d2;
  width: fit-content;
}

.reviews-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .reviews-track { grid-template-columns: 1fr; } }

.review-card {
  padding: 32px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius);
  transition: all var(--t-med);
  position: relative;
  box-shadow: 0 2px 16px -8px rgba(0,0,0,0.06);
}
.review-card:hover {
  border-color: var(--yellow);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px -16px rgba(0,0,0,0.18);
}
.review-card-quote {
  font-family: "Fraunces", serif;
  font-size: 64px; line-height: 1;
  color: #0e0e0c;
  position: absolute;
  top: 20px; right: 28px;
  opacity: 0.08;
}
.review-stars {
  display: flex; gap: 2px; color: var(--yellow);
  margin-bottom: 18px;
}
.review-stars svg { width: 15px; height: 15px; }
.review-text {
  font-size: 15.5px;
  color: #0e0e0c;
  line-height: 1.55;
  margin-bottom: 28px;
  min-height: 100px;
}
.review-author {
  display: flex; align-items: center; gap: 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.review-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2a2a28, #0e0e0c);
  display: grid; place-items: center;
  color: #fff; font-weight: 600; font-size: 15px;
}
.review-name { font-size: 15px; font-weight: 600; color: #0e0e0c; }
.review-date { font-size: 12.5px; color: #6a6a65; }

/* ============================================
   16. DEVIS / CTA (DARK)
============================================ */
.devis-section {
  position: relative;
  background: var(--bg);
  overflow: hidden;
}
.devis-section::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, var(--accent-glow) 0%, transparent 60%);
}

.devis-card {
  position: relative;
  padding: 80px clamp(32px, 5vw, 80px);
  background:
    linear-gradient(135deg, rgba(245,184,0,0.06) 0%, transparent 50%),
    var(--bg-2);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 900px) {
  .devis-card { grid-template-columns: 1fr; padding: 50px 28px; }
}
.devis-card::before {
  content: "";
  position: absolute;
  top: -1px; left: -1px; right: -1px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(245,184,0,0.5), transparent);
}
.devis-form { display: flex; flex-direction: column; gap: 16px; }
.devis-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 480px) { .devis-form-row { grid-template-columns: 1fr; } }
.devis-input, .devis-select, .devis-textarea {
  width: 100%;
  padding: 16px 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  color: #fff;
  font-family: inherit;
  font-size: 15px;
  transition: border-color var(--t-fast), background var(--t-fast);
}
.devis-input:focus, .devis-select:focus, .devis-textarea:focus {
  outline: none;
  border-color: var(--yellow);
  background: rgba(255,255,255,0.06);
}
.devis-textarea { min-height: 120px; resize: vertical; }
.devis-input::placeholder, .devis-textarea::placeholder { color: rgba(255,255,255,0.45); }
.devis-form .btn { align-self: flex-start; margin-top: 10px; }

/* Honeypot anti-bot — invisible pour les humains, présent pour les bots */
.devis-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Feedback formulaire (succès / erreur) */
.devis-feedback {
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  margin-top: 4px;
}
.devis-feedback.success {
  background: rgba(76, 175, 80, 0.12);
  border: 1px solid rgba(76, 175, 80, 0.35);
  color: #b8e8b8;
}
.devis-feedback.error {
  background: rgba(244, 67, 54, 0.12);
  border: 1px solid rgba(244, 67, 54, 0.35);
  color: #ffb8b8;
}

/* Bouton submit en cours d'envoi */
.btn.is-loading {
  pointer-events: none;
  opacity: 0.7;
  position: relative;
}
.btn.is-loading .btn-label::after {
  content: " ...";
  animation: dots 1.4s infinite;
}
@keyframes dots {
  0%, 20% { content: " ."; }
  40% { content: " .."; }
  60%, 100% { content: " ..."; }
}

/* ============================================
   17. SITEMAP / ARBORESCENCE (LIGHT)
============================================ */
.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}
@media (max-width: 900px) { .sitemap-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .sitemap-grid { grid-template-columns: 1fr; } }

.sitemap-card {
  padding: 36px 32px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius);
  box-shadow: 0 2px 16px -8px rgba(0,0,0,0.06);
  transition: all var(--t-med);
}
.sitemap-card:hover {
  border-color: var(--yellow);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px -16px rgba(0,0,0,0.18);
}
.sitemap-card-head {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px dashed rgba(0,0,0,0.1);
}
.sitemap-card-icon {
  width: 44px; height: 44px;
  background: #1a1a18;
  border-radius: 12px;
  display: grid; place-items: center;
  color: #fff; font-weight: 400;
  font-family: "Fraunces", serif; font-size: 15px;
}
.sitemap-card-title {
  font-family: "Fraunces", serif;
  font-size: 22px; font-weight: 400;
  color: #0e0e0c;
}
.sitemap-card ul {
  list-style: none;
  display: flex; flex-direction: column; gap: 10px;
  font-size: 15px;
  color: #4a4a45;
}
.sitemap-card ul li::before {
  content: "→ ";
  color: var(--gold);
  margin-right: 6px;
  font-weight: 500;
}
.sitemap-card ul ul {
  margin: 6px 0 6px 16px;
  padding-left: 12px;
  border-left: 1px dotted rgba(0,0,0,0.15);
  font-size: 14px;
}
.sitemap-card ul ul li::before { content: "· "; color: #888; }

/* ============================================
   17B. FAQ — accordéon LIGHT
============================================ */
.faq-section { background: #faf9f6; }

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 70px;
  align-items: start;
}
@media (max-width: 1024px) { .faq-grid { grid-template-columns: 1fr; gap: 32px; } }

.faq-text h2 { margin-bottom: 28px; }
.faq-text p { color: #4a4a45; font-size: 16px; line-height: 1.65; margin-bottom: 24px; max-width: 38ch; }

.faq-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(10,10,10,0.10);
}

.faq-item {
  border-bottom: 1px solid rgba(10,10,10,0.10);
  position: relative;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 0;
  font-family: "Fraunces", serif;
  font-weight: 400;
  font-size: clamp(18px, 1.6vw, 22px);
  color: #0e0e0c;
  text-align: left;
  cursor: pointer;
  transition: color var(--t-fast);
  background: none;
  border: 0;
  letter-spacing: -0.01em;
  line-height: 1.35;
}
.faq-question:hover { color: #1a1a18; }

.faq-toggle {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(10,10,10,0.18);
  display: grid; place-items: center;
  transition: all var(--t-med);
  position: relative;
  background: transparent;
}
.faq-toggle::before, .faq-toggle::after {
  content: "";
  position: absolute;
  background: #0e0e0c;
  border-radius: 1px;
  transition: transform var(--t-med), background var(--t-med);
}
.faq-toggle::before { width: 12px; height: 1.5px; }
.faq-toggle::after { width: 1.5px; height: 12px; }
.faq-item.open .faq-toggle {
  background: #0e0e0c;
  border-color: #0e0e0c;
}
.faq-item.open .faq-toggle::before,
.faq-item.open .faq-toggle::after { background: #fff; }
.faq-item.open .faq-toggle::after { transform: rotate(90deg); opacity: 0; }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.faq-answer-inner {
  padding-bottom: 28px;
  font-size: 15.5px;
  line-height: 1.65;
  color: #4a4a45;
  max-width: 60ch;
}
.faq-item.open .faq-answer { max-height: 400px; }

/* ============================================
   17C. MOBILE DRAWER MENU
============================================ */
.mobile-drawer {
  position: fixed;
  top: 0; right: 0;
  width: min(420px, 100%);
  height: 100vh;
  background: #0a0a0a;
  z-index: 200;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  border-left: 1px solid rgba(255,255,255,0.08);
}
.mobile-drawer.open { transform: translateX(0); }

.mobile-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  z-index: 199;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}
.mobile-drawer-overlay.open { opacity: 1; visibility: visible; }

.mobile-drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 28px;
}
.mobile-drawer-close {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  display: grid; place-items: center;
  color: #fff; cursor: pointer;
}
.mobile-drawer-close svg { width: 16px; height: 16px; }

.mobile-nav {
  display: flex; flex-direction: column;
  gap: 4px;
  flex: 1;
}
.mobile-nav-item {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mobile-nav a, .mobile-nav-toggle {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
  padding: 18px 4px;
  font-family: "Fraunces", serif;
  font-weight: 400;
  font-size: 22px;
  color: #fff;
  text-align: left;
  background: none; border: 0; width: 100%;
  cursor: pointer;
  transition: padding-left var(--t-fast);
}
.mobile-nav a:hover, .mobile-nav-toggle:hover { padding-left: 8px; }
.mobile-nav-toggle svg { width: 14px; height: 14px; transition: transform var(--t-fast); flex-shrink: 0; }
.mobile-nav-item.open .mobile-nav-toggle svg { transform: rotate(180deg); }

.mobile-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.mobile-nav-item.open .mobile-submenu { max-height: 800px; }

.mobile-submenu-inner {
  padding: 4px 0 16px 16px;
  border-left: 1px solid rgba(255,255,255,0.1);
  margin-left: 4px;
}
.mobile-submenu h6 {
  font-size: 10px;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin: 14px 0 6px;
}
.mobile-submenu h6:first-child { margin-top: 6px; }
.mobile-submenu a {
  display: block;
  padding: 8px 0 8px 14px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
}
.mobile-submenu a:hover { color: #fff; padding-left: 18px; }

.mobile-drawer-foot {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mobile-drawer-foot .btn { justify-content: center; }
.mobile-drawer-foot a.phone {
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.1em;
  margin-top: 4px;
}

/* ============================================
   18. FOOTER
============================================ */
.footer {
  background: #0a0a0a;
  color: #f5f5f3;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 90px 0 40px;
  position: relative;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}
@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-top { grid-template-columns: 1fr; gap: 32px; } }

.footer-about p {
  color: rgba(255,255,255,0.7);
  font-size: 15px;
  margin-top: 20px;
  margin-bottom: 24px;
  max-width: 32ch;
}
.footer-contact-list {
  list-style: none;
  display: flex; flex-direction: column; gap: 12px;
  font-size: 15px;
}
.footer-contact-list a:hover { color: #fff; }

.footer-col h5 {
  font-family: "Inter", sans-serif;
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.22em;
  color: rgba(255,255,255,0.55);
  margin-bottom: 24px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col a {
  font-size: 15px;
  color: rgba(255,255,255,0.78);
  transition: color var(--t-fast);
}
.footer-col a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 32px;
  display: flex; align-items: center;
  justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}
.footer-bottom-links { display: flex; gap: 24px; }

.footer-megalogo {
  font-family: "Fraunces", serif;
  font-size: clamp(120px, 22vw, 380px);
  font-weight: 300;
  line-height: 0.85;
  letter-spacing: -0.06em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.1);
  text-align: center;
  margin-top: 60px;
  user-select: none; pointer-events: none;
}
.footer-megalogo-svg {
  display: block;
  margin: 60px auto 20px;
  max-width: 90%;
  height: clamp(80px, 12vw, 180px);
  color: rgba(255,255,255,0.06);
}
.footer-megalogo-svg svg { height: 100%; width: auto; display: inline; }

/* ============================================
   19. SCROLL REVEAL
============================================ */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1), transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.in { opacity: 1; transform: translateY(0); }


/* ============================================
   20. COOKIE BANNER — RGPD/CNIL
============================================ */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 720px;
  margin: 0 auto;
  background: rgba(15, 15, 15, 0.96);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 18px;
  padding: 22px 26px;
  box-shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.6);
  z-index: 9000;
  color: #f5f5f3;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.5s ease;
}
.cookie-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
}
.cookie-banner[hidden] { display: none; }

.cookie-banner-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
@media (max-width: 720px) {
  .cookie-banner { left: 12px; right: 12px; bottom: 12px; padding: 20px 22px; }
  .cookie-banner-inner { flex-direction: column; align-items: stretch; gap: 18px; }
}

.cookie-banner-content { flex: 1; min-width: 280px; }
.cookie-banner-title {
  font-family: "Inter", sans-serif;
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 0;
  margin-bottom: 6px;
  color: #fff;
}
.cookie-banner-text {
  font-size: 13.5px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
}
.cookie-banner-link {
  color: var(--yellow);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-banner-link:hover { color: var(--yellow-bright); }

.cookie-banner-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
@media (max-width: 720px) {
  .cookie-banner-actions { width: 100%; }
  .cookie-banner-actions .cookie-btn { flex: 1; justify-content: center; }
}

.cookie-btn {
  padding: 11px 18px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 100px;
  white-space: nowrap;
  cursor: pointer;
  transition: all var(--t-fast);
}
.cookie-btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.cookie-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
}
.cookie-btn-primary { /* hérite de .btn-primary */ }

/* Panneau "Personnaliser" */
.cookie-customize {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}
.cookie-customize[hidden] { display: none; }
.cookie-customize-title {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 16px;
}
.cookie-category {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.cookie-category:last-of-type { border-bottom: 0; }
.cookie-category-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 6px;
}
.cookie-category-name {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}
.cookie-category-status {
  font-size: 11.5px;
  font-weight: 500;
  color: var(--yellow);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.cookie-category-desc {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
  margin: 0;
}
/* Toggle iOS-style */
.cookie-toggle {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  user-select: none;
}
.cookie-toggle input { position: absolute; opacity: 0; pointer-events: none; }
.cookie-toggle-slider {
  position: relative;
  width: 38px; height: 22px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 100px;
  flex-shrink: 0;
  transition: background var(--t-fast);
}
.cookie-toggle-slider::after {
  content: "";
  position: absolute;
  top: 2px; left: 2px;
  width: 18px; height: 18px;
  background: #fff;
  border-radius: 50%;
  transition: transform var(--t-fast);
  box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}
.cookie-toggle input:checked + .cookie-toggle-slider { background: var(--yellow); }
.cookie-toggle input:checked + .cookie-toggle-slider::after { transform: translateX(16px); }
.cookie-toggle input:focus-visible + .cookie-toggle-slider {
  outline: 2px solid var(--yellow);
  outline-offset: 2px;
}

.cookie-customize-actions {
  margin-top: 18px;
  display: flex;
  justify-content: flex-end;
}


/* ============================================
   PAGES PRODUITS — page-hero + product-detail
============================================ */
.page-hero {
  padding: 160px 0 80px;
  background: var(--bg);
  color: var(--text);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(245, 184, 0, 0.06) 0%, transparent 55%),
    linear-gradient(to bottom, rgba(255,255,255,0.02), transparent);
  pointer-events: none;
}
.page-hero > .container { position: relative; z-index: 1; }
.page-hero-meta {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 36px;
}
.page-hero-meta a { color: var(--text-3); transition: color var(--t-fast); }
.page-hero-meta a:hover { color: var(--text); }
.page-hero-meta span { margin: 0 6px; opacity: 0.5; }
.page-hero h1 { margin-bottom: 32px; }
.page-hero .lead { margin-bottom: 40px; max-width: 60ch; }
.page-hero-jumps {
  display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px;
}

.product-detail {
  padding: var(--section-pad) 0;
  position: relative;
}
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 900px) { .product-detail-grid { grid-template-columns: 1fr; gap: 40px; } }

.product-detail-grid-rev .product-detail-text { order: 2; }
@media (max-width: 900px) {
  .product-detail-grid-rev .product-detail-text { order: 0; }
}

.product-detail-text h2 { margin-bottom: 28px; }
.product-detail-text .lead { margin-bottom: 28px; }

.product-detail-features {
  list-style: none;
  margin: 32px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.product-detail-features li {
  padding: 16px 0;
  border-top: 1px solid var(--line);
  font-size: 15px;
  color: var(--text-2);
}
.product-detail-features li:last-child { border-bottom: 1px solid var(--line); }
.product-detail-features li strong {
  color: var(--text);
  font-weight: 600;
  margin-right: 12px;
}
section[data-theme="light"] .product-detail-features li {
  border-color: rgba(10,10,10,0.10);
  color: #4a4a45;
}
section[data-theme="light"] .product-detail-features li strong { color: #0e0e0c; }

.product-detail-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--bg-2);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
}
section[data-theme="light"] .product-detail-visual {
  background: #fff;
  border-color: rgba(10,10,10,0.06);
}

/* ============================================
   PAGES SECONDAIRES — éditorial sobre
============================================ */
.editorial-page {
  padding: 160px 0 100px;
  background: var(--bg);
  color: var(--text);
}
.editorial-content {
  max-width: 760px;
  margin: 0 auto;
}
.editorial-content h1 {
  font-family: "Fraunces", serif;
  font-weight: 300;
  font-size: clamp(40px, 5vw, 64px);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  line-height: 1;
}
.editorial-content .editorial-meta {
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 8px;
}
.editorial-content > p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-2);
  margin-bottom: 24px;
}
.editorial-content h2 {
  font-family: "Fraunces", serif;
  font-weight: 400;
  font-size: 30px;
  letter-spacing: -0.01em;
  margin: 56px 0 16px;
  line-height: 1.15;
}
.editorial-content h3 {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 17px;
  margin: 32px 0 12px;
}
.editorial-content ul, .editorial-content ol {
  padding-left: 22px;
  margin-bottom: 24px;
}
.editorial-content li {
  font-size: 16px;
  color: var(--text-2);
  margin-bottom: 8px;
  line-height: 1.6;
}
.editorial-content a {
  color: var(--yellow);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.editorial-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 14.5px;
}
.editorial-content th, .editorial-content td {
  text-align: left;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  color: var(--text-2);
}
.editorial-content th {
  font-weight: 600;
  color: var(--text);
  background: var(--surface);
}


/* ============================================
   21. PAGE PRODUIT PREMIUM — coupe technique annotée
   Ambiance éditoriale : noir sur crème, retenue.
============================================ */
.product-premium {
  background: #faf9f6;
  color: #0e0e0c;
  padding: clamp(80px, 11vw, 160px) 0;
  position: relative;
}
.product-premium .eyebrow { color: #6a6a65; }

.product-premium-head {
  max-width: 780px;
  margin: 0 auto 80px;
  text-align: center;
}
.product-premium-head .lead {
  margin: 0 auto;
  color: #4a4a45;
}

/* ===== Coupe annotée ===== */
.spec-cutaway {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: center;
  margin: 0 auto 40px;
  max-width: 1200px;
}
@media (max-width: 1024px) {
  .spec-cutaway { grid-template-columns: 1fr; gap: 40px; }
}

.spec-cutaway-svg {
  position: relative;
  background: #fbfaf5;
  border: 1px solid rgba(10,10,10,0.06);
  border-radius: 4px;
  padding: 30px;
  box-shadow: 0 2px 30px -12px rgba(0,0,0,0.08);
}
.spec-cutaway-svg svg {
  width: 100%;
  height: auto;
  display: block;
}
/* Dots de la coupe — état hover/active */
.cutaway-dots g {
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1);
  transform-origin: center;
  transform-box: fill-box;
}
.cutaway-dots g circle {
  transition: fill 0.3s, stroke 0.3s;
}
.cutaway-dots g.is-active circle,
.cutaway-dots g:hover circle {
  fill: var(--yellow);
  stroke: #0e0e0c;
  stroke-width: 1.2;
}
.cutaway-dots g.is-active line,
.cutaway-dots g:hover line {
  stroke: #0e0e0c;
  stroke-dasharray: none;
}

/* ===== Liste d'annotations ===== */
.spec-annot-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(10,10,10,0.10);
  counter-reset: spec-annot;
}
.spec-annot {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(10,10,10,0.08);
  cursor: default;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1), transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
.spec-annot.is-revealed {
  opacity: 1;
  transform: translateY(0);
}
/* Stagger via délai variable */
.spec-annot:nth-child(1).is-revealed { transition-delay: 0.05s; }
.spec-annot:nth-child(2).is-revealed { transition-delay: 0.12s; }
.spec-annot:nth-child(3).is-revealed { transition-delay: 0.19s; }
.spec-annot:nth-child(4).is-revealed { transition-delay: 0.26s; }
.spec-annot:nth-child(5).is-revealed { transition-delay: 0.33s; }
.spec-annot:nth-child(6).is-revealed { transition-delay: 0.40s; }
.spec-annot:nth-child(7).is-revealed { transition-delay: 0.47s; }

.spec-annot-num {
  font-family: "Fraunces", serif;
  font-size: 22px;
  font-weight: 300;
  letter-spacing: -0.02em;
  color: #0e0e0c;
  align-self: start;
  padding-top: 2px;
  position: relative;
}
.spec-annot-num::after {
  content: "";
  position: absolute;
  left: 0; right: -8px;
  bottom: -4px;
  height: 1px;
  background: rgba(10,10,10,0.20);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.spec-annot:hover .spec-annot-num::after { transform: scaleX(1); background: var(--yellow); height: 2px; }
.spec-annot:hover .spec-annot-num { color: #000; }

.spec-annot-body h4 {
  font-family: "Inter", sans-serif;
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 0;
  color: #0e0e0c;
  margin-bottom: 6px;
  line-height: 1.3;
}
.spec-annot-body p {
  font-size: 13.5px;
  color: #4a4a45;
  line-height: 1.55;
  margin: 0;
}

.spec-cutaway-cap {
  text-align: center;
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 13px;
  color: #888880;
  letter-spacing: 0;
  margin: 0 auto 90px;
  max-width: 1200px;
}

/* ===== Compteurs de performance ===== */
.spec-numbers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 1200px;
  margin: 0 auto 80px;
  border-top: 1px solid rgba(10,10,10,0.12);
  border-bottom: 1px solid rgba(10,10,10,0.12);
}
@media (max-width: 768px) {
  .spec-numbers { grid-template-columns: repeat(2, 1fr); }
}
.spec-num {
  padding: 36px 22px;
  border-left: 1px solid rgba(10,10,10,0.08);
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.spec-num:first-child { border-left: 0; }
@media (max-width: 768px) {
  .spec-num { border-left: 0; }
  .spec-num:nth-child(2) { border-left: 1px solid rgba(10,10,10,0.08); }
  .spec-num:nth-child(3),
  .spec-num:nth-child(4) { border-top: 1px solid rgba(10,10,10,0.08); }
  .spec-num:nth-child(4) { border-left: 1px solid rgba(10,10,10,0.08); }
}
.spec-num-value {
  font-family: "Fraunces", serif;
  font-size: clamp(38px, 4.4vw, 60px);
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1;
  color: #0e0e0c;
  font-variant-numeric: tabular-nums;
}
.spec-num-value-text {
  font-size: clamp(22px, 2.4vw, 30px);
  letter-spacing: 0.02em;
}
.spec-num-unit {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6a6a65;
  margin-top: 8px;
}
.spec-num-label {
  font-size: 12.5px;
  color: #888880;
  line-height: 1.4;
  margin-top: 4px;
}
.spec-num-label span {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 400;
  color: #4a4a45;
}

.product-premium-cta {
  text-align: center;
  margin-top: 0;
}


/* ============================================
   22. PAGES CATÉGORIE — vitrine + grille de cards
============================================ */
.cat-vitrine {
  background: #faf9f6;
  color: #0e0e0c;
  padding: clamp(80px, 11vw, 160px) 0;
}
.cat-vitrine-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 1024px) { .cat-vitrine-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .cat-vitrine-grid { grid-template-columns: 1fr; } }

.cat-card {
  display: block;
  background: #fff;
  border: 1px solid rgba(10,10,10,0.06);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--t-med), box-shadow var(--t-med), border-color var(--t-med);
  position: relative;
  isolation: isolate;
  text-decoration: none;
  color: inherit;
}
.cat-card::after {
  content: "";
  position: absolute;
  left: 28px; right: 28px; bottom: 0;
  height: 2px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.5s cubic-bezier(0.22,1,0.36,1);
  z-index: 4;
}
.cat-card:hover {
  border-color: rgba(10,10,10,0.18);
  transform: translateY(-6px);
  box-shadow: 0 24px 50px -20px rgba(0,0,0,0.18);
}
.cat-card:hover::after { transform: scaleX(1); }
.cat-card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: linear-gradient(180deg, #f5f3ec 0%, #ebe7dc 100%);
  border-bottom: 1px solid rgba(10,10,10,0.06);
}
.cat-card-img svg, .cat-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1s cubic-bezier(0.22,1,0.36,1);
}
.cat-card:hover .cat-card-img svg,
.cat-card:hover .cat-card-img img { transform: scale(1.04); }
.cat-card-body {
  padding: 28px 30px 32px;
}
.cat-card-title {
  font-family: "Fraunces", serif;
  font-size: 28px;
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: #0e0e0c;
  margin-bottom: 12px;
}
.cat-card-desc {
  font-size: 15px;
  color: #4a4a45;
  line-height: 1.5;
  margin-bottom: 20px;
}
.cat-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Inter", sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #0e0e0c;
  transition: gap var(--t-fast), color var(--t-fast);
}
.cat-card:hover .cat-card-link { gap: 14px; color: #1a1a18; }

/* ===== Bloc "Pourquoi MIL" (sous chaque vitrine catégorie) ===== */
.cat-why {
  background: #faf9f6;
  color: #0e0e0c;
  padding: 0 0 clamp(80px, 11vw, 160px);
}
.cat-why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding-top: clamp(50px, 7vw, 100px);
  border-top: 1px solid rgba(10,10,10,0.08);
}
@media (max-width: 900px) { .cat-why-grid { grid-template-columns: 1fr; gap: 32px; } }
.cat-why-text h2 { margin-bottom: 28px; }
.cat-why-text .lead { color: #4a4a45; }
.cat-why-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
}
.cat-why-list li {
  padding: 22px 0;
  border-top: 1px solid rgba(10,10,10,0.10);
  font-size: 15.5px;
  color: #4a4a45;
  line-height: 1.55;
}
.cat-why-list li:last-child { border-bottom: 1px solid rgba(10,10,10,0.10); }
.cat-why-list strong {
  display: block;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: #0e0e0c;
  margin-bottom: 4px;
}


/* ============================================
   23. PAGE PRODUIT — éléments éditoriaux
============================================ */

/* ----- Hero asymétrique (photo + texte) ----- */
.product-intro {
  background: #faf9f6;
  color: #0e0e0c;
  padding: clamp(60px, 8vw, 120px) 0;
}
.product-intro-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 70px;
  align-items: center;
}
@media (max-width: 1024px) {
  .product-intro-grid { grid-template-columns: 1fr; gap: 40px; }
}
.product-intro-img {
  border-radius: 14px;
  overflow: hidden;
  background: #ddd;
  aspect-ratio: 4/3;
}
.product-intro-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.product-intro-img:hover img { transform: scale(1.04); }

.product-intro-text h2 { margin-bottom: 28px; }
.product-intro-text .lead { margin-bottom: 22px; }
.product-intro-text p { color: #4a4a45; margin-bottom: 28px; line-height: 1.65; font-size: 16px; }
.product-intro-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(10,10,10,0.10);
}
.product-intro-list li {
  padding: 14px 0 14px 28px;
  border-bottom: 1px solid rgba(10,10,10,0.10);
  color: #2a2a26;
  font-size: 15px;
  position: relative;
}
.product-intro-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 19px;
  width: 18px; height: 1.5px;
  background: var(--yellow);
}

/* ----- Feature cards (4 atouts à checkmarks) ----- */
.feature-cards-section {
  background: #faf9f6;
  color: #0e0e0c;
  padding: clamp(60px, 8vw, 120px) 0;
  border-top: 1px solid rgba(10,10,10,0.06);
}
.feature-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
@media (max-width: 1024px) { .feature-cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .feature-cards { grid-template-columns: 1fr; } }
.feature-card {
  padding: 32px 28px;
  background: #fff;
  border: 1px solid rgba(10,10,10,0.07);
  border-radius: 14px;
  transition: all var(--t-med);
}
.feature-card:hover {
  border-color: var(--yellow);
  box-shadow: 0 12px 40px -16px rgba(0,0,0,0.18);
  transform: translateY(-4px);
}
.feature-card-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(245, 184, 0, 0.15);
  color: #0e0e0c;
  margin-bottom: 22px;
}
.feature-card-check svg { width: 18px; height: 18px; }
.feature-card-title {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0;
  color: #0e0e0c;
  margin-bottom: 10px;
  line-height: 1.3;
}
.feature-card-desc {
  font-size: 14px;
  color: #4a4a45;
  line-height: 1.55;
  margin: 0;
}

/* ----- Onglets de navigation interne (sticky) ----- */
.product-tabs {
  background: #faf9f6;
  border-top: 1px solid rgba(10,10,10,0.10);
  border-bottom: 1px solid rgba(10,10,10,0.10);
  position: sticky;
  top: 70px;
  z-index: 50;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(250, 249, 246, 0.92);
}
.product-tabs-track {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.product-tabs-track::-webkit-scrollbar { display: none; }
.product-tab {
  padding: 18px 22px;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #6a6a65;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color var(--t-fast), border-color var(--t-fast);
}
.product-tab:hover { color: #0e0e0c; }
.product-tab.is-active {
  color: #0e0e0c;
  border-bottom-color: var(--yellow);
}

/* ----- Tableau de specs ----- */
.spec-table-section {
  background: #faf9f6;
  color: #0e0e0c;
  padding: clamp(80px, 11vw, 160px) 0;
}
.spec-table-section .spec-numbers { margin-bottom: 60px; }
.spec-table-wrap {
  max-width: 1000px;
  margin: 0 auto;
  border-top: 1px solid rgba(10,10,10,0.12);
}
.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}
.spec-table th, .spec-table td {
  padding: 22px 6px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(10,10,10,0.08);
  line-height: 1.55;
}
.spec-table th {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  width: 36%;
  color: #0e0e0c;
  letter-spacing: 0;
  padding-right: 32px;
}
.spec-table td {
  color: #4a4a45;
}
@media (max-width: 600px) {
  .spec-table th, .spec-table td { display: block; width: 100%; padding: 8px 0; }
  .spec-table th { padding-top: 18px; border-bottom: 0; }
  .spec-table td { padding-bottom: 18px; }
}

/* ----- Couleurs / swatches ----- */
.color-section {
  background: #faf9f6;
  color: #0e0e0c;
  padding: clamp(80px, 11vw, 160px) 0;
  border-top: 1px solid rgba(10,10,10,0.06);
}
.color-group { margin-bottom: 60px; }
.color-group:last-of-type { margin-bottom: 0; }
.color-group-title {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #6a6a65;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(10,10,10,0.10);
}
.color-swatches {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
@media (max-width: 1024px) { .color-swatches { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 600px)  { .color-swatches { grid-template-columns: repeat(3, 1fr); } }
.color-swatch {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
  cursor: default;
  transition: transform var(--t-fast);
}
.color-swatch:hover { transform: translateY(-2px); }
.color-chip {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 8px;
  border: 1px solid rgba(10,10,10,0.10);
  box-shadow: inset 0 -8px 18px -10px rgba(0,0,0,0.18);
  display: block;
}
.color-name {
  font-family: "Inter", sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  color: #0e0e0c;
  margin-top: 8px;
}
.color-code {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 11.5px;
  color: #888880;
  letter-spacing: 0;
}
.color-note {
  margin-top: 30px;
  text-align: center;
  font-size: 13.5px;
  color: #888880;
  font-style: italic;
  font-family: "Fraunces", serif;
}

/* ----- Équipement optionnel (grid 3x3) ----- */
.options-section {
  background: #faf9f6;
  color: #0e0e0c;
  padding: clamp(80px, 11vw, 160px) 0;
  border-top: 1px solid rgba(10,10,10,0.06);
}
.options-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(10,10,10,0.10);
  border: 1px solid rgba(10,10,10,0.10);
}
@media (max-width: 900px) { .options-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .options-grid { grid-template-columns: 1fr; } }
.option-card {
  background: #faf9f6;
  padding: 36px 30px;
  transition: background var(--t-med);
}
.option-card:hover { background: #fff; }
.option-icon {
  width: 56px; height: 56px;
  margin-bottom: 22px;
  color: #0e0e0c;
  display: flex;
  align-items: center;
  justify-content: center;
}
.option-icon svg {
  width: 100%;
  height: 100%;
  stroke-width: 1.2;
}
.option-card h3 {
  font-family: "Inter", sans-serif;
  font-size: 15.5px;
  font-weight: 600;
  letter-spacing: 0;
  color: #0e0e0c;
  margin-bottom: 8px;
  line-height: 1.3;
}
.option-card p {
  font-size: 13.5px;
  color: #4a4a45;
  line-height: 1.55;
  margin: 0;
}

/* ----- Mini-galerie réalisations produit ----- */
.product-gallery {
  background: #faf9f6;
  color: #0e0e0c;
  padding: clamp(80px, 11vw, 160px) 0;
  border-top: 1px solid rgba(10,10,10,0.06);
}
.product-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .product-gallery-grid { grid-template-columns: 1fr; gap: 32px; } }
.product-gallery-item {
  background: #fff;
  border: 1px solid rgba(10,10,10,0.06);
  border-radius: 14px;
  overflow: hidden;
  transition: all var(--t-med);
  display: flex;
  flex-direction: column;
}
.product-gallery-item:hover {
  border-color: rgba(10,10,10,0.18);
  transform: translateY(-4px);
  box-shadow: 0 18px 50px -20px rgba(0,0,0,0.18);
}
.product-gallery-item img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  display: block;
  transition: transform 1s cubic-bezier(0.22,1,0.36,1);
}
.product-gallery-item:hover img { transform: scale(1.04); }
.product-gallery-cap {
  padding: 22px 26px 28px;
}
.product-gallery-tag {
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6a6a65;
  margin-bottom: 10px;
}
.product-gallery-cap h4 {
  font-family: "Fraunces", serif;
  font-size: 22px;
  font-weight: 300;
  letter-spacing: -0.02em;
  color: #0e0e0c;
  margin: 0 0 8px;
}
.product-gallery-cap p {
  font-size: 13.5px;
  color: #4a4a45;
  line-height: 1.55;
  margin: 0;
}

/* ----- FAQ produit (réutilise les classes faq-* existantes) ----- */
.product-faq-section {
  background: #faf9f6;
  padding: clamp(80px, 11vw, 160px) 0;
  border-top: 1px solid rgba(10,10,10,0.06);
}

/* ----- Bandeau CTA jaune ----- */
.product-cta-block {
  background: var(--yellow);
  color: #0e0e0c;
  padding: clamp(60px, 8vw, 110px) 0;
}
.product-cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 900px) { .product-cta-inner { grid-template-columns: 1fr; gap: 28px; } }
.product-cta-inner h2 {
  margin: 0;
  color: #0e0e0c;
}
.product-cta-inner h2 em {
  font-style: italic;
  font-weight: 300;
  position: relative;
}
.product-cta-inner h2 em::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: 4px;
  height: 5px;
  background: rgba(0, 0, 0, 0.18);
  border-radius: 2px;
}
.product-cta-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.product-cta-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15.5px;
  color: #0e0e0c;
  line-height: 1.5;
}
.product-cta-list li::before {
  content: "";
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: #0e0e0c;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f5b800' stroke-width='3'%3E%3Cpath d='M5 12l5 5L20 7'/%3E%3C/svg%3E");
  background-size: 14px;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 1px;
}
.product-cta-block .btn-primary {
  background: #0e0e0c;
  color: var(--yellow);
}
.product-cta-block .btn-primary:hover {
  background: #000;
}


/* ============================================
   24. WINDOW RENDER — visuels riches sur cards catégorie
   Reflet de lumière qui balaie au hover + léger lift
============================================ */
.cat-card .cat-card-img {
  background: transparent; /* Le SVG a son propre dégradé de fond */
  overflow: hidden;
}
.window-render {
  width: 100%;
  height: 100%;
  display: block;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.cat-card:hover .window-render {
  transform: scale(1.04);
}
/* Reflet de lumière qui balaie le verre au hover */
.window-shine {
  transform: translateX(-260px);
  opacity: 0;
  transition: transform 1.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s;
}
.cat-card:hover .window-shine {
  transform: translateX(260px);
  opacity: 1;
}


/* ============================================
   25. ACCESSIBILITÉ — FOCUS, TOUCH, REDUCED MOTION
============================================ */

/* Utilitaire screen-reader only */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Skip link (accès clavier) */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 10001;
  padding: 12px 20px;
  background: var(--yellow);
  color: #0a0a0a;
  font-weight: 700;
  font-size: 14px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: top 0.15s;
}
.skip-link:focus {
  top: 1rem;
}

/* Focus visible global — supprimé sur souris, visible clavier */
:focus { outline: none; }
:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 3px;
  border-radius: 4px;
}
.btn:focus-visible,
.nav-link:focus-visible,
.logo:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 4px;
  border-radius: var(--radius-sm);
}
.faq-toggle:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 3px;
}
.mobile-drawer-close:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 3px;
}

/* Touch — supprime le délai 300ms et le texte sélectionnable sur les éléments interactifs */
a, button,
.btn, .product-card, .cat-card,
.faq-toggle, .mobile-drawer-close,
.nav-link, [role="button"] {
  touch-action: manipulation;
}

/* Gallery captions — visibles sur écrans tactiles (pas uniquement au hover) */
@media (hover: none) {
  .gallery-caption {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Reduced motion — respecte les préférences système */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .marquee-track {
    animation: none;
  }
  .window-shine,
  .cat-card:hover .window-shine {
    animation: none;
    opacity: 0;
  }
  .cat-card:hover .window-render {
    transform: none;
  }
  .parallax-img {
    background-attachment: scroll;
  }
  .hero-title .word > span {
    animation: none;
    opacity: 1;
    transform: none;
  }
  .loader-bar::after {
    animation: none;
  }
  .scroll-indicator-line::after {
    animation: none;
  }
}
