/* ============================================================
   L'ÉLÉGANCE DU COU AU POIGNET — Feuille de style principale
   ============================================================ */

/* ---- Variables ---- */
:root {
  --navy:    #1a2744;
  --gold:    #c9a84c;
  --gold-lt: #e8c96a;
  --cream:   #f8f5ef;
  --dark:    #111827;
  --mid:     #4b5563;
  --light:   #f9fafb;
  --white:   #ffffff;
  --border:  #e5e7eb;
  --shadow:  0 4px 24px rgba(26,39,68,.10);
  --shadow-lg: 0 12px 48px rgba(26,39,68,.18);
  --radius:  12px;
  --radius-lg: 20px;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Montserrat', Arial, sans-serif;
  --transition: .35s cubic-bezier(.4,0,.2,1);
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  color: var(--dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

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

/* ============================================================
   NAVIGATION
   ============================================================ */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
#header.scrolled { box-shadow: var(--shadow); }

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo .logo-img {
  height: 72px;
  width: auto;
  max-width: 190px;
  object-fit: contain;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--navy);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta {
  background: var(--navy) !important;
  color: var(--white) !important;
  padding: 10px 22px !important;
  border-radius: 50px !important;
  transition: background var(--transition) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold) !important; color: var(--navy) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================================
   HERO CAROUSEL
   ============================================================ */
.hero {
  margin-top: 84px;
  position: relative;
  overflow: hidden;
}

.carousel {
  position: relative;
  width: 100%;
  height: calc(100vh - 72px);
  min-height: 560px;
  max-height: 900px;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  height: 100%;
  transition: transform .7s cubic-bezier(.77,0,.175,1);
}

.carousel-slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  transition: transform 6s ease;
}
.carousel-slide.active img { transform: scale(1); }

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,39,68,.72) 0%, rgba(26,39,68,.25) 60%, transparent 100%);
  display: flex;
  align-items: center;
  padding: 0 8%;
}

.slide-content {
  max-width: 600px;
  color: var(--white);
  animation: fadeInUp .8s ease both;
}
.slide-content.hidden { animation: none; opacity: 0; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.slide-tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 16px;
  border: 1px solid rgba(201,168,76,.5);
  padding: 5px 14px;
  border-radius: 50px;
}

.slide-content h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 20px;
}
.slide-content h1 em {
  font-style: italic;
  color: var(--gold-lt);
}
.slide-content p {
  font-size: clamp(.95rem, 1.5vw, 1.15rem);
  font-weight: 300;
  opacity: .9;
  margin-bottom: 32px;
  max-width: 440px;
}

.btn-hero {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 50px;
  transition: background var(--transition), transform var(--transition);
}
.btn-hero:hover { background: var(--gold-lt); transform: translateY(-2px); }

.carousel-btn {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-size: 2rem;
  line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
  z-index: 10;
}
.carousel-btn:hover { background: rgba(255,255,255,.4); }
.carousel-btn.prev { left: 24px; }
.carousel-btn.next { right: 24px; }

.carousel-dots {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 10px;
  z-index: 10;
}
.dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.45);
  transition: background var(--transition), transform var(--transition);
}
.dot.active { background: var(--gold); transform: scale(1.3); }

/* ============================================================
   BANDEAU VALEURS
   ============================================================ */
.values-bar {
  background: var(--navy);
  padding: 20px 0;
}
.values-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.value-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 12px 32px;
  border-right: 1px solid rgba(255,255,255,.15);
}
.value-item:last-child { border-right: none; }
.value-icon { font-size: 1.1rem; color: var(--gold); }

/* ============================================================
   SECTIONS GÉNÉRALES
   ============================================================ */
.section { padding: 100px 0; }
.section-light { background: var(--light); }
.section-dark  { background: var(--navy); }
.section-cream { background: var(--cream); }
.section-story { background: var(--white); }
.section-contact { background: var(--dark); }

.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header--light { }

.section-label {
  display: inline-block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-label--light { color: var(--gold-lt); }

.section-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.2;
}
.section-header h2.text-light { color: var(--white); }

.section-desc {
  font-size: 1.05rem;
  color: var(--mid);
  max-width: 640px;
  margin: 0 auto;
  font-weight: 300;
}
.section-desc.text-light { color: rgba(255,255,255,.75); }

/* ============================================================
   GRILLE PRODUITS
   ============================================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-bottom: 72px;
}
.products-grid--3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.product-card--dark { background: rgba(255,255,255,.05); color: var(--white); border: 1px solid rgba(255,255,255,.1); }
.product-card--premium { border: 2px solid var(--gold); }

.product-img-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.05); }

.product-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--navy);
  color: var(--white);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .06em;
  padding: 6px 14px;
  border-radius: 50px;
}
.product-badge--gold {
  background: var(--gold);
  color: var(--navy);
}

.product-info {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-info h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 10px;
}
.product-card--dark .product-info h3 { color: var(--white); }

.product-desc {
  font-size: .9rem;
  color: var(--mid);
  margin-bottom: 20px;
  flex: 1;
  line-height: 1.6;
}
.product-card--dark .product-desc { color: rgba(255,255,255,.65); }

.product-options {
  border-top: 1px solid var(--border);
  padding-top: 16px;
  margin-bottom: 20px;
}
.product-card--dark .product-options { border-color: rgba(255,255,255,.15); }

.option-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: .88rem;
}
.product-card--dark .option-row { border-color: rgba(255,255,255,.1); }
.option-row:last-child { border-bottom: none; }
.option-row--gold { background: rgba(201,168,76,.08); padding: 10px 12px; border-radius: 8px; border: none !important; }
.option-row--promo { background: rgba(201,168,76,.08); padding: 8px 12px; border-radius: 8px; border: none !important; margin-top: 6px; }

.option-label { color: var(--mid); }
.product-card--dark .option-label { color: rgba(255,255,255,.7); }

.price {
  font-weight: 700;
  color: var(--navy);
  font-size: .95rem;
}
.product-card--dark .price { color: var(--white); }
.price--gold { color: var(--gold) !important; font-size: 1.05rem; }

.btn-product {
  display: block;
  text-align: center;
  background: var(--navy);
  color: var(--white);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 13px 24px;
  border-radius: 50px;
  transition: background var(--transition), transform var(--transition);
  margin-top: auto;
}
.btn-product:hover { background: var(--gold); color: var(--navy); transform: translateY(-1px); }
.btn-product--gold { background: var(--gold); color: var(--navy); }
.btn-product--gold:hover { background: var(--gold-lt); }

/* ============================================================
   GALERIES SCROLL
   ============================================================ */
.gallery-section { margin-top: 16px; }
.gallery-section--light .gallery-title { color: var(--white); }

.gallery-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--navy);
  margin-bottom: 24px;
  text-align: center;
}
.gallery-title--light { color: var(--white); }

.gallery-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 16px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) var(--border);
}
.gallery-scroll::-webkit-scrollbar { height: 4px; }
.gallery-scroll::-webkit-scrollbar-track { background: var(--border); border-radius: 2px; }
.gallery-scroll::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

.gallery-item {
  flex: 0 0 220px;
  height: 220px;
  border-radius: var(--radius);
  overflow: hidden;
  scroll-snap-align: start;
  cursor: pointer;
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.gallery-item:hover img { transform: scale(1.08); }

/* ============================================================
   SECTION BOUCLES
   ============================================================ */
.boucles-showcase {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 56px;
  box-shadow: var(--shadow-lg);
}
.boucles-main-img { width: 100%; height: 420px; object-fit: cover; }

.boucles-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-bottom: 56px;
}
.boucle-cat {
  text-align: center;
  padding: 32px 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}
.boucle-cat:hover { transform: translateY(-4px); }
.boucle-cat-icon { font-size: 2rem; margin-bottom: 14px; }
.boucle-cat h4 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 8px;
}
.boucle-cat p { font-size: .88rem; color: var(--mid); line-height: 1.5; }

.boucles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
}
.boucle-item {
  aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.boucle-item:hover {
  transform: scale(1.04);
  box-shadow: var(--shadow-lg);
}
.boucle-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================================
   SECTION COULEURS
   ============================================================ */
.couleurs-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 48px;
  box-shadow: var(--shadow-lg);
}
.couleurs-img { width: 100%; height: 400px; object-fit: cover; }

.couleurs-cta {
  text-align: center;
}
.couleurs-cta p {
  font-size: 1.05rem;
  color: var(--mid);
  margin-bottom: 28px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.btn-primary {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 15px 36px;
  border-radius: 50px;
  transition: background var(--transition), transform var(--transition);
}
.btn-primary:hover { background: var(--gold); color: var(--navy); transform: translateY(-2px); }

/* ============================================================
   SECTION HISTOIRE
   ============================================================ */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.story-img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.story-text-col .section-label { display: block; margin-bottom: 12px; }
.story-text-col h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 300;
  color: var(--navy);
  margin-bottom: 28px;
  line-height: 1.2;
}
.story-text-col p {
  color: var(--mid);
  margin-bottom: 18px;
  font-size: .97rem;
  line-height: 1.8;
}
.story-badges {
  display: flex;
  gap: 24px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.story-badge {
  text-align: center;
  padding: 20px 24px;
  background: var(--cream);
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
  min-width: 100px;
}
.story-badge strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
}
.story-badge span {
  font-size: .78rem;
  color: var(--mid);
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* ============================================================
   SECTION CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 24px; }

.contact-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 28px;
  transition: background var(--transition);
}
.contact-card:hover { background: rgba(255,255,255,.1); }
.contact-icon { font-size: 1.8rem; margin-bottom: 12px; }
.contact-card h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 8px;
}
.contact-card p { font-size: .9rem; color: rgba(255,255,255,.65); margin-bottom: 14px; }

.contact-link {
  display: inline-block;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--gold);
  transition: color var(--transition);
}
.contact-link:hover { color: var(--gold-lt); }
.contact-link--phone { font-size: 1.4rem; }
.contact-location { color: rgba(255,255,255,.6); font-size: .9rem; }

/* Formulaire */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}
.contact-form h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 28px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: var(--font-sans);
  font-size: .95rem;
  color: var(--dark);
  background: var(--light);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,.15);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 120px; }

.btn-submit {
  width: 100%;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 15px 24px;
  border-radius: 50px;
  transition: background var(--transition), transform var(--transition);
  cursor: pointer;
}
.btn-submit:hover { background: var(--gold); color: var(--navy); transform: translateY(-1px); }

.form-success {
  display: none;
  margin-top: 20px;
  padding: 16px 20px;
  background: rgba(34,197,94,.1);
  border: 1px solid rgba(34,197,94,.3);
  border-radius: 10px;
  color: #166534;
  font-size: .92rem;
  text-align: center;
}
.form-success.visible { display: block; }

/* ============================================================
   AMBIANCE IMAGE
   ============================================================ */
.dog-ambiance {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 64px;
  box-shadow: var(--shadow-lg);
}
.ambiance-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center 30%;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy);
  color: var(--white);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-logo {
  height: 72px;
  width: auto;
  max-width: 190px;
  object-fit: contain;
  margin-bottom: 20px;
  /* pas de filtre : logo_footer.png a déjà le texte en blanc */
}
.footer-brand p {
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  line-height: 1.7;
  max-width: 320px;
}
.footer-nav h4,
.footer-contact h4 {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-nav ul { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a,
.footer-contact a {
  font-size: .9rem;
  color: rgba(255,255,255,.65);
  transition: color var(--transition);
}
.footer-nav a:hover,
.footer-contact a:hover { color: var(--gold); }
.footer-contact p { margin-bottom: 8px; font-size: .9rem; color: rgba(255,255,255,.65); }

.footer-bottom {
  text-align: center;
  padding: 24px 0;
  font-size: .8rem;
  color: rgba(255,255,255,.35);
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.92);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }

.lightbox-content {
  max-width: 90vw;
  max-height: 90vh;
  position: relative;
}
.lightbox-content img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius);
}
.lightbox-close {
  position: absolute;
  top: 20px; right: 20px;
  color: var(--white);
  font-size: 1.8rem;
  z-index: 2001;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.lightbox-close:hover { background: rgba(255,255,255,.3); }
.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  color: var(--white);
  font-size: 3rem;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
  z-index: 2001;
}
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,.3); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .story-grid { grid-template-columns: 1fr; gap: 40px; }
  .story-img { height: 380px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 84px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 24px 24px;
    gap: 0;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav-links li { border-bottom: 1px solid var(--border); }
  .nav-links a {
    display: block;
    padding: 14px 0;
    font-size: .9rem;
  }
  .nav-links a::after { display: none; }
  .nav-cta {
    margin-top: 12px;
    text-align: center;
    border-radius: 50px !important;
  }
  .nav-toggle { display: flex; }

  .carousel { height: 85vw; min-height: 380px; max-height: 600px; }
  .slide-content h1 { font-size: 2rem; }
  .carousel-btn { width: 40px; height: 40px; font-size: 1.5rem; }

  .values-grid { gap: 0; }
  .value-item { padding: 10px 16px; font-size: .75rem; border-right: none; border-bottom: 1px solid rgba(255,255,255,.15); width: 100%; }
  .value-item:last-child { border-bottom: none; }

  .section { padding: 64px 0; }
  .products-grid { grid-template-columns: 1fr; gap: 24px; }
  .products-grid--3 { grid-template-columns: 1fr; }

  .boucles-main-img { height: 260px; }
  .couleurs-img { height: 260px; }
  .ambiance-img { height: 280px; }

  .story-img { height: 280px; }
  .story-badges { gap: 12px; }

  .contact-form-wrap { padding: 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }

  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .slide-content { padding: 0 4%; }
  .slide-content h1 { font-size: 1.7rem; }
  .slide-content p { font-size: .88rem; }
  .btn-hero { padding: 12px 24px; font-size: .78rem; }
  .boucles-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-item { flex: 0 0 160px; height: 160px; }
}

/* ============================================================
   ANIMATIONS AU SCROLL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
