/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold:    #b8963e;
  --gold-lt: #d4b06a;
  --dark:    #1a2818;
  --mid:     #2e3d28;
  --light:   #f2f5ee;
  --white:   #ffffff;
  --serif:   'Cormorant Garamond', Georgia, serif;
  --sans:    'Inter', system-ui, sans-serif;
  --radius:  4px;
  --shadow:  0 8px 40px rgba(0,0,0,.18);
  --trans:   .35s cubic-bezier(.4,0,.2,1);
}

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

body {
  font-family: var(--sans);
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }

a { color: inherit; text-decoration: none; }

.container {
  width: min(1200px, 92vw);
  margin-inline: auto;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-block;
  padding: .85rem 2.2rem;
  font-family: var(--sans);
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--trans);
  cursor: pointer;
  border: 2px solid transparent;
}
.btn--light {
  background: var(--white);
  color: var(--dark);
}
.btn--light:hover { background: var(--gold); color: var(--white); border-color: var(--gold); }

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.btn--outline:hover { background: var(--gold); border-color: var(--gold); }

/* ─── SECTION SHARED ─── */
.section-header { text-align: center; margin-bottom: 4rem; }
.section-eyebrow {
  font-family: var(--sans);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--dark);
}
.section-header--light .section-title { color: var(--white); }
.section-header--light .section-eyebrow { color: var(--gold-lt); }

/* ─── NAV ─── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 4vw;
  transition: background var(--trans), padding var(--trans), box-shadow var(--trans);
}
.nav.scrolled {
  background: rgba(26,26,26,.97);
  padding: .85rem 4vw;
  box-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.nav__logo {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: .05em;
}
.nav__links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav__links a {
  font-size: .8rem;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
  transition: color var(--trans);
}
.nav__links a:hover { color: var(--gold-lt); }
.nav__cta {
  padding: .45rem 1.2rem;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  color: var(--gold) !important;
}
.nav__cta:hover { background: var(--gold); color: var(--white) !important; }

.nav__right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.lang-dropdown {
  position: relative;
}
.lang-dropdown__btn {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-family: var(--sans);
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .1em;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 4px;
  padding: .3rem .65rem;
  cursor: pointer;
  transition: all var(--trans);
}
.lang-dropdown__btn:hover {
  background: rgba(184,150,62,.15);
  border-color: var(--gold);
}
.lang-dropdown__flag { font-size: 1rem; line-height: 1; }
.lang-dropdown__code { letter-spacing: .12em; }
.lang-dropdown__menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: rgba(18,18,18,.97);
  border: 1px solid rgba(184,150,62,.3);
  border-radius: 5px;
  list-style: none;
  min-width: 130px;
  overflow: hidden;
  z-index: 200;
  backdrop-filter: blur(12px);
}
.lang-dropdown__menu.open { display: block; }
.lang-dropdown__menu li {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .6rem 1rem;
  font-size: .75rem;
  color: rgba(255,255,255,.75);
  cursor: pointer;
  transition: background var(--trans), color var(--trans);
}
.lang-dropdown__menu li:hover { background: rgba(184,150,62,.15); color: var(--gold-lt); }
.lang-dropdown__menu li.active { color: var(--gold-lt); font-weight: 500; }

.nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; }
.nav__burger span { display: block; width: 24px; height: 1.5px; background: var(--white); transition: all var(--trans); }

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  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 30%;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(10,10,10,.72) 0%,
    rgba(10,10,10,.4) 50%,
    rgba(10,10,10,.65) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin-top: 6rem;
}

.hero__eyebrow {
  font-size: .75rem;
  font-weight: 400;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold-lt);
}

.hero__title {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 9vw, 7.5rem);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -.01em;
}
.hero__title span {
  display: block;
  font-style: italic;
  color: var(--gold-lt);
}
.hero__address {
  font-family: var(--sans);
  font-size: clamp(.8rem, 1.5vw, 1rem);
  font-weight: 300;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-top: .75rem;
  margin-bottom: .5rem;
}

.hero__badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 50px;
  padding: .75rem 2rem;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(8px);
}
.hero__badge-number {
  font-family: var(--sans);
  font-size: 2rem;
  font-weight: 300;
  color: var(--gold-lt);
  line-height: 1;
}
.hero__badge-label {
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  line-height: 1.4;
  color: rgba(255,255,255,.8);
}

.hero__scroll {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .75rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  transition: color var(--trans);
  margin-top: 1rem;
}
.hero__scroll svg { width: 20px; animation: bounce 2s infinite; }
.hero__scroll:hover { color: var(--gold-lt); }

@keyframes bounce {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

/* VIDEO PLACEHOLDER */
.hero__video-wrap {
  position: relative;
  z-index: 1;
  width: min(900px, 90vw);
  margin: 3rem auto 0;
}
.hero__video-placeholder {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 16/9;
  border: 1px solid rgba(255,255,255,.15);
  box-shadow: var(--shadow);
  cursor: pointer;
}
.hero__video-placeholder img { position: absolute; inset: 0; }
.hero__video-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.45);
}
.hero__play {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__play svg {
  width: 72px;
  height: 72px;
  color: var(--white);
  opacity: .9;
  background: rgba(184,150,62,.8);
  border-radius: 50%;
  padding: 1rem;
  transition: all var(--trans);
}
.hero__video-placeholder:hover .hero__play svg {
  background: var(--gold);
  transform: scale(1.08);
}
.hero__video-label {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  white-space: nowrap;
}

/* ─── DESCRIPTION ─── */
.description {
  padding: 7rem 0;
  background: var(--light);
}
.description__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 5rem;
  align-items: start;
}
.description__text p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--mid);
  margin-bottom: 1.25rem;
}
.description__text strong { color: var(--dark); font-weight: 500; }

.description__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: rgba(0,0,0,.08);
}
.stat {
  background: var(--white);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  text-align: center;
}
.stat__number {
  font-family: var(--serif);
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.stat__number small { font-size: 1.2rem; }
.stat__label {
  font-size: .75rem;
  font-weight: 400;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #777;
}

.description__features {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
}
.feature {
  text-align: center;
  padding: 2rem 1.5rem;
  border-top: 2px solid var(--gold);
}
.feature__icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 1rem;
  color: var(--gold);
}
.feature__icon svg { width: 100%; height: 100%; }
.feature h3 {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: .6rem;
}
.feature p { font-size: .875rem; line-height: 1.7; color: #666; }

/* ─── DISPONIBILITÉS ─── */
.disponibilites { padding: 5rem 0 5rem; background: var(--cream); }

.lots-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: .75rem;
  margin-top: 2.5rem;
  padding: 0 1.5rem;
}
.lot-card {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  background: var(--dark);
  transition: transform .35s cubic-bezier(.2,0,.2,1), box-shadow .35s cubic-bezier(.2,0,.2,1);
  will-change: transform;
}
.lot-card:hover {
  transform: scale(1.04) translateY(-4px);
  box-shadow: 0 24px 48px rgba(0,0,0,.35), 0 8px 16px rgba(0,0,0,.2);
  z-index: 2;
}
.lot-card__img { position: absolute; inset: 0; }
.lot-card__img img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; display: block; transition: transform .6s ease; opacity: .85; }
.lot-card:hover .lot-card__img img { transform: scale(1.04); opacity: 1; }
.lot-card__body {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem 1.25rem;
  background: linear-gradient(to top, rgba(10,10,10,.85) 0%, rgba(10,10,10,.2) 55%, transparent 100%);
  text-align: left;
}
.lot-card__letter {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--gold-lt);
  line-height: 1;
  margin-bottom: .4rem;
}
.lot-card__badge {
  display: inline-block;
  font-size: .55rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold-lt);
  border: 1px solid rgba(184,150,62,.5);
  border-radius: 50px;
  padding: .15rem .6rem;
  margin-bottom: .75rem;
}
.lot-card__stats { display: flex; flex-direction: column; gap: .5rem; width: 100%; }
.lot-card__stats > div { display: flex; flex-direction: column; gap: .1rem; }
.lot-card__num-row { display: flex; align-items: baseline; gap: .2rem; }
.lot-card__num {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 300;
  color: #fff;
  line-height: 1;
}
.lot-card__num-row small { font-size: .65rem; color: var(--gold-lt); font-weight: 500; }
.lot-card__stats p {
  font-size: .55rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin: 0;
}
.lot-card__plans {
  display: flex;
  gap: .3rem;
  margin-bottom: .75rem;
  width: 100%;
}
.lot-card__plans img {
  flex: 1;
  width: 50%;
  height: auto;
  border-radius: 3px;
  object-fit: contain;
  background: rgba(255,255,255,.06);
  opacity: .82;
  transition: opacity .3s ease;
}
.lot-card:hover .lot-card__plans img { opacity: 1; }

/* Lot Modal */
.lot-modal {
  position: fixed; inset: 0; z-index: 200;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .3s ease;
}
.lot-modal.active { opacity: 1; pointer-events: all; }
.lot-modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(10,10,10,.75);
  backdrop-filter: blur(6px);
}
.lot-modal__box {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr;
  max-width: 860px; width: 90%;
  background: #fff; border-radius: 8px;
  overflow: hidden;
  transform: translateY(20px) scale(.97);
  transition: transform .35s cubic-bezier(.2,0,.2,1);
  box-shadow: 0 40px 80px rgba(0,0,0,.4);
}
.lot-modal.active .lot-modal__box { transform: translateY(0) scale(1); }
.lot-modal__close {
  position: absolute; top: 1rem; right: 1rem;
  background: rgba(255,255,255,.9); border: none;
  width: 36px; height: 36px; border-radius: 50%;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  z-index: 2; color: var(--dark);
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
  transition: background .2s;
}
.lot-modal__close:hover { background: #fff; }
.lot-modal__img {
  min-height: 400px;
  background-size: cover;
  background-position: center 30%;
}
.lot-modal__info {
  padding: 2.5rem 2rem;
  display: flex; flex-direction: column; justify-content: center; align-items: flex-start;
}
.lot-modal__plans {
  display: flex;
  gap: .75rem;
  margin: 1.25rem 0;
}
.lot-modal__plans img {
  flex: 1;
  width: 50%;
  height: auto;
  border-radius: 4px;
  background: rgba(255,255,255,.05);
  object-fit: contain;
}
.lot-modal__cta-row {
  width: 100%; display: flex; justify-content: flex-end; margin-top: 1.75rem;
}
.lot-modal__eyebrow {
  font-size: .6rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: .5rem;
}
.lot-modal__title {
  font-family: var(--serif); font-size: 2.8rem; font-weight: 300;
  color: var(--dark); line-height: 1; margin-bottom: 1.5rem;
}
.lot-modal__stats { display: flex; flex-direction: column; gap: 1.25rem; }
.lot-modal__stat-label {
  font-size: .6rem; letter-spacing: .12em; text-transform: uppercase;
  color: #999; margin-bottom: .15rem;
}
.lot-modal__stat-val {
  font-family: var(--serif); font-size: 1.6rem; font-weight: 300; color: var(--dark); line-height: 1;
}
.lot-modal__stat-val small { font-size: .75rem; color: var(--gold); }
@media (max-width: 640px) {
  .lot-modal__box { grid-template-columns: 1fr; }
  .lot-modal__img { min-height: 220px; }
}

/* Transport & Écoles band */
.localisation-band {
  background: #f0ece4;
  margin-top: 4rem;
  padding: 3.5rem 0;
}
.localisation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
.localisation-col__eyebrow {
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.localisation-col__eyebrow::before {
  content: '';
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
}
.localisation-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.localisation-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.loc-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: .1rem;
}
.loc-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: .3rem;
}
.localisation-list li > div { display: flex; flex-direction: column; gap: .2rem; }
.localisation-list strong {
  font-size: .85rem;
  font-weight: 500;
  color: var(--dark);
  font-family: var(--sans);
}
.localisation-list span {
  font-size: .78rem;
  color: #666;
  line-height: 1.5;
}
.loc-tag {
  display: inline-block;
  font-size: .62rem;
  letter-spacing: .1em;
  font-style: normal;
  background: rgba(184,150,62,.12);
  color: var(--gold);
  border-radius: 50px;
  padding: .15rem .6rem;
  margin-top: .2rem;
  width: fit-content;
}

/* Bottom 3 loc-features */
.loc-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 0;
  border-top: 1px solid rgba(0,0,0,.08);
}
.loc-feature {
  padding: 2.5rem 2rem;
  text-align: center;
  border-right: 1px solid rgba(0,0,0,.08);
}
.loc-feature:last-child { border-right: none; }
.loc-feature__icon { width: 44px; height: 44px; margin: 0 auto .75rem; color: var(--gold); }
.loc-feature__icon svg { width: 100%; height: 100%; }
.loc-feature h3 {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
  font-style: italic;
  color: var(--dark);
  margin-bottom: .6rem;
}
.loc-feature p { font-size: .8rem; line-height: 1.7; color: #666; }

/* ─── LOCALISATION SECTION ─── */
.localisation-section { background: var(--cream); }

.localisation-section__inner {
  display: grid;
  grid-template-columns: 340px 1fr;
  min-height: 600px;
}

/* Left panel */
.loc-panel {
  background: var(--dark);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  overflow-y: auto;
}
.loc-panel__pretitle {
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: .25rem;
}
.loc-panel__title {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 300;
  font-style: italic;
  color: var(--gold-lt);
  line-height: 1.1;
  margin-bottom: .5rem;
}
.loc-panel__address {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .78rem;
  color: rgba(255,255,255,.7);
}
.loc-panel__address svg { flex-shrink: 0; color: var(--gold); }
.loc-panel__tagline {
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-top: .25rem;
}
.loc-panel__block {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.25rem;
}
.loc-panel__block-title {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-lt);
  font-weight: 500;
  margin-bottom: .75rem;
}
.loc-panel__block-title svg { flex-shrink: 0; }
.loc-panel__sub {
  font-size: .6rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin: .6rem 0 .4rem;
}
.loc-panel__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.loc-panel__list li {
  font-size: .75rem;
  color: rgba(255,255,255,.65);
  line-height: 1.5;
}
.loc-panel__list li::before { content: '• '; color: var(--gold); }
.loc-panel__list--dots li {
  display: flex;
  align-items: center;
  gap: .5rem;
}
.loc-panel__list--dots li::before { display: none; }
.loc-panel__list--dots em {
  font-style: normal;
  font-size: .65rem;
  color: var(--gold);
  margin-left: auto;
  white-space: nowrap;
}
/* Clickable panel links */
.loc-link {
  cursor: pointer;
  border-radius: 4px;
  transition: background .2s;
  padding: .2rem .4rem;
  margin: 0 -.4rem;
}
.loc-link:hover { background: rgba(255,255,255,.08); }
.loc-link--active { background: rgba(184,150,62,.15) !important; }
.loc-link--active span:not(.loc-dot-sm) { color: var(--gold-lt) !important; }

.loc-dot-sm {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Right map */
.loc-map { position: relative; min-height: 500px; }
.loc-map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* Bottom bar */
.loc-bottom-bar {
  background: var(--dark);
  padding: 1.5rem 0;
}
.loc-bottom-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  align-items: center;
}
.loc-bottom-bar__item {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .75rem 1rem;
  border-right: 1px solid rgba(255,255,255,.1);
  color: #fff;
}
.loc-bottom-bar__item:last-child { border-right: none; }
.loc-bottom-bar__item svg { flex-shrink: 0; color: var(--gold); }
.loc-bottom-bar__item > div { display: flex; flex-direction: column; gap: .15rem; }
.loc-bottom-bar__item strong { font-size: .75rem; font-weight: 500; color: #fff; }
.loc-bottom-bar__item span { font-size: .68rem; color: rgba(255,255,255,.5); }
.loc-bottom-bar__item--cta {
  background: var(--gold);
  border-radius: 4px;
  border-right: none;
}
.loc-bottom-bar__item--cta strong,
.loc-bottom-bar__item--cta span { color: #fff; }
.loc-bottom-bar__item--cta svg { color: #fff; }

/* Leaflet popup override */
.loc-popup .leaflet-popup-content-wrapper {
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 8px 32px rgba(0,0,0,.35);
  border: 1px solid rgba(184,150,62,.3);
  padding: 0;
}
.loc-popup .leaflet-popup-content { margin: .9rem 1.1rem; }
.loc-popup .leaflet-popup-tip { background: #fff; }

@media (max-width: 900px) {
  .localisation-section__inner { grid-template-columns: 1fr; }
  .loc-panel { max-height: none; }
  .loc-map { min-height: 350px; }
  .loc-bottom-bar__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .loc-bottom-bar__grid { grid-template-columns: 1fr; }
}

/* ─── GALLERY ─── */
.gallery {
  padding: 5rem 0 0;
  background: var(--dark);
}
.gallery .section-header {
  margin-bottom: 2rem;
}
.gallery__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: 320px 320px;
  gap: 4px;
  margin-top: 0;
}
.gallery__item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.gallery__item--large {
  /* no span — 2x2 grid */
}
.gallery__item img {
  transition: transform .6s ease;
}
.gallery__item:hover img { transform: scale(1.06); }
.gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.55) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--trans);
}
.gallery__item:hover::after { opacity: 1; }
.gallery__caption {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  z-index: 2;
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0;
  transform: translateY(6px);
  transition: all var(--trans);
}
.gallery__item:hover .gallery__caption { opacity: 1; transform: translateY(0); }

/* LIGHTBOX */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0,0,0,.95);
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.lightbox.active { display: flex; }
.lightbox__img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  width: auto;
  height: auto;
}
.lightbox__caption {
  margin-top: 1rem;
  font-size: .8rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
}
.lightbox__close {
  position: absolute;
  top: 1.5rem; right: 2rem;
  background: none; border: none; color: var(--white);
  font-size: 1.5rem; cursor: pointer; opacity: .7;
  transition: opacity var(--trans);
}
.lightbox__close:hover { opacity: 1; }
.lightbox__prev, .lightbox__next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: none; border: none; color: var(--white);
  font-size: 3rem; cursor: pointer; opacity: .6;
  transition: opacity var(--trans); line-height: 1;
  padding: 0 1rem;
}
.lightbox__prev { left: 1rem; }
.lightbox__next { right: 1rem; }
.lightbox__prev:hover, .lightbox__next:hover { opacity: 1; }

/* ─── CTA BANNER ─── */
.cta-banner {
  position: relative;
  padding: 6rem 0;
  background: var(--gold);
  text-align: right;
  overflow: hidden;
}
.cta-banner__bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/agent.jpg');
  background-size: cover;
  background-position: left center;
  opacity: 0.45;
  /* gradient right→left: visible on left, fade out to right */
  -webkit-mask-image: linear-gradient(to left, transparent 0%, black 55%);
  mask-image: linear-gradient(to left, transparent 0%, black 55%);
  pointer-events: none;
}
.cta-banner .container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.cta-banner h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 1rem;
  text-align: right;
}
.cta-banner p {
  font-size: 1rem;
  color: rgba(255,255,255,.85);
  margin-bottom: 2rem;
  text-align: right;
  max-width: 480px;
}

/* ─── FOOTER ─── */
.footer { background: var(--dark); }
.footer__top { padding: 5rem 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer__grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  gap: 4rem;
  align-items: start;
}
.footer__logo {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: .75rem;
}
.footer__tagline { font-size: .8rem; color: rgba(255,255,255,.4); line-height: 1.6; }

.footer__contact h3, .footer__plan-link h3 {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--gold-lt);
  margin-bottom: 1rem;
  letter-spacing: .05em;
}
.footer__invite {
  font-size: .9rem;
  line-height: 1.75;
  color: rgba(255,255,255,.7);
  margin-bottom: 1.5rem;
}
.footer__invite strong { color: var(--gold-lt); font-weight: 500; }
.footer__info { list-style: none; display: flex; flex-direction: column; gap: .75rem; }
.footer__info li {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .875rem;
  color: rgba(255,255,255,.65);
}
.footer__info svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--gold); }

.footer__plan-link p {
  font-size: .875rem;
  color: rgba(255,255,255,.6);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer__legal {
  padding: 2rem 0;
  background: rgba(0,0,0,.3);
}
.footer__legal p {
  font-size: .72rem;
  line-height: 1.7;
  color: rgba(255,255,255,.35);
  max-width: 900px;
}
.footer__copy {
  margin-top: .75rem;
  color: rgba(255,255,255,.25) !important;
}

/* Full-width last gallery item */
.gallery__item--full {
  grid-column: 1 / -1;
  height: 420px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.gallery__item--full img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transition: transform .6s ease;
}
.gallery__item--full:hover img { transform: scale(1.04); }
.gallery__fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    transparent 0%,
    transparent 30%,
    rgba(13,26,14,.6) 65%,
    rgba(13,26,14,.92) 100%
  );
  pointer-events: none;
}

@media (max-width: 768px) {
  .lots-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: .75rem;
    padding: 0 1.25rem 1.25rem;
    scrollbar-width: none;
  }
  .lots-grid::-webkit-scrollbar { display: none; }
  .lot-card {
    flex: 0 0 75vw;
    max-width: 320px;
    scroll-snap-align: center;
    aspect-ratio: 3/4;
  }
  .lot-card:hover {
    transform: none;
    box-shadow: none;
  }
}

@media (max-width: 768px) {
  .gallery__item--full { height: 260px; }

  /* CTA banner responsive */
  .cta-banner { text-align: center; }
  .cta-banner .container { align-items: center; }
  .cta-banner h2 { text-align: center; font-size: clamp(1.8rem, 7vw, 2.8rem); }
  .cta-banner p  { text-align: center; }
  .cta-banner__bg {
    background-position: left center;
    -webkit-mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
    opacity: 0.3;
  }
}

/* Gallery more button */
.gallery__more {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3.5rem 0 4rem;
  background: var(--dark);
}
.btn-gallery-more {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  font-family: var(--sans);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50px;
  padding: 1rem 2.5rem;
  transition: all var(--trans);
}
.btn-gallery-more svg { width: 18px; transition: transform var(--trans); }
.btn-gallery-more:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}
.btn-gallery-more:hover svg { transform: translateX(4px); }

/* ─── GALERIE PAGE ─── */
.galerie-page {
  min-height: 100vh;
  background: var(--dark);
  padding-top: 5rem;
}
.galerie-page__header {
  text-align: center;
  padding: 4rem 1rem 3rem;
}

.galerie-filters {
  display: flex;
  justify-content: center;
  gap: .75rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.filter-btn {
  font-family: var(--sans);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50px;
  padding: .55rem 1.5rem;
  cursor: pointer;
  transition: all var(--trans);
}
.filter-btn:hover { color: var(--white); border-color: rgba(255,255,255,.3); }
.filter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.masonry {
  columns: 3;
  column-gap: 6px;
  padding: 0 6px 6rem;
  max-width: 1400px;
  margin: 0 auto;
}
.masonry__item {
  break-inside: avoid;
  margin-bottom: 6px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: 3px;
  transition: opacity .4s ease, transform .4s ease;
}
.masonry__item img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform .6s ease;
}
.masonry__item:hover img { transform: scale(1.04); }
.masonry__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.5) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--trans);
}
.masonry__item:hover::after { opacity: 1; }
.masonry__caption {
  position: absolute;
  bottom: .75rem;
  left: 1rem;
  right: 1rem;
  z-index: 2;
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0;
  transform: translateY(6px);
  transition: all var(--trans);
}
.masonry__item:hover .masonry__caption { opacity: 1; transform: translateY(0); }

.masonry__item.hidden {
  display: none;
}

@media (max-width: 900px) { .masonry { columns: 2; } }
@media (max-width: 550px) { .masonry { columns: 1; } }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .description__features { grid-template-columns: repeat(2,1fr); }
  .gallery__grid { grid-template-columns: 1fr 1fr; grid-template-rows: 280px 280px; }
  .gallery__item--large { grid-row: span 1; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: span 2; }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: var(--dark);
    align-items: center;
    justify-content: center;
    gap: 2rem;
    font-size: 1.2rem;
  }
  .description__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .description__features { grid-template-columns: 1fr 1fr; }
  .description__features .feature:last-child:nth-child(odd) { grid-column: 1 / -1; max-width: 280px; margin: 0 auto; }
  .gallery__grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .gallery__item { aspect-ratio: 16/9; }
  .gallery__item--large { aspect-ratio: 4/3; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__brand { grid-column: 1; }
}

/* ─── PLAN PAGE ─── */
.plan-hero {
  min-height: 100vh;
  background: #0d1a0e;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 5rem;
  overflow: hidden;
}
.plan-hero__header {
  text-align: center;
  padding: 3rem 1rem 2rem;
  color: var(--white);
}
.plan-hero__header h1 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: .5rem;
}
.plan-hero__header p {
  font-size: .8rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-lt);
}

.plan-container {
  width: 100%;
  flex: 1;
  position: relative;
  overflow: hidden;
  /* desktop: static, no grab */
}

/* desktop: imagen centrada, estática */
.plan-canvas {
  position: relative;
  width: min(900px, 92vw);
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
  user-select: none;
}
.plan-canvas img {
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
}

/* mobile: pan + zoom habilitado */
@media (max-width: 768px) {
  .plan-container {
    overflow: hidden;
    cursor: grab;
    height: calc(100vh - 12rem);
  }
  .plan-container:active { cursor: grabbing; }
  .plan-canvas {
    position: absolute;
    width: 100%;
    height: 100%;
    margin: 0;
    border-radius: 0;
    box-shadow: none;
    transform-origin: center center;
    transition: transform .1s linear;
  }
  .plan-canvas img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
}

/* Lot markers */
.lot-marker {
  position: absolute;
  transform: translate(-50%, -50%);
  cursor: pointer;
  z-index: 10;
}
.lot-marker__pulse {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(184,150,62,.2);
  display: flex; align-items: center; justify-content: center;
  animation: pulse 2s infinite;
  transition: all var(--trans);
}
.lot-marker:hover .lot-marker__pulse {
  background: rgba(184,150,62,.5);
  transform: scale(1.2);
}
.lot-marker__dot {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: #4caf50;
  border: 2px solid #fff;
  box-shadow: 0 0 12px rgba(76,175,80,.6);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-size: .95rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0;
}
.lot-marker--sold .lot-marker__dot {
  background: #e53935;
  box-shadow: 0 0 10px rgba(229,57,53,.6);
}
.lot-marker--sold .lot-marker__pulse {
  background: rgba(229,57,53,.2);
  animation: none;
}
.lot-marker--sold:hover .lot-marker__pulse {
  background: rgba(229,57,53,.4);
}
.lot-marker__label {
  position: absolute;
  bottom: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--dark);
  color: var(--white);
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .1em;
  padding: .3rem .7rem;
  border-radius: 3px;
  white-space: nowrap;
  border: 1px solid var(--gold);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--trans);
}
.lot-marker:hover .lot-marker__label { opacity: 1; }

@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(184,150,62,.4); }
  50% { box-shadow: 0 0 0 12px rgba(184,150,62,0); }
}

.plan-controls {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  z-index: 50;
}
.plan-btn {
  width: 44px; height: 44px;
  background: rgba(26,26,26,.9);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 4px;
  color: var(--white);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--trans);
  backdrop-filter: blur(8px);
}
.plan-btn:hover { background: var(--gold); border-color: var(--gold); }

.plan-legend {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  background: rgba(26,26,26,.9);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 6px;
  padding: 1.25rem 1.5rem;
  color: var(--white);
  backdrop-filter: blur(8px);
  z-index: 50;
}
.plan-legend h4 {
  font-family: var(--serif);
  font-size: .9rem;
  color: var(--gold-lt);
  margin-bottom: .75rem;
  letter-spacing: .08em;
}
.plan-legend ul { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.plan-legend li {
  display: flex; align-items: center; gap: .6rem;
  font-size: .75rem; color: rgba(255,255,255,.7);
}
.legend-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 6px rgba(184,150,62,.5);
}
.legend-dot.available { background: #4caf50; box-shadow: 0 0 6px rgba(76,175,80,.5); }
.legend-dot.sold { background: #e53935; box-shadow: 0 0 6px rgba(229,57,53,.5); }

.plan-back {
  position: fixed;
  top: 5.5rem;
  left: 2rem;
  z-index: 50;
}
.plan-back a {
  display: flex; align-items: center; gap: .5rem;
  font-size: .75rem; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.7);
  transition: color var(--trans);
}
.plan-back a:hover { color: var(--gold-lt); }
