/* ═══════════════════════════════════════
   THEMES
═══════════════════════════════════════ */
:root[data-theme="dark"] {
  --bg:           #1E1E1E;
  --surface:      #262626;
  --card-bg:      #2C2C2A;
  --card-hover:   #333330;
  --border:       #3A3A36;
  --border-soft:  #45443E;
  --text:         #F0E8D8;
  --text-soft:    #C8BEA8;
  --muted:        #908872;
  --gold:         #C9A84C;
  --gold-light:   #E8C97A;
  --gold-dim:     rgba(201,168,76,0.12);
  --gold-glow:    rgba(201,168,76,0.16);
  --nav-bg:       rgba(30,30,30,0.95);
  --img-fade:     linear-gradient(to bottom, transparent 30%, #2C2C2A 100%);
  --hero-overlay: linear-gradient(to bottom, rgba(22,22,22,0.42) 0%, rgba(22,22,22,0.78) 55%, #1E1E1E 100%);
  --card-shadow:  0 4px 30px rgba(0,0,0,0.40);
  --badge-bg:     rgba(20,20,20,0.45);
}
:root[data-theme="light"] {
  --bg:           #F5F1E8;
  --surface:      #EDE8DC;
  --card-bg:      #FFFFFF;
  --card-hover:   #FDFCF8;
  --border:       #C8C0B0;
  --border-soft:  #D8D0C0;
  --text:         #12100C;
  --text-soft:    #28221A;
  --muted:        #4A4236;
  --gold:         #7A5E0E;
  --gold-light:   #8E6E14;
  --gold-dim:     rgba(122,94,14,0.09);
  --gold-glow:    rgba(122,94,14,0.14);
  --nav-bg:       rgba(245,241,232,0.97);
  --img-fade:     linear-gradient(to bottom, transparent 30%, #FFFFFF 100%);
  --hero-overlay: linear-gradient(to bottom, rgba(20,16,10,0.48) 0%, rgba(20,16,10,0.76) 55%, #F5F1E8 100%);
  --card-shadow:  0 4px 28px rgba(0,0,0,0.09);
  --badge-bg:     rgba(20,16,10,0.35);
}

/* ═══════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Montserrat', sans-serif;
  min-height: 100vh;
  line-height: 1.6;
  transition: background .4s, color .4s;
  overflow-x: hidden;
  padding-top: 80px;
  max-width: 100vw;
}
a { text-decoration: none; color: inherit; }
img { display: block; width: 100%; height: 100%; object-fit: cover; max-width: 100%; }

/* ═══════════════════════════════════════
   NAV
═══════════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: var(--nav-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 0 clamp(16px, 4vw, 40px);
  transition: background .4s, border-color .4s;
  width: 100%;
}
.nav-inner {
  max-width: 1320px; margin: 0 auto;
  height: 80px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  min-width: 0;
}
.nav-brand { min-width: 0; overflow: hidden; text-overflow: ellipsis; }
.nav-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(15px, 2.2vw, 21px);
  font-weight: 300; letter-spacing: clamp(2px, 0.8vw, 5px);
  color: var(--text); white-space: nowrap;
  transition: color .4s;
}
.nav-brand em { color: var(--gold); font-style: italic; }
.nav-brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; min-width: 0; }
.nav-logo { height: 62px; width: auto; display: block; flex-shrink: 0; }
.nav-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(14px, 2vw, 20px); font-weight: 300;
  letter-spacing: clamp(1px, 0.6vw, 4px);
  color: var(--text); white-space: nowrap;
  overflow: hidden; text-overflow: ellipsis; min-width: 0;
  transition: color .4s;
}
.nav-name em { color: var(--gold); font-style: italic; }
@media (max-width: 480px) { .nav-logo { height: 50px; } .nav-name { letter-spacing: 1px; } }
.nav-right { display: flex; align-items: center; gap: 10px; }
.theme-toggle {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--border);
  background: transparent; color: var(--gold);
  font-size: 15px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, border-color .2s;
  flex-shrink: 0;
}
.theme-toggle:hover { background: var(--gold-dim); border-color: var(--gold); }
.nav-phone {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(14px, 1.6vw, 18px);
  font-weight: 400; letter-spacing: 2px;
  color: var(--text); white-space: nowrap;
  transition: color .2s;
}
.nav-phone:hover { color: var(--gold); }
.nav-switch { color: var(--gold); border: 1px solid var(--border); border-radius: 2px; padding: 7px 12px; font-size: clamp(11px,1.3vw,13px); letter-spacing: 1px; transition: background .2s, border-color .2s; }
.nav-switch:hover { background: var(--gold-dim); border-color: var(--gold); color: var(--gold); }
@media (max-width: 640px) { .nav-phone { display: none; } .nav-switch { display: inline-flex; } }
@media (max-width: 400px) { .nav-switch { padding: 6px 9px; font-size: 10px; } }
@media (max-width: 380px) { .nav-cta { padding: 10px 12px; letter-spacing: 1px; font-size: 9px; } }

.nav-cta {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--gold); color: #080808;
  font-size: 10px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  padding: 11px 22px; border-radius: 2px;
  border: none; cursor: pointer;
  transition: background .2s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--gold-light); }

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero {
  position: relative; overflow: hidden;
  min-height: clamp(500px, 72vh, 740px);
  display: flex; align-items: center; justify-content: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 50% 0%, rgba(201,168,76,0.22), transparent 62%),
    radial-gradient(ellipse 60% 50% at 50% 100%, rgba(201,168,76,0.10), transparent 70%),
    linear-gradient(165deg, #2C2A26 0%, #242422 45%, #1E1E1E 100%);
}
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0;
  animation: heroFade 24s infinite;
}
.hero-slide:nth-child(1) { animation-delay: 0s; }
.hero-slide:nth-child(2) { animation-delay: 6s; }
.hero-slide:nth-child(3) { animation-delay: 12s; }
.hero-slide:nth-child(4) { animation-delay: 18s; }
@keyframes heroFade {
  0%   { opacity: 1; }
  17%  { opacity: 1; }
  25%  { opacity: 0; }
  92%  { opacity: 0; }
  100% { opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-slide { animation: none; }
  .hero-slide:not(:first-child) { opacity: 0; }
}
.hero-overlay { position: absolute; inset: 0; background: var(--hero-overlay); transition: background .4s; }
.hero-content {
  position: relative; z-index: 2; text-align: center;
  padding: clamp(70px,10vw,120px) clamp(16px,5vw,40px) clamp(60px,8vw,100px);
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}
.hero-eyebrow {
  font-size: clamp(9px,1.3vw,11px); letter-spacing: clamp(3px,1.5vw,7px);
  color: var(--gold); text-transform: uppercase; font-weight: 400; margin-bottom: 22px;
  overflow: hidden;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif; font-weight: 300;
  font-size: clamp(40px,9.5vw,100px);
  letter-spacing: clamp(3px,1.5vw,12px); color: #F0E8D8;
  line-height: 0.92; margin-bottom: 8px;
  word-break: break-word;
}
.hero-sub {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: clamp(17px,3.2vw,32px); color: var(--gold);
  letter-spacing: clamp(4px,2.5vw,20px); margin-bottom: 30px;
}
.divider { display: flex; align-items: center; gap: 14px; margin: 0 auto 22px; max-width: 260px; }
.div-line { flex: 1; height: 1px; }
.div-line.l { background: linear-gradient(to right, transparent, var(--gold)); }
.div-line.r { background: linear-gradient(to left, transparent, var(--gold)); }
.div-gem { width: 7px; height: 7px; background: var(--gold); transform: rotate(45deg); flex-shrink: 0; }
.hero-tagline {
  font-size: clamp(9px,1.3vw,11px); letter-spacing: clamp(1px,1vw,4px); color: rgba(200,190,168,0.65);
  text-transform: uppercase; font-weight: 300; margin-bottom: 40px;
  padding: 0 8px; word-break: break-word;
}
.hero-badge {
  display: inline-flex; flex-direction: column; align-items: center; gap: 5px;
  border: 1px solid rgba(201,168,76,0.38);
  padding: clamp(14px,2.8vw,24px) clamp(20px,5.5vw,56px);
  background: var(--badge-bg); backdrop-filter: blur(8px);
  border-radius: 2px;
  max-width: calc(100vw - 48px);
}
.badge-label { font-size: 9px; letter-spacing: 4px; text-transform: uppercase; color: rgba(200,190,168,0.55); }
.badge-price {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(32px,6vw,54px);
  font-weight: 300; color: var(--gold-light); letter-spacing: 2px; line-height: 1;
}
.badge-price em { font-size: 0.46em; font-style: italic; }
.badge-sub { font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: rgba(200,190,168,0.55); }

/* ═══════════════════════════════════════
   SECTION HEADER
═══════════════════════════════════════ */
.section-header { text-align: center; padding: clamp(28px,4vw,44px) 24px clamp(12px,2vw,20px); }
.s-eyebrow { font-size: 9px; letter-spacing: 5px; color: var(--gold); text-transform: uppercase; margin-bottom: 10px; }
.s-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px,4.5vw,46px); font-weight: 300;
  letter-spacing: 3px; color: var(--text); margin-bottom: 12px;
  transition: color .4s;
}
.s-desc { font-size: 11px; letter-spacing: 1.2px; color: var(--muted); max-width: 460px; margin: 0 auto; line-height: 2; transition: color .4s; }
.line-badge {
  display: inline-flex; align-items: center;
  border: 1px solid var(--border); border-radius: 2px;
  padding: 6px 16px; margin-bottom: 10px;
  font-size: 8px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); background: var(--gold-dim);
  transition: border-color .4s, background .4s;
}

/* ═══════════════════════════════════════
   PRODUCTS GRID
═══════════════════════════════════════ */
.products-wrap { padding: 0 clamp(16px,4vw,48px) clamp(24px,3.5vw,40px); }
.products-grid {
  max-width: 1320px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.5vw, 28px);
}
@media (max-width: 980px)  { .products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px)  { .products-grid { grid-template-columns: 1fr; } }

.products-grid-2 {
  max-width: 900px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(16px, 2.5vw, 28px);
}
@media (max-width: 580px) { .products-grid-2 { grid-template-columns: 1fr; } }

.products-grid-1 {
  max-width: 480px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr;
  gap: 0;
}

/* ═══════════════════════════════════════
   PRODUCT CARD — ÉDITORIAL
═══════════════════════════════════════ */
.card {
  background: var(--card-bg);
  border-radius: 8px;
  overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: var(--card-shadow);
  transition: background .4s, box-shadow .3s, transform .3s;
  position: relative;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 50px rgba(0,0,0,0.35), 0 0 0 1px var(--gold-dim);
}
[data-theme="light"] .card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.14), 0 0 0 1px var(--gold-dim);
}

/* Lien image produit */
.card-img-link { display: block; position: relative; }
.card-img-link .card-img { transition: filter .3s; }
.card-img-link:hover .card-img { filter: brightness(1.06); }
.card-img-overlay {
  position: absolute; inset: 0; z-index: 5;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .3s;
  pointer-events: none;
}
.card-img-link:hover .card-img-overlay { opacity: 1; }
.card-img-overlay span {
  background: rgba(8,8,6,0.72); color: var(--gold);
  font-size: 9px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  padding: 9px 18px; border-radius: 2px;
  border: 1px solid rgba(201,168,76,0.5);
  backdrop-filter: blur(4px);
}

/* Lien nom produit */
.card-name-link { color: inherit; transition: color .25s; }
.card-name-link:hover { color: var(--gold); }

/* Gold top accent bar — animée au hover */
.card::after {
  content: '';
  position: absolute; top: 0; left: 10%; right: 10%; height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  border-radius: 2px;
  opacity: 0;
  transition: opacity .35s, left .35s, right .35s;
  z-index: 4;
}
.card:hover::after { opacity: 1; left: 0; right: 0; }

/* ── IMAGE ── */
.card-img {
  position: relative;
  height: clamp(240px, 30vw, 310px);
  overflow: hidden;
  background: var(--surface);
  flex-shrink: 0;
}
.card-img img { transition: transform .8s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter .8s ease; }
.card:hover .card-img img { transform: scale(1.18); filter: brightness(1.06) saturate(1.1); }

/* Fondu bas de l'image vers le fond de la card */
.card-img::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 55%;
  background: var(--img-fade);
  pointer-events: none; z-index: 1;
  transition: background .4s;
}

/* Numéro en overlay — bas gauche */
.card-num-overlay {
  position: absolute; bottom: 6px; left: 16px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px; font-weight: 300;
  color: rgba(201,168,76,0.22);
  line-height: 1; z-index: 2; user-select: none;
  transition: color .4s;
}
[data-theme="light"] .card-num-overlay { color: rgba(154,116,24,0.18); }

/* Badge gamme — haut droit */
.card-gamme {
  position: absolute; top: 14px; right: 14px;
  font-size: 7px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: #050504; background: var(--gold);
  padding: 4px 10px; border-radius: 2px; z-index: 3;
}

/* ── BODY ── */
.card-body {
  padding: clamp(18px,2.5vw,26px) clamp(18px,2.5vw,26px) clamp(14px,2vw,20px);
  display: flex; flex-direction: column; flex: 1; gap: 0;
}

/* Nom */
.card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px,3.2vw,32px); font-weight: 600;
  color: var(--text); letter-spacing: 1px; line-height: 1;
  margin-bottom: 10px;
  transition: color .4s;
}

/* Ligne or sous le nom — s'étend au hover */
.card-accent {
  width: 36px; height: 2px;
  background: var(--gold);
  border-radius: 2px; margin-bottom: 12px;
  transition: width .4s ease;
}
.card:hover .card-accent { width: 64px; }

/* Catégorie */
.card-cat {
  font-size: 8px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--muted);
  margin-bottom: 18px; transition: color .4s;
}

/* Inspiration */
.inspo-wrap { margin-bottom: 16px; }
.inspo-label {
  font-size: 8px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--muted); margin-bottom: 4px; transition: color .4s;
}
.inspo-val {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: clamp(15px,2vw,18px); color: var(--gold-light);
  line-height: 1.3; transition: color .4s;
}

/* Notes en texte inline */
.notes-inline {
  font-size: 9.5px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--muted); line-height: 1.9; flex: 1;
  transition: color .4s;
}

/* ── FOOTER CARD ── */
.card-foot {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: clamp(14px,2vw,18px) clamp(18px,2.5vw,26px);
  border-top: 1px solid var(--border-soft);
  transition: border-color .4s;
}
.card-price-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(18px,2.2vw,22px); font-weight: 400;
  color: var(--gold-light); line-height: 1; transition: color .4s;
}
.price-old {
  text-decoration: line-through;
  color: var(--muted); opacity: 0.85;
  font-size: 0.62em; font-weight: 400;
  margin-right: 4px;
}
.card-price-sub {
  font-size: 8px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--muted); margin-top: 3px; transition: color .4s;
}
.btn-cmd {
  display: inline-flex; align-items: center; gap: 6px;
  border: 1px solid var(--gold); border-radius: 2px;
  color: var(--gold); background: transparent;
  font-size: 9px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 10px 16px; cursor: pointer;
  transition: background .22s, color .22s;
  white-space: nowrap;
}
.btn-cmd:hover { background: var(--gold); color: #050504; }

/* ═══════════════════════════════════════
   WHY US
═══════════════════════════════════════ */
.why-section {
  background: var(--surface);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: clamp(28px,4vw,48px) clamp(16px,4vw,48px);
  transition: background .4s, border-color .4s;
}
.why-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(10px,1.5vw,16px);
}
@media (max-width: 900px) { .why-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 500px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }

.why-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: clamp(18px,2.5vw,26px) clamp(12px,1.8vw,18px);
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 10px;
  position: relative; overflow: hidden;
  transition: background .4s, border-color .28s, transform .28s, box-shadow .28s;
}
.why-item::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0; transition: opacity .3s;
}
.why-item:hover {
  border-color: rgba(201,168,76,0.5);
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.2);
}
[data-theme="light"] .why-item:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.10); }
.why-item:hover::before { opacity: 1; }

.why-icon-wrap {
  width: 52px; height: 52px; border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--gold-dim);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; flex-shrink: 0;
  transition: border-color .3s, transform .3s, background .4s;
}
.why-item:hover .why-icon-wrap { border-color: var(--gold); transform: scale(1.1); }

.why-sep {
  width: 22px; height: 1px;
  background: var(--gold); opacity: 0.45;
  transition: width .35s ease, opacity .35s;
}
.why-item:hover .why-sep { width: 40px; opacity: 1; }

.why-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(15px,1.8vw,18px); font-weight: 600;
  color: var(--text); letter-spacing: 1px; line-height: 1.2;
  transition: color .4s;
}
.why-desc {
  font-size: 10px; letter-spacing: 0.4px; color: var(--muted);
  line-height: 1.8; transition: color .4s;
}

/* ═══════════════════════════════════════
   GUIDE DE CHOIX
═══════════════════════════════════════ */
.guide-section { padding: 0 clamp(16px,4vw,48px) clamp(24px,3.5vw,40px); }

.guide-grid {
  max-width: 1320px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(10px,1.5vw,16px);
}
@media (max-width: 900px) { .guide-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 400px) { .guide-grid { grid-template-columns: 1fr 1fr; gap: 8px; } }

.guide-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: clamp(18px,2.5vw,28px) clamp(12px,1.8vw,20px);
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 10px;
  position: relative; overflow: hidden;
  transition: background .4s, border-color .28s, transform .28s, box-shadow .28s;
  cursor: default;
}

/* Barre or en haut au hover */
.guide-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0; transition: opacity .3s;
}
.guide-card:hover { border-color: rgba(201,168,76,0.5); transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,0.2); }
[data-theme="light"] .guide-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.10); }
.guide-card:hover::before { opacity: 1; }

/* Icône dans un cercle */
.guide-icon-wrap {
  width: 54px; height: 54px; border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--gold-dim);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; flex-shrink: 0;
  transition: border-color .3s, background .3s, transform .3s;
}
.guide-card:hover .guide-icon-wrap {
  border-color: var(--gold);
  transform: scale(1.08);
}

/* Séparateur doré */
.guide-sep {
  width: 24px; height: 1px;
  background: var(--gold); opacity: 0.45;
  transition: width .35s ease, opacity .35s;
}
.guide-card:hover .guide-sep { width: 44px; opacity: 1; }

.guide-occasion {
  font-size: 8px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--gold);
  line-height: 1.5;
}
.guide-products {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: clamp(13px,1.5vw,15px); color: var(--text-soft);
  line-height: 1.8; transition: color .4s;
}

/* ═══════════════════════════════════════
   CONTACT
═══════════════════════════════════════ */
.contact-section {
  padding: clamp(32px,5vw,56px) 24px clamp(36px,5vw,60px);
  text-align: center;
  background: radial-gradient(ellipse 70% 55% at 50% 100%, var(--gold-glow) 0%, transparent 70%);
  transition: background .4s;
}
.contact-inner { max-width: 520px; margin: 0 auto; }
.contact-intro { font-size: 11px; letter-spacing: 2px; color: var(--muted); text-transform: uppercase; line-height: 2.3; margin-bottom: 26px; transition: color .4s; }
.phone-link {
  display: flex; align-items: center; justify-content: center; gap: 18px;
  border: 1px solid rgba(201,168,76,0.42); border-radius: 6px;
  padding: clamp(16px,3vw,22px) clamp(24px,5vw,44px);
  margin-bottom: 14px; cursor: pointer;
  transition: border-color .22s, background .22s;
  max-width: 400px; margin: 0 auto 14px;
}
.phone-link:hover { border-color: var(--gold); background: var(--gold-dim); }
.phone-icon-wrap { font-size: 24px; flex-shrink: 0; }
.phone-label { font-size: 8px; letter-spacing: 3px; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; transition: color .4s; }
.phone-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px,4.5vw,34px); font-weight: 400;
  letter-spacing: 4px; color: var(--text); line-height: 1;
  transition: color .4s;
}
.wa-btn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: #25D366; color: #fff;
  font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 18px 32px; border-radius: 6px;
  margin: 14px auto 0; max-width: 400px;
  transition: background .22s, transform .15s;
}
.wa-btn:hover { background: #1eb558; transform: translateY(-2px); }
.contact-note { font-size: 10px; letter-spacing: 1.5px; color: var(--muted); margin-top: 20px; transition: color .4s; }

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 24px 24px;
  text-align: center;
  transition: background .4s, border-color .4s;
}
.foot-logo { height: 96px; width: auto; display: block; margin: 0 auto 14px; }
@media (max-width: 480px) { .foot-logo { height: 76px; } }
.foot-gems { display: flex; gap: 8px; align-items: center; justify-content: center; margin-bottom: 16px; }
.foot-gem { width: 5px; height: 5px; background: var(--gold); transform: rotate(45deg); }
.foot-gem.sm { width: 3px; height: 3px; background: var(--muted); }
.foot-quote { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: clamp(14px,2vw,17px); color: var(--muted); letter-spacing: 2px; margin-bottom: 12px; transition: color .4s; }
.foot-copy { font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: var(--border-soft); transition: color .4s; }

/* ═══════════════════════════════════════
   SÉPARATEUR
═══════════════════════════════════════ */
.sep { display: flex; align-items: center; gap: 18px; max-width: 1320px; margin: 0 auto; padding: 0 clamp(16px,4vw,48px); }
.sep-line { flex: 1; height: 1px; background: var(--border); transition: background .4s; }
.sep-gems { display: flex; gap: 7px; align-items: center; }
.sep-gem { width: 5px; height: 5px; background: var(--gold); transform: rotate(45deg); }
.sep-gem.sm { width: 3px; height: 3px; background: var(--muted); }

/* ═══════════════════════════════════════
   CARD VIBE
═══════════════════════════════════════ */
.card-vibe {
  font-size: 11.5px; color: var(--text-soft);
  line-height: 1.75; margin-top: 10px;
  font-style: italic; letter-spacing: 0.2px;
  transition: color .4s;
}

/* ═══════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════ */
.testimonials-section {
  padding: clamp(28px,4vw,48px) clamp(16px,4vw,48px);
}
.testimonials-grid {
  max-width: 1020px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px,2vw,24px);
}
@media (max-width: 780px) { .testimonials-grid { grid-template-columns: 1fr; } }
.testimonial-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: clamp(20px,2.5vw,28px);
  display: flex; flex-direction: column; gap: 14px;
  position: relative;
  transition: background .4s, border-color .28s, transform .28s;
}
.testimonial-card:hover { transform: translateY(-4px); border-color: rgba(201,168,76,0.4); }
.testimonial-card::before {
  content: '\00AB';
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px; font-weight: 300;
  color: var(--gold); opacity: 0.2;
  position: absolute; top: 4px; left: 18px;
  line-height: 1; user-select: none;
}
.testimonial-stars { color: var(--gold); font-size: 13px; letter-spacing: 3px; padding-top: 18px; }
.testimonial-text {
  font-size: 12px; color: var(--text-soft);
  line-height: 1.85; font-style: italic;
  transition: color .4s;
}
.testimonial-sep { width: 24px; height: 1px; background: var(--gold); opacity: 0.5; }
.testimonial-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px; font-weight: 600;
  color: var(--gold-light); letter-spacing: 1px;
  transition: color .4s;
}
.testimonial-info {
  font-size: 9px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--muted); transition: color .4s;
}

/* ═══════════════════════════════════════
   FAQ
═══════════════════════════════════════ */
.faq-section { padding: 0 clamp(16px,4vw,48px) clamp(24px,3.5vw,40px); }
.faq-grid {
  max-width: 820px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 10px;
}
.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px; overflow: hidden;
  transition: background .4s, border-color .28s;
}
.faq-item.open { border-color: rgba(201,168,76,0.4); }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: clamp(14px,2vw,18px) clamp(16px,2.5vw,24px);
  font-size: 13px; font-weight: 500; letter-spacing: 0.4px;
  color: var(--text); background: transparent; border: none;
  cursor: pointer; text-align: left; gap: 16px;
  transition: color .25s;
}
.faq-question:hover { color: var(--gold); }
.faq-arrow {
  color: var(--gold); flex-shrink: 0; font-size: 11px;
  transition: transform .3s;
}
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .35s;
  padding: 0 clamp(16px,2.5vw,24px);
}
.faq-item.open .faq-answer {
  max-height: 200px;
  padding: 0 clamp(16px,2.5vw,24px) clamp(14px,2vw,20px);
}
.faq-answer p {
  font-size: 12px; color: var(--muted);
  line-height: 1.85; letter-spacing: 0.3px;
  transition: color .4s;
}

/* ═══════════════════════════════════════
   LIVRAISON BANNER
═══════════════════════════════════════ */
.livraison-banner {
  background: var(--gold-dim);
  border: 1px solid rgba(201,168,76,0.28);
  border-radius: 8px;
  padding: clamp(14px,2vw,18px) clamp(16px,3vw,28px);
  display: flex; align-items: center; justify-content: center;
  gap: clamp(14px,3vw,32px);
  flex-wrap: wrap;
  max-width: 820px; margin: 0 auto clamp(20px,3vw,32px);
  text-align: center;
}
.livraison-item {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.livraison-icon { font-size: 20px; }
.livraison-label {
  font-size: 8px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--muted); transition: color .4s;
}
.livraison-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(14px,1.8vw,17px); font-weight: 600;
  color: var(--gold-light); letter-spacing: 1px;
  transition: color .4s;
}
.livraison-divider { width: 1px; height: 40px; background: var(--border); flex-shrink: 0; }
@media (max-width: 480px) { .livraison-divider { display: none; } }

/* ═══════════════════════════════════════
   FLOATING WHATSAPP
═══════════════════════════════════════ */
.float-wa {
  position: fixed; bottom: 26px; right: 26px; z-index: 999;
  width: 58px; height: 58px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 26px;
  box-shadow: 0 4px 22px rgba(37,211,102,0.42);
  transition: transform .22s, box-shadow .22s;
}
.float-wa:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37,211,102,0.58); }
.float-wa-pulse {
  position: absolute; inset: -5px; border-radius: 50%;
  border: 2px solid #25D366; animation: pulse 2.2s infinite; pointer-events: none;
}
@keyframes pulse {
  0%   { opacity: 0.7; transform: scale(1); }
  100% { opacity: 0;   transform: scale(1.6); }
}
