:root {
  --noir: #1A1208;
  --terracotta: #C46B2D;
  --sable: #F5EDE0;
  --bleu-nuit: #1C2B40;
  --ivoire: #F9F6F0;
  --taupe: #6A5A48;
  --blanc: #FFFFFF;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Inter", system-ui, sans-serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-lg: 6px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--ivoire);
  font-family: var(--font-sans);
  font-weight: 500;
  color: var(--noir);
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ─────────────────────────────────────────────── */
#nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--ivoire);
  border-bottom: 0.5px solid rgba(26, 18, 8, 0.08);
  transition: box-shadow 300ms var(--ease);
}

#nav.scrolled {
  box-shadow: 0 2px 20px rgba(26, 18, 8, 0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 60px;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-img {
  height: 36px;
  width: auto;
  display: block;
  /* Efface le fond blanc du PNG sur la nav ivoire */
  mix-blend-mode: multiply;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 15px;
  color: var(--taupe);
  text-decoration: none;
  transition: color 200ms var(--ease);
}

.nav-links a:hover {
  color: var(--noir);
}

.nav-cta {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  font-size: 14px;
  background: var(--terracotta);
  color: var(--sable);
  padding: 9px 20px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 200ms var(--ease);
}

.nav-cta:hover {
  opacity: 0.88;
}

.nav-mobile-actions {
  display: none;
  align-items: center;
  gap: 12px;
}

.nav-cta--mobile {
  padding: 7px 14px;
  font-size: 12px;
}

.nav-burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 28px;
  height: 28px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.nav-burger span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--noir);
  border-radius: 1px;
  transition: transform 300ms var(--ease), opacity 300ms var(--ease);
}

.nav-burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(5.5px) rotate(45deg);
}
.nav-burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-5.5px) rotate(-45deg);
}

.nav-accent-bar {
  height: 3px;
  background: var(--terracotta);
  position: sticky;
  top: 60px;
  z-index: 99;
}

/* ── MENU OVERLAY MOBILE ──────────────────────────────── */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--noir);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 350ms var(--ease);
}

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

.nav-overlay-close {
  position: absolute;
  top: 20px;
  right: 28px;
  background: none;
  border: none;
  color: var(--sable);
  font-size: 22px;
  cursor: pointer;
  line-height: 1;
}

.nav-overlay-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.nav-overlay-links a {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(28px, 7vw, 40px);
  color: var(--sable);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 200ms var(--ease);
}

.nav-overlay-links a:hover {
  color: var(--terracotta);
}

.nav-overlay-cta {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  font-size: 16px;
  background: var(--terracotta);
  color: var(--sable);
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  text-decoration: none;
}

@media (max-width: 768px) {
  .nav-links,
  .nav-cta--desktop {
    display: none;
  }

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

/* ── HERO ─────────────────────────────────────────────── */
#hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 63px);
}

.hero-content {
  background: var(--noir);
  padding: 80px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}

.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(36px, 5vw, 58px);
  color: var(--sable);
  line-height: 1.12;
  margin-bottom: 24px;
}

.hero-title em {
  font-style: italic;
  color: var(--terracotta);
}

.hero-subtitle {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 17px;
  color: var(--taupe);
  line-height: 1.75;
  max-width: 340px;
  margin-bottom: 36px;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 36px;
}

.hero-cta-primary {
  display: block;
  background: var(--terracotta);
  color: var(--sable);
  padding: 16px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: opacity 200ms var(--ease);
}

.hero-cta-primary:hover {
  opacity: 0.88;
}

.hero-cta-secondary {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 15px;
  color: var(--taupe);
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 200ms var(--ease);
}

.hero-cta-secondary:hover {
  color: var(--sable);
}

.hero-trust {
  border-top: 0.5px solid rgba(245, 237, 224, 0.07);
  padding-top: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-trust-dot {
  flex-shrink: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--terracotta);
}

.hero-trust-text {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  color: rgba(245, 237, 224, 0.45);
}

.hero-visual {
  position: relative;
  background: #2C2015;
  overflow: hidden;
}

.hero-photo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.hero-visual-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 18, 8, 0.2);
  pointer-events: none;
}

.hero-badge {
  position: absolute;
  bottom: 28px;
  left: 28px;
  background: rgba(26, 18, 8, 0.85);
  border: 0.5px solid rgba(245, 237, 224, 0.12);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  gap: 4px;
  backdrop-filter: blur(4px);
}

.hero-badge-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--taupe);
}

.hero-badge-name {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 15px;
  color: var(--sable);
}

@media (max-width: 768px) {
  #hero {
    grid-template-columns: 1fr;
    grid-template-rows: 260px auto;
    min-height: unset;
  }

  .hero-visual {
    order: -1;
    height: 260px;
  }

  .hero-content {
    padding: 36px 24px;
  }
}

/* ── STATS ────────────────────────────────────────────── */
#stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--sable);
  border-top: 0.5px solid rgba(26, 18, 8, 0.1);
}

.stats-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px 16px;
  position: relative;
}

.stats-cell + .stats-cell::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20%;
  height: 60%;
  width: 0.5px;
  background: rgba(26, 18, 8, 0.08);
}

.stats-number {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  font-size: 34px;
  color: var(--noir);
}

.stats-label {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-top: 4px;
}

@media (max-width: 768px) {
  #stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-cell + .stats-cell::before {
    display: none;
  }

  .stats-cell:nth-child(2n)::before,
  .stats-cell:nth-child(2n + 1):not(:first-child)::before {
    display: none;
  }

  .stats-cell {
    padding: 20px 16px;
    position: relative;
  }

  .stats-cell:nth-child(odd) {
    border-right: 0.5px solid rgba(26, 18, 8, 0.08);
  }

  .stats-cell:nth-child(1),
  .stats-cell:nth-child(2) {
    border-bottom: 0.5px solid rgba(26, 18, 8, 0.08);
  }
}

/* ── PREUVE ───────────────────────────────────────────── */
.preuve-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  background: var(--ivoire);
  padding: 72px 52px;
  border-bottom: 0.5px solid rgba(26, 18, 8, 0.08);
}

.preuve-eyebrow {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 16px;
}

.preuve-h2 {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(32px, 4vw, 46px);
  color: var(--noir);
  line-height: 1.15;
}

.preuve-h2 em {
  color: var(--terracotta);
  font-style: italic;
}

.preuve-intro-right {
  display: flex;
  align-items: center;
}

.preuve-body {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  color: var(--taupe);
  line-height: 1.8;
}

/* Bande hôtels */
.preuve-hotels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--noir);
}

.hotel-card {
  position: relative;
  height: 240px;
  overflow: hidden;
  cursor: pointer;
}

.hotel-card + .hotel-card {
  border-left: 0.5px solid rgba(245, 237, 224, 0.07);
}

.hotel-photo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.hotel-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 18, 8, 0.5);
  transition: background 500ms var(--ease);
  pointer-events: none;
}

.hotel-card:hover .hotel-overlay {
  background: rgba(26, 18, 8, 0.3);
}

.hotel-badge {
  position: absolute;
  bottom: 18px;
  left: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hotel-badge-dot {
  flex-shrink: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--terracotta);
}

.hotel-badge-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.hotel-badge-name {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  font-size: 16px;
  color: var(--sable);
  line-height: 1;
}

.hotel-badge-loc {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--taupe);
}

@media (max-width: 768px) {
  .preuve-intro {
    grid-template-columns: 1fr;
    padding: 48px 24px;
    gap: 24px;
  }

  .preuve-hotels {
    grid-template-columns: 1fr;
  }

  .hotel-card {
    height: 180px;
    border-left: none;
    border-top: 0.5px solid rgba(245, 237, 224, 0.07);
  }

  .hotel-card + .hotel-card {
    border-left: none;
  }
}

/* ── VERBATIM + PROOF POINTS ──────────────────────────── */
.preuve-verbatim {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  background: var(--ivoire);
  padding: 64px 52px;
  border-bottom: 0.5px solid rgba(26, 18, 8, 0.1);
}

.verbatim-card {
  background: var(--blanc);
  border-left: 2px solid var(--terracotta);
  border-top: 0.5px solid rgba(26, 18, 8, 0.08);
  border-right: 0.5px solid rgba(26, 18, 8, 0.08);
  border-bottom: 0.5px solid rgba(26, 18, 8, 0.08);
  border-radius: var(--radius-sm);
  padding: 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.verbatim-quote {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 600;
  color: var(--terracotta);
  line-height: 1;
  display: block;
  margin-bottom: -8px;
}

.verbatim-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 15px;
  color: var(--noir);
  line-height: 1.75;
  flex: 1;
}

.verbatim-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 0.5px solid rgba(26, 18, 8, 0.06);
}

.verbatim-avatar {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #E8DFD0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  color: var(--taupe);
  letter-spacing: 0.05em;
}

.verbatim-author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.verbatim-name {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  color: var(--noir);
}

.verbatim-role {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 11px;
  color: var(--taupe);
}

.proof-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
}

.proof-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  background: var(--blanc);
  border: 0.5px solid rgba(26, 18, 8, 0.07);
  border-radius: var(--radius-sm);
  padding: 16px;
}

.proof-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: var(--sable);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.proof-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.proof-title {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  font-size: 13px;
  color: var(--noir);
  line-height: 1.2;
}

.proof-desc {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  color: var(--taupe);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .preuve-verbatim {
    grid-template-columns: 1fr;
    padding: 40px 24px;
    gap: 24px;
  }
}

/* ── OFFRES ───────────────────────────────────────────── */

/* Intro */
.offres-intro {
  background: var(--ivoire);
  text-align: center;
  padding: 72px 52px 52px;
}

.offres-eyebrow {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 16px;
}

.offres-h2 {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(28px, 4vw, 40px);
  color: var(--noir);
  line-height: 1.15;
  margin-bottom: 16px;
}

.offres-h2 em {
  color: var(--terracotta);
  font-style: italic;
}

.offres-subtitle {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--taupe);
  margin-bottom: 36px;
}

/* Bande étapes */
.offres-steps {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  background: var(--blanc);
  border-top: 0.5px solid rgba(26, 18, 8, 0.1);
  border-bottom: 0.5px solid rgba(26, 18, 8, 0.1);
  padding: 14px 32px;
  border-radius: var(--radius-sm);
}

.offres-step {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  color: var(--noir);
}

.offres-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--terracotta);
  color: var(--blanc);
  font-size: 10px;
  font-weight: 600;
  flex-shrink: 0;
}

.offres-step-sep {
  font-size: 16px;
  color: var(--taupe);
  font-weight: 400;
  line-height: 1;
}

/* Grille */
.offres-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 48px 40px;
  background: var(--ivoire);
}

/* Carte */
.offre-card {
  background: var(--blanc);
  border: 0.5px solid rgba(26, 18, 8, 0.12);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.offre-card--featured {
  border: 1.5px solid var(--terracotta);
}

/* Top de carte */
.offre-card-top {
  padding: 28px 24px 24px;
}

.offre-card-top--light {
  background: var(--blanc);
}

.offre-card-top--sable {
  background: var(--sable);
}

.offre-card-top--noir {
  background: var(--noir);
}

/* Badge */
.offre-badge {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
}

.offre-badge--outline {
  border: 0.5px solid var(--taupe);
  color: var(--taupe);
}

.offre-badge--terracotta {
  background: var(--terracotta);
  color: var(--blanc);
}

.offre-badge--noir {
  background: var(--noir);
  color: var(--sable);
}

/* Nom */
.offre-nom {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  font-size: 26px;
  color: var(--noir);
  line-height: 1.1;
  margin-bottom: 8px;
}

.offre-nom--sable {
  color: var(--sable);
}

/* Description */
.offre-desc {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  color: var(--taupe);
  line-height: 1.6;
  margin-bottom: 20px;
}

.offre-desc--sable {
  color: rgba(245, 237, 224, 0.65);
}

/* Prix */
.offre-prix {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.offre-prix-label {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--taupe);
}

.offre-prix--sable .offre-prix-label {
  color: rgba(245, 237, 224, 0.5);
}

.offre-prix-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.offre-prix-montant {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  font-size: 26px;
  color: var(--noir);
  line-height: 1;
}

.offre-prix--sable .offre-prix-montant {
  color: var(--sable);
}

.offre-prix-unite {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 12px;
  color: var(--terracotta);
}

/* Corps de carte */
.offre-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
  border-top: 0.5px solid rgba(26, 18, 8, 0.07);
}

/* Liste */
.offre-liste {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.offre-liste li {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  color: var(--taupe);
  line-height: 1.4;
  padding-left: 14px;
  position: relative;
}

.offre-liste li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #D3C7B8;
}

.offre-liste--accent {
  color: var(--terracotta) !important;
}

.offre-liste--accent::before {
  background: var(--terracotta) !important;
}

/* Format pills */
.offre-formats {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.offre-format-label {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--taupe);
}

.offre-format-pills {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.offre-pill {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: left;
  border: 0.5px solid rgba(26, 18, 8, 0.15);
  background: transparent;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 150ms var(--ease);
  flex: 1;
}

.offre-pill--active {
  border-color: var(--terracotta);
  background: rgba(196, 107, 45, 0.06);
}

.offre-pill-size {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  color: var(--noir);
  display: block;
}

.offre-pill--active .offre-pill-size {
  color: var(--terracotta);
}

.offre-pill-type {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  color: var(--taupe);
  display: block;
}

.offre-pill-price {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 12px;
  font-weight: 600;
  color: var(--noir);
  display: block;
  margin-top: 2px;
}

.offre-pill--active .offre-pill-price {
  color: var(--terracotta);
}

/* CTAs */
.offre-cta {
  display: block;
  text-align: center;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  font-size: 14px;
  padding: 13px 20px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: opacity 200ms var(--ease);
  margin-top: auto;
}

.offre-cta:hover {
  opacity: 0.85;
}

.offre-cta--outline {
  border: 0.5px solid var(--noir);
  color: var(--noir);
  background: transparent;
}

.offre-cta--terracotta {
  background: var(--terracotta);
  color: var(--sable);
  border: none;
}

.offre-cta--noir {
  background: var(--noir);
  color: var(--sable);
  border: none;
}

/* Note */
.offre-note {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 500;
  color: var(--taupe);
  text-align: center;
  letter-spacing: 0.04em;
}

/* Note éditoriale */
.offres-edito {
  background: var(--blanc);
  border-top: 0.5px solid rgba(26, 18, 8, 0.1);
  border-bottom: 0.5px solid rgba(26, 18, 8, 0.1);
  padding: 24px 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.offres-edito-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 13px;
  color: var(--taupe);
  line-height: 1.7;
  max-width: 480px;
}

.offres-edito-link {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  color: var(--terracotta);
  text-decoration: underline;
  text-underline-offset: 4px;
  white-space: nowrap;
  transition: opacity 200ms var(--ease);
}

.offres-edito-link:hover {
  opacity: 0.75;
}

/* Mobile */
@media (max-width: 768px) {
  .offres-intro {
    padding: 48px 24px 32px;
  }

  .offres-steps {
    flex-direction: column;
    gap: 12px;
    padding: 16px 20px;
    text-align: left;
    align-items: flex-start;
  }

  .offres-step-sep {
    transform: rotate(90deg);
    display: inline-block;
  }

  .offres-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 24px 20px;
  }

  .offres-edito {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    gap: 16px;
  }
}

/* ── BROCHURE TÉLÉCHARGEMENT ──────────────────────────── */

.brochure-section {
  background: var(--noir);
  padding: 80px var(--pad-x);
}

.brochure-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 56px 64px;
  display: flex;
  align-items: center;
  gap: 48px;
  background: rgba(245, 237, 224, 0.04);
  border: 0.5px solid rgba(245, 237, 224, 0.1);
  border-radius: 4px;
}

.brochure-icon {
  flex-shrink: 0;
}

.brochure-text {
  flex: 1;
}

.brochure-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin: 0 0 10px;
}

.brochure-title {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  font-weight: 600;
  color: var(--creme);
  margin: 0 0 10px;
  line-height: 1.25;
}

.brochure-desc {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(245, 237, 224, 0.62);
  margin: 0;
  max-width: 520px;
  line-height: 1.65;
}

.brochure-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: var(--terracotta);
  color: var(--blanc);
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-radius: 2px;
  white-space: nowrap;
  transition: background 220ms var(--ease), transform 220ms var(--ease);
}

.brochure-btn:hover {
  background: #b05e26;
  transform: translateY(-2px);
}

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

@media (max-width: 768px) {
  .brochure-section {
    padding: 48px var(--pad-x);
  }

  .brochure-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
    padding: 36px 28px;
  }

  .brochure-btn {
    width: 100%;
    justify-content: center;
    padding: 18px 24px;
  }
}

/* ── PROCESSUS ────────────────────────────────────────── */

/* Intro */
.processus-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  background: var(--ivoire);
  padding: 72px 52px 56px;
}

.processus-eyebrow {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 16px;
}

.processus-h2 {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(28px, 4vw, 40px);
  color: var(--noir);
  line-height: 1.15;
}

.processus-h2 em {
  color: var(--terracotta);
  font-style: italic;
}

.processus-intro-right {
  display: flex;
  align-items: center;
}

.processus-quote {
  border-left: 2px solid var(--terracotta);
  padding-left: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.processus-quote-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 17px;
  color: var(--noir);
  line-height: 1.5;
}

.processus-quote-body {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--taupe);
  line-height: 1.75;
}

/* Timeline desktop */
.processus-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--ivoire);
  padding: 0 52px 56px;
}

/* Ligne horizontale */
.processus-line {
  position: absolute;
  top: 22px; /* aligné sur le centre des dots */
  left: calc(52px + 12.5%);
  right: calc(52px + 12.5%);
  height: 0.5px;
  background: rgba(196, 107, 45, 0.25);
  pointer-events: none;
}

.processus-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 0;
}

.processus-dot-wrap {
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.processus-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--terracotta);
  background: var(--ivoire);
  display: flex;
  align-items: center;
  justify-content: center;
}

.processus-dot span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--terracotta);
  display: block;
}

.processus-step-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.processus-num {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
}

.processus-step-nom {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  font-size: 20px;
  color: var(--noir);
  line-height: 1.1;
}

.processus-step-desc {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  color: var(--taupe);
  line-height: 1.6;
  max-width: 160px;
}

/* Détail 4 colonnes */
.processus-detail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--ivoire);
  border-top: 0.5px solid rgba(26, 18, 8, 0.08);
  border-bottom: 0.5px solid rgba(26, 18, 8, 0.08);
}

.processus-detail-col {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}

.processus-detail-col + .processus-detail-col::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20%;
  height: 60%;
  width: 0.5px;
  background: rgba(26, 18, 8, 0.08);
}

.processus-detail-icon {
  width: 36px;
  height: 36px;
  background: #F0E8DC;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.processus-detail-titre {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  font-size: 14px;
  color: var(--noir);
  line-height: 1.2;
}

.processus-detail-liste {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.processus-detail-liste li {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  color: var(--taupe);
  line-height: 1.5;
  padding-left: 12px;
  position: relative;
}

.processus-detail-liste li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #D3C7B8;
}

/* Bande durées */
.processus-durees {
  background: var(--blanc);
  border-top: 0.5px solid rgba(26, 18, 8, 0.1);
  border-bottom: 0.5px solid rgba(26, 18, 8, 0.1);
  padding: 28px 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.processus-durees-metrics {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
}

.processus-duree-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 32px;
  flex: 1;
}

.processus-duree-item:first-child {
  padding-left: 0;
}

.processus-duree-chiffre {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  font-size: 22px;
  color: var(--noir);
  line-height: 1;
}

.processus-duree-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--taupe);
}

.processus-duree-sep {
  width: 0.5px;
  height: 36px;
  background: rgba(26, 18, 8, 0.1);
  flex-shrink: 0;
}

.processus-durees-note {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 13px;
  color: var(--taupe);
  line-height: 1.65;
  max-width: 280px;
  text-align: right;
}

.processus-durees-note strong {
  font-weight: 600;
  color: var(--noir);
}

/* Mobile */
@media (max-width: 768px) {
  .processus-intro {
    grid-template-columns: 1fr;
    padding: 48px 24px;
    gap: 28px;
  }

  /* Timeline mobile : liste verticale */
  .processus-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0 24px 48px;
  }

  .processus-line {
    display: none;
  }

  .processus-step {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 16px;
    padding: 0 0 32px 0;
    position: relative;
  }

  /* Fil conducteur vertical */
  .processus-step:not(:last-child) .processus-dot-wrap::after {
    content: "";
    position: absolute;
    left: 10px;
    top: 22px;
    width: 0.5px;
    height: calc(100% + 10px);
    background: rgba(196, 107, 45, 0.2);
  }

  .processus-dot-wrap {
    flex-shrink: 0;
    margin-bottom: 0;
    position: relative;
  }

  .processus-step-content {
    align-items: flex-start;
  }

  .processus-step-desc {
    max-width: 100%;
  }

  .processus-detail {
    grid-template-columns: 1fr;
  }

  .processus-detail-col + .processus-detail-col::before {
    top: 0;
    left: 20%;
    width: 60%;
    height: 0.5px;
  }

  .processus-durees {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    gap: 24px;
  }

  .processus-durees-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    width: 100%;
  }

  .processus-duree-item {
    padding: 0;
  }

  .processus-duree-sep {
    display: none;
  }

  .processus-durees-note {
    text-align: left;
    max-width: 100%;
  }
}

/* ── FORMULAIRE ───────────────────────────────────────── */
#formulaire {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--noir);
}

/* Colonne gauche */
.form-editorial {
  padding: 64px 52px;
  border-right: 0.5px solid rgba(245, 237, 224, 0.07);
  display: flex;
  flex-direction: column;
  gap: 0;
}

.form-eyebrow {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 16px;
}

.form-h2 {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(24px, 4vw, 38px);
  color: var(--sable);
  line-height: 1.15;
  margin-bottom: 20px;
}

.form-h2 em {
  color: var(--terracotta);
  font-style: italic;
}

.form-intro {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 14px;
  color: rgba(245, 237, 224, 0.5);
  line-height: 1.8;
  margin-bottom: 36px;
}

/* Promesses */
.form-promesses {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}

.form-promesse {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
}

.form-promesse-dot {
  flex-shrink: 0;
  margin-top: 5px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid rgba(196, 107, 45, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-promesse-dot::after {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--terracotta);
  display: block;
}

.form-promesse-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 13px;
  color: rgba(245, 237, 224, 0.45);
  line-height: 1.6;
}

.form-promesse-text strong {
  font-style: normal;
  font-weight: 600;
  color: var(--sable);
}

/* Contacts */
.form-contacts {
  border-top: 0.5px solid rgba(245, 237, 224, 0.07);
  padding-top: 28px;
}

.form-contacts-label {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245, 237, 224, 0.3);
  margin-bottom: 14px;
}

.form-contacts-row {
  display: flex;
  gap: 32px;
}

.form-contact {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.form-contact-nom {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 13px;
  color: var(--sable);
}

.form-contact-tel {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--terracotta);
  text-decoration: none;
  transition: opacity 200ms var(--ease);
}

.form-contact-tel:hover {
  opacity: 0.75;
}

/* Colonne droite */
.form-side {
  background: #211808;
  padding: 52px 48px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Indicateur live */
.form-status {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
}

.form-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4A8A4A;
  animation: pulse-green 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulse-green {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.55; transform: scale(0.85); }
}

.form-status-text {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #5A7A5A;
}

.form-side-eyebrow {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 10px;
}

.form-side-title {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  font-size: 20px;
  color: var(--sable);
  line-height: 1.3;
  margin-bottom: 32px;
}

/* Formulaire */
.form-main {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-label {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245, 237, 224, 0.4);
}

.form-input {
  width: 100%;
  min-height: 48px;
  background: rgba(245, 237, 224, 0.05);
  border: 0.5px solid rgba(245, 237, 224, 0.12);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 13px;
  color: var(--sable);
  transition: border-color 200ms var(--ease);
}

.form-input::placeholder {
  color: rgba(245, 237, 224, 0.25);
}

.form-input:focus {
  outline: none;
  border-color: rgba(196, 107, 45, 0.5);
}

/* Sélecteur d'offre */
.form-offre-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-offre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.form-offre-pill {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 11px;
  color: rgba(245, 237, 224, 0.4);
  background: transparent;
  border: 0.5px solid rgba(245, 237, 224, 0.1);
  border-radius: var(--radius-sm);
  padding: 10px 8px;
  text-align: center;
  cursor: pointer;
  transition: all 180ms var(--ease);
}

.form-offre-pill:hover {
  border-color: rgba(245, 237, 224, 0.25);
  color: rgba(245, 237, 224, 0.65);
}

.form-offre-pill--active {
  border-color: var(--terracotta);
  color: var(--sable);
  background: rgba(196, 107, 45, 0.1);
}

/* Submit */
.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--terracotta);
  color: var(--sable);
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: opacity 200ms var(--ease);
  margin-top: 4px;
}

.form-submit:hover {
  opacity: 0.9;
}

.form-honeypot {
  display: none;
}

.form-submit-note {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 500;
  color: rgba(245, 237, 224, 0.25);
  text-align: center;
  margin-top: 10px;
  letter-spacing: 0.06em;
}

/* Mobile */
@media (max-width: 768px) {
  #formulaire {
    grid-template-columns: 1fr;
  }

  .form-editorial {
    padding: 40px 24px;
    border-right: none;
    border-bottom: 0.5px solid rgba(245, 237, 224, 0.07);
  }

  .form-side {
    padding: 36px 24px;
  }
}

/* ── FOOTER ───────────────────────────────────────────── */
#footer {
  background: var(--noir);
  border-top: 0.5px solid rgba(245, 237, 224, 0.07);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-logo-img {
  height: 30px;
  width: auto;
  display: block;
  /* invert(1) : logo noir → blanc sur noir
     screen    : fond noir (après invert) s'efface sur le fond sombre du footer */
  filter: invert(1);
  mix-blend-mode: screen;
  opacity: 0.88;
}

.footer-copy {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  color: rgba(245, 237, 224, 0.3);
}

.footer-cta {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  font-size: 12px;
  color: var(--terracotta);
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: opacity 200ms var(--ease);
}

.footer-cta:hover {
  opacity: 0.75;
}

@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 24px;
  }
  /* Ajoute de l'espace pour le sticky CTA */
  #footer {
    padding-bottom: calc(64px + env(safe-area-inset-bottom));
  }
}

/* ── STICKY CTA MOBILE ────────────────────────────────── */
.sticky-rdv {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  padding: 12px 20px;
  padding-bottom: calc(12px + env(safe-area-inset-bottom));
  background: var(--noir);
  border-top: 0.5px solid rgba(245, 237, 224, 0.1);
  transform: translateY(0);
  transition: transform 300ms var(--ease);
}

.sticky-rdv.hidden {
  transform: translateY(110%);
}

.sticky-rdv-btn {
  display: block;
  text-align: center;
  background: var(--terracotta);
  color: var(--sable);
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  font-size: 14px;
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: opacity 200ms var(--ease);
}

.sticky-rdv-btn:hover {
  opacity: 0.9;
}

@media (max-width: 768px) {
  .sticky-rdv {
    display: block;
  }
}

/* ── Scroll-reveal */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms ease-out, transform 600ms ease-out;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
