@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=DM+Sans:wght@300;400;500&display=swap');

:root {
  --cream: #F5EFE0;
  --cream-alt: #EDE5D0;
  --gold: #C9961A;
  --gold-light: #E8B84B;
  --brown: #2C1A0E;
  --brown-mid: #5C3D22;
  --brown-soft: #8B6545;
  --white: #FDFAF4;
  --dark: #1A0F07;
  --line: rgba(44,26,14,0.10);
  --line-gold: rgba(201,150,26,0.25);

  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'DM Sans', sans-serif;

  --max: 1200px;
  --r: 16px;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--brown);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 300;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.container { width: min(var(--max), 92%); margin: 0 auto; }

/* ---- HEADER ---- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 0;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.site-header.scrolled {
  background: rgba(245,239,224,0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0;
  overflow: visible;
}
.brand img {
  height: 58px;
  width: auto;
  object-fit: contain;
  transform: scale(1.45);
  transform-origin: left center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-links a {
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brown-soft);
  position: relative;
  padding-bottom: 2px;
  transition: color 0.2s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--brown); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-cta {
  background: var(--brown);
  color: var(--white) !important;
  padding: 0.65em 1.4em;
  border-radius: 100px;
  font-size: 0.78rem !important;
  letter-spacing: 0.1em !important;
  transition: background 0.25s, transform 0.25s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--brown-mid) !important; transform: translateY(-1px) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 24px; height: 1.5px;
  background: var(--brown);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
  display: block;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ---- HERO GLOBAL XXL & SANS ESPACES MORTS ---- */
.hero {
  min-height: calc(100vh - 70px);
  display: grid;
  grid-template-columns: 1fr 1.25fr; /* On donne encore plus de place à la scène produit à droite */
  align-items: center;
  padding: clamp(30px, 4vh, 60px) 4%;
  position: relative;
  overflow: hidden;
  max-width: 1650px;
  margin: 0 auto;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 65% 50%, rgba(201,150,26,0.12) 0%, transparent 70%);
  pointer-events: none;
}

/* Bloc Texte Gauche */
.hero-left {
  padding: 1rem 0;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.hero-label::before {
  content: '';
  width: 35px; 
  height: 2px;
  background: var(--gold);
}

.hero h1 {
  font-size: clamp(3.2rem, 5.5vw, 6.2rem);
  color: var(--cream);
  margin-bottom: 1.2rem;
  line-height: 1.03;
}

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

.hero-desc {
  font-size: 1.1rem;
  color: rgba(245, 239, 224, 0.85);
  max-width: 40ch;
  margin-bottom: 1.8rem;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.btn-primary {
  background: var(--brown);
  color: var(--white);
  padding: 1.1em 2.5em;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
  display: inline-block;
  text-decoration: none;
}
.btn-primary:hover {
  background: var(--brown-mid);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(44,26,14,0.2);
}

.btn-outline {
    background: rgba(201,150,26,0.08);
    color: #E8B84B;
    border: 2px solid #C9961A;
    border-radius: 100px;
    width: 240px;
    height: 48px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    transition: all .3s ease;
    backdrop-filter: blur(8px);
}
.btn-outline:hover { 
  color: var(--gold); 
  border-color: var(--gold); 
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: var(--white);
  border: 1px solid var(--line-gold);
  border-radius: 100px;
  padding: 0.6em 1.4em;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--brown-mid);
  width: fit-content;
  box-shadow: 0 4px 15px rgba(44,26,14,0.04);
}
.hero-badge .dot {
  width: 7px; 
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

/* ---- HERO VISUEL DROIT (PRODUITS AGRANDIS SUR PC) ---- */
.hero-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  /* On force une hauteur de scène généreuse pour que les produits s'expriment pleinement */
  height: 100%;
  min-height: 580px;
  width: 100%;
  z-index: 1;
}

#hero-canvas {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  cursor: grab;
}
#hero-canvas:active { cursor: grabbing; }

.canvas-hint {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brown-soft);
  opacity: 0.7;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  pointer-events: none;
}
.canvas-hint svg { width: 14px; height: 14px; }


/* ==========================================
   RESPONSIVE TABLETTES ET MOBILES
   ========================================== */

@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 40px 5%;
    text-align: center;
  }

  .hero-left {
  padding: 1rem 0;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.45);
}

  .hero-label {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.2rem;
} 

.hero-label::before {
  content: '';
  width: 35px;
  height: 2px;
  background: var(--gold-light);
}
  .hero-desc {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-right {
    height: 420px;
    margin-top: 10px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 30px 20px;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 9vw, 3.4rem);
    margin-bottom: 1rem;
  }

  .hero-desc {
    font-size: 0.98rem;
    margin-bottom: 1.5rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 0.8rem;
  }

  .btn-primary, .btn-outline {
    width: 100%;
    text-align: center;
  }

  .btn-outline {
   width: auto;
   align-self: center;
   border-bottom: none;
   border: 1.5px solid rgba(245, 239, 224, 0.6);
   padding: 0.9em 2em;
   border-radius: 100px;
}
.btn-outline:hover {
  color: var(--gold-light);
  border-color: var(--gold-light);
}

  .hero-right {
    height: 340px;
    margin-top: 5px;
  }

  .canvas-hint {
    display: none;
  }
}

/* ---- MARQUE DÉFILANTE ---- */
.marquee-wrap {
  background: var(--brown);
  overflow: hidden;
  padding: 1.1rem 0;
  position: relative;
}
.marquee-track {
  display: flex;
  gap: 0;
  animation: marquee 22s linear infinite;
  width: max-content;
}
.marquee-track span {
  color: var(--cream-alt);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0 3rem;
  white-space: nowrap;
  opacity: 0.6;
}
.marquee-track span.sep {
  color: var(--gold);
  opacity: 0.9;
  padding: 0;
  letter-spacing: 0;
  font-size: 0.9rem;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---- SECTION PRODUITS ---- */
.section-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
}
.section-label::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--gold);
}

.products-section { padding: 7rem 0; background: var(--white); }
.products-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 4rem;
  gap: 2rem;
}
.products-header h2 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  color: var(--brown);
  max-width: 18ch;
}
.products-header p {
  font-size: 0.92rem;
  color: var(--brown-soft);
  max-width: 38ch;
  line-height: 1.7;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.product-card {
  background: var(--cream);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  cursor: pointer;
  position: relative;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(44,26,14,0.12);
}
.product-card-media {
  background: var(--cream-alt);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}
.product-card-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 30%, rgba(201,150,26,0.08), transparent 70%);
}
.product-card-media img {
  width: 80%;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform 0.6s var(--ease);
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 16px 32px rgba(44,26,14,0.15));
}
.product-card:hover .product-card-media img { transform: scale(1.06) translateY(-4px); }
.product-card-body { padding: 1.6rem 1.8rem 2rem; }
.product-tag {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
  display: block;
}
.product-card-body h3 {
  font-size: 1.4rem;
  color: var(--brown);
  margin-bottom: 0.5rem;
}
.product-card-body p { font-size: 0.88rem; color: var(--brown-soft); line-height: 1.6; margin-bottom: 0; }
.product-card-arrow {
  position: absolute;
  bottom: 1.6rem; right: 1.6rem;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--brown);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.3s, transform 0.3s;
}
.product-card-arrow svg { color: var(--white); width: 14px; height: 14px; }
.product-card:hover .product-card-arrow { opacity: 1; transform: scale(1); }

/* ---- STATS ---- */
.stats-section {
  background: var(--brown);
  padding: 5rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  border-top: 1px solid rgba(245,239,224,0.1);
  padding-top: 3rem;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
  display: block;
  margin-bottom: 0.4rem;
}
.stat-num sup { font-size: 0.45em; vertical-align: super; }
.stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245,239,224,0.45);
}
.stats-intro {
  text-align: center;
  margin-bottom: 3rem;
}
.stats-intro h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--cream);
  margin-bottom: 0.8rem;
}
.stats-intro p { font-size: 0.9rem; color: rgba(245,239,224,0.5); max-width: 42ch; margin: 0 auto; }

/* ---- VALEURS ---- */
.values-section { padding: 7rem 0; background: var(--cream); }
.values-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}
.values-left h2 {
  font-size: clamp(2.2rem, 3.8vw, 3.2rem);
  color: var(--brown);
  margin-bottom: 1.4rem;
}
.values-left p { font-size: 0.95rem; color: var(--brown-soft); line-height: 1.8; margin-bottom: 2rem; }

.values-list { display: flex; flex-direction: column; gap: 0; }
.value-item {
  padding: 1.6rem 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 1.2rem;
  align-items: start;
  transition: background 0.2s;
}
.value-item:last-child { border-bottom: 1px solid var(--line); }
.value-icon-wrap {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--cream-alt);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.value-icon-wrap svg { width: 20px; height: 20px; }
.value-item h4 { font-family: var(--font-display); font-size: 1.15rem; color: var(--brown); margin-bottom: 0.3rem; font-weight: 400; }
.value-item p { font-size: 0.88rem; color: var(--brown-soft); margin: 0; line-height: 1.6; }

/* ---- PROCESS ---- */
.process-section {
  padding: 7rem 0;
  background: var(--cream-alt);
  position: relative;
  overflow: hidden;
}
.process-section::before {
  content: 'THE FAME';
  position: absolute;
  right: -2rem;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  font-family: var(--font-display);
  font-size: 12rem;
  font-weight: 300;
  color: rgba(44,26,14,0.03);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: 0.2em;
}
.process-header { text-align: center; margin-bottom: 5rem; }
.process-header h2 { font-size: clamp(2rem, 3.5vw, 3rem); color: var(--brown); margin-bottom: 1rem; }
.process-header p { font-size: 0.92rem; color: var(--brown-soft); max-width: 46ch; margin: 0 auto; }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 14px);
  right: calc(12.5% + 14px);
  height: 1px;
  background: linear-gradient(to right, var(--gold) 0%, var(--gold) 100%);
  opacity: 0.3;
}
.process-step { padding: 0 1.5rem; text-align: center; }
.step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 1px solid var(--line-gold);
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--gold);
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 1;
}
.process-step h4 { font-size: 1.05rem; color: var(--brown); margin-bottom: 0.5rem; font-weight: 400; }
.process-step p { font-size: 0.84rem; color: var(--brown-soft); line-height: 1.6; }

/* ---- CTA ---- */
.cta-section { padding: 7rem 0; background: var(--white); }
.cta-inner {
  background: var(--brown);
  border-radius: 32px;
  padding: 5rem 4rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-inner::before {
  content: '';
  position: absolute;
  right: -80px; top: -80px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,150,26,0.12), transparent 70%);
}
.cta-inner h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--cream);
  margin-bottom: 0.8rem;
}
.cta-inner p { font-size: 0.92rem; color: rgba(245,239,224,0.55); max-width: 50ch; }
.btn-gold {
  background: var(--gold);
  color: var(--brown);
  padding: 0.95em 2.2em;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 0.25s, transform 0.25s;
  display: inline-block;
  flex-shrink: 0;
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }

/* ---- FOOTER ---- */
.site-footer {
  background: var(--dark);
  padding: 5rem 0 2.5rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(245,239,224,0.08);
}
.footer-brand img { height: 150px; margin-bottom: 1.2rem; filter: brightness(1.1); }
.footer-brand p { font-size: 0.84rem; color: rgba(245,239,224,0.38); line-height: 1.7; max-width: 28ch; }
.footer-col h5 {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,239,224,0.4);
  margin-bottom: 1.4rem;
}
.footer-col a {
  display: block;
  font-size: 0.88rem;
  color: rgba(245,239,224,0.6);
  padding: 0.3em 0;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  font-size: 0.78rem;
  color: rgba(245,239,224,0.25);
  flex-wrap: wrap;
  gap: 1rem;
}

/* ---- PAGE HERO ---- */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(6.5rem, 6vw + 2.5rem, 7.5rem) 0 1.6rem;
  text-align: center;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(201,150,26,0.10) 0%, transparent 58%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(2rem, 3.4vw, 2.7rem); color: var(--brown); margin-bottom: 0.6rem; }
.page-hero p { font-size: 0.92rem; color: var(--brown-soft); max-width: 54ch; margin: 0 auto; line-height: 1.6; }
.page-hero .section-label { justify-content: center; margin-bottom: 0.7rem; }

.page-hero-scroll {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  margin-top: 2.2rem;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brown-soft);
  opacity: 0.55;
}
.page-hero-scroll svg {
  width: 15px; height: 15px;
  animation: page-hero-bounce 1.8s ease-in-out infinite;
}
@keyframes page-hero-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

/* ---- ABOUT PAGE ---- */
.about-story { padding: 4.5rem 0 7rem; }
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.story-visual {
  background: var(--cream-alt);
  border-radius: 28px;
  aspect-ratio: 4/5;
  display: flex; align-items: center; justify-content: center;
  padding: 3rem;
  border: 1px solid var(--line);
}
.story-visual img { width: 100%; filter: drop-shadow(0 12px 28px rgba(44,26,14,0.12)); }
.story-text h2 { font-size: clamp(1.9rem, 3.2vw, 2.8rem); color: var(--brown); margin-bottom: 1.4rem; }
.story-text p { font-size: 0.93rem; color: var(--brown-soft); line-height: 1.8; margin-bottom: 1.2rem; }
.story-text p:last-of-type { margin-bottom: 2rem; }

/* ---- CONTACT PAGE ---- */
.contact-section { padding: 3rem 0 7rem; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
}
.contact-info { padding: 3rem; background: var(--brown); border-radius: 24px; }
.contact-info h3 { font-size: 1.6rem; color: var(--cream); margin-bottom: 0.8rem; font-weight: 300; }
.contact-info > p { font-size: 0.88rem; color: rgba(245,239,224,0.5); line-height: 1.7; margin-bottom: 2rem; }
.contact-items { display: flex; flex-direction: column; gap: 0; margin-bottom: 2.5rem; }
.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.2rem 0;
  border-top: 1px solid rgba(245,239,224,0.1);
}
.contact-item:first-child { border-top: none; }
.c-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(201,150,26,0.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light);
  flex-shrink: 0;
}
.c-icon svg { width: 17px; height: 17px; }
.contact-item h4 { font-family: var(--font-body); font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(245,239,224,0.4); margin-bottom: 0.2rem; font-weight: 400; }
.contact-item p { font-size: 0.9rem; color: rgba(245,239,224,0.75); margin: 0; }
.social-links { display: flex; gap: 0.7rem; }
.social-link {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(245,239,224,0.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(245,239,224,0.5);
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
}
.social-link svg { width: 17px; height: 17px; }
.social-link:hover { border-color: var(--gold); color: var(--gold-light); transform: translateY(-2px); }

.contact-form-wrap {
  background: var(--white);
  border-radius: 24px;
  padding: 3rem;
  border: 1px solid var(--line);
}
.contact-form-wrap h3 { font-size: 1.5rem; color: var(--brown); margin-bottom: 0.5rem; font-weight: 300; }
.contact-form-wrap > p { font-size: 0.88rem; color: var(--brown-soft); margin-bottom: 2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { margin-bottom: 1rem; }
.field label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brown-soft);
  margin-bottom: 0.5rem;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 0.85em 1.1em;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--cream);
  font-family: var(--font-body);
  font-size: 0.93rem;
  color: var(--brown);
  transition: border-color 0.2s;
  outline: none;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--gold);
  background: var(--white);
}
.field textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: 0.78rem; color: var(--brown-soft); opacity: 0.7; margin-top: 0.6rem; }
.form-success {
  display: none;
  align-items: center;
  gap: 0.7rem;
  background: rgba(201,150,26,0.1);
  border: 1px solid var(--line-gold);
  border-radius: 12px;
  padding: 1em 1.3em;
  font-size: 0.9rem;
  color: var(--brown-mid);
  margin-top: 1rem;
}
.form-success.show { display: flex; }
.form-success svg { color: var(--gold); width: 18px; height: 18px; flex-shrink: 0; }

/* ---- OU TROUVER ---- */
.how-section { padding: 2.5rem 0 3.5rem; background: var(--white); }
.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3.5rem; }
.how-card {
  background: var(--cream);
  border-radius: 20px;
  padding: 2.2rem 2rem;
  border: 1px solid var(--line);
}
.how-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.6;
  display: block;
  margin-bottom: 1rem;
  line-height: 1;
}
.how-card h4 { font-size: 1.05rem; color: var(--brown); margin-bottom: 0.6rem; font-weight: 400; }
.how-card p { font-size: 0.86rem; color: var(--brown-soft); line-height: 1.65; margin: 0; }

/* ---- DEPOTS ---- */
.depots-section { padding: 4rem 0 7rem; background: var(--cream); }
.filter-bar {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.filter-btn {
  padding: 0.5em 1.3em;
  border-radius: 100px;
  border: 1px solid var(--line);
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--brown-soft);
  cursor: pointer;
  transition: all 0.2s;
}
.filter-btn:hover { border-color: var(--brown); color: var(--brown); }
.filter-btn.active { background: var(--brown); color: var(--white); border-color: var(--brown); }

.depots-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}
.depot-card {
  background: var(--white);
  border-radius: 16px;
  padding: 1.5rem 1.6rem;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.depot-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(44,26,14,0.09);
}
.depot-region {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.2rem;
}
.depot-card h3 { font-size: 0.95rem; color: var(--brown); font-family: var(--font-body); font-weight: 500; margin-bottom: 0.1rem; }
.depot-card p { font-size: 0.82rem; color: var(--brown-soft); line-height: 1.5; margin: 0 0 0.8rem; flex: 1; }
.depot-link {
  font-size: 0.77rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.2s;
}
.depot-link:hover { gap: 0.7rem; }
.depot-link svg { width: 12px; height: 12px; }

.dps-notice {
  margin-top: 2.5rem;
  background: var(--cream-alt);
  border-radius: 14px;
  padding: 1.2rem 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  border: 1px solid var(--line);
}
.dps-notice svg { color: var(--gold); flex-shrink: 0; width: 18px; height: 18px; margin-top: 2px; }
.dps-notice p { font-size: 0.84rem; color: var(--brown-soft); margin: 0; line-height: 1.6; }
.dps-notice a { color: var(--gold); border-bottom: 1px solid var(--line-gold); }
.dps-notice a:hover { color: var(--brown); }

.map-wrap {
  margin-top: 4rem;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  height: 420px;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

/* ---- REVEAL ANIMATIONS ---- */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
[data-reveal].visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 80px; }
  .hero-right { height: auto; min-height: unset; }
  .hero-left { align-items: center; text-align: center; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .values-layout { grid-template-columns: 1fr; gap: 3rem; }
  .story-grid { grid-template-columns: 1fr; }
  .story-visual { max-width: 320px; margin: 0 auto; order: -1; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .process-steps::before { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .depots-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-actions { justify-content: center; }
  .hero-badge { align-self: center; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    min-height: 100dvh;
    background: rgba(245, 239, 224, 0.98);
    backdrop-filter: blur(16px);
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    z-index: 999;
  }
  .nav-links.open a {
    font-size: 1.6rem;
    letter-spacing: 0.15em;
    color: var(--brown);
  }

  .nav-links.open .nav-cta {
    background: var(--brown);
    color: var(--white) !important;
    padding: 0.8em 2em;
    border-radius: 100px;
    font-size: 0.9rem !important;
  }


  .hero-right { height: auto; min-height: unset; margin-top: 0; padding: 0; }
  .nav-toggle { display: flex; position: relative; z-index: 1000; }
  .products-header { flex-direction: column; align-items: flex-start; }
  .products-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .cta-inner { grid-template-columns: 1fr; padding: 3rem 2.2rem; text-align: center; }
  .how-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .depots-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: 1fr; }
  .products-section, .values-section, .cta-section, .process-section { padding: 5rem 0; }
  .page-hero { padding: clamp(5.5rem, 20vw, 6.5rem) 0 1.4rem; }
  .about-story { padding: 3rem 0 5rem; }
  .contact-section { padding: 2.5rem 0 5rem; }
  .how-section { padding: 2rem 0 2.5rem; }

  /* Cartes contact : moins de padding pour ne pas écraser le contenu en largeur */
  .contact-form-wrap,
  .contact-info {
    padding: 1.8rem 1.5rem;
    border-radius: 18px;
  }

  /* Le bouton ne doit jamais casser sur 2 lignes */
  .btn-primary,
.btn-outline {
    display: inline-flex;
    justify-content: center;
    align-items: center;

    width: 240px;      /* même largeur */
    height: 48px;      /* même hauteur */

    border-radius: 100px;
    text-align: center;
    box-sizing: border-box;
}

.btn-primary {
    background: var(--brown);
    color: var(--white);
    border: none;
    padding: 0;
}

.btn-outline {
    background: rgba(201,150,26,0.08);
    color: #E8B84B;
    border: 2px solid #C9961A;
    border-radius: 100px;
    width: 240px;
    height: 48px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    transition: all .3s ease;
    backdrop-filter: blur(8px);
}

}

@media (max-width: 480px) {
  .depots-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  .page-hero-scroll svg { animation: none; }
}

@media (max-width: 640px) {
  .site-header.scrolled {
    background: rgba(245, 239, 224, 0.98);
    backdrop-filter: blur(16px);
  }

  .brand img {
    height: 52px !important;
    transform: scale(1.35) !important;
    transform-origin: left center !important;
  }

  .nav-toggle span {
    background: var(--brown);
  }
}

/* ==========================================================
   AJUSTEMENTS — pages secondaires plus compactes et harmonisées
   (À propos / Contact / Où nous trouver)
   ========================================================== */

/* Hero de page nettement plus court : moins de vide au premier écran */
.geo-section { padding-top: 1.2rem; }

/* Rapproche la story-section de la page À propos du hero */
.about-story { padding-top: 2.2rem; }

/* Contact : resserre légèrement sous le hero raccourci */
.contact-section { padding-top: 2rem; }