/* ─── VARIABLES (charte graphique inchangée) ─── */
:root {
  --gold: #b89a6a;
  --gold-deep: #9c7f53;
  --gold-soft: rgba(184, 154, 106, 0.16);
  --beige: #f4efea;
  --beige-strong: #ece4dc;
  --surface: #fbf8f4;
  --text: #3a3a3a;
  --text-soft: #6b655f;
  --white: #ffffff;
  --border: rgba(184, 154, 106, 0.32);
  --shadow: 0 24px 60px rgba(73, 55, 31, 0.08);
  --shadow-soft: 0 8px 24px rgba(73, 55, 31, 0.06);
  --shadow-strong: 0 32px 80px rgba(73, 55, 31, 0.14);
  --radius: 20px;
  --radius-sm: 14px;
  --nav-h: 84px;
  --transition: 0.3s ease;
  --font-title: "Playfair Display", serif;
  --font-body: "Poppins", sans-serif;
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--surface);
  line-height: 1.65;
  overflow-x: hidden;
  width: 100%;
  position: relative;
}
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

main,
section,
.site-footer,
.mobile-menu {
  max-width: 100%;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
ul { list-style: none; }

/* ─── LAYOUT ─── */
.container {
  width: 100%;
  max-width: 1160px;
  padding-left: 24px;
  padding-right: 24px;
  margin: 0 auto;
}

.hero-inner > *,
.split-layout > *,
.gallery-mosaic > *,
.gm-stack > *,
.offer-block > *,
.services-grid > *,
.events-grid > *,
.reviews-grid > *,
.contact-layout > *,
.footer-inner > *,
.process-banner > *,
.pb-steps > * {
  min-width: 0;
}

section { padding: 100px 0; }

.section-light {
  background: linear-gradient(180deg, rgba(255,255,255,0.6) 0%, rgba(244,239,234,0.4) 100%);
}

/* ─── TYPOGRAPHY UTILITIES ─── */
.eyebrow,
.section-kicker,
.panel-badge,
.hcp-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--gold-deep);
}
.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.section-kicker-light { color: rgba(255,255,255,0.75); }
.section-kicker-light::before { background: rgba(255,255,255,0.5); }

h1, h2, h3 {
  font-family: var(--font-title);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.01em;
}

.section-heading {
  max-width: 680px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin: 14px 0 16px;
}
.section-heading p { color: var(--text-soft); }

/* ─── SKIP LINK ─── */
.skip-link {
  position: absolute;
  left: 20px;
  top: -80px;
  z-index: 2000;
  background: var(--gold);
  color: var(--white);
  padding: 12px 18px;
  border-radius: 0 0 12px 12px;
  transition: top var(--transition);
}
.skip-link:focus { top: 0; }

/* ─── NAVBAR ─── */
#navbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--nav-h);
  transition: background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
}
#navbar.scrolled {
  background: rgba(251, 248, 244, 0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border), 0 8px 32px rgba(58,58,58,0.05);
}
.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 100%;
}

/* Brand */
.brand { display: flex; align-items: center; gap: 14px; }
.brand-logo, .footer-logo {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  background: var(--white);
}
.brand-copy { display: flex; flex-direction: column; }
.brand-name {
  font-family: var(--font-title);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.brand-sub {
  color: var(--text-soft);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* Nav links */
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-link {
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 0.9rem;
  color: var(--text-soft);
  transition: color var(--transition), background var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: var(--gold-deep);
  background: var(--gold-soft);
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  border: 1px solid var(--gold);
  box-shadow: 0 6px 20px rgba(184,154,106,0.3);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.nav-cta i { font-size: 0.95rem; }
.nav-cta:hover {
  background: var(--gold-deep);
  border-color: var(--gold-deep);
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(184,154,106,0.36);
}

/* Hamburger */
.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(255,255,255,0.6);
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.hamburger span {
  display: block;
  height: 1.5px;
  background: var(--text);
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 32px;
  background: rgba(251,248,244,0.97);
  backdrop-filter: blur(20px);
  transform: translateX(100%);
  transition: transform var(--transition);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: transparent;
  color: var(--text);
}
.mobile-link {
  padding: 15px 18px;
  border-bottom: 1px solid rgba(184,154,106,0.14);
  font-size: 1.05rem;
  color: var(--text);
}
.mobile-link-cta { color: var(--gold-deep); font-weight: 600; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 500;
  transition: transform var(--transition), background var(--transition),
    border-color var(--transition), box-shadow var(--transition);
  white-space: nowrap;
  max-width: 100%;
}
.btn:hover { transform: translateY(-2px); }
.btn-lg { padding: 15px 30px; font-size: 1rem; }
.btn-full { width: 100%; }

.btn-primary {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(184,154,106,0.28);
}
.btn-primary:hover {
  background: var(--gold-deep);
  box-shadow: 0 18px 36px rgba(184,154,106,0.36);
}
.btn-outline {
  border-color: var(--border);
  background: rgba(255,255,255,0.55);
  color: var(--text);
}
.btn-outline:hover {
  border-color: var(--gold);
  background: rgba(255,255,255,0.8);
  color: var(--gold-deep);
}
.btn-white {
  background: var(--white);
  color: var(--gold-deep);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.btn-white:hover { background: var(--beige); }
.btn-outline-white {
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
  background: transparent;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); }

/* ─── HERO ─── */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-top: calc(var(--nav-h) + 40px);
  padding-bottom: 0;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 50% at 10% 20%, rgba(184,154,106,0.14) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 90% 80%, rgba(184,154,106,0.10) 0%, transparent 55%),
    linear-gradient(170deg, #faf6f1 0%, var(--beige) 100%);
}
.hero-bg-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(60px);
}
.orb-1 {
  width: 500px; height: 500px;
  top: -100px; left: -180px;
  background: radial-gradient(circle, rgba(184,154,106,0.18), transparent 65%);
}
.orb-2 {
  width: 400px; height: 400px;
  bottom: 80px; right: -140px;
  background: radial-gradient(circle, rgba(184,154,106,0.12), transparent 65%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr minmax(340px, 0.75fr);
  gap: 48px;
  align-items: center;
  flex: 1;
  padding-bottom: 60px;
}

.hero-text-block { position: relative; z-index: 1; }
.hero-text-block h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  margin: 18px 0 22px;
  max-width: 13ch;
  line-height: 1.08;
}
.hero-lead {
  color: var(--text-soft);
  font-size: 1.08rem;
  max-width: 56ch;
  line-height: 1.7;
}
.hero-lead strong { color: var(--text); font-weight: 600; }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

/* Hero card */
.hero-card-premium {
  background: rgba(255,255,255,0.82);
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(14px);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.hcp-deco {
  position: absolute;
  top: -30px; right: -30px;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,154,106,0.2), transparent 65%);
  pointer-events: none;
}
.hcp-logo {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid var(--border);
  margin: 0 auto 20px;
  background: var(--white);
}
.hcp-label { margin-bottom: 8px; }
.hero-card-premium h2 {
  font-size: 1.6rem;
  margin-bottom: 10px;
}
.hero-card-premium > p {
  color: var(--text-soft);
  font-size: 0.9rem;
  margin-bottom: 22px;
}
.hcp-checklist {
  text-align: left;
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
}
.hcp-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text-soft);
}
.hcp-checklist li i { color: var(--gold); font-size: 0.8rem; }

/* Trust strip */
.trust-strip {
  border-top: 1px solid var(--border);
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(10px);
}
.trust-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 28px 0;
  flex-wrap: wrap;
}
.trust-item {
  flex: 1;
  min-width: 140px;
  text-align: center;
  padding: 12px 24px;
}
.trust-item strong {
  display: block;
  font-family: var(--font-title);
  font-size: 1.9rem;
  color: var(--gold-deep);
  line-height: 1;
  margin-bottom: 4px;
}
.trust-item span { font-size: 0.82rem; color: var(--text-soft); text-transform: uppercase; letter-spacing: 0.1em; }
.trust-sep {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

/* ─── SIGNATURE / LE LIEU ─── */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.split-copy h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.9rem);
  margin: 16px 0 20px;
}
.split-lead {
  color: var(--text-soft);
  font-size: 1.05rem;
  margin-bottom: 32px;
}
.story-points { display: grid; gap: 24px; }
.story-point {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.sp-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--gold-soft);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  color: var(--gold-deep);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.story-point strong {
  display: block;
  font-family: var(--font-title);
  font-size: 1.1rem;
  margin-bottom: 4px;
  font-weight: 600;
}
.story-point p { color: var(--text-soft); font-size: 0.92rem; }

/* Metrics panel */
.metrics-panel {
  background: rgba(255,255,255,0.8);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  overflow: hidden;
}
.mp-header {
  padding: 24px 28px 0;
}
.panel-badge {
  display: inline-flex;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--gold-soft);
  border: 1px solid var(--border);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.mp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  margin-top: 20px;
}
.mp-card {
  background: rgba(255,255,255,0.9);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mp-card strong {
  font-family: var(--font-title);
  font-size: 2.2rem;
  color: var(--gold-deep);
  line-height: 1;
}
.mp-card span { font-size: 0.82rem; color: var(--text-soft); }
.mp-cta { margin: 24px; width: calc(100% - 48px); }

/* ─── GALLERY ─── */
.gallery-mosaic {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 20px;
  align-items: start;
}
.gm-stack { display: grid; gap: 20px; }
.gm-card {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.is-hidden {
  display: none !important;
}
.gm-inner {
  position: relative;
  background:
    linear-gradient(145deg, rgba(184,154,106,0.12), rgba(255,255,255,0.8)),
    var(--surface);
  padding: 12px;
}
.gm-main .gm-inner {
  min-height: 0;
}
.gm-inner-sm { min-height: 0; }
.gallery-photo {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: calc(var(--radius) - 4px);
  border: 1px solid rgba(184,154,106,0.16);
  display: block;
  aspect-ratio: 4 / 3;
  cursor: zoom-in;
  box-shadow: var(--shadow-soft);
}
.gm-main .gallery-photo {
  aspect-ratio: 5 / 4;
}
.gallery-chip {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(184,154,106,0.25);
  color: var(--gold-deep);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 1;
}
.gallery-placeholder {
  height: 100%;
  min-height: 130px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  padding: 54px 20px 24px;
  border: 1.5px dashed rgba(184,154,106,0.38);
  border-radius: calc(var(--radius) - 4px);
  background: rgba(255,255,255,0.45);
}
.gallery-placeholder i { font-size: 1.8rem; color: var(--gold); }
.gallery-placeholder strong { font-family: var(--font-title); font-size: 1.1rem; }
.gallery-placeholder span { color: var(--text-soft); font-size: 0.88rem; max-width: 30ch; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1400;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 16, 11, 0.82);
  backdrop-filter: blur(6px);
}

.lightbox-figure {
  position: relative;
  z-index: 1;
  margin: 0;
  width: min(1000px, 100%);
  display: grid;
  gap: 14px;
  justify-items: center;
}

.lightbox-image {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 24px 70px rgba(0,0,0,0.28);
  background: rgba(255,255,255,0.04);
}

.lightbox-caption {
  color: rgba(255,255,255,0.82);
  text-align: center;
  font-size: 0.95rem;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.08);
  color: var(--white);
}

/* Gallery social CTA */
.gallery-social {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.gallery-social > p {
  font-family: var(--font-title);
  font-size: 1.15rem;
  color: var(--text-soft);
  white-space: nowrap;
}
.gallery-social-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn-social {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: transform var(--transition), box-shadow var(--transition), opacity var(--transition);
  border: none;
  cursor: pointer;
  text-decoration: none;
  line-height: 1;
  max-width: 100%;
}
.btn-social:hover { transform: translateY(-2px); opacity: 0.9; box-shadow: 0 6px 20px rgba(0,0,0,0.15); }
.btn-instagram {
  background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
  color: #fff;
}
.btn-facebook {
  background: #1877F2;
  color: #fff;
}
.btn-tiktok {
  background: #010101;
  color: #fff;
}
.btn-tiktok i { color: #69C9D0; }

/* ─── EVENTS ─── */
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.event-card {
  background: rgba(255,255,255,0.75);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 32px 28px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.event-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: rgba(184,154,106,0.5);
}
.ec-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: var(--gold-soft);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  font-size: 1.15rem;
  color: var(--gold-deep);
  margin-bottom: 20px;
}
.event-card h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
}
.event-card p { color: var(--text-soft); font-size: 0.93rem; }

/* ─── OFFRE SPÉCIALE ─── */
.section-offer {
  padding: 100px 0;
  background:
    radial-gradient(ellipse 70% 60% at 20% 50%, rgba(73,55,31,0.7) 0%, transparent 65%),
    linear-gradient(135deg, #3a2e1e 0%, #5c4a30 50%, #3a2e1e 100%);
}
.offer-block {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 0.7fr);
  gap: 56px;
  align-items: center;
}
.ob-left h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  color: var(--white);
  margin: 16px 0 20px;
}
.ob-left h2 em {
  font-style: italic;
  color: var(--gold);
}
.ob-left p {
  color: rgba(255,255,255,0.78);
  font-size: 1.05rem;
  max-width: 52ch;
  margin-bottom: 28px;
}
.ob-left p strong { color: var(--white); }
.ob-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}
.ob-tags span {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(184,154,106,0.4);
  background: rgba(184,154,106,0.14);
  color: rgba(255,255,255,0.85);
  font-size: 0.84rem;
}

.ob-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(184,154,106,0.4);
  border-radius: 24px;
  padding: 36px;
  backdrop-filter: blur(14px);
  text-align: center;
}
.ob-price {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 28px;
}
.ob-from {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.6);
  margin-bottom: 4px;
}
.ob-price strong {
  font-family: var(--font-title);
  font-size: 4rem;
  color: var(--gold);
  line-height: 1;
}
.ob-period {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  margin-top: 4px;
}
.ob-list {
  display: grid;
  gap: 12px;
  text-align: left;
  margin-bottom: 28px;
}
.ob-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
}
.ob-list li i { color: var(--gold); font-size: 0.8rem; }

/* ─── SERVICES ─── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

#prestations {
  display: none;
}
.service-card {
  background: rgba(255,255,255,0.78);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(184,154,106,0.5);
}
.svc-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--gold-soft);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  font-size: 1.05rem;
  color: var(--gold-deep);
}
.service-card h3 { font-size: 1.2rem; }
.service-card p { color: var(--text-soft); font-size: 0.9rem; flex: 1; }
.svc-price {
  display: inline-flex;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--gold-soft);
  color: var(--gold-deep);
  font-size: 0.82rem;
  font-weight: 600;
  border: 1px solid var(--border);
  align-self: flex-start;
  margin-top: auto;
}

/* Process banner */
.process-banner {
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--shadow-soft);
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: 40px;
  align-items: center;
}
.pb-heading h3 { font-size: 1.8rem; margin-top: 12px; }
.pb-steps {
  display: flex;
  align-items: center;
  gap: 16px;
}
.pb-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.pbs-num {
  font-family: var(--font-title);
  font-size: 2rem;
  color: var(--gold-deep);
  line-height: 1;
  margin-bottom: 4px;
}
.pb-step strong { font-size: 0.95rem; }
.pb-step span { color: var(--text-soft); font-size: 0.82rem; line-height: 1.5; }
.pb-arrow { color: var(--gold); font-size: 0.9rem; flex-shrink: 0; }

/* ─── AVIS ─── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.review-card {
  background: rgba(255,255,255,0.82);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.rc-stars { display: flex; gap: 4px; color: var(--gold); font-size: 0.9rem; }
.review-card > p {
  color: var(--text-soft);
  font-size: 0.97rem;
  line-height: 1.7;
  flex: 1;
  font-style: italic;
}
.review-card > p::before { content: "\201C"; }
.review-card > p::after { content: "\201D"; }
.rc-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.rc-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 0.9rem;
  font-weight: 700;
  flex-shrink: 0;
}
.rc-author strong {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* ─── CTA BAND ─── */
.section-cta-band {
  padding: 80px 0;
  background:
    radial-gradient(ellipse 50% 80% at 80% 50%, rgba(184,154,106,0.2) 0%, transparent 60%),
    linear-gradient(135deg, #2e2415 0%, #4a3820 100%);
}
.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-band-copy h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--white);
  margin: 12px 0 14px;
}
.cta-band-copy p {
  color: rgba(255,255,255,0.68);
  max-width: 52ch;
}
.cta-band-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ─── CONTACT ─── */
#contact { padding-bottom: 120px; }
.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: start;
}
.contact-info h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin: 16px 0 18px;
}
.contact-lead {
  color: var(--text-soft);
  font-size: 1.02rem;
  margin-bottom: 32px;
}
.ci-items { display: grid; gap: 16px; margin-bottom: 28px; }
.ci-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.65);
  border: 1px solid var(--border);
}
.ci-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--gold-soft);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  color: var(--gold-deep);
  flex-shrink: 0;
}
.ci-item strong { display: block; font-size: 0.88rem; margin-bottom: 4px; }
.ci-item a, .ci-item span {
  display: block;
  color: var(--text-soft);
  font-size: 0.9rem;
}
.ci-item-calendar a {
  color: var(--gold-deep);
  font-weight: 500;
}
.ci-item a:hover { color: var(--gold-deep); }
.ci-social { margin-top: 4px; }
.ci-social > strong {
  display: block;
  margin-bottom: 14px;
  font-family: var(--font-title);
  font-size: 1.1rem;
}
.social-links { display: flex; flex-wrap: wrap; gap: 10px; }
.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(184,154,106,0.08);
  color: var(--gold-deep);
  font-size: 0.84rem;
  transition: background var(--transition), transform var(--transition);
}
.social-links a:hover {
  background: rgba(184,154,106,0.18);
  transform: translateY(-1px);
}

/* Contact form */
.contact-form {
  background: rgba(255,255,255,0.82);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  padding: 36px;
  display: grid;
  gap: 18px;
}
.cf-header { margin-bottom: 4px; }
.cf-header h3 { font-size: 1.5rem; margin-bottom: 4px; }
.cf-header p { color: var(--text-soft); font-size: 0.87rem; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group { display: grid; gap: 7px; }
.form-group label { font-size: 0.87rem; color: var(--text-soft); font-weight: 500; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: 14px;
  border: 1px solid rgba(184,154,106,0.25);
  background: rgba(255,255,255,0.9);
  color: var(--text);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,154,106,0.14);
}
.form-note {
  text-align: center;
  color: var(--text-soft);
  font-size: 0.84rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}
.form-note i { color: var(--gold); }

/* ─── FOOTER ─── */
.site-footer {
  border-top: 1px solid var(--border);
  background: rgba(255,255,255,0.5);
}
.footer-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  padding: 56px 0 40px;
  align-items: start;
}
.footer-brand { display: flex; align-items: flex-start; gap: 18px; }
.footer-brand strong { font-family: var(--font-title); font-size: 1.2rem; display: block; margin-bottom: 6px; }
.footer-brand p { color: var(--text-soft); font-size: 0.88rem; max-width: 38ch; margin-top: 4px; }

.footer-nav { display: flex; gap: 40px; justify-content: flex-end; }
.fn-col { display: flex; flex-direction: column; gap: 10px; }
.fn-col > strong {
  font-family: var(--font-title);
  font-size: 0.95rem;
  margin-bottom: 4px;
}
.fn-col a {
  color: var(--text-soft);
  font-size: 0.88rem;
  transition: color var(--transition);
}
.fn-col a:hover { color: var(--gold-deep); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 18px 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--text-soft);
}
.footer-bottom a:hover { color: var(--gold-deep); }

/* ─── BACK TO TOP ─── */
.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 46px;
  height: 46px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  color: var(--gold-deep);
  box-shadow: var(--shadow-soft);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity var(--transition), transform var(--transition);
}
.back-to-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }

/* ─── MODAL ─── */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1090;
  background: rgba(40,30,20,0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.modal-overlay.active { opacity: 1; pointer-events: auto; }
.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 1100;
  width: min(460px, calc(100% - 32px));
  padding: 40px 36px;
  border-radius: 28px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.97);
  box-shadow: var(--shadow-strong);
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -46%) scale(0.97);
  transition: opacity var(--transition), transform var(--transition);
}
.modal.active { opacity: 1; pointer-events: auto; transform: translate(-50%, -50%) scale(1); }
.modal-icon { font-size: 2.5rem; color: var(--gold); margin-bottom: 14px; }
.modal h3 { font-size: 1.8rem; margin-bottom: 12px; }
.modal p { color: var(--text-soft); margin-bottom: 24px; }

/* ─── REVEAL ANIMATIONS ─── */
.reveal, .reveal-left, .reveal-right {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal-left { transform: translateX(-30px); }
.reveal-right { transform: translateX(30px); }
.revealed { opacity: 1; transform: none; }

/* ─── RESPONSIVE 1100px ─── */
@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-text-block h1 { max-width: 100%; }
  .hero-visual { max-width: 560px; margin: 0 auto; }
  .split-layout,
  .contact-layout,
  .footer-inner { grid-template-columns: 1fr; }
  .footer-nav { justify-content: flex-start; }
  .events-grid { grid-template-columns: repeat(3, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-banner { grid-template-columns: 1fr; gap: 24px; }
  .pb-steps { flex-direction: column; }
  .pb-arrow { transform: rotate(90deg); }
  .offer-block { grid-template-columns: 1fr; }
  .gallery-mosaic { grid-template-columns: 1fr; }
  .gm-inner { min-height: 380px; }
  .gm-stack { grid-template-columns: repeat(3, 1fr); }
  .gm-inner-sm { min-height: 0; }
  .cta-band-inner { flex-direction: column; text-align: center; }
  .cta-band-copy p { max-width: 100%; }
}

/* ─── RESPONSIVE 820px ─── */
@media (max-width: 820px) {
  :root { --nav-h: 76px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  section { padding: 56px 0; }
  #contact { padding-bottom: 72px; }
  .section-heading { margin-bottom: 24px; }
  .events-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .trust-strip-inner { gap: 0; }
  .trust-sep { display: none; }
  .trust-item { min-width: 50%; }
  .hero-card-premium { padding: 28px 24px; }
  .contact-form { padding: 24px; }
  .metrics-panel .mp-cta { margin: 20px; width: calc(100% - 40px); }
  .gm-inner { min-height: 0; }
  .gm-inner-sm { min-height: 0; }
  .gallery-social { flex-direction: column; gap: 14px; text-align: center; }
  .ci-items { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}

/* ─── RESPONSIVE 560px ─── */
@media (max-width: 560px) {
  .container {
    width: 100%;
    padding-left: 12px;
    padding-right: 12px;
  }

  .nav-shell {
    gap: 12px;
  }

  .brand {
    min-width: 0;
    gap: 10px;
  }

  .brand-copy {
    min-width: 0;
  }

  .brand-name {
    font-size: 1.05rem;
  }

  .brand-sub {
    font-size: 0.64rem;
    letter-spacing: 0.12em;
  }

  section { padding: 44px 0; }
  #contact { padding-bottom: 56px; }
  .section-heading > p { display: none; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  /* Garder 2 colonnes pour éviter le scroll infini */
  .events-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .event-card { padding: 16px 12px; }
  .ec-icon { width: 38px; height: 38px; font-size: 0.9rem; margin-bottom: 12px; }
  .event-card h3 { font-size: 1rem; margin-bottom: 6px; }
  .event-card p { font-size: 0.83rem; }
  .service-card { padding: 16px 12px; gap: 8px; }
  .svc-icon { width: 38px; height: 38px; font-size: 0.9rem; }
  .service-card h3 { font-size: 1rem; }
  .service-card p { font-size: 0.83rem; }
  .review-card { padding: 18px; gap: 10px; }
  .review-card > p { font-size: 0.88rem; line-height: 1.6; }
  .ci-items { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .ci-item { padding: 12px; flex-direction: column; gap: 6px; }
  .ci-icon { width: 32px; height: 32px; font-size: 0.8rem; }
  .ci-item strong { font-size: 0.8rem; }
  .ci-item a, .ci-item span { font-size: 0.8rem; }
  .contact-form { padding: 20px; gap: 14px; }
  .form-row { grid-template-columns: 1fr; }
  .gallery-mosaic {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .gm-stack {
    display: contents;
  }
  .gm-inner,
  .gm-inner-sm {
    min-height: 0;
    padding: 8px;
  }
  .gallery-photo,
  .gm-main .gallery-photo {
    aspect-ratio: 4 / 5;
    border-radius: 12px;
  }
  .gallery-social-btns { gap: 8px; }
  .btn-social { padding: 10px 16px; font-size: 0.83rem; }
  .cta-band-actions { flex-direction: column; width: 100%; }
  .cta-band-actions .btn { width: 100%; }
  .footer-nav { flex-direction: column; gap: 20px; }
  .ob-card { padding: 22px; }
  .process-banner { padding: 24px; }
  .pb-heading h3 { font-size: 1.4rem; }
}

@media (max-width: 820px) {
  .section-heading h2 {
    font-size: clamp(1.7rem, 6vw, 2.3rem);
  }

  .contact-form {
    order: -1;
  }

  .contact-info {
    order: 1;
  }

  .hero-inner {
    gap: 28px;
    padding-bottom: 34px;
  }

  .hero-text-block h1 {
    font-size: clamp(2.2rem, 8vw, 3.4rem);
    margin: 14px 0 16px;
  }

  .hero-lead {
    font-size: 0.96rem;
    line-height: 1.55;
  }

  .trust-item {
    padding: 10px 16px;
  }

  .trust-item strong {
    font-size: 1.55rem;
  }

  .trust-item span {
    font-size: 0.72rem;
  }

  .gallery-social > p {
    white-space: normal;
    font-size: 1rem;
  }

  .offer-block {
    gap: 24px;
  }

  .ob-left h2 {
    font-size: clamp(1.9rem, 7vw, 2.6rem);
    margin: 12px 0 14px;
  }

  .ob-left p {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }

  .ob-tags span {
    font-size: 0.76rem;
    padding: 7px 12px;
  }

  .ob-card {
    padding: 28px 24px;
  }

  .ob-price strong {
    font-size: 3.1rem;
  }

  .process-banner {
    padding: 28px 24px;
  }

  .pb-heading h3 {
    font-size: 1.5rem;
  }

  .contact-layout {
    gap: 28px;
  }

  .footer-inner {
    gap: 28px;
    padding: 40px 0 30px;
  }
}

@media (max-width: 560px) {
  html,
  body,
  main,
  section,
  .site-footer {
    overflow-x: hidden;
  }

  .section-heading {
    margin-bottom: 20px;
  }

  .section-heading h2 {
    font-size: clamp(1.45rem, 7vw, 1.9rem);
    margin: 10px 0 12px;
  }

  .eyebrow,
  .section-kicker,
  .panel-badge,
  .hcp-label {
    font-size: 0.64rem;
    letter-spacing: 0.16em;
    gap: 8px;
  }

  .eyebrow::before,
  .section-kicker::before {
    width: 18px;
  }

  #hero {
    min-height: auto;
    padding-top: calc(var(--nav-h) + 22px);
  }

  .hero-inner {
    gap: 20px;
    padding-bottom: 24px;
  }

  .hero-text-block h1 {
    font-size: clamp(1.85rem, 9vw, 2.5rem);
    line-height: 1.1;
  }

  .hero-lead {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .btn,
  .btn-lg {
    min-height: 46px;
    padding: 11px 16px;
    font-size: 0.88rem;
    white-space: normal;
    text-align: center;
  }

  .hero-card-premium {
    padding: 20px 16px;
    border-radius: 18px;
  }

  .hcp-logo {
    width: 84px;
    height: 84px;
    margin-bottom: 14px;
  }

  .hero-card-premium h2 {
    font-size: 1.25rem;
  }

  .hero-card-premium > p {
    font-size: 0.82rem;
    margin-bottom: 14px;
  }

  .hcp-checklist {
    gap: 8px;
    margin-bottom: 16px;
  }

  .hcp-checklist li {
    font-size: 0.84rem;
  }

  .trust-strip-inner {
    padding: 14px 0;
  }

  .trust-item {
    min-width: 50%;
    padding: 10px 8px;
  }

  .trust-item strong {
    font-size: 1.25rem;
  }

  .trust-item span {
    font-size: 0.66rem;
    letter-spacing: 0.06em;
  }

  .split-layout {
    gap: 22px;
  }

  .split-copy h2 {
    font-size: 1.6rem;
    margin: 10px 0 12px;
  }

  .split-lead {
    font-size: 0.92rem;
    margin-bottom: 20px;
  }

  .story-points {
    gap: 16px;
  }

  .story-point {
    gap: 12px;
  }

  .sp-icon {
    width: 36px;
    height: 36px;
    font-size: 0.82rem;
    border-radius: 10px;
  }

  .story-point strong {
    font-size: 0.96rem;
  }

  .story-point p {
    font-size: 0.84rem;
  }

  .mp-card {
    padding: 18px 14px;
  }

  .mp-card strong {
    font-size: 1.45rem;
  }

  .mp-card span {
    font-size: 0.72rem;
  }

  .metrics-panel .mp-cta {
    margin: 14px;
    width: calc(100% - 28px);
  }

  .svc-price {
    padding: 5px 10px;
    font-size: 0.72rem;
  }

  .rc-author {
    gap: 10px;
    padding-top: 10px;
  }

  .rc-avatar {
    width: 32px;
    height: 32px;
    font-size: 0.78rem;
  }

  .rc-author strong {
    font-size: 0.82rem;
  }

  .social-links {
    gap: 8px;
  }

  .social-links a {
    width: 100%;
    justify-content: center;
    font-size: 0.8rem;
    padding: 10px 12px;
  }

  .cf-header h3 {
    font-size: 1.25rem;
  }

  .cf-header p {
    font-size: 0.8rem;
  }

  .form-group label {
    font-size: 0.8rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 11px 13px;
    font-size: 0.9rem;
  }

  .gm-stack {
    grid-template-columns: 1fr;
  }

  .gallery-chip {
    top: 12px;
    left: 12px;
    font-size: 0.62rem;
    padding: 6px 10px;
  }

  .gallery-placeholder {
    padding: 42px 14px 18px;
  }

  .gallery-placeholder strong {
    font-size: 0.95rem;
  }

  .gallery-placeholder span {
    font-size: 0.78rem;
  }

  .lightbox {
    padding: 14px;
  }

  .lightbox-close {
    top: 10px;
    right: 10px;
    width: 42px;
    height: 42px;
  }

  .lightbox-image {
    max-height: 72vh;
    border-radius: 16px;
  }

  .lightbox-caption {
    font-size: 0.82rem;
  }

  .btn-social {
    width: 100%;
    justify-content: center;
    padding: 10px 14px;
    font-size: 0.8rem;
    white-space: normal;
  }

  .gallery-social-btns,
  .social-links,
  .cta-band-actions {
    width: 100%;
  }

  .gallery-social-btns > *,
  .social-links > *,
  .cta-band-actions > * {
    min-width: 0;
  }

  .footer-inner {
    gap: 22px;
    padding: 30px 0 24px;
  }

  .footer-brand {
    gap: 12px;
    padding-left: 6px;
    padding-right: 6px;
  }

  .footer-brand strong {
    font-size: 1rem;
  }

  .footer-brand p {
    font-size: 0.8rem;
  }

  .footer-nav {
    padding-left: 6px;
    padding-right: 6px;
  }

  .fn-col {
    padding-left: 2px;
  }

  .fn-col > strong,
  .fn-col a {
    padding-left: 0;
  }

  .footer-bottom .container {
    font-size: 0.75rem;
  }

  .section-offer {
    padding: 56px 0;
  }

  .section-cta-band {
    display: none;
  }

  .offer-block {
    gap: 18px;
  }

  .ob-left h2 {
    font-size: clamp(1.55rem, 8vw, 2rem);
    line-height: 1.08;
  }

  .ob-left p {
    font-size: 0.88rem;
    line-height: 1.5;
    margin-bottom: 14px;
  }

  .ob-tags {
    gap: 8px;
    margin-bottom: 18px;
  }

  .ob-tags span {
    font-size: 0.68rem;
    padding: 6px 10px;
  }

  .ob-card {
    padding: 18px 14px;
    border-radius: 18px;
  }

  .ob-from,
  .ob-period {
    font-size: 0.72rem;
  }

  .ob-price {
    margin-bottom: 18px;
  }

  .ob-price strong {
    font-size: 2.3rem;
  }

  .ob-list {
    gap: 9px;
    margin-bottom: 18px;
  }

  .ob-list li {
    font-size: 0.82rem;
    line-height: 1.35;
  }

  .process-banner {
    padding: 18px 14px;
    gap: 16px;
    border-radius: 18px;
  }

  .pb-heading h3 {
    font-size: 1.2rem;
    margin-top: 8px;
  }

  .pbs-num {
    font-size: 1.45rem;
  }

  .pb-step strong {
    font-size: 0.84rem;
  }

  .pb-step span {
    font-size: 0.74rem;
  }

  .back-to-top {
    right: 14px;
    bottom: 14px;
    width: 40px;
    height: 40px;
  }
}
