/* =====================================================
   GROUPE CUVELIER — GLOBAL STYLES
   Palette : #0a0a0a · #D4631A · #f8f6f2
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,600&family=Jost:wght@300;400;500;600&display=swap');

/* ── Variables ─────────────────────────────────────── */
:root {
  --black:      #0a0a0a;
  --black2:     #141414;
  --orange:     #D4631A;
  --orange-dk:  #b8531a;
  --white:      #f8f6f2;
  --gray-lt:    #f0ede7;
  --gray-mid:   #c8c4bc;
  --gray-dk:    #5a5654;
  --serif:      'Cormorant Garamond', Georgia, serif;
  --sans:       'Jost', system-ui, sans-serif;
  --ease:       0.3s ease;
  --shadow:     0 4px 28px rgba(0,0,0,.08);
  --shadow-h:   0 8px 48px rgba(0,0,0,.14);
  --max:        1320px;
}

/* ── Reset ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--white);
  color: var(--black);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ── Layout ────────────────────────────────────────── */
.container { max-width: var(--max); margin: 0 auto; padding: 0 28px; }

/* ── Typography ────────────────────────────────────── */
h1,h2,h3,h4,h5 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -.01em;
}
h1 { font-size: clamp(2.6rem, 5.5vw, 4.2rem); }
h2 { font-size: clamp(2rem,   3.5vw, 3rem);   }
h3 { font-size: clamp(1.5rem, 2.5vw, 2rem);   }
h4 { font-size: 1.25rem; }

.label {
  display: block;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

/* ── Buttons ───────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-family: var(--sans);
  transition: all var(--ease);
  cursor: pointer;
}
.btn--primary  { background: var(--orange); color: var(--white); }
.btn--primary:hover  { background: var(--orange-dk); transform: translateY(-1px); }
.btn--outline  { background: transparent; color: var(--white); border: 1px solid rgba(248,246,242,.35); }
.btn--outline:hover  { border-color: var(--white); background: rgba(255,255,255,.06); }
.btn--dark     { background: var(--black); color: var(--white); border: 1px solid var(--black); }
.btn--dark:hover     { background: #1f1f1f; }
.btn--ghost    { background: transparent; color: var(--black); border: 1px solid rgba(0,0,0,.2); }
.btn--ghost:hover    { background: var(--black); color: var(--white); }
.btn--sm { padding: 9px 20px; font-size: .72rem; }
.btn--block { width: 100%; justify-content: center; }

/* ── Navigation ────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 200;
  height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 28px;
  background: rgba(10,10,10,.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(212,99,26,.12);
  transition: box-shadow var(--ease);
}
.nav.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,.4); }
.nav__logo {
  display: flex;
  align-items: center;
}
.nav__logo img {
  height: 44px;
  width: auto;
  display: block;
}
.nav__logo span { color: var(--orange); }
.nav__links {
  display: flex; align-items: center; gap: 34px;
}
.nav__links a {
  font-size: .75rem; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  color: rgba(248,246,242,.65);
  position: relative; transition: color var(--ease);
}
.nav__links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0;
  width: 0; height: 1px; background: var(--orange);
  transition: width var(--ease);
}
.nav__links a:hover, .nav__links a.active { color: var(--white); }
.nav__links a:hover::after, .nav__links a.active::after { width: 100%; }
.nav__right { display: flex; align-items: center; gap: 20px; }

/* Lang */
.lang-select {
  position: relative;
}
.lang-select__btn {
  font-size: .72rem; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  color: rgba(248,246,242,.5);
  display: flex; align-items: center; gap: 5px;
  transition: color var(--ease);
}
.lang-select__btn:hover { color: var(--white); }
.lang-select__btn svg { width: 12px; height: 12px; transition: transform var(--ease); }
.lang-select__btn.open svg { transform: rotate(180deg); }
.lang-select__drop {
  display: none; position: absolute; top: calc(100% + 10px); right: 0;
  background: var(--black2); border: 1px solid rgba(212,99,26,.2);
  min-width: 72px;
}
.lang-select__drop.open { display: block; }
.lang-select__drop button {
  display: block; width: 100%; padding: 9px 14px;
  font-size: .72rem; font-weight: 500; letter-spacing: .08em;
  text-transform: uppercase; color: rgba(248,246,242,.6);
  text-align: left; transition: all var(--ease);
}
.lang-select__drop button:hover { background: rgba(212,99,26,.1); color: var(--white); }
.lang-select__drop button.active { color: var(--orange); }

/* Hamburger */
.nav__burger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.nav__burger span { display: block; width: 22px; height: 1.5px; background: var(--white); transition: var(--ease); }
.nav__burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── Hero ──────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh;
  background: var(--black); overflow: hidden;
  display: flex; align-items: flex-end; padding-bottom: 88px;
}
.hero__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: .55; transition: transform 8s ease;
}
.hero__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; opacity: .38;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top,
    rgba(10,10,10,.80) 0%,
    rgba(10,10,10,.18) 50%,
    transparent 100%);
}
.hero__content {
  position: relative; z-index: 2;
  max-width: var(--max); margin: 0 auto; padding: 0 28px; width: 100%;
}
.hero__label { font-size: .72rem; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; color: var(--orange); display: block; margin-bottom: 18px; }
.hero__title { font-family: var(--serif); color: var(--white); max-width: 720px; margin-bottom: 24px; }
.hero__title em { font-style: italic; color: rgba(248,246,242,.65); }
.hero__text { font-size: 1rem; color: rgba(248,246,242,.65); max-width: 460px; line-height: 1.75; margin-bottom: 36px; }
.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__stats {
  position: absolute; bottom: 88px; right: 28px;
  z-index: 2; display: flex; gap: 44px;
}
.hero__stat { text-align: right; }
.hero__stat-n { font-family: var(--serif); font-size: 2.2rem; font-weight: 300; color: var(--orange); line-height: 1; display: block; }
.hero__stat-l { font-size: .65rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(248,246,242,.5); margin-top: 4px; }
.hero__scroll {
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(248,246,242,.35); font-size: .62rem; letter-spacing: .15em; text-transform: uppercase; cursor: pointer;
}
.hero__scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, rgba(212,99,26,.7), transparent); animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .4; } }

/* ── Section ───────────────────────────────────────── */
.section { padding: 96px 0; }
.section--dark  { background: var(--black); color: var(--white); }
.section--dark2 { background: var(--black2); color: var(--white); }
.section--gray  { background: var(--gray-lt); }
.section-head { margin-bottom: 56px; }
.section-head--c { text-align: center; }
.section-head p { font-size: .95rem; color: var(--gray-dk); line-height: 1.7; max-width: 540px; margin-top: 12px; }
.section-head--c p { margin: 12px auto 0; }

/* ── Page header ───────────────────────────────────── */
.page-hdr {
  background: var(--black);
  padding: 148px 0 80px;
  position: relative; overflow: hidden;
}
.page-hdr::after {
  content: ''; position: absolute;
  top: -120px; right: -120px;
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(212,99,26,.07) 0%, transparent 70%);
}
.page-hdr__label { font-size: .72rem; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; color: var(--orange); display: block; margin-bottom: 14px; }
.page-hdr__title { font-family: var(--serif); color: var(--white); font-size: clamp(2.2rem,4vw,3.5rem); line-height: 1.1; margin-bottom: 14px; }
.page-hdr__sub { font-size: .95rem; color: rgba(248,246,242,.5); max-width: 520px; line-height: 1.75; }

/* ── Services strip ────────────────────────────────── */
.services-strip { background: var(--orange); padding: 44px 0; }
.services-list { display: flex; gap: 48px; justify-content: center; flex-wrap: wrap; }
.service-item { display: flex; align-items: center; gap: 12px; color: var(--white); }
.service-item svg { width: 18px; height: 18px; opacity: .85; }
.service-item__t { font-size: .78rem; font-weight: 500; letter-spacing: .09em; text-transform: uppercase; }

/* ── Filter bar ────────────────────────────────────── */
.filter-bar {
  background: var(--black2);
  padding: 18px 0;
  position: sticky; top: 72px; z-index: 100;
  border-bottom: 1px solid rgba(212,99,26,.12);
}
.filter-bar__inner { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.filter-btn {
  padding: 8px 17px;
  font-size: .7rem; font-weight: 500; letter-spacing: .09em; text-transform: uppercase;
  color: rgba(248,246,242,.45); border: 1px solid rgba(255,255,255,.1);
  background: transparent; transition: all var(--ease); font-family: var(--sans);
}
.filter-btn:hover { color: var(--white); border-color: rgba(255,255,255,.3); }
.filter-btn.active { background: var(--orange); color: var(--white); border-color: var(--orange); }
.filter-sel {
  padding: 8px 32px 8px 16px;
  font-size: .7rem; font-weight: 500; letter-spacing: .09em; text-transform: uppercase;
  color: rgba(248,246,242,.45); border: 1px solid rgba(255,255,255,.1);
  background: transparent; transition: all var(--ease); font-family: var(--sans);
  -webkit-appearance: none; appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' fill='none'%3E%3Cpath d='M1 1l4 4 4-4' stroke='rgba(248,246,242,.4)' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center;
  outline: none;
}
.filter-sel option { background: var(--black2); color: var(--white); }
.filter-sel:hover, .filter-sel:focus { color: var(--white); border-color: rgba(255,255,255,.3); }
.filter-sep { width: 1px; height: 22px; background: rgba(255,255,255,.1); flex-shrink: 0; }
.filter-count { font-size: .73rem; color: rgba(248,246,242,.35); margin-left: auto; white-space: nowrap; }

/* ── Property grid ─────────────────────────────────── */
.props-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 28px;
}

/* ── Property card ─────────────────────────────────── */
.prop-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,.07);
  overflow: hidden;
  transition: all var(--ease);
  position: relative;
}
.prop-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-h); }
.prop-card--dark { background: var(--black2); border-color: rgba(255,255,255,.06); }

.prop-card__media {
  position: relative;
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 3px;
  aspect-ratio: 4/3;
  background: #111;
}
.prop-card__img {
  grid-column: 1; grid-row: 1 / 3;
  width: 100%; height: 100%; object-fit: cover; display: block;
  cursor: pointer;
  transition: transform .5s ease;
}
.prop-card:hover .prop-card__img { transform: scale(1.04); }
.prop-card__thumbs { display: contents; }
.prop-card__thumb {
  overflow: hidden; cursor: pointer;
}
.prop-card__thumb img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .4s ease;
}
.prop-card__thumb:hover img { transform: scale(1.06); }
.prop-card__nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(10,10,10,.55); color: #fff; border: none;
  width: 36px; height: 36px; border-radius: 50%; cursor: pointer;
  font-size: 1.4rem; line-height: 1; display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .2s ease; z-index: 3;
}
.prop-card:hover .prop-card__nav { opacity: 1; }
.prop-card__nav--l { left: 10px; }
.prop-card__nav--r { right: 10px; }
.prop-card__nav:hover { background: rgba(10,10,10,.85); }
.prop-card__dots {
  position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 5px; z-index: 3;
}
.prop-card__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,.45); transition: background .2s;
}
.prop-card__dot.active { background: #fff; }
.prop-card__badge-type {
  position: absolute; top: 12px; left: 12px;
  background: var(--orange); color: var(--white);
  font-size: .63rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase;
  padding: 5px 11px;
}
.prop-card__badge-avail {
  position: absolute; top: 12px; right: 12px;
  font-size: .63rem; font-weight: 500; letter-spacing: .09em; text-transform: uppercase;
  padding: 5px 10px; background: rgba(10,10,10,.75); color: var(--white);
  backdrop-filter: blur(4px);
  display: flex; align-items: center; gap: 5px;
}
.prop-card__badge-avail::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%; background: #3ecf8e;
}
.prop-card__badge-avail.na::before { background: rgba(255,255,255,.4); }

.prop-card__body { padding: 22px 24px; }
.prop-card__loc {
  font-size: .68rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 5px;
}
.prop-card__name {
  font-family: var(--serif); font-size: 1.3rem; line-height: 1.2; margin-bottom: 14px;
  color: var(--black);
}
.prop-card--dark .prop-card__name { color: var(--white); }

.prop-card__specs {
  display: flex; gap: 14px; flex-wrap: wrap;
  padding: 12px 0; border-top: 1px solid rgba(0,0,0,.07); border-bottom: 1px solid rgba(0,0,0,.07);
  margin-bottom: 14px;
}
.prop-card--dark .prop-card__specs { border-color: rgba(255,255,255,.07); }
.prop-card__spec {
  display: flex; align-items: center; gap: 5px;
  font-size: .76rem; color: var(--gray-dk);
}
.prop-card--dark .prop-card__spec { color: rgba(248,246,242,.55); }
.prop-card__spec svg { width: 13px; height: 13px; flex-shrink: 0; opacity: .55; }

.prop-card__rating {
  display: flex; align-items: center; gap: 7px; margin-bottom: 14px;
}
.prop-card__stars { color: var(--orange); font-size: .72rem; letter-spacing: 1px; }
.prop-card__rating-t { font-size: .76rem; color: var(--gray-dk); }
.prop-card--dark .prop-card__rating-t { color: rgba(248,246,242,.45); }

/* POI accordion */
.prop-card__pois { border-top: 1px solid rgba(0,0,0,.07); }
.prop-card--dark .prop-card__pois { border-color: rgba(255,255,255,.07); }
.pois-toggle {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 11px 0;
  font-size: .7rem; font-weight: 500; letter-spacing: .09em; text-transform: uppercase;
  color: var(--gray-dk); background: none; cursor: pointer; font-family: var(--sans);
  transition: color var(--ease);
}
.prop-card--dark .pois-toggle { color: rgba(248,246,242,.45); }
.pois-toggle:hover { color: var(--orange); }
.pois-toggle svg { width: 13px; height: 13px; transition: transform var(--ease); }
.pois-toggle.open svg { transform: rotate(180deg); }
.pois-list { display: none; padding-bottom: 6px; }
.pois-list.open { display: block; }
.poi-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 6px 0; border-bottom: 1px solid rgba(0,0,0,.05); font-size: .76rem;
}
.prop-card--dark .poi-row { border-color: rgba(255,255,255,.05); }
.poi-row:last-child { border-bottom: none; }
.poi-name { color: var(--black); }
.prop-card--dark .poi-name { color: var(--white); }
.poi-dist { font-size: .7rem; color: var(--gray-dk); }
.prop-card--dark .poi-dist { color: rgba(248,246,242,.4); }

/* Card footer */
.prop-card__foot {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 18px; padding-top: 14px; border-top: 1px solid rgba(0,0,0,.07);
}
.prop-card--dark .prop-card__foot { border-color: rgba(255,255,255,.07); }
.prop-card__price { font-family: var(--serif); font-size: 1.45rem; line-height: 1; color: var(--black); }
.prop-card--dark .prop-card__price { color: var(--white); }
.prop-card__price sub {
  font-family: var(--sans); font-size: .7rem; color: var(--gray-dk);
  font-weight: 400; vertical-align: middle; margin-left: 3px;
}
.prop-card--dark .prop-card__price sub { color: rgba(248,246,242,.45); }

/* ── Property hero ─────────────────────────────────── */
.prop-hero {
  position: relative; height: 70vh; min-height: 500px;
  background: var(--black); overflow: hidden;
}
.prop-hero__video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: .5;
}
.prop-hero__iframe {
  position: absolute; inset: 0; width: 100%; height: 100%;
  border: none; pointer-events: none;
  transform: scale(1.05);
}
.prop-hero__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center; opacity: .45;
}
.prop-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top,
    rgba(10,10,10,.92) 0%,
    rgba(10,10,10,.3)  55%,
    transparent 100%);
}
.prop-hero__play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  z-index: 3; width: 66px; height: 66px; border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.5); background: rgba(0,0,0,.3);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all var(--ease);
}
.prop-hero__play:hover { border-color: var(--white); background: rgba(212,99,26,.35); }
.prop-hero__play svg { width: 22px; height: 22px; color: var(--white); margin-left: 3px; }
.prop-hero__content {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  padding: 0 0 44px;
}
.prop-hero__inner {
  max-width: var(--max); margin: 0 auto; padding: 0 28px;
  display: flex; align-items: flex-end; justify-content: space-between; gap: 24px;
}
.prop-hero__badges { display: flex; gap: 8px; margin-bottom: 12px; }
.prop-hero__badge {
  font-size: .63rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
  padding: 5px 12px; border: 1px solid rgba(255,255,255,.3); color: var(--white);
}
.prop-hero__badge--fill { background: var(--orange); border-color: var(--orange); }
.prop-hero__title { font-family: var(--serif); font-size: clamp(1.8rem,3vw,2.8rem); color: var(--white); line-height: 1.1; margin-bottom: 8px; }
.prop-hero__loc { font-size: .8rem; color: rgba(248,246,242,.6); display: flex; align-items: center; gap: 6px; }
.prop-hero__loc svg { width: 11px; height: 11px; }
.prop-hero__rating { display: flex; align-items: center; gap: 8px; margin-top: 8px; }
.prop-hero__stars { color: var(--orange); font-size: .82rem; }
.prop-hero__rating-t { font-size: .8rem; color: rgba(248,246,242,.65); }
.prop-hero__specs {
  display: flex; gap: 28px; flex-shrink: 0;
  padding: 20px 28px;
  background: rgba(10,10,10,.65); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.07);
}
.prop-hero__spec { text-align: center; }
.prop-hero__spec-v { font-family: var(--serif); font-size: 1.5rem; color: var(--white); display: block; line-height: 1; }
.prop-hero__spec-l { font-size: .62rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(248,246,242,.4); margin-top: 4px; }

/* ── Property layout ───────────────────────────────── */
.prop-layout { padding: 64px 0 80px; }
.prop-cols { display: grid; grid-template-columns: 1fr 360px; gap: 48px; align-items: start; }
.prop-sidebar { position: sticky; top: 96px; }

/* Sidebar card */
.sidebar-card { background: var(--white); border: 1px solid rgba(0,0,0,.09); padding: 30px; box-shadow: var(--shadow); }
.sidebar-price { font-family: var(--serif); font-size: 2.2rem; color: var(--black); line-height: 1; margin-bottom: 4px; }
.sidebar-price sub { font-family: var(--sans); font-size: .78rem; color: var(--gray-dk); font-weight: 400; vertical-align: middle; margin-left: 4px; }
.sidebar-incl {
  background: rgba(212,99,26,.06); border-left: 3px solid var(--orange);
  padding: 12px 14px; margin: 18px 0;
}
.sidebar-incl__t { font-size: .65rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--orange); margin-bottom: 9px; }
.sidebar-incl__list { display: flex; flex-direction: column; gap: 5px; }
.sidebar-incl__item { display: flex; align-items: center; gap: 8px; font-size: .8rem; color: var(--gray-dk); }
.sidebar-incl__item::before { content: '✓'; color: var(--orange); font-weight: 600; font-size: .72rem; }
.sidebar-rating { display: flex; align-items: center; gap: 8px; padding: 12px 0; border-top: 1px solid rgba(0,0,0,.07); border-bottom: 1px solid rgba(0,0,0,.07); margin-bottom: 18px; }
.sidebar-rating__stars { color: var(--orange); font-size: .85rem; }
.sidebar-rating__t { font-size: .8rem; color: var(--gray-dk); }
.sidebar-btns { display: flex; flex-direction: column; gap: 9px; margin-bottom: 18px; }
.beds24-wrapper {
  margin-top: 20px; padding-top: 20px;
  border-top: 1px solid rgba(0,0,0,.07);
}
.beds24-wrapper__t { font-size: .68rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--gray-dk); margin-bottom: 12px; }

/* Gallery mosaic */
.gallery-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 6px; margin-bottom: 40px;
}
.gallery-mosaic__main {
  grid-column: 1; grid-row: 1/3;
  aspect-ratio: 4/3; overflow: hidden; cursor: pointer; position: relative;
}
.gallery-mosaic__main img,
.gallery-mosaic__thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s ease;
}
.gallery-mosaic__main:hover img { transform: scale(1.04); }
.gallery-mosaic__thumb { aspect-ratio: 3/2; overflow: hidden; cursor: pointer; position: relative; }
.gallery-mosaic__thumb:hover img { transform: scale(1.04); }
.gallery-mosaic__more {
  position: relative;
}
.gallery-mosaic__more::after {
  content: 'Voir toutes les photos';
  position: absolute; inset: 0;
  background: rgba(10,10,10,.65);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: .72rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
}

/* Lightbox */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 1000;
  background: rgba(0,0,0,.96);
  align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox__img { max-width: 90vw; max-height: 88vh; object-fit: contain; }
.lightbox__close {
  position: absolute; top: 18px; right: 22px;
  color: var(--white); font-size: 1.4rem; opacity: .6; transition: opacity var(--ease); padding: 6px;
}
.lightbox__close:hover { opacity: 1; }
.lightbox__nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.08); color: var(--white);
  padding: 18px 14px; font-size: 1.1rem; cursor: pointer; transition: background var(--ease);
}
.lightbox__nav:hover { background: var(--orange); }
.lightbox__nav--l { left: 12px; }
.lightbox__nav--r { right: 12px; }
.lightbox__counter { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); font-size: .78rem; color: rgba(255,255,255,.5); letter-spacing: .1em; }

/* Property sections */
.prop-section { margin-bottom: 44px; }
.prop-section__t {
  font-family: var(--serif); font-size: 1.4rem; margin-bottom: 18px;
  padding-bottom: 12px; border-bottom: 1px solid rgba(0,0,0,.07);
}

/* Lang tabs */
.lang-tabs { display: flex; border-bottom: 1px solid rgba(0,0,0,.1); margin-bottom: 18px; }
.lang-tab {
  padding: 9px 18px;
  font-size: .72rem; font-weight: 500; letter-spacing: .08em; text-transform: uppercase;
  color: var(--gray-dk); border-bottom: 2px solid transparent; margin-bottom: -1px;
  transition: all var(--ease); background: none; font-family: var(--sans); cursor: pointer;
}
.lang-tab.active { color: var(--orange); border-bottom-color: var(--orange); }
.lang-pane { display: none; font-size: .93rem; line-height: 1.82; color: var(--gray-dk); }
.lang-pane.active { display: block; }

/* POI table */
.poi-table { width: 100%; border-collapse: collapse; }
.poi-table th { font-size: .67rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--gray-dk); padding: 10px 14px; background: var(--gray-lt); text-align: left; }
.poi-table td { padding: 11px 14px; font-size: .86rem; border-bottom: 1px solid rgba(0,0,0,.06); }
.poi-table tr:last-child td { border-bottom: none; }

/* Beds */
.beds-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px,1fr)); gap: 14px; }
.bed-card { border: 1px solid rgba(0,0,0,.08); padding: 18px; }
.bed-card__room { font-size: .65rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--orange); margin-bottom: 7px; }
.bed-card__type { font-family: var(--serif); font-size: .95rem; color: var(--black); }

/* Amenities */
.amenities-cats { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px,1fr)); gap: 20px; }
.amenity-cat__t { font-size: .68rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--gray-dk); margin-bottom: 10px; padding-bottom: 7px; border-bottom: 1px solid rgba(0,0,0,.07); }
.amenity-item { display: flex; align-items: center; gap: 8px; font-size: .8rem; color: var(--black); padding: 4px 0; }
.amenity-item::before { content: '✓'; color: var(--orange); font-weight: 600; font-size: .68rem; flex-shrink: 0; }
.amenity-item.no { color: var(--gray-mid); }
.amenity-item.no::before { content: '✗'; color: var(--gray-mid); }

/* Avail calendar */
.avail-grid { display: grid; grid-template-columns: repeat(6,1fr); gap: 8px; }
.avail-month { background: var(--gray-lt); padding: 12px; }
.avail-month__n { font-size: .65rem; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; color: var(--gray-dk); margin-bottom: 6px; display: block; }
.avail-dot { display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: #3ecf8e; margin: 2px; }
.avail-dot.b { background: #e55555; }

/* ── Sale card ─────────────────────────────────────── */
.sale-card {
  background: var(--white); border: 1px solid rgba(0,0,0,.07);
  overflow: hidden; transition: all var(--ease);
}
.sale-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-h); }
.sale-card__media { position: relative; aspect-ratio: 16/9; overflow: hidden; background: #1a1a1a; }
.sale-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.sale-card:hover .sale-card__media img { transform: scale(1.05); }
.sale-card__badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--orange); color: var(--white);
  font-size: .63rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase;
  padding: 5px 11px;
}
.sale-card__status {
  position: absolute; top: 12px; right: 12px;
  font-size: .63rem; font-weight: 500; letter-spacing: .08em; text-transform: uppercase;
  padding: 5px 10px; background: rgba(10,10,10,.75); color: var(--white);
  backdrop-filter: blur(4px); display: flex; align-items: center; gap: 5px;
}
.sale-card__status::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: #3ecf8e; }
.sale-card__status.sold::before { background: #e55; }
.sale-card__body { padding: 22px 24px; }
.sale-card__loc { font-size: .68rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--orange); margin-bottom: 5px; }
.sale-card__name { font-family: var(--serif); font-size: 1.3rem; margin-bottom: 14px; line-height: 1.2; }
.sale-card__specs { display: flex; gap: 14px; flex-wrap: wrap; padding: 12px 0; border-top: 1px solid rgba(0,0,0,.07); border-bottom: 1px solid rgba(0,0,0,.07); margin-bottom: 14px; }
.sale-card__spec { display: flex; align-items: center; gap: 5px; font-size: .76rem; color: var(--gray-dk); }
.sale-card__spec svg { width: 13px; height: 13px; opacity: .55; flex-shrink: 0; }
.sale-card__foot { display: flex; align-items: center; justify-content: space-between; margin-top: 16px; padding-top: 14px; border-top: 1px solid rgba(0,0,0,.07); }
.sale-card__price { font-family: var(--serif); font-size: 1.5rem; color: var(--black); }
.sale-card__price sub { font-family: var(--sans); font-size: .7rem; color: var(--gray-dk); font-weight: 400; vertical-align: middle; margin-left: 3px; }
.sale-card__desc { font-size: .83rem; color: var(--gray-dk); line-height: 1.65; margin-bottom: 14px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

/* ── Testimonial ───────────────────────────────────── */
.testi-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px,1fr)); gap: 22px; }
.testi-card {
  background: var(--white); border: 1px solid rgba(0,0,0,.07); padding: 28px;
  transition: all var(--ease);
}
.testi-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.testi-card--dark { background: #111; border-color: rgba(255,255,255,.06); }
.testi-card__stars { color: var(--orange); font-size: .85rem; letter-spacing: 2px; margin-bottom: 14px; }
.testi-card__text { font-size: .9rem; line-height: 1.78; color: var(--gray-dk); margin-bottom: 22px; font-style: italic; }
.testi-card--dark .testi-card__text { color: rgba(248,246,242,.55); }
.testi-card__author { display: flex; align-items: center; gap: 12px; }
.testi-card__av { width: 38px; height: 38px; border-radius: 50%; background: var(--orange); display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: .95rem; color: var(--white); font-weight: 600; flex-shrink: 0; }
.testi-card__name { font-size: .84rem; font-weight: 600; color: var(--black); }
.testi-card--dark .testi-card__name { color: var(--white); }
.testi-card__role { font-size: .74rem; color: var(--gray-dk); }
.testi-card--dark .testi-card__role { color: rgba(248,246,242,.4); }
.testi-card__prop { font-size: .68rem; color: var(--orange); margin-top: 2px; }

/* ── Testimonial belt (auto-scroll) ───────────────── */
.testi-belt {
  overflow: hidden;
  padding: 12px 0 32px;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.testi-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: testi-scroll var(--testi-dur, 55s) linear infinite;
}
.testi-belt:hover .testi-track { animation-play-state: paused; }
@keyframes testi-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.testi-card2 {
  width: 360px; flex-shrink: 0;
  background: var(--black2);
  border: 1px solid rgba(212,99,26,.12);
  padding: 26px 28px 22px;
  transition: border-color .2s;
}
.testi-card2:hover { border-color: rgba(212,99,26,.35); }
.testi-card2__top { display: flex; align-items: center; gap: 13px; margin-bottom: 14px; }
.testi-card2__av {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 1.05rem;
  color: var(--white); font-weight: 600; flex-shrink: 0;
}
.testi-card2__name { font-size: .86rem; font-weight: 600; color: var(--white); line-height: 1.2; }
.testi-card2__sub  { font-size: .68rem; color: rgba(248,246,242,.35); margin-top: 2px; }
.testi-card2__stars { color: var(--orange); font-size: .82rem; letter-spacing: 2px; margin-bottom: 4px; }
.testi-card2__date { font-size: .68rem; color: rgba(248,246,242,.3); margin-bottom: 12px; }
.testi-card2__text { font-size: .88rem; line-height: 1.75; color: rgba(248,246,242,.6); font-style: italic; }

/* ── About ─────────────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-img { position: relative; }
.about-img img { width: 100%; height: 480px; object-fit: cover; }
.about-img__badge { position: absolute; bottom: -22px; right: -22px; background: var(--orange); color: var(--white); padding: 22px 26px; text-align: center; }
.about-img__badge-n { font-family: var(--serif); font-size: 2.5rem; line-height: 1; display: block; }
.about-img__badge-l { font-size: .67rem; letter-spacing: .1em; text-transform: uppercase; opacity: .8; }
.values-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; margin-top: 36px; }
.value-item { padding: 22px; border: 1px solid rgba(0,0,0,.07); }
.value-item__icon { width: 34px; height: 34px; background: rgba(212,99,26,.1); display: flex; align-items: center; justify-content: center; margin-bottom: 11px; }
.value-item__icon svg { width: 15px; height: 15px; color: var(--orange); }
.value-item__t { font-family: var(--serif); font-size: .95rem; margin-bottom: 5px; }
.value-item__d { font-size: .79rem; color: var(--gray-dk); line-height: 1.55; }

/* ── Contact ───────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.form-group { margin-bottom: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 18px; }
.form-label { display: block; font-size: .68rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--gray-dk); margin-bottom: 7px; }
.form-input, .form-sel, .form-area {
  width: 100%; padding: 13px 16px;
  font-size: .88rem; font-family: var(--sans); color: var(--black);
  background: var(--white); border: 1px solid rgba(0,0,0,.15);
  outline: none; transition: border-color var(--ease);
  -webkit-appearance: none; appearance: none;
}
.form-input:focus, .form-sel:focus, .form-area:focus { border-color: var(--orange); }
.form-area { resize: vertical; min-height: 110px; }
.form-sel {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' fill='none'%3E%3Cpath d='M1 1l4 4 4-4' stroke='rgba(0,0,0,.4)' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; cursor: pointer;
}
.form-check { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; }
.form-check input { width: 15px; height: 15px; margin-top: 3px; accent-color: var(--orange); cursor: pointer; }
.form-check-lbl { font-size: .8rem; color: var(--gray-dk); line-height: 1.55; }
.form-check-lbl a { color: var(--orange); }
.contact-info-item { display: flex; align-items: flex-start; gap: 14px; padding: 18px 0; border-bottom: 1px solid rgba(0,0,0,.07); }
.contact-info-icon { width: 38px; height: 38px; background: rgba(212,99,26,.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-info-icon svg { width: 15px; height: 15px; color: var(--orange); }
.contact-info-lbl { font-size: .67rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--gray-dk); margin-bottom: 3px; }
.contact-info-val { font-size: .9rem; color: var(--black); }

/* ── Footer ────────────────────────────────────────── */
.footer { background: #050505; padding: 72px 0 28px; border-top: 1px solid rgba(212,99,26,.1); }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 44px; margin-bottom: 52px; }
.footer__logo { font-family: var(--serif); font-size: 1.4rem; color: var(--white); margin-bottom: 14px; display: block; }
.footer__logo span { color: var(--orange); }
.footer__tag { font-size: .8rem; color: rgba(248,246,242,.35); line-height: 1.7; max-width: 230px; }
.footer__h { font-size: .67rem; font-weight: 500; letter-spacing: .15em; text-transform: uppercase; color: var(--white); margin-bottom: 18px; }
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a { font-size: .8rem; color: rgba(248,246,242,.4); transition: color var(--ease); }
.footer__links a:hover { color: var(--orange); }
.footer__ci { font-size: .8rem; color: rgba(248,246,242,.4); margin-bottom: 7px; display: flex; align-items: center; gap: 8px; }
.footer__ci svg { width: 12px; height: 12px; color: var(--orange); flex-shrink: 0; }
.footer__bottom { padding-top: 22px; border-top: 1px solid rgba(255,255,255,.05); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.footer__copy { font-size: .72rem; color: rgba(248,246,242,.22); }
.footer__legal { display: flex; gap: 22px; }
.footer__legal a { font-size: .7rem; color: rgba(248,246,242,.22); transition: color var(--ease); }
.footer__legal a:hover { color: rgba(248,246,242,.5); }

/* ── Utilities ─────────────────────────────────────── */
.hidden { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.mt-8 { margin-top: 8px; } .mt-16 { margin-top: 16px; } .mt-24 { margin-top: 24px; } .mt-40 { margin-top: 40px; }
.text-orange { color: var(--orange); }

/* ── Responsive ────────────────────────────────────── */
@media (max-width: 1100px) {
  .prop-cols { grid-template-columns: 1fr; }
  .prop-sidebar { position: static; order: -1; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-img__badge { right: 12px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .nav__links.open {
    display: flex; flex-direction: column;
    position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
    background: rgba(10,10,10,.98); padding: 40px 28px; gap: 22px;
    z-index: 199; align-items: flex-start; justify-content: flex-start;
  }
  .nav__links.open a { font-size: 1.1rem; }
  .props-grid { grid-template-columns: 1fr; }
  .hero__stats { display: none; }
  .hero__ctas { flex-direction: column; align-items: flex-start; }
  .gallery-mosaic { grid-template-columns: 1fr; grid-template-rows: auto; }
  .gallery-mosaic__main { grid-row: auto; aspect-ratio: 16/9; }
  .prop-hero__inner { flex-direction: column; gap: 16px; }
  .prop-hero__specs { width: 100%; flex-wrap: wrap; gap: 16px; }
  .avail-grid { grid-template-columns: repeat(3,1fr); }
  .values-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .services-list { gap: 24px; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section { padding: 64px 0; }
  .page-hdr { padding: 116px 0 52px; }
}
