/* ===================================================
   FUMBLEBOX — Style Premium
   Palette : noir profond · or chaud · texte ivoire
=================================================== */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* --- Variables --- */
:root {
  --bg:          #ffffff;
  --bg-surface:  #f4f4f2;
  --bg-elevated: #ededea;
  --bg-card:     #ffffff;

  --gold:        #8a6820;
  --gold-light:  #b8903a;
  --gold-dark:   #5e4810;
  --gold-subtle: rgba(138, 104, 32, 0.08);
  --gold-border: rgba(138, 104, 32, 0.22);

  --text:        #0f0f0e;
  --text-muted:  #5c5650;
  --text-subtle: #c0bab4;

  --border:      rgba(0, 0, 0, 0.09);
  --border-gold: rgba(138, 104, 32, 0.22);

  --radius:      2px;
  --radius-lg:   4px;

  --font-head:   'Cormorant Garamond', Georgia, serif;
  --font-body:   'Inter', system-ui, sans-serif;

  --ease:        cubic-bezier(0.25, 0.1, 0.25, 1);
  --ease-out:    cubic-bezier(0, 0, 0.2, 1);

  --nav-h:       72px;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--text);
}

h1 { font-size: clamp(2.8rem, 6vw, 5.2rem); font-weight: 300; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 300; }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); font-weight: 400; }

em { font-style: italic; color: var(--gold); }

p { color: var(--text-muted); font-size: 0.97rem; }
p + p { margin-top: 1rem; }

.lead {
  font-size: 1.1rem;
  color: var(--text);
  font-weight: 300;
  line-height: 1.6;
}

.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

/* --- Layout --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.section {
  padding: 72px 0;
}

.section-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px;
}

.section-header h2 { margin-bottom: 0.8rem; }
.section-lead { font-size: 1rem; line-height: 1.7; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all 0.25s var(--ease);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: #ffffff;
  border: 1px solid var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(0, 0, 0, 0.22);
}
.btn-ghost:hover {
  border-color: var(--gold-border);
  color: var(--gold);
}

/* Ghost sur fond sombre (hero gauche) */
.btn-ghost-hero {
  background: transparent;
  color: rgba(255,255,255,0.75);
  border: 1px solid rgba(255,255,255,0.25);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all 0.25s var(--ease);
  white-space: nowrap;
}
.btn-ghost-hero:hover {
  border-color: rgba(255,255,255,0.6);
  color: #ffffff;
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold-border);
}
.btn-outline:hover {
  background: var(--gold-subtle);
  border-color: var(--gold);
}

.btn-nav {
  background: transparent;
  color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 10px 22px;
  font-size: 0.75rem;
  transition: all 0.25s var(--ease), color 0.3s, border-color 0.3s;
}
.btn-nav:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.6);
  color: #ffffff;
}
.nav.scrolled .btn-nav {
  color: var(--gold);
  border-color: var(--gold-border);
}
.nav.scrolled .btn-nav:hover {
  background: var(--gold-subtle);
  border-color: var(--gold);
}

.btn-full { width: 100%; justify-content: center; }

/* --- Scroll Reveal --- */
.reveal, .reveal-fast {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal-fast {
  transition-duration: 0.5s;
}
.reveal.is-visible, .reveal-fast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.univers-grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.univers-grid .reveal:nth-child(3) { transition-delay: 0.2s; }
.univers-grid .reveal:nth-child(4) { transition-delay: 0.3s; }
.reviews-grid .review-card:nth-child(2) { transition-delay: 0.1s; }
.reviews-grid .review-card:nth-child(3) { transition-delay: 0.2s; }
.reviews-grid .review-card:nth-child(4) { transition-delay: 0.3s; }
.galerie-grid .galerie-item:nth-child(2) { transition-delay: 0.08s; }
.galerie-grid .galerie-item:nth-child(3) { transition-delay: 0.16s; }
.galerie-grid .galerie-item:nth-child(4) { transition-delay: 0.08s; }
.galerie-grid .galerie-item:nth-child(5) { transition-delay: 0.16s; }
.galerie-grid .galerie-item:nth-child(6) { transition-delay: 0.24s; }

/* =====================================================
   LOGO
===================================================== */

/* Sur le hero (nav transparente, fond sombre) → logo blanc */
.nav-logo-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  flex-shrink: 0;
  filter: invert(1) brightness(1.6);
  mix-blend-mode: screen;
}

/* Footer (fond clair) → logo foncé */
.footer-logo-img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  filter: brightness(0.35) sepia(0.4);
  mix-blend-mode: multiply;
  flex-shrink: 0;
}

/* --- Review avatars --- */
.review-avatar {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--gold-border);
  flex-shrink: 0;
  background: var(--gold-subtle);
}
.review-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.review-avatar-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold);
}

/* =====================================================
   NAVIGATION
===================================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background 0.4s var(--ease), border-color 0.4s;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(10, 9, 7, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: rgba(255,255,255,0.08);
  box-shadow: 0 1px 24px rgba(0,0,0,0.3);
}

.nav-inner {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  margin-right: auto;
}
.nav-brand-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.nav-logo {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 0.02em;
  line-height: 1;
  transition: color 0.3s;
}
.nav.scrolled .nav-logo { color: #ffffff; }

.nav-sub {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
  transition: color 0.3s;
}
.nav.scrolled .nav-sub { color: var(--gold); }

.nav-links {
  display: flex;
  gap: 24px;
}
.nav-links a {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.3s;
  white-space: nowrap;
}
.nav-links a:hover { color: #ffffff; }

.nav-links a.nav-active,
.nav-links a.nav-link-active {
  color: #ffffff !important;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
}

.nav.scrolled .nav-links a {
  color: rgba(255,255,255,0.75);
}
.nav.scrolled .nav-links a:hover {
  color: #ffffff;
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  transition: transform 0.3s, opacity 0.3s;
}
/* Burger blanc sur fond sombre (hero transparent) */
.nav:not(.scrolled) .nav-burger span {
  background: #ffffff;
}
.nav-burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.nav-mobile {
  display: none;
  position: absolute;
  top: var(--nav-h);
  left: 0; right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 32px 40px 40px;
}
.nav-mobile.open { display: block; }
.nav-mobile ul { display: flex; flex-direction: column; gap: 24px; }
.nav-mobile a {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-muted);
  transition: color 0.2s;
}
.nav-mobile a:hover { color: var(--text); }
.nav-mobile .btn-primary { margin-top: 8px; }

/* =====================================================
   HERO — Plein écran + carrousel auto + texte gauche
===================================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
}

/* --- Carrousel --- */
.hero-slides {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 0;
  transition: opacity 3s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-slide.active {
  opacity: 1;
  z-index: 1;
}
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  transform: scale(1.04);
  transition: transform 7s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.hero-slide.active img {
  transform: scale(1);
}

/* Overlay directionnel : très sombre à gauche, s'allège vers la droite */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(8, 7, 5, 0.30) 0%,
    rgba(8, 7, 5, 0.10) 60%,
    rgba(8, 7, 5, 0.00) 100%
  );
  z-index: 1;
}
/* Ligne or séparatrice (décorative) */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,108,0.4), transparent);
  z-index: 2;
}
/* Fondu noir en haut pour lisibilité de la nav */
.hero-top-fade {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 160px;
  background: linear-gradient(to bottom, rgba(8,7,5,0.65) 0%, rgba(8,7,5,0.00) 100%);
  z-index: 2;
  pointer-events: none;
}

/* --- Texte ancré à gauche --- */
.hero-left {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 54%;
  max-width: 720px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-h) + 60px) 72px 80px;
  z-index: 3;
  background: linear-gradient(to right,
    rgba(8,7,5,0.93) 0%,
    rgba(8,7,5,0.88) 15%,
    rgba(8,7,5,0.68) 32%,
    rgba(8,7,5,0.44) 50%,
    rgba(8,7,5,0.20) 68%,
    rgba(8,7,5,0.06) 85%,
    rgba(8,7,5,0.00) 100%
  );
}

.hero-content { position: relative; }

.hero-title {
  margin: 0 0 24px;
  color: #ffffff;
  font-size: clamp(2.8rem, 4.5vw, 5rem);
  text-shadow: 0 2px 20px rgba(0,0,0,0.6);
}
.hero-title em { color: #d4ae6e; font-style: italic; }

.hero-subtitle {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 44px;
  max-width: 480px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.7);
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* --- Indicateurs slides --- */
.hero-dots {
  position: absolute;
  bottom: 36px;
  left: 72px;
  z-index: 3;
  display: flex;
  gap: 8px;
  align-items: center;
}
.hero-dot {
  width: 24px;
  height: 2px;
  background: rgba(255,255,255,0.3);
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.3s, width 0.3s;
}
.hero-dot.active {
  background: #d4ae6e;
  width: 40px;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  right: 48px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.3);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.hero-scroll:hover { color: rgba(255,255,255,0.6); }
.hero-scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scroll-pulse 2.2s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.9; }
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .hero-left {
    width: 100%;
    max-width: 100%;
    padding: calc(var(--nav-h) + 48px) 28px 100px;
  }
  .hero-title { font-size: 2.6rem; }
  .hero-dots  { left: 28px; }
  .hero-scroll { right: 24px; }
}
@media (max-width: 540px) {
  .hero-title { font-size: 2.1rem; }
  .hero-subtitle { font-size: 0.92rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn,
  .hero-actions .btn-ghost-hero { width: 100%; justify-content: center; }
}

/* =====================================================
   STATS
===================================================== */
.stats {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 40px;
  gap: 0;
}
.stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}
.stat-num {
  font-family: var(--font-head);
  font-size: 2.6rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.stat-num sup {
  font-size: 1.1rem;
  vertical-align: super;
  color: var(--gold-dark);
}
.stat-lbl {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.stat-sep {
  width: 1px;
  height: 48px;
  background: var(--border);
  flex-shrink: 0;
  margin: 0 40px;
}

/* =====================================================
   BOUTIQUE
===================================================== */
.boutique { background: var(--bg-surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

/* --- Onglets catalogue --- */
.cat-tabs {
  display: flex;
  border-bottom: 2px solid var(--border);
  margin-bottom: 32px;
  gap: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.cat-tabs::-webkit-scrollbar { display: none; }
.cat-tab {
  padding: 12px 32px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: color 0.2s, border-color 0.2s;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
}
.cat-tab:hover { color: var(--text); }
.cat-tab.active { color: var(--gold); border-bottom-color: var(--gold); }

@media (max-width: 640px) {
  .cat-tab { padding: 10px 18px; font-size: 0.72rem; }
}

.cat-panel { display: none; }
.cat-panel.active { display: block; }

.cat-panel[data-cat="acc"] .cat-card-img img,
.cat-panel[data-cat="club"] .cat-card-img img,
.cat-panel[data-cat="mili"] .cat-card-img img {
  object-fit: contain;
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}

.cat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s var(--ease);
}
.cat-card:hover {
  border-color: var(--gold-border);
  box-shadow: 0 8px 28px rgba(0,0,0,0.09);
  transform: translateY(-3px);
}
.cat-card-img {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, #f0ece3 0%, #e8e0d0 50%, #ddd4be 100%);
}
.cat-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.cat-card:hover .cat-card-img img { transform: scale(1.05); }
.cat-badge {
  position: absolute;
  top: 10px; left: 10px;
  background: var(--gold);
  color: #fff;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: var(--radius);
}
.cat-card-body {
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 6px;
}
.cat-card-body h4 {
  font-size: 1rem;
  font-weight: 500;
  margin: 0;
  color: var(--text);
}
.cat-card-body p {
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--text-muted);
  flex: 1;
  margin: 0;
}
.cat-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 8px;
}
.cat-price {
  font-size: 0.82rem;
  color: var(--text-muted);
}
.cat-price strong {
  color: var(--text);
  font-weight: 600;
}
.cat-price--link {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 400;
}
.cat-price--link strong {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.95rem;
}
a.cat-card {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}
a.cat-card:hover {
  border-color: var(--gold-border);
  box-shadow: 0 8px 28px rgba(0,0,0,0.09);
  transform: translateY(-3px);
}
.btn-sm {
  padding: 7px 14px;
  font-size: 0.75rem;
}

.boutique-note {
  margin-top: 32px;
  font-size: 0.78rem;
  color: var(--text-subtle);
  text-align: center;
}
.boutique-cta {
  margin-top: 32px;
  text-align: center;
}

/* =====================================================
   UNIVERS
===================================================== */
.univers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.univers-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s var(--ease), box-shadow 0.3s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
.univers-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.10);
}
.univers-card:hover .card-link { color: var(--gold-light); gap: 10px; }

.univers-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.univers-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.univers-card:hover .univers-img-wrap img { transform: scale(1.06); }

.univers-card-body {
  padding: 24px;
}
.univers-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.univers-card-body h3 { margin-bottom: 10px; font-size: 1.2rem; }
.univers-card-body p { font-size: 0.88rem; line-height: 1.6; }

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.25s, gap 0.25s;
}
.card-link span { transition: transform 0.25s; }

/* =====================================================
   SAVOIR-FAIRE
===================================================== */
.savoir {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.savoir-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.savoir-content h2 { margin-bottom: 24px; }
.savoir-content .lead { margin-bottom: 20px; }

.steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 40px;
}
.step {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.step-n {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 300;
  color: var(--gold-dark);
  line-height: 1;
  min-width: 48px;
}
.step-l {
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--text);
}

.savoir-visual {
  position: relative;
}
.savoir-visual img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.savoir-visual::before {
  content: '';
  position: absolute;
  inset: -12px;
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  z-index: -1;
}

/* =====================================================
   TABLES JDR
===================================================== */
.tables-jdr { background: var(--bg-surface); }

.tables-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 40px;
}

.tables-main-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 460px;
}
.tables-main-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.tables-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  align-content: start;
}
.table-thumb {
  border-radius: var(--radius);
  overflow: hidden;
  height: 144px;
}
.table-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}
.table-thumb:hover img { transform: scale(1.06); }

.tables-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-bottom: 40px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.table-feat {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 32px 40px 32px 0;
  border-right: 1px solid var(--border);
}
.table-feat:last-child {
  border-right: none;
  padding-left: 40px;
  padding-right: 0;
}
.table-feat:not(:first-child):not(:last-child) {
  padding-left: 40px;
}
.table-feat::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 4px;
}
.table-feat strong {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  font-family: var(--font-head);
  letter-spacing: 0.01em;
}
.table-feat span {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.tables-sep {
  text-align: center;
  margin: 48px 0;
  color: var(--gold);
  letter-spacing: 0.4em;
  font-size: 1rem;
  opacity: 0.5;
}
.tables-cta { text-align: center; }

@media (max-width: 900px) {
  .tables-grid { grid-template-columns: 1fr; }
  .tables-main-img { height: 300px; }
  .table-thumb { height: 110px; }
  .tables-features { grid-template-columns: 1fr; gap: 16px; }
}
@media (max-width: 540px) {
  .tables-thumbs { grid-template-columns: repeat(3, 1fr); }
  .table-thumb { height: 90px; }
}

/* =====================================================
   GALERIE
===================================================== */
.galerie-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.galerie-item:first-child {
  grid-row: unset;
}

.galerie-img-wrap {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--bg-elevated);
}
.galerie-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.7s var(--ease);
}
.galerie-item:hover .galerie-img-wrap img { transform: scale(1.06); }

.galerie-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 20px 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.78) 0%, transparent 100%);
  transform: translateY(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
}
.galerie-item:hover .galerie-caption { opacity: 1; transform: translateY(0); }

.gcap-cat {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.gcap-title {
  display: block;
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 400;
  color: #fff;
}

.galerie-event {
  margin-bottom: 16px;
}
.galerie-event-label {
  display: inline-block;
  font-size: 0.7rem;
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 2px;
  padding: 4px 12px;
}
.galerie-grid--featured .galerie-img-wrap {
  height: 240px;
}
.galerie-sep {
  margin: 32px 0;
  border: none;
  border-top: 1px solid var(--border);
}
.galerie-more {
  margin-top: 48px;
  text-align: center;
}

/* =====================================================
   ABOUT / QUI SUIS-JE
===================================================== */
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual { position: relative; }
.about-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.about-img-wrap img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center top;
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gold);
  color: #ffffff;
  padding: 20px 24px;
  text-align: center;
  border-radius: var(--radius);
}
.badge-n {
  display: block;
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1;
}
.badge-l {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 4px;
}

.about-content { padding-right: 20px; }
.about-content h2 { margin-bottom: 24px; }
.about-content .lead { margin-bottom: 20px; }
.about-actions {
  display: flex;
  gap: 16px;
  margin-top: 36px;
  flex-wrap: wrap;
}

/* =====================================================
   GRIMOIRE D'OR
===================================================== */
.grimoire {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* --- Marquee homepage --- */
.grimoire-marquee-wrap {
  overflow: hidden;
  padding: 8px 0;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
}
.grimoire-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: grimoire-scroll 70s linear infinite;
}
.grimoire-track:hover { animation-play-state: paused; }
@keyframes grimoire-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.mcard {
  width: 320px;
  flex-shrink: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 22px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}
.mcard-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.mcard-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--gold-subtle);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.mcard-avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.mcard-fallback {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold);
}
.mcard-stars {
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 2px;
  margin-bottom: 2px;
}
.mcard-name {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
}
.mcard-sub {
  font-size: 0.72rem;
  color: var(--text-muted);
}
.mcard-text {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.grimoire-cta {
  margin-top: 40px;
  text-align: center;
}

/* =====================================================
   CONTACT
===================================================== */
.contact { background: var(--bg); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}

.contact-content h2 { margin-bottom: 20px; }
.contact-content > p { margin-bottom: 40px; }

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-link {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color 0.2s;
}
.contact-link:hover { color: var(--gold-light); }
.clink-icon {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--gold);
  flex-shrink: 0;
}

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 20px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--text);
  outline: none;
  transition: border-color 0.25s;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-subtle);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold-border);
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235c5650' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}
.form-group select option { background: var(--bg-elevated); }
.form-group textarea { resize: vertical; min-height: 130px; }

/* =====================================================
   FOOTER
===================================================== */
.footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: flex;
  align-items: center;
  gap: 48px;
  padding: 48px 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-brand { margin-right: auto; display: flex; align-items: center; gap: 10px; }
.footer-logo {
  display: block;
  margin-bottom: 2px;
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1;
  margin-bottom: 4px;
}
.footer-tag {
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}
.footer-nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.footer-nav a {
  font-size: 0.78rem;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--text); }

.footer-social a {
  font-size: 0.78rem;
  color: var(--gold);
  border: 1px solid var(--gold-border);
  padding: 8px 16px;
  border-radius: var(--radius);
  transition: background 0.2s, border-color 0.2s;
}
.footer-social a:hover {
  background: var(--gold-subtle);
  border-color: var(--gold);
}

.footer-bottom {
  text-align: center;
  padding: 16px 40px;
  border-top: 1px solid var(--border);
  font-size: 0.72rem;
  color: var(--text-subtle);
  letter-spacing: 0.06em;
}

/* =====================================================
   RESPONSIVE
===================================================== */
@media (max-width: 1100px) {
  .univers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .boutique-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .container { padding: 0 24px; }

  .section { padding: 80px 0; }

  .savoir-inner,
  .about-inner,
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .savoir-visual { order: -1; }
  .savoir-visual::before { display: none; }
  .savoir-visual img { aspect-ratio: 16/9; }

  .about-img-wrap img { aspect-ratio: 16/9; }
  .about-badge { bottom: -16px; right: 16px; }
  .about-content { padding-right: 0; }

  .galerie-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .galerie-item:first-child {
    grid-column: unset;
    grid-row: unset;
  }

  .reviews-grid { grid-template-columns: 1fr; }

  .stats-grid {
    flex-wrap: wrap;
    gap: 32px;
    padding: 40px 24px;
  }
  .stat-sep { display: none; }
  .stat { flex: 0 0 calc(50% - 16px); }

  .nav-links, .btn-nav, .nav-inner > .btn-primary { display: none; }
  .nav-burger { display: flex; }
}

@media (max-width: 640px) {
  h1 { font-size: 2.4rem; }
  h2 { font-size: 1.8rem; }

  .boutique-grid { grid-template-columns: 1fr; }
  .univers-grid  { grid-template-columns: 1fr; }

  .galerie-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .galerie-img-wrap { height: 150px; }
  .galerie-caption { opacity: 1; transform: translateY(0); }

  .form-row { grid-template-columns: 1fr; }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    padding: 40px 24px;
  }
  .footer-nav { gap: 16px; }

  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}

/* =====================================================
   LIGHTBOX
===================================================== */
.lb-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(8, 7, 5, 0.95);
  align-items: center;
  justify-content: center;
}
.lb-overlay.open {
  display: flex;
}
.lb-img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
  user-select: none;
}
.lb-close {
  position: absolute;
  top: 20px; right: 24px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  font-size: 1.6rem;
  cursor: pointer;
  padding: 8px;
  line-height: 1;
  transition: color 0.2s;
}
.lb-close:hover { color: #ffffff; }
.lb-prev, .lb-next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.7);
  font-size: 2rem;
  width: 48px; height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, color 0.2s;
  line-height: 1;
}
.lb-prev { left: 20px; }
.lb-next { right: 20px; }
.lb-prev:hover, .lb-next:hover {
  background: rgba(255,255,255,0.18);
  color: #ffffff;
}
@media (max-width: 640px) {
  .lb-prev { left: 8px; }
  .lb-next { right: 8px; }
}
