/* =========================================================
   EVIIA — Landing "Riva Léman" / Direction B
   ========================================================= */

:root {
  /* Palette */
  --night: #06182A;
  --night-deep: #030D17;
  --night-soft: #0A2138;
  --snow: #F2F0EB;
  --snow-dim: #C4C0B5;
  --champagne: #C8A875;
  --champagne-bright: #D9BB87;
  --champagne-dim: rgba(200, 168, 117, 0.45);
  --mahogany: #5C3A29;
  --rule-light: rgba(242, 240, 235, 0.12);
  --rule-strong: rgba(242, 240, 235, 0.25);

  /* Type scale */
  --display: 'Fraunces', 'Times New Roman', serif;
  --sans: 'Manrope', system-ui, -apple-system, sans-serif;

  /* Easing */
  --ease-cinematic: cubic-bezier(.2,.6,.2,1);

  /* Spacing */
  --gutter: clamp(20px, 4vw, 56px);
  --sect-pad: clamp(80px, 10vw, 160px);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--night);
  color: var(--snow);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-optical-sizing: auto;
}

/* Subtle grain overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  z-index: 200;
  background-image: radial-gradient(rgba(242,240,235,0.012) 1px, transparent 1px);
  background-size: 2px 2px;
  mix-blend-mode: overlay;
}

img, video, svg { display: block; max-width: 100%; height: auto; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.container--narrow { max-width: 880px; }

/* ============ HEADER ============ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--gutter);
  transition: background 0.4s ease, padding 0.4s ease, backdrop-filter 0.4s ease;
}
.site-header.is-scrolled {
  background: rgba(6, 24, 42, 0.85);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  padding: 14px var(--gutter);
  border-bottom: 1px solid var(--rule-light);
}

.logo-link {
  display: inline-block;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.logo-link:hover { opacity: 0.78; }
.logo-wordmark {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: 28px;
  letter-spacing: 0.01em;
  color: var(--snow);
  font-variation-settings: "SOFT" 60;
  line-height: 1;
}

.site-nav {
  display: flex;
  gap: 36px;
  align-items: center;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 400;
}
.site-nav a {
  opacity: 0.75;
  transition: opacity 0.3s, color 0.3s;
  padding: 8px 0;
  position: relative;
}
.site-nav a:hover { opacity: 1; color: var(--champagne); }
.site-nav .nav-cta {
  color: var(--night-deep);
  background: var(--champagne);
  padding: 10px 18px;
  opacity: 1;
  transition: background 0.3s, color 0.3s;
}
.site-nav .nav-cta:hover {
  background: var(--champagne-bright);
  color: var(--night-deep);
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 var(--gutter) clamp(64px, 8vh, 120px);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6,24,42,0.5) 0%, rgba(6,24,42,0.2) 35%, rgba(3,13,23,0.9) 100%),
    radial-gradient(ellipse 70% 50% at 30% 70%, rgba(6,24,42,0.6), transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  animation: heroFadeUp 1.4s var(--ease-cinematic);
}

.eyebrow {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 28px;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: fadeUp 1.2s 0.3s ease forwards;
}
.eyebrow .dot {
  width: 6px; height: 6px;
  background: var(--champagne);
  border-radius: 50%;
  animation: pulse 2.4s ease infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.5; }
}

.hero-title {
  font-family: var(--display);
  font-weight: 450;
  font-size: clamp(44px, 8.2vw, 132px);
  line-height: 0.98;
  letter-spacing: -0.022em;
  color: var(--snow);
  max-width: 18ch;
  margin-bottom: 44px;
  opacity: 0;
  animation: fadeUp 1.6s 0.5s var(--ease-cinematic) forwards;
  font-variation-settings: "SOFT" 40;
}
.hero-title em {
  font-style: italic;
  color: var(--champagne);
  font-weight: 450;
  font-variation-settings: "SOFT" 60;
}

.hero-meta {
  display: flex;
  align-items: flex-end;
  gap: clamp(32px, 5vw, 80px);
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1.6s 0.9s ease forwards;
}
.hero-sub {
  font-weight: 300;
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.55;
  color: var(--snow);
  opacity: 0.88;
  max-width: 42ch;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 18px 28px;
  transition: all 0.4s var(--ease-cinematic);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}
.cta-btn .arrow { transition: transform 0.4s var(--ease-cinematic); display: inline-block; }
.cta-btn:hover .arrow { transform: translateX(6px); }
.cta-btn--gold {
  color: var(--night-deep);
  background: var(--champagne);
  border-color: var(--champagne);
}
.cta-btn--gold:hover {
  background: transparent;
  color: var(--champagne);
}
.cta-btn--block {
  width: 100%;
  justify-content: center;
  padding: 22px 28px;
}

.scroll-cue {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--snow);
  opacity: 0.5;
  text-align: center;
  animation: bounce 2.4s ease infinite;
  pointer-events: none;
}
.scroll-cue::before {
  content: '';
  display: block;
  width: 1px;
  height: 30px;
  background: var(--champagne-dim);
  margin: 0 auto 10px;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.5; }
  50% { transform: translateX(-50%) translateY(8px); opacity: 0.95; }
}

@keyframes heroFadeUp { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }

/* ============ SECTIONS GENERICS ============ */
.section { padding: var(--sect-pad) 0; position: relative; }
.section--dark { background: var(--night-deep); border-top: 1px solid var(--rule-light); border-bottom: 1px solid var(--rule-light); }
.section--cta { background: linear-gradient(180deg, var(--night-deep) 0%, var(--night) 100%); }

.section-head { margin-bottom: clamp(48px, 6vw, 80px); max-width: 920px; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }

.section-num {
  font-family: var(--display);
  font-size: 14px;
  letter-spacing: 0.32em;
  color: var(--champagne);
  margin-bottom: 16px;
  font-weight: 400;
}
.section-title {
  font-family: var(--display);
  font-weight: 450;
  font-size: clamp(32px, 5.2vw, 68px);
  line-height: 1.08;
  letter-spacing: -0.018em;
  color: var(--snow);
  margin-bottom: 24px;
  font-variation-settings: "SOFT" 40;
}
.section-title em {
  font-style: italic;
  color: var(--champagne);
  font-variation-settings: "SOFT" 60;
}
.section-lead {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.6;
  color: var(--snow);
  opacity: 0.78;
  max-width: 60ch;
  font-weight: 300;
}
.section-head--center .section-lead { margin-left: auto; margin-right: auto; }

/* Reveal (scroll) */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s var(--ease-cinematic) var(--delay, 0s), transform 1s var(--ease-cinematic) var(--delay, 0s);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ============ KPI STRIP ============ */
.kpi-strip {
  background: var(--night-deep);
  padding: clamp(80px, 10vw, 140px) 0;
  border-top: 1px solid var(--rule-light);
  border-bottom: 1px solid var(--rule-light);
}
.kpi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.kpi-cell {
  padding: 0 clamp(16px, 3vw, 48px);
  border-right: 1px solid var(--rule-light);
}
.kpi-cell:last-child { border-right: none; }
.kpi-cell:first-child { padding-left: 0; }
.kpi-cell:last-child { padding-right: 0; }

.kpi-label {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 24px;
  font-weight: 500;
}
.kpi-value {
  font-family: var(--display);
  font-weight: 450;
  font-size: clamp(48px, 7vw, 92px);
  line-height: 1;
  color: var(--snow);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  font-variation-settings: "SOFT" 40;
}
.kpi-value em {
  font-style: italic;
  color: var(--champagne);
  font-weight: 400;
  font-size: 0.7em;
  margin-left: 0.05em;
}
.kpi-desc {
  font-size: 14px;
  color: var(--snow);
  opacity: 0.65;
  line-height: 1.5;
  max-width: 30ch;
}

/* ============ LE BIEN ============ */
.section--bien { background: var(--night); }

.bien-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}
.bien-photo {
  grid-column: span 2;
  position: relative;
  margin: 0;
  overflow: hidden;
}
.bien-photo img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 1.2s var(--ease-cinematic);
}
.bien-photo:hover img { transform: scale(1.03); }
.bien-photo figcaption {
  font-family: var(--display);
  font-style: italic;
  font-size: 13px;
  color: var(--snow);
  opacity: 0.65;
  margin-top: 12px;
  padding: 0 4px;
}
.bien-photo--lead { grid-column: span 4; }
.bien-photo--lead img { aspect-ratio: 16/10; }
.bien-photo--wide { grid-column: span 4; }
.bien-photo--wide img { aspect-ratio: 16/9; }
.bien-photo--tall {
  grid-column: span 2;
  grid-row: span 2;
}
.bien-photo--tall img {
  aspect-ratio: 3/4;
  height: 100%;
  object-fit: cover;
}

.bien-specs {
  grid-column: span 2;
  background: var(--night-deep);
  border: 1px solid var(--rule-light);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.bien-specs h3 {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: 24px;
  color: var(--champagne);
  margin-bottom: 24px;
}
.specs-list {
  display: grid;
  gap: 14px;
}
.specs-list > div {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--rule-light);
  font-size: 14px;
}
.specs-list > div:last-child { border-bottom: none; }
.specs-list dt {
  color: var(--snow);
  opacity: 0.55;
  font-weight: 400;
}
.specs-list dd { color: var(--snow); font-weight: 400; }

/* ============ VISITE EXPRESS ============ */
.section--visite { background: var(--night); }
.visite-express-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(48px, 6vw, 120px);
  align-items: center;
}
.visite-express-text .section-num { margin-bottom: 16px; }
.visite-express-text .section-title { margin-bottom: 28px; }
.visite-express-lead {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.6;
  color: var(--snow);
  opacity: 0.78;
  font-weight: 300;
  margin-bottom: 32px;
  max-width: 50ch;
}
.visite-express-list {
  list-style: none;
  display: grid;
  gap: 12px;
  border-top: 1px solid var(--rule-light);
  padding-top: 24px;
}
.visite-express-list li {
  display: flex;
  align-items: baseline;
  gap: 14px;
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(15px, 1.2vw, 17px);
  color: var(--snow);
  opacity: 0.85;
  font-variation-settings: "SOFT" 60;
}
.visite-express-list .ve-num {
  color: var(--champagne);
  font-style: normal;
  font-size: 20px;
  line-height: 1;
}

.visite-express-phone {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.phone-frame {
  position: relative;
  width: clamp(240px, 26vw, 320px);
  aspect-ratio: 9/19.5;
  background: #0a0a0a;
  border-radius: 44px;
  padding: 12px;
  box-shadow:
    0 0 0 2px rgba(200, 168, 117, 0.18),
    0 30px 80px rgba(0, 0, 0, 0.6),
    0 60px 120px rgba(6, 24, 42, 0.4);
  overflow: hidden;
}
.phone-notch {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 24px;
  background: #000;
  border-radius: 100px;
  z-index: 2;
}
.phone-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 32px;
  display: block;
}
.visite-express-phone figcaption {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--snow);
  opacity: 0.55;
  font-weight: 500;
}

/* ============ MACHINE ============ */
.machine-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule-light);
  border-top: 1px solid var(--rule-light);
  border-bottom: 1px solid var(--rule-light);
  border-left: 1px solid var(--rule-light);
  border-right: 1px solid var(--rule-light);
}
.machine-card {
  background: var(--night-deep);
  padding: clamp(32px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background 0.4s var(--ease-cinematic);
}
.machine-card:hover { background: var(--night-soft); }
.machine-card-icon {
  font-family: var(--display);
  font-size: 36px;
  color: var(--champagne);
  opacity: 0.85;
  line-height: 1;
}
.machine-card h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.25;
  color: var(--snow);
  margin-bottom: 4px;
}
.machine-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--snow);
  opacity: 0.72;
}
.machine-card--accent {
  background: linear-gradient(180deg, var(--night-deep) 0%, var(--night-soft) 100%);
}
.machine-card--accent h3 { color: var(--champagne); font-style: italic; }

/* ============ ACTIFS ============ */
.actifs-list {
  list-style: none;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--rule-light);
}
.actif {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 32px;
  padding: clamp(28px, 3vw, 44px) 0;
  border-bottom: 1px solid var(--rule-light);
  align-items: start;
}
.actif-num {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(36px, 4vw, 56px);
  color: var(--champagne);
  font-weight: 400;
  line-height: 1;
}
.actif h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.25;
  color: var(--snow);
  margin-bottom: 10px;
}
.actif p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--snow);
  opacity: 0.72;
  max-width: 70ch;
}

/* ============ EMPLACEMENT ============ */
.emplacement-photo {
  margin: 0 0 64px;
  overflow: hidden;
  position: relative;
}
.emplacement-photo img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.emplacement-video {
  margin: 0 0 64px;
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--night-deep);
}
.emplacement-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.emplacement-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3,13,23,0.05) 0%, rgba(3,13,23,0.55) 75%, rgba(3,13,23,0.92) 100%),
    linear-gradient(90deg, rgba(3,13,23,0.45) 0%, transparent 35%);
}
.emplacement-caption {
  position: absolute;
  bottom: clamp(24px, 4vw, 56px);
  left: clamp(24px, 4vw, 56px);
  right: clamp(24px, 4vw, 56px);
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 60ch;
}
.ec-eyebrow {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--champagne);
  font-weight: 500;
}
.emplacement-caption p {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.4;
  color: var(--snow);
  font-variation-settings: "SOFT" 60;
}
.emplacement-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule-light);
}
.empl-cell {
  background: var(--night-deep);
  padding: clamp(28px, 3vw, 44px);
}
.empl-num {
  font-family: var(--display);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(48px, 5vw, 72px);
  color: var(--champagne);
  line-height: 1;
  margin-bottom: 8px;
}
.empl-num small {
  font-size: 0.5em;
  color: var(--snow);
  font-style: normal;
  opacity: 0.7;
  margin-left: 4px;
}
.empl-label {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--snow);
  opacity: 0.7;
  font-weight: 500;
  margin-bottom: 18px;
}
.empl-cell p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--snow);
  opacity: 0.72;
}

/* ============ SECURITE ============ */
.securite-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule-light);
  border: 1px solid var(--rule-light);
}
.sec-card {
  background: var(--night);
  padding: clamp(28px, 3vw, 40px);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: background 0.4s var(--ease-cinematic);
}
.sec-card:hover { background: var(--night-deep); }
.sec-icon {
  font-family: var(--display);
  font-size: 32px;
  color: var(--champagne);
  line-height: 1;
}
.sec-card h4 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 19px;
  color: var(--snow);
}
.sec-card p {
  font-size: 13px;
  color: var(--snow);
  opacity: 0.65;
  line-height: 1.5;
}

/* ============ POTENTIEL ============ */
.potentiel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pot-card {
  background: var(--night);
  border: 1px solid var(--rule-light);
  padding: clamp(32px, 3vw, 44px);
  position: relative;
  transition: border-color 0.4s var(--ease-cinematic);
}
.pot-card:hover { border-color: var(--champagne-dim); }
.pot-num {
  font-family: var(--display);
  font-style: italic;
  font-size: 14px;
  color: var(--champagne);
  letter-spacing: 0.18em;
  margin-bottom: 16px;
}
.pot-card h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.25;
  color: var(--snow);
  margin-bottom: 16px;
}
.pot-card p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--snow);
  opacity: 0.72;
}

/* ============ VISITE 3D ============ */
.section--3d { background: var(--night); }

.visite-3d-preview {
  margin: 0;
  border: 1px solid var(--rule-light);
  background: linear-gradient(180deg, var(--night-deep), var(--night));
  padding: clamp(24px, 4vw, 64px);
  display: grid;
  gap: 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.visite-3d-preview img {
  max-width: 720px;
  margin: 0 auto;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.4));
}
.visite-3d-frame {
  position: relative;
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  aspect-ratio: 16/10;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(200,168,117,0.06) 0%, transparent 60%),
    linear-gradient(180deg, var(--night-deep) 0%, var(--night) 100%);
  border: 1px solid var(--rule-light);
  overflow: hidden;
}
.vf-line {
  position: absolute;
  background: var(--champagne-dim);
  opacity: 0.5;
}
.vf-line--h { left: 0; right: 0; height: 1px; }
.vf-line--v { top: 0; bottom: 0; width: 1px; }
.vf-h1 { top: 33.33%; }
.vf-h2 { top: 66.66%; }
.vf-v1 { left: 33.33%; }
.vf-v2 { left: 66.66%; }
.vf-corner {
  position: absolute;
  width: 18px; height: 18px;
  border-color: var(--champagne);
  border-style: solid;
  border-width: 0;
}
.vf-corner--tl { top: 16px; left: 16px; border-top-width: 1px; border-left-width: 1px; }
.vf-corner--tr { top: 16px; right: 16px; border-top-width: 1px; border-right-width: 1px; }
.vf-corner--bl { bottom: 16px; left: 16px; border-bottom-width: 1px; border-left-width: 1px; }
.vf-corner--br { bottom: 16px; right: 16px; border-bottom-width: 1px; border-right-width: 1px; }
.vf-cursor {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--display);
  font-size: 56px;
  color: var(--champagne);
  opacity: 0.8;
  animation: vfPulse 3.6s var(--ease-cinematic) infinite;
}
@keyframes vfPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
  50% { transform: translate(-50%, -50%) scale(1.18); opacity: 1; }
}
.vf-label {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--snow);
  opacity: 0.55;
  white-space: nowrap;
  font-weight: 500;
}
.visite-3d-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.badge-soon {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--champagne);
  padding: 8px 16px;
  border: 1px solid var(--champagne);
  font-weight: 500;
}
.visite-3d-cta p {
  font-family: var(--display);
  font-style: italic;
  font-size: 17px;
  color: var(--snow);
  opacity: 0.78;
  max-width: 50ch;
}

/* ============ POUR QUI ============ */
.profils-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: var(--rule-light);
  border: 1px solid var(--rule-light);
}
.profil {
  background: var(--night);
  padding: clamp(28px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background 0.4s var(--ease-cinematic);
}
.profil:hover { background: var(--night-deep); }
.profil-tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--champagne);
  padding: 6px 12px;
  border: 1px solid var(--champagne-dim);
}
.profil h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.25;
  color: var(--snow);
}
.profil p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--snow);
  opacity: 0.75;
}

/* ============ POURQUOI JE VENDS ============ */
.section--why { background: var(--night-soft); }
.why-content {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(18px, 1.8vw, 23px);
  line-height: 1.7;
  color: var(--snow);
  opacity: 0.92;
}
.why-content p { margin-bottom: 24px; }
.why-content p:last-of-type { margin-bottom: 0; }
.why-sign {
  margin-top: 56px !important;
  font-style: italic;
  font-size: 18px !important;
  color: var(--champagne);
  border-top: 1px solid var(--rule-light);
  padding-top: 32px;
}

/* ============ FORM ============ */
.qual-form {
  display: grid;
  gap: 32px;
}
.form-row { display: grid; gap: 20px; }
.form-row--double { grid-template-columns: 1fr 1fr; }

.form-section {
  border: none;
  border-top: 1px solid var(--rule-light);
  padding: 28px 0 0;
  margin: 0;
  display: grid;
  gap: 20px;
}
.form-section:first-of-type {
  border-top: none;
  padding-top: 0;
}
.form-section-title {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(18px, 1.5vw, 22px);
  color: var(--champagne);
  font-variation-settings: "SOFT" 60;
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 0 0 6px;
}
.form-section-title .fs-num {
  font-family: var(--display);
  font-style: italic;
  font-size: 0.85em;
  letter-spacing: 0.18em;
  color: var(--champagne);
  opacity: 0.7;
  font-weight: 400;
}

.field-hint {
  font-size: 12px;
  color: var(--snow);
  opacity: 0.55;
  font-style: italic;
  font-family: var(--display);
  font-variation-settings: "SOFT" 60;
  margin-top: 2px;
}

.form-consents {
  display: grid;
  gap: 16px;
  padding: 24px 0 0;
  border-top: 1px solid var(--rule-light);
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.field-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--champagne);
  font-weight: 500;
}
.field input,
.field textarea,
.field select {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 300;
  color: var(--snow);
  background: rgba(242,240,235,0.04);
  border: 1px solid var(--rule-light);
  padding: 16px 18px;
  outline: none;
  transition: border-color 0.3s, background 0.3s;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--champagne);
  background: rgba(242,240,235,0.06);
}
.field textarea { resize: vertical; min-height: 110px; line-height: 1.55; font-family: var(--sans); }
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23C8A875' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 44px;
}
.field select option {
  background: var(--night-deep);
  color: var(--snow);
}

.field--check {
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  color: var(--snow);
  opacity: 0.78;
  line-height: 1.5;
  cursor: pointer;
}
.field--check input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--champagne);
  background: transparent;
  padding: 0;
  border: 1px solid var(--rule-strong);
}

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.form-meta {
  font-size: 12px;
  text-align: center;
  color: var(--snow);
  opacity: 0.55;
  margin-top: 8px;
}
.form-status {
  font-size: 14px;
  text-align: center;
  margin-top: 12px;
  min-height: 22px;
  font-weight: 500;
}
.form-status.is-success { color: var(--champagne); }
.form-status.is-error { color: #E67676; }

/* ============ FOOTER ============ */
.site-footer {
  background: var(--night-deep);
  border-top: 1px solid var(--rule-light);
  padding: 80px 0 24px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}
.footer-wordmark {
  display: inline-block;
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: 28px;
  letter-spacing: 0.01em;
  color: var(--snow);
  font-variation-settings: "SOFT" 60;
  line-height: 1;
  margin-bottom: 16px;
}
.footer-brand p { font-size: 13px; color: var(--snow); opacity: 0.6; }
.footer-col h5 {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 18px;
  font-weight: 500;
}
.footer-col a, .footer-col p {
  display: block;
  font-size: 14px;
  color: var(--snow);
  opacity: 0.72;
  padding: 4px 0;
  transition: opacity 0.3s, color 0.3s;
}
.footer-col a:hover { opacity: 1; color: var(--champagne); }
.footer-base {
  border-top: 1px solid var(--rule-light);
  padding-top: 24px;
  text-align: center;
}
.footer-base small {
  font-size: 11px;
  color: var(--snow);
  opacity: 0.5;
  letter-spacing: 0.04em;
}

/* ============ COOKIE BAR ============ */
.cookie-bar {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 300;
  background: var(--night-deep);
  border: 1px solid var(--champagne-dim);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  max-width: 720px;
  margin: 0 auto;
  animation: cookieSlide 0.5s var(--ease-cinematic);
}
@keyframes cookieSlide { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.cookie-bar-inner {
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}
.cookie-text strong {
  display: block;
  font-family: var(--display);
  font-style: italic;
  font-size: 17px;
  color: var(--champagne);
  margin-bottom: 6px;
}
.cookie-text p { font-size: 13px; color: var(--snow); opacity: 0.78; line-height: 1.5; }
.cookie-actions { display: flex; gap: 10px; }
.cookie-btn {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 12px 20px;
  border: 1px solid;
  transition: all 0.3s;
}
.cookie-btn--primary {
  background: var(--champagne);
  color: var(--night-deep);
  border-color: var(--champagne);
}
.cookie-btn--primary:hover { background: var(--champagne-bright); border-color: var(--champagne-bright); }
.cookie-btn--secondary {
  background: transparent;
  color: var(--snow);
  border-color: var(--rule-strong);
}
.cookie-btn--secondary:hover { border-color: var(--snow); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .bien-grid { grid-template-columns: repeat(4, 1fr); }
  .bien-photo { grid-column: span 2; }
  .bien-photo--lead, .bien-photo--wide { grid-column: span 4; grid-row: span 1; }
  .bien-photo--tall { grid-column: span 2; grid-row: span 1; }
  .bien-photo--tall img { aspect-ratio: 3/4; }
  .bien-specs { grid-column: span 4; }
  .machine-grid, .securite-grid, .potentiel-grid, .emplacement-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .visite-express-grid { grid-template-columns: 1fr; gap: 48px; }
  .visite-express-phone { order: -1; }
  .emplacement-video { aspect-ratio: 4/3; }
}
@media (max-width: 720px) {
  .site-header { padding: 14px var(--gutter); }
  .site-nav { display: none; }
  .logo-wordmark { font-size: 24px; }
  .hero { padding-bottom: 80px; }
  .hero-meta { flex-direction: column; align-items: flex-start; gap: 24px; }
  .hero-title { font-size: 44px; line-height: 1; }
  .kpi-grid { grid-template-columns: 1fr; gap: 32px; }
  .kpi-cell { padding: 32px 0; border-right: none; border-bottom: 1px solid var(--rule-light); }
  .kpi-cell:last-child { border-bottom: none; }
  .bien-grid { grid-template-columns: 1fr; gap: 16px; }
  .bien-photo, .bien-photo--lead, .bien-photo--wide, .bien-photo--tall, .bien-specs { grid-column: span 1; grid-row: span 1; }
  .bien-photo--tall img { aspect-ratio: 3/4; height: auto; }
  .machine-grid, .securite-grid, .potentiel-grid, .emplacement-grid, .profils-grid { grid-template-columns: 1fr; }
  .actif { grid-template-columns: 60px 1fr; gap: 16px; }
  .phone-frame { width: 78vw; max-width: 320px; }
  .emplacement-video { aspect-ratio: 3/4; }
  .emplacement-caption { left: 20px; right: 20px; bottom: 20px; }
  .form-row--double { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .cookie-bar-inner { grid-template-columns: 1fr; gap: 16px; }
  .cookie-actions { width: 100%; }
  .cookie-btn { flex: 1; text-align: center; }
}

/* ============ PREFERS REDUCED MOTION ============ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero-video, .phone-video, .emplacement-bg { display: none; }
  .hero-bg { background: var(--night-deep); }
  .emplacement-video { background-image: url('../../assets/video/evian-drone-poster.jpg'); background-size: cover; background-position: center; }
}
