/* ═══════════════════════════════════════════════════════════════
   FORMCRAFT — Design System
   Atelier digital suisse
═══════════════════════════════════════════════════════════════ */

/* ─── TOKENS ─────────────────────────────────────────────────── */
:root {
  --bg:       #FDFCF9;
  --ink:      #0E1726;
  --accent:   #6E1A2C;
  --gold:     #B58B3F;
  --surface:  #F1E9DC;
  --muted:    #7A8295;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-silk: cubic-bezier(0.25, 0.46, 0.45, 0.94);

  --header-h: 80px;
  --container: 1200px;
  --radius-pill: 9999px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.7;
  overflow-x: hidden;
  padding-bottom: 100px;
}

body.menu-open,
body.concierge-open,
body.config-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

ul { list-style: none; }

address { font-style: normal; }

button {
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
  color: inherit;
}

img, video {
  display: block;
  max-width: 100%;
}

/* ─── UTILITIES ──────────────────────────────────────────────── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 5rem);
}

/* ─── TYPOGRAPHIE ────────────────────────────────────────────── */
.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}

.eyebrow--light {
  color: rgba(253, 252, 249, 0.6);
}

.eyebrow--gold {
  color: var(--gold);
}

.gold-divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 2rem auto;
  transition: width 1.2s var(--ease-out);
}

.gold-divider.animated {
  width: 240px;
}

/* ─── BOUTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.3s var(--ease-out);
  cursor: pointer;
  text-decoration: none;
}

.btn--accent {
  background: var(--accent);
  color: #fff;
  border: 1px solid var(--accent);
}

.btn--accent:hover {
  background: #5a1524;
  border-color: #5a1524;
  transform: translateY(-1px);
  box-shadow: 0 8px 30px rgba(110, 26, 44, 0.25);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}

.btn--ghost:hover {
  background: rgba(14, 23, 38, 0.04);
}

.btn--ghost-light {
  background: transparent;
  color: rgba(253, 252, 249, 0.7);
  border: 1px solid rgba(253, 252, 249, 0.3);
}

.btn--ghost-light:hover {
  color: #fff;
  border-color: rgba(253, 252, 249, 0.6);
}

.link-btn {
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
  color: inherit;
  padding: 0;
  text-align: left;
}

/* ─── REVEAL ANIMATIONS ──────────────────────────────────────── */
.reveal-section {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.9s var(--ease-out),
    transform 0.9s var(--ease-out);
}

.reveal-section.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════════
   HEADER
═══════════════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  transition: background 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.site-header.scrolled {
  background: rgba(253, 252, 249, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(181, 139, 63, 0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
}

.header-menu {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #fff;
  transition: color 0.3s;
}

.site-header.scrolled .header-menu {
  color: var(--ink);
}

.hamburger {
  display: block;
  width: 22px;
  height: 1px;
  background: currentColor;
  position: relative;
  transition: background 0.2s;
}

.hamburger::before,
.hamburger::after {
  content: '';
  display: block;
  width: 22px;
  height: 1px;
  background: currentColor;
  position: absolute;
  left: 0;
  transition: transform 0.3s var(--ease-out);
}

.hamburger::before { top: -6px; }
.hamburger::after  { bottom: -6px; }

.header-label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 400;
}

.header-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  transition: color 0.3s;
  text-decoration: none;
}

.site-header.scrolled .header-logo {
  color: var(--ink);
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1;
}

.logo-mark {
  color: var(--gold);
  font-size: 0.6rem;
  opacity: 0;
  transition: opacity 0.3s;
}

.site-header.scrolled .logo-mark {
  opacity: 1;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.header-action {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: #fff;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.3s;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
}

.site-header.scrolled .header-action {
  color: var(--ink);
}

.header-action:hover {
  color: var(--gold) !important;
}

/* ─── NAV OVERLAY ────────────────────────────────────────────── */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 8vw, 6rem);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s var(--ease-out);
}

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

.nav-close {
  position: absolute;
  top: 2rem;
  right: clamp(1.5rem, 5vw, 4rem);
  color: rgba(253, 252, 249, 0.5);
  transition: color 0.2s;
}

.nav-close:hover {
  color: #fff;
}

.nav-main ul {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.nav-main a {
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  color: rgba(253, 252, 249, 0.5);
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(181, 139, 63, 0.1);
  transition: color 0.3s;
  text-decoration: none;
}

.nav-main a:hover {
  color: #fff;
}

.nav-num {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  width: 2.5rem;
  flex-shrink: 0;
}

.nav-footer {
  margin-top: auto;
  padding-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.8125rem;
  color: rgba(253, 252, 249, 0.35);
  letter-spacing: 0.06em;
}

.nav-footer a {
  color: rgba(253, 252, 249, 0.35);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-footer a:hover {
  color: var(--gold);
}

/* ═══════════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--surface);
}

/* Grain paper texture */
.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  pointer-events: none;
}

/* Subtle bordeaux gradient at bottom */
.hero-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(180deg, transparent 0%, rgba(110, 26, 44, 0.055) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 1.5rem;
}

.hero-eyebrow {
  color: rgba(110, 26, 44, 0.45);
  margin-bottom: 2.5rem;
  letter-spacing: 0.28em;
  animation: fadeInDown 1s var(--ease-out) 0.3s both;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 10vw, 9rem);
  font-weight: 500;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  gap: 0.05em;
}

.hero-line {
  overflow: hidden;
  display: block;
}

.letter-wrap {
  display: inline-block;
  animation: slideUp 1s var(--ease-out) both;
}

.hero-line:nth-child(1) .letter-wrap { animation-delay: 0.15s; }
.hero-line:nth-child(2) .letter-wrap { animation-delay: 0.3s;  }
.hero-line:nth-child(3) .letter-wrap { animation-delay: 0.45s; }

.hero-dot {
  color: var(--accent);
}

.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(0.875rem, 2vw, 1.05rem);
  color: var(--muted);
  letter-spacing: 0.06em;
  margin-top: 1.75rem;
  text-align: center;
  animation: fadeInUp 1s var(--ease-out) 1.2s both;
}

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

.hero-line-gold {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 2.5rem auto 0;
  animation: expandGold 1.4s var(--ease-out) 0.9s both;
}

@keyframes slideUp {
  from {
    transform: translateY(105%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes expandGold {
  from { width: 60px; opacity: 0; }
  to   { width: 240px; opacity: 1; }
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  animation: fadeInDown 1s var(--ease-out) 1.2s both;
  opacity: 0;
}

.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 0.6; }
  50%       { transform: scaleY(0.6); opacity: 1; }
}

/* ═══════════════════════════════════════════════════════════════
   MANIFESTE
═══════════════════════════════════════════════════════════════ */
.manifeste {
  background: var(--bg);
  padding: clamp(5rem, 12vw, 10rem) 0;
  position: relative;
}

/* Grain on manifeste */
.manifeste::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  pointer-events: none;
}

.manifeste-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.manifeste-emblem {
  width: 80px;
  height: 80px;
  margin: 0 auto 2.5rem;
}

.manifeste-title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 400;
  line-height: 1.4;
  color: var(--ink);
  font-style: italic;
}

.manifeste-body {
  max-width: 60ch;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}

/* ═══════════════════════════════════════════════════════════════
   DOMAINES
═══════════════════════════════════════════════════════════════ */
.domaines {
  background: var(--bg);
  border-top: 1px solid rgba(181, 139, 63, 0.2);
}

.domaines-header {
  padding: clamp(3rem, 6vw, 5rem) 0 0;
}

.domaine-bloc {
  position: relative;
  padding: clamp(3.5rem, 8vw, 6.5rem) 0;
  display: grid;
  grid-template-columns: 1fr;
}

.domaine-bloc > .container {
  width: 100%;
}

/* We need a custom layout for domaine-bloc */
.domaine-bloc {
  padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 5vw, 5rem);
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 0 4rem;
  align-items: start;
  position: relative;
}

.domaine-num {
  font-family: var(--font-serif);
  font-size: clamp(6rem, 14vw, 13rem);
  font-weight: 300;
  line-height: 0.85;
  color: var(--accent);
  opacity: 0.1;
  transition: opacity 0.6s var(--ease-out), transform 0.9s var(--ease-out);
  transform: translateX(-30px);
  user-select: none;
}

.domaine-bloc.revealed .domaine-num {
  opacity: 0.12;
  transform: translateX(0);
}

.domaine-content {
  padding-top: 1rem;
}

.domaine-content .eyebrow {
  margin-bottom: 1.25rem;
}

.domaine-title {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 1.5rem;
}

.domaine-body {
  max-width: 58ch;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.domaine-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(110, 26, 44, 0.25);
  padding-bottom: 0.2rem;
  transition: gap 0.3s var(--ease-out), border-color 0.3s;
}

.domaine-link:hover {
  gap: 0.8rem;
  border-color: var(--accent);
}

.domaine-separator {
  grid-column: 1 / -1;
  height: 1px;
  background: rgba(181, 139, 63, 0.15);
  margin-top: clamp(4rem, 8vw, 7rem);
}

.domaine-separator:last-child {
  display: none;
}

/* ═══════════════════════════════════════════════════════════════
   SAVOIR-FAIRE
═══════════════════════════════════════════════════════════════ */
.savoirfaire {
  background: var(--surface);
  padding: clamp(5rem, 12vw, 10rem) 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(181, 139, 63, 0.15);
}

/* Grain on surface */
.savoirfaire::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  pointer-events: none;
}

/* Ghost initial F */
.sf-initial {
  position: absolute;
  left: -0.15em;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-serif);
  font-size: clamp(18rem, 38vw, 32rem);
  font-weight: 600;
  line-height: 1;
  color: var(--accent);
  opacity: 0.055;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.sf-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
  position: relative;
  z-index: 1;
}

.sf-left .eyebrow {
  margin-bottom: 1.5rem;
}

.sf-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 2rem;
}

.sf-body {
  max-width: 55ch;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

.sf-chiffres {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-top: 1rem;
}

.sf-chiffre {
  padding: 2rem 0;
  border-bottom: 1px solid rgba(181, 139, 63, 0.2);
}

.sf-chiffre:first-child {
  border-top: 1px solid rgba(181, 139, 63, 0.2);
}

.chiffre-val {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 300;
  line-height: 1;
  color: var(--accent);
  margin-bottom: 0.3rem;
}

.chiffre-label {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.25rem;
}

.chiffre-desc {
  font-size: 0.8125rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ═══════════════════════════════════════════════════════════════
   TÉMOIGNAGES
═══════════════════════════════════════════════════════════════ */
.temoignages {
  background: var(--bg);
  padding: clamp(5rem, 12vw, 10rem) 0 clamp(4rem, 8vw, 7rem);
  border-top: 1px solid rgba(181, 139, 63, 0.15);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.temoignage-stage {
  position: relative;
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 clamp(1.5rem, 8vw, 10rem);
}

.temoignage-item {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.8s var(--ease-out);
  pointer-events: none;
  padding: 0 clamp(1.5rem, 8vw, 10rem);
}

.temoignage-item.active {
  opacity: 1;
  pointer-events: all;
}

.temo-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3.5vw, 2.75rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.3;
  color: var(--ink);
  max-width: 800px;
  margin: 0 auto 2rem;
}

.temo-cite {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-style: normal;
}

.temo-name {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--ink);
}

.temo-role {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.temo-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
}

.temo-dot {
  width: 32px;
  height: 1px;
  background: rgba(14, 23, 38, 0.2);
  border: none;
  cursor: pointer;
  transition: background 0.3s, width 0.3s;
  padding: 6px 0;
  background-clip: content-box;
}

.temo-dot.active {
  background: var(--accent);
  width: 48px;
  background-clip: content-box;
}

/* ═══════════════════════════════════════════════════════════════
   SECTION RDV
═══════════════════════════════════════════════════════════════ */
.rdv {
  background: var(--ink);
  padding: clamp(5rem, 12vw, 10rem) 0;
  position: relative;
  overflow: hidden;
}

.rdv-ornament {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  pointer-events: none;
}

.rdv-ornament svg {
  width: 100%;
  height: 100%;
}

.rdv-inner {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}

.rdv-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  font-weight: 400;
  line-height: 1.1;
  color: #fff;
  margin: 1.25rem 0 1.5rem;
  letter-spacing: -0.01em;
}

.rdv-body {
  max-width: 52ch;
  margin: 0 auto 2.5rem;
  color: rgba(253, 252, 249, 0.55);
  font-size: 1rem;
  line-height: 1.8;
}

.rdv-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.rdv-link-secondary {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  color: rgba(253, 252, 249, 0.45);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}

.rdv-link-secondary:hover {
  color: rgba(253, 252, 249, 0.8);
}

.rdv-address {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  color: rgba(253, 252, 249, 0.3);
}

.rdv-address a {
  color: rgba(253, 252, 249, 0.3);
  text-decoration: none;
  transition: color 0.2s;
}

.rdv-address a:hover {
  color: var(--gold);
}

.rdv-sep {
  color: rgba(181, 139, 63, 0.4);
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--bg);
  padding: clamp(4rem, 8vw, 7rem) 0 120px;
  border-top: 1px solid rgba(181, 139, 63, 0.15);
}

/* Espace de sécurité sous le bouton Assistante Léa fixe
   (s'applique aux footers avec style inline sur les sous-pages) */
footer {
  padding-bottom: 120px !important;
}

.footer-gold-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin-bottom: clamp(4rem, 8vw, 7rem);
  opacity: 0.3;
}

.footer-col-tagline {
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: clamp(3rem, 6vw, 5rem);
  border-bottom: 1px solid rgba(14, 23, 38, 0.08);
}

.footer-col-title {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-col a,
.footer-col .link-btn,
.footer-col address p,
.footer-col address a {
  font-size: 0.9375rem;
  color: var(--ink);
  text-decoration: none;
  transition: color 0.2s;
  display: block;
}

.footer-col a:hover,
.footer-col .link-btn:hover,
.footer-col address a:hover {
  color: var(--accent);
}

.footer-col address {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-domain {
  color: var(--muted) !important;
  font-size: 0.8125rem !important;
}

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

.footer-legal {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.footer-bottom nav {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom nav a {
  font-size: 0.75rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bottom nav a:hover {
  color: var(--ink);
}

/* ═══════════════════════════════════════════════════════════════
   FORMULES STUDIO — CARTES
═══════════════════════════════════════════════════════════════ */
.formule-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 2.5rem;
}

.formule-card {
  background: var(--bg);
  border: 1px solid rgba(181,139,63,0.18);
  border-radius: 16px;
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-decoration: none;
  color: inherit;
  box-shadow:
    0 20px 60px rgba(110, 26, 44, 0.15),
    0 4px 16px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.formule-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 40px 80px rgba(110, 26, 44, 0.25),
    0 8px 24px rgba(0, 0, 0, 0.15);
}

.formule-card--featured {
  background: var(--surface);
  border: 1px solid rgba(201, 168, 110, 0.4);
  position: relative;
}

/* Badge POPULAIRE */
.formule-badge-populaire {
  position: absolute;
  top: -1px;
  right: 1.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6E1A2C;
  background: #C9A96E;
  padding: 0.3rem 0.75rem;
  border-radius: 0 0 8px 8px;
}

@media (prefers-reduced-motion: reduce) {
  .formule-card { transition: none; }
  .formule-card:hover { transform: none; }
}

.formule-card-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.formule-card-label--gold {
  color: var(--gold);
}

.formule-card-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.25rem;
  font-weight: 500;
  color: var(--accent);
  line-height: 1;
}

.formule-card-price span {
  font-size: 1rem;
  color: var(--muted);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
}

.formule-card-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--ink);
}

.formule-card-desc {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.75;
  flex: 1;
}

.formule-card-cta {
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.04em;
  margin-top: 0.5rem;
}

/* Pages formule détail */
.formule-hero-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 500;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.formule-hero-price-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.formule-breadcrumb {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.06em;
  margin-bottom: 2rem;
}

.formule-breadcrumb a {
  color: var(--muted);
  text-decoration: none;
}

.formule-breadcrumb a:hover { color: var(--ink); }

.formule-breadcrumb-sep {
  margin: 0 0.5rem;
  opacity: 0.45;
}

.formule-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.formule-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--ink);
}

.formule-features li::before {
  content: '✓';
  color: var(--gold);
  font-size: 0.875rem;
  flex-shrink: 0;
  margin-top: 0.1em;
  font-weight: 600;
}

.formule-features--no li {
  color: var(--muted);
  opacity: 0.65;
}

.formule-features--no li::before {
  content: '×';
  color: var(--muted);
  font-weight: 400;
}

.formule-section-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.25rem;
  display: block;
}

.formule-other-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.formule-other-card {
  border: 1px solid rgba(181,139,63,0.15);
  border-radius: 4px;
  padding: 1.5rem;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.25s ease, transform 0.25s ease;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.formule-other-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}

.formule-other-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.formule-other-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.375rem;
  color: var(--accent);
  font-weight: 500;
}

.formule-other-name {
  font-size: 0.8125rem;
  color: var(--muted);
}

/* ═══════════════════════════════════════════════════════════════
   FORMULES STUDIO — PAGES DÉDIÉES (FSP)
═══════════════════════════════════════════════════════════════ */

/* Hero bordeaux pleine largeur */
.fsp-hero {
  position: relative;
  background: var(--accent);
  overflow: hidden;
  padding: clamp(7rem, 14vw, 11rem) 0 clamp(5rem, 10vw, 8rem);
  display: flex;
  align-items: center;
}

.fsp-hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.055;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  pointer-events: none;
}

.fsp-hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  width: 100%;
}

.fsp-breadcrumb {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.1em;
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.fsp-breadcrumb a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s ease;
}

.fsp-breadcrumb a:hover { color: rgba(255,255,255,0.75); }
.fsp-breadcrumb-sep { opacity: 0.35; }

.fsp-hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}

.fsp-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 300;
  color: rgba(255,255,255,0.92);
  line-height: 1;
  letter-spacing: 0.02em;
  margin-bottom: 2rem;
}

.fsp-hero-price {
  font-family: var(--font-serif);
  font-size: clamp(5rem, 14vw, 11rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 0.9;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.fsp-hero-price-sub {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.08em;
  margin-bottom: 2.5rem;
}

.fsp-hero-accroche {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.375rem, 3vw, 1.875rem);
  font-weight: 300;
  color: rgba(255,255,255,0.82);
  line-height: 1.5;
  max-width: 46ch;
}

/* Gold rule separator */
.fsp-gold-rule {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(181,139,63,0.5) 20%, rgba(181,139,63,0.5) 80%, transparent 100%);
}

/* Light section */
.fsp-section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.fsp-section--light {
  background: #FDFCF9;
  color: #0d2545;
}

.fsp-section--surface {
  background: var(--surface);
}

.fsp-section--dark {
  background: #FDFCF9;
  color: #0d2545;
}

.fsp-section-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
}

.fsp-section-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  display: block;
}

.fsp-section--dark .fsp-section-eyebrow {
  color: #C9A96E;
}

.fsp-section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--ink);
}

.fsp-section--dark .fsp-section-title {
  color: #0d2545;
}

.fsp-description {
  font-family: var(--font-serif);
  font-size: clamp(1.125rem, 2.5vw, 1.375rem);
  font-weight: 300;
  line-height: 1.75;
  color: var(--muted);
  max-width: 58ch;
  margin-bottom: 3.5rem;
}

.fsp-section--dark .fsp-description {
  color: #6b7a8d;
}

/* Feature cards grid */
.fsp-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.fsp-feature-card {
  border: 1px solid rgba(201, 168, 110, 0.3);
  border-radius: 24px;
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  background: var(--bg);
  position: relative;
  overflow: hidden;
  transform: perspective(1000px) rotateX(2deg);
  transform-origin: center bottom;
  box-shadow:
    0 20px 60px rgba(110, 26, 44, 0.2),
    0 8px 24px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(201, 168, 110, 0.2);
  transition:
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, box-shadow;
}

/* Reflet en haut */
.fsp-feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 45%;
  border-radius: 24px 24px 0 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06) 0%,
    transparent 50%
  );
  pointer-events: none;
  z-index: 0;
}

.fsp-feature-card > * {
  position: relative;
  z-index: 1;
}

.fsp-section--surface .fsp-feature-card {
  background: rgba(255,255,255,0.6);
}

.fsp-feature-card:hover {
  border-color: rgba(201, 168, 110, 0.55);
  transform: perspective(1000px) rotateX(0deg) translateY(-8px) scale(1.02);
  box-shadow:
    0 40px 80px rgba(110, 26, 44, 0.3),
    0 16px 40px rgba(0, 0, 0, 0.25);
}

@media (prefers-reduced-motion: reduce) {
  .fsp-feature-card {
    transform: none;
    transition: border-color 0.2s ease;
  }
  .fsp-feature-card:hover { transform: none; }
}

.fsp-feature-icon {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--gold);
  line-height: 1;
}

.fsp-feature-name {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.01em;
}

.fsp-feature-desc {
  font-size: 0.8125rem;
  color: var(--muted);
  line-height: 1.65;
}

/* Dark section — non inclus */
.fsp-non-inclus {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  margin-bottom: 3rem;
}

.fsp-non-inclus li {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  font-size: 0.9375rem;
  color: #6b7a8d;
  padding-bottom: 0.875rem;
  border-bottom: 1px solid rgba(13,37,69,0.08);
}

.fsp-non-inclus li::before {
  content: '×';
  color: rgba(110,26,44,0.4);
  font-size: 1rem;
  flex-shrink: 0;
}

/* Upgrade hint */
.fsp-upgrade-hint {
  background: #FDFCF9;
  border: 1px solid rgba(110,26,44,0.2);
  padding: 2rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.fsp-upgrade-hint-text {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  color: #6b7a8d;
  line-height: 1.5;
}

.fsp-upgrade-hint-text strong {
  color: #6b7a8d;
  font-weight: 400;
}

.fsp-section--dark .fsp-upgrade-hint {
  background: #FDFCF9;
  border: 1px solid rgba(110,26,44,0.2);
}

.fsp-section--dark .fsp-upgrade-hint-text {
  color: #6b7a8d;
}

.fsp-section--dark .fsp-upgrade-hint-text strong {
  color: #0d2545;
  font-weight: 400;
}

.fsp-upgrade-link {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 500;
  color: #6E1A2C;
  letter-spacing: 0.06em;
  white-space: nowrap;
  border-bottom: 1px solid rgba(110,26,44,0.3);
  padding-bottom: 2px;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.fsp-upgrade-link:hover {
  color: #5a1524;
  border-color: #5a1524;
}

/* CTA section bordeaux */
.fsp-cta-section {
  position: relative;
  background: var(--accent);
  overflow: hidden;
  padding: clamp(4rem, 8vw, 7rem) 0;
  text-align: center;
}

.fsp-cta-section .fsp-hero-grain {
  opacity: 0.04;
}

.fsp-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
}

.fsp-cta-title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 300;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.fsp-cta-sub {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 2.5rem;
  letter-spacing: 0.04em;
}

.btn--gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: #fff;
  padding: 1.125rem 3rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.25s ease, color 0.25s ease;
}

.btn--gold:hover {
  background: var(--surface);
  transform: translateY(-2px);
}

/* Compare section */
.fsp-compare-section {
  background: #FDFCF9;
  padding: clamp(4rem, 8vw, 6rem) 0;
}

.fsp-compare-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
}

.fsp-compare-label {
  font-family: var(--font-sans);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2rem;
  display: block;
}

.fsp-compare-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.fsp-compare-card {
  background: var(--bg);
  border: 1px solid rgba(181,139,63,0.15);
  padding: 2rem 1.75rem;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: border-color 0.25s ease, transform 0.25s var(--ease-out);
}

.fsp-compare-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}

.fsp-compare-card-tier {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.fsp-compare-card-price {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--accent);
  line-height: 1;
}

.fsp-compare-card-price span {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 400;
}

.fsp-compare-card-tagline {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--ink);
}

.fsp-compare-card-cta {
  margin-top: auto;
  padding-top: 0.75rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.04em;
}

/* Responsive adjustments */
@media (max-width: 640px) {
  .fsp-hero-price { font-size: clamp(4.5rem, 20vw, 7rem); }
  .fsp-upgrade-hint { flex-direction: column; gap: 1.25rem; }
  .fsp-features-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════
   CONFIGURATEUR
═══════════════════════════════════════════════════════════════ */
.configurateur-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(14, 23, 38, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-out);
}

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

.configurateur-panel {
  background: var(--bg);
  width: 100%;
  max-width: 560px;
  border-radius: 2px;
  padding: clamp(2.5rem, 5vw, 4rem);
  position: relative;
  overflow: hidden;
  transform: translateY(20px);
  transition: transform 0.5s var(--ease-out);
  max-height: 90vh;
  overflow-y: auto;
}

.configurateur-overlay.open .configurateur-panel {
  transform: translateY(0);
}

.config-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: var(--muted);
  transition: color 0.2s;
}

.config-close:hover {
  color: var(--ink);
}

.config-step {
  display: none;
}

.config-step.active {
  display: block;
}

.config-eyebrow {
  margin-bottom: 1.5rem;
}

.config-question {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 2rem;
}

.config-choices {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.config-choice {
  display: block;
  width: 100%;
  padding: 1rem 1.25rem;
  text-align: left;
  font-size: 0.9375rem;
  color: var(--ink);
  border: 1px solid rgba(14, 23, 38, 0.12);
  border-radius: 1px;
  transition: all 0.25s var(--ease-out);
  cursor: pointer;
  background: transparent;
}

.config-choice:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(110, 26, 44, 0.03);
  padding-left: 1.75rem;
}

.config-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-field label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.optional {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.7rem;
  color: var(--muted);
  opacity: 0.6;
}

.form-field input,
.form-field textarea {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: var(--ink);
  background: transparent;
  border: 1px solid rgba(14, 23, 38, 0.15);
  border-radius: 1px;
  padding: 0.75rem 1rem;
  transition: border-color 0.2s;
  width: 100%;
  resize: none;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(122, 130, 149, 0.5);
}

.config-submit {
  margin-top: 0.5rem;
  border: none;
  width: 100%;
  justify-content: center;
}

.config-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(14, 23, 38, 0.06);
}

.config-progress-bar {
  height: 100%;
  background: var(--accent);
  transition: width 0.5s var(--ease-out);
  width: 25%;
}

/* Result step */
.config-result {
  text-align: center;
  padding: 2rem 0;
}

.result-emblem {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.result-body {
  color: var(--muted);
  margin: 1.25rem 0 2rem;
  line-height: 1.8;
}

/* ═══════════════════════════════════════════════════════════════
   ASSISTANTE LÉA
═══════════════════════════════════════════════════════════════ */
.concierge-btn {
  position: fixed;
  bottom: 80px;
  right: 24px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.875rem 1.5rem;
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius-pill);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  box-shadow: 0 4px 24px rgba(110, 26, 44, 0.3);
  transition: all 0.3s var(--ease-out);
  border: none;
  cursor: pointer;
}

.concierge-btn:hover {
  background: #5a1524;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(110, 26, 44, 0.35);
}

/* Badge notification */
.concierge-notif {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--accent);
  animation: notifPulse 1.5s ease-in-out infinite;
}

@keyframes notifPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.4); opacity: 0.7; }
}

.concierge-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 420px;
  max-width: 100vw;
  z-index: 200;
  background: #FDFCF9;
  border-left: 1px solid rgba(201, 168, 110, 0.3);
  box-shadow: -8px 0 60px rgba(14, 23, 38, 0.12);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease-out), height 0.4s var(--ease-out), bottom 0.4s var(--ease-out);
}

.concierge-panel.open {
  transform: translateX(0);
}

/* État réduit */
.concierge-panel.minimized {
  top: auto;
  height: 70px;
  border-radius: 12px 12px 0 0;
  overflow: hidden;
}

.concierge-panel.minimized .concierge-messages,
.concierge-panel.minimized .concierge-input {
  display: none;
}

.concierge-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: #6E1A2C;
  border-bottom: 1px solid rgba(181, 139, 63, 0.15);
  flex-shrink: 0;
}

.concierge-identity {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.concierge-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}

.concierge-avatar-letter {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.125rem;
  font-weight: 500;
  color: #C9A96E;
}

/* Point vert "en ligne" */
.concierge-avatar-dot {
  position: absolute;
  bottom: 1px;
  right: 1px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #22c55e;
  border: 1.5px solid var(--bg);
}

.concierge-title {
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  font-weight: 500;
  color: #fff;
  line-height: 1;
}

.concierge-subtitle {
  font-size: 0.6563rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.2rem;
}

.concierge-header-actions {
  display: flex;
  gap: 0.25rem;
}

.concierge-action-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: background 0.2s, color 0.2s;
  border: none;
  cursor: pointer;
  background: transparent;
}

.concierge-action-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.concierge-messages {
  flex: 1;
  overflow-y: auto;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  scroll-behavior: smooth;
}

.concierge-msg {
  max-width: 85%;
  font-size: 0.9375rem;
  line-height: 1.6;
}

.concierge-msg--bot {
  align-self: flex-start;
}

.concierge-msg--bot p {
  background: #F1E9DC;
  padding: 0.875rem 1.125rem;
  border-radius: 0 12px 12px 12px;
  color: #0d2545;
}

.concierge-msg--user {
  align-self: flex-end;
}

.concierge-msg--user p {
  background: #6E1A2C;
  padding: 0.875rem 1.125rem;
  border-radius: 12px 12px 0 12px;
  color: #fff;
}

.concierge-typing {
  display: flex;
  gap: 4px;
  align-items: center;
  padding: 0.875rem 1.125rem;
  background: var(--surface);
  border-radius: 0 12px 12px 12px;
  width: fit-content;
}

.concierge-typing span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--muted);
  animation: typingPulse 1.2s ease-in-out infinite;
}

.concierge-typing span:nth-child(2) { animation-delay: 0.2s; }
.concierge-typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingPulse {
  0%, 60%, 100% { transform: scale(1); opacity: 0.4; }
  30% { transform: scale(1.3); opacity: 1; }
}

.concierge-suggestions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.25rem;
}

.suggestion {
  display: block;
  padding: 0.6rem 0.9rem;
  font-size: 0.8125rem;
  color: #6E1A2C;
  border: 1px solid rgba(110, 26, 44, 0.2);
  border-radius: 4px;
  text-align: left;
  transition: all 0.2s;
  cursor: pointer;
  background: transparent;
  width: fit-content;
}

.suggestion:hover {
  background: #6E1A2C;
  color: #fff;
  border-color: #6E1A2C;
}

.concierge-input {
  display: flex;
  gap: 0.75rem;
  padding: 1.25rem 1.75rem;
  border-top: 1px solid rgba(14, 23, 38, 0.08);
  flex-shrink: 0;
}

.concierge-input input {
  flex: 1;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: #0d2545;
  background: #FDFCF9;
  border: 1px solid rgba(201, 168, 110, 0.3);
  border-radius: 20px;
  padding: 0.625rem 1rem;
  transition: border-color 0.2s;
}

.concierge-input input:focus {
  outline: none;
  border-color: var(--accent);
}

.concierge-input input::placeholder {
  color: var(--muted);
  opacity: 0.5;
}

.concierge-input button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #6E1A2C;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.2s;
  border: none;
  cursor: pointer;
}

.concierge-input button:hover {
  background: #5a1524;
  transform: scale(1.05);
}

/* ═══════════════════════════════════════════════════════════════
   INNER PAGES (partagées)
═══════════════════════════════════════════════════════════════ */
.page-hero {
  padding: calc(var(--header-h) + clamp(4rem, 8vw, 7rem)) 0 clamp(4rem, 8vw, 7rem);
  background: var(--surface);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(181, 139, 63, 0.15);
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  pointer-events: none;
}

.page-ghost {
  position: absolute;
  right: -0.1em;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-serif);
  font-size: clamp(10rem, 22vw, 18rem);
  font-weight: 600;
  line-height: 1;
  color: var(--accent);
  opacity: 0.055;
  pointer-events: none;
  user-select: none;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.page-hero-inner .eyebrow {
  margin-bottom: 1.5rem;
}

.page-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 500;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 1.5rem;
}

.page-hero-body {
  max-width: 55ch;
  color: var(--muted);
  font-size: 1.0625rem;
  line-height: 1.8;
}

.page-content {
  padding: clamp(4rem, 8vw, 8rem) 0;
}

.page-section {
  margin-bottom: clamp(4rem, 8vw, 7rem);
}

.page-section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 1.25rem;
  line-height: 1.1;
}

.page-section-body {
  max-width: 60ch;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 1rem;
}

.prestations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: rgba(181, 139, 63, 0.15);
  margin-top: 3rem;
}

.prestation-card {
  background: var(--bg);
  padding: 2.5rem;
  transition: background 0.3s;
}

.prestation-card:hover {
  background: var(--surface);
}

.prestation-num {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 300;
  color: var(--accent);
  opacity: 0.25;
  margin-bottom: 1rem;
  line-height: 1;
}

.prestation-title {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.75rem;
}

.prestation-body {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .sf-grid {
    grid-template-columns: 1fr;
  }

  .sf-initial {
    opacity: 0.035;
  }

  .sf-chiffres {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0;
  }

  .sf-chiffre {
    flex: 1;
    min-width: 150px;
    padding: 1.5rem 1rem;
    border-right: 1px solid rgba(181, 139, 63, 0.2);
  }

  .sf-chiffre:last-child {
    border-right: none;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .domaine-bloc {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .domaine-num {
    font-size: 5rem;
    transform: none;
    opacity: 0.1 !important;
  }

  .domaine-bloc.revealed .domaine-num {
    transform: none;
  }

  .header-action span {
    display: none;
  }

  .concierge-panel {
    width: 100vw;
  }

  .concierge-btn {
    bottom: 16px;
    right: 16px;
  }

  .site-footer {
    padding-bottom: 4.5rem;
  }

  footer {
    padding-bottom: 4.5rem !important;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .rdv-actions {
    flex-direction: column;
    align-items: center;
  }

  .sf-chiffres {
    flex-direction: column;
  }

  .sf-chiffre {
    border-right: none;
  }

  .temoignage-stage {
    min-height: 320px;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .domaine-bloc {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .header-actions {
    gap: 1rem;
  }
}

/* ─── CARTE EXPRESS ──────────────────────────────────────────── */
.express-card {
  border-radius: 24px;
  border: 1px solid rgba(201, 168, 110, 0.5);
  box-shadow:
    0 20px 60px rgba(110, 26, 44, 0.4),
    0 8px 24px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(201, 168, 110, 0.3);
  transform: perspective(1000px) rotateX(2deg);
  transform-origin: center bottom;
  transition:
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, box-shadow;
}

.express-card:hover {
  transform: perspective(1000px) rotateX(0deg) translateY(-8px) scale(1.02);
  box-shadow:
    0 40px 80px rgba(110, 26, 44, 0.5),
    0 16px 40px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(201, 168, 110, 0.4);
}

/* Reflet lumineux en haut */
.express-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 45%;
  border-radius: 24px 24px 0 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.10) 0%,
    rgba(255, 255, 255, 0.03) 60%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 0;
}

.express-card > * { position: relative; z-index: 1; }

@media (prefers-reduced-motion: reduce) {
  .express-card { transform: none; transition: none; }
  .express-card:hover { transform: none; }
}

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

/* Neutralise reveal-section sur les étapes (évite le flash invisible) */
.processus-step.reveal-section {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

/* Conteneur — ligne gold verticale via ::before */
.processus-timeline {
  position: relative;
  padding-left: 1.75rem;
  max-width: 680px;
  margin-top: 3rem;
}

.processus-timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: linear-gradient(
    to bottom,
    #C9A96E 0%,
    rgba(201, 169, 110, 0.35) 65%,
    transparent 100%
  );
}

.processus-timeline::after { display: none; }

/* Étape */
.processus-step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding-bottom: 2.5rem;
  background: none;
  border: none;
  box-shadow: none;
}

.processus-step:last-child { padding-bottom: 0; }

/* Dot → grand numéro */
.processus-dot {
  flex-shrink: 0;
  width: auto;
  height: auto;
  min-width: 2.5rem;
  border: none;
  border-radius: 0;
  background: none;
  box-shadow: none;
  display: block;
  padding: 0;
}

.processus-dot span {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 3rem;
  color: #C9A96E;
  opacity: 0.4;
  line-height: 1;
  font-weight: 400;
  display: block;
  letter-spacing: 0;
}

/* Contenu — neutre, pas de glass */
.processus-content {
  flex: 1;
  background: none;
  border: none;
  box-shadow: none;
  padding: 0.25rem 0 0;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transform: none;
  transition: none;
}

.processus-step:hover .processus-content {
  transform: none;
  background: none;
  border: none;
  box-shadow: none;
}

/* Semaine X */
.processus-period {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #6b7a8d;
  opacity: 1;
  margin-bottom: 0.3rem;
  display: block;
}

/* Titre */
.processus-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.8rem;
  color: #0d2545;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

/* Description */
.processus-body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.9375rem;
  font-weight: 300;
  line-height: 1.8;
  color: #6b7a8d;
  max-width: none;
  margin-bottom: 0;
}

/* Mobile */
@media (max-width: 600px) {
  .processus-timeline::before { left: 0; width: 1.5px; }
  .processus-dot { min-width: 2rem; }
  .processus-dot span { font-size: 2.25rem; }
  .processus-step:hover .processus-content { transform: none; }
}

/* Mouvement réduit */
@media (prefers-reduced-motion: reduce) {
  .processus-step.reveal-section { transform: none; transition: opacity 0.3s ease; }
}

/* ─── FOCUS VISIBLE ──────────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ─── SELECTION ──────────────────────────────────────────────── */
::selection {
  background: rgba(110, 26, 44, 0.12);
  color: var(--ink);
}

/* ─── SCROLLBAR ──────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb {
  background: rgba(181, 139, 63, 0.3);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(181, 139, 63, 0.5);
}
