/* ========== RESET & TOKENS ========== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #0a0a0b;
  color: #e8e3d6;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; margin: 0; }

:root {
  --bg: #0a0a0b;
  --bg-soft: #131316;
  --bg-card: #1a1a1e;
  --gold: #c9a961;
  --gold-bright: #d9bd7a;
  --gold-dark: #8a7340;
  --text: #f5f0e6;
  --text-dim: #a8a195;
  --text-muted: #6e6a5f;
  --border: rgba(201, 169, 97, 0.18);
  --border-soft: rgba(255, 255, 255, 0.06);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --shadow-gold: 0 8px 40px -10px rgba(201, 169, 97, 0.35);
}

/* ========== UTILS ========== */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 820px; }
.gold { color: var(--gold); }

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.eyebrow--center { display: block; text-align: center; }

.section { padding: 110px 0; position: relative; }
.section--dark { background: var(--bg-soft); }

.section__title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(32px, 4.5vw, 54px);
  line-height: 1.15;
  margin: 0 0 24px;
  text-align: center;
  letter-spacing: -0.5px;
  color: var(--text);
}
.section__title--left { text-align: left; }

.section__lead {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-dim);
  max-width: 720px;
  margin: 0 auto 60px;
  text-align: center;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 30px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.3px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.25s ease;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn--primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 100%);
  color: #1a1410;
  box-shadow: var(--shadow-gold);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 50px -8px rgba(201, 169, 97, 0.5);
  filter: brightness(1.08);
}
.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn--small { padding: 10px 20px; font-size: 13px; background: var(--gold); color: #1a1410; }
.btn--small:hover { filter: brightness(1.1); }

/* ========== NAV ========== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10, 10, 11, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-soft);
}
.nav__inner { display: flex; justify-content: space-between; align-items: center; padding: 16px 24px; }
.nav__brand { display: flex; gap: 4px; align-items: baseline; }
.nav__logo {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 2px;
}
.nav__logo--gold { color: var(--gold); }

/* ========== HERO ========== */
.hero {
  position: relative;
  padding: 160px 0 100px;
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 20%, rgba(201, 169, 97, 0.18), transparent 55%),
    radial-gradient(ellipse at 10% 80%, rgba(201, 169, 97, 0.08), transparent 50%),
    linear-gradient(180deg, #0a0a0b 0%, #131316 100%);
  z-index: -1;
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("assets/biens/immeuble2.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  mix-blend-mode: luminosity;
}

.hero__inner { text-align: center; position: relative; }
.hero__title {
  font-family: var(--serif);
  font-size: clamp(38px, 6vw, 72px);
  font-weight: 600;
  line-height: 1.1;
  margin: 18px auto 28px;
  max-width: 1000px;
  letter-spacing: -1px;
}
.hero__sub {
  font-size: clamp(16px, 1.5vw, 19px);
  color: var(--text-dim);
  max-width: 760px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.hero__sub strong { color: var(--text); font-weight: 600; }

.hero__cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 80px;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 980px;
  margin: 0 auto;
  padding: 36px 24px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: rgba(26, 26, 30, 0.5);
  backdrop-filter: blur(8px);
}
.hero__stats li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.stat__num {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat__label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--text-dim);
  text-align: center;
}

@media (max-width: 720px) {
  .hero__stats { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

/* ========== GRID & CARDS ========== */
.grid { display: grid; gap: 24px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) {
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .grid--2, .grid--3 { grid-template-columns: 1fr; }
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 6px;
  padding: 32px;
  transition: all 0.25s ease;
}
.card:hover {
  border-color: var(--border);
  transform: translateY(-3px);
}
.card__num {
  display: block;
  font-family: var(--serif);
  font-size: 28px;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 14px;
}
.card h3 {
  font-family: var(--serif);
  font-size: 22px;
  margin: 0 0 12px;
  color: var(--text);
  font-weight: 600;
}
.card p { color: var(--text-dim); margin: 0; font-size: 15px; }
.card--pain--final {
  background: linear-gradient(135deg, rgba(201, 169, 97, 0.12), rgba(201, 169, 97, 0.04));
  border-color: var(--border);
}
.card--pain--final h3 { color: var(--gold); }

/* ========== STORY ========== */
.story__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 70px;
  align-items: center;
}
@media (max-width: 900px) {
  .story__inner { grid-template-columns: 1fr; gap: 40px; }
}
.story__content p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-dim);
  margin-bottom: 18px;
}
.story__content strong { color: var(--text); font-weight: 600; }
.story__signature {
  font-family: var(--serif);
  font-size: 22px !important;
  color: var(--gold) !important;
  font-style: italic;
  border-left: 2px solid var(--gold);
  padding-left: 20px;
  margin-top: 30px !important;
  line-height: 1.5 !important;
}
.story__photo {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.6);
  min-height: 540px;
  background: linear-gradient(135deg, #1a1814 0%, #0e0c08 100%);
}
.story__photo img { width: 100%; height: 540px; object-fit: cover; display: block; }
.story__photo-placeholder {
  display: none;
  position: absolute;
  inset: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 30px;
  border: 1px dashed var(--border);
  border-radius: 6px;
  gap: 12px;
}
.story__photo--placeholder .story__photo-placeholder { display: flex; }
.story__photo--placeholder .story__photo-caption { display: none; }
.story__photo-placeholder span {
  font-family: var(--serif);
  font-size: 26px;
  color: var(--gold);
  font-weight: 600;
}
.story__photo-placeholder small {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.6;
  max-width: 280px;
}
.story__photo-placeholder code {
  font-family: 'Courier New', monospace;
  background: rgba(201,169,97,0.12);
  padding: 2px 6px;
  border-radius: 3px;
  color: var(--gold);
  font-size: 12px;
}
.story__photo-caption {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  padding: 18px 22px;
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
  font-size: 13px;
  letter-spacing: 0.5px;
  color: var(--gold);
}

/* ========== BENEFITS ========== */
.benefits { margin-top: 30px; }
.benefit {
  display: flex;
  gap: 16px;
  padding: 22px;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 6px;
  transition: all 0.2s ease;
}
.benefit:hover { border-color: var(--border); }
.benefit__check {
  flex-shrink: 0;
  width: 28px; height: 28px;
  background: var(--gold);
  color: #1a1410;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 14px;
}
.benefit > div { font-size: 15px; line-height: 1.6; color: var(--text-dim); }
.benefit strong { color: var(--text); }

/* ========== GALLERY ========== */
.gallery { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%); }
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
  margin-top: 30px;
}
.gallery__item {
  margin: 0;
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  background: #000;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery__item:hover img { transform: scale(1.05); }
.gallery__item figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 14px 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
}
.gallery__item--lg { grid-column: span 2; grid-row: span 2; }
@media (max-width: 900px) {
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__item--lg { grid-column: span 2; grid-row: span 1; }
}

/* ========== TESTIMONIALS / WHATSAPP ========== */
.testimonials { background: linear-gradient(180deg, #0d0d10 0%, #131316 100%); }
.wa-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
@media (max-width: 1000px) {
  .wa-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
}

.wa {
  background: #0e1418;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 60px -15px rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.04);
  display: flex;
  flex-direction: column;
}
.wa__head {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 14px 18px;
  background: #1f2c33;
  border-bottom: 1px solid rgba(0,0,0,0.4);
}
.wa__avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c9a961, #8a7340);
  color: #1a1410;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 15px;
}
.wa__name {
  font-size: 15px;
  font-weight: 500;
  color: #e9edef;
}
.wa__body {
  padding: 18px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  background-color: #0b141a;
  background-image:
    radial-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    radial-gradient(rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 30px 30px;
  background-position: 0 0, 15px 15px;
  flex: 1;
}
.wa__bubble {
  max-width: 85%;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.45;
  position: relative;
  word-wrap: break-word;
  color: #e9edef;
}
.wa__bubble--in {
  background: #1f2c33;
  align-self: flex-start;
  border-top-left-radius: 2px;
}
.wa__bubble--out {
  background: #005c4b;
  align-self: flex-end;
  border-top-right-radius: 2px;
}

.testimonials__cta {
  text-align: center;
  margin-top: 60px;
}

/* ========== VIDEOS GRID (témoignages) ========== */
.videos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 60px;
}
@media (max-width: 900px) {
  .videos-grid { grid-template-columns: 1fr; }
}
.video-card {
  margin: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px;
  box-shadow: 0 30px 70px -25px rgba(0,0,0,0.6);
  display: flex;
  flex-direction: column;
}
.video-card__media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 6px;
  overflow: hidden;
  background: #000;
}
.video-card__media video,
.video-card__media iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.video-card__caption { padding: 18px 8px 8px; }
.video-card__caption h3 {
  font-family: var(--serif);
  font-size: 24px;
  margin: 8px 0 10px;
  color: var(--text);
  font-weight: 600;
}
.video-card__caption p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-dim);
  font-style: italic;
  margin: 0;
  border-left: 2px solid var(--gold);
  padding-left: 14px;
}

/* Selectivity bar with only 2 cells */
.selectivity__bar--two { grid-template-columns: repeat(2, 1fr) !important; max-width: 720px; }
@media (max-width: 720px) {
  .selectivity__bar--two { grid-template-columns: 1fr !important; }
}

/* Lead text without preceding H2 (used in critères section) */
.section__lead--top { margin-top: 30px; }

/* ========== SELECTIVITY ========== */
.selectivity__bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 980px;
  margin: 10px auto 70px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: linear-gradient(135deg, rgba(201,169,97,0.08), rgba(201,169,97,0.02));
  overflow: hidden;
}
@media (max-width: 720px) {
  .selectivity__bar { grid-template-columns: 1fr; }
}
.selectivity__cell {
  padding: 32px 24px;
  text-align: center;
  border-right: 1px solid var(--border-soft);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.selectivity__cell:last-child { border-right: none; }
@media (max-width: 720px) {
  .selectivity__cell { border-right: none; border-bottom: 1px solid var(--border-soft); }
  .selectivity__cell:last-child { border-bottom: none; }
}
.selectivity__num {
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.selectivity__label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--text-dim);
}

.selectivity__sub {
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 36px);
  text-align: center;
  color: var(--text);
  margin: 20px 0 18px;
  font-weight: 600;
  letter-spacing: -0.3px;
}
.selectivity__intro {
  text-align: center;
  font-size: 16px;
  color: var(--text-dim);
  max-width: 700px;
  margin: 0 auto 50px;
  line-height: 1.7;
}
.forwho__col ul li strong { color: var(--text); display: block; margin-bottom: 4px; }
.selectivity__note {
  text-align: center;
  font-size: 16px;
  color: var(--text-dim);
  max-width: 760px;
  margin: 50px auto 0;
  padding: 24px 30px;
  background: rgba(201,169,97,0.06);
  border: 1px solid var(--border);
  border-radius: 6px;
  line-height: 1.7;
}
.selectivity__note strong { color: var(--gold); }

/* ========== ENGAGEMENTS ========== */
.engagements__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 30px;
}
@media (max-width: 900px) {
  .engagements__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .engagements__grid { grid-template-columns: 1fr; }
}
.engagement {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 6px;
  padding: 32px 28px;
  transition: all 0.25s ease;
  position: relative;
}
.engagement:hover { border-color: var(--gold); transform: translateY(-3px); }
.engagement__icon {
  display: inline-block;
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 14px;
  line-height: 1;
}
.engagement h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 12px;
  line-height: 1.3;
}
.engagement p {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--text-dim);
  margin: 0;
}

/* ========== CTA SCARCITY ========== */
.cta-section__scarcity {
  text-align: center;
  max-width: 720px;
  margin: -40px auto 30px;
  padding: 16px 24px;
  background: rgba(201,169,97,0.10);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text-dim);
  font-size: 14.5px;
  line-height: 1.6;
}
.cta-section__scarcity strong { color: var(--gold); }

/* ========== STEPS ========== */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 30px;
}
@media (max-width: 900px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .steps { grid-template-columns: 1fr; }
}
.step {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 6px;
  padding: 36px 28px;
  position: relative;
  transition: all 0.3s ease;
}
.step:hover { border-color: var(--gold); transform: translateY(-3px); }
.step__num {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  color: #1a1410;
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 22px;
}
.step h3 {
  font-family: var(--serif);
  font-size: 22px;
  margin: 0 0 12px;
  color: var(--text);
  font-weight: 600;
}
.step p { color: var(--text-dim); font-size: 14.5px; margin: 0; line-height: 1.7; }

/* ========== OFFER ========== */
.offer {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 50px;
  margin-top: 40px;
}
@media (max-width: 900px) {
  .offer { grid-template-columns: 1fr; gap: 30px; }
}
.offer__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.offer__item {
  display: flex;
  gap: 14px;
  padding: 20px 22px;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 6px;
}
.offer__item strong { color: var(--text); }
.offer__item > div { font-size: 15px; line-height: 1.6; color: var(--text-dim); }
.offer__check {
  flex-shrink: 0;
  width: 24px; height: 24px;
  background: var(--gold);
  color: #1a1410;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 13px;
  margin-top: 2px;
}
.offer__highlight {
  background: linear-gradient(135deg, rgba(201, 169, 97, 0.10), rgba(201, 169, 97, 0.02));
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 36px;
  position: sticky;
  top: 100px;
  height: fit-content;
}
.offer__highlight h3 {
  font-family: var(--serif);
  font-size: 26px;
  margin: 10px 0 22px;
  color: var(--text);
  line-height: 1.25;
}
.offer__highlight p { color: var(--text-dim); font-size: 14.5px; line-height: 1.7; margin: 0 0 14px; }
.offer__highlight strong { color: var(--gold); }

/* ========== FORWHO ========== */
.forwho {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}
@media (max-width: 800px) {
  .forwho { grid-template-columns: 1fr; }
}
.forwho__col {
  padding: 36px;
  border-radius: 6px;
  border: 1px solid;
}
.forwho__col h3 {
  font-family: var(--serif);
  font-size: 22px;
  margin: 0 0 22px;
  font-weight: 600;
}
.forwho__col ul li {
  padding: 8px 0;
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.6;
}
.forwho__col--yes { background: linear-gradient(135deg, rgba(201, 169, 97, 0.08), rgba(201, 169, 97, 0.02)); border-color: var(--border); }
.forwho__col--yes h3 { color: var(--gold); }
.forwho__col--no { background: rgba(255,255,255,0.02); border-color: var(--border-soft); }
.forwho__col--no h3 { color: var(--text-dim); }

/* ========== FAQ ========== */
.faq {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 6px;
  padding: 22px 28px;
  margin-bottom: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.faq:hover { border-color: var(--border); }
.faq[open] { border-color: var(--border); background: rgba(201,169,97,0.04); }
.faq summary {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 600;
  color: var(--text);
  list-style: none;
  position: relative;
  padding-right: 30px;
  cursor: pointer;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  font-size: 26px;
  color: var(--gold);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  transition: transform 0.25s;
}
.faq[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq p {
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.75;
  margin: 16px 0 0;
}

/* ========== CTA SECTION ========== */
.cta-section {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(201, 169, 97, 0.18), transparent 60%),
    var(--bg);
}
.calendly-wrap {
  margin-top: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px;
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.6);
  overflow: hidden;
}

/* ========== SCREENS GRID (témoignages, polaroid masonry) ========== */
.screens-grid {
  column-count: 3;
  column-gap: 30px;
  margin-top: 60px;
  padding: 10px 6px;
}
@media (max-width: 1000px) {
  .screens-grid { column-count: 2; }
}
@media (max-width: 600px) {
  .screens-grid { column-count: 1; }
}
.screen {
  display: block;
  background: #f1ebd8;
  padding: 14px 14px 0;
  border-radius: 3px;
  margin: 0 0 32px;
  break-inside: avoid;
  page-break-inside: avoid;
  cursor: zoom-in;
  box-shadow:
    0 1px 0 rgba(0,0,0,0.05) inset,
    0 18px 40px -10px rgba(0,0,0,0.55),
    0 6px 16px -6px rgba(0,0,0,0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #2a2620;
}
.screen:hover {
  transform: translateY(-6px);
  box-shadow:
    0 1px 0 rgba(0,0,0,0.05) inset,
    0 30px 60px -15px rgba(0,0,0,0.7),
    0 12px 24px -6px rgba(201,169,97,0.18);
  z-index: 5;
  position: relative;
}
.screen__photo {
  border-radius: 1px;
  overflow: hidden;
  background: #000;
}
.screen__photo img {
  width: 100%;
  height: auto;
  display: block;
}
.screen__caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 4px 18px;
  font-size: 11px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #2a2620;
  font-weight: 600;
}
.screen__name {
  white-space: nowrap;
  letter-spacing: 2px;
}
.screen__quote {
  font-family: var(--serif);
  font-size: 14px;
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0.3px;
  text-transform: none;
  color: #4a4030;
  text-align: right;
}

/* ========== LEGAL PAGES ========== */
.legal-page { padding-top: 140px; }
.legal-page h2 {
  font-family: var(--serif);
  font-size: 24px;
  color: var(--gold);
  margin: 36px 0 12px;
  font-weight: 600;
}
.legal-page p, .legal-page ul {
  color: var(--text-dim);
  line-height: 1.75;
  margin: 0 0 14px;
  font-size: 15.5px;
}
.legal-page ul { padding-left: 20px; list-style: disc; }
.legal-page ul li { margin-bottom: 8px; }
.legal-page a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.legal-page__back { margin-top: 50px; padding-top: 30px; border-top: 1px solid var(--border-soft); }

/* ========== FOOTER ========== */
.footer {
  background: #060607;
  border-top: 1px solid var(--border-soft);
  padding: 70px 0 30px;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border-soft);
}
@media (max-width: 800px) {
  .footer__top { grid-template-columns: 1fr; gap: 36px; }
}
.footer__brand > div { margin-bottom: 14px; }
.footer__brand p {
  font-size: 14px;
  color: var(--text-dim);
  margin: 0;
  line-height: 1.6;
  max-width: 320px;
}
.footer__col h4 {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 600;
  color: var(--gold);
  margin: 0 0 18px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 2px;
}
.footer__col a {
  display: block;
  font-size: 14.5px;
  color: var(--text-dim);
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer__col a:hover { color: var(--gold); }
.footer__bottom {
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  padding-top: 30px;
}

/* ========== STORY PROOF (3 photos strip in story section) ========== */
.story__proof {
  margin-top: 80px;
  padding-top: 50px;
  border-top: 1px solid var(--border-soft);
}
.story__proof .eyebrow { display: block; text-align: center; margin-bottom: 28px; }
.story__proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 800px) {
  .story__proof-grid { grid-template-columns: 1fr; }
}
.story__proof-grid figure {
  margin: 0;
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  background: #000;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--border-soft);
}
.story__proof-grid img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.story__proof-grid figure:hover img { transform: scale(1.05); }
.story__proof-grid figcaption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 12px 14px;
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
  font-size: 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--gold);
}

/* ========== CTA INTERMÉDIAIRE ========== */
.cta-mid {
  padding: 70px 0;
  text-align: center;
  background: radial-gradient(ellipse at 50% 50%, rgba(201,169,97,0.10), transparent 60%), var(--bg);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}
.cta-mid__text {
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 32px);
  color: var(--text);
  font-weight: 600;
  margin: 0 0 24px;
}
.cta-mid__sub {
  font-size: 14px;
  color: var(--text-dim);
  margin: 16px 0 0;
}
.btn--lg { padding: 20px 40px; font-size: 17px; }

/* CTA centré en bas d'une section */
.section__cta {
  text-align: center;
  margin-top: 50px;
}

/* ========== MES BIENS (compact, 4 photos) ========== */
.biens-compact { padding: 90px 0; }
.biens-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 30px;
}
@media (max-width: 900px) {
  .biens-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .biens-grid { grid-template-columns: 1fr; }
}
.biens-grid figure {
  margin: 0;
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 6px;
  overflow: hidden;
  background: #000;
  border: 1px solid var(--border-soft);
}
.biens-grid img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.biens-grid figure:hover img { transform: scale(1.06); }
.biens-grid figcaption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 10px 12px;
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
  font-size: 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--gold);
}

/* Testimonials resserrés */
.testimonials--tight { padding: 80px 0; }
.testimonials--tight .section__title { margin-bottom: 16px; }
.testimonials--tight .section__lead { margin-bottom: 40px; }
.testimonials--tight .videos-grid { margin-bottom: 36px; }
.testimonials--tight .screens-grid { margin-top: 30px; }

/* ========== STEPS ENRICHIES (bullets includes) ========== */
.steps--enriched .step { padding: 36px 28px 28px; }
.step__includes {
  list-style: none;
  padding: 18px 0 0;
  margin: 18px 0 0;
  border-top: 1px solid var(--border-soft);
}
.step__includes li {
  position: relative;
  padding: 6px 0 6px 22px;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--text-dim);
}
.step__includes li::before {
  content: '✓';
  position: absolute;
  left: 0; top: 6px;
  color: var(--gold);
  font-weight: 700;
  font-size: 12px;
}

/* ========== VIDEOS GRID 3 COLS ========== */
.videos-grid--three {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 1000px) {
  .videos-grid--three { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .videos-grid--three { grid-template-columns: 1fr; }
}

/* ========== SCREENS 2 COLS (override polaroid masonry for 2 items) ========== */
.screens-grid--two {
  column-count: 2;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 700px) {
  .screens-grid--two { column-count: 1; }
}

/* ========== SCREENS 3 COLS (1, 2, 3) ========== */
.screens-grid--three {
  column-count: 3;
}
@media (max-width: 1000px) {
  .screens-grid--three { column-count: 2; }
}
@media (max-width: 600px) {
  .screens-grid--three { column-count: 1; }
}

/* ========== STORY THUMBS (3 photos d'immeubles dans le right column) ========== */
.story__thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 14px;
}
.story__thumbs figure {
  margin: 0;
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 4px;
  overflow: hidden;
  background: #000;
  border: 1px solid var(--border-soft);
}
.story__thumbs img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.story__thumbs figure:hover img { transform: scale(1.08); }
.story__thumbs figcaption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 6px 8px;
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
  font-size: 9px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
}

/* Reduce main story photo height to leave room for thumbs */
.story__visual .story__photo {
  min-height: auto;
}
.story__visual .story__photo img {
  height: 420px;
}
