/* ============================================================
   CASCO CONSULTING — Système visuel complet
   Navy profond + Crème + Or chaud
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,500&family=Manrope:wght@300;400;500;600;700;800&display=swap');

:root {
  --navy: #073360;
  --navy-deep: #051f3d;
  --navy-soft: #1c4a78;
  --cream: #f6f1e6;
  --cream-light: #fbf8f0;
  --cream-warm: #efe6d2;
  --gold: #b8945a;
  --gold-soft: #d4b478;
  --gold-deep: #8a6a3c;
  --ink: #14171c;
  --ink-soft: #4a4d54;
  --line: #e3dccb;
  --line-soft: #ece5d4;
  --line-strong: #d5ccb8;
  --shadow-sm: 0 1px 2px rgba(7,51,96,.06);
  --shadow-md: 0 12px 30px -10px rgba(7,51,96,.18);
  --shadow-lg: 0 30px 80px -30px rgba(7,51,96,.30);
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Manrope", -apple-system, BlinkMacSystemFont, sans-serif;
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 32px;
  --easing: cubic-bezier(.2,.7,.2,1);
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream-light);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
address { font-style: normal; }

/* ===== Skip link (accessibilité) ===== */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--navy);
  color: var(--cream-light);
  padding: 10px 20px;
  border-radius: 0 0 var(--r-md) var(--r-md);
  font-size: .9rem;
  font-weight: 600;
  z-index: 9999;
  transition: top .2s;
}
.skip-link:focus { top: 0; }

/* ===== Typographie ===== */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.08;
  color: var(--navy);
  text-wrap: balance;
}
h1 { font-size: clamp(2.6rem, 6vw, 5.4rem); }
h2 { font-size: clamp(2rem, 4.2vw, 3.6rem); }
h3 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); }
h4 { font-size: 1.15rem; font-family: var(--sans); font-weight: 600; letter-spacing: -.005em; }
p { color: var(--ink-soft); text-wrap: pretty; max-width: 65ch; }

.eyebrow {
  font-family: var(--sans);
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.eyebrow-light {
  color: var(--gold-soft);
}
.eyebrow-light::before { background: var(--gold-soft); }

/* ===== Layout ===== */
.container { width: min(1280px, 100% - 48px); margin-inline: auto; }
.container-tight { width: min(960px, 100% - 48px); margin-inline: auto; }
section { padding: clamp(60px, 9vw, 130px) 0; }

/* ===== Navigation ===== */
.nav-wrap {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background .35s var(--easing), backdrop-filter .35s var(--easing), border-color .35s var(--easing);
  border-bottom: 1px solid transparent;
}
.nav-wrap.scrolled {
  background: rgba(251,248,240,.88);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom-color: var(--line-soft);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  width: min(1380px, 100% - 48px);
  margin-inline: auto;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.35rem;
  color: var(--navy);
  letter-spacing: .01em;
  flex-shrink: 0;
}
.nav-logo img { width: 38px; height: 38px; object-fit: contain; transition: transform .5s var(--easing); }
.nav-logo:hover img { transform: rotate(-12deg); }
.nav-logo small {
  display: block;
  font-family: var(--sans);
  font-size: .62rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold-deep);
  margin-top: 2px;
}
.nav-logo strong { font-weight: 700; line-height: 1; display: block; }
.nav-links {
  display: flex;
  gap: 4px;
  align-items: center;
  list-style: none;
}
.nav-links a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--navy);
  padding: 10px 16px;
  border-radius: 999px;
  transition: color .25s, background .25s;
}
.nav-links a:hover { background: rgba(7,51,96,.05); }
.nav-links a.active { color: var(--cream-light); background: var(--navy); }
.nav-cta {
  background: var(--navy) !important;
  color: var(--cream-light) !important;
  padding: 12px 22px !important;
  margin-left: 8px;
  font-weight: 600 !important;
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  transition: transform .3s var(--easing), background .3s !important;
}
.nav-cta:hover { background: var(--navy-deep) !important; transform: translateY(-1px); }
.nav-cta.active { background: var(--gold) !important; }
.nav-cta svg { width: 14px; height: 14px; transition: transform .3s; }
.nav-cta:hover svg { transform: translateX(3px); }
.nav-burger {
  display: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  align-items: center; justify-content: center;
  background: var(--navy);
  color: var(--cream-light);
}
.nav-burger svg { width: 18px; height: 18px; }

@media (max-width: 980px) {
  .nav-links { display: none; }
  .nav-burger { display: inline-flex; }
  .mobile-menu.open .nav-links {
    display: flex;
    position: fixed;
    inset: 0;
    flex-direction: column;
    background: var(--navy);
    padding: 100px 32px 40px;
    gap: 0;
    z-index: 99;
    overflow-y: auto;
  }
  .mobile-menu.open .nav-links a {
    color: var(--cream-light);
    font-family: var(--serif);
    font-size: 2rem;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
    border-radius: 0;
    background: none !important;
  }
  .mobile-menu.open .nav-links a.nav-cta {
    margin-top: 16px;
    border-radius: 999px !important;
    padding: 14px 24px !important;
    background: var(--gold) !important;
    border-bottom: none !important;
  }
}

/* ===== Boutons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  font-weight: 600;
  font-size: .92rem;
  border-radius: 999px;
  transition: transform .3s var(--easing), background .3s, color .3s, box-shadow .3s;
  cursor: pointer;
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; transition: transform .3s; flex-shrink: 0; }
.btn:hover svg { transform: translateX(4px); }
.btn-primary { background: var(--navy); color: var(--cream-light); }
.btn-primary:hover { background: var(--navy-deep); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-gold { background: var(--gold); color: var(--cream-light); }
.btn-gold:hover { background: var(--gold-deep); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-ghost { background: transparent; color: var(--navy); border: 1px solid var(--navy); }
.btn-ghost:hover { background: var(--navy); color: var(--cream-light); }
.btn-light { background: rgba(255,255,255,.1); color: var(--cream-light); border: 1px solid rgba(255,255,255,.25); backdrop-filter: blur(8px); }
.btn-light:hover { background: rgba(255,255,255,.18); }

/* ===== Utilitaires ===== */
.row { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.serif { font-family: var(--serif); }
.italic { font-style: italic; }

/* ===== Heading section ===== */
.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 60px;
  margin-bottom: 60px;
}
.section-head .lede p { font-size: 1.05rem; color: var(--ink-soft); }
@media (max-width: 760px) { .section-head { grid-template-columns: 1fr; gap: 24px; } }

/* ===== Reveal ===== */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s var(--easing), transform 1s var(--easing);
}
[data-reveal].in { opacity: 1; transform: translateY(0); }
[data-reveal-delay="1"] { transition-delay: .12s; }
[data-reveal-delay="2"] { transition-delay: .24s; }
[data-reveal-delay="3"] { transition-delay: .36s; }
[data-reveal-delay="4"] { transition-delay: .48s; }

/* ===== Loader initial ===== */
.boot {
  position: fixed; inset: 0;
  background: var(--cream-light);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center; justify-content: center;
  gap: 24px;
  transition: opacity .6s var(--easing);
}
.boot img { width: 72px; animation: float 1.6s ease-in-out infinite; }
.boot-bar { width: 200px; height: 2px; background: rgba(7,51,96,.1); overflow: hidden; border-radius: 2px; }
.boot-bar::after {
  content: "";
  display: block;
  width: 100%; height: 100%;
  background: var(--gold);
  transform: translateX(-100%);
  animation: load 1.2s var(--easing) forwards;
}
@keyframes load { to { transform: translateX(0); } }
@keyframes float { 50% { transform: translateY(-8px); } }
.boot.gone { opacity: 0; pointer-events: none; }

/* ===== Marquee ===== */
.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--cream);
  padding: 22px 0;
}
.marquee-track {
  display: flex;
  gap: 80px;
  animation: marquee 38s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.marquee-track span {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 40px;
}
.marquee-track span::after { content: "✦"; color: var(--gold); font-size: 1rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ===== Curseur ===== */
.cursor-dot {
  position: fixed;
  pointer-events: none;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  z-index: 999;
  mix-blend-mode: multiply;
  transform: translate(-50%,-50%);
  transition: transform .15s var(--easing), opacity .3s;
  opacity: 0;
}
.cursor-ring {
  position: fixed;
  pointer-events: none;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  z-index: 999;
  transform: translate(-50%,-50%);
  transition: transform .25s var(--easing), opacity .3s, width .3s, height .3s;
  opacity: 0;
}
@media (hover: hover) and (pointer: fine) {
  .cursor-dot, .cursor-ring { opacity: 1; }
}

/* ===== Page transition ===== */
.page-transition {
  position: fixed; inset: 0;
  background: var(--navy);
  z-index: 200;
  pointer-events: none;
  transform: translateY(100%);
  display: flex;
  align-items: center; justify-content: center;
  transition: transform .45s var(--easing);
}
.page-transition.cover { transform: translateY(0); pointer-events: all; }
.page-transition img { width: 80px; opacity: 0; transition: opacity .3s; }
.page-transition.cover img { opacity: 1; animation: spin 1.4s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes knot-rotate { to { transform: translateY(-50%) rotate(360deg); } }

/* ===== Footer ===== */
.footer {
  background: var(--navy-deep);
  color: var(--cream);
  padding: 90px 0 40px;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(184,148,90,.08), transparent 35%),
    radial-gradient(circle at 90% 80%, rgba(28,74,120,.4), transparent 40%);
  pointer-events: none;
}
.footer-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer h5 {
  font-family: var(--sans);
  font-size: .8rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 20px;
  font-weight: 600;
}
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer ul a { color: rgba(246,241,230,.78); font-size: .92rem; transition: color .25s; }
.footer ul a:hover { color: var(--cream-light); }
.footer-brand-mark { width: 64px; height: 64px; filter: brightness(0) invert(1); opacity: .9; margin-bottom: 18px; }
.footer-tag { font-family: var(--serif); font-size: 1.4rem; font-weight: 500; color: var(--cream-light); margin-bottom: 12px; font-style: italic; }
.footer-meta { font-size: .85rem; color: rgba(246,241,230,.65); line-height: 1.7; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 32px;
  font-size: .82rem;
  color: rgba(246,241,230,.55);
}
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  display: inline-flex;
  align-items: center; justify-content: center;
  color: var(--cream);
  transition: background .3s, border-color .3s, transform .3s;
}
.footer-socials a:hover { background: var(--gold); border-color: var(--gold); transform: translateY(-3px); }
.footer-socials svg { width: 16px; height: 16px; }
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

/* ===== LinkedIn flottant ===== */
.float-linkedin {
  position: fixed;
  bottom: 100px; right: 28px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #0077B5;
  color: white;
  display: inline-flex;
  align-items: center; justify-content: center;
  box-shadow: 0 14px 36px -8px rgba(0,119,181,.5);
  z-index: 90;
  transition: transform .35s var(--easing);
}
.float-linkedin:hover { transform: scale(1.08); }
.float-linkedin svg { width: 28px; height: 28px; }

/* ===== WhatsApp flottant ===== */
.float-whatsapp {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: inline-flex;
  align-items: center; justify-content: center;
  box-shadow: 0 14px 36px -8px rgba(37,211,102,.5);
  z-index: 90;
  transition: transform .35s var(--easing);
  animation: pulse-wa 2.6s infinite;
}
.float-whatsapp:hover { transform: scale(1.08); }
.float-whatsapp svg { width: 28px; height: 28px; }
@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 14px 36px -8px rgba(37,211,102,.5), 0 0 0 0 rgba(37,211,102,.5); }
  50% { box-shadow: 0 14px 36px -8px rgba(37,211,102,.5), 0 0 0 16px rgba(37,211,102,0); }
}

/* ===== Hero page commun ===== */
.hero-page {
  padding-top: 180px;
  padding-bottom: 90px;
  background:
    radial-gradient(ellipse 70% 50% at 80% 20%, rgba(184,148,90,.10), transparent 60%),
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(7,51,96,.06), transparent 60%),
    var(--cream-light);
  position: relative;
  overflow: hidden;
}
.hero-page-inner { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 60px; }
.hero-page h1 { margin-top: 18px; }
.hero-page p.lead {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 1.6vw, 1.5rem);
  color: var(--ink-soft);
  margin-top: 22px;
  max-width: 56ch;
  font-weight: 400;
  line-height: 1.5;
}
.hero-breadcrumb {
  display: flex; gap: 10px; align-items: center;
  font-size: .85rem;
  color: var(--ink-soft);
  margin-bottom: 30px;
}
.hero-breadcrumb a { color: var(--navy); font-weight: 500; }
.hero-breadcrumb span { color: var(--gold); }
.hero-page-mark { width: 220px; opacity: .12; align-self: center; }
@media (max-width: 760px) { .hero-page-inner { grid-template-columns: 1fr; } .hero-page-mark { display: none; } }

/* ===== Primitives cartes ===== */
.card {
  background: var(--cream-light);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px;
  transition: transform .4s var(--easing), box-shadow .4s, border-color .4s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--gold); }

/* ===== Formulaires ===== */
.form-row { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.form-row label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.form-row input,
.form-row textarea,
.form-row select {
  font: inherit;
  padding: 14px 16px;
  border: 1px solid var(--line);
  background: var(--cream-light);
  border-radius: var(--r-md);
  color: var(--ink);
  transition: border-color .25s, background .25s, box-shadow .25s;
  width: 100%;
  -webkit-appearance: none;
}
.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  outline: none;
  border-color: var(--gold);
  background: white;
  box-shadow: 0 0 0 4px rgba(184,148,90,.12);
}
.form-row textarea { min-height: 130px; resize: vertical; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 600px) { .form-grid-2 { grid-template-columns: 1fr; } }

/* =============================================
   PAGE ACCUEIL
   ============================================= */
.hero {
  min-height: 100vh;
  padding-top: 140px;
  padding-bottom: 80px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    radial-gradient(ellipse 80% 60% at 80% 30%, rgba(184,148,90,.10), transparent 60%),
    var(--cream-light);
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-knot {
  position: absolute;
  right: -120px; top: 50%;
  transform: translateY(-50%);
  width: 720px; height: 720px;
  animation: knot-rotate 60s linear infinite;
  opacity: .6;
}
.hero-grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0.07 0 0 0 0 0.20 0 0 0 0 0.38 0 0 0 0.06 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: .8;
  mix-blend-mode: multiply;
}
.hero-container {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-copy h1 em { font-style: italic; font-weight: 400; }
.hero-lead {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.5vw, 1.4rem);
  color: var(--ink-soft);
  margin-top: 28px;
  max-width: 56ch;
  font-weight: 400;
  line-height: 1.5;
}
.hero-actions { margin-top: 42px; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 64px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
  max-width: 580px;
}
.hero-stats > div { display: flex; flex-direction: column; gap: 4px; }
.hero-stats strong { font-family: var(--serif); font-size: 2.6rem; color: var(--navy); font-weight: 500; line-height: 1; }
.hero-stats sup { font-size: 1.4rem; color: var(--gold); }
.hero-stats span { font-size: .82rem; color: var(--ink-soft); letter-spacing: .03em; }

.hero-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 36px;
  box-shadow: var(--shadow-lg);
  position: relative; z-index: 3;
}
.hero-card-head {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--navy);
  background: rgba(7,51,96,.06);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.hero-card-head .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #1a9d4f;
  box-shadow: 0 0 0 3px rgba(26,157,79,.18);
  animation: blink 1.6s ease-in-out infinite;
}
@keyframes blink { 50% { opacity: .4; } }
.hero-card h3 { margin-bottom: 8px; }
.hero-card-bullets { list-style: none; margin: 24px 0 28px; display: flex; flex-direction: column; gap: 12px; }
.hero-card-bullets li { display: flex; align-items: center; gap: 10px; font-size: .92rem; color: var(--ink); }
.hero-card-bullets svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; }
.hero-card-foot {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .85rem;
  color: var(--ink-soft);
  flex-wrap: wrap;
}
.hero-card-foot a { color: var(--navy); font-weight: 600; display: inline-flex; align-items: center; gap: 6px; }
.hero-card-foot svg { width: 14px; height: 14px; }
.hero-scroll {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  z-index: 2;
}
.hero-scroll svg { width: 18px; height: 18px; animation: scroll-bounce 1.8s ease-in-out infinite; }
@keyframes scroll-bounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(6px); opacity: .5; }
}
@media (max-width: 980px) {
  .hero-container { grid-template-columns: 1fr; }
  .hero-card { max-width: 480px; }
  .hero-knot { right: -300px; opacity: .35; }
}

/* Présentation */
.presentation { background: var(--cream); position: relative; }
.presentation-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: center; }
.img-frame { position: relative; aspect-ratio: 4 / 5; border-radius: var(--r-xl); overflow: hidden; background: var(--cream-warm); }
.img-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.img-placeholder {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(135deg, rgba(7,51,96,.04) 0 12px, rgba(7,51,96,.07) 12px 24px);
  display: flex;
  align-items: center; justify-content: center;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: .85rem;
  text-align: center;
  color: var(--navy);
  padding: 40px;
}
.img-tag {
  position: absolute;
  bottom: 24px; left: 24px;
  background: white;
  padding: 12px 18px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--navy);
  box-shadow: var(--shadow-md);
}
.img-tag svg { width: 16px; height: 16px; color: var(--gold); }
.img-shape { position: absolute; top: -30px; right: -30px; width: 120px; height: 120px; background: var(--gold); border-radius: 50%; opacity: .15; }
.presentation-pillars {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.presentation-pillars > div { font-size: .82rem; color: var(--ink-soft); line-height: 1.3; }
.presentation-pillars strong { font-family: var(--serif); font-size: 2rem; color: var(--gold); font-weight: 500; display: block; line-height: 1; }
@media (max-width: 880px) {
  .presentation-grid { grid-template-columns: 1fr; gap: 50px; }
  .presentation-pillars { grid-template-columns: repeat(2, 1fr); }
}

/* Services preview */
.services-preview { background: var(--cream-light); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.srv-card {
  display: flex;
  flex-direction: column;
  padding: 38px 32px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  transition: transform .4s var(--easing), border-color .4s, box-shadow .4s;
  position: relative;
  overflow: hidden;
}
.srv-card::before {
  content: "";
  position: absolute; inset: auto 0 0 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s var(--easing);
}
.srv-card:hover { transform: translateY(-6px); border-color: rgba(184,148,90,.4); box-shadow: var(--shadow-md); }
.srv-card:hover::before { transform: scaleX(1); }
.srv-num { font-family: var(--serif); font-size: 1.2rem; color: var(--gold); margin-bottom: 16px; font-weight: 500; }
.srv-card h3 { font-size: 1.5rem; margin-bottom: 12px; }
.srv-card p { font-size: .93rem; flex: 1; }
.srv-link {
  margin-top: 22px;
  font-size: .82rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap .3s;
}
.srv-card:hover .srv-link { gap: 14px; }
.srv-link svg { width: 14px; height: 14px; }
@media (max-width: 880px) { .services-grid { grid-template-columns: 1fr; } }

/* Process */
.process { background: var(--navy); color: var(--cream); }
.process .eyebrow-light { color: var(--gold-soft); }
.process .eyebrow-light::before { background: var(--gold-soft); }
.process h2 { color: var(--cream-light); }
.process-head { text-align: center; margin-bottom: 70px; }
.process-head h2 { max-width: 18ch; margin: 18px auto 0; }
.process-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
.process-track::before {
  content: "";
  position: absolute;
  top: 32px; left: 12.5%; right: 12.5%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(184,148,90,.4), rgba(184,148,90,.4), transparent);
}
.process-step { position: relative; z-index: 2; }
.step-num {
  width: 64px; height: 64px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center; justify-content: center;
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--navy-deep);
  font-weight: 600;
  margin-bottom: 22px;
  box-shadow: 0 0 0 6px rgba(184,148,90,.2);
}
.process-step h4 { color: var(--cream-light); font-size: 1.2rem; margin-bottom: 10px; font-family: var(--serif); font-weight: 500; }
.process-step p { color: rgba(246,241,230,.72); font-size: .9rem; }
@media (max-width: 880px) { .process-track { grid-template-columns: 1fr 1fr; } .process-track::before { display: none; } }
@media (max-width: 480px) { .process-track { grid-template-columns: 1fr; } }

/* Downloads */
.downloads { background: var(--cream); }
.downloads-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.dl-card {
  display: flex; align-items: flex-start; gap: 24px;
  padding: 30px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  transition: transform .4s var(--easing), border-color .4s, box-shadow .4s;
}
.dl-card:hover { transform: translateY(-4px); border-color: var(--gold); box-shadow: var(--shadow-md); }
.dl-icon {
  width: 60px;
  background: var(--navy);
  color: var(--cream-light);
  border-radius: var(--r-md);
  padding: 14px 0;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  flex-shrink: 0;
}
.dl-icon svg { width: 24px; height: 24px; }
.dl-icon span { font-size: .65rem; letter-spacing: .15em; font-weight: 700; }
.dl-icon-ghost { background: var(--gold); }
.dl-meta { display: flex; flex-direction: column; }
.dl-meta h4 { font-family: var(--serif); font-size: 1.2rem; color: var(--navy); margin-bottom: 6px; font-weight: 500; }
.dl-meta p { font-size: .88rem; margin-bottom: 14px; }
.dl-cta { font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 600; color: var(--gold-deep); display: inline-flex; align-items: center; gap: 8px; }
.dl-cta svg { width: 14px; height: 14px; }
@media (max-width: 980px) { .downloads-grid { grid-template-columns: 1fr; } }

/* CTA Final */
.cta-final { background: var(--cream-light); }
.cta-card {
  position: relative; overflow: hidden;
  background: var(--navy-deep);
  color: var(--cream-light);
  border-radius: var(--r-xl);
  padding: 90px 60px;
  text-align: center;
}
.cta-card-bg { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; pointer-events: none; opacity: .9; }
.cta-card-bg svg { width: 700px; height: 700px; animation: knot-rotate 80s linear infinite; }
.cta-card .eyebrow-light { position: relative; z-index: 2; }
.cta-card h2 { color: var(--cream-light); margin: 18px auto 18px; max-width: 18ch; position: relative; z-index: 2; }
.cta-card p { color: rgba(246,241,230,.78); margin-inline: auto; max-width: 50ch; position: relative; z-index: 2; }
.cta-card .row { position: relative; z-index: 2; }
@media (max-width: 600px) { .cta-card { padding: 60px 28px; } }

/* =============================================
   PAGE POURQUOI NOUS
   ============================================= */
.manifesto { background: var(--cream); padding-top: 30px; padding-bottom: 30px; }
.manifesto-card {
  background: white;
  border-radius: var(--r-xl);
  padding: 70px 80px;
  border: 1px solid var(--line);
  position: relative;
  text-align: center;
}
.quote-mark { font-family: var(--serif); font-size: 8rem; line-height: 1; color: var(--gold); position: absolute; top: 20px; left: 40px; opacity: .25; pointer-events: none; }
.manifesto-card p { font-family: var(--serif); font-size: clamp(1.4rem, 2.4vw, 1.9rem); color: var(--navy); line-height: 1.4; font-weight: 400; text-wrap: balance; max-width: 100%; }
.quote-author { margin-top: 32px; display: flex; flex-direction: column; align-items: center; font-size: .85rem; color: var(--ink-soft); }
.quote-author strong { color: var(--navy); font-weight: 600; display: block; }
.quote-author span { font-style: italic; }
@media (max-width: 600px) { .manifesto-card { padding: 50px 28px; } .quote-mark { left: 16px; } }

.reasons { background: var(--cream-light); }
.reasons-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.reason {
  background: white;
  border: 1px solid var(--line);
  padding: 38px 32px;
  border-radius: var(--r-lg);
  position: relative;
  transition: transform .4s var(--easing), border-color .4s, box-shadow .4s;
  overflow: hidden;
}
.reason:hover { transform: translateY(-4px); border-color: var(--gold); box-shadow: var(--shadow-md); }
.reason-num {
  font-family: var(--serif);
  font-size: 3rem;
  color: var(--cream-warm);
  font-weight: 600;
  line-height: 1;
  position: absolute;
  top: 20px; right: 26px;
  transition: color .4s;
}
.reason:hover .reason-num { color: var(--gold-soft); }
.reason h3 { font-size: 1.4rem; margin-bottom: 14px; max-width: 16ch; }
.reason p { font-size: .94rem; }
.reason ul { list-style: none; margin-top: 18px; padding-top: 18px; border-top: 1px dashed var(--line); display: flex; flex-direction: column; gap: 8px; }
.reason ul li { font-size: .85rem; color: var(--navy); font-weight: 500; padding-left: 18px; position: relative; }
.reason ul li::before { content: "→"; position: absolute; left: 0; color: var(--gold); }
@media (max-width: 980px) { .reasons-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .reasons-grid { grid-template-columns: 1fr; } }

.engagements { background: var(--navy); color: var(--cream); padding: 110px 0; }
.engagements h2 { color: var(--cream-light); }
.engagements p { color: rgba(246,241,230,.8); }
.engagements-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: center; }
.engagements-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 50px 40px; }
.engagements-stats > div { padding-top: 24px; border-top: 1px solid rgba(255,255,255,.18); }
.engagements-stats strong { font-family: var(--serif); font-size: 4rem; color: var(--gold-soft); display: block; font-weight: 400; line-height: 1; margin-bottom: 14px; }
.engagements-stats p { font-size: .92rem; max-width: none; color: rgba(246,241,230,.7); }
@media (max-width: 880px) { .engagements-grid { grid-template-columns: 1fr; gap: 50px; } }

.values { background: var(--cream); }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.value { text-align: left; }
.value-mark {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: white;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  color: var(--gold);
  transition: background .4s, color .4s, transform .4s;
}
.value:hover .value-mark { background: var(--navy); color: var(--gold-soft); transform: rotate(-8deg); }
.value-mark svg { width: 32px; height: 32px; }
.value h3 { font-size: 1.3rem; margin-bottom: 10px; }
.value p { font-size: .92rem; }
@media (max-width: 760px) { .values-grid { grid-template-columns: 1fr 1fr; } }

.cta-final-simple { background: var(--cream-light); padding: 80px 0; border-top: 1px solid var(--line); }
.cta-final-simple h2 { font-size: clamp(1.6rem, 2.8vw, 2.4rem); }

/* =============================================
   PAGE SERVICES
   ============================================= */
.srv-toc-wrap {
  position: sticky; top: 78px; z-index: 50;
  background: rgba(251,248,240,.92);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.srv-toc { display: flex; gap: 4px; overflow-x: auto; padding: 16px 0; scrollbar-width: none; }
.srv-toc::-webkit-scrollbar { display: none; }
.srv-toc a { font-size: .82rem; font-weight: 500; color: var(--ink-soft); padding: 8px 14px; border-radius: 999px; white-space: nowrap; transition: background .25s, color .25s; }
.srv-toc a:hover { background: rgba(7,51,96,.06); color: var(--navy); }
.srv-toc a.active-section { background: var(--navy); color: var(--cream-light); }

.srv-section { padding: 100px 0; }
.srv-section.srv-alt { background: var(--cream); }
.srv-block-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
}
.srv-tag { display: inline-block; padding: 6px 12px; background: var(--navy); color: var(--cream-light); border-radius: 999px; font-size: .7rem; letter-spacing: .15em; text-transform: uppercase; font-weight: 600; margin-bottom: 18px; }
.srv-block-head h2 { margin-bottom: 16px; }
.srv-promise { font-size: 1.1rem; color: var(--ink-soft); }
.srv-block-intro p { font-size: 1rem; color: var(--ink-soft); }
@media (max-width: 760px) { .srv-block-head { grid-template-columns: 1fr; gap: 24px; } }

.srv-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.srv-cols-2x2 { grid-template-columns: 1fr 1fr; }
.srv-col {
  background: var(--cream-light);
  padding: 30px;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  position: relative;
  transition: transform .35s, border-color .35s;
}
.srv-alt .srv-col { background: white; }
.srv-col:hover { transform: translateY(-3px); border-color: var(--gold); }
.srv-col h4 { font-family: var(--serif); font-size: 1.3rem; color: var(--navy); margin-bottom: 16px; font-weight: 500; }
.srv-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.srv-col ul li { position: relative; padding-left: 22px; font-size: .92rem; color: var(--ink); line-height: 1.4; }
.srv-col ul li::before { content: ""; position: absolute; left: 0; top: 8px; width: 12px; height: 1px; background: var(--gold); }
.srv-letter { position: absolute; top: 22px; right: 26px; font-family: var(--serif); font-size: 2.4rem; color: var(--gold); font-weight: 600; line-height: 1; font-style: italic; }
@media (max-width: 880px) { .srv-cols, .srv-cols-2x2 { grid-template-columns: 1fr; } }

.formations-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.formation-card { background: white; padding: 36px 32px; border-radius: var(--r-lg); border: 1px solid var(--line); transition: transform .35s, border-color .35s, box-shadow .35s; }
.srv-alt .formation-card { background: var(--cream-light); }
.formation-card:hover { transform: translateY(-3px); border-color: var(--gold); box-shadow: var(--shadow-md); }
.form-num { font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-deep); font-weight: 700; }
.formation-card h3 { font-size: 1.6rem; margin: 8px 0 6px; }
.form-target { font-size: .85rem; color: var(--ink-soft); font-style: italic; margin-bottom: 22px; padding-bottom: 22px; border-bottom: 1px dashed var(--line); }
.formation-card ul { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.formation-card ul li { display: flex; flex-direction: column; gap: 2px; }
.formation-card ul li strong { font-size: .95rem; color: var(--navy); font-weight: 600; }
.formation-card ul li span { font-size: .85rem; color: var(--ink-soft); }
@media (max-width: 760px) { .formations-grid { grid-template-columns: 1fr; } }

.form-pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 40px; padding: 32px; background: var(--navy); color: var(--cream); border-radius: var(--r-lg); }
.form-pillars h4 { color: var(--gold-soft); margin-bottom: 8px; }
.form-pillars p { color: rgba(246,241,230,.8); font-size: .9rem; }
@media (max-width: 760px) { .form-pillars { grid-template-columns: 1fr; padding: 28px; } }

.mng-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.mng-item { background: var(--cream-light); border: 1px solid var(--line); padding: 28px; border-radius: var(--r-lg); display: flex; flex-direction: column; gap: 14px; min-height: 160px; transition: transform .35s, background .35s, color .35s; }
.mng-item:hover { background: var(--navy); color: var(--cream-light); transform: translateY(-4px); }
.mng-item:hover h4, .mng-item:hover span { color: var(--cream-light); }
.mng-item:hover .mng-sub { color: var(--gold-soft); }
.mng-item span { font-family: var(--serif); font-size: 2rem; color: var(--gold); font-weight: 500; line-height: 1; }
.mng-item h4 { font-family: var(--serif); font-size: 1.2rem; color: var(--navy); font-weight: 500; line-height: 1.3; }
.mng-sub { font-size: .8rem; color: var(--ink-soft); margin-top: 6px; }
@media (max-width: 880px) { .mng-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .mng-grid { grid-template-columns: 1fr; } }

.paie-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.paie-card { padding: 36px 32px; background: var(--cream-light); border-radius: var(--r-lg); border: 1px solid var(--line); }
.paie-card h4 { font-family: var(--serif); font-size: 1.4rem; color: var(--navy); font-weight: 500; margin-bottom: 12px; }
.paie-card p { font-size: .94rem; }
@media (max-width: 760px) { .paie-row { grid-template-columns: 1fr; } }

.consult-table { background: white; border-radius: var(--r-lg); border: 1px solid var(--line); overflow: hidden; }
.ct-row { display: grid; grid-template-columns: 1fr 2fr; padding: 22px 32px; border-top: 1px solid var(--line); align-items: center; gap: 24px; transition: background .25s; }
.ct-row:first-child { border-top: none; }
.ct-row:hover { background: var(--cream); }
.ct-header { background: var(--navy); color: var(--cream-light); font-size: .75rem; letter-spacing: .15em; text-transform: uppercase; font-weight: 600; }
.ct-header:hover { background: var(--navy); }
.ct-row strong { font-family: var(--serif); font-size: 1.15rem; color: var(--navy); font-weight: 500; }
.ct-row span:not(.ct-header span) { font-size: .94rem; color: var(--ink-soft); }
@media (max-width: 600px) { .ct-row { grid-template-columns: 1fr; gap: 6px; padding: 18px 24px; } }

.downloads-srv { background: var(--navy-deep); padding: 80px 0; }
.dl-banner { display: grid; grid-template-columns: 1fr auto; gap: 60px; align-items: center; color: var(--cream); }
.dl-banner h2 { color: var(--cream-light); margin: 16px 0 10px; }
.dl-banner p { color: rgba(246,241,230,.78); }
@media (max-width: 760px) { .dl-banner { grid-template-columns: 1fr; gap: 30px; } }

/* =============================================
   PAGE CONTACT
   ============================================= */
.channels { background: var(--cream); padding: 80px 0; }
.channels-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.channel { background: white; padding: 32px 28px; border-radius: var(--r-lg); border: 1px solid var(--line); display: flex; flex-direction: column; gap: 14px; transition: transform .35s, border-color .35s, box-shadow .35s; }
.channel:hover { transform: translateY(-6px); border-color: var(--gold); box-shadow: var(--shadow-md); }
.channel-icon { width: 50px; height: 50px; border-radius: 14px; background: var(--cream); display: flex; align-items: center; justify-content: center; color: var(--navy); }
.channel-icon svg { width: 24px; height: 24px; }
.channel-wa .channel-icon { background: #25D366; color: white; }
.channel h3 { font-size: 1.2rem; font-family: var(--serif); font-weight: 500; }
.channel p { font-size: .88rem; flex: 1; }
.channel-link { font-size: .82rem; font-weight: 600; color: var(--gold-deep); }
@media (max-width: 880px) { .channels-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .channels-grid { grid-template-columns: 1fr; } }

.contact-form-section { background: var(--cream-light); padding: 100px 0; }
.form-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 80px; align-items: start; }
.form-side h2 { margin: 16px 0 18px; }
.form-promises { list-style: none; margin-top: 32px; padding-top: 32px; border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: 14px; }
.form-promises li { display: flex; align-items: center; gap: 12px; font-size: .94rem; color: var(--ink); }
.form-promises svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; }
.form-card { background: white; padding: 44px; border-radius: var(--r-xl); border: 1px solid var(--line); box-shadow: var(--shadow-md); }
.form-check label.check { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; }
.form-check input { width: auto; margin-top: 4px; flex-shrink: 0; }
.form-check span { font-size: .85rem; color: var(--ink-soft); font-weight: 400; text-transform: none; letter-spacing: 0; }
.form-foot { font-size: .85rem; color: var(--ink-soft); text-align: center; margin-top: 18px; }
.form-foot a { color: var(--navy); font-weight: 600; }
@media (max-width: 880px) { .form-grid { grid-template-columns: 1fr; gap: 50px; } .form-card { padding: 28px; } }

.testimonials { background: var(--navy); color: var(--cream); padding: 110px 0; }
.testimonials h2 { color: var(--cream-light); }
.testimonials .lede p { color: rgba(246,241,230,.78); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testi { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1); padding: 32px; border-radius: var(--r-lg); backdrop-filter: blur(10px); transition: transform .35s, background .35s; }
.testi:hover { transform: translateY(-4px); background: rgba(255,255,255,.07); }
.testi-stars { color: var(--gold-soft); letter-spacing: 4px; font-size: 1rem; margin-bottom: 14px; }
.testi p { font-family: var(--serif); font-size: 1.1rem; color: var(--cream-light); font-weight: 400; line-height: 1.5; margin-bottom: 28px; max-width: none; }
.testi-author { display: flex; align-items: center; gap: 12px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); }
.testi-avatar { width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0; }
.testi-author strong { color: var(--cream-light); font-size: .92rem; font-weight: 600; display: block; }
.testi-author span { color: rgba(246,241,230,.6); font-size: .82rem; font-style: italic; }
@media (max-width: 880px) { .testi-grid { grid-template-columns: 1fr; } }

.faq { background: var(--cream); padding: 110px 0; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: white; border: 1px solid var(--line); border-radius: var(--r-md); padding: 22px 28px; transition: border-color .3s; }
.faq-item:hover { border-color: var(--gold); }
.faq-item summary { cursor: pointer; list-style: none; font-family: var(--serif); font-size: 1.2rem; color: var(--navy); font-weight: 500; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.6rem; color: var(--gold); font-family: var(--sans); font-weight: 300; transition: transform .3s; flex-shrink: 0; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { margin-top: 14px; font-size: .95rem; }

/* =============================================
   PAGE LOCALISATION
   ============================================= */
.loc-section { background: var(--cream); padding: 80px 0; }
.loc-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 40px; align-items: stretch; }
.loc-card { background: white; border-radius: var(--r-xl); padding: 44px; border: 1px solid var(--line); display: flex; flex-direction: column; }
.loc-card h3 { font-size: 1.8rem; margin: 14px 0 6px; }
.loc-card address { color: var(--ink-soft); margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px dashed var(--line); }
.loc-info { display: flex; flex-direction: column; gap: 22px; flex: 1; }
.loc-info-row { display: flex; gap: 16px; align-items: flex-start; }
.loc-icon { width: 42px; height: 42px; border-radius: 12px; background: var(--cream); display: flex; align-items: center; justify-content: center; color: var(--gold-deep); flex-shrink: 0; }
.loc-icon svg { width: 18px; height: 18px; }
.loc-info-row strong { display: block; font-size: .85rem; letter-spacing: .04em; color: var(--navy); margin-bottom: 4px; font-weight: 700; }
.loc-info-row p { font-size: .92rem; color: var(--ink); }
.loc-info-row a { color: var(--navy); font-weight: 500; }
.loc-actions { display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; }
.loc-map { display: flex; flex-direction: column; gap: 16px; }
.map-frame { position: relative; flex: 1; min-height: 480px; border-radius: var(--r-xl); overflow: hidden; border: 1px solid var(--line); background: #e8eef5; }
.map-overlay { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -100%); display: flex; flex-direction: column; align-items: center; pointer-events: none; z-index: 5; }
.map-pin { width: 50px; height: 50px; background: var(--gold); border-radius: 50% 50% 50% 0; transform: rotate(-45deg); display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 24px rgba(7,51,96,.4); position: relative; }
.map-pin svg { width: 22px; height: 22px; color: white; transform: rotate(45deg); }
.pin-pulse { position: absolute; inset: 0; border-radius: 50% 50% 50% 0; background: var(--gold); animation: pin-pulse 2s ease-out infinite; opacity: .5; }
@keyframes pin-pulse { 0% { transform: scale(1); opacity: .5; } 100% { transform: scale(2.5); opacity: 0; } }
.map-label { background: var(--navy); color: var(--cream-light); padding: 8px 14px; border-radius: 8px; margin-top: 8px; font-size: .82rem; display: flex; flex-direction: column; align-items: center; text-align: center; box-shadow: var(--shadow-md); }
.map-label strong { font-weight: 700; }
.map-label span { font-size: .72rem; opacity: .8; }
.map-foot { display: flex; justify-content: space-between; align-items: center; padding: 10px 4px; font-size: .85rem; color: var(--ink-soft); flex-wrap: wrap; gap: 12px; }
.map-foot a { color: var(--navy); font-weight: 600; }
@media (max-width: 980px) { .loc-grid { grid-template-columns: 1fr; } .map-frame { min-height: 380px; } }

.how-to-come { background: var(--cream-light); padding: 100px 0; }
.htc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.htc-card { background: white; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 38px 32px; transition: transform .35s, border-color .35s, box-shadow .35s; }
.htc-card:hover { transform: translateY(-6px); border-color: var(--gold); box-shadow: var(--shadow-md); }
.htc-icon { width: 56px; height: 56px; border-radius: 14px; background: var(--cream); display: flex; align-items: center; justify-content: center; color: var(--gold-deep); margin-bottom: 22px; transition: background .35s, color .35s; }
.htc-card:hover .htc-icon { background: var(--navy); color: var(--gold-soft); }
.htc-icon svg { width: 28px; height: 28px; }
.htc-card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.htc-card p { font-size: .92rem; margin-bottom: 18px; }
.htc-card ul { list-style: none; padding-top: 18px; border-top: 1px dashed var(--line); display: flex; flex-direction: column; gap: 8px; }
.htc-card ul li { font-size: .82rem; color: var(--ink-soft); }
.htc-card ul strong { color: var(--navy); }
@media (max-width: 880px) { .htc-grid { grid-template-columns: 1fr; } }

.practical { background: var(--cream); padding: 80px 0 110px; }
.practical-card { background: var(--navy-deep); color: var(--cream-light); border-radius: var(--r-xl); padding: 70px 60px; display: grid; grid-template-columns: 1.6fr 1fr; gap: 40px; align-items: center; }
.practical-card h2 { color: var(--cream-light); margin: 14px 0 14px; }
.practical-card p { color: rgba(246,241,230,.78); }
@media (max-width: 880px) { .practical-card { grid-template-columns: 1fr; padding: 50px 32px; } }

/* =============================================
   PAGE RENDEZ-VOUS
   ============================================= */
.booking { background: var(--cream); padding: 60px 0 110px; }

.stepper {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  margin-bottom: 30px;
  padding: 0 20px;
}
.step { display: flex; flex-direction: column; align-items: center; gap: 8px; text-align: center; opacity: .42; transition: opacity .35s; }
.step.active, .step.done { opacity: 1; }
.step-num {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: white;
  border: 1.5px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--ink-soft);
  font-weight: 500;
  transition: all .35s;
}
.step.active .step-num { background: var(--navy); color: var(--cream-light); border-color: var(--navy); }
.step.done .step-num { background: var(--gold); color: white; border-color: var(--gold); }
.step-label { font-size: .78rem; letter-spacing: .04em; color: var(--navy); font-weight: 600; text-transform: uppercase; }
.step-line { height: 1px; background: linear-gradient(to right, var(--line), var(--line-strong), var(--line)); min-width: 30px; }
@media (max-width: 880px) {
  .stepper { grid-template-columns: 1fr; gap: 12px; }
  .step-line { display: none; }
  .step { flex-direction: row; justify-content: flex-start; gap: 14px; }
}

.booking-card {
  background: white;
  border-radius: var(--r-xl);
  padding: 60px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.booking-card::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--navy), var(--gold), var(--navy));
}
.booking-step h2 { margin-bottom: 8px; }
.booking-help { color: var(--ink-soft); margin-bottom: 36px; font-size: 1rem; }

.motif-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-bottom: 40px; }
.motif input { position: absolute; opacity: 0; pointer-events: none; }
.motif-card { background: var(--cream-light); border: 1.5px solid var(--line); border-radius: var(--r-md); padding: 22px 24px; cursor: pointer; transition: all .25s; position: relative; }
.motif-card:hover { border-color: var(--gold); transform: translateY(-2px); }
.motif input:checked + .motif-card { background: var(--navy); border-color: var(--navy); color: var(--cream-light); }
.motif input:checked + .motif-card .motif-num { color: var(--gold-soft); }
.motif input:checked + .motif-card h4 { color: var(--cream-light); }
.motif input:checked + .motif-card p { color: rgba(246,241,230,.78); }
.motif-num { font-family: var(--serif); font-style: italic; font-size: .9rem; color: var(--gold-deep); display: block; margin-bottom: 6px; }
.motif-card h4 { font-size: 1.05rem; margin-bottom: 4px; color: var(--navy); font-weight: 600; }
.motif-card p { font-size: .82rem; color: var(--ink-soft); }

.channel-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-bottom: 40px; }
.ch-radio input { position: absolute; opacity: 0; pointer-events: none; }
.ch-card { background: var(--cream-light); border: 1.5px solid var(--line); border-radius: var(--r-md); padding: 26px; cursor: pointer; display: flex; align-items: center; gap: 18px; transition: all .25s; }
.ch-card:hover { border-color: var(--gold); transform: translateY(-2px); }
.ch-radio input:checked + .ch-card { background: var(--navy); border-color: var(--navy); }
.ch-radio input:checked + .ch-card h4 { color: var(--cream-light); }
.ch-radio input:checked + .ch-card p { color: rgba(246,241,230,.78); }
.ch-radio input:checked + .ch-card .ch-icon { background: var(--gold); color: white; }
.ch-icon { width: 48px; height: 48px; border-radius: 12px; background: white; display: flex; align-items: center; justify-content: center; color: var(--navy); flex-shrink: 0; transition: all .25s; }
.ch-icon svg { width: 22px; height: 22px; }
.ch-card h4 { font-size: 1.05rem; margin-bottom: 4px; color: var(--navy); font-weight: 600; }
.ch-card p { font-size: .82rem; color: var(--ink-soft); }
@media (max-width: 720px) { .motif-grid, .channel-grid { grid-template-columns: 1fr; } .booking-card { padding: 30px 22px; } }

.cal-wrap { background: var(--cream-light); border-radius: var(--r-lg); padding: 24px; margin-bottom: 26px; }
.cal-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.cal-month { font-family: var(--serif); font-size: 1.15rem; color: var(--navy); font-style: italic; }
.cal-nav { background: white; border: 1px solid var(--line); width: 36px; height: 36px; border-radius: 50%; cursor: pointer; font-size: 1.2rem; color: var(--navy); transition: all .25s; }
.cal-nav:hover { background: var(--navy); color: white; border-color: var(--navy); }
.cal-days { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; }
.cal-day { aspect-ratio: 1 / 1.1; border: 1.5px solid var(--line); background: white; border-radius: 12px; cursor: pointer; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px; transition: all .2s; }
.cal-day:hover:not(.disabled) { border-color: var(--gold); transform: translateY(-2px); }
.cal-day.selected { background: var(--navy); border-color: var(--navy); color: var(--cream-light); }
.cal-day.disabled { opacity: .3; cursor: not-allowed; }
.cal-day .dow { font-size: .68rem; letter-spacing: .04em; color: var(--ink-soft); text-transform: uppercase; font-weight: 600; }
.cal-day.selected .dow { color: var(--gold-soft); }
.cal-day .day { font-family: var(--serif); font-size: 1.4rem; color: var(--navy); font-weight: 500; }
.cal-day.selected .day { color: var(--cream-light); }

.slot-wrap { margin-bottom: 36px; }
.slot-title { font-family: var(--serif); font-size: 1.1rem; font-weight: 500; color: var(--navy); margin-bottom: 14px; }
.slot-title span { color: var(--gold-deep); font-style: italic; }
.slot-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; }
.slot { background: white; border: 1.5px solid var(--line); border-radius: 10px; padding: 12px 8px; text-align: center; cursor: pointer; font-family: var(--serif); font-size: 1.05rem; color: var(--navy); transition: all .2s; }
.slot:hover:not(.taken) { border-color: var(--gold); transform: translateY(-2px); }
.slot.selected { background: var(--gold); color: white; border-color: var(--gold); }
.slot.taken { opacity: .35; cursor: not-allowed; text-decoration: line-through; }
.slot-empty { grid-column: 1 / -1; text-align: center; color: var(--ink-soft); font-size: .9rem; padding: 20px 0; }
@media (max-width: 720px) { .slot-grid { grid-template-columns: repeat(3, 1fr); } }

.recap { background: var(--cream-light); border-radius: var(--r-md); padding: 22px 26px; margin-bottom: 32px; border: 1px dashed var(--line-strong); }
.recap-row { display: flex; justify-content: space-between; align-items: baseline; padding: 6px 0; font-size: .92rem; }
.recap-row + .recap-row { border-top: 1px dashed var(--line); }
.recap-row span { color: var(--ink-soft); }
.recap-row strong { color: var(--navy); font-weight: 600; }

.step-actions { display: flex; justify-content: space-between; align-items: center; padding-top: 28px; border-top: 1px solid var(--line); flex-wrap: wrap; gap: 14px; }
.step-meta { font-family: var(--serif); font-style: italic; color: var(--ink-soft); font-size: .9rem; }

.booking-done { text-align: center; padding: 30px 20px; }
.done-mark { width: 84px; height: 84px; border-radius: 50%; background: var(--gold); color: white; display: flex; align-items: center; justify-content: center; margin: 0 auto 30px; animation: done-pop .6s cubic-bezier(.5,1.6,.4,1); }
.done-mark svg { width: 38px; height: 38px; }
@keyframes done-pop { 0% { transform: scale(0); } 100% { transform: scale(1); } }
.done-lead { font-size: 1.05rem; max-width: 540px; margin: 0 auto 36px; }
.recap-final { max-width: 480px; margin: 0 auto 36px; text-align: left; background: white; border: 1.5px solid var(--gold); }
.done-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.booking-foot { text-align: center; margin-top: 32px; color: var(--ink-soft); font-size: .92rem; }
.booking-foot a { color: var(--navy); font-weight: 600; }
