/* ═══════════════════════════════════════════
   ELS BÉNIN — Elegant Living Space
   Feuille de style partagée entre toutes les pages
   ═══════════════════════════════════════════ */

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

:root {
  --gold: #c9a97a;
  --gold-light: #dfc08e;
  --gold-pale: #f0dfc0;
  --noir: #070e1a;
  --charbon: #0d1b2e;
  --gris-fonce: #112236;
  --gris-moyen: #1a3050;
  --gris-clair: #7a90aa;
  --blanc-creme: #f2ede4;
  --blanc: #ffffff;
  --marine: #0d1b2e;
  --marine-light: #142640;
  --transition: cubic-bezier(0.76, 0, 0.24, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--charbon);
  color: var(--blanc-creme);
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 300;
  cursor: none;
  overflow-x: hidden;
}

/* ─── CURSEUR ─── */
.cursor {
  width: 10px; height: 10px; background: var(--gold); border-radius: 50%;
  position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%);
  transition: width .3s var(--transition), height .3s var(--transition), background .3s;
}
.cursor-ring {
  width: 36px; height: 36px; border: 1px solid rgba(201,169,122,.5); border-radius: 50%;
  position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9998;
  transform: translate(-50%,-50%);
  transition: transform .18s ease, width .3s var(--transition), height .3s var(--transition);
}
body:has(a:hover) .cursor,
body:has(button:hover) .cursor { width: 20px; height: 20px; background: var(--gold-light); }
body:has(a:hover) .cursor-ring,
body:has(button:hover) .cursor-ring { width: 60px; height: 60px; opacity: .4; }

/* ─── NAVIGATION ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 60px; height: 80px;
  background: rgba(7,14,26,.96);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border-bottom: 1px solid rgba(201,169,122,.22);
  box-shadow: 0 4px 32px rgba(7,14,26,.55);
  transition: background .4s, box-shadow .4s;
}
nav::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(to right, transparent 0%, rgba(201,169,122,0) 5%, rgba(201,169,122,.7) 30%, var(--gold) 50%, rgba(201,169,122,.7) 70%, rgba(201,169,122,0) 95%, transparent 100%);
}
nav.scrolled { background: rgba(7,14,26,.99); box-shadow: 0 6px 40px rgba(7,14,26,.8); }

.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo-svg { width: 48px; height: 48px; flex-shrink: 0; filter: drop-shadow(0 0 6px rgba(201,169,122,.3)); transition: filter .3s; }
.nav-logo:hover .nav-logo-svg { filter: drop-shadow(0 0 10px rgba(201,169,122,.6)); }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1; }
.nav-logo-main { font-family: 'Cormorant Garamond', serif; font-size: 17px; font-weight: 400; letter-spacing: .25em; color: var(--blanc-creme); }
.nav-logo-sub { font-family: 'Josefin Sans', sans-serif; font-size: 8.5px; font-weight: 300; letter-spacing: .35em; text-transform: uppercase; color: var(--gold); margin-top: 3px; }

.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gris-clair); text-decoration: none; position: relative; transition: color .3s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width .4s var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--gold-light); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-divider { width: 1px; height: 28px; background: rgba(201,169,122,.18); flex-shrink: 0; }
.nav-actions { display: flex; align-items: center; gap: 24px; }
.nav-cart {
  position: relative; cursor: pointer; color: var(--gris-clair);
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  text-decoration: none; transition: color .3s;
}
.nav-cart:hover { color: var(--gold); }
.cart-badge {
  position: absolute; top: -8px; right: -10px;
  background: var(--gold); color: var(--noir);
  font-size: 9px; width: 16px; height: 16px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 400;
}
.nav-cta {
  padding: 10px 28px; border: 1px solid var(--gold);
  color: var(--gold); font-size: 10px; letter-spacing: .25em; text-transform: uppercase;
  text-decoration: none; transition: background .3s, color .3s;
}
.nav-cta:hover { background: var(--gold); color: var(--noir); }

/* ─── PAGE HERO INTÉRIEURE ─── */
.page-hero {
  min-height: 420px; padding-top: 80px;
  position: relative; display: flex; align-items: flex-end;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.04);
  animation: phZoom 12s ease-out forwards;
}
@keyframes phZoom { to { transform: scale(1); } }
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(7,14,26,.95) 0%, rgba(7,14,26,.5) 50%, rgba(7,14,26,.2) 100%);
}
.page-hero-content {
  position: relative; z-index: 2;
  padding: 60px 100px 70px;
  animation: phSlide 1s var(--transition) .2s both;
}
@keyframes phSlide { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.page-hero-label {
  font-size: 10px; letter-spacing: .4em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
  display: flex; align-items: center; gap: 14px;
}
.page-hero-label::before { content: ''; width: 36px; height: 1px; background: var(--gold); }
.page-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(42px, 6vw, 80px); font-weight: 300;
  color: var(--blanc-creme); line-height: 1;
}
.page-hero-title em { font-style: italic; color: var(--gold-light); }
.page-hero-sub {
  font-size: 12px; letter-spacing: .12em; color: var(--gris-clair);
  margin-top: 16px; max-width: 520px; line-height: 2;
}

/* Fil d'Ariane */
.breadcrumb {
  position: absolute; top: 96px; right: 60px; z-index: 3;
  display: flex; align-items: center; gap: 10px;
  font-size: 9px; letter-spacing: .2em; color: var(--gris-clair); text-transform: uppercase;
}
.breadcrumb a { color: var(--gris-clair); text-decoration: none; transition: color .3s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold); }

/* ─── BOUTONS ─── */
.btn-primary {
  padding: 16px 44px; background: var(--gold); color: var(--noir);
  font-size: 10px; letter-spacing: .3em; text-transform: uppercase;
  text-decoration: none; font-family: 'Josefin Sans', sans-serif;
  transition: background .3s, transform .3s; display: inline-block;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-ghost {
  padding: 16px 44px; border: 1px solid rgba(201,169,122,.4);
  color: var(--gold-pale); font-size: 10px; letter-spacing: .3em; text-transform: uppercase;
  text-decoration: none; font-family: 'Josefin Sans', sans-serif;
  transition: border-color .3s, color .3s, transform .3s; display: inline-block;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

/* ─── SECTIONS ─── */
.section-block { padding: 100px 0; }
.section-block.alt { background: var(--gris-fonce); }
.section-block.dark { background: var(--noir); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 60px; }
.section-header { text-align: center; margin-bottom: 70px; }
.section-label { font-size: 10px; letter-spacing: .4em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.section-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(34px,4vw,56px); font-weight: 300; color: var(--blanc-creme); line-height: 1.1; }
.section-title em { font-style: italic; color: var(--gold-light); }
.section-divider { width: 60px; height: 1px; background: linear-gradient(to right, transparent, var(--gold), transparent); margin: 20px auto 0; }

/* ─── GRILLE 3 COL ─── */
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }

/* ─── CARDS UNIVERSELLES ─── */
.card {
  background: var(--marine-light); padding: 44px 36px;
  border: 1px solid rgba(201,169,122,.1);
  transition: border-color .3s, transform .4s var(--transition);
}
.card:hover { border-color: rgba(201,169,122,.35); transform: translateY(-4px); }
.card-icon {
  width: 52px; height: 52px; border: 1px solid rgba(201,169,122,.3);
  display: flex; align-items: center; justify-content: center; margin-bottom: 24px;
  transition: border-color .3s, background .3s;
}
.card:hover .card-icon { border-color: var(--gold); background: rgba(201,169,122,.08); }
.card-icon svg { width: 22px; height: 22px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.card h3 { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 300; color: var(--blanc-creme); margin-bottom: 12px; }
.card p { font-size: 12px; line-height: 2; color: var(--gris-clair); }

/* ─── CHIFFRES CLÉS ─── */
.stats-bar { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; background: var(--noir); }
.stat-item { padding: 50px 36px; border-right: 1px solid rgba(201,169,122,.1); text-align: center; }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: 'Cormorant Garamond', serif; font-size: 52px; font-weight: 300; color: var(--gold); line-height: 1; }
.stat-suffix { color: var(--gold-light); font-size: 28px; }
.stat-label { font-size: 10px; letter-spacing: .2em; color: var(--gris-clair); text-transform: uppercase; margin-top: 8px; }

/* ─── TIMELINE ─── */
.timeline { position: relative; padding-left: 40px; }
.timeline::before { content: ''; position: absolute; left: 0; top: 8px; bottom: 8px; width: 1px; background: linear-gradient(to bottom, var(--gold), rgba(201,169,122,.1)); }
.timeline-item { position: relative; margin-bottom: 48px; }
.timeline-item::before { content: ''; position: absolute; left: -46px; top: 6px; width: 12px; height: 12px; border: 1px solid var(--gold); background: var(--charbon); }
.timeline-year { font-size: 10px; letter-spacing: .3em; color: var(--gold); text-transform: uppercase; margin-bottom: 6px; }
.timeline-title { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 300; color: var(--blanc-creme); margin-bottom: 8px; }
.timeline-text { font-size: 12px; line-height: 1.9; color: var(--gris-clair); }

/* ─── FORM ─── */
.form-group { margin-bottom: 24px; }
.form-label { font-size: 10px; letter-spacing: .25em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 8px; }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 14px 20px;
  background: rgba(7,14,26,.6); border: 1px solid rgba(201,169,122,.2);
  color: var(--blanc-creme); font-family: 'Josefin Sans', sans-serif;
  font-size: 12px; letter-spacing: .05em; outline: none;
  transition: border-color .3s; -webkit-appearance: none;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--gris-clair); }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: rgba(201,169,122,.55); }
.form-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='%23c9a97a' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }
.form-textarea { min-height: 140px; resize: vertical; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-submit {
  width: 100%; padding: 18px; background: var(--gold); border: none; cursor: pointer;
  font-family: 'Josefin Sans', sans-serif; font-size: 10px; letter-spacing: .3em;
  text-transform: uppercase; color: var(--noir); font-weight: 300; transition: background .3s;
}
.form-submit:hover { background: var(--gold-light); }

/* ─── TOAST ─── */
.toast {
  position: fixed; bottom: 40px; right: 40px; z-index: 300;
  background: var(--gold); color: var(--noir); padding: 14px 28px;
  font-size: 10px; letter-spacing: .2em; text-transform: uppercase;
  transform: translateY(20px); opacity: 0;
  transition: all .4s var(--transition); pointer-events: none;
}
.toast.show { transform: translateY(0); opacity: 1; }

/* ─── TICKER ─── */
.ticker-wrap { background: var(--gold); padding: 14px 0; overflow: hidden; }
.ticker { display: flex; white-space: nowrap; animation: ticker 30s linear infinite; }
.ticker span { font-size: 10px; letter-spacing: .3em; text-transform: uppercase; color: var(--noir); padding: 0 40px; }
.ticker span::before { content: '◆  '; opacity: .5; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ─── FOOTER ─── */
footer { background: var(--noir); border-top: 1px solid rgba(201,169,122,.15); padding: 80px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; max-width: 1200px; margin: 0 auto; padding: 0 60px; }
.footer-logo-wrap { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.footer-brand .brand-name { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 400; color: var(--blanc-creme); letter-spacing: .12em; line-height: 1.2; }
.footer-brand .brand-name span { color: var(--gold); font-size: 11px; letter-spacing: .3em; display: block; font-family: 'Josefin Sans', sans-serif; font-weight: 300; }
.footer-brand p { font-size: 11px; line-height: 1.9; color: var(--gris-clair); margin-bottom: 24px; }
.footer-social { display: flex; gap: 12px; }
.social-btn { width: 36px; height: 36px; border: 1px solid rgba(201,169,122,.25); display: flex; align-items: center; justify-content: center; color: var(--gris-clair); font-size: 12px; transition: border-color .3s, color .3s, background .3s; text-decoration: none; cursor: pointer; }
.social-btn:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,169,122,.1); }
.footer-col h4 { font-size: 10px; letter-spacing: .3em; text-transform: uppercase; color: var(--gold); margin-bottom: 24px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { font-size: 11px; color: var(--gris-clair); text-decoration: none; letter-spacing: .05em; transition: color .3s; }
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-bottom { max-width: 1200px; margin: 60px auto 0; padding: 24px 60px 0; border-top: 1px solid rgba(255,255,255,.05); display: flex; justify-content: space-between; align-items: center; }
.footer-copy { font-size: 10px; color: var(--gris-clair); letter-spacing: .1em; }
.footer-payments { display: flex; gap: 8px; }
.payment-chip { padding: 4px 10px; border: 1px solid rgba(201,169,122,.2); font-size: 9px; letter-spacing: .1em; color: var(--gris-clair); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  nav { padding: 0 30px; }
  .nav-links { display: none; }
  .page-hero-content { padding: 40px 40px 60px; }
  .container { padding: 0 30px; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-2 { grid-template-columns: 1fr; gap: 40px; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; padding: 0 30px; }
  .footer-bottom { padding: 24px 30px 0; flex-direction: column; gap: 16px; text-align: center; }
}
@media (max-width: 640px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .section-block { padding: 70px 0; }
  .breadcrumb { display: none; }
}



  :root {
    --gold: #c9a97a;
    --gold-light: #dfc08e;
    --gold-pale: #f0dfc0;
    --noir: #070e1a;
    --charbon: #0d1b2e;
    --gris-fonce: #112236;
    --gris-moyen: #1a3050;
    --gris-clair: #7a90aa;
    --blanc-creme: #f2ede4;
    --blanc: #ffffff;
    --marine: #0d1b2e;
    --marine-light: #142640;
    --transition: cubic-bezier(0.76, 0, 0.24, 1);
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    background: var(--charbon);
    color: var(--blanc-creme);
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 300;
    cursor: default;
    overflow-x: hidden;
  }

  /* ─── NAV ─── */
  nav {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 60px;
    height: 80px;
    background: rgba(7, 14, 26, 0.96);
    backdrop-filter: blur(18px) saturate(1.4);
    -webkit-backdrop-filter: blur(18px) saturate(1.4);
    border-bottom: 1px solid rgba(201, 169, 122, 0.22);
    box-shadow: 0 4px 32px rgba(7, 14, 26, 0.55), 0 1px 0 rgba(201,169,122,0.08);
    transition: background 0.4s, box-shadow 0.4s;
  }

  nav::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(to right,
      transparent 0%,
      rgba(201,169,122,0.0) 5%,
      rgba(201,169,122,0.7) 30%,
      var(--gold) 50%,
      rgba(201,169,122,0.7) 70%,
      rgba(201,169,122,0.0) 95%,
      transparent 100%
    );
  }

  nav.scrolled {
    background: rgba(7, 14, 26, 0.99);
    box-shadow: 0 6px 40px rgba(7, 14, 26, 0.8), 0 1px 0 rgba(201,169,122,0.1);
  }

  /* ─── LOGO ─── */
  .nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
  }
  .nav-logo-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    border-radius: 4px;
    filter: drop-shadow(0 0 8px rgba(201,169,122,0.25));
    transition: filter 0.3s, transform 0.3s;
  }
  .nav-logo:hover .nav-logo-img {
    filter: drop-shadow(0 0 16px rgba(201,169,122,0.5));
    transform: scale(1.02);
  }
  .nav-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
  }
  .nav-logo-main {
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px;
    font-weight: 400;
    letter-spacing: 0.25em;
    color: var(--blanc-creme);
  }
  .nav-logo-sub {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 8.5px;
    font-weight: 300;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 3px;
  }

  /* ─── NAV LINKS ─── */
  .nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0 auto;
    padding: 0 15px;
  }
  .nav-links a {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gris-clair);
    text-decoration: none;
    position: relative;
    transition: color 0.3s;
    white-space: nowrap;
  }
  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.4s var(--transition);
  }
  .nav-links a:hover { color: var(--gold-light); }
  .nav-links a:hover::after { width: 100%; }
  .nav-links a.active { color: var(--gold); }

  /* ─── BOUTON DEVIS (à droite) ─── */
  .nav-devis-btn {
    padding: 8px 22px;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s;
    background: transparent;
    font-family: 'Josefin Sans', sans-serif;
    white-space: nowrap;
    flex-shrink: 0;
    border-radius: 2px;
  }
  .nav-devis-btn:hover {
    background: var(--gold);
    color: var(--noir);
  }

  /* ─── MENU BURGER ─── */
  .menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
    flex-shrink: 0;
  }
  .menu-toggle span {
    width: 28px;
    height: 2px;
    background: var(--gold);
    transition: 0.3s;
    border-radius: 2px;
  }
  .menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .menu-toggle.active span:nth-child(2) { opacity: 0; }
  .menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  /* ─── HERO ─── */
  .hero {
    height: 100vh;
    min-height: 700px;
    position: relative;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    padding-top: 80px;
  }
  .hero-bg {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(135deg, rgba(7,14,26,0.6) 0%, rgba(13,27,46,0.3) 55%, rgba(201,169,122,0.05) 100%),
      url('Facade\ gros\ plans.jpg') center/cover no-repeat;
    transform: scale(1.05);
    animation: heroZoom 12s ease-out forwards;
  }
  @keyframes heroZoom { to { transform: scale(1); } }

  .hero-grain {
    position: absolute;
    inset: 0;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    pointer-events: none;
  }

  .hero-line {
    position: absolute;
    left: 60px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(201,168,76,0.3) 40%, rgba(201,168,76,0.3) 60%, transparent);
    animation: lineFade 2s ease 0.5s both;
  }
  @keyframes lineFade { from { opacity: 0; } to { opacity: 1; } }

  .hero-content {
    position: relative;
    z-index: 2;
    padding: 0 120px 100px;
    animation: heroSlide 1.2s var(--transition) 0.3s both;
  }
  @keyframes heroSlide { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }

  .hero-label {
    font-size: 10px;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .hero-label::before { content: ''; width: 40px; height: 1px; background: var(--gold); }

  .hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(56px, 7vw, 100px);
    font-weight: 300;
    line-height: 1;
    color: var(--blanc-creme);
    margin-bottom: 28px;
  }
  .hero-title em { font-style: italic; color: var(--gold-light); }

  .hero-sub {
    font-size: 12px;
    letter-spacing: 0.15em;
    color: var(--gris-clair);
    max-width: 400px;
    line-height: 2;
    margin-bottom: 48px;
  }

  .hero-btns {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
  }

  .btn-primary {
    padding: 16px 44px;
    background: var(--gold);
    color: var(--noir);
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    text-decoration: none;
    font-family: 'Josefin Sans', sans-serif;
    transition: background 0.3s, transform 0.3s;
    display: inline-block;
  }
  .btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }

  .btn-ghost {
    padding: 16px 44px;
    border: 1px solid rgba(201,168,76,0.4);
    color: var(--gold-pale);
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    text-decoration: none;
    font-family: 'Josefin Sans', sans-serif;
    transition: border-color 0.3s, color 0.3s, transform 0.3s;
    display: inline-block;
  }
  .btn-ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

  .hero-scroll {
    position: absolute;
    bottom: 40px;
    right: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    font-size: 9px;
    letter-spacing: 0.3em;
    color: var(--gris-clair);
    writing-mode: vertical-rl;
    text-transform: uppercase;
  }
  .hero-scroll::after {
    content: '';
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollLine 1.5s ease-in-out infinite;
  }
  @keyframes scrollLine { 0%,100%{opacity:1;transform:scaleY(1)} 50%{opacity:0.3;transform:scaleY(0.5)} }

  .hero-logo-float {
    position: absolute;
    right: 130px;
    top: 50%;
    transform: translateY(-50%);
    width: 180px;
    height: 180px;
    opacity: 0;
    animation: floatLogoIn 1.8s var(--transition) 0.8s both;
    z-index: 2;
  }
  @keyframes floatLogoIn {
    from { opacity: 0; transform: translateY(-50%) scale(0.8) rotate(-10deg); }
    to   { opacity: 0.55; transform: translateY(-50%) scale(1) rotate(0deg); }
  }
  .hero-logo-float svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 24px rgba(201,169,122,0.35));
    animation: floatPulse 6s ease-in-out infinite;
  }
  @keyframes floatPulse {
    0%,100% { filter: drop-shadow(0 0 18px rgba(201,169,122,0.3)); transform: rotate(0deg); }
    50%      { filter: drop-shadow(0 0 34px rgba(201,169,122,0.55)); transform: rotate(3deg); }
  }

  /* ─── TICKER ─── */
  .ticker-wrap {
    background: var(--gold);
    padding: 14px 0;
    overflow: hidden;
  }
  .ticker {
    display: flex;
    white-space: nowrap;
    animation: ticker 30s linear infinite;
  }
  .ticker span {
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--noir);
    padding: 0 40px;
  }
  .ticker span::before { content: '◆  '; opacity: 0.5; }
  @keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

  /* ─── SECTIONS COMMUNES ─── */
  section { padding: 120px 0; }

  .section-header {
    text-align: center;
    margin-bottom: 80px;
  }
  .section-label {
    font-size: 10px;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
  }
  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 4vw, 58px);
    font-weight: 300;
    color: var(--blanc-creme);
    line-height: 1.1;
  }
  .section-title em { font-style: italic; color: var(--gold-light); }
  .section-divider {
    width: 60px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    margin: 24px auto 0;
  }

  /* ─── SAVOIR-FAIRE ─── */
  .savoir-faire { background: var(--noir); }

  .savoir-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    max-width: 1400px;
    margin: 0 auto;
  }
  .savoir-image {
    position: relative;
    overflow: hidden;
    height: 600px;
  }
  .savoir-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--transition);
    filter: brightness(0.75) saturate(0.8);
  }
  .savoir-image:hover img { transform: scale(1.06); }
  .savoir-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(7,14,26,0.75) 0%, transparent 60%);
  }
  .savoir-image-label {
    position: absolute;
    bottom: 30px;
    left: 30px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-style: italic;
    color: var(--blanc-creme);
  }

  .savoir-text {
    padding: 80px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--gris-fonce);
  }
  .savoir-text p {
    font-size: 13px;
    line-height: 2.2;
    color: var(--gris-clair);
    margin-bottom: 20px;
  }
  .savoir-text p strong {
    color: var(--gold-pale);
    font-weight: 300;
  }
  .savoir-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
  }
  .stat-item { border-left: 1px solid rgba(201,169,122,0.35); padding-left: 20px; }
  .stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    font-weight: 300;
    color: var(--gold);
  }
  .stat-label {
    font-size: 10px;
    letter-spacing: 0.2em;
    color: var(--gris-clair);
    text-transform: uppercase;
    margin-top: 4px;
  }

  /* ─── CATÉGORIES ─── */
  .categories { background: var(--charbon); }

  .cat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 2px;
    max-width: 1400px;
    margin: 0 auto;
  }
  .cat-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    height: 380px;
  }
  .cat-card:first-child { grid-column: span 2; }
  .cat-card:nth-child(4) { grid-column: span 2; }

  .cat-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--transition);
    filter: brightness(0.6) saturate(0.7);
  }
  .cat-card:hover img { transform: scale(1.08); filter: brightness(0.5) saturate(0.7); }

  .cat-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(7,14,26,0.35) 0%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 36px;
    transition: background 0.4s;
  }
  .cat-card:hover .cat-overlay { background: linear-gradient(135deg, rgba(7,14,26,0.6) 0%, rgba(201,169,122,0.12) 100%); }

  .cat-tag {
    font-size: 9px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
  }
  .cat-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 30px;
    font-weight: 300;
    color: var(--blanc-creme);
    line-height: 1.1;
  }
  .cat-count {
    font-size: 10px;
    letter-spacing: 0.15em;
    color: var(--gris-clair);
    margin-top: 8px;
    transition: color 0.3s;
  }
  .cat-card:hover .cat-count { color: var(--gold-light); }

  .cat-arrow {
    position: absolute;
    top: 36px;
    right: 36px;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(201,169,122,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translate(10px, -10px);
    transition: opacity 0.3s, transform 0.3s var(--transition);
  }
  .cat-card:hover .cat-arrow { opacity: 1; transform: translate(0,0); }
  .cat-arrow svg { width: 16px; height: 16px; stroke: var(--gold); fill: none; }

  /* ─── PRODUITS ─── */
  .produits { background: var(--gris-fonce); }

  .produits-filter {
    display: flex;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
    margin: 0 auto 40px;
    max-width: 1400px;
  }
  .filter-btn {
    padding: 12px 32px;
    cursor: pointer;
    font-size: 10px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gris-clair);
    background: transparent;
    border: 1px solid rgba(201,169,122,0.15);
    border-left: none;
    transition: all 0.3s;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 300;
  }
  .filter-btn:first-child { border-left: 1px solid rgba(201,169,122,0.15); }
  .filter-btn.active, .filter-btn:hover {
    background: var(--gold);
    color: var(--noir);
    border-color: var(--gold);
  }

  .produits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    max-width: 1400px;
    margin: 0 auto;
  }

  .prod-card {
    background: var(--charbon);
    cursor: pointer;
    position: relative;
    transition: transform 0.4s var(--transition);
  }
  .prod-card:hover { transform: translateY(-6px); z-index: 2; }

  .prod-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
  }
  .prod-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--transition);
    filter: saturate(0.8);
  }
  .prod-card:hover .prod-img img { transform: scale(1.06); filter: saturate(1); }

  .prod-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--gold);
    color: var(--noir);
    font-size: 8px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 5px 10px;
  }
  .prod-badge.new { background: var(--blanc-creme); color: var(--noir); }
  .prod-badge.promo { background: #8b2e2e; color: var(--blanc-creme); }

  .prod-actions {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(10,10,8,0.9) 0%, transparent 100%);
    display: flex;
    gap: 8px;
    justify-content: center;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s, transform 0.3s var(--transition);
  }
  .prod-card:hover .prod-actions { opacity: 1; transform: translateY(0); }

  .prod-btn {
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 9px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 300;
    transition: background 0.2s;
  }
  .prod-btn.add { background: var(--gold); color: var(--noir); flex: 1; }
  .prod-btn.add:hover { background: var(--gold-light); }
  .prod-btn.wish { background: rgba(255,255,255,0.1); color: var(--blanc-creme); width: 40px; padding: 10px; }
  .prod-btn.wish:hover { background: rgba(255,255,255,0.2); }

  .prod-info { padding: 20px; }
  .prod-ref { font-size: 9px; letter-spacing: 0.2em; color: var(--gris-clair); margin-bottom: 6px; text-transform: uppercase; }
  .prod-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 300;
    color: var(--blanc-creme);
    margin-bottom: 6px;
    line-height: 1.2;
  }
  .prod-matiere { font-size: 10px; color: var(--gris-clair); margin-bottom: 12px; }
  .prod-price-row { display: flex; align-items: baseline; gap: 12px; }
  .prod-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 400;
    color: var(--gold);
  }
  .prod-price-old {
    font-size: 13px;
    color: var(--gris-clair);
    text-decoration: line-through;
  }
  .prod-unit { font-size: 10px; color: var(--gris-clair); margin-left: auto; }

  /* ─── SERVICES ─── */
  .services { background: var(--noir); }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    max-width: 1400px;
    margin: 0 auto;
  }
  .service-card {
    padding: 50px 36px;
    background: var(--gris-fonce);
    border-top: 2px solid transparent;
    transition: border-color 0.3s, background 0.3s;
    text-align: center;
  }
  .service-card:hover { border-color: var(--gold); background: var(--gris-moyen); }

  .service-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 28px;
    border: 1px solid rgba(201,168,76,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.3s, background 0.3s;
  }
  .service-card:hover .service-icon { border-color: var(--gold); background: rgba(201,168,76,0.08); }
  .service-icon svg { width: 24px; height: 24px; stroke: var(--gold); fill: none; stroke-width: 1.5; }

  .service-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 300;
    color: var(--blanc-creme);
    margin-bottom: 14px;
  }
  .service-desc { font-size: 11px; line-height: 1.9; color: var(--gris-clair); }

  /* ─── INSPIRATION BANNER ─── */
  .inspiration {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  .inspiration-bg {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(rgba(7,14,26,0.72), rgba(13,27,46,0.72)),
      url('https://images.unsplash.com/photo-1600585154526-990dced4db0d?w=1600&q=80') center/cover no-repeat;
    transition: transform 0.8s;
  }
  .inspiration:hover .inspiration-bg { transform: scale(1.02); }
  .inspiration-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 60px;
  }
  .inspiration-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(42px, 5vw, 72px);
    font-weight: 300;
    color: var(--blanc-creme);
    line-height: 1.1;
    margin-bottom: 24px;
  }
  .inspiration-content h2 em { font-style: italic; color: var(--gold-light); }
  .inspiration-content p { font-size: 12px; letter-spacing: 0.1em; color: var(--gris-clair); margin-bottom: 40px; }

  /* ─── TÉMOIGNAGES ─── */
  .temoignages { background: var(--charbon); }

  .temo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
  }
  .temo-card {
    padding: 44px 36px;
    border: 1px solid rgba(201,169,122,0.12);
    position: relative;
    transition: border-color 0.3s;
    background: var(--marine-light);
  }
  .temo-card:hover { border-color: rgba(201,169,122,0.35); }
  .temo-card::before {
    content: '❝';
    font-family: 'Cormorant Garamond', serif;
    font-size: 60px;
    color: rgba(201,169,122,0.18);
    position: absolute;
    top: 20px;
    left: 28px;
    line-height: 1;
  }
  .temo-stars { color: var(--gold); font-size: 12px; margin-bottom: 16px; letter-spacing: 4px; }
  .temo-text { font-size: 13px; line-height: 2; color: var(--gris-clair); margin-bottom: 24px; font-style: italic; }
  .temo-author { display: flex; align-items: center; gap: 12px; }
  .temo-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gris-moyen);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    color: var(--gold);
  }
  .temo-name { font-size: 12px; letter-spacing: 0.1em; color: var(--blanc-creme); }
  .temo-role { font-size: 10px; color: var(--gris-clair); margin-top: 2px; }

  /* ─── NEWSLETTER ─── */
  .newsletter {
    background: linear-gradient(135deg, var(--gris-fonce) 0%, var(--gris-moyen) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
  }
  .newsletter::before {
    content: 'ELS';
    font-family: 'Cormorant Garamond', serif;
    font-size: 200px;
    font-weight: 600;
    color: rgba(201,169,122,0.05);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    pointer-events: none;
  }
  .newsletter-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 40px;
  }
  .newsletter-inner h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    font-weight: 300;
    color: var(--blanc-creme);
    margin-bottom: 12px;
  }
  .newsletter-inner p { font-size: 11px; letter-spacing: 0.1em; color: var(--gris-clair); margin-bottom: 36px; }
  .newsletter-form { display: flex; gap: 0; }
  .newsletter-form input {
    flex: 1;
    padding: 16px 24px;
    background: rgba(7,14,26,0.7);
    border: 1px solid rgba(201,169,122,0.25);
    border-right: none;
    color: var(--blanc-creme);
    font-family: 'Josefin Sans', sans-serif;
    font-size: 11px;
    letter-spacing: 0.1em;
    outline: none;
    transition: border-color 0.3s;
  }
  .newsletter-form input::placeholder { color: var(--gris-clair); }
  .newsletter-form input:focus { border-color: rgba(201,169,122,0.55); }
  .newsletter-form button {
    padding: 16px 36px;
    background: var(--gold);
    border: 1px solid var(--gold);
    color: var(--noir);
    cursor: pointer;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    transition: background 0.3s;
    font-weight: 300;
  }
  .newsletter-form button:hover { background: var(--gold-light); }

  /* ─── FOOTER ─── */
  footer {
    background: var(--noir);
    border-top: 1px solid rgba(201,169,122,0.15);
    padding: 80px 0 40px;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
  }
  .footer-logo-wrap { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
  .footer-brand .brand-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 400;
    color: var(--blanc-creme);
    letter-spacing: 0.12em;
    line-height: 1.2;
  }
  .footer-brand .brand-name span { color: var(--gold); font-size: 11px; letter-spacing: 0.3em; display: block; font-family: 'Josefin Sans', sans-serif; font-weight: 300; }
  .footer-brand p { font-size: 11px; line-height: 1.9; color: var(--gris-clair); margin-bottom: 24px; }
  .footer-social { display: flex; gap: 12px; }
  .social-btn {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(201,169,122,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gris-clair);
    font-size: 12px;
    transition: border-color 0.3s, color 0.3s, background 0.3s;
    text-decoration: none;
    cursor: pointer;
    background: transparent;
  }
  .social-btn:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,169,122,0.1); }

  .footer-col h4 {
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
  }
  .footer-col ul { list-style: none; }
  .footer-col ul li { margin-bottom: 12px; }
  .footer-col ul li a {
    font-size: 11px;
    color: var(--gris-clair);
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: color 0.3s;
  }
  .footer-col ul li a:hover { color: var(--gold-light); }

  .footer-bottom {
    max-width: 1200px;
    margin: 60px auto 0;
    padding: 24px 60px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .footer-copy { font-size: 10px; color: var(--gris-clair); letter-spacing: 0.1em; }
  .footer-payments { display: flex; gap: 8px; }
  .payment-chip {
    padding: 4px 10px;
    border: 1px solid rgba(201,169,122,0.2);
    font-size: 9px;
    letter-spacing: 0.1em;
    color: var(--gris-clair);
  }

  /* ─── TOAST ─── */
  .toast {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 300;
    background: var(--gold);
    color: var(--noir);
    padding: 14px 28px;
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s var(--transition);
    pointer-events: none;
  }
  .toast.show { transform: translateY(0); opacity: 1; }

  .cat-section-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 56px 40px 32px;
    font-size: 11px;
    letter-spacing: 0.45em;
    text-transform: uppercase;
    color: var(--gold);
    max-width: 1400px;
    margin: 0 auto;
  }
  .cat-section-label:first-of-type { padding-top: 0; }
  .cat-sec-icon { font-size: 8px; opacity: 0.6; }
  .cat-section-label::before,
  .cat-section-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(201,168,76,0.3));
  }
  .cat-section-label::after {
    background: linear-gradient(to left, transparent, rgba(201,168,76,0.3));
  }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 1024px) {
    nav { padding: 0 30px; }
    .nav-links { gap: 20px; }
    .nav-links a { font-size: 10px; }
    .nav-devis-btn { padding: 6px 16px; font-size: 9px; }
    .hero-content { padding: 0 40px 80px; }
    .savoir-grid, .temo-grid { grid-template-columns: 1fr; }
    .savoir-image { height: 350px; }
    .cat-grid { grid-template-columns: 1fr 1fr; }
    .cat-card:first-child, .cat-card:nth-child(4) { grid-column: span 1; }
    .produits-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; padding: 0 30px; }
    .footer-bottom { padding: 24px 30px 0; flex-direction: column; gap: 16px; }
  }

  @media (max-width: 768px) {
    nav { padding: 0 16px; height: 70px; }
    .menu-toggle { display: flex; }
    .nav-links {
      display: none;
      position: absolute;
      top: 70px;
      left: 0;
      right: 0;
      flex-direction: column;
      background: rgba(7,14,26,0.98);
      padding: 20px 24px;
      gap: 14px;
      border-bottom: 1px solid rgba(201,169,122,0.2);
    }
    .nav-links.open { display: flex; }
    .nav-links a { font-size: 12px; }
    .nav-logo-img { width: 36px; height: 36px; }
    .nav-logo-text .nav-logo-main { font-size: 13px; }
    .nav-logo-text .nav-logo-sub { font-size: 7px; }
    .nav-devis-btn { padding: 5px 14px; font-size: 8px; }
    .hero-content { padding: 0 24px 60px; }
    .hero-btns { flex-direction: column; align-items: flex-start; }
    .hero-title { font-size: clamp(40px, 10vw, 60px); }
    .cat-grid { grid-template-columns: 1fr; }
    .produits-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .newsletter-form { flex-direction: column; }
    .newsletter-form input { border-right: 1px solid rgba(201,168,76,0.2); }
    section { padding: 80px 20px; }
    .produits-filter { flex-wrap: wrap; padding: 0 20px; }
    .filter-btn { padding: 8px 16px; font-size: 9px; }
    .savoir-text { padding: 40px 30px; }
    .hero-logo-float { display: none; }
    .hero-scroll { right: 20px; }
    .hero-line { left: 20px; }
  }

  @media (max-width: 480px) {
    nav { padding: 0 10px; height: 60px; }
    .nav-logo-img { width: 28px; height: 28px; }
    .nav-logo { gap: 6px; }
    .nav-logo-text .nav-logo-main { font-size: 10px; letter-spacing: 0.1em; }
    .nav-logo-text .nav-logo-sub { font-size: 5.5px; }
    .nav-links.open { top: 60px; padding: 14px 16px; }
    .nav-links a { font-size: 10px; }
    .nav-devis-btn { padding: 4px 10px; font-size: 7px; }
    .hero { padding-top: 60px; min-height: 500px; }
    .hero-content { padding: 0 16px 40px; }
    .hero-title { font-size: clamp(28px, 12vw, 42px); }
    .hero-sub { font-size: 10px; max-width: 100%; }
    .btn-primary, .btn-ghost { padding: 10px 20px; font-size: 8px; }
    .section-title { font-size: clamp(24px, 8vw, 32px); }
    .section-header { margin-bottom: 30px; }
    section { padding: 60px 16px; }
    .savoir-text h2 { font-size: 28px !important; }
    .stat-num { font-size: 28px; }
    .cat-card { height: 250px; }
    .cat-name { font-size: 22px; }
    .prod-name { font-size: 15px; }
    
    
