/* ════════════════════════════════════════════════════════════════
   AMITEX INTERIORS — Feuille de style
   Palette claire & chaleureuse : blanc cassé, beige, noir doux,
   doré léger, marron bois.  Mobile-first.
═══════════════════════════════════════════════════════════════════ */

:root {
  /* Couleurs */
  --cream:      #faf6ef;   /* fond principal */
  --cream-2:    #f4ece0;   /* fond de section alterné */
  --sand:       #ece1cf;   /* cartes / bordures douces */
  --ink:        #211c15;   /* noir doux (texte) */
  --ink-soft:   #6e6151;   /* texte secondaire (brun/gris) */
  --gold:       #b6924f;   /* doré */
  --gold-deep:  #8f6f33;   /* doré foncé (texte sur clair) */
  --gold-soft:  #e3cd9b;   /* doré clair */
  --wood:       #7c5c3a;   /* marron bois */
  --white:      #ffffff;

  /* Ombres */
  --shadow-sm: 0 4px 14px rgba(60, 45, 20, .08);
  --shadow-md: 0 14px 34px rgba(60, 45, 20, .12);
  --shadow-lg: 0 26px 60px rgba(50, 38, 18, .18);

  /* Divers */
  --radius:    22px;
  --radius-sm: 14px;
  --maxw:      1200px;
  --ease:      cubic-bezier(.22, .61, .36, 1);

  --font-title: 'Playfair Display', Georgia, serif;
  --font-body:  'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

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

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

/* Ancrages : décalage pour le header sticky */
section[id], main[id] { scroll-margin-top: 84px; }

/* ── Conteneur ── */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: clamp(1.2rem, 5vw, 3rem);
}

/* ── Sections ── */
.section { padding-block: clamp(3.5rem, 9vw, 7rem); }

.section-head { max-width: 640px; margin-bottom: clamp(2rem, 5vw, 3.2rem); }
.section-head.center, .section-kicker { /* placeholder */ }

.section-kicker {
  display: inline-block;
  font-size: .8rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
  margin-bottom: .9rem;
}
.section-title {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: clamp(1.9rem, 4.6vw, 3rem);
  line-height: 1.12;
  color: var(--ink);
  letter-spacing: -.01em;
}
.section-sub {
  margin-top: 1rem;
  color: var(--ink-soft);
  font-size: clamp(1rem, 2vw, 1.12rem);
  max-width: 52ch;
}

/* ════════════════════════════════════════════════════════════════
   BOUTONS
═══════════════════════════════════════════════════════════════════ */
.btn {
  --btn-bg: var(--ink);
  --btn-fg: var(--cream);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55em;
  padding: .8em 1.5em;
  font-family: var(--font-body);
  font-size: .98rem;
  font-weight: 500;
  letter-spacing: .01em;
  border: 1.5px solid transparent;
  border-radius: 999px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  cursor: pointer;
  white-space: nowrap;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease),
              background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
.btn svg { flex-shrink: 0; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 3px solid var(--gold-soft); outline-offset: 2px; }

.btn-gold {
  --btn-fg: #2a210f;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  box-shadow: 0 8px 22px rgba(182, 146, 79, .35);
}
.btn-gold:hover { box-shadow: 0 14px 30px rgba(182, 146, 79, .45); filter: saturate(1.05); }

.btn-outline {
  background: transparent;
  border-color: rgba(140, 110, 55, .5);
  color: var(--ink);
}
.btn-outline:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }

.btn-dark { background: var(--ink); color: var(--cream); }
.btn-dark:hover { background: #000; box-shadow: var(--shadow-md); }

.btn-light { background: var(--white); color: var(--ink); }
.btn-light:hover { box-shadow: var(--shadow-md); }

.btn-lg { padding: 1em 1.9em; font-size: 1.04rem; }
.btn-sm { padding: .62em 1.1em; font-size: .9rem; }
.btn-block { width: 100%; }

/* Petite "puce" d'information */
.chip {
  display: inline-flex;
  align-items: center;
  gap: .45em;
  padding: .5em 1em;
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: 999px;
  font-size: .85rem;
  color: var(--ink-soft);
  box-shadow: var(--shadow-sm);
}
.chip svg { color: var(--gold-deep); }

/* Bouton icône (réseaux, header) */
.icon-btn {
  display: inline-grid;
  place-items: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  color: var(--ink);
  background: rgba(255,255,255,.6);
  border: 1px solid var(--sand);
  transition: all .3s var(--ease);
}
.icon-btn:hover { color: var(--gold-deep); transform: translateY(-2px); box-shadow: var(--shadow-sm); }

/* ════════════════════════════════════════════════════════════════
   HEADER
═══════════════════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background .35s var(--ease), box-shadow .35s var(--ease), padding .35s var(--ease);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1.1rem;
}
.site-header.scrolled {
  background: rgba(250, 246, 239, .9);
  backdrop-filter: saturate(1.4) blur(14px);
  box-shadow: 0 4px 24px rgba(60, 45, 20, .08);
  border-bottom: 1px solid rgba(140,110,55,.12);
}
.site-header.scrolled .header-inner { padding-block: .65rem; }

/* Marque */
.brand { display: inline-flex; align-items: center; gap: .65rem; }
.brand-logo {
  width: 46px; height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--gold-soft);
  background: var(--white);
}
.brand-name {
  font-family: var(--font-title);
  font-size: 1.32rem;
  font-weight: 600;
  letter-spacing: .01em;
  color: var(--ink);
}
.brand-name em { color: var(--gold-deep); font-style: italic; }

/* Nav desktop */
.nav-links { display: flex; align-items: center; gap: clamp(1rem, 2.6vw, 2.1rem); }
.nav-links a {
  position: relative;
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
  padding-block: .3rem;
  transition: color .25s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width .3s var(--ease);
}
.nav-links a:hover { color: var(--gold-deep); }
.nav-links a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: .6rem; }

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px; height: 46px;
  border: 1px solid var(--sand);
  background: rgba(255,255,255,.6);
  border-radius: 12px;
  cursor: pointer;
}
.burger span {
  display: block;
  width: 22px; height: 2px;
  margin-inline: auto;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
body.menu-open .burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.menu-open .burger span:nth-child(2) { opacity: 0; }
body.menu-open .burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Menu mobile */
.mobile-menu {
  position: fixed;
  top: 0; right: 0;
  z-index: 99;
  width: min(86vw, 360px);
  height: 100dvh;
  padding: 6rem 2rem 2rem;
  background: var(--cream);
  border-left: 1px solid var(--sand);
  box-shadow: -20px 0 60px rgba(40,30,15,.18);
  transform: translateX(105%);
  transition: transform .4s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 2rem;
  overflow-y: auto;
}
body.menu-open .mobile-menu { transform: translateX(0); }
.mobile-nav { display: flex; flex-direction: column; gap: .3rem; }
.mobile-nav a {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--ink);
  padding: .55rem 0;
  border-bottom: 1px solid rgba(140,110,55,.12);
}
.mobile-nav a:hover { color: var(--gold-deep); }
.mobile-menu-actions { display: flex; flex-direction: column; gap: .8rem; margin-top: auto; }
.mobile-socials { display: flex; gap: .8rem; }

.menu-overlay {
  position: fixed; inset: 0;
  z-index: 98;
  background: rgba(25,18,8,.45);
  backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity .35s var(--ease);
}
body.menu-open .menu-overlay { opacity: 1; }

/* ════════════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  padding-top: clamp(7rem, 16vw, 9.5rem);
  padding-bottom: clamp(3rem, 8vw, 5rem);
  overflow: hidden;
  background:
    radial-gradient(1100px 600px at 78% 8%, rgba(227,205,155,.45), transparent 60%),
    linear-gradient(180deg, #fbf8f2 0%, var(--cream) 60%, var(--cream-2) 100%);
}
.hero-glow {
  position: absolute;
  width: 520px; height: 520px;
  right: -120px; top: -120px;
  background: radial-gradient(circle, rgba(182,146,79,.28), transparent 70%);
  filter: blur(20px);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6em;
  padding: .5em 1.1em;
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--ink-soft);
  box-shadow: var(--shadow-sm);
}
.eyebrow-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(182,146,79,.22);
}
.hero-title {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: clamp(2.3rem, 6.2vw, 4.1rem);
  line-height: 1.07;
  letter-spacing: -.015em;
  margin-top: 1.4rem;
  color: var(--ink);
}
.hero-title em { font-style: italic; color: var(--gold-deep); }
.hero-sub {
  margin-top: 1.4rem;
  font-size: clamp(1.02rem, 2.1vw, 1.2rem);
  color: var(--ink-soft);
  max-width: 46ch;
}
.hero-btns { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2rem; }
.hero-badges { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 2rem; }

/* Visuels du hero */
.hero-visual {
  position: relative;
  min-height: 440px;
}
.hero-photo {
  position: absolute;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 5px solid var(--white);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo-main {
  width: 70%; aspect-ratio: 3/4;
  right: 0; top: 0;
  z-index: 2;
}
.hero-photo-mini {
  width: 46%; aspect-ratio: 3/4;
  left: 0; bottom: 0;
  z-index: 3;
  animation: floatY 6s ease-in-out infinite;
}
.hero-float-badge {
  position: absolute;
  left: 6%; top: 8%;
  z-index: 4;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(6px);
  border-radius: 16px;
  padding: .7rem 1.1rem;
  box-shadow: var(--shadow-md);
  text-align: center;
  animation: floatY 5s ease-in-out infinite reverse;
}
.hero-float-num { display: block; font-family: var(--font-title); font-size: 1.5rem; font-weight: 700; color: var(--gold-deep); }
.hero-float-label { display: block; font-size: .72rem; letter-spacing: .04em; color: var(--ink-soft); }

@keyframes floatY { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* Indicateur de scroll */
.hero-scroll {
  position: absolute;
  left: 50%; bottom: 18px;
  transform: translateX(-50%);
  width: 26px; height: 42px;
  border: 2px solid rgba(140,110,55,.45);
  border-radius: 999px;
  display: grid;
  place-items: start center;
  padding-top: 7px;
}
.hero-scroll span {
  width: 4px; height: 8px;
  border-radius: 4px;
  background: var(--gold);
  animation: scrollDot 1.6s infinite;
}
@keyframes scrollDot { 0% { opacity: 0; transform: translateY(0); } 40% { opacity: 1; } 100% { opacity: 0; transform: translateY(12px); } }

/* ════════════════════════════════════════════════════════════════
   STORIES SHOWCASE
═══════════════════════════════════════════════════════════════════ */
.stories-section { background: var(--cream-2); }
.stories-viewport { margin-top: .5rem; }

.stories-track {
  display: flex;
  gap: clamp(.9rem, 2vw, 1.4rem);
  padding: 1.2rem clamp(1.2rem, 5vw, 3rem) 1.8rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
}
.stories-track::-webkit-scrollbar { display: none; }
.stories-track.dragging { cursor: grabbing; scroll-snap-type: none; }
.stories-track.dragging .story-card { pointer-events: none; }

.story-card {
  position: relative;
  flex: 0 0 auto;
  width: clamp(200px, 56vw, 252px);
  aspect-ratio: 9 / 16;
  border-radius: 24px;
  overflow: hidden;
  scroll-snap-align: center;
  background: var(--sand);
  box-shadow: var(--shadow-md);
  border: 3px solid transparent;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
  isolation: isolate;
}
.story-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.story-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,14,5,.05) 0%, transparent 35%, rgba(20,14,5,.65) 100%);
  z-index: 1;
}
.story-tag {
  position: absolute;
  top: 12px; left: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: .35em;
  padding: .35em .75em;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .03em;
  color: #2a210f;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(4px);
  border-radius: 999px;
}
.story-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: 1rem .9rem .95rem;
  color: #fff;
  font-size: .95rem;
  font-weight: 500;
  line-height: 1.35;
}
/* survol : zoom + ombre + bordure dorée */
.story-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}
.story-card:hover img { transform: scale(1.07); }

.stories-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: .6rem;
}
.stories-hint {
  display: inline-flex;
  align-items: center;
  gap: .4em;
  color: var(--ink-soft);
  font-size: .92rem;
}
.stories-hint svg { color: var(--gold-deep); animation: nudge 1.6s infinite; }
@keyframes nudge { 0%,100% { transform: translateX(0); } 50% { transform: translateX(5px); } }
.btn-insta {
  background: linear-gradient(135deg, #feda75, #d62976 45%, #962fbf 75%, #4f5bd5);
  color: #fff;
  border: none;
  box-shadow: 0 10px 26px rgba(150, 47, 191, .35);
}
.btn-insta:hover { filter: brightness(1.06); box-shadow: 0 16px 32px rgba(150, 47, 191, .45); }

/* ════════════════════════════════════════════════════════════════
   COLLECTIONS
═══════════════════════════════════════════════════════════════════ */
.collections-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: clamp(1.2rem, 2.5vw, 1.8rem);
}
.collection-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(140,110,55,.1);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.collection-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.collection-media { aspect-ratio: 4/3; overflow: hidden; }
.collection-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.collection-card:hover .collection-media img { transform: scale(1.06); }
.collection-body { padding: 1.4rem 1.5rem 1.6rem; }
.collection-body h3 {
  font-family: var(--font-title);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: .5rem;
}
.collection-body p { color: var(--ink-soft); font-size: .98rem; margin-bottom: 1rem; }
.collection-link {
  display: inline-flex;
  align-items: center;
  gap: .4em;
  font-weight: 600;
  color: var(--gold-deep);
  transition: gap .3s var(--ease);
}
.collection-link span { transition: transform .3s var(--ease); }
.collection-link:hover span { transform: translateX(5px); }

/* ════════════════════════════════════════════════════════════════
   POURQUOI NOUS CHOISIR
═══════════════════════════════════════════════════════════════════ */
.why-section { background: var(--cream-2); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: clamp(1rem, 2.4vw, 1.6rem);
}
.why-card {
  background: var(--white);
  border: 1px solid rgba(140,110,55,.1);
  border-radius: var(--radius);
  padding: 2rem 1.7rem;
  box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.why-icon {
  display: grid;
  place-items: center;
  width: 58px; height: 58px;
  border-radius: 16px;
  margin-bottom: 1.2rem;
  color: var(--gold-deep);
  background: linear-gradient(135deg, rgba(227,205,155,.55), rgba(182,146,79,.2));
}
.why-card h3 {
  font-family: var(--font-title);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: .5rem;
  color: var(--ink);
}
.why-card p { color: var(--ink-soft); font-size: .96rem; }

/* ════════════════════════════════════════════════════════════════
   SHOWROOM
═══════════════════════════════════════════════════════════════════ */
.showroom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.showroom-lead { margin-top: 1rem; color: var(--ink-soft); font-size: 1.08rem; }
.showroom-details { margin-top: 1.8rem; display: flex; flex-direction: column; gap: 1.1rem; }
.showroom-details li { display: flex; align-items: flex-start; gap: .9rem; font-size: 1.05rem; }
.showroom-details a { font-weight: 600; color: var(--ink); }
.showroom-details a:hover { color: var(--gold-deep); }
.sr-ico {
  display: grid; place-items: center;
  width: 42px; height: 42px;
  flex-shrink: 0;
  border-radius: 12px;
  color: var(--gold-deep);
  background: linear-gradient(135deg, rgba(227,205,155,.5), rgba(182,146,79,.18));
}
.showroom-btns { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2rem; }
.showroom-socials { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1rem; }

.showroom-map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 5px solid var(--white);
  min-height: 360px;
}
.showroom-map iframe { width: 100%; height: 100%; min-height: 360px; border: 0; display: block; }

/* Carte "au clic" : aperçu léger avant chargement de Google Maps */
.map-facade {
  width: 100%;
  min-height: 360px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  cursor: pointer;
  border: 0;
  color: var(--ink);
  text-align: center;
  padding: 2rem;
  background:
    radial-gradient(420px 220px at 50% 38%, rgba(182,146,79,.22), transparent 70%),
    repeating-linear-gradient(0deg, rgba(140,110,55,.07) 0 1px, transparent 1px 38px),
    repeating-linear-gradient(90deg, rgba(140,110,55,.07) 0 1px, transparent 1px 38px),
    linear-gradient(135deg, #f6efe2, #efe4d2);
  transition: filter .3s var(--ease);
}
.map-facade:hover { filter: brightness(1.02); }
.map-facade:focus-visible { outline: 3px solid var(--gold-soft); outline-offset: -4px; }
.map-facade-pin {
  display: grid; place-items: center;
  width: 64px; height: 64px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  box-shadow: var(--shadow-md);
}
.map-facade-title { font-family: var(--font-title); font-size: 1.3rem; font-weight: 600; color: var(--ink); }
.map-facade-sub { font-size: .92rem; color: var(--ink-soft); }

/* ════════════════════════════════════════════════════════════════
   AVIS CLIENTS
═══════════════════════════════════════════════════════════════════ */
.reviews-section { background: var(--cream-2); }

/* Note globale (Google / Infobel) */
.reviews-scores {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1rem, 2.5vw, 1.6rem);
  margin-bottom: .9rem;
}
.score-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .45rem;
  min-width: 210px;
  padding: 1.4rem 2rem;
  background: var(--white);
  border: 1px solid rgba(140,110,55,.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.score-source {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.score-source svg { color: var(--gold-deep); }
.score-line { display: flex; align-items: center; gap: .6rem; }
.score-num {
  font-family: var(--font-title);
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1;
  color: var(--ink);
}
.score-num span { font-size: 1rem; font-weight: 500; color: var(--ink-soft); }
.score-count { font-size: .9rem; color: var(--ink-soft); }

/* Étoiles dorées */
.stars, .review-stars { display: inline-flex; gap: 2px; color: var(--gold); }
.stars svg { width: 17px; height: 17px; }
.review-stars svg { width: 20px; height: 20px; }

.reviews-disclaimer {
  text-align: center;
  font-size: .82rem;
  font-style: italic;
  color: var(--ink-soft);
  opacity: .85;
  margin-bottom: clamp(2rem, 4.5vw, 3.2rem);
}

/* Grille de témoignages */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.2rem, 2.5vw, 1.8rem);
}
.review-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: var(--white);
  border: 1px solid rgba(140,110,55,.1);
  border-radius: var(--radius);
  padding: 1.7rem 1.6rem;
  box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.review-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.review-text {
  flex: 1;
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.6;
}
.review-meta {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(140,110,55,.12);
}
.review-avatar {
  display: grid;
  place-items: center;
  width: 46px; height: 46px;
  flex-shrink: 0;
  border-radius: 50%;
  font-family: var(--font-title);
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
}
.review-id { display: flex; flex-direction: column; line-height: 1.35; }
.review-name { font-weight: 600; color: var(--ink); }
.review-info { font-size: .85rem; color: var(--ink-soft); }

.reviews-cta { text-align: center; margin-top: clamp(2rem, 4.5vw, 3.2rem); }

/* ════════════════════════════════════════════════════════════════
   CONTACT FINAL (bandeau accent chaud)
═══════════════════════════════════════════════════════════════════ */
.contact-section {
  background:
    radial-gradient(700px 400px at 20% 0%, rgba(182,146,79,.35), transparent 60%),
    linear-gradient(140deg, #2a2117 0%, #1a1410 55%, #241a10 100%);
  color: #f3e9d6;
  text-align: center;
}
.contact-inner { max-width: 720px; margin-inline: auto; }
.contact-title {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.1;
  color: #fff;
}
.contact-text { margin-top: 1.2rem; font-size: clamp(1.05rem, 2.1vw, 1.2rem); color: #e4d6bd; }
.contact-btns { display: flex; flex-wrap: wrap; justify-content: center; gap: .9rem; margin-top: 2.2rem; }

/* ════════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════════════ */
.site-footer {
  background: #181310;
  color: #cdbfa8;
  padding-top: clamp(3rem, 6vw, 4.5rem);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(205,191,168,.16);
}
.site-footer .brand-name { color: #fff; }
.site-footer .brand-name em { color: var(--gold-soft); }
.footer-activity { margin-top: 1rem; font-size: .95rem; color: #a9997f; max-width: 40ch; }
.footer-col h4 {
  font-family: var(--font-title);
  font-size: 1.15rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1rem;
}
.footer-col p { font-size: .96rem; margin-bottom: .5rem; }
.footer-col a:hover { color: var(--gold-soft); }
.footer-socials { display: flex; flex-direction: column; gap: .5rem; }
.footer-socials a { width: fit-content; }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: .6rem;
  padding-block: 1.6rem;
  font-size: .85rem;
  color: #8c7d66;
}
.footer-note { font-style: italic; }

/* ════════════════════════════════════════════════════════════════
   BARRE D'ACTION MOBILE (fixe en bas)
═══════════════════════════════════════════════════════════════════ */
.mobile-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  display: none;
  background: rgba(250,246,239,.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--sand);
  box-shadow: 0 -6px 24px rgba(40,30,15,.12);
  padding-bottom: env(safe-area-inset-bottom);
}
.mobile-bar a {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: .6rem 0 .7rem;
  font-size: .72rem;
  font-weight: 500;
  color: var(--ink);
}
.mobile-bar a svg { color: var(--gold-deep); }
.mobile-bar a:active { background: rgba(182,146,79,.1); }

/* ════════════════════════════════════════════════════════════════
   ANIMATIONS AU SCROLL (reveal)
═══════════════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  transition-delay: var(--reveal-delay, 0s);
}
.reveal.in-view { opacity: 1; transform: none; }

/* ════════════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════════════ */
@media (max-width: 980px) {
  .nav-links { display: none; }
  .header-actions { display: none; }
  .burger { display: flex; }

  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-visual { min-height: 0; height: 60vw; max-height: 480px; }

  .showroom-grid { grid-template-columns: 1fr; }
  .showroom-map { min-height: 300px; }

  .reviews-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  body { padding-bottom: 64px; } /* place pour la barre d'action mobile */
  .mobile-bar { display: flex; }

  .hero { padding-top: 6.5rem; }
  .hero-visual { height: 84vw; max-height: 460px; }
  .hero-photo-main { width: 66%; }
  .hero-photo-mini { width: 44%; }
  .hero-btns .btn { flex: 1; }

  .section-head { margin-bottom: 1.8rem; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.8rem; }
  .footer-bottom { flex-direction: column; }
}

/* Accessibilité : préférence de mouvement réduit */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}
