/* =========================================================================
   Mövenpick Porticcio Residences — Site one-pager
   ========================================================================= */
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Inter:wght@300;400;500;600&display=swap");

:root {
  /* ---- ACCOR (marque principale) ----------------------------------------
     Identité Accor 2019/2024 : or miel signature + anthracite profond,
     minimalisme sophistiqué. Le bordeaux Mövenpick devient une touche. */
  --bx:      #1C1813;   /* "primaire" = anthracite Accor (boutons, fonds, titres) */
  --bx-dark: #0F0C08;   /* hover                                                   */
  --or:      #C2A05A;   /* Or Accor (signature)                                    */
  --or-soft: #E0C488;   /* Or clair (dégradé haut)                                 */
  --or-deep: #9E7C36;   /* Or profond (dégradé bas, contraste sur clair)           */

  /* ---- Mövenpick (touche secondaire) ----------------------------------- */
  --mp-bordeaux:      #722F37;
  --mp-bordeaux-soft: #8A3F48;

  --ivoire:  #F5EFE6;
  --ivoire-d:#EAE3D3;
  --noir:    #16130F;   /* noir chaud Accor                                        */
  --noir-2:  #3A352E;
  --noir-3:  #6E675C;
  --blanc:   #FFFFFF;
  --line:    #E2D9C7;
  --accor-grad: linear-gradient(180deg, #E0C488 0%, #C2A05A 55%, #9E7C36 100%);

  --serif: "Cormorant Garamond", "Bodoni Moda", Georgia, serif;
  --sans:  "Inter", "Helvetica Neue", sans-serif;
  --ease:  cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--sans);
  color: var(--noir);
  background: var(--blanc);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ----- Utils ------------------------------------------------------------- */
.lock {
  font-family: var(--sans);
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.42em; text-transform: uppercase;
  color: var(--or);
}
.eyebrow {
  font-family: var(--sans);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--or-deep);
}
.rule-or {
  display: block; width: 48px; height: 1px;
  background: var(--or); border: 0; margin: 0;
}
.reveal { opacity: 1; transform: none; transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
html.reveal-ready .reveal { opacity: 0; transform: translateY(28px); }
html.reveal-ready .reveal.is-visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.30s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* ----- Navigation -------------------------------------------------------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 48px;
  transition: background 0.4s var(--ease), padding 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.nav.scrolled {
  background: rgba(245, 239, 230, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line);
  padding-top: 14px; padding-bottom: 14px;
}
.nav-logo img { transition: filter 0.4s; }
/* Logo officiel ALL·Accor (marine) : inversé en blanc sur le hero, marine sur fond crème */
.nav:not(.scrolled) .nav-logo img { filter: brightness(0) invert(1) drop-shadow(0 1px 5px rgba(0,0,0,0.6)); }
.nav-links { display: flex; gap: 36px; }
.nav-links a {
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 500; color: rgba(255,255,255,0.85);
  position: relative; padding-bottom: 3px;
  transition: color 0.3s;
  white-space: nowrap;
}
.nav.scrolled .nav-links a { color: var(--noir); }
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: 0; right: 100%; height: 1px;
  background: var(--or); transition: right 0.3s var(--ease);
}
.nav-links a:hover::after { right: 0; }
.nav-links a:hover { color: var(--bx); }
.nav:not(.scrolled) .nav-links a:hover { color: var(--or-soft); }
.nav-cta {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 10px 20px; border: 1px solid var(--or); color: var(--or);
  transition: background 0.3s, color 0.3s;
}
.nav-cta:hover { background: var(--or); color: var(--noir); }

/* Hamburger mobile */
.nav-burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.nav-burger span { display: block; width: 22px; height: 1.5px; background: #fff; transition: all 0.3s; }
.nav.scrolled .nav-burger span { background: var(--noir); }
.nav-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-mobile {
  position: fixed; inset: 0; z-index: 99;
  background: var(--ivoire); display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 40px;
  opacity: 0; pointer-events: none; transition: opacity 0.4s;
}
.nav-mobile.open { opacity: 1; pointer-events: all; }
.nav-mobile a {
  font-family: var(--serif); font-size: 36px; font-weight: 300;
  color: var(--noir); letter-spacing: 0.06em;
}
.nav-mobile a:hover { color: var(--bx); }

/* ----- Section 1 : HERO ------------------------------------------------- */
.hero {
  position: relative; height: 100vh; min-height: 600px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 60%;
  will-change: transform;
}
.hero-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.55) 45%, rgba(0,0,0,0.65) 100%);
}
.hero-content {
  position: relative; text-align: center; padding: 120px 24px 40px; color: #fff;
  display: flex; flex-direction: column; align-items: center; gap: 22px;
  width: 100%;
}
.hero-title {
  font-family: var(--serif); font-size: clamp(32px, 3.8vw, 56px);
  font-weight: 300; letter-spacing: 0.1em; text-transform: uppercase;
  line-height: 1.12; color: #fff;
  text-shadow: 0 2px 32px rgba(0,0,0,0.7), 0 0 80px rgba(0,0,0,0.4);
}
.hero-sub {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(16px, 2vw, 22px); color: var(--or-soft); letter-spacing: 0.04em;
}
.hero-mention {
  font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(255,255,255,0.9); margin-top: 16px;
  max-width: 600px; line-height: 1.8;
  text-shadow: 0 1px 8px rgba(0,0,0,0.6);
}
.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.7);
  font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(180deg, var(--or), transparent);
  animation: scrollPulse 2s infinite var(--ease);
}
@keyframes scrollPulse { 0%,100%{opacity:1;transform:scaleY(1)} 50%{opacity:0.3;transform:scaleY(0.6)} }

/* ----- Section 2 : ESPRIT ----------------------------------------------- */
.esprit {
  background: var(--ivoire);
  padding: 140px 24px 120px;
  display: flex; flex-direction: column; align-items: center; gap: 48px;
}
.esprit-quote {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(20px, 2.6vw, 32px); line-height: 1.45;
  color: var(--noir); text-align: center;
  max-width: 1100px; font-weight: 300;
}
.esprit-text {
  font-size: 17px; line-height: 1.8; color: var(--noir-2);
  max-width: 680px; text-align: center;
}

/* ----- Section 3 : LA MARQUE -------------------------------------------- */
.marque {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 600px;
}
.marque-photo {
  background-size: cover; background-position: center;
  min-height: 500px;
}
.marque-right {
  background: var(--bx); color: #fff;
  padding: 80px 72px;
  display: flex; flex-direction: column; justify-content: center; gap: 22px;
}
.marque-right .eyebrow { color: var(--or-soft); }
.marque-h {
  font-family: var(--serif); font-size: clamp(28px, 3vw, 48px);
  font-weight: 300; letter-spacing: 0.12em; text-transform: uppercase;
  color: #fff; line-height: 1.15;
}
.marque-p { font-size: 15px; line-height: 1.7; color: rgba(255,255,255,0.82); max-width: 420px; }

.pillars {
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: var(--blanc);
}
.pillar {
  padding: 56px 36px; border-right: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 16px;
}
.pillar:last-child { border-right: 0; }
.pillar-icon {
  width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
}
.pillar-icon svg { stroke: var(--or); fill: none; stroke-width: 1.2; }
.pillar h4 {
  font-family: var(--serif); font-size: 20px; font-weight: 500; color: var(--noir);
}
.pillar p { font-size: 14px; line-height: 1.65; color: var(--noir-3); }

.marque-logo {
  background: var(--ivoire); padding: 48px;
  display: flex; align-items: center; justify-content: center;
  border-top: 1px solid var(--line);
}
.marque-logo img { height: 56px; }

/* ----- Section 4 : PORTICCIO -------------------------------------------- */
.emplacement { background: var(--blanc); padding: 120px 0 0; }
.emplacement-head {
  text-align: center; padding: 0 24px 64px;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.emplacement-h {
  font-family: var(--serif); font-size: clamp(30px, 4vw, 56px);
  font-weight: 300; color: var(--noir);
}
.map-wrap {
  height: 520px; position: relative;
}
#map { height: 100%; width: 100%; }
.map-label {
  background: var(--ivoire); color: var(--noir); border: 1px solid var(--or);
  font-family: var(--sans); font-size: 11px; letter-spacing: 0.08em; font-weight: 500;
  padding: 4px 10px; border-radius: 0; box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.map-label::before { display: none; }
.map-poi-tip {
  background: var(--ivoire); border: 1px solid var(--or);
  padding: 8px 14px; font-size: 12px; color: var(--noir); white-space: nowrap;
  font-family: var(--sans); letter-spacing: 0.04em;
}
.emplacement-text {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0; border-top: 1px solid var(--line);
}
.emplacement-item {
  padding: 40px 40px; border-right: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 8px;
}
.emplacement-item:last-child { border-right: 0; }
.emplacement-item h5 {
  font-family: var(--serif); font-size: 20px; font-weight: 500; color: var(--noir);
}
.emplacement-item p { font-size: 14px; line-height: 1.65; color: var(--noir-3); }

/* ----- Section 5 : L'HÔTEL --------------------------------------------- */
.hotel-section {
  position: relative; height: 90vh; min-height: 500px;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.hotel-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  will-change: transform;
}
.hotel-overlay {
  position: absolute; inset: 0;
  background: rgba(114, 47, 55, 0.72);
}
.hotel-content {
  position: relative; text-align: center; color: #fff; padding: 0 24px;
  display: flex; flex-direction: column; align-items: center; gap: 20px;
  max-width: 800px;
}
.hotel-h {
  font-family: var(--serif); font-size: clamp(28px, 4vw, 56px);
  letter-spacing: 0.2em; text-transform: uppercase; font-weight: 300; color: #fff;
}
.hotel-accroche {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(16px, 2.5vw, 26px); color: var(--or-soft);
}
.hotel-services {
  display: flex; gap: 28px; flex-wrap: wrap; justify-content: center;
  margin-top: 8px;
}
.hotel-services span {
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.72); border: 0.5px solid rgba(201,169,97,0.5); padding: 8px 14px;
}

/* ----- Section 6 : LES RÉSIDENCES --------------------------------------- */
.residences { background: var(--ivoire); padding: 120px 48px; }
.residences-head {
  text-align: center; margin-bottom: 72px;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.residences-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; max-width: 1280px; margin: 0 auto; }
.res-card {
  background: var(--blanc); border-radius: 2px; overflow: hidden;
  box-shadow: 0 4px 24px rgba(26,26,26,0.08);
  transition: box-shadow 0.4s var(--ease), transform 0.4s var(--ease);
}
.res-card:hover { box-shadow: 0 12px 40px rgba(26,26,26,0.14); transform: translateY(-4px); }
.res-slider { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.res-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 0.8s var(--ease);
}
.res-slide.active { opacity: 1; }
.slider-dots {
  position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 6px;
}
.slider-dot {
  width: 6px; height: 6px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.7);
  cursor: pointer; transition: background 0.3s;
}
.slider-dot.active { background: var(--or); border-color: var(--or); }
.res-body { padding: 36px 36px 40px; display: flex; flex-direction: column; gap: 14px; }
.res-body .eyebrow { color: var(--or-deep); }
.res-h {
  font-family: var(--serif); font-size: 34px; font-weight: 400; color: var(--noir);
  line-height: 1.1;
}
.res-pos { font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--noir-3); }
.res-strip {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--or); border-bottom: 1px solid var(--or);
  padding: 14px 0; gap: 0; margin-top: 4px;
}
.res-strip > div {
  padding: 0 16px; border-right: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 4px;
}
.res-strip > div:first-child { padding-left: 0; }
.res-strip > div:last-child { border-right: 0; }
.res-strip .label { font-size: 9px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--or-deep); }
.res-strip .value { font-family: var(--serif); font-size: 18px; color: var(--noir); }
.res-cta {
  align-self: flex-start; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--bx); border-bottom: 1px solid var(--or); padding-bottom: 3px;
  transition: color 0.3s, border-color 0.3s;
}
.res-cta:hover { color: var(--or-deep); border-color: var(--bx); }

/* ----- Section 7 : VIVRE EN PROPRIÉTAIRE -------------------------------- */
.proprio {
  position: relative; min-height: 600px;
  display: flex; align-items: center; justify-content: center;
  padding: 80px 24px; overflow: hidden;
}
.proprio-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(0.55);
}
.proprio-box {
  position: relative; background: rgba(245,239,230,0.96);
  padding: 64px 80px; max-width: 700px; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 28px;
}
.proprio-h {
  font-family: var(--serif); font-size: clamp(22px, 3vw, 38px);
  letter-spacing: 0.14em; text-transform: uppercase; font-weight: 300; color: var(--bx);
}
.proprio-list { list-style: none; display: flex; flex-direction: column; gap: 12px; width: 100%; }
.proprio-list li {
  display: flex; align-items: baseline; gap: 12px;
  font-size: 15px; color: var(--noir-2); text-align: left;
}
.proprio-list li::before { content: '—'; color: var(--or); font-family: var(--serif); flex-shrink: 0; }

/* ----- Section 8 : ENGAGEMENT ------------------------------------------ */
.durable {
  background: var(--ivoire); padding: 120px 48px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
  max-width: 1280px; margin: 0 auto;
}
.durable-text { display: flex; flex-direction: column; gap: 22px; }
.durable-h {
  font-family: var(--serif); font-size: clamp(28px, 3vw, 48px);
  font-weight: 300; color: var(--noir);
}
.durable-p { font-size: 16px; line-height: 1.8; color: var(--noir-2); }
.durable-badge {
  align-self: flex-start; display: inline-flex; align-items: center; gap: 14px;
  border: 1px solid var(--or); padding: 10px 20px;
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--or-deep);
}
.durable-badge img { width: 44px; height: 44px; flex-shrink: 0; }
.durable-kpis { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.durable-kpi {
  background: var(--blanc); padding: 36px; display: flex; flex-direction: column; gap: 6px;
}
.durable-kpi .num {
  font-family: var(--serif); font-size: 52px; line-height: 1; color: var(--or); font-weight: 300;
}
.durable-kpi .lbl { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--noir-3); }

/* ----- Section 9 : INVESTISSEMENT --------------------------------------- */
.invest {
  background: var(--bx); padding: 120px 48px;
  display: flex; flex-direction: column; align-items: center; gap: 72px;
}
.invest-head { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.invest-h {
  font-family: var(--serif); font-size: clamp(28px, 4vw, 56px);
  letter-spacing: 0.12em; text-transform: uppercase; font-weight: 300; color: #fff;
}
.invest-kpis {
  display: grid; grid-template-columns: repeat(4, 1fr); width: 100%; max-width: 1100px;
  border-top: 1px solid rgba(201,169,97,0.4); border-bottom: 1px solid rgba(201,169,97,0.4);
}
.invest-kpi {
  padding: 48px 32px; text-align: center;
  border-right: 1px solid rgba(201,169,97,0.3);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.invest-kpi:last-child { border-right: 0; }
.invest-num {
  font-family: var(--serif); font-size: clamp(40px, 5vw, 80px); line-height: 1;
  color: var(--or); font-weight: 300;
  min-height: clamp(40px, 5vw, 80px);
  display: flex; align-items: center; justify-content: center;
}
.invest-num--ticket { font-size: clamp(26px, 3.1vw, 46px); white-space: nowrap; }
.invest-lbl { font-size: 10px; letter-spacing: 0.26em; text-transform: uppercase; color: rgba(255,255,255,0.65); }
.invest-cols {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  max-width: 1100px; width: 100%;
  border-top: 1px solid rgba(201,169,97,0.25);
}
.invest-col {
  padding: 48px 40px; border-right: 1px solid rgba(201,169,97,0.25);
  display: flex; flex-direction: column; gap: 14px;
}
.invest-col:last-child { border-right: 0; }
.invest-col .label { font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--or-soft); }
.invest-col h5 {
  font-family: var(--serif); font-size: 22px; font-weight: 500; color: var(--or); line-height: 1.2;
}
.invest-col p { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.78); }
.invest-legal {
  font-size: 11px; color: rgba(255,255,255,0.45); text-align: center; max-width: 700px; line-height: 1.6;
}

/* ----- Section 10 : CONTACT --------------------------------------------- */
.contact-section { display: grid; grid-template-columns: 1fr 1fr; background: var(--ivoire); }
.contact-left {
  padding: 100px 72px; display: flex; flex-direction: column; gap: 28px;
  border-right: 1px solid var(--line);
}
.contact-h {
  font-family: var(--serif); font-size: clamp(28px, 3vw, 48px);
  font-weight: 300; color: var(--bx);
}
.contact-info { display: flex; flex-direction: column; gap: 14px; }
.contact-info-item { display: flex; flex-direction: column; gap: 3px; }
.contact-info-item .label { font-size: 9px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--or-deep); }
.contact-info-item span { font-size: 15px; color: var(--noir); }
.contact-right { padding: 100px 72px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--or-deep); font-weight: 500; }
.form-field input, .form-field select, .form-field textarea {
  font-family: var(--sans); font-size: 14px; color: var(--noir);
  background: var(--blanc); border: 1px solid var(--line-strong, #C9BFA7);
  padding: 13px 16px; transition: border 0.25s;
  border-radius: 0; outline: none; width: 100%;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  border-color: var(--bx); box-shadow: 0 0 0 3px rgba(114,47,55,0.08);
}
.form-field textarea { resize: vertical; min-height: 110px; }
.form-submit {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--bx); color: #fff; border: 0; padding: 16px 32px;
  font-family: var(--sans); font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
  cursor: pointer; margin-top: 8px; width: 100%; justify-content: center;
  transition: background 0.3s;
}
.form-submit:hover { background: var(--bx-dark); }
.form-rgpd {
  font-size: 11px; color: var(--noir-3); margin-top: 10px; line-height: 1.5;
}
.form-success {
  display: none; text-align: center; padding: 32px;
  background: #EAF2E8; border: 1px solid #4F7A4A; color: #2E4A2C;
  font-size: 15px; line-height: 1.6;
}
.form-success.visible { display: block; }

/* ----- Footer ----------------------------------------------------------- */
.footer {
  background: var(--noir); color: rgba(255,255,255,0.7);
  padding: 72px 80px 40px;
}
.footer-top {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 64px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(201,169,97,0.2);
}
.footer-brand img { height: 64px; opacity: 0.95; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 13px; margin-top: 16px; line-height: 1.6; }
.footer-col h6 { font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--or-soft); margin-bottom: 20px; font-weight: 500; }
.footer-col a { display: block; font-size: 13px; color: rgba(255,255,255,0.65); padding: 4px 0; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  padding-top: 28px; display: flex; justify-content: space-between; align-items: center;
  font-size: 11px; color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: rgba(255,255,255,0.8); }

/* ----- RGPD Cookie banner ----------------------------------------------- */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
  background: var(--noir); color: rgba(255,255,255,0.85);
  padding: 20px 40px; display: flex; align-items: center; justify-content: space-between; gap: 24px;
  transform: translateY(0); transition: transform 0.4s var(--ease);
  border-top: 2px solid var(--or);
}
.cookie-banner.hidden { transform: translateY(120%); }
.cookie-banner p { font-size: 13px; line-height: 1.5; max-width: 680px; }
.cookie-banner a { color: var(--or); }
.cookie-btns { display: flex; gap: 12px; flex-shrink: 0; }
.cookie-btn {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 10px 18px; border: 0; cursor: pointer; font-family: var(--sans);
}
.cookie-btn--accept { background: var(--or); color: var(--noir); }
.cookie-btn--decline { background: transparent; color: rgba(255,255,255,0.6); border: 1px solid rgba(255,255,255,0.2); }

/* ----- Responsive ------------------------------------------------------- */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .marque { grid-template-columns: 1fr; }
  .marque-photo { min-height: 340px; }
  .pillars { grid-template-columns: 1fr 1fr; }
  .pillars .pillar:nth-child(2) { border-right: 0; }
  .pillars .pillar:nth-child(3) { border-top: 1px solid var(--line); }
  .emplacement-text { grid-template-columns: 1fr; }
  .emplacement-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .residences-grid { grid-template-columns: 1fr; }
  .durable { grid-template-columns: 1fr; padding: 80px 32px; }
  .invest-kpis { grid-template-columns: 1fr 1fr; }
  .invest-kpi:nth-child(2) { border-right: 0; }
  .invest-cols { grid-template-columns: 1fr; }
  .invest-col { border-right: 0; border-bottom: 1px solid rgba(201,169,97,0.2); }
  .contact-section { grid-template-columns: 1fr; }
  .contact-left { border-right: 0; border-bottom: 1px solid var(--line); padding: 72px 32px; }
  .contact-right { padding: 72px 32px; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .nav { padding: 18px 24px; }
  .hero-title { letter-spacing: 0.1em; }
  .esprit { padding: 80px 24px; }
  .marque-right { padding: 48px 32px; }
  .residences { padding: 80px 24px; }
  .proprio-box { padding: 40px 28px; }
  .invest { padding: 80px 24px; }
  .invest-kpis { grid-template-columns: 1fr 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer { padding: 48px 24px 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .cookie-banner { flex-direction: column; padding: 20px 24px; }
}

/* ===== Impression PDF — préserve fonds sombres, photos & dégradés ===== */
@media print {
  * {
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
    color-adjust: exact !important;
  }
  html, body { background: #fff !important; }
  /* éléments d'interface inutiles à l'impression */
  .nav, .nav-mobile, .nav-burger, .cookie-banner, .hero-scroll { display: none !important; }
  /* le hero n'est plus collé sous une nav fixe */
  .hero { height: 86vh !important; }
  /* éviter de couper une section au milieu d'une page */
  section { break-inside: avoid; page-break-inside: avoid; }
  .marque, .marque-split, .residences-grid, .durable, .contact-section,
  .pillars, .invest-kpis, .invest-cols, .res-card, .pillar { break-inside: avoid; page-break-inside: avoid; }
  /* révéler tout le contenu animé (sinon invisible à l'impression) */
  .reveal { opacity: 1 !important; transform: none !important; }
  /* la carte Leaflet ne s'imprime pas bien — la masquer proprement */
  #map { display: none !important; }
  .map-wrap { display: none !important; }
}

/* ========================================================================
   Optimisation conversion — CTA hero, bandeau, CTA sections, FAQ,
   formulaire 2 étapes, sticky mobile
   ======================================================================== */

/* --- CTA hero --- */
.hero-ctas {
  display: flex; gap: 16px; margin-top: 34px; flex-wrap: wrap; justify-content: center;
}
.hero-btn {
  display: inline-block; padding: 15px 34px;
  font-family: var(--sans); font-size: 12px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase; text-decoration: none;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.hero-btn--primary {
  background: var(--accor-grad); color: var(--noir); border: 1px solid transparent;
}
.hero-btn--primary:hover { background: var(--or-soft); }
.hero-btn--ghost {
  border: 1px solid rgba(255,255,255,0.55); color: #fff;
}
.hero-btn--ghost:hover { border-color: var(--or); color: var(--or-soft); }

/* --- Bandeau rareté --- */
.scarcity-bar {
  display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap;
  background: var(--bx); color: rgba(255,255,255,0.85);
  padding: 13px 24px; text-align: center;
  font-family: var(--sans); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
}
.scarcity-bar strong { color: var(--or-soft); font-weight: 600; }
.scarcity-bar .sep { color: var(--or); }

/* --- CTA de section --- */
.section-cta {
  background: var(--ivoire-d); padding: 44px 24px; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 18px;
}
.section-cta p {
  font-family: var(--serif); font-size: clamp(18px, 2.2vw, 26px);
  font-style: italic; color: var(--noir); margin: 0;
}
.section-cta-btn {
  display: inline-block; padding: 14px 32px;
  background: var(--bx); color: #fff; text-decoration: none;
  font-family: var(--sans); font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
  transition: background 0.3s;
}
.section-cta-btn:hover { background: var(--or); color: var(--noir); }

/* --- FAQ --- */
.faq {
  background: var(--ivoire); padding: 110px 24px;
  display: flex; flex-direction: column; align-items: center; gap: 28px;
}
.faq-h {
  font-family: var(--serif); font-size: clamp(26px, 3vw, 42px);
  font-weight: 300; color: var(--noir); text-align: center; line-height: 1.25;
}
.faq-h em { color: var(--mp-bordeaux); font-style: italic; }
.faq-list { max-width: 780px; width: 100%; margin-top: 12px; }
.faq-item {
  border-bottom: 1px solid var(--line); background: transparent;
}
.faq-item summary {
  cursor: pointer; list-style: none; position: relative;
  padding: 22px 44px 22px 0;
  font-family: var(--serif); font-size: 19px; color: var(--noir);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; position: absolute; right: 6px; top: 50%; transform: translateY(-50%);
  font-family: var(--sans); font-size: 22px; font-weight: 300; color: var(--or-deep);
  transition: transform 0.25s;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item p {
  padding: 0 24px 24px 0; font-size: 15px; line-height: 1.8; color: var(--noir-2);
}
.faq-item p strong { color: var(--noir); }

/* --- Formulaire 2 étapes --- */
.form-progress {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--or-deep); margin-bottom: 18px; font-weight: 500;
}
.form-step[hidden] { display: none; }

/* --- Sticky CTA mobile --- */
.sticky-cta {
  display: none;
}
@media (max-width: 820px) {
  .sticky-cta {
    display: block; position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
    background: var(--bx); color: var(--or-soft); text-align: center; text-decoration: none;
    padding: 16px 20px calc(16px + env(safe-area-inset-bottom));
    font-family: var(--sans); font-size: 12px; font-weight: 500;
    letter-spacing: 0.2em; text-transform: uppercase;
    border-top: 1px solid var(--or);
    transition: transform 0.3s;
  }
  .sticky-cta.hidden { transform: translateY(110%); }
  .hero-ctas { flex-direction: column; width: 100%; padding: 0 8px; }
  .hero-btn { text-align: center; }
}

/* --- Bandeau réassurance (remplace Marque/Hôtel/Durable) --- */
.reassure { background: var(--ivoire-d); padding: 56px 24px; }
.reassure-inner {
  max-width: 980px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center; gap: 40px;
}
.reassure-logo { height: 52px; flex-shrink: 0; }
.reassure-gg { height: 62px; flex-shrink: 0; }
.reassure-txt {
  font-size: 14.5px; line-height: 1.8; color: var(--noir-2); max-width: 560px;
}
.reassure-txt strong { color: var(--noir); }
@media (max-width: 760px) {
  .reassure-inner { flex-direction: column; gap: 22px; text-align: center; }
}

/* --- Ligne services hôtel (section résidence) --- */
.res-services {
  text-align: center; margin: 18px auto 0; max-width: 720px;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--or-deep); line-height: 2;
}

/* ========================================================================
   Adoucissement — bandeaux clairs, respirations photo, transitions douces
   ======================================================================== */

/* Bandeau rareté : passe du bloc sombre à un filet ivoire raffiné */
.scarcity-bar {
  background: var(--ivoire); color: var(--noir-2);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 17px 24px;
  font-size: 11.5px; letter-spacing: 0.18em;
}
.scarcity-bar strong { color: var(--or-deep); font-weight: 600; }
.scarcity-bar .sep { color: var(--or); }

/* CTA de section : composition aérée sur fond blanc, bouton contour or */
.section-cta { background: var(--blanc); padding: 88px 24px; gap: 24px; }
.section-cta::before {
  content: ''; display: block; width: 48px; height: 1px; background: var(--or);
}
.section-cta p { font-size: clamp(20px, 2.4vw, 30px); max-width: 640px; }
.section-cta-btn {
  background: transparent; color: var(--or-deep); border: 1px solid var(--or);
  padding: 14px 36px;
}
.section-cta-btn:hover { background: var(--or); color: var(--noir); }

/* Réassurance : plus d'air, fond blanc */
.reassure { background: var(--blanc); padding: 96px 24px; border-top: 1px solid var(--line); }
.reassure-txt { font-size: 15px; }

/* Mosaïque photos (section Résidence) */
.photo-mosaic {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
  max-width: 1180px; margin: 64px auto 0; padding: 0 24px;
}
.photo-mosaic figure {
  height: 300px; background-size: cover; background-position: center;
  border-radius: 3px;
}
.photo-mosaic figure:nth-child(2) { margin-top: 26px; }
.photo-mosaic figure:nth-child(4) { margin-top: 26px; }
@media (max-width: 900px) {
  .photo-mosaic { grid-template-columns: 1fr 1fr; }
  .photo-mosaic figure { height: 210px; }
}

/* Divider photo pleine largeur avec citation */
.photo-divider {
  position: relative; min-height: 440px;
  display: flex; align-items: center; justify-content: center;
  background-size: cover; background-position: center 45%;
}
.photo-divider-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,12,8,0.35), rgba(15,12,8,0.55));
}
.photo-divider p {
  position: relative; font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: clamp(24px, 3.2vw, 42px); line-height: 1.35; letter-spacing: 0.04em;
  color: #fff; text-align: center; max-width: 860px; padding: 80px 24px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.5);
}

/* Bandeau CGP */
.cgp-band {
  display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap;
  background: var(--ivoire); border-top: 1px solid var(--line);
  padding: 52px 24px;
}
.cgp-band p {
  display: flex; flex-direction: column; gap: 8px;
  font-family: var(--serif); font-size: clamp(19px, 2vw, 25px); color: var(--noir);
  margin: 0;
}
@media (max-width: 700px) { .cgp-band { text-align: center; } .cgp-band p { align-items: center; } }

/* --- Panneau de sortie (desktop) --- */
.exit-panel {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(15, 12, 8, 0.55);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  animation: exitFade 0.35s var(--ease);
}
.exit-panel[hidden] { display: none; }
@keyframes exitFade { from { opacity: 0; } to { opacity: 1; } }
.exit-box {
  position: relative; background: var(--ivoire);
  border-top: 2px solid var(--or);
  max-width: 480px; width: 100%; padding: 48px 44px 36px;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.35);
  animation: exitRise 0.4s var(--ease);
}
@keyframes exitRise { from { transform: translateY(18px); opacity: 0; } to { transform: none; opacity: 1; } }
.exit-close {
  position: absolute; top: 10px; right: 14px;
  background: none; border: 0; cursor: pointer;
  font-size: 26px; font-weight: 300; color: var(--noir-3); line-height: 1;
}
.exit-close:hover { color: var(--noir); }
.exit-box h3 {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(24px, 2.6vw, 32px); color: var(--noir); letter-spacing: 0.03em;
}
.exit-box > p { font-size: 14px; line-height: 1.7; color: var(--noir-2); max-width: 360px; }
#exit-form { width: 100%; display: flex; flex-direction: column; gap: 12px; margin-top: 8px; }
#exit-email {
  width: 100%; border: 0; border-bottom: 1px solid var(--line);
  background: transparent; padding: 12px 4px; text-align: center;
  font-family: var(--sans); font-size: 15px; color: var(--noir);
}
#exit-email:focus { outline: none; border-bottom-color: var(--or); }
.exit-rgpd { font-size: 10.5px; color: var(--noir-3); line-height: 1.5; }
.exit-rgpd a { color: var(--or-deep); text-decoration: underline; }
.exit-success { font-family: var(--serif); font-size: 18px; color: var(--noir); padding: 12px 0; }
