:root {
  --bg: #faf7f2;
  --bg-alt: #f3ede3;
  --ink: #0d1b2a;
  --ink-soft: #2a3a4f;
  --muted: #6b7a8a;
  --line: #d9cfc0;
  --accent: #c8965a;
  --accent-dark: #a37a42;
  --white: #ffffff;
  --success: #2d6a4f;
  --danger: #9b2c2c;

  /* Palette de teintes produits, dérivée de la marque, purement visuelle (aucune identité personnifiée) */
  --tint-1: #4a5f8a;
  --tint-2: #d97757;
  --tint-3: #6d7a8a;
  --tint-4: #5b8a72;
  --tint-5: #d9a84e;
  --tint-6: var(--accent);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ============ NAV ============ */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  background: rgba(250, 247, 242, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}
nav.scrolled { border-bottom-color: var(--line); }
nav .container {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 20px; padding-bottom: 20px;
  gap: 24px;
}
.logo {
  font-family: 'Fraunces', serif;
  font-size: 28px; font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink); text-decoration: none;
  display: flex; align-items: baseline; gap: 2px;
  flex-shrink: 0;
}
.logo-mark { color: var(--accent); font-style: italic; font-weight: 500; }
.nav-links { display: flex; gap: 28px; align-items: center; flex-wrap: wrap; justify-content: flex-end; }
.nav-links a {
  color: var(--ink-soft); text-decoration: none;
  font-size: 15px; font-weight: 500;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: var(--accent-dark); }
.nav-cta {
  padding: 11px 24px;
  background: var(--accent); color: var(--ink);
  border-radius: 100px;
  font-size: 14px; font-weight: 700;
  text-decoration: none;
  transition: all 0.25s ease;
  border: 1px solid var(--accent);
  box-shadow: 0 4px 12px -2px rgba(200, 150, 90, 0.35);
}
.nav-cta:hover {
  background: var(--ink); border-color: var(--ink);
  color: var(--bg) !important;
  box-shadow: 0 6px 16px -2px rgba(13, 27, 42, 0.25);
  transform: translateY(-1px);
}

.nav-actions { display: flex; align-items: center; gap: 16px; }

.nav-toggle {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px;
  width: 36px; height: 36px; padding: 0;
  background: none; border: none; cursor: pointer; flex-shrink: 0;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--ink); border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
nav.menu-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
nav.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
nav.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: flex; }

  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--bg); border-bottom: 1px solid var(--line);
    max-height: 0; overflow: hidden;
    transition: max-height 0.3s ease;
  }
  nav.menu-open .nav-links { max-height: 400px; }
  .nav-links a {
    padding: 16px 32px; border-top: 1px solid var(--line);
  }
}

/* ============ HERO ============ */
.hero { padding: 160px 0 80px; position: relative; overflow: hidden; }
.hero::before {
  content: '';
  position: absolute; top: 20%; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(200, 150, 90, 0.08) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.hero.hero-compact { padding: 150px 0 60px; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px; border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 13px; font-weight: 500; color: var(--ink-soft);
  margin-bottom: 32px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 0; animation: fadeUp 0.8s 0.1s forwards;
}
.hero-eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 0 rgba(45, 106, 79, 0.6);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(45, 106, 79, 0.6); }
  50% { box-shadow: 0 0 0 6px rgba(45, 106, 79, 0); }
}

.hero h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(44px, 7vw, 88px);
  font-weight: 400; line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--ink); margin-bottom: 32px;
  max-width: 900px;
  opacity: 0; animation: fadeUp 0.9s 0.2s forwards;
}
.hero.hero-compact h1 { font-size: clamp(36px, 5.5vw, 64px); }
.hero h1 em { font-style: italic; font-weight: 400; color: var(--accent-dark); }

.hero-sub {
  font-size: clamp(17px, 1.5vw, 20px);
  color: var(--ink-soft);
  max-width: 640px;
  margin-bottom: 48px; line-height: 1.55;
  opacity: 0; animation: fadeUp 0.9s 0.35s forwards;
}

.hero-cta-group {
  display: flex; gap: 16px; flex-wrap: wrap; align-items: center;
  opacity: 0; animation: fadeUp 0.9s 0.5s forwards;
}

.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 17px 32px; background: var(--ink); color: var(--bg);
  border-radius: 100px; font-size: 16px; font-weight: 600;
  text-decoration: none; transition: all 0.3s ease;
  border: 1px solid var(--ink); cursor: pointer;
}
.btn-primary:hover {
  background: var(--accent-dark); border-color: var(--accent-dark);
  transform: translateY(-2px);
}
.btn-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 17px 32px; background: transparent; color: var(--ink);
  border-radius: 100px; font-size: 16px; font-weight: 600;
  text-decoration: none; border: 1px solid var(--line);
  transition: all 0.3s ease; cursor: pointer;
}
.btn-secondary:hover { border-color: var(--ink); background: rgba(13, 27, 42, 0.03); }

.hero-trust {
  margin-top: 28px; font-size: 14px; color: var(--muted);
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 0.9s 0.65s forwards;
}

.back-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--muted); text-decoration: none;
  font-size: 14px; font-weight: 600;
  margin-bottom: 24px;
  transition: color 0.2s;
  opacity: 0; animation: fadeUp 0.8s 0.05s forwards;
}
.back-link:hover { color: var(--accent-dark); }

/* ============ PROBLEM / PAIN POINTS ============ */
.problem { padding: 120px 0; background: var(--bg-alt); position: relative; }

.section-label {
  font-family: 'Fraunces', serif;
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--accent-dark); margin-bottom: 24px; display: block;
}

.problem h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 400; line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 60px; max-width: 800px;
}
.problem h2 em { font-style: italic; color: var(--accent-dark); }

.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px; margin-bottom: 60px;
}
.pain-item {
  padding: 32px; background: var(--bg);
  border: 1px solid var(--line); border-radius: 2px;
  transition: all 0.3s ease;
}
.pain-item:hover {
  border-color: var(--accent); transform: translateY(-4px);
  box-shadow: 0 20px 40px -20px rgba(13, 27, 42, 0.15);
}
.pain-item-num {
  font-family: 'Fraunces', serif;
  font-size: 14px; color: var(--accent-dark);
  letter-spacing: 0.1em; margin-bottom: 16px; font-weight: 500;
}
.pain-item p {
  font-size: 17px; color: var(--ink);
  line-height: 1.5; font-weight: 500;
}

.problem-quote {
  font-family: 'Fraunces', serif;
  font-size: clamp(22px, 2.8vw, 30px);
  font-style: italic; color: var(--ink);
  max-width: 820px; line-height: 1.4;
  padding: 40px 0 0;
  border-top: 1px solid var(--line);
  font-weight: 400;
}
.problem-quote span { color: var(--accent-dark); font-style: normal; }

/* ============ OFFERS (cartes pôles / cartes produits) ============ */
.offers { padding: 140px 0; position: relative; }
.offers.on-alt { background: var(--bg-alt); }

.offers h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 400; line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px; max-width: 900px;
}
.offers h2 em { font-style: italic; color: var(--accent-dark); }

.offers-intro {
  font-size: 19px; color: var(--ink-soft);
  max-width: 720px; margin-bottom: 80px; line-height: 1.55;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.offer-card {
  position: relative; background: var(--bg-alt);
  border: 1px solid var(--line); border-radius: 4px;
  padding: 40px 32px; transition: all 0.4s ease;
  overflow: hidden;
  display: flex; flex-direction: column;
  text-decoration: none; color: inherit;
}
.offer-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent);
  box-shadow: 0 30px 60px -20px rgba(13, 27, 42, 0.15);
}
.offer-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px; background: var(--card-color, var(--accent));
}

.offers.on-alt .offer-card { background: var(--bg); }

.offer-card[data-tint="1"] { --card-color: var(--tint-1); }
.offer-card[data-tint="2"] { --card-color: var(--tint-2); }
.offer-card[data-tint="3"] { --card-color: var(--tint-3); }
.offer-card[data-tint="4"] { --card-color: var(--tint-4); }
.offer-card[data-tint="5"] { --card-color: var(--tint-5); }
.offer-card[data-tint="6"] { --card-color: var(--tint-6); }

.offer-icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--card-color);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px; position: relative;
  box-shadow: inset 0 -20px 40px rgba(0, 0, 0, 0.08),
              0 8px 24px -8px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease;
  flex-shrink: 0;
}
.offer-card:hover .offer-icon { transform: scale(1.05); }
.offer-icon svg { width: 32px; height: 32px; stroke: var(--bg); }
.offer-icon::after {
  content: '';
  position: absolute; bottom: 0; right: 0;
  width: 16px; height: 16px; background: var(--success);
  border: 3px solid var(--bg-alt); border-radius: 50%;
  z-index: 2;
}
.offers.on-alt .offer-icon::after { border-color: var(--bg); }
.offer-card:hover .offer-icon::after { animation: pulse-dot 1.5s infinite; }
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(45, 106, 79, 0.6); }
  50% { box-shadow: 0 0 0 6px rgba(45, 106, 79, 0); }
}

.offer-title {
  font-family: 'Fraunces', serif;
  font-size: 28px; font-weight: 500;
  letter-spacing: -0.02em; line-height: 1.15;
  margin-bottom: 6px;
}
.offer-category {
  font-size: 13px; font-weight: 600;
  color: var(--card-color);
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 20px;
}
.offer-tagline {
  font-family: 'Fraunces', serif;
  font-size: 18px; font-style: italic;
  color: var(--ink); margin-bottom: 16px;
  line-height: 1.4;
}
.offer-desc {
  font-size: 15px; color: var(--ink-soft);
  line-height: 1.6; margin-bottom: 28px;
  flex-grow: 1;
}

.offer-stats {
  display: flex; gap: 24px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 0;
}
.offer-stat { flex: 1; }
.offer-stat-value {
  font-family: 'Fraunces', serif;
  font-size: 22px; font-weight: 500;
  color: var(--ink); display: block; line-height: 1.2;
}
.offer-stat-label {
  font-size: 11px; color: var(--muted);
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-top: 4px;
}

.offer-cta {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--ink); text-decoration: none;
  font-weight: 600; font-size: 15px;
  padding-top: 16px;
  transition: color 0.3s;
}
.offer-cta:hover { color: var(--card-color); }

/* Carte "featured" (pleine largeur, ex : agent sur-mesure) */
.offer-card.featured {
  background: var(--ink); color: var(--bg);
  border-color: var(--ink);
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  align-items: center;
  padding: 56px 48px;
}
@media (max-width: 768px) {
  .offer-card.featured { grid-template-columns: 1fr; gap: 24px; padding: 40px 32px; }
}
.offer-card.featured:hover { transform: none; box-shadow: none; }
.offer-card.featured::before { background: var(--accent); }

.featured-left { display: flex; flex-direction: column; }
.featured-left .offer-icon { background: var(--accent); }
.featured-left .offer-icon svg { stroke: var(--ink); }
.featured-left .offer-title { color: var(--bg); font-size: 40px; }
.featured-left .offer-category { color: var(--accent); }
.featured-left .offer-tagline { color: var(--bg); }
.featured-left .offer-desc { color: rgba(250, 247, 242, 0.8); margin-bottom: 0; }

.featured-right { display: flex; flex-direction: column; gap: 16px; }
.featured-feature {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 12px 0;
}
.featured-feature-bullet {
  width: 28px; height: 28px;
  background: var(--accent); color: var(--ink);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Fraunces', serif;
  font-size: 13px; font-weight: 700;
  flex-shrink: 0;
}
.featured-feature p {
  color: rgba(250, 247, 242, 0.9);
  font-size: 15px; line-height: 1.5;
}
.featured-feature strong { color: var(--bg); }

.featured-cta-block {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(250, 247, 242, 0.15);
}
.featured-right .offer-cta { color: var(--bg); padding-top: 0; }
.featured-right .offer-cta:hover { color: var(--accent); }

/* ============ PROCESS ============ */
.process {
  padding: 140px 0;
  background: var(--bg-alt);
  position: relative;
}
.process.on-base { background: var(--bg); }

.process h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 400; line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px; max-width: 900px;
}
.process h2 em { font-style: italic; color: var(--accent-dark); }

.process-intro {
  font-size: 19px; color: var(--ink-soft);
  max-width: 720px; margin-bottom: 80px; line-height: 1.55;
}

.process-timeline { position: relative; max-width: 900px; }

.process-step {
  display: grid; grid-template-columns: 140px 1fr;
  gap: 40px; padding: 32px 0;
  border-top: 1px solid var(--line);
  align-items: start;
}
.process-step:last-child { border-bottom: 1px solid var(--line); }

.process-step-label {
  font-family: 'Fraunces', serif;
  font-size: 13px; letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-dark);
  padding-top: 6px; font-weight: 500;
}
.process-step-label .week {
  display: block;
  font-size: 28px; color: var(--ink);
  letter-spacing: -0.02em; margin-top: 4px;
  font-family: 'Fraunces', serif;
  font-style: italic; text-transform: none;
  font-weight: 400;
}

.process-step-content h3 {
  font-family: 'Fraunces', serif;
  font-size: 28px; font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 12px; line-height: 1.2;
}
.process-step-content p {
  font-size: 16px; color: var(--ink-soft);
  line-height: 1.6; max-width: 600px;
}

@media (max-width: 768px) {
  .process-step { grid-template-columns: 1fr; gap: 16px; }
}

/* ============ GUARANTEE ============ */
.guarantee {
  padding: 140px 0; background: var(--ink); color: var(--bg);
  position: relative; overflow: hidden;
}
.guarantee::before {
  content: '';
  position: absolute; top: -100px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(200, 150, 90, 0.15) 0%, transparent 70%);
  pointer-events: none;
}
.guarantee-inner { max-width: 820px; position: relative; z-index: 2; }

.guarantee .section-label { color: var(--accent); }

.guarantee h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 400; line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 32px; color: var(--bg);
}
.guarantee h2 em { font-style: italic; color: var(--accent); }

.guarantee-lead {
  font-size: 20px; line-height: 1.55;
  color: rgba(250, 247, 242, 0.75);
  margin-bottom: 48px; max-width: 720px;
}

.guarantee-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px; margin-bottom: 48px;
}
.guarantee-card {
  padding: 32px 28px;
  background: rgba(250, 247, 242, 0.04);
  border-left: 3px solid var(--accent);
  border-radius: 2px;
}
.guarantee-card-title {
  font-family: 'Fraunces', serif;
  font-size: 14px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 12px; font-weight: 500;
}
.guarantee-card p {
  font-size: 15px; color: rgba(250, 247, 242, 0.9);
  line-height: 1.5;
}
.guarantee-card p strong { color: var(--bg); font-weight: 600; }

.guarantee-kicker {
  font-family: 'Fraunces', serif;
  font-size: 24px; font-style: italic;
  color: var(--bg); padding-top: 32px;
  border-top: 1px solid rgba(250, 247, 242, 0.15);
  line-height: 1.4;
}

/* ============ INTEGRATIONS (pills) ============ */
.integrations { padding: 100px 0; }
.integrations.on-alt { background: var(--bg-alt); }
.integrations h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 400; line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px; max-width: 700px;
}
.integrations-intro {
  font-size: 17px; color: var(--ink-soft);
  max-width: 640px; margin-bottom: 40px; line-height: 1.55;
}
.pill-list { display: flex; flex-wrap: wrap; gap: 12px; }
.pill {
  display: inline-flex; align-items: center;
  padding: 10px 20px;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 14px; font-weight: 600; color: var(--ink-soft);
}

/* ============ WHY / FEATURES (liste numérotée) ============ */
.why { padding: 140px 0; }
.why.on-alt { background: var(--bg-alt); }
.why h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 400; line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px; max-width: 700px;
}
.why h2 em { font-style: italic; color: var(--accent-dark); }
.why-intro {
  font-size: 19px; color: var(--ink-soft);
  max-width: 720px; margin-bottom: 56px; line-height: 1.55;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 48px 32px;
}
.why-item { border-top: 1px solid var(--line); padding-top: 32px; }
.why-item-num {
  font-family: 'Fraunces', serif;
  font-size: 40px; font-style: italic;
  color: var(--accent); margin-bottom: 16px;
  display: block; line-height: 1; font-weight: 400;
}
.why-item h3 {
  font-family: 'Fraunces', serif;
  font-size: 24px; font-weight: 500;
  margin-bottom: 12px; letter-spacing: -0.01em;
}
.why-item p {
  font-size: 16px; color: var(--ink-soft);
  line-height: 1.6;
}

/* ============ CTA BAND ============ */
.cta-band {
  padding: 100px 0; background: var(--ink); color: var(--bg);
  text-align: center; position: relative; overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; top: -120px; left: 50%; transform: translateX(-50%);
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(200, 150, 90, 0.15) 0%, transparent 70%);
  pointer-events: none;
}
.cta-band-inner { position: relative; z-index: 2; }
.cta-band h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(30px, 4.5vw, 48px);
  font-weight: 400; line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 auto 16px; max-width: 700px; color: var(--bg);
}
.cta-band h2 em { font-style: italic; color: var(--accent); }
.cta-band p {
  font-size: 17px; color: rgba(250, 247, 242, 0.7);
  max-width: 560px; margin: 0 auto 36px; line-height: 1.55;
}
.cta-band .btn-primary { background: var(--accent); color: var(--ink); border-color: var(--accent); }
.cta-band .btn-primary:hover { background: var(--bg); border-color: var(--bg); }

/* ============ FAQ ============ */
.faq { padding: 140px 0; background: var(--bg-alt); }
.faq h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 400; line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 60px; max-width: 700px;
}
.faq-list { max-width: 820px; }
.faq-item { border-bottom: 1px solid var(--line); }

.faq-question {
  padding: 28px 0;
  font-family: 'Fraunces', serif;
  font-size: 20px; font-weight: 500; color: var(--ink);
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px;
  background: none; border: none;
  width: 100%; text-align: left;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--accent-dark); }

.faq-question .icon {
  flex-shrink: 0;
  width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s ease;
  color: var(--ink); font-weight: 300; font-size: 20px;
  font-family: 'Manrope', sans-serif;
}
.faq-item.open .faq-question .icon {
  background: var(--ink); color: var(--bg);
  transform: rotate(45deg); border-color: var(--ink);
}
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.open .faq-answer { max-height: 500px; padding-bottom: 28px; }
.faq-answer p {
  font-size: 16px; color: var(--ink-soft);
  line-height: 1.65; max-width: 700px;
}

/* ============ FORM ============ */
.form-section {
  padding: 140px 0; background: var(--ink); color: var(--bg);
  position: relative; overflow: hidden;
}
.form-section::before {
  content: '';
  position: absolute; right: -200px; bottom: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(200, 150, 90, 0.12) 0%, transparent 70%);
  pointer-events: none;
}
.form-section .container { max-width: 900px; position: relative; z-index: 2; }

.form-header { text-align: center; margin-bottom: 64px; }
.form-section .section-label { color: var(--accent); }

.form-header h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 400; line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px; color: var(--bg);
}
.form-header h2 em { font-style: italic; color: var(--accent); }

.form-header p {
  font-size: 18px; color: rgba(250, 247, 242, 0.7);
  max-width: 580px; margin: 0 auto; line-height: 1.55;
}

.form-wrap {
  background: rgba(250, 247, 242, 0.03);
  border: 1px solid rgba(250, 247, 242, 0.1);
  border-radius: 8px; padding: 56px 48px;
  backdrop-filter: blur(10px);
}
@media (max-width: 640px) { .form-wrap { padding: 32px 24px; } }

.form-wrap form { display: flex; flex-direction: column; gap: 32px; }

.form-block {
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(250, 247, 242, 0.1);
}
.form-block:last-of-type { border-bottom: none; padding-bottom: 0; }

.form-block-title {
  font-family: 'Fraunces', serif;
  font-size: 13px; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 24px; font-weight: 500;
}

.form-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 20px; margin-bottom: 20px;
}
.form-row:last-child { margin-bottom: 0; }
.form-row.single { grid-template-columns: 1fr; }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }

.form-field { display: flex; flex-direction: column; }
.form-field label {
  font-size: 14px; color: rgba(250, 247, 242, 0.8);
  margin-bottom: 8px; font-weight: 500;
}
.form-field label .required { color: var(--accent); margin-left: 2px; }

.form-field input,
.form-field select,
.form-field textarea {
  padding: 14px 16px;
  background: rgba(250, 247, 242, 0.05);
  border: 1px solid rgba(250, 247, 242, 0.15);
  border-radius: 4px;
  color: var(--bg); font-family: 'Manrope', sans-serif;
  font-size: 15px; transition: all 0.2s ease;
  -webkit-appearance: none; appearance: none;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none; border-color: var(--accent);
  background: rgba(250, 247, 242, 0.08);
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(250, 247, 242, 0.3); }
.form-field textarea { resize: vertical; min-height: 100px; }

.form-field select {
  cursor: pointer;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23c8965a' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.form-field select option { background: var(--ink); color: var(--bg); }

.form-field .helper {
  font-size: 13px; color: rgba(250, 247, 242, 0.5);
  margin-top: 6px; font-style: italic;
}

.form-field.error input,
.form-field.error select,
.form-field.error textarea { border-color: #d97767; }
.form-field .error-msg {
  font-size: 13px; color: #d97767;
  margin-top: 6px; display: none;
}
.form-field.error .error-msg { display: block; }

.options-group { display: flex; flex-direction: column; gap: 12px; }
.options-group.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 640px) { .options-group.grid-2 { grid-template-columns: 1fr; } }
.options-group-title {
  font-size: 13px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--accent);
  margin: 8px 0 4px;
}
.options-group-title:first-child { margin-top: 0; }
.option-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 18px;
  background: rgba(250, 247, 242, 0.03);
  border: 1px solid rgba(250, 247, 242, 0.1);
  border-radius: 4px; cursor: pointer;
  transition: all 0.2s ease;
}
.option-item:hover {
  background: rgba(250, 247, 242, 0.06);
  border-color: rgba(200, 150, 90, 0.3);
}
.option-item input[type="radio"],
.option-item input[type="checkbox"] {
  appearance: none; -webkit-appearance: none;
  width: 20px; height: 20px;
  border: 1.5px solid rgba(250, 247, 242, 0.4);
  background: transparent; flex-shrink: 0; margin: 0;
  cursor: pointer; position: relative;
  transition: all 0.2s ease; margin-top: 2px;
}
.option-item input[type="radio"] { border-radius: 50%; }
.option-item input[type="checkbox"] { border-radius: 4px; }
.option-item input[type="radio"]:checked,
.option-item input[type="checkbox"]:checked {
  border-color: var(--accent); background: var(--accent);
}
.option-item input[type="radio"]:checked::after {
  content: '';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 8px; height: 8px;
  background: var(--ink); border-radius: 50%;
}
.option-item input[type="checkbox"]:checked::after {
  content: '✓';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -55%);
  color: var(--ink); font-size: 14px; font-weight: 700; line-height: 1;
}
.option-item:has(input:checked) {
  background: rgba(200, 150, 90, 0.1);
  border-color: var(--accent);
}

.option-label {
  font-size: 15px; color: var(--bg);
  line-height: 1.4; flex: 1;
}
.option-label em {
  color: rgba(250, 247, 242, 0.5);
  font-style: italic; font-size: 13px;
}

.consent-group {
  display: flex; align-items: flex-start; gap: 14px; cursor: pointer;
}
.consent-group input {
  appearance: none; -webkit-appearance: none;
  width: 20px; height: 20px;
  border: 1.5px solid rgba(250, 247, 242, 0.4);
  border-radius: 4px; background: transparent;
  flex-shrink: 0; cursor: pointer;
  position: relative; transition: all 0.2s ease;
  margin-top: 2px;
}
.consent-group input:checked { border-color: var(--accent); background: var(--accent); }
.consent-group input:checked::after {
  content: '✓';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -55%);
  color: var(--ink); font-size: 14px; font-weight: 700;
}
.consent-group label {
  font-size: 14px; color: rgba(250, 247, 242, 0.75);
  line-height: 1.55; cursor: pointer;
}
.consent-group label a { color: var(--accent); text-decoration: underline; }

.form-submit {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 20px 40px;
  background: var(--accent); color: var(--ink);
  border: none; border-radius: 100px;
  font-size: 16px; font-weight: 700;
  cursor: pointer; transition: all 0.3s ease;
  font-family: 'Manrope', sans-serif;
  align-self: flex-start; margin-top: 16px;
}
.form-submit:hover {
  background: var(--bg); transform: translateY(-2px);
}
.form-submit:disabled {
  opacity: 0.6; cursor: not-allowed; transform: none;
}

.form-success { display: none; text-align: center; padding: 60px 20px; }
.form-success.active { display: block; }
.form-success .icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--accent); color: var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 32px; margin-bottom: 32px;
  font-family: 'Fraunces', serif; font-weight: 600;
}
.form-success h3 {
  font-family: 'Fraunces', serif;
  font-size: 36px; margin-bottom: 20px;
  color: var(--bg); font-weight: 400;
  letter-spacing: -0.02em;
}
.form-success p {
  color: rgba(250, 247, 242, 0.8);
  font-size: 17px; line-height: 1.6;
  max-width: 500px; margin: 0 auto 12px;
}

/* ============ FOOTER ============ */
footer { padding: 80px 0 40px; background: var(--bg); border-top: 1px solid var(--line); }

.footer-grid {
  display: grid; grid-template-columns: 1.3fr 1fr 1.2fr 1fr;
  gap: 48px; margin-bottom: 60px;
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
}

.footer-brand .logo { font-size: 32px; margin-bottom: 20px; display: inline-block; }
.footer-brand p {
  color: var(--ink-soft); font-size: 16px;
  max-width: 380px; line-height: 1.55;
  font-family: 'Fraunces', serif; font-style: italic;
  font-weight: 400;
}

.footer-col h4 {
  font-family: 'Fraunces', serif;
  font-size: 14px; letter-spacing: 0.1em;
  text-transform: uppercase; margin-bottom: 20px;
  font-weight: 500; color: var(--accent-dark);
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a {
  color: var(--ink-soft); text-decoration: none;
  font-size: 15px; transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--accent-dark); }

.footer-bottom {
  padding-top: 32px; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
  font-size: 14px; color: var(--muted);
}
.footer-bottom .tagline {
  font-family: 'Fraunces', serif;
  font-style: italic; color: var(--accent-dark);
}

/* Liens sociaux dans le footer */
.social-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--ink-soft);
  background: transparent;
  transition: all 0.25s ease;
  text-decoration: none;
  position: relative;
}
.social-link svg {
  width: 18px;
  height: 18px;
  transition: transform 0.25s ease;
}
.social-link:hover {
  color: var(--accent);
  transform: translateY(-2px);
}
.social-link:hover svg {
  transform: scale(1.15);
}

/* ============ RESPONSIVE FIXES ============ */
/* Les minmax() fixes des grilles de cartes dépassent la largeur disponible
   sur les petits téléphones (~320-375px) une fois le padding du container
   déduit ; on repasse en une colonne pleine largeur en dessous de 480px. */
@media (max-width: 480px) {
  .pain-grid, .offer-grid, .guarantee-grid, .why-grid {
    grid-template-columns: 1fr;
  }
}

/* ============ ANIMATIONS ============ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
