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

:root {
  --gold: #C9A84C;
  --gold-light: #E2C47A;
  --gold-dim: rgba(201,168,76,0.15);
  --dark: #08080E;
  --surface: #10101A;
  --surface2: #16162A;
  --text: #E4E4DC;
  --muted: #6B6B7E;
  --border: rgba(201,168,76,0.14);
}

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

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--dark);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: rgba(201,168,76,0.4); border-radius: 2px; }

/* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 200;
  background: rgba(8,8,14,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px; height: 68px;
}

.nav-logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; cursor: pointer;
}

.nav-logo-mark {
  width: 36px; height: 36px;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
}

.nav-logo-mark img { width: 100%; height: 100%; object-fit: contain; }
.nav-logo-mark span { color: var(--dark); font-size: 13px; font-weight: 800; letter-spacing: 1px; }

.nav-brand {
  color: var(--text); font-size: 13px; letter-spacing: 3px;
  text-transform: uppercase; font-weight: 500;
}

.nav-links { display: flex; align-items: center; gap: 4px; }

.nav-links a {
  color: var(--muted); text-decoration: none;
  padding: 8px 16px; font-size: 11px; letter-spacing: 2px;
  text-transform: uppercase; font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: color 0.25s, border-color 0.25s;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.nav-cta {
  background: var(--gold) !important;
  color: var(--dark) !important;
  padding: 8px 20px !important;
  font-weight: 600 !important;
  border-bottom: none !important;
}

.nav-cta:hover { background: var(--gold-light) !important; }

/* ── HERO ── */
.hero {
  position: relative; overflow: hidden;
  min-height: 88vh; display: flex; flex-direction: column;
  justify-content: flex-end; padding: 80px 48px;
}

.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}

.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.52) saturate(0.45);
  animation: kenburns 18s ease-in-out infinite alternate;
  transform-origin: center center;
  object-position: center 30%;
}

.hero-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(to top, var(--dark) 30%, transparent 80%);
  z-index: 1;
}

.hero-glow {
  position: absolute; top: -10%; right: -5%; z-index: 1;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content { position: relative; z-index: 2; max-width: 800px; }

.eyebrow {
  color: var(--gold); font-size: 11px; letter-spacing: 6px;
  text-transform: uppercase; margin-bottom: 20px;
  display: flex; align-items: center; gap: 12px;
}

.eyebrow::before {
  content: ''; display: block; width: 32px; height: 1px;
  background: var(--gold);
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 7vw, 88px);
  line-height: 1.05; color: var(--text);
  margin-bottom: 24px;
}

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

.hero-sub {
  color: var(--muted); font-size: 18px; max-width: 520px;
  line-height: 1.7; margin-bottom: 44px;
}

.btn-primary {
  display: inline-block;
  background: var(--gold); color: var(--dark);
  padding: 15px 40px; font-size: 12px; letter-spacing: 3px;
  text-transform: uppercase; font-weight: 700;
  text-decoration: none; border: none; cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: background 0.3s, transform 0.2s;
}

.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }

.btn-outline {
  display: inline-block;
  background: transparent; color: var(--gold);
  padding: 14px 40px; font-size: 12px; letter-spacing: 3px;
  text-transform: uppercase; font-weight: 600;
  text-decoration: none; border: 1px solid var(--gold); cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: background 0.3s, color 0.3s;
}

.btn-outline:hover { background: var(--gold); color: var(--dark); }

.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

/* ── STATS BAR ── */
.stats-bar {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}

.stat {
  padding: 36px 32px; text-align: center;
  border-right: 1px solid var(--border);
}
.stat:last-child { border-right: none; }

.stat-value {
  font-family: 'Playfair Display', serif;
  font-size: 42px; color: var(--gold); line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  color: var(--muted); font-size: 11px; letter-spacing: 2px;
  text-transform: uppercase;
}

/* ── SECTIONS ── */
section { padding: 96px 48px; }

.section-label {
  color: var(--gold); font-size: 11px; letter-spacing: 5px;
  text-transform: uppercase; margin-bottom: 16px;
  display: flex; align-items: center; gap: 12px;
}

.section-label::before {
  content: ''; display: block; width: 24px; height: 1px; background: var(--gold);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 44px);
  color: var(--text); line-height: 1.2; margin-bottom: 20px;
}

.section-title em { color: var(--gold); font-style: italic; }

.section-text {
  color: var(--muted); font-size: 16px; line-height: 1.8;
  max-width: 560px;
}

/* ── ABOUT SPLIT ── */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}

.about-img {
  position: relative; height: 560px;
}

.about-img img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.7) saturate(0.6);
}

.about-img-accent {
  position: absolute; bottom: -16px; right: -16px;
  width: 140px; height: 140px; background: var(--gold-dim);
  border: 1px solid var(--border); z-index: -1;
}

.about-img-label {
  position: absolute; bottom: 24px; left: 24px;
  background: var(--dark); padding: 16px 20px;
  border-left: 2px solid var(--gold);
}

.about-img-label strong { color: var(--gold); font-size: 22px; display: block; font-family: 'Playfair Display', serif; }
.about-img-label span { color: var(--muted); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; }

/* ── SERVICES GRID ── */
.services-intro {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start; margin-bottom: 64px;
}

.services-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

.service-card {
  background: var(--surface2); padding: 40px 36px;
  position: relative; overflow: hidden;
  transition: background 0.3s;
  text-decoration: none; display: block;
  cursor: default;
}

.service-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(to right, var(--gold), transparent);
  opacity: 0; transition: opacity 0.3s;
}

.service-card:hover { background: #1A1A2E; }
.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 48px; height: 48px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--gold); margin-bottom: 24px;
  transition: background 0.3s, border-color 0.3s;
}

.service-card:hover .service-icon {
  background: var(--gold-dim); border-color: var(--gold);
}

.service-card h3 {
  color: var(--text); font-size: 16px; font-weight: 600;
  margin-bottom: 12px; letter-spacing: 0.5px;
}

.service-card p {
  color: var(--muted); font-size: 14px; line-height: 1.7;
}

.service-card .arrow {
  position: absolute; bottom: 32px; right: 32px;
  color: var(--gold); font-size: 18px; opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
}

.service-card:hover .arrow { opacity: 1; transform: translateX(4px); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  position: relative; padding: 96px 48px 72px;
  border-bottom: 1px solid var(--border); overflow: hidden;
}

.page-hero-bg {
  position: absolute; inset: 0; z-index: 0;
}

.page-hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.45) saturate(0.55);
  animation: kenburns 18s ease-in-out infinite alternate;
  transform-origin: center center;
}

.page-hero-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--dark) 50%, rgba(8,8,14,0.6) 100%);
  z-index: 1;
}

.page-hero-content { position: relative; z-index: 2; max-width: 700px; }

.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.1; color: var(--text); margin-bottom: 20px;
}

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

.page-hero p {
  color: var(--muted); font-size: 17px; line-height: 1.7;
  max-width: 480px;
}

/* ── DETAIL CARDS ── */
.detail-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 2px; margin-bottom: 2px;
}

.detail-card {
  background: var(--surface2); padding: 48px 40px;
  position: relative;
}

.detail-card-number {
  font-family: 'Playfair Display', serif;
  font-size: 56px; color: var(--border);
  position: absolute; top: 32px; right: 32px;
  line-height: 1; pointer-events: none;
}

.detail-card h3 {
  color: var(--gold); font-size: 12px; letter-spacing: 3px;
  text-transform: uppercase; margin-bottom: 16px; font-weight: 600;
}

.detail-card h4 {
  color: var(--text); font-size: 22px; font-family: 'Playfair Display', serif;
  margin-bottom: 16px; line-height: 1.3;
}

.detail-card p {
  color: var(--muted); font-size: 14px; line-height: 1.8;
}

/* ── FULL-WIDTH IMAGE ── */
.full-img {
  width: 100%; height: 480px; overflow: hidden;
  position: relative;
}

.full-img img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.5) saturate(0.5);
}

.full-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(8,8,14,0.9) 40%, transparent);
  display: flex; flex-direction: column; justify-content: center;
  padding: 0 48px;
}

/* ── CTA BAND ── */
.cta-band {
  background: var(--surface2);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 80px 48px;
  display: grid; grid-template-columns: 1fr auto;
  gap: 48px; align-items: center;
}

.cta-band h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3vw, 38px); color: var(--text); margin-bottom: 12px;
}

.cta-band p { color: var(--muted); font-size: 16px; max-width: 500px; }

/* ── CONTACT ── */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 80px;
}

.contact-info { display: flex; flex-direction: column; gap: 0; }

.contact-info-item {
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  display: flex; gap: 24px;
}

.contact-info-item .ci-label {
  color: var(--gold); font-size: 11px; letter-spacing: 2px;
  text-transform: uppercase; min-width: 90px; padding-top: 2px;
}

.contact-info-item .ci-value { color: var(--text); font-size: 15px; line-height: 1.6; }

.contact-form {
  background: var(--surface2); padding: 48px;
  border: 1px solid var(--border);
}

.form-title {
  color: var(--gold); font-size: 11px; letter-spacing: 4px;
  text-transform: uppercase; margin-bottom: 32px;
}

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block; color: var(--muted); font-size: 10px;
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; background: var(--dark);
  border: 1px solid var(--border); color: var(--text);
  padding: 12px 16px; font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  outline: none; transition: border-color 0.25s;
}

.form-group input:focus,
.form-group textarea:focus { border-color: var(--gold); }

.form-group textarea { resize: vertical; min-height: 120px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-submit {
  width: 100%; background: var(--gold); color: var(--dark);
  border: none; padding: 16px; font-size: 12px;
  letter-spacing: 3px; text-transform: uppercase;
  font-weight: 700; cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  margin-top: 8px; transition: background 0.3s;
}

.form-submit:hover { background: var(--gold-light); }

/* ── FEATURES LIST ── */
.features-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }

.features-list li {
  display: flex; align-items: flex-start; gap: 14px;
  color: var(--muted); font-size: 15px; line-height: 1.6;
}

.features-list li::before {
  content: '◆'; color: var(--gold); font-size: 8px;
  margin-top: 6px; flex-shrink: 0;
}

/* ── PROCESS ── */
.process { display: flex; flex-direction: column; gap: 0; }

.process-item {
  display: grid; grid-template-columns: 64px 1fr;
  gap: 32px; padding: 40px 0; border-bottom: 1px solid var(--border);
}

.process-num {
  font-family: 'Playfair Display', serif;
  font-size: 48px; color: var(--gold-dim); line-height: 1;
  font-weight: 700;
}

.process-item h3 {
  color: var(--text); font-size: 18px; font-weight: 600;
  margin-bottom: 8px;
}

.process-item p { color: var(--muted); font-size: 14px; line-height: 1.7; }

/* ── BOUTIQUE ── */
.products-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.product-card {
  background: var(--surface2); overflow: hidden;
  position: relative; transition: background 0.3s;
}

.product-card:hover { background: #1A1A2E; }

.product-img {
  height: 200px; overflow: hidden;
}

.product-img img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.6) saturate(0.5);
  transition: filter 0.4s, transform 0.4s;
}

.product-card:hover .product-img img {
  filter: brightness(0.8) saturate(0.7);
  transform: scale(1.04);
}

.product-info { padding: 28px; }

.product-tag {
  color: var(--gold); font-size: 10px; letter-spacing: 3px;
  text-transform: uppercase; margin-bottom: 10px;
}

.product-info h3 { color: var(--text); font-size: 17px; margin-bottom: 10px; }
.product-info p { color: var(--muted); font-size: 13px; line-height: 1.6; }

/* ── FOOTER ── */
footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 64px 48px 32px;
}

.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 64px; margin-bottom: 48px;
}

.footer-brand p { color: var(--muted); font-size: 14px; line-height: 1.7; margin-top: 12px; max-width: 260px; }

.footer-col h4 {
  color: var(--text); font-size: 11px; letter-spacing: 3px;
  text-transform: uppercase; margin-bottom: 20px; font-weight: 600;
}

.footer-col a {
  display: block; color: var(--muted); text-decoration: none;
  font-size: 14px; padding: 4px 0;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  padding-top: 24px; border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
}

.footer-bottom span { color: var(--muted); font-size: 12px; }
.footer-bottom .footer-tagline { color: var(--gold); font-size: 11px; letter-spacing: 3px; text-transform: uppercase; }

/* ── UTILS ── */
.gold { color: var(--gold); }
.serif { font-family: 'Playfair Display', serif; }

.split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}

.split-img { height: 520px; overflow: hidden; }
.split-img img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.78) saturate(0.6); }

.tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }

.tag {
  border: 1px solid var(--border); color: var(--muted);
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  padding: 6px 14px;
}

/* ── KEN BURNS ANIMATION ── */
@keyframes kenburns {
  0%   { transform: scale(1)    translate(0%, 0%); }
  25%  { transform: scale(1.06) translate(-1%, -0.5%); }
  50%  { transform: scale(1.04) translate(1%, 0.5%); }
  75%  { transform: scale(1.07) translate(-0.5%, 1%); }
  100% { transform: scale(1.05) translate(0.5%, -1%); }
}

/* ── NAV BURGER ── */
.nav-burger {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; width: 40px; height: 40px;
  background: none; border: 1px solid var(--border); cursor: pointer;
  padding: 0; flex-shrink: 0;
  transition: border-color 0.25s;
}
.nav-burger:hover { border-color: var(--gold); }
.nav-burger span {
  display: block; width: 20px; height: 1px;
  background: var(--text); transition: all 0.3s ease;
  transform-origin: center;
}
.nav-burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ── MOBILE MENU ── */
.nav-mobile {
  display: none !important;
  position: fixed; top: 68px; left: 0; right: 0; bottom: 0;
  background: rgba(8,8,14,0.97);
  backdrop-filter: blur(20px);
  z-index: 199;
  flex-direction: column;
  padding: 40px 24px;
  overflow-y: auto;
  transform: translateY(-8px); opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
  border-top: 1px solid var(--border);
}
.nav-mobile.open {
  display: flex !important;
  opacity: 1; transform: translateY(0);
  pointer-events: all;
}
.nav-mobile a {
  color: var(--muted); text-decoration: none;
  font-size: 13px; letter-spacing: 3px; text-transform: uppercase;
  font-weight: 500; padding: 20px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-mobile a svg { color: var(--gold); opacity: 0.35; transition: opacity 0.2s, transform 0.2s; }
.nav-mobile a:hover, .nav-mobile a.active { color: var(--gold); }
.nav-mobile a:hover svg, .nav-mobile a.active svg { opacity: 1; transform: translateX(3px); }
.nav-mobile a.active { color: var(--gold); }
.nav-mobile .nav-cta-mobile {
  margin-top: 32px;
  background: var(--gold); color: var(--dark) !important;
  padding: 18px 24px; font-weight: 700; letter-spacing: 2px;
  text-align: center; justify-content: center; border: none;
  font-size: 12px;
}
.nav-mobile .nav-cta-mobile::after { display: none; }
.nav-mobile .nav-cta-mobile:hover { background: var(--gold-light) !important; }


/* ══════════════════════════════════════════
   RESPONSIVE MOBILE — ACTiViTY GROUP
   Breakpoint único: 900px
   Filosofía: mismo luxury noir, adaptado
══════════════════════════════════════════ */

@media (max-width: 900px) {

  /* ── NAV ── */
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-brand { font-size: 11px; letter-spacing: 2px; }

  /* ── HERO ACCUEIL ── */
  .hero {
    padding: 32px 20px 52px;
    min-height: 100svh;
    justify-content: flex-end;
  }
  .hero h1 {
    font-size: clamp(34px, 10vw, 52px);
    line-height: 1.08;
    margin-bottom: 16px;
  }
  .eyebrow {
    font-size: 10px; letter-spacing: 4px;
    margin-bottom: 14px;
  }
  .hero-sub {
    font-size: 14px; line-height: 1.7;
    margin-bottom: 28px;
    max-width: 100%;
  }
  .hero-btns {
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
  }
  .hero-btns .btn-primary,
  .hero-btns .btn-outline {
    text-align: center;
    width: 100%;
    padding: 16px 20px;
    font-size: 11px;
    letter-spacing: 2px;
  }

  /* ── PAGE HERO (pages intérieures) ── */
  .page-hero {
    padding: 60px 20px 44px;
    min-height: auto !important;
  }
  .page-hero h1 {
    font-size: clamp(28px, 8vw, 44px);
    line-height: 1.1;
    margin-bottom: 14px;
  }
  .page-hero p {
    font-size: 14px;
    max-width: 100%;
  }

  /* ── SECTIONS ── */
  section { padding: 52px 20px; }

  .section-title {
    font-size: clamp(24px, 7vw, 36px);
  }
  .section-text { font-size: 14px; max-width: 100%; }

  /* ── STATS BAR ── */
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .stat {
    padding: 28px 12px;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(3) { border-bottom: none; }
  .stat:nth-child(4) { border-right: none; border-bottom: none; }
  .stat-value { font-size: 30px; }
  .stat-label { font-size: 10px; letter-spacing: 1px; }

  /* ── GRIDS → COLONNE UNIQUE ── */
  .about-grid,
  .split,
  .contact-grid,
  .services-intro {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  /* ── IMAGES ── */
  .about-img { height: 260px; }
  .about-img-accent { display: none; }
  .split-img { height: 220px; }
  .full-img { height: 220px; }
  .full-img-overlay {
    padding: 0 20px;
    background: linear-gradient(to top, rgba(8,8,14,0.95) 40%, rgba(8,8,14,0.5) 100%);
    justify-content: flex-end;
    padding-bottom: 24px;
  }
  .full-img-overlay h2 {
    font-size: clamp(20px, 6vw, 28px);
  }

  /* ── SERVICE CARDS ── */
  .services-grid,
  .detail-grid,
  .products-grid {
    grid-template-columns: 1fr;
    gap: 2px;
  }
  .service-card {
    padding: 28px 22px 36px;
  }
  .service-card .arrow {
    opacity: 1;
    bottom: 20px; right: 20px;
  }
  .detail-card { padding: 32px 22px; }
  .detail-card-number { font-size: 40px; top: 20px; right: 20px; }

  /* ── PROCESS ── */
  .process-item {
    grid-template-columns: 44px 1fr;
    gap: 16px;
    padding: 28px 0;
  }
  .process-num { font-size: 32px; }
  .process-item h3 { font-size: 16px; }

  /* ── CTA BAND ── */
  .cta-band {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 48px 20px;
  }
  .cta-band > div:last-child {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
  }
  .cta-band .btn-primary,
  .cta-band .btn-outline {
    text-align: center;
    width: 100%;
    padding: 16px 20px;
  }

  /* ── BOUTIQUE ── */
  .products-grid { grid-template-columns: 1fr; }
  .product-img { height: 180px; }
  .product-info { padding: 20px; }

  /* ── CONTACT ── */
  .contact-form { padding: 28px 18px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-info-item { gap: 16px; }
  .contact-info-item .ci-label { min-width: 72px; font-size: 10px; }

  /* ── FOOTER ── */
  footer { padding: 44px 20px 24px; }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 32px;
  }
  .footer-brand { grid-column: 1 / -1; }
  .footer-brand p { max-width: 100%; }
  .footer-col a { word-break: break-all; overflow-wrap: break-word; }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  .footer-bottom .footer-tagline { display: none; }

  /* ── TAGS ── */
  .tag { font-size: 10px; padding: 5px 10px; }
}


  /* ── INLINE GRID OVERRIDES (override inline styles) ── */
  [style*="grid-template-columns:1fr 1fr"],
  [style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
  [style*="grid-template-columns:1fr 1fr"] > *,
  [style*="grid-template-columns: 1fr 1fr"] > * {
    width: 100% !important;
  }
  [style*="padding:0 48px"],
  [style*="padding: 0 48px"],
  [style*="padding:80px 48px"],
  [style*="padding: 80px 48px"] {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  [style*="gap:80px"],
  [style*="gap: 80px"] {
    gap: 28px !important;
  }
  /* ── BEFORE/AFTER SLIDER MOBILE ── */
  #ba-slider { height: 280px !important; }

/* ── PETIT MOBILE (< 400px) ── */
@media (max-width: 400px) {
  .hero h1 { font-size: 30px; }
  .stats-bar { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 1px solid var(--border); }
  .stat:last-child { border-bottom: none; }
  .footer-grid { grid-template-columns: 1fr; }
}


/* ── WHATSAPP FLOATING BUTTON ── */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  filter: drop-shadow(0 4px 16px rgba(37,211,102,0.35));
  transition: transform 0.3s ease, filter 0.3s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.05);
  filter: drop-shadow(0 8px 24px rgba(37,211,102,0.55));
}

.whatsapp-float .wa-icon {
  width: 44px;
  height: 44px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.whatsapp-float .wa-icon svg {
  width: 23px;
  height: 23px;
  fill: #fff;
}

.whatsapp-float .wa-label {
  background: var(--surface2);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 8px 16px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.whatsapp-float:hover .wa-label {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 900px) {
  .whatsapp-float { bottom: 20px; right: 16px; }
  .whatsapp-float .wa-label { display: none; }
}

/* ── SWIPE DOTS ── */
.swipe-dots {
  display: none;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}
.swipe-dots span {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,0.55);
  display: inline-block;
  transition: background 0.25s, transform 0.25s;
  cursor: pointer;
}
.swipe-dots span.active {
  background: var(--gold);
  transform: scale(1.4);
}
@media (max-width: 900px) {
  .swipe-dots { display: flex; }
}
