/* ════════════════════════════════════════════════
   1. RESET & TOKENS
   ════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* ── Couleurs ──────────────────────────────── */
  --dark:  #0B1A11;
  --block: #0E2318;
  --terra: #E34A1C;
  --teal:  #277A6E;
  --cream: #EDE8D9;
  --white: #FFFFFF;
  --muted: rgba(255,255,255,0.52);
  --border: rgba(255,255,255,0.10);

  /* ── Couleurs accent ───────────────────────── */
  --terra-hover: #C03810;
  --teal-hover:  #1C5C52;
  --border-strong: rgba(255,255,255,0.18);
  --border-dark:   rgba(11,26,17,0.10);

  /* ── Échelle typographique ─────────────────── */
  --t-display: clamp(48px, 6vw, 88px);   /* hero title */
  --t-h2:      clamp(36px, 4vw, 60px);   /* section titles, contact */
  --t-h3:      28px;                      /* card titles (services, pricing, process) */
  --t-xl:      20px;                      /* hero-sub, contact-sub */
  --t-body:    16px;                      /* corps standard */
  --t-small:   15px;                      /* secondaire (stat-label, features) */
  --t-label:   12px;                      /* eyebrows, nav, boutons, tags */
  --t-micro:   11px;                      /* footer, ci-label */

  /* ── Espacement ────────────────────────────── */
  --space-1:  4px;
  --space-2:  8px;
  --space-3:  12px;
  --space-4:  16px;
  --space-5:  24px;
  --space-6:  32px;
  --space-7:  40px;
  --space-8:  48px;
  --space-9:  56px;
  --space-10: 64px;
  --space-11: 80px;
  --space-12: 100px;
  --space-13: 120px;

  /* ── Transitions ───────────────────────────── */
  --t-fast: 0.2s;
  --t-base: 0.3s;
  --t-slow: 0.4s;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);

  /* ── Z-index scale ─────────────────────────── */
  --z-nav:   100;
  --z-modal: 1000;
}

html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--dark); color: var(--white); overflow-x: hidden; }


/* ════════════════════════════════════════════════
   2. ANIMATIONS — initial states
   ════════════════════════════════════════════════ */
.line-wrap { display: block; overflow: hidden; line-height: 1.05; }
.line      { display: block; will-change: transform; }


/* ════════════════════════════════════════════════
   3. NAV
   ════════════════════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: var(--z-nav);
  height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--space-11);
  background: rgba(11,26,17,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-logo-wrap {
  display: flex; align-items: baseline; gap: 0;
}
.nav-logo {
  font-family: 'Poppins', sans-serif;
  font-size: 26px; line-height: 1; text-decoration: none;
}
.nav-logo .yana { font-weight: 800; color: var(--white); letter-spacing: -0.01em; }
.nav-logo .web  { font-weight: 700; color: var(--terra); }
.nav-by {
  font-family: 'Montserrat', sans-serif;
  font-size: var(--t-micro); font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted); margin-left: 14px;
}
.nav-links {
  display: flex; align-items: center; gap: var(--space-7); list-style: none;
}
.nav-links a {
  font-family: 'Montserrat', sans-serif;
  font-size: var(--t-label); font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); text-decoration: none;
  transition: color var(--t-fast);
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  background: var(--terra); color: var(--white) !important;
  padding: var(--space-3) 28px;
}
.nav-cta:hover { background: var(--terra-hover) !important; }

/* ── SPLIT BAR ───────────────────────────────── */
.split { display: flex; }
.split .sl { flex: 1; background: var(--terra); }
.split .sr { flex: 1; background: var(--teal); }


/* ════════════════════════════════════════════════
   4. HERO
   ════════════════════════════════════════════════ */
#hero {
  height: 100svh;
  max-height: 100svh;
  overflow: hidden;
  display: flex; flex-direction: column;
  padding-top: 72px;
}
.hero-body {
  flex: 1; display: flex;
}
.hero-left {
  flex: 1; min-height: 0;
  padding: var(--space-9) 100px var(--space-9) var(--space-11);
  display: flex; flex-direction: column; justify-content: flex-start;
  border-right: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.botanical-hero {
  position: absolute; bottom: -40px; right: -40px;
  width: 480px; height: 580px;
  pointer-events: none; z-index: 0; opacity: 0.18;
}
.botanical-process {
  position: absolute; right: -20px; top: -20px;
  width: 440px; height: 100%;
  pointer-events: none; z-index: 0; opacity: 0.10;
}
.hero-left > *:not(.botanical-hero) { position: relative; z-index: 1; }
.hero-right {
  width: 480px; background: var(--block);
  padding: 0;
  display: flex; flex-direction: column;
  border-left: 1px solid var(--border);
  min-height: 0; overflow: hidden;
}
.hero-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: var(--t-label); font-weight: 700;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--terra); margin-bottom: var(--space-5);
}
.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: var(--t-display);
  font-weight: 900; text-transform: uppercase;
  line-height: 1; letter-spacing: -0.025em;
}
.hero-title em { font-style: normal; color: var(--terra); }
.hero-sub {
  font-size: var(--t-xl); font-weight: 300; color: var(--muted);
  line-height: 1.7; margin-top: 36px; max-width: 520px;
}
.hero-actions {
  display: flex; gap: var(--space-4); margin-top: var(--space-9); align-items: center;
}
.btn-primary {
  background: var(--terra); color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: var(--t-label); font-weight: 800;
  letter-spacing: 0.10em; text-transform: uppercase;
  padding: 18px var(--space-7); text-decoration: none;
  transition: background var(--t-fast);
  display: inline-flex; align-items: center; gap: var(--space-3);
}
.btn-primary:hover { background: var(--terra-hover); }
.btn-ghost {
  color: var(--muted);
  font-family: 'Montserrat', sans-serif;
  font-size: var(--t-label); font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  text-decoration: none; border-bottom: 1px solid var(--border);
  padding-bottom: var(--space-1); transition: color var(--t-fast), border-color var(--t-fast);
}
.btn-ghost:hover { color: var(--white); border-color: var(--white); }
.hero-location {
  margin-top: auto;
  padding-top: var(--space-8);
  font-family: 'Montserrat', sans-serif;
  font-size: var(--t-label); font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted);
  display: flex; align-items: center; gap: 10px;
}
.hero-location::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--teal); flex-shrink: 0;
}
.hero-right-label {
  font-family: 'Montserrat', sans-serif;
  font-size: var(--t-micro); font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--muted);
}
.stat-block {
  flex: 1 1 0; min-height: 0;
  padding: var(--space-6) var(--space-8);
  display: flex; flex-direction: column; justify-content: center; gap: 10px;
  border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.stat-block:last-child { border-bottom: none; }
.stat-block.featured { background: rgba(227,74,28,0.06); border-left: none; border-top: 2px solid var(--terra); }
.stat-num {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(40px, 4.5vw, 64px); font-weight: 900; line-height: 1;
  letter-spacing: -0.03em; color: var(--white);
}
.stat-num-unit {
  font-size: 32px; font-weight: 300; color: var(--muted);
}
.stat-num-unit.teal { color: var(--teal); }
.stat-num-currency {
  font-size: 32px; font-weight: 300; vertical-align: super;
}
.stat-label { font-size: var(--t-small); font-weight: 300; color: var(--muted); line-height: 1.5; max-width: 280px; }
.hero-split-bot { height: 8px; }


/* ════════════════════════════════════════════════
   5. SERVICES
   ════════════════════════════════════════════════ */
#services { padding: 0; border-bottom: 1px solid var(--border); }
.services-header {
  padding: var(--space-12) var(--space-11) var(--space-11);
  border-bottom: 1px solid var(--border);
}
.section-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: var(--t-label); font-weight: 700;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--terra); margin-bottom: 20px;
}
.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: var(--t-h2);
  font-weight: 900; text-transform: uppercase;
  line-height: 1; letter-spacing: -0.02em;
  margin-bottom: 60px;
}
.section-title.no-mb { margin-bottom: 0; }
.services-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0;
}
.service-card {
  padding: var(--space-9) 60px;
  border-right: 1px solid var(--border);
  display: flex; flex-direction: column; gap: var(--space-5);
  position: relative; overflow: hidden;
}
.service-card:last-child { border-right: none; }
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--terra);
}
.service-card.tl::before { background: var(--teal); }
.service-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 72px; font-weight: 900;
  color: rgba(255,255,255,0.05); line-height: 1;
  position: absolute; right: var(--space-6); top: var(--space-4);
}
.service-icon {
  width: var(--space-9); height: var(--space-9);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
}
.service-icon svg { width: 28px; height: 28px; fill: var(--terra); }
.service-card.tl .service-icon svg { fill: var(--teal); }
.service-name {
  font-family: 'Montserrat', sans-serif;
  font-size: var(--t-h3); font-weight: 900;
  text-transform: uppercase; line-height: 1.05;
}
.service-desc {
  font-size: var(--t-body); font-weight: 300; color: var(--muted); line-height: 1.7;
  flex: 1;
}
.service-items {
  display: flex; flex-direction: column; gap: 10px;
  padding-top: var(--space-5); border-top: 1px solid var(--border);
}
.service-item {
  font-family: 'Montserrat', sans-serif;
  font-size: var(--t-label); font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted); display: flex; align-items: center; gap: var(--space-3);
}
.service-item::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--terra); flex-shrink: 0;
}
.service-card.tl .service-item::before { background: var(--teal); }


/* ════════════════════════════════════════════════
   6. PROCESSUS
   ════════════════════════════════════════════════ */
#processus { border-bottom: 1px solid rgba(29,77,55,0.12); background: var(--cream); color: var(--dark); }
.process-top {
  padding: var(--space-12) var(--space-11) var(--space-11);
  border-bottom: 1px solid var(--border-dark);
  position: relative; overflow: hidden;
}
.process-top .section-eyebrow { color: var(--terra); }
.process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
}
.process-step {
  padding: 60px var(--space-9);
  border-right: 1px solid var(--border-dark);
  display: flex; flex-direction: column; gap: 20px;
  position: relative;
}
.process-step:last-child { border-right: none; }
.process-step-num {
  font-family: 'Montserrat', sans-serif;
  font-size: var(--t-label); font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--terra);
}
.process-step-title {
  font-family: 'Montserrat', sans-serif;
  font-size: var(--t-h3); font-weight: 900;
  text-transform: uppercase; line-height: 1.1; color: var(--dark);
}
.process-step-desc {
  font-size: var(--t-body); font-weight: 300; color: rgba(11,26,17,0.55); line-height: 1.7;
}
.process-step-duration {
  font-family: 'Montserrat', sans-serif;
  font-size: var(--t-label); font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--teal); margin-top: auto; padding-top: 20px;
  border-top: 1px solid var(--border-dark);
}


/* ════════════════════════════════════════════════
   7. TARIFS
   ════════════════════════════════════════════════ */
#tarifs { padding: var(--space-12) var(--space-11); border-bottom: 1px solid var(--border); }
.pricing-intro {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: var(--space-10); gap: var(--space-11);
}
.pricing-note {
  font-size: var(--t-body); font-weight: 300; color: var(--muted);
  line-height: 1.7; max-width: 480px;
  padding-bottom: var(--space-1);
}
.pricing-tabs {
  display: flex; gap: 0; margin-bottom: var(--space-7);
  border-bottom: 1px solid var(--border);
}
.ptab {
  font-family: 'Montserrat', sans-serif;
  font-size: var(--t-label); font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: var(--space-4) var(--space-6); cursor: pointer;
  color: var(--muted); border-bottom: 2px solid transparent;
  transition: color var(--t-fast), border-color var(--t-fast);
  user-select: none; margin-bottom: -1px;
}
.ptab:hover { color: var(--white); }
.ptab.active { color: var(--terra); border-bottom-color: var(--terra); }
.pricing-panel { display: none; }
.pricing-panel.active { display: block; }
.pricing-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0;
}
.pcard {
  padding: 52px var(--space-9); border-right: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 0;
  position: relative;
}
.pcard:last-child { border-right: none; }
.pcard.featured {
  border-top: 3px solid var(--teal);
  background: rgba(39,122,110,0.07);
}
.pcard-label {
  font-family: 'Montserrat', sans-serif;
  font-size: var(--t-label); font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--terra); margin-bottom: 10px;
}
.pcard-label.teal { color: var(--teal); }
.pcard.featured .pcard-label { color: var(--teal); }
.pcard-name {
  font-family: 'Montserrat', sans-serif;
  font-size: var(--t-h3); font-weight: 900;
  text-transform: uppercase; line-height: 1; margin-bottom: 36px;
}
.pcard-price {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(36px, 3.5vw, 48px); font-weight: 900;
  line-height: 1; letter-spacing: -0.03em;
}
.pcard-price sup { font-size: 20px; vertical-align: super; letter-spacing: 0; }
.pcard-freq {
  font-size: var(--t-small); font-weight: 300; color: var(--muted);
  margin-top: var(--space-2); margin-bottom: 36px;
}
.pcard-div { height: 1px; background: var(--border); margin-bottom: 28px; }
.pcard-features { display: flex; flex-direction: column; gap: var(--space-3); flex: 1; }
.pcard-feature {
  font-size: var(--t-small); font-weight: 300; color: var(--muted);
  display: flex; align-items: flex-start; gap: 14px; line-height: 1.5;
}
.pcard-feature::before { content: '—'; color: var(--terra); font-weight: 700; flex-shrink: 0; }
.pcard.featured .pcard-feature::before { color: var(--teal); }
.pcard-cta {
  margin-top: var(--space-7);
  display: inline-flex; align-items: center;
  font-family: 'Montserrat', sans-serif;
  font-size: var(--t-label); font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); text-decoration: none;
  border-bottom: 1px solid var(--border);
  padding-bottom: var(--space-1); transition: color var(--t-fast), border-color var(--t-fast);
  align-self: flex-start;
}
.pcard-cta:hover { color: var(--white); border-color: var(--white); }
.pcard.featured .pcard-cta {
  background: var(--teal); color: var(--white);
  border: none; padding: 14px 28px; margin-top: var(--space-7);
}
.pcard.featured .pcard-cta:hover { background: var(--teal-hover); }
.pricing-footer {
  margin-top: var(--space-7); padding-top: var(--space-6);
  border-top: 1px solid var(--border);
  font-size: var(--t-body); font-weight: 300; color: var(--muted);
}
.pricing-footer strong { color: var(--white); font-weight: 500; }


/* ════════════════════════════════════════════════
   8. CONTACT
   ════════════════════════════════════════════════ */
#contact {
  display: flex; min-height: 480px;
}
.contact-left {
  flex: 1; background: var(--cream);
  padding: var(--space-12) var(--space-11);
  display: flex; flex-direction: column; justify-content: space-between;
  position: relative; overflow: hidden;
  border-right: 1px solid var(--border-dark);
}
.contact-title {
  font-family: 'Montserrat', sans-serif;
  font-size: var(--t-h2);
  font-weight: 900; text-transform: uppercase;
  line-height: 1; letter-spacing: -0.02em;
  color: var(--dark);
}
.contact-sub {
  font-size: var(--t-xl); font-weight: 300;
  color: rgba(11,26,17,0.55); line-height: 1.6;
  max-width: 460px;
}
.contact-right {
  width: 560px; background: var(--block);
  padding: var(--space-11) 72px;
  display: flex; flex-direction: column; justify-content: center; gap: var(--space-5);
}
#contact-form {
  display: flex; flex-direction: column; gap: var(--space-5);
}
.contact-field {
  display: flex; flex-direction: column; gap: 10px;
}
/* Honeypot anti-bot — invisible humain, visible aux bots */
.contact-hp {
  position: absolute; left: -9999px;
  width: 1px; height: 1px; overflow: hidden;
  opacity: 0; pointer-events: none;
}
#form-msg {
  display: none;
  font-size: var(--t-label);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700; letter-spacing: 0.10em; text-transform: uppercase;
  padding: 14px 18px;
  border: 1px solid transparent;
}
#form-msg.ok  { display: block; color: #4ECDB4; background: rgba(39,122,110,0.14); border-color: rgba(39,122,110,0.4); }
#form-msg.err { display: block; color: var(--terra); background: rgba(227,74,28,0.10); border-color: rgba(227,74,28,0.4); }
.contact-field label {
  font-family: 'Montserrat', sans-serif;
  font-size: var(--t-micro); font-weight: 700;
  letter-spacing: 0.20em; text-transform: uppercase;
  color: var(--muted);
}
.contact-field input,
.contact-field textarea,
.contact-field select {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px; font-weight: 300;
  padding: 14px 18px;
  outline: none; resize: none;
  transition: border-color var(--t-fast);
  -webkit-appearance: none;
}
.contact-field input::placeholder,
.contact-field textarea::placeholder { color: var(--muted); }
.contact-field input:focus,
.contact-field textarea:focus { border-color: var(--terra); }
.contact-field select option { background: var(--block); }
.contact-submit {
  background: var(--terra); color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: var(--t-label); font-weight: 800;
  letter-spacing: 0.10em; text-transform: uppercase;
  padding: 18px var(--space-7); border: none; cursor: pointer;
  width: 100%; transition: background var(--t-fast);
}
.contact-submit:hover { background: var(--terra-hover); }
.contact-info {
  display: flex; gap: var(--space-7); margin-top: var(--space-2);
}
.contact-info-item {
  display: flex; flex-direction: column; gap: var(--space-1);
}
.ci-label {
  font-family: 'Montserrat', sans-serif;
  font-size: var(--t-micro); font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted); opacity: 0.6;
}
.ci-val { font-size: var(--t-body); font-weight: 300; color: rgba(255,255,255,0.8); }

/* ── CONTACT LEFT — dark overrides ───────────── */
.contact-left .ci-label { color: rgba(11,26,17,0.40); opacity: 1; }
.contact-left .ci-val   { color: var(--dark); }
.contact-left .contact-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: var(--t-label); font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--terra); margin-bottom: var(--space-5);
}
.contact-form-label {
  font-family: 'Montserrat', sans-serif;
  font-size: var(--t-label); font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--teal); margin-bottom: var(--space-2);
}
.contact-split-bar {
  margin-top: var(--space-7); height: 3px; display: flex; max-width: 120px;
}
.contact-split-bar .sl { flex: 1; background: var(--terra); }
.contact-split-bar .sr { flex: 1; background: var(--teal); }

/* ── CONTACT INFO — inline margin override ─── */
.contact-info.mt-40 { margin-top: var(--space-7); }


/* ════════════════════════════════════════════════
   9. FOOTER
   ════════════════════════════════════════════════ */
footer {
  padding: var(--space-8) var(--space-11); background: var(--block);
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid var(--border);
}
.footer-logo-wrap {
  display: flex; align-items: baseline;
}
.footer-logo {
  font-family: 'Poppins', sans-serif;
  font-size: 22px; text-decoration: none;
}
.footer-logo .yana { font-weight: 800; color: var(--white); letter-spacing: -0.01em; }
.footer-logo .web  { font-weight: 700; color: var(--terra); }
.footer-by {
  font-family: 'Montserrat', sans-serif;
  font-size: var(--t-micro); font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted); opacity: 0.5; margin-left: 12px;
}
.footer-copy {
  font-size: var(--t-label); font-weight: 300; color: var(--muted); opacity: 0.5;
}
.footer-links { display: flex; gap: var(--space-6); }
.footer-links a {
  font-family: 'Montserrat', sans-serif;
  font-size: var(--t-label); font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); text-decoration: none; opacity: 0.5;
  transition: opacity var(--t-fast);
}
.footer-links a:hover { opacity: 1; }


/* ════════════════════════════════════════════════
   10. RESPONSIVE — @media
   ════════════════════════════════════════════════ */
.nav-burger { display: none; }

/* ── HEIGHT-BASED : hero compact sur écrans courts ────────── */
@media (min-width: 769px) and (max-height: 900px) {
  .hero-title    { font-size: clamp(40px, 5.2vw, 72px); }
  .hero-sub      { margin-top: 24px; line-height: 1.55; }
  .hero-actions  { margin-top: 36px; }
  .hero-location { padding-top: 32px; }
  .hero-left     { padding-top: 40px; padding-bottom: 40px; }
  .stat-block    { padding: 24px var(--space-8); }
}
@media (min-width: 769px) and (max-height: 760px) {
  .hero-title    { font-size: clamp(36px, 4.8vw, 60px); }
  .hero-sub      { font-size: 17px; margin-top: 18px; }
  .hero-actions  { margin-top: 28px; }
  .hero-location { padding-top: 24px; }
  .hero-left     { padding-top: 28px; padding-bottom: 28px; }
  .stat-block    { padding: 18px var(--space-7); gap: 6px; }
  .stat-num      { font-size: clamp(34px, 3.6vw, 48px); }
}

@media (max-width: 1024px) {
  nav { padding: 0 40px; }
  .hero-left { padding: 80px 60px 80px 40px; }
  .hero-right { width: 360px; }
  .stat-block { padding: 36px 40px; }
  #services { padding: 80px 40px; }
  .services-header { padding: 80px 40px 60px; }
  .service-card { padding: 40px 36px; }
  .process-top { padding: 80px 40px 60px; }
  .process-step { padding: 48px 36px; }
  #tarifs { padding: 80px 40px; }
  .pcard { padding: 40px 36px; }
  .contact-left { padding: 80px 40px; }
  .contact-right { padding: 60px 48px; width: 460px; }
  footer { padding: 40px; }
}

@media (max-width: 768px) {
  /* NAV */
  nav { padding: 0 24px; height: 64px; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: 64px; left: 0; right: 0;
    background: var(--block);
    padding: 24px; gap: 20px;
    border-bottom: 1px solid var(--border);
    z-index: 99;
  }
  .nav-burger {
    display: flex; flex-direction: column; gap: 5px; cursor: pointer;
    padding: 8px;
  }
  .nav-burger span {
    width: 22px; height: 2px;
    background: var(--white); border-radius: 2px;
    transition: all var(--t-fast);
  }
  .nav-burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .nav-burger.open span:nth-child(2) { opacity: 0; }
  .nav-burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  /* HERO — en mobile, hauteur naturelle (pas 100svh) */
  #hero {
    height: auto;
    max-height: none;
    min-height: auto;
    overflow: visible;
    padding-top: 64px;
  }
  .hero-body { flex-direction: column; }
  .hero-left {
    padding: 48px 24px 56px;
    border-right: none;
    border-bottom: 1px solid var(--border);
    justify-content: flex-start;
    min-height: auto; overflow: visible;
  }
  .botanical-hero { display: none; }
  .hero-right {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    border-left: none;
    border-top: 1px solid var(--border);
    overflow: visible;
  }
  .stat-block {
    flex: 1 1 50%; min-width: 0;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 28px 24px;
  }
  .stat-block:nth-child(2) { border-right: none; }
  .stat-block:last-child { flex: 1 1 100%; border-bottom: none; border-right: none; }
  .stat-num { font-size: 48px; }

  /* SERVICES */
  #services { padding: 60px 24px; }
  .services-header { padding: 60px 24px 40px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 40px 28px; border-right: none; border-bottom: 1px solid var(--border); }
  .service-card:last-child { border-bottom: none; }

  /* PROCESSUS */
  .botanical-process { display: none; }
  .process-top { padding: 60px 24px 40px; }
  .process-top .section-title { font-size: clamp(28px, 7vw, 40px); margin-bottom: 0; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-step { padding: 36px 24px; }

  /* SECTION TITLES — compact en mobile */
  .section-title { font-size: clamp(28px, 7vw, 40px); margin-bottom: 32px; }
  .hero-title    { font-size: clamp(40px, 11vw, 64px); }

  /* TARIFS */
  #tarifs { padding: 60px 24px; }
  .pricing-intro { flex-direction: column; gap: 24px; margin-bottom: 40px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pcard { border-right: none; border-bottom: 1px solid var(--border); padding: 36px 28px; }
  .pcard:last-child { border-bottom: none; }
  .ptab { padding: 12px 20px; font-size: 11px; }

  /* CONTACT */
  #contact { flex-direction: column; }
  .contact-left {
    padding: 60px 24px;
    border-right: none;
    border-bottom: 1px solid var(--border-dark);
  }
  .contact-right { width: 100%; padding: 48px 24px; }

  /* FOOTER */
  footer { flex-direction: column; gap: 20px; padding: 40px 24px; text-align: center; }
  .footer-links { justify-content: center; flex-wrap: wrap; gap: 20px; }
}

@media (max-width: 480px) {
  .process-steps { grid-template-columns: 1fr; }
  .process-step { border-right: none; border-bottom: 1px solid var(--border-dark); }
  .process-step:last-child { border-bottom: none; }
  .hero-right { flex-direction: column; flex-wrap: nowrap; }
  .stat-block {
    flex: 1 1 auto; width: 100%;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .stat-block:nth-child(2) { border-right: none; }
  .stat-block:last-child { border-bottom: none; }
}


/* ════════════════════════════════════════════════
   11. PAGES LÉGALES (mentions-légales, politique-confidentialité)
   ════════════════════════════════════════════════ */
.legal-page {
  max-width: 880px;
  margin: 0 auto;
  padding: 152px var(--space-11) var(--space-13);
}
.legal-header {
  padding-bottom: var(--space-9);
  border-bottom: 1px solid var(--border);
  margin-bottom: var(--space-9);
}
.legal-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: var(--t-label); font-weight: 700;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--terra); margin-bottom: var(--space-5);
}
.legal-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 900; text-transform: uppercase;
  line-height: 1; letter-spacing: -0.025em;
  color: var(--white);
  margin-bottom: var(--space-5);
}
.legal-meta {
  font-size: var(--t-label); font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted);
}

.legal-body { color: rgba(255,255,255,0.78); }
.legal-section { margin-bottom: var(--space-11); }
.legal-section h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: var(--t-h3); font-weight: 800;
  color: var(--white);
  margin-bottom: var(--space-5);
  letter-spacing: -0.01em;
}
.legal-section p {
  font-size: var(--t-body);
  line-height: 1.75; font-weight: 300;
  margin-bottom: var(--space-4);
}
.legal-section p:last-child { margin-bottom: 0; }
.legal-section a {
  color: var(--terra);
  text-decoration: none;
  border-bottom: 1px solid rgba(227,74,28,0.4);
  transition: color var(--t-fast), border-color var(--t-fast);
}
.legal-section a:hover { color: var(--white); border-color: var(--white); }
.legal-section strong { color: var(--white); font-weight: 500; }

.legal-list {
  list-style: none;
  margin-bottom: var(--space-4);
}
.legal-list li {
  font-size: var(--t-body); line-height: 1.7; font-weight: 300;
  padding-left: var(--space-5); position: relative;
  margin-bottom: 10px;
}
.legal-list li::before {
  content: '—'; position: absolute; left: 0;
  color: var(--terra); font-weight: 700;
}

.legal-dl {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 12px 32px;
}
.legal-dl dt {
  font-family: 'Montserrat', sans-serif;
  font-size: var(--t-micro); font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); padding-top: 4px;
}
.legal-dl dd {
  font-size: var(--t-body); font-weight: 300;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
}
.legal-dl dd a {
  color: var(--terra);
  text-decoration: none;
  border-bottom: 1px solid rgba(227,74,28,0.4);
}

.legal-back {
  padding-top: var(--space-8);
  border-top: 1px solid var(--border);
}
.legal-back a {
  font-family: 'Montserrat', sans-serif;
  font-size: var(--t-label); font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); text-decoration: none;
  transition: color var(--t-fast);
}
.legal-back a:hover { color: var(--white); }

@media (max-width: 768px) {
  .legal-page { padding: 112px 24px 80px; }
  .legal-dl { grid-template-columns: 1fr; gap: 4px 0; }
  .legal-dl dt { padding-top: 16px; }
  .legal-dl dt:first-child { padding-top: 0; }
}
