@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600&family=Inter:wght@400;500;600&display=swap");

:root {
  --c-bg: #faf8f4;
  --c-surface: #ffffff;
  --c-text: #1c2b33;
  --c-text-muted: #5c6e77;
  --c-blue: #5a8fbf;
  --c-blue-deep: #2e5577;
  --c-blue-light: #dceaf6;
  --c-terracotta: #c96a4d;
  --c-terracotta-light: #f4e0d6;
  --c-line: #e4e0d8;
  --radius-sm: 10px;
  --radius: 18px;
  --shadow: 0 16px 40px -16px rgba(28, 43, 51, 0.22);
  --font-display: "Fraunces", serif;
  --font-body: "Inter", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

/* ── Top bar WhatsApp ───────────────────────────────────── */
.top-bar { background: #1a2632; padding: 10px 24px; text-align: center; }
.top-bar__link { display: inline-flex; align-items: center; gap: 10px; color: #d4dfe6; font-size: 13px; font-weight: 400; letter-spacing: 0.02em; text-decoration: none; transition: color 0.2s; }
.top-bar__link:hover { color: #ffffff; }
.top-bar__link strong { color: #ffffff; font-weight: 600; }
.top-bar__emoji { font-size: 16px; line-height: 1; flex-shrink: 0; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--c-text);
  background: var(--c-bg);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  margin: 0 0 0.5em;
}
p { margin: 0 0 1em; color: var(--c-text-muted); }
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  background: var(--c-blue-deep);
  color: #fff;
  font-weight: 500;
  font-size: 15px;
  border: none;
  transition: transform 0.2s ease, background 0.2s ease;
}
.btn:hover { background: var(--c-blue); transform: translateY(-2px); }
.btn--outline {
  background: transparent;
  color: var(--c-surface);
  border: 1.5px solid rgba(255,255,255,0.7);
}
.btn--outline:hover { background: rgba(255,255,255,0.15); }
.btn--small { padding: 10px 20px; font-size: 14px; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.site-header.is-scrolled {
  background: rgba(250, 248, 244, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 18px rgba(28,43,51,0.08);
}
.site-header__inner {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 18px 24px;
}
.brand { display: flex; align-items: center; gap: 10px; color: var(--c-blue-deep); }
.site-header:not(.is-scrolled) .brand,
.site-header:not(.is-scrolled) .nav__link { color: #fff; }
.brand__mark { position: relative; width: 30px; height: 27px; display: inline-block; flex-shrink: 0; }
.brand__mark-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; transition: opacity 0.25s ease; }
.brand__mark-img--white { opacity: 1; }
.brand__mark-img--navy { opacity: 0; }
.site-header.is-scrolled .brand__mark-img--white { opacity: 0; }
.site-header.is-scrolled .brand__mark-img--navy { opacity: 1; }
.brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.brand__name { font-family: var(--font-display); font-weight: 600; font-size: 18px; letter-spacing: 0.04em; }
.brand__sub { font-size: 10px; text-transform: uppercase; letter-spacing: 0.12em; opacity: 0.75; }
.nav { display: flex; gap: 26px; margin-left: auto; }
.nav__link { font-size: 15px; font-weight: 500; opacity: 0.9; }
.nav__link.is-active { opacity: 1; border-bottom: 2px solid currentColor; }
.nav__cta { white-space: nowrap; }
.lang-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 32px;
  padding: 0 8px;
  border: 1.5px solid currentColor;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-decoration: none;
  color: inherit;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.lang-btn:hover { opacity: 1; }
.lang-btn--mobile { align-self: flex-start; margin-top: 8px; border-color: var(--c-line); color: var(--c-text); }
.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 6px; cursor: pointer; }
.nav__toggle span { width: 22px; height: 2px; background: currentColor; }
.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 24px 20px;
  background: var(--c-surface);
}
.nav-mobile a { padding: 12px 6px; border-bottom: 1px solid var(--c-line); font-weight: 500; }
.nav-mobile.is-open { display: flex; }

@media (max-width: 860px) {
  .nav { display: none; }
  .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .site-header:not(.is-scrolled) { background: rgba(28,43,51,0.35); }
}

/* Hero */
.hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: flex-end;
  color: #fff;
  background-size: cover;
  background-position: center;
  margin-top: -84px;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  z-index: 0;
  background: linear-gradient(180deg, rgba(20,30,38,0.45) 0%, rgba(20,30,38,0.35) 45%, rgba(15,22,28,0.85) 100%);
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero__video--mobile { display: none; }
.hero--video::after { display: none; }
.hero--video .hero__inner {
  max-width: 1180px;
  width: 100%;
  padding: 140px 24px 80px;
  display: flex;
  justify-content: flex-end;
}
.hero__panel {
  max-width: 380px;
  background: rgba(15,22,28,0.55);
  border-radius: 14px;
  padding: 32px 30px;
}
.hero__panel .hero__title { font-size: clamp(22px, 2.6vw, 32px); }
.hero__panel .hero__subtitle { font-size: 15px; margin-bottom: 22px; }
@media (max-width: 560px) {
  .hero__panel { max-width: 100%; padding: 26px 22px; }
}
.hero__inner { position: relative; z-index: 1; padding: 140px 0 80px; max-width: 760px; }
.hero__kicker { text-transform: uppercase; letter-spacing: 0.14em; font-size: 13px; font-weight: 600; color: var(--c-blue-light); margin-bottom: 18px; }
.hero__title { font-size: clamp(32px, 4.4vw, 52px); color: #fff; }
.hero__subtitle { font-size: 18px; color: rgba(255,255,255,0.88); margin-bottom: 28px; }
.hero--compact { min-height: 56vh; }

/* Sections */
.section { padding: clamp(56px, 8vw, 104px) 0; }
.section--surface { background: var(--c-surface); }
.section__head { max-width: 640px; margin-bottom: 40px; }
.section__head--center { max-width: 700px; margin-left: auto; margin-right: auto; text-align: center; }
.section__head h2 { font-size: clamp(26px, 3vw, 36px); }
.kicker {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  font-weight: 600;
  color: var(--c-terracotta);
  margin-bottom: 14px;
}

/* Intro split */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.split img { border-radius: var(--radius); box-shadow: var(--shadow); }
.split--reverse .split__media { order: 2; }
.split--narrow { grid-template-columns: 1fr 2fr; }
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; gap: 32px; }
  .split--reverse .split__media { order: 0; }
}

/* Highlight grid */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 860px) { .grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .grid { grid-template-columns: 1fr; } }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 560px) { .grid--2 { grid-template-columns: 1fr; } }

.card {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 28px 24px;
  overflow: hidden;
}
.card--photo { padding-top: 0; }
.card__photo {
  margin: 0 -24px 20px -24px;
  height: 190px;
  overflow: hidden;
}
.card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.card__icon {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--c-blue-light);
  color: var(--c-blue-deep);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
}
.card__picto {
  width: 52px; height: 52px;
  object-fit: contain;
  display: block;
  margin-bottom: 10px;
}
.card__icon:has(.card__picto) {
  background: none;
  width: auto; height: auto;
  border-radius: 0;
  justify-content: flex-start;
}
.card h3 { font-size: 17px; margin-bottom: 6px; }
.card p { font-size: 14.5px; margin: 0; }

/* Journey / parcours client */
.journey { background: var(--c-blue-deep); color: #fff; position: relative; overflow: hidden; }
.journey .section__head h2, .journey .kicker { color: #fff; }
.journey .section__head p { color: rgba(255,255,255,0.78); }
.journey__track { position: relative; max-width: 700px; margin: 0 auto; padding-left: 56px; }
.journey__line {
  position: absolute;
  left: 19px; top: 6px; bottom: 6px;
  width: 2px;
  background: repeating-linear-gradient(to bottom, rgba(255,255,255,0.45) 0 6px, transparent 6px 14px);
}
.journey__walker {
  position: absolute;
  left: -3px;
  top: 0;
  width: 46px;
  height: 46px;
  z-index: 3;
}
.journey__walker svg { width: 100%; height: 100%; }
.journey__steps { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 48px; }
.journey__step {
  position: relative;
  opacity: 0.35;
  transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.journey__step.is-visible { opacity: 1; transform: translateY(0); }
.journey__dot {
  position: absolute;
  left: -56px; top: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.35);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 14px;
}
.journey__content h3 { font-size: 19px; margin-bottom: 6px; color: #fff; }
.journey__content p { margin: 0; font-size: 14.5px; color: rgba(255,255,255,0.75); }
.journey__example {
  max-width: 700px;
  margin: 56px auto 0;
  padding-left: 56px;
}
.journey__example-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius);
  padding: 22px 24px;
}
.journey__example-card p.label { font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.6); margin-bottom: 12px; }
.journey__example-line { display: flex; justify-content: space-between; font-size: 14.5px; padding: 6px 0; border-bottom: 1px dashed rgba(255,255,255,0.15); color: rgba(255,255,255,0.9); }
.journey__example-line:last-child { border-bottom: none; font-weight: 600; color: #fff; padding-top: 12px; }

@media (max-width: 560px) {
  .journey__track, .journey__example { padding-left: 44px; }
  .journey__dot { left: -44px; width: 34px; height: 34px; font-size: 12px; }
  .journey__line { left: 15px; }
  .journey__walker { width: 38px; height: 38px; left: -5px; }
}

/* Walking character leg animation */
.walker__leg-l, .walker__leg-r, .walker__arm-l, .walker__arm-r { transform-box: fill-box; transform-origin: top center; }
.walker__leg-l, .walker__leg-r { animation: walk-swing 0.7s ease-in-out infinite alternate; }
.walker__leg-r { animation-delay: 0.35s; }
.walker__arm-l, .walker__arm-r { animation: walk-swing-arm 0.7s ease-in-out infinite alternate; }
.walker__arm-r { animation-delay: 0.35s; }
@keyframes walk-swing { 0% { transform: rotate(-16deg); } 100% { transform: rotate(16deg); } }
@keyframes walk-swing-arm { 0% { transform: rotate(14deg); } 100% { transform: rotate(-14deg); } }

/* Featured split — déjà construite */
.featured-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.featured-split__text {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.featured-split__check {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--c-terracotta);
}
.featured-split__check::before {
  content: '';
  display: inline-block;
  width: 16px; height: 16px;
  border-radius: 50%;
  border: 1.5px solid var(--c-terracotta);
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3.5 8l3 3 6-6' stroke='%23c96a4d' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
}
.featured-split__text h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--c-text);
  line-height: 1.2;
  margin: 0;
}
.featured-split__text p {
  color: var(--c-text-muted);
  line-height: 1.7;
  margin: 0;
}
.featured-split__video {
  position: relative;
}
.featured-split__video video {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: block;
}
.featured-split__caption {
  display: block;
  text-align: center;
  font-size: 11px;
  color: var(--c-text-muted);
  margin-top: 10px;
  letter-spacing: .04em;
}
@media (max-width: 860px) {
  .featured-split { grid-template-columns: 1fr; gap: 24px; }
}

/* Highlights — alternating rows */
.alt-rows { display: flex; flex-direction: column; gap: 16px; margin-top: 40px; }
.alt-row { display: grid; height: 230px; overflow: hidden; border-radius: 0; }
.alt-row--odd { grid-template-columns: 1.4fr 1fr; }
.alt-row--even { grid-template-columns: 1fr 1.4fr; }
.alt-row__photo { overflow: hidden; }
.alt-row__photo img { width: 100%; height: 100%; object-fit: cover; display: block; filter: contrast(1.08) saturate(1.06); }
.alt-row__text { display: flex; flex-direction: column; justify-content: center; padding: 0 44px; gap: 10px; }
.alt-row__text--dark { background: #1a2c38; }
.alt-row__text--light { background: var(--c-surface); border: 0.5px solid var(--c-line); }
.alt-row__num { font-size: 44px; font-weight: 500; font-style: italic; line-height: 1; color: rgba(255,255,255,0.08); }
.alt-row__num--light { color: var(--c-line); }
.alt-row__text--dark h3 { font-family: var(--font-display); font-size: 1.25rem; color: #ffffff; margin: 0; }
.alt-row__text--light h3 { font-family: var(--font-display); font-size: 1.25rem; color: var(--c-text); margin: 0; }
.alt-row__text--dark p { color: rgba(255,255,255,0.5); line-height: 1.65; margin: 0; }
.alt-row__text--light p { color: var(--c-text-muted); line-height: 1.65; margin: 0; }
@media (max-width: 860px) {
  .alt-row, .alt-row--odd, .alt-row--even { grid-template-columns: 1fr; height: auto; }
  .alt-row__photo { height: 220px; }
  .alt-row--even .alt-row__photo { order: -1; }
  .alt-row__text { padding: 28px 24px; }
}

/* PDS hero */
.pds-hero {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}
@media (max-width: 860px) {
  .pds-hero { background-attachment: scroll; }
}
.pds-hero__overlay {
  background: rgba(10, 28, 44, 0.58);
  padding: clamp(72px, 10vw, 120px) 0;
}
.pds-hero__inner { text-align: center; }
.pds-hero__kicker {
  display: inline-block;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 16px;
}
.pds-hero__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 500;
  color: #ffffff;
  max-width: 680px;
  margin: 0 auto 28px;
  line-height: 1.2;
}
.pds-hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.pds-hero__text {
  color: rgba(255,255,255,0.82);
  font-size: 15px;
  max-width: 580px;
  margin: 0 auto 28px;
  line-height: 1.6;
}
.pds-hero__pill {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 24px;
  font-size: 13px;
  color: rgba(255,255,255,0.92);
  padding: 6px 18px;
}
@media (max-width: 600px) {
  .pds-hero__pill { font-size: 12px; padding: 5px 14px; }
}

/* Beach hero */
/* ── Proximity strips — parallax ────────────────────────── */
.prox-strips { display: flex; flex-direction: column; gap: 48px; }
.prox-strip {
  position: relative;
  height: clamp(480px, 68vh, 780px);
  overflow: hidden;
}
.prox-strip__bg {
  position: absolute;
  top: -35%;
  left: 0; right: 0; bottom: -35%;
  background-size: cover;
  background-position: center;
  will-change: transform;
}
.prox-strip__inner {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(8,18,28,0.0) 0%, rgba(8,18,28,0.28) 45%, rgba(8,18,28,0.62) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 24px;
}
.prox-strip__kicker {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin: 0;
  padding-bottom: 16px;
  position: relative;
}
.prox-strip__kicker::after {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: rgba(255,255,255,0.25);
  margin: 14px auto 0;
}
.prox-strip__num {
  font-family: var(--font-display);
  font-size: clamp(56px, 7vw, 96px);
  font-weight: 500;
  color: #ffffff;
  line-height: 1;
  margin: 4px 0 0;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 32px rgba(0,0,0,0.18);
}
.prox-strip__label {
  font-family: var(--font-display);
  font-size: clamp(17px, 2.4vw, 28px);
  font-weight: 400;
  font-style: italic;
  color: rgba(255,255,255,0.88);
  margin: 10px 0 0;
  text-shadow: 0 1px 16px rgba(0,0,0,0.15);
}
.prox-strip__tagline {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  margin: 26px 0 0;
}

/* Location — video */
.split--narrow { align-items: stretch; }
.split--narrow .split__media { display: flex; }
.split__video {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: block;
}

/* Location — two-column layout */
.loc-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 16px; }
.loc-col__header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding-bottom: 8px;
  margin-bottom: 14px;
  border-bottom: 1.5px solid currentColor;
}
.loc-col__header--walk { color: var(--c-terracotta); }
.loc-col__header--drive { color: var(--c-blue-deep); }
.loc-col__picto { width: 32px; height: 32px; object-fit: contain; flex-shrink: 0; }
.loc-item { display: flex; align-items: baseline; gap: 10px; margin-bottom: 14px; }
.loc-item__time {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  color: var(--c-terracotta);
  line-height: 1;
  white-space: nowrap;
  flex-shrink: 0;
  min-width: 52px;
}
.loc-item__time--drive { color: var(--c-blue-deep); font-size: 22px; min-width: 46px; }
.loc-item__name { font-size: 13px; font-weight: 600; color: var(--c-text); display: block; line-height: 1.3; }
.loc-item__desc { margin: 3px 0 0; font-size: 12px; color: var(--c-text-muted); line-height: 1.4; }
@media (max-width: 560px) { .loc-cols { grid-template-columns: 1fr; } }
@media (prefers-reduced-motion: reduce) { .walker *, .golf-cart * { animation-play-state: paused !important; } }


/* Stats */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin: 36px 0; }
@media (max-width: 860px) { .stats { grid-template-columns: 1fr 1fr; } }
.stat { background: var(--c-surface); border-radius: var(--radius); padding: 24px 20px; text-align: center; border: 1px solid var(--c-line); }
.stat__value { font-family: var(--font-display); font-size: 28px; color: var(--c-blue-deep); }
.stat__label { font-size: 13px; color: var(--c-text-muted); margin: 6px 0 0; }

/* CTA band */
.cta-band { background: var(--c-terracotta); color: #fff; text-align: center; padding: 64px 0; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,0.85); max-width: 520px; margin: 0 auto 28px; }
.cta-band .btn { background: #fff; color: var(--c-terracotta); }
.cta-band .btn:hover { background: var(--c-blue-deep); color: #fff; }

/* Apartment / penthouse feature cards */
.unit-card {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
}
.unit-card + .unit-card { margin-top: 32px; }
.unit-card__gallery {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  height: 480px;
  scrollbar-width: thin;
}
.unit-card__gallery img {
  flex: 0 0 76%;
  scroll-snap-align: start;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.unit-card__body { padding: 28px 30px; display: flex; flex-direction: column; justify-content: center; }
.unit-card__details { font-size: 14px; color: var(--c-text-muted); margin-bottom: 14px; }
.unit-card__specs { display: flex; gap: 20px; margin: 10px 0 18px; }
.unit-card__spec strong { display: block; font-family: var(--font-display); font-size: 19px; color: var(--c-text); }
.unit-card__spec span { font-size: 12.5px; color: var(--c-text-muted); }
.unit-card__price { font-family: var(--font-display); font-size: 22px; color: var(--c-blue-deep); }
@media (max-width: 760px) {
  .unit-card__gallery { height: 280px; }
  .unit-card__gallery img { flex-basis: 88%; }
}

/* Tables */
.table-wrap { overflow-x: auto; border: 1px solid var(--c-line); border-radius: var(--radius); }
table { width: 100%; border-collapse: collapse; font-size: 14px; min-width: 560px; }
th, td { padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--c-line); white-space: nowrap; }
th { background: var(--c-bg); font-weight: 600; font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.04em; color: var(--c-text-muted); }
tr:last-child td { border-bottom: none; }
.table-note { font-size: 13px; margin-top: 12px; }

/* Simulation columns */
.sim-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 860px) { .sim-grid { grid-template-columns: 1fr; } }
.sim-card { background: var(--c-surface); border: 1px solid var(--c-line); border-radius: var(--radius); padding: 22px 24px; }
.sim-card h3 { font-size: 16px; margin-bottom: 14px; }
.sim-card ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; font-size: 13.5px; color: var(--c-text-muted); }
.sim-card li:last-child { font-weight: 600; color: var(--c-text); padding-top: 6px; border-top: 1px dashed var(--c-line); }

/* Contact */
.contact-main { display: grid; grid-template-columns: 1.2fr 1fr; gap: 56px; align-items: start; }
@media (max-width: 900px) { .contact-main { grid-template-columns: 1fr; } }
.contact-intro { color: var(--c-text-muted); margin-bottom: 28px; }
.contact-form-col {}
.contact-sidebar { display: flex; flex-direction: column; gap: 24px; }

/* Form fields */
.form-field { margin-bottom: 18px; display: flex; flex-direction: column; gap: 6px; }
.form-field label { font-size: 13px; font-weight: 500; color: var(--c-text-muted); }
.form-required { color: var(--c-terracotta); }
.form-field input, .form-field textarea, .form-select {
  font-family: var(--font-body);
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--c-line);
  background: var(--c-surface);
  font-size: 15px;
  color: var(--c-text);
  width: 100%;
  box-sizing: border-box;
}
.form-select {
  appearance: none;
  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 d='M1 1l5 5 5-5' stroke='%235c6e77' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}
.form-field textarea { resize: vertical; min-height: 90px; }
.form-consent { margin: 20px 0; }
.form-consent__label { display: flex; gap: 12px; align-items: flex-start; cursor: pointer; font-size: 13px; color: var(--c-text-muted); line-height: 1.5; }
.form-consent__label input[type="checkbox"] { margin-top: 2px; flex-shrink: 0; accent-color: var(--c-terracotta); width: 16px; height: 16px; }

/* Success message */
.contact-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding: 40px 32px;
  background: var(--c-blue-light);
  border-radius: var(--radius);
  color: var(--c-blue-deep);
}
.contact-success svg { color: var(--c-blue-deep); }
.contact-success p { font-size: 16px; line-height: 1.7; margin: 0; }

/* Ce que vous recevrez */
.contact-receive {
  background: var(--c-text);
  border-radius: var(--radius);
  overflow: hidden;
  color: rgba(255,255,255,0.85);
}
.contact-receive__top { padding: 28px 28px 20px; }
.contact-receive h3 {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 16px;
}
.contact-receive__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-receive__list li {
  padding-left: 20px;
  position: relative;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255,255,255,0.75);
}
.contact-receive__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--c-terracotta);
  font-weight: 600;
  font-size: 12px;
}
.contact-receive__visual { width: 100%; }
.contact-receive__visual img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* Contact card */
.contact-card { background: var(--c-blue-light); border-radius: var(--radius); padding: 28px; }
.contact-card__label { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--c-text-muted); margin-bottom: 10px; }
.contact-card h3 { font-family: var(--font-display); color: var(--c-blue-deep); margin-bottom: 6px; }
.contact-card p, .contact-card a { color: var(--c-blue-deep); font-size: 14px; display: block; margin-bottom: 4px; text-decoration: none; }
.contact-card a:hover { text-decoration: underline; }

/* Pourquoi nous contacter */
.contact-why { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
@media (max-width: 760px) { .contact-why { grid-template-columns: 1fr; } }
.contact-why__card {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 32px 28px;
}
.contact-why__icon { margin-bottom: 16px; }
.contact-why__img { width: 100%; height: 220px; margin-bottom: 20px; border-radius: var(--radius-sm); overflow: hidden; display: flex; align-items: center; justify-content: center; background: #fff; }
.contact-why__img img { width: 100%; height: 100%; object-fit: contain; display: block; background-color: #ffffff; }
.contact-why__card h3 { font-family: var(--font-display); font-size: 1.05rem; margin-bottom: 10px; }
.contact-why__card p { font-size: 14px; color: var(--c-text-muted); line-height: 1.6; margin: 0; }

/* legacy grid compat */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════
   Investir — page sections
══════════════════════════════════════ */

/* Dark navy section */
.section--navy { background: #1a2c38; color: #fff; }
.section--navy h2, .section--navy h3 { color: #fff; }
.section--navy .kicker { color: rgba(255,255,255,0.5); }
.section--navy p { color: rgba(255,255,255,0.7); }

/* LLD KPIs */
.lld-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin: 36px 0 32px;
  border-radius: var(--radius);
  overflow: hidden;
}
.lld-kpi {
  background: rgba(255,255,255,0.07);
  padding: 36px 28px;
  text-align: center;
}
.lld-kpi__value {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 500;
  color: #fff;
  line-height: 1;
}
.lld-kpi__label {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin-top: 10px;
}
.lld-kpi__note {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  margin-top: 5px;
}
.lld-args {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 56px;
}
.lld-args li {
  padding-left: 22px;
  position: relative;
  color: rgba(255,255,255,0.75);
  font-size: 15px;
  line-height: 1.55;
}
.lld-args li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--c-terracotta);
}
.lld-basis {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  margin-top: 32px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* Airbnb hypotheses box */
.airbnb-hypo {
  background: var(--c-bg);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-sm);
  padding: 22px 28px 14px;
  margin-bottom: 32px;
}
.airbnb-hypo__title {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c-text-muted);
  margin-bottom: 16px;
}
.airbnb-hypo__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.airbnb-hypo__item {
  display: flex;
  flex-direction: column;
  padding: 8px 16px 12px 0;
  border-bottom: 1px solid var(--c-line);
}
.airbnb-hypo__item:nth-child(7),
.airbnb-hypo__item:nth-child(8),
.airbnb-hypo__item:nth-child(9) { border-bottom: none; }
.airbnb-hypo__label { font-size: 11px; color: var(--c-text-muted); margin-bottom: 3px; }
.airbnb-hypo__value { font-size: 14px; font-weight: 600; color: var(--c-blue-deep); }

/* Airbnb comparison */
.airbnb-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.airbnb-option {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1.5px solid var(--c-line);
  display: flex;
  flex-direction: column;
}
.airbnb-option--featured { border-color: var(--c-terracotta); }
.airbnb-option__head {
  padding: 22px 28px;
  background: var(--c-blue-deep);
  color: #fff;
}
.airbnb-option--featured .airbnb-option__head { background: var(--c-terracotta); }
.airbnb-option__badge {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.6);
  margin-bottom: 4px;
}
.airbnb-option__head h3 { font-family: var(--font-display); font-size: 22px; color: #fff; margin: 0; }
.airbnb-option__body {
  padding: 28px;
  background: var(--c-surface);
  flex: 1;
  display: flex;
  flex-direction: column;
}
.airbnb-option__cashflow {
  text-align: center;
  padding: 16px 0 22px;
  border-bottom: 1px dashed var(--c-line);
  margin-bottom: 22px;
}
.airbnb-option__cf-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c-text-muted);
  margin-bottom: 8px;
}
.airbnb-option__cf-value {
  font-family: var(--font-display);
  font-size: clamp(40px, 4.5vw, 52px);
  font-weight: 500;
  color: var(--c-blue-deep);
  line-height: 1;
}
.airbnb-option--featured .airbnb-option__cf-value { color: var(--c-terracotta); }
.airbnb-option__cf-sub { font-size: 13px; color: var(--c-text-muted); margin-top: 6px; }
.airbnb-option__metrics { display: flex; flex-direction: column; }
.airbnb-option__metric {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  padding: 10px 0;
  border-bottom: 1px solid var(--c-line);
}
.airbnb-option__metric:last-child { border-bottom: none; }
.airbnb-option__metric span:first-child { color: var(--c-text-muted); }
.airbnb-option__metric span:last-child { font-weight: 600; color: var(--c-text); }
.airbnb-option__note {
  margin-top: auto;
  padding-top: 18px;
  font-size: 13px;
  color: var(--c-text-muted);
  font-style: italic;
  line-height: 1.55;
}

/* PDS section */
.pds-invest-wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}
.pds-feats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 28px 0 24px;
}
.pds-feat {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-left: 3px solid var(--c-terracotta);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
}
.pds-feat__label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--c-text-muted);
  margin-bottom: 6px;
}
.pds-feat__value {
  font-size: 15px;
  font-weight: 500;
  color: var(--c-text);
  line-height: 1.4;
  margin: 0;
}
.pds-note {
  background: var(--c-terracotta-light);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  font-size: 15px;
  font-style: italic;
  color: var(--c-terracotta);
  font-family: var(--font-display);
  margin-bottom: 12px;
}
.pds-accomp { font-size: 14px; color: var(--c-text-muted); }
.pds-invest__visual img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover;
  max-height: 540px;
}

/* Acquisition — image + overlay */
.acq-hero {
  background-size: cover;
  background-position: center;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 48px;
  box-shadow: var(--shadow);
}
.acq-hero__overlay {
  background: linear-gradient(135deg, rgba(15,26,38,0.62) 0%, rgba(15,26,38,0.48) 100%);
  padding: 52px 44px;
}
/* Texte lisible sur fond d'image */
.acq-hero .acq-steps::before { background: rgba(255,255,255,0.2); }
.acq-hero .acq-step__dot {
  background: rgba(255,255,255,0.1);
  border-color: var(--c-terracotta);
  color: #fff;
}
.acq-hero .acq-step__title {
  color: #fff;
  text-shadow: 0 1px 8px rgba(0,0,0,0.6);
}
.acq-hero .acq-step__text {
  color: rgba(255,255,255,0.72);
  text-shadow: 0 1px 5px rgba(0,0,0,0.5);
}
/* Steps on dark background */
.acq-hero .acq-steps::before { background: rgba(255,255,255,0.15); }
.acq-hero .acq-step__dot {
  background: rgba(255,255,255,0.08);
  border-color: var(--c-terracotta);
  color: #fff;
}
.acq-hero .acq-step__title { color: #fff; }
.acq-hero .acq-step__text { color: rgba(255,255,255,0.65); }

/* Acquisition steps */
.acq-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin: 40px 0 0;
  position: relative;
}
.acq-steps::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  height: 1px;
  background: var(--c-line);
  z-index: 0;
}
.acq-step {
  padding: 0 20px 0 0;
  position: relative;
  z-index: 1;
}
.acq-step__dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--c-surface);
  border: 1.5px solid var(--c-terracotta);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--c-terracotta);
  margin-bottom: 18px;
}
.acq-step__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 14px;
  color: var(--c-text);
  margin-bottom: 8px;
}
.acq-step__text {
  font-size: 13px;
  color: var(--c-text-muted);
  line-height: 1.55;
  margin: 0;
}

/* Acquisition cost table */
.acq-costs {
  width: 100%;
  border-collapse: collapse;
  font-size: 14.5px;
  margin-top: 48px;
  min-width: 480px;
}
.acq-costs caption {
  text-align: left;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c-text-muted);
  font-weight: 600;
  padding-bottom: 12px;
  caption-side: top;
}
.acq-costs th {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-text-muted);
  font-weight: 600;
  padding: 8px 16px 8px 0;
  border-bottom: 1.5px solid var(--c-line);
  text-align: left;
}
.acq-costs td {
  padding: 13px 16px 13px 0;
  border-bottom: 1px solid var(--c-line);
  color: var(--c-text);
}
.acq-costs td:not(:first-child) { color: var(--c-blue-deep); font-weight: 500; }
.acq-costs tr:last-child td {
  border-bottom: none;
  border-top: 2px solid var(--c-line);
  font-weight: 700;
}
.acq-costs tr:last-child td:not(:first-child) { color: var(--c-terracotta); }
.acq-note { font-size: 13px; color: var(--c-text-muted); margin-top: 10px; font-style: italic; }

/* Responsive — Investir */
@media (max-width: 860px) {
  .lld-kpis { grid-template-columns: 1fr; gap: 2px; }
  .lld-args { grid-template-columns: 1fr; }
  .airbnb-hypo__grid { grid-template-columns: 1fr 1fr; }
  .airbnb-hypo__item:nth-child(7),
  .airbnb-hypo__item:nth-child(8),
  .airbnb-hypo__item:nth-child(9) { border-bottom: 1px solid var(--c-line); }
  .airbnb-hypo__item:nth-child(9) { border-bottom: none; }
  .airbnb-options { grid-template-columns: 1fr; }
  .pds-invest-wrap { grid-template-columns: 1fr; gap: 32px; }
  .pds-invest__visual { order: -1; }
  .pds-invest__visual img { max-height: 320px; }
  .acq-steps { grid-template-columns: 1fr; }
  .acq-steps::before { top: 0; left: 20px; right: auto; width: 1px; height: calc(100% - 40px); }
  .acq-step { padding: 0 0 28px 56px; position: relative; }
  .acq-step__dot { position: absolute; left: 0; top: 0; }
}
@media (max-width: 560px) {
  .airbnb-hypo__grid { grid-template-columns: 1fr; }
  .pds-feats { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════
   Appartements — feature categories
══════════════════════════════════════ */
.feat-cats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin: 32px 0 0;
}
.feat-cat__head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--c-terracotta);
  margin-bottom: 16px;
}
.feat-cat__head-icon { color: var(--c-terracotta); font-size: 18px; line-height: 1; }
.feat-cat__head-icon i { font-size: 18px; }
.feat-cat__title {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c-text);
  margin: 0;
}
.feat-cat__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--c-line);
}
.feat-cat__item:last-child { border-bottom: none; }
.feat-cat__item-icon { color: var(--c-text-muted); font-size: 15px; line-height: 1; flex-shrink: 0; margin-top: 2px; }
.feat-cat__item-icon i { font-size: 15px; }
.feat-cat__item-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--c-text);
  margin: 0 0 2px;
}
.feat-cat__item-text {
  font-size: 12px;
  color: var(--c-text-muted);
  line-height: 1.45;
  margin: 0;
}
@media (max-width: 760px) {
  .feat-cats { grid-template-columns: 1fr; gap: 24px; }
}

/* ══════════════════════════════════════
   Appartements — spec block
══════════════════════════════════════ */
.apt-spec {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--c-line);
}
.apt-spec__metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 32px;
}
.apt-spec__metric-value {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 500;
  color: var(--c-blue-deep);
  margin: 0 0 4px;
  line-height: 1.1;
}
.apt-spec__metric-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c-text-muted);
  margin: 0;
}
.apt-spec__equip-title {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c-text-muted);
  margin: 0 0 12px;
}
.apt-spec__cuisine {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.apt-spec__cuisine li {
  background: var(--c-blue-light);
  color: var(--c-blue-deep);
  font-size: 13px;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 100px;
}
.apt-spec__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.apt-spec__list li {
  font-size: 13px;
  color: var(--c-text-muted);
  padding-left: 16px;
  position: relative;
}
.apt-spec__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--c-terracotta);
  font-size: 11px;
  font-weight: 700;
  top: 1px;
}
@media (max-width: 760px) {
  .apt-spec { grid-template-columns: 1fr; gap: 28px; }
}

/* ══════════════════════════════════════
   Appartements — vidéo de présentation
══════════════════════════════════════ */
.apt-chapter {
  padding: 64px 0 8px;
  border-top: 2px solid var(--c-terracotta);
  margin-top: 8px;
}
.apt-chapter .kicker { margin-bottom: 6px; }
.apt-chapter h2 { margin: 0; font-size: clamp(28px, 3.5vw, 42px); }

.apt-video-section {
  background: #0f1a22;
  padding: 56px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.apt-video-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--c-terracotta);
  margin: 0;
}
.apt-video-wrap {
  width: 100%;
  max-width: 720px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.55);
}
.apt-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ══════════════════════════════════════
   Appartements — galerie immersive
══════════════════════════════════════ */
.apt-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 300px;
  gap: 3px;
  margin: 0;
}
.apt-gallery__item {
  overflow: hidden;
  background: var(--c-line);
}
.apt-gallery__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.apt-gallery__item:not(.apt-gallery__item--full):hover .apt-gallery__img {
  transform: scale(1.06);
}

/* Appartements layout (7 items) */
.apt-gallery--apts .apt-gallery__item:nth-child(1) { grid-column: 1 / 3; }
.apt-gallery--apts .apt-gallery__item:nth-child(2) { grid-row: 1 / 3; grid-column: 3; }
.apt-gallery--apts .apt-gallery__item:nth-child(5) { grid-column: 1 / 3; }

/* Penthouses layout (8 items) */
.apt-gallery--ph .apt-gallery__item:nth-child(1) { grid-column: 1 / 3; }
.apt-gallery--ph .apt-gallery__item:nth-child(2) { grid-row: 1 / 3; grid-column: 3; }
.apt-gallery--ph .apt-gallery__item:nth-child(5) { grid-column: 1 / 3; }
.apt-gallery--ph .apt-gallery__item:nth-child(7) { grid-column: 1 / 3; }

/* Full-width parallax item (last in each gallery) */
.apt-gallery__item--full {
  grid-column: 1 / -1;
  grid-row: auto;
  height: 460px;
  overflow: hidden;
}
.apt-gallery__item--full .apt-gallery__img {
  height: 130%;
  transform-origin: center top;
}

@media (max-width: 760px) {
  .apt-gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 200px; }
  .apt-gallery--apts .apt-gallery__item:nth-child(1),
  .apt-gallery--apts .apt-gallery__item:nth-child(2),
  .apt-gallery--apts .apt-gallery__item:nth-child(5),
  .apt-gallery--ph .apt-gallery__item:nth-child(1),
  .apt-gallery--ph .apt-gallery__item:nth-child(2),
  .apt-gallery--ph .apt-gallery__item:nth-child(5),
  .apt-gallery--ph .apt-gallery__item:nth-child(7) { grid-column: auto; grid-row: auto; }
  .apt-gallery__item--full { height: 260px; }
  .apt-gallery__item--full .apt-gallery__img { height: 100%; }
}

/* ===================== MOBILE FIXES ===================== */
@media (max-width: 560px) {
  /* Top bar — 2 lignes sur mobile */
  .top-bar { padding: 12px 28px 14px; }
  .top-bar__link { flex-direction: column; align-items: center; gap: 2px; text-align: center; }
  .top-bar__emoji { display: none; }
  .top-bar__text { display: flex; flex-direction: column; gap: 2px; align-items: center; }
  .top-bar__line1 { display: block; }
  .top-bar__line2 { display: block; }

  /* Vidéo hero — mobile only */
  .hero__video--desktop { display: none; }
  .hero__video--mobile { display: block; }

  /* Hero compact — padding horizontal + image recadrée vers le haut */
  .hero--compact { background-position: center top; }
  .hero__inner { padding-left: 24px; padding-right: 24px; }

  /* Hero video — panel pleine largeur bien calé */
  .hero--video .hero__inner { padding-left: 16px; padding-right: 16px; }

  /* Prox strips — position par défaut */
  .prox-strip__bg { background-position: center center; }
  /* Strip plage : couple à droite du cadre */
  .prox-strip--beach .prox-strip__bg { background-position: 72% center; }
}

/* Hero minimal (pages légales) */
.hero--minimal { background: var(--c-text); min-height: 160px; }
.hero--minimal .hero__title { font-size: clamp(28px, 4vw, 48px); }

/* Legal pages */
.legal-body { max-width: 720px; line-height: 1.8; color: var(--c-text); }
.legal-body h2 { font-family: var(--font-display); font-size: clamp(20px, 2.4vw, 26px); font-weight: 500; margin: 2.4em 0 0.6em; border-bottom: 1px solid var(--c-border, #e5e2da); padding-bottom: 0.4em; }
.legal-body h3 { font-size: 16px; font-weight: 600; margin: 1.6em 0 0.4em; }
.legal-body p { margin: 0 0 1em; }
.legal-body ul { padding-left: 1.4em; margin: 0 0 1.2em; }
.legal-body ul li { margin-bottom: 0.5em; }
.legal-body a { color: var(--c-text); text-decoration: underline; text-underline-offset: 3px; }
.legal-body__update { margin-top: 3em; font-size: 13px; color: var(--c-muted, #888); }
.legal-table { width: 100%; border-collapse: collapse; margin: 1em 0 1.6em; font-size: 14px; }
.legal-table th { background: var(--c-surface); font-weight: 600; text-align: left; padding: 10px 14px; border: 1px solid var(--c-border, #e5e2da); }
.legal-table td { padding: 9px 14px; border: 1px solid var(--c-border, #e5e2da); vertical-align: top; }
@media (max-width: 600px) { .legal-table { font-size: 12px; } .legal-table th, .legal-table td { padding: 7px 8px; } }

/* Footer */
.site-footer { background: var(--c-text); color: rgba(255,255,255,0.8); padding: 48px 0; margin-top: 40px; }
.site-footer__inner { display: flex; flex-wrap: wrap; gap: 24px; justify-content: space-between; align-items: flex-start; }
.site-footer .brand__name { color: #fff; }
.site-footer .brand__sub { display: block; font-size: 12px; opacity: 0.7; text-transform: none; letter-spacing: 0; margin-top: 4px; }
.site-footer__nav { display: flex; gap: 18px; flex-wrap: wrap; font-size: 14px; }
.site-footer__contact { font-size: 14px; text-align: right; }
.site-footer__contact p { margin: 0 0 4px; color: rgba(255,255,255,0.7); }
@media (max-width: 760px) { .site-footer__inner { flex-direction: column; } .site-footer__contact { text-align: left; } }
.site-footer__legal { display: flex; flex-wrap: wrap; gap: 16px 28px; align-items: center; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; margin-top: 20px; font-size: 12px; color: rgba(255,255,255,0.4); }
.site-footer__legal a { color: rgba(255,255,255,0.4); text-decoration: none; }
.site-footer__legal a:hover { color: rgba(255,255,255,0.75); }
