@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,600;0,9..144,700;1,9..144,300;1,9..144,400&family=Inter:wght@300;400;500;600&display=swap');

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

:root {
  --cream: #FDFAF6;
  --prune: #4A2530;
  --terra: #C77B62;
  --gold: #C9A668;
  --text: #2B2B28;
  --text-light: #6B6560;
  --glass-bg: rgba(253,250,246,0.55);
  --glass-border: rgba(201,166,104,0.25);
  --shadow: 0 8px 40px rgba(74,37,48,0.10);
  --shadow-lg: 0 20px 60px rgba(74,37,48,0.15);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.7;
}

/* ─── MAGNOLIA CANVAS ─── */
#magnolia-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

/* ─── HEADER ─── */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 2rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s, backdrop-filter 0.4s, box-shadow 0.4s;
}

#site-header.scrolled {
  background: rgba(253,250,246,0.85);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 2px 24px rgba(74,37,48,0.08);
}

.header-brand {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--prune);
  text-decoration: none;
  letter-spacing: 0.01em;
  flex-shrink: 0;
}

.header-brand span {
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: -2px;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  list-style: none;
}

.header-nav a {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}

.header-nav a:hover { color: var(--prune); }

.btn-header {
  background: var(--prune);
  color: var(--cream) !important;
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  font-size: 0.78rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s, background 0.2s;
  box-shadow: 0 4px 16px rgba(74,37,48,0.22);
  white-space: nowrap;
  cursor: pointer;
  border: none;
}

.btn-header:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(74,37,48,0.28);
  background: #5c2f3c;
}

.btn-header:active { transform: translateY(0); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--prune);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ─── SECTIONS BASE ─── */
section {
  position: relative;
  z-index: 1;
}

/* ─── HERO ─── */
#hero {
  min-height: 100vh;
  padding: 120px 2rem 80px;
  display: flex;
  align-items: center;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 3rem;
  align-items: center;
}

.hero-left { position: relative; z-index: 2; }

.hero-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

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

h1.hero-title {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  line-height: 1.12;
  color: var(--prune);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

h1.hero-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--terra);
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 520px;
  font-weight: 400;
}

.btn-duo {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
}

.btn-visio, .btn-cabinet {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.4rem;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: transform 0.15s, box-shadow 0.15s;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.btn-visio {
  background: var(--terra);
  color: var(--cream);
  box-shadow: 0 4px 20px rgba(199,123,98,0.35);
}

.btn-visio:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(199,123,98,0.45);
}

.btn-cabinet {
  background: var(--prune);
  color: var(--cream);
  box-shadow: 0 4px 20px rgba(74,37,48,0.28);
}

.btn-cabinet:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(74,37,48,0.38);
}

.btn-visio:active, .btn-cabinet:active { transform: translateY(0); }

.btn-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.hero-micro {
  margin-top: 1rem;
  font-size: 0.78rem;
  color: var(--text-light);
  font-style: italic;
}

/* ─── HERO RIGHT — GLASS CARD ─── */
.hero-right { position: relative; z-index: 2; }

.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 28px 32px 26px 30px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.testimonial-header {
  padding: 1.4rem 1.6rem 0.8rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.testimonial-carousel {
  padding: 0 1.6rem 1rem;
  min-height: 160px;
  position: relative;
}

.testimonial-item {
  display: none;
  animation: fadeInTestimonial 0.5s ease;
}

.testimonial-item.active { display: block; }

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

.testimonial-stars {
  color: var(--gold);
  font-size: 0.85rem;
  margin-bottom: 0.6rem;
  letter-spacing: 2px;
}

.testimonial-quote {
  font-family: 'Fraunces', serif;
  font-size: 0.88rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 0.8rem;
}

.testimonial-quote::before { content: '\201C'; font-size: 1.4rem; color: var(--terra); line-height: 0; vertical-align: -0.3em; margin-right: 2px; }
.testimonial-quote::after { content: '\201D'; font-size: 1.4rem; color: var(--terra); line-height: 0; vertical-align: -0.3em; margin-left: 2px; }

.testimonial-author {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--prune);
  letter-spacing: 0.04em;
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.6rem 1rem;
}

.testimonial-dots {
  display: flex;
  gap: 5px;
}

.testimonial-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(74,37,48,0.2);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  border: none;
}

.testimonial-dot.active {
  background: var(--prune);
  transform: scale(1.3);
}

.testimonial-arrows {
  display: flex;
  gap: 0.4rem;
}

.testimonial-arrow {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(74,37,48,0.08);
  border: 1px solid rgba(74,37,48,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  color: var(--prune);
  font-size: 0.8rem;
}

.testimonial-arrow:hover { background: rgba(74,37,48,0.15); }

.stats-band {
  background: rgba(74,37,48,0.06);
  border-top: 1px solid var(--glass-border);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 1rem 0.5rem;
}

.stat-item {
  text-align: center;
  padding: 0 0.3rem;
  border-right: 1px solid rgba(74,37,48,0.1);
}

.stat-item:last-child { border-right: none; }

.stat-value {
  font-family: 'Fraunces', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--prune);
  display: block;
  line-height: 1.2;
}

.stat-label {
  font-size: 0.6rem;
  color: var(--text-light);
  letter-spacing: 0.04em;
  line-height: 1.3;
  margin-top: 2px;
}

/* ─── EDITORIAL BAND ─── */
#editorial-band {
  padding: 3.5rem 2rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.editorial-band-inner {
  max-width: 900px;
  margin: 0 auto;
}

.editorial-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.editorial-phrase {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.1rem, 2.2vw, 1.6rem);
  font-weight: 300;
  font-style: italic;
  color: var(--prune);
  letter-spacing: 0.01em;
}

.editorial-sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.editorial-divider {
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 1.2rem auto 0;
}

/* ─── SECTION 3 QUESTIONS ─── */
#questions {
  padding: 5rem 2rem;
  position: relative;
  z-index: 1;
}

.questions-inner {
  max-width: 860px;
  margin: 0 auto;
}

.accordion-item {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: 22px 26px 20px 24px;
  margin-bottom: 1.2rem;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow 0.3s;
}

.accordion-item:hover { box-shadow: var(--shadow-lg); }

.accordion-trigger {
  width: 100%;
  background: none;
  border: none;
  padding: 1.6rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  text-align: left;
}

.accordion-question {
  font-family: 'Fraunces', serif;
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 600;
  color: var(--prune);
  line-height: 1.35;
}

.accordion-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(74,37,48,0.07);
  border: 1px solid rgba(74,37,48,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
  color: var(--prune);
  transition: transform 0.3s, background 0.3s;
}

.accordion-item.open .accordion-icon {
  transform: rotate(45deg);
  background: var(--prune);
  color: var(--cream);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4,0,0.2,1);
}

.accordion-item.open .accordion-body { max-height: 600px; }

.accordion-content {
  padding: 0 2rem 1.8rem;
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.8;
}

.questions-cta {
  text-align: center;
  margin-top: 3rem;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  border: 1.5px solid var(--prune);
  color: var(--prune);
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}

.btn-ghost:hover {
  background: var(--prune);
  color: var(--cream);
  transform: translateY(-1px);
}

/* ─── SECTION MÉTHODE ─── */
#methode {
  padding: 6rem 2rem;
  position: relative;
  z-index: 1;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3.5rem;
}

.section-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.section-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--prune);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.bento-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.bento-card {
  background: var(--glass-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--glass-border);
  border-radius: 24px 28px 22px 26px;
  padding: 2rem 1.6rem;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.bento-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.bento-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.bento-card:hover::before { opacity: 1; }

.bento-number {
  font-family: 'Fraunces', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(74,37,48,0.08);
  line-height: 1;
  margin-bottom: 0.8rem;
}

.bento-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, rgba(74,37,48,0.08), rgba(201,166,104,0.12));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.bento-title {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--prune);
  margin-bottom: 0.6rem;
}

.bento-text {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.7;
}

.methode-cta {
  text-align: center;
  margin-top: 3rem;
}

/* ─── SECTION OFFRES ─── */
#solutions {
  padding: 6rem 2rem;
  position: relative;
  z-index: 1;
}

.offres-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.offre-card {
  background: var(--glass-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--glass-border);
  border-radius: 28px 32px 26px 30px;
  padding: 2.2rem 1.8rem;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}

.offre-card.featured {
  border-color: var(--gold);
  box-shadow: 0 12px 50px rgba(201,166,104,0.2), var(--shadow);
  transform: scale(1.02);
}

.offre-card.featured:hover { transform: scale(1.02) translateY(-4px); }
.offre-card:not(.featured):hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.offre-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), #d4b070);
  color: var(--prune);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(201,166,104,0.4);
}

.offre-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.offre-title {
  font-family: 'Fraunces', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--prune);
  margin-bottom: 0.3rem;
  line-height: 1.2;
}

.offre-price {
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--prune);
  margin-bottom: 0.2rem;
}

.offre-price-sub {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-bottom: 1.2rem;
  font-style: italic;
}

.offre-divider {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 1.2rem;
}

.offre-promise {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--prune);
  margin-bottom: 0.6rem;
  line-height: 1.4;
}

.offre-result {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.offre-cta-area {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.btn-detail {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 1.2rem;
  border-radius: 50px;
  border: 1.5px solid var(--prune);
  color: var(--prune);
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  background: none;
  transition: background 0.2s, color 0.2s;
  width: 100%;
  text-align: center;
}

.btn-detail:hover { background: var(--prune); color: var(--cream); }

.btn-appel {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 1.2rem;
  border-radius: 50px;
  background: var(--prune);
  color: var(--cream);
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 4px 16px rgba(74,37,48,0.25);
  width: 100%;
  text-align: center;
}

.btn-appel:hover { transform: translateY(-1px); box-shadow: 0 6px 24px rgba(74,37,48,0.35); }

.btn-email-small {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.6rem 1rem;
  border-radius: 50px;
  border: 1px solid rgba(74,37,48,0.2);
  color: var(--text-light);
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
  width: 100%;
  text-align: center;
}

.btn-email-small:hover { border-color: var(--prune); color: var(--prune); }

.offres-note {
  max-width: 700px;
  margin: 3rem auto 0;
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-light);
  font-style: italic;
  line-height: 1.7;
  padding: 1.5rem 2rem;
  background: rgba(201,166,104,0.06);
  border-radius: 16px;
  border: 1px solid rgba(201,166,104,0.15);
}

/* ─── SECTION À PROPOS ─── */
#apropos {
  padding: 6rem 2rem;
  position: relative;
  z-index: 1;
}

.apropos-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 4rem;
  align-items: start;
}

.apropos-photo-wrap {
  position: relative;
  border-radius: 28px 32px 26px 30px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.apropos-photo-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, rgba(74,37,48,0.08) 0%, rgba(201,166,104,0.12) 50%, rgba(253,250,246,0.9) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.apropos-photo-placeholder svg {
  opacity: 0.3;
}

.apropos-photo-placeholder p {
  font-size: 0.75rem;
  color: var(--text-light);
  text-align: center;
  padding: 0 1rem;
}

.apropos-photo-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 100% 100%, rgba(253,250,246,0.6) 0%, transparent 60%);
  pointer-events: none;
}

.apropos-content {}

.apropos-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.apropos-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--prune);
  line-height: 1.2;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.apropos-para {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.85;
  margin-bottom: 1.2rem;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.apropos-para.revealed {
  opacity: 1;
  transform: translateY(0);
}

.apropos-citation {
  margin: 2rem 0;
  padding: 1.5rem 2rem;
  border-left: 3px solid var(--gold);
  background: rgba(201,166,104,0.06);
  border-radius: 0 16px 16px 0;
}

.apropos-citation p {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--prune);
  line-height: 1.6;
  margin-bottom: 0.8rem;
}

.signature {
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  font-style: italic;
  font-weight: 400;
  color: var(--text);
  letter-spacing: 0.02em;
}

.apropos-badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
  margin-top: 2rem;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.8rem 1rem;
  background: rgba(74,37,48,0.04);
  border-radius: 12px;
  border: 1px solid rgba(74,37,48,0.07);
}

.badge-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, rgba(74,37,48,0.1), rgba(201,166,104,0.15));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.badge-text {
  font-size: 0.78rem;
  color: var(--text);
  font-weight: 500;
  line-height: 1.3;
}

/* ─── SECTION CONTACT ─── */
#contact {
  padding: 6rem 2rem;
  position: relative;
  z-index: 1;
}

.contact-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-form-wrap {
  background: var(--glass-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--glass-border);
  border-radius: 28px 32px 26px 30px;
  padding: 2.5rem;
  box-shadow: var(--shadow);
}

.form-title {
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--prune);
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: rgba(253,250,246,0.8);
  border: 1.5px solid rgba(74,37,48,0.12);
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--prune);
  box-shadow: 0 0 0 3px rgba(74,37,48,0.08);
}

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

.btn-submit {
  width: 100%;
  padding: 0.9rem;
  background: var(--prune);
  color: var(--cream);
  border: none;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 4px 16px rgba(74,37,48,0.25);
}

.btn-submit:hover { transform: translateY(-1px); box-shadow: 0 6px 24px rgba(74,37,48,0.35); }

.form-success {
  display: none;
  text-align: center;
  padding: 1rem;
  color: var(--prune);
  font-weight: 600;
  font-size: 0.9rem;
}

.contact-info-wrap {}

.contact-info-title {
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--prune);
  margin-bottom: 1.5rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
}

.contact-info-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, rgba(74,37,48,0.08), rgba(201,166,104,0.12));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-info-text {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
}

.contact-info-text strong {
  display: block;
  color: var(--text);
  font-weight: 600;
  margin-bottom: 0.1rem;
}

.contact-info-text a {
  color: var(--prune);
  text-decoration: none;
  font-weight: 500;
}

.contact-info-text a:hover { text-decoration: underline; }

.contact-visio-note {
  margin-top: 1.5rem;
  padding: 1rem 1.2rem;
  background: rgba(199,123,98,0.06);
  border-radius: 12px;
  border: 1px solid rgba(199,123,98,0.15);
  font-size: 0.82rem;
  color: var(--text-light);
  font-style: italic;
}

.map-wrap {
  margin-top: 1.5rem;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-wrap iframe {
  width: 100%;
  height: 200px;
  border: none;
  display: block;
}

/* ─── CTA FINAL ─── */
#cta-final {
  padding: 7rem 2rem;
  background: var(--prune);
  position: relative;
  z-index: 1;
  overflow: hidden;
  text-align: center;
}

.cta-final-inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cta-final-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.cta-final-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 1.2rem;
  letter-spacing: -0.02em;
}

.cta-final-sub {
  font-size: 1rem;
  color: rgba(253,250,246,0.75);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.btn-cta-final {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2.2rem;
  background: var(--gold);
  color: var(--prune);
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 6px 28px rgba(201,166,104,0.4);
}

.btn-cta-final:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(201,166,104,0.5);
}

/* ─── FOOTER ─── */
footer {
  background: #1a0d12;
  padding: 3rem 2rem 2rem;
  position: relative;
  z-index: 1;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: start;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(201,166,104,0.15);
  margin-bottom: 1.5rem;
}

.footer-brand {
  font-family: 'Fraunces', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--cream);
  text-decoration: none;
}

.footer-brand span {
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}

.footer-cta-wrap {
  text-align: center;
}

.footer-cta-wrap .btn-appel {
  width: auto;
  padding: 0.7rem 1.4rem;
  font-size: 0.8rem;
}

.footer-contact {
  text-align: right;
}

.footer-contact a {
  display: block;
  font-size: 0.82rem;
  color: rgba(253,250,246,0.65);
  text-decoration: none;
  margin-bottom: 0.4rem;
  transition: color 0.2s;
}

.footer-contact a:hover { color: var(--cream); }

.footer-ig {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.4rem;
  font-size: 0.8rem;
  color: var(--gold) !important;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.footer-copy {
  font-size: 0.72rem;
  color: rgba(253,250,246,0.35);
}

.footer-links {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.72rem;
  color: rgba(253,250,246,0.45);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--cream); }

/* ─── MODALS ─── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26,13,18,0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal-box {
  background: var(--cream);
  border-radius: 28px 32px 26px 30px;
  max-width: 640px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2.5rem;
  box-shadow: 0 30px 80px rgba(26,13,18,0.4);
  transform: translateY(20px);
  transition: transform 0.3s;
  position: relative;
}

.modal-overlay.open .modal-box { transform: translateY(0); }

.modal-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(74,37,48,0.08);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--prune);
  transition: background 0.2s;
}

.modal-close:hover { background: rgba(74,37,48,0.15); }

.modal-eyebrow {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.modal-title {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--prune);
  margin-bottom: 0.4rem;
  line-height: 1.2;
}

.modal-subtitle {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.modal-divider {
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 1.2rem 0;
}

.modal-list {
  list-style: none;
  margin-bottom: 1.5rem;
}

.modal-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 0.6rem;
}

.modal-list li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.modal-symptom-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.modal-symptom {
  padding: 0.5rem 0.6rem;
  background: rgba(74,37,48,0.05);
  border-radius: 8px;
  font-size: 0.72rem;
  color: var(--text);
  text-align: center;
  line-height: 1.3;
}

.modal-flow {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.modal-flow-step {
  padding: 0.4rem 0.8rem;
  background: rgba(74,37,48,0.06);
  border-radius: 20px;
  font-size: 0.72rem;
  color: var(--text);
  white-space: nowrap;
}

.modal-flow-arrow {
  color: var(--gold);
  font-size: 0.8rem;
}

.modal-section-title {
  font-family: 'Fraunces', serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--prune);
  margin-bottom: 0.8rem;
}

.modal-info-row {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.modal-info-row::before {
  content: '→';
  color: var(--gold);
  flex-shrink: 0;
}

/* ─── SCROLL ANIMATIONS ─── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── MOBILE NAV ─── */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: rgba(253,250,246,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 99;
  padding: 1.5rem 2rem;
  box-shadow: 0 8px 32px rgba(74,37,48,0.12);
  flex-direction: column;
  gap: 1rem;
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(74,37,48,0.06);
}

.mobile-nav a:last-child { border-bottom: none; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .offres-grid { grid-template-columns: 1fr; max-width: 480px; }
  .offre-card.featured { transform: none; }
  .apropos-inner { grid-template-columns: 1fr; }
  .apropos-photo-wrap { max-width: 380px; }
}

@media (max-width: 768px) {
  .header-nav { display: none; }
  .hamburger { display: flex; }
  
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .hero-right { order: -1; }
  
  .stats-band { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  
  .contact-inner { grid-template-columns: 1fr; }
  
  .footer-top { grid-template-columns: 1fr; text-align: center; }
  .footer-contact { text-align: center; }
  
  .bento-grid { grid-template-columns: 1fr; }
  
  .modal-symptom-grid { grid-template-columns: repeat(2, 1fr); }
  
  .apropos-badges { grid-template-columns: 1fr; }
  
  .editorial-line { flex-direction: column; gap: 0.8rem; }
  .editorial-sep { display: none; }
  
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; }
}

@media (max-width: 480px) {
  .btn-duo { flex-direction: column; }
  .btn-visio, .btn-cabinet { width: 100%; justify-content: center; }
  
  #hero { padding: 100px 1.2rem 60px; }
  
  .modal-box { padding: 1.8rem 1.4rem; }
  .modal-flow { flex-direction: column; align-items: flex-start; }
  .modal-flow-arrow { transform: rotate(90deg); }
}

/* ─── REDUCED MOTION ─── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  #magnolia-canvas { display: none; }
  .fade-up { opacity: 1; transform: none; }
  .apropos-para { opacity: 1; transform: none; }
}
