/* ============================================================
   NIGHT CONCIERGERIE — site.css (v2)
   Palette, typographie, composants partagés multipage.
   ============================================================ */

:root {
  --bg:           #F4EFE4;
  --bg-alt:       #EAE2D2;
  --bg-warm:      #ECE4D2;
  --bg-deep:      #E0D6C0;
  --ink:          #1A1410;
  --ink-muted:    #6B5E4F;
  --hairline:     #D9D0BD;
  --gold:         #B8915A;
  --gold-deep:    #9A7541;
  --night:        #0E0B08;
  --night-soft:   #1A1410;
  --cream:        #F4EFE4;

  --serif:  "Fraunces", ui-serif, Georgia, "Times New Roman", serif;
  --sans:   "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;

  --fs-display:  clamp(2.2rem, 4.6vw, 4.6rem);
  --fs-h1:       clamp(1.9rem, 4vw, 3.6rem);
  --fs-h2:       clamp(1.5rem, 2.6vw, 2.1rem);
  --fs-lead:     clamp(1rem, 1.2vw, 1.18rem);
  --fs-body:     1rem;
  --fs-small:    0.82rem;
  --fs-micro:    0.72rem;

  --lh-display: 1;
  --lh-h:       1.1;
  --lh-body:    1.55;

  --space-xs:   0.5rem;
  --space-s:    1rem;
  --space-m:    2rem;
  --space-l:    3rem;
  --space-xl:   4.5rem;
  --space-2xl:  6rem;

  --radius: 2px;

  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

  --container-max: 1600px;
  --gutter: clamp(1.25rem, 4vw, 4rem);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: auto; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  font-feature-settings: "ss01", "cv11";
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
input, select, textarea { font: inherit; color: inherit; }
::selection { background: var(--gold); color: var(--cream); }

/* ---------- typo ---------- */
h1, h2, h3, h4 { margin: 0; font-weight: 400; font-family: var(--serif); line-height: var(--lh-h); letter-spacing: -0.02em; }
p { margin: 0; }

.eyebrow {
  font-family: var(--sans);
  font-size: var(--fs-micro);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  display: inline-block;
}
.eyebrow.muted { color: var(--ink-muted); }
.rule { display: block; height: 1px; width: 48px; background: var(--gold); border: 0; margin: 0; }

.display {
  font-family: var(--serif); font-size: var(--fs-display);
  line-height: var(--lh-display); font-weight: 300; letter-spacing: -0.03em;
  font-variation-settings: "opsz" 144, "SOFT" 30;
}
.h1 { font-size: var(--fs-h1); font-weight: 300; font-variation-settings: "opsz" 144, "SOFT" 40; }
.h2 { font-size: var(--fs-h2); font-weight: 400; }
.lead {
  font-family: var(--serif); font-weight: 300; font-size: var(--fs-lead);
  line-height: 1.45; color: var(--ink);
  font-variation-settings: "opsz" 18;
}
em, .italic { font-style: italic; font-variation-settings: "opsz" 144, "SOFT" 60; }

/* ---------- layout ---------- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  position: relative;
}
.container.narrow { max-width: 920px; }
.container.reading { max-width: 760px; }

/* ---------- topbar (hidden at load, revealed on scroll) ---------- */
.topbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 101;
  background: #0E0B08;
  color: rgba(244, 239, 228, 0.9);
  padding: 5px var(--gutter);
  font-size: var(--fs-micro);
  letter-spacing: 0.2em;
  font-weight: 500;
  transform: translateY(-100%);
  transition: transform 0.5s var(--ease-out);
}
.topbar.is-revealed { transform: translateY(0); }
.topbar-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  width: 100%;
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem;
}
.topbar-tagline {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 0.76rem;
  letter-spacing: 0.01em;
  color: rgba(244, 239, 228, 0.7);
  font-variation-settings: "opsz" 18, "SOFT" 50;
  line-height: 1;
}
.topbar-tagline em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
  font-variation-settings: "opsz" 18, "SOFT" 90;
}
.topbar-right {
  display: flex; gap: 1.8rem; align-items: center;
}
.topbar-lang { display: flex; gap: 0.7rem; }
.topbar-lang button {
  color: rgba(244,239,228,0.35);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  transition: color 0.3s;
  background: transparent; border: 0; padding: 0;
  font-size: 0.62rem; font-weight: 500;
  cursor: pointer;
}
.topbar-lang button.is-active { color: rgba(244,239,228,0.85); }
.topbar-lang button:hover { color: var(--cream); }

.topbar-cta {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 0.74rem;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--gold);
  font-variation-settings: "opsz" 14, "SOFT" 80;
  padding: 0.25em 0.9em 0.3em;
  border: 1px solid rgba(212,175,111,0.5);
  border-radius: 999px;
  display: inline-flex; align-items: center; gap: 0.45em;
  transition: color 0.35s var(--ease-out), background 0.35s var(--ease-out), border-color 0.35s var(--ease-out);
  white-space: nowrap;
  line-height: 1.2;
}
.topbar-cta span {
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.72rem;
  transition: transform 0.4s var(--ease-out);
  display: inline-block;
}
.topbar-cta:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #0E0B08;
}
.topbar-cta:hover span { transform: translateX(3px); }

@media (max-width: 900px) {
  .topbar-tagline { font-size: 0.78rem; }
}
@media (max-width: 640px) {
  .topbar { padding: 7px var(--gutter); }
  .topbar-tagline { display: none; }
  .topbar-lang { display: none; }
  .topbar-inner { justify-content: flex-end; }
  .topbar-cta { font-size: 0.76rem; padding: 0.35em 0.9em 0.4em; }
}

/* ---------- nav (main nav, shifts down when topbar revealed) ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0.85rem var(--gutter);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  color: var(--cream);
  mix-blend-mode: difference;
  transition: color 0.4s var(--ease-out), transform 0.5s var(--ease-out);
}
body.topbar-revealed .nav { transform: translateY(26px); }
@media (max-width: 640px) {
  body.topbar-revealed .nav { transform: translateY(22px); }
}
.nav.is-scrolled,
.nav.is-solid {
  mix-blend-mode: normal;
  color: var(--ink);
  background: rgba(244, 239, 228, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--hairline);
}
.nav-left  { justify-self: start; display: flex; gap: 2rem; align-items: center; }
.nav-right { justify-self: end;   display: flex; gap: 2rem; align-items: center; }
.nav-entry {
  font-size: var(--fs-micro);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
  padding: 0.3em 0;
}
.nav-entry::before {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: -2px;
  height: 1px;
  background: currentColor;
  transition: right 0.5s var(--ease-out);
}
.nav-entry:hover::before,
.nav-entry.is-active::before { right: 0; }

/* Book now — encadré bouton or, plus visible que les autres entrées */
.nav-entry.nav-book {
  letter-spacing: 0.18em;
  padding: 0.55em 1.15em 0.6em;
  border: 1px solid var(--gold);
  border-radius: 999px;
  color: var(--gold);
  background: transparent;
  position: relative;
  font-weight: 500;
  transition: background 0.4s var(--ease-out), color 0.4s, border-color 0.4s, box-shadow 0.5s, transform 0.4s;
  box-shadow: 0 0 0 0 rgba(212,175,111,0.4);
}
.nav-entry.nav-book::before { display: none; }
.nav-entry.nav-book:hover {
  background: var(--gold);
  color: #0E0B08;
  border-color: var(--gold);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px -10px rgba(212,175,111,0.55);
}
/* On the cream-bg solid nav (inner pages), make the gold pop more */
.nav.is-solid .nav-entry.nav-book,
.nav.is-scrolled .nav-entry.nav-book {
  background: var(--gold);
  color: #0E0B08;
  border-color: var(--gold);
}
.nav.is-solid .nav-entry.nav-book:hover,
.nav.is-scrolled .nav-entry.nav-book:hover {
  background: #0E0B08;
  color: var(--gold);
  border-color: #0E0B08;
}
@media (max-width: 640px) {
  .nav-entry.nav-book { padding: 0.45em 0.9em 0.5em; font-size: 9px; }
}

.nav-logo {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: 0.02em;
  text-align: center;
  line-height: 1;
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
.nav-logo-mark { font-size: 1.35rem; letter-spacing: 0.34em; font-weight: 500; font-variation-settings: "opsz" 60, "SOFT" 40; line-height: 1; padding-left: 0.34em; }
.nav-logo-sub  { font-size: 0.56rem; letter-spacing: 0.4em; text-transform: uppercase; margin-top: 3px; font-family: var(--sans); font-weight: 500; opacity: 0.78; line-height: 1; padding-left: 0.4em; }
@media (max-width: 640px) {
  .nav-logo-mark { font-size: 1.1rem; letter-spacing: 0.3em; padding-left: 0.3em; }
  .nav-logo-sub  { font-size: 0.5rem; letter-spacing: 0.34em; padding-left: 0.34em; }
}

.nav-lang { display: flex; gap: 0.5rem; font-size: var(--fs-micro); letter-spacing: 0.22em; font-weight: 500; }
.nav-lang button { opacity: 0.5; text-transform: uppercase; transition: opacity 0.3s; }
.nav-lang button.is-active, .nav-lang button:hover { opacity: 1; }

/* Propriétaires — lien discret à droite du nav */
.nav-sep {
  opacity: 0.35;
  font-family: var(--serif);
  font-size: 1rem;
  line-height: 1;
  margin: 0 -0.4rem;
  font-style: italic;
  user-select: none;
}
.nav-aside {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 0.88rem;
  letter-spacing: 0.01em;
  text-transform: none;
  color: var(--gold-deep);
  padding: 0.3em 0;
  position: relative;
  font-variation-settings: "opsz" 18, "SOFT" 80;
  transition: color 0.3s;
}
.nav-aside:hover { color: var(--gold); }
.nav-aside::before {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: -1px;
  height: 1px;
  background: var(--gold);
  transition: right 0.5s var(--ease-out);
}
.nav-aside:hover::before { right: 0; }

/* Burger mobile — 44×44 touch target with thinner visual lines centered */
.nav-burger {
  display: none;
  width: 44px; height: 44px;
  background: transparent; border: 0;
  position: relative;
  padding: 11px 7px;
}
.nav-burger span {
  position: absolute;
  left: 7px; right: 7px;
  height: 1px;
  background: currentColor;
  transition: transform 0.35s var(--ease-out), opacity 0.2s;
}
.nav-burger span:nth-child(1) { top: 17px; }
.nav-burger span:nth-child(2) { bottom: 17px; }
body.nav-open .nav-burger span:nth-child(1) {
  top: 50%; transform: translateY(-0.5px) rotate(45deg);
}
body.nav-open .nav-burger span:nth-child(2) {
  bottom: 50%; transform: translateY(0.5px) rotate(-45deg);
}

/* Drawer mobile */
.nav-drawer {
  position: fixed;
  inset: 0;
  background: var(--night);
  color: var(--cream);
  z-index: 99;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.45s var(--ease-out), visibility 0.45s;
  overflow-y: auto;
  padding: 5rem var(--gutter) 2rem;
  display: flex; flex-direction: column;
}
body.nav-open .nav-drawer {
  opacity: 1; visibility: visible; pointer-events: auto;
}
.drawer-inner {
  display: flex; flex-direction: column; gap: 2rem;
  max-width: 420px; width: 100%; margin: auto 0;
}
.drawer-group { display: flex; flex-direction: column; gap: 1rem; }
.drawer-group a {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.8rem, 7vw, 2.4rem);
  line-height: 1; letter-spacing: -0.02em;
  color: var(--cream);
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
.drawer-group.aside a {
  font-style: italic;
  font-size: 1.3rem;
  color: var(--gold);
  font-variation-settings: "opsz" 18, "SOFT" 80;
}
.drawer-group-sep {
  font-family: var(--sans);
  font-size: var(--fs-micro);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(244,239,228,0.45);
  padding-top: 1.6rem;
  border-top: 1px solid rgba(255,255,255,0.15);
  margin-bottom: -0.8rem;
}
.drawer-lang {
  margin-top: 1.6rem;
  display: flex; gap: 1.2rem;
  font-family: var(--sans);
  font-size: var(--fs-micro);
  letter-spacing: 0.22em;
  font-weight: 500;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.drawer-lang button {
  color: rgba(244,239,228,0.5);
  text-transform: uppercase;
  transition: color 0.3s;
  background: transparent; border: 0; padding: 0;
}
.drawer-lang button.is-active, .drawer-lang button:hover { color: var(--gold); }

@media (max-width: 900px) {
  .nav-left, .nav-right { gap: 1rem; }
  .nav-entry { font-size: 10px; letter-spacing: 0.18em; }
  .nav-lang { display: none; }
  .nav-aside, .nav-sep { display: none; }
}
@media (max-width: 640px) {
  .nav { padding: 0.9rem var(--gutter); }
  .nav-left, .nav-right > .nav-entry { display: none; }
  .nav-right { gap: 0; }
  .nav-burger { display: block; }
}

/* ---------- hero (home) ---------- */
.hero {
  position: relative;
  height: 100svh;
  min-height: 640px;
  overflow: hidden;
  background: var(--night);
}
.hero-media { position: absolute; inset: 0; will-change: transform; }
.hero-media::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(14,11,8,0.45) 0%, rgba(14,11,8,0.05) 25%, rgba(14,11,8,0.05) 55%, rgba(14,11,8,0.7) 100%);
  pointer-events: none;
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.05); }
.hero-content {
  position: relative; z-index: 2;
  height: 100%;
  padding: 0 var(--gutter) 6rem;
  display: flex; flex-direction: column; justify-content: flex-end;
  color: var(--cream);
  max-width: 1600px; margin: 0 auto;
}
.hero-eyebrow {
  font-size: var(--fs-micro); letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--gold);
  font-weight: 500; margin-bottom: 1.8rem; overflow: hidden;
}
.hero-eyebrow span { display: inline-block; }
.hero-title {
  font-family: var(--serif);
  font-size: var(--fs-display);
  line-height: var(--lh-display); font-weight: 300;
  letter-spacing: -0.025em; max-width: 18ch;
  font-variation-settings: "opsz" 144, "SOFT" 60;
}
.hero-title .line { display: block; overflow: hidden; }
.hero-title .line > span { display: inline-block; will-change: transform; }
.hero-sub {
  margin-top: 1.4rem;
  font-family: var(--serif);
  font-weight: 300; font-style: italic;
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  line-height: 1.5;
  color: rgba(244, 239, 228, 0.78);
  max-width: 44ch;
  font-variation-settings: "opsz" 18, "SOFT" 80;
}

.hero-cta-row {
  margin-top: 2.4rem;
  display: flex; gap: 1rem;
}
.btn {
  display: inline-flex; align-items: center; gap: 0.8em;
  padding: 1em 1.6em;
  border: 1px solid currentColor;
  font-family: var(--sans);
  font-size: var(--fs-small);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
  background: transparent;
}
.btn span { position: relative; z-index: 1; transition: color 0.3s; }
.btn::before {
  content: ""; position: absolute; inset: 0;
  background: currentColor;
  transform: translateY(101%);
  transition: transform 0.5s var(--ease-out);
}
.btn:hover::before { transform: translateY(0); }
.btn.btn-invert:hover span { color: var(--night); }
.btn.btn-onlight:hover span { color: var(--cream); }
.btn.btn-onlight { color: var(--ink); }
.btn.btn-invert { color: var(--cream); }
.btn.btn-gold { color: var(--gold); border-color: var(--gold); }
.btn.btn-gold:hover span { color: var(--night); }

.hero-meta {
  position: absolute;
  left: var(--gutter); right: var(--gutter);
  bottom: 1.6rem;
  display: flex; justify-content: space-between;
  font-size: var(--fs-micro);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(244, 239, 228, 0.7);
}
.hero-scroll { display: inline-flex; gap: 0.8em; align-items: center; }
.hero-scroll::before {
  content: ""; width: 22px; height: 1px; background: var(--gold); display: inline-block;
}

/* Hero watermark — signature en bas-centre du hero */
.hero-watermark {
  position: absolute;
  left: 50%; bottom: 5.4rem;
  transform: translateX(-50%);
  text-align: center;
  color: rgba(244, 239, 228, 0.58);
  pointer-events: none;
  opacity: 0;
  animation: hw-fade-in 1.6s var(--ease-out) 1.4s forwards;
}
.hw-mark {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.15rem;
  letter-spacing: 0.62em;
  padding-left: 0.62em;
  font-variation-settings: "opsz" 60, "SOFT" 40;
  text-shadow: 0 1px 20px rgba(0,0,0,0.5);
}
.hw-sub {
  margin-top: 8px;
  font-family: var(--sans);
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(244, 239, 228, 0.48);
}
.hw-sub em {
  font-family: var(--serif);
  font-style: italic;
  letter-spacing: 0.02em;
  text-transform: none;
  font-size: 0.72rem;
  color: var(--gold);
  margin: 0 0.2em 0 0.1em;
}
@keyframes hw-fade-in { to { opacity: 1; } }
@media (max-width: 640px) {
  .hero-watermark { bottom: 4.6rem; }
  .hw-mark { font-size: 1rem; letter-spacing: 0.5em; padding-left: 0.5em; }
  .hw-sub { font-size: 0.5rem; letter-spacing: 0.24em; }
  .hw-sub em { font-size: 0.64rem; }
}

/* ---------- sub-hero (pages intérieures) ---------- */
.subhero {
  position: relative;
  height: 72svh; min-height: 500px;
  overflow: hidden; background: var(--night);
}
.subhero-media { position: absolute; inset: 0; will-change: transform; }
.subhero-media img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.04); }
.subhero-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,11,8,0.45), rgba(14,11,8,0.1) 50%, rgba(14,11,8,0.4));
}
.subhero-content,
.subhero-caption {
  position: relative; z-index: 2;
  height: 100%;
  padding: 7rem var(--gutter) 5rem;
  display: flex; flex-direction: column; justify-content: flex-end;
  color: var(--cream);
  max-width: var(--container-max); margin: 0 auto;
}
.subhero > img:first-of-type {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  z-index: 0;
}
.subhero::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,11,8,0.45), rgba(14,11,8,0.15) 50%, rgba(14,11,8,0.55));
  z-index: 1;
}
.subhero-eyebrow {
  font-size: var(--fs-micro); letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--gold);
  font-weight: 500; margin-bottom: 1.4rem;
}
.subhero-title {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 6.2vw, 6rem);
  line-height: 0.96; font-weight: 300; letter-spacing: -0.035em;
  max-width: 16ch;
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
.subhero-sub {
  margin-top: 1.2rem;
  font-family: var(--serif);
  font-size: var(--fs-lead); font-weight: 300;
  color: rgba(244,239,228,0.82);
  max-width: 48ch;
  font-variation-settings: "opsz" 18;
}

/* ---------- section generic ---------- */
section { position: relative; }
.section { padding-top: var(--space-2xl); padding-bottom: var(--space-2xl); }
.section.tight { padding-top: var(--space-xl); padding-bottom: var(--space-xl); }
.section.compact { padding-top: var(--space-l); padding-bottom: var(--space-l); }

/* section background variants (warmth & rhythm) */
.section-warm { background: var(--bg-warm); }
.section-alt  { background: var(--bg-alt); }
.section-deep { background: var(--bg-deep); }

/* about preview (home) */
.about-preview { background: var(--bg); }
.about-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--gutter);
  align-items: center;
}
.about-portrait {
  grid-column: 1 / span 6;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.about-portrait img { width: 100%; height: 100%; object-fit: cover; }
.about-text {
  grid-column: 8 / span 5;
  display: flex; flex-direction: column; gap: 1.4rem;
  align-items: flex-start;
}
.about-text h2 {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  line-height: 1.08; letter-spacing: -0.025em;
  max-width: 20ch;
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
.about-text h2 em { color: var(--gold-deep); }
.about-text p {
  font-family: var(--serif); font-weight: 300;
  font-size: 1.05rem; line-height: 1.6;
  color: var(--ink-muted);
  max-width: 48ch;
  font-variation-settings: "opsz" 18;
}
@media (max-width: 900px) {
  .about-portrait, .about-text { grid-column: 1 / -1; }
  .about-portrait { aspect-ratio: 16 / 10; }
}

/* subtle hairline ornament separator between sections (gold dot + rules) */
.ornament {
  display: flex; align-items: center; justify-content: center;
  gap: 1.4rem;
  padding: 2.2rem 0;
  color: var(--gold);
  font-family: var(--serif); font-style: italic;
  font-variation-settings: "opsz" 18, "SOFT" 100;
}
.ornament::before, .ornament::after {
  content: ""; display: block;
  width: clamp(60px, 14vw, 180px);
  height: 1px; background: var(--hairline);
}
.ornament .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); display: inline-block; }

.section-label {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: end;
  column-gap: 2.2rem;
  margin-bottom: var(--space-l);
  position: relative;
  padding-top: 2.4rem;
  padding-bottom: 1.2rem;
  border-top: 1px solid var(--hairline);
}
.section-label::before {
  content: ""; position: absolute;
  top: -1px; left: 0; height: 1px;
  width: 0;
  background: var(--gold);
  transition: width 1.4s var(--ease-out) 0.3s;
}
.section-label.is-in::before { width: 88px; }
.section-label .n {
  font-family: var(--serif); font-style: italic;
  font-size: 4.2rem;
  color: var(--gold-deep);
  font-weight: 300;
  line-height: 0.88;
  font-variation-settings: "opsz" 60, "SOFT" 100;
  padding-bottom: 0.05em;
}
.section-label .t {
  font-family: var(--sans);
  font-size: 0.88rem; letter-spacing: 0.32em;
  text-transform: uppercase; color: var(--ink);
  font-weight: 500;
  justify-self: start;
  padding-bottom: 0.7em;
}
.section-label .side {
  justify-self: end;
  font-family: var(--serif); font-style: italic;
  font-size: 0.92rem; letter-spacing: 0.01em;
  text-transform: none;
  color: var(--ink-muted);
  font-variation-settings: "opsz" 18, "SOFT" 80;
  padding-bottom: 0.8em;
}
@media (max-width: 640px) {
  .section-label { column-gap: 1.2rem; padding-top: 1.8rem; }
  .section-label .n { font-size: 2.8rem; }
  .section-label .t { font-size: 0.74rem; letter-spacing: 0.24em; }
  .section-label .side { display: none; }
}

/* Section-label override for subhero captions (over photo) — no bar, no border */
.subhero .section-label,
.subhero-caption .section-label {
  display: block;
  border-top: 0;
  padding: 0;
  margin-bottom: 1.1rem;
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(244, 239, 228, 0.85);
  font-weight: 500;
}
.subhero .section-label::before,
.subhero-caption .section-label::before { display: none; }

.reveal-up { opacity: 0; transform: translateY(24px); transition: opacity 1s var(--ease-out), transform 1.2s var(--ease-out); }
.reveal-up.is-in { opacity: 1; transform: none; }

.image-reveal { overflow: hidden; position: relative; }
.image-reveal img { transform: scale(1.12); transition: transform 1.8s var(--ease-out); }
.image-reveal::after {
  content: ""; position: absolute; inset: 0;
  background: var(--bg);
  transform: translateY(0);
  transition: transform 1.2s var(--ease-in-out);
}
.image-reveal.is-in img { transform: scale(1); }
.image-reveal.is-in::after { transform: translateY(101%); }

/* ---------- home intro ---------- */
.intro { background: var(--bg-warm); }
.intro-grid {
  display: grid; grid-template-columns: repeat(12, 1fr);
  gap: var(--gutter); align-items: start;
}
.intro-title {
  grid-column: 1 / span 6;
  font-size: clamp(2.2rem, 4.4vw, 4rem);
  font-family: var(--serif); font-weight: 300;
  line-height: 1.05; letter-spacing: -0.025em;
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
.intro-body {
  grid-column: 7 / span 5;
  padding-top: clamp(0.6rem, 2vw, 1.6rem);
  font-family: var(--serif); font-size: var(--fs-lead);
  line-height: 1.6; font-weight: 300;
  color: var(--ink); font-variation-settings: "opsz" 18;
}
.intro-body p + p { margin-top: 1em; }

.intro-art {
  margin-top: var(--space-l);
  display: grid; grid-template-columns: repeat(12, 1fr);
  gap: var(--gutter);
  align-items: end;
}
.intro-art .art-tile {
  grid-column: 1 / span 5;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.intro-art .art-tile img { width: 100%; height: 100%; object-fit: cover; }
.intro-art .art-cap {
  grid-column: 7 / span 5;
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: 1.05rem; line-height: 1.55;
  color: var(--ink-muted);
  max-width: 40ch;
  font-variation-settings: "opsz" 18, "SOFT" 80;
}
.intro-art .art-cap::before {
  content: ""; display: block; width: 48px; height: 1px;
  background: var(--gold); margin-bottom: 1rem;
}

@media (max-width: 900px) {
  .intro-title, .intro-body { grid-column: 1 / -1; }
  .intro-body { padding-top: 0; }
  .intro-art .art-tile, .intro-art .art-cap { grid-column: 1 / -1; }
}

/* ---------- triptyque home ---------- */
.estates { background: var(--bg); padding-top: var(--space-xl); padding-bottom: var(--space-xl); }
.estate {
  display: grid; grid-template-columns: repeat(12, 1fr);
  gap: var(--gutter);
  padding: var(--space-xl) 0;
  border-top: 1px solid var(--hairline);
  align-items: start;
}
.estate:last-child { border-bottom: 1px solid var(--hairline); }
.estate-index {
  grid-column: 1 / span 1;
  font-family: var(--serif); font-style: italic;
  font-size: 1rem; color: var(--gold-deep);
  padding-top: 0.4rem;
}
.estate-meta {
  grid-column: 2 / span 4;
  display: flex; flex-direction: column; gap: 1.2rem;
  padding-right: 2rem;
  position: sticky; top: 7rem;
}
.estate-name {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  line-height: 1; font-weight: 300;
  letter-spacing: -0.02em;
  font-variation-settings: "opsz" 144, "SOFT" 40;
}
.estate-line {
  font-family: var(--serif); font-weight: 300;
  font-size: var(--fs-lead); line-height: 1.5;
  color: var(--ink); font-variation-settings: "opsz" 18;
  max-width: 32ch;
}
.estate-specs {
  font-family: var(--sans); font-size: var(--fs-small);
  color: var(--ink-muted);
  display: flex; flex-wrap: wrap; gap: 1.4rem;
  padding-top: 0.4rem;
}
.estate-specs span { display: inline-flex; align-items: center; gap: 0.5em; }
.estate-specs span::before {
  content: ""; width: 3px; height: 3px;
  background: var(--gold); border-radius: 50%;
}
.estate-link {
  margin-top: 0.4rem;
  font-size: var(--fs-micro); letter-spacing: 0.22em;
  text-transform: uppercase; font-weight: 500;
  color: var(--ink);
  align-self: flex-start;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--gold);
  transition: color 0.3s, letter-spacing 0.4s var(--ease-out);
}
.estate-link:hover { letter-spacing: 0.28em; color: var(--gold-deep); }

.estate-photos {
  grid-column: 7 / -1;
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: var(--gutter);
}
.estate-photo { overflow: hidden; aspect-ratio: 4 / 5; }
.estate-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 2.4s var(--ease-out); }
.estate-photo:hover img { transform: scale(1.04); }
/* Video slot — same coverage behaviour as img */
.estate-photo video { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 2.4s var(--ease-out); }
.estate-photo:hover video { transform: scale(1.04); }
/* Disable the image-reveal mask animation on video slots (it would hide the video) */
.estate-photo-video.image-reveal::after { display: none; }
.estate-photo-video.image-reveal video { transform: scale(1); }
.estate-photo.wide { aspect-ratio: 16 / 10; grid-column: span 6; }
.estate-photo.tall { grid-column: span 3; }
.estate-photo.half { grid-column: span 3; aspect-ratio: 4 / 5; }
.estate-photo.pano { grid-column: span 6; aspect-ratio: 16 / 9; }

@media (max-width: 1000px) {
  .estate { grid-template-columns: 1fr; gap: 2rem; }
  .estate-index, .estate-meta, .estate-photos { grid-column: 1 / -1; }
  .estate-meta { position: static; padding-right: 0; }
  .estate-photos { grid-template-columns: 1fr 1fr; gap: 0.6rem; }
  .estate-photo, .estate-photo.wide, .estate-photo.tall, .estate-photo.half, .estate-photo.pano { grid-column: auto; aspect-ratio: 4 / 5; }
}

/* ---------- owners pitch home ---------- */
.owners { background: var(--bg); padding: var(--space-2xl) 0; }
.owners-grid {
  display: grid; grid-template-columns: repeat(12, 1fr);
  gap: var(--gutter); align-items: center;
}
.owners-media {
  grid-column: 1 / span 6;
  overflow: hidden; aspect-ratio: 4 / 5;
}
.owners-media img { width: 100%; height: 100%; object-fit: cover; }
.owners-content {
  grid-column: 8 / -1;
  display: flex; flex-direction: column; gap: 2rem;
}
.owners-title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4.4vw, 3.8rem);
  font-weight: 300; line-height: 1.02;
  letter-spacing: -0.02em;
  font-variation-settings: "opsz" 144, "SOFT" 40;
}
.owners-body {
  font-family: var(--serif); font-weight: 300;
  font-size: var(--fs-lead); line-height: 1.55;
  color: var(--ink); max-width: 46ch;
  font-variation-settings: "opsz" 18;
}
.owners-body p + p { margin-top: 1em; }
.owners-list {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1rem 2rem; padding-top: 1rem;
  border-top: 1px solid var(--hairline);
}
.owners-list div {
  font-family: var(--sans); font-size: var(--fs-small);
  color: var(--ink);
  display: flex; gap: 0.6em; align-items: baseline;
}
.owners-list div::before {
  content: "—"; color: var(--gold);
  font-family: var(--serif); font-size: 1.1em;
}
@media (max-width: 900px) {
  .owners-media { grid-column: 1 / -1; aspect-ratio: 16 / 10; }
  .owners-content { grid-column: 1 / -1; }
}

/* ---------- contact section home ---------- */
.contact { background: var(--bg); padding: var(--space-2xl) 0; position: relative; }
.contact-grid {
  display: grid; grid-template-columns: repeat(12, 1fr);
  gap: var(--gutter); align-items: end;
}
.contact-title {
  grid-column: 1 / span 8;
  font-family: var(--serif);
  font-size: clamp(2.8rem, 7vw, 6.2rem);
  line-height: 0.98; font-weight: 300;
  letter-spacing: -0.035em; max-width: 14ch;
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
.contact-channels {
  grid-column: 9 / -1;
  display: flex; flex-direction: column;
  gap: 1.6rem; padding-bottom: 0.8rem;
}
.contact-channel {
  display: flex; justify-content: space-between; align-items: baseline;
  border-bottom: 1px solid var(--hairline);
  padding: 0.8rem 0;
  font-family: var(--sans); font-size: var(--fs-small);
  letter-spacing: 0.18em; text-transform: uppercase;
  transition: padding 0.4s var(--ease-out);
}
.contact-channel:hover { padding-left: 0.4rem; }
.contact-channel .label { color: var(--ink-muted); font-weight: 500; }
.contact-channel .val {
  font-family: var(--serif); text-transform: none; letter-spacing: 0;
  font-size: 1.05rem; color: var(--ink);
  font-variation-settings: "opsz" 18;
}
@media (max-width: 900px) {
  .contact-title, .contact-channels { grid-column: 1 / -1; }
  .contact-title { margin-bottom: 2rem; }
}

/* ---------- journal teaser home ---------- */
.journal-teaser { background: var(--bg); padding: var(--space-xl) 0 var(--space-2xl); }
.jt-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--gutter);
}
.jt-card { display: flex; flex-direction: column; gap: 1rem; }
.jt-card .media { aspect-ratio: 4 / 3; overflow: hidden; }
.jt-card .media img { width: 100%; height: 100%; object-fit: cover; transition: transform 2.4s var(--ease-out); }
.jt-card:hover .media img { transform: scale(1.04); }
.jt-card .cat {
  font-family: var(--sans); font-size: var(--fs-micro);
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); font-weight: 500;
}
.jt-card .title {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(1.4rem, 2vw, 1.8rem); line-height: 1.15;
  letter-spacing: -0.015em;
  font-variation-settings: "opsz" 144, "SOFT" 40;
}
.jt-card .excerpt {
  font-family: var(--serif); font-weight: 300;
  font-size: 0.98rem; line-height: 1.5;
  color: var(--ink-muted);
  font-variation-settings: "opsz" 18;
}
@media (max-width: 800px) { .jt-grid { grid-template-columns: 1fr; gap: 2rem; } }

/* ---------- catalogue ---------- */
.catalogue { padding: 7rem 0 var(--space-2xl); }
.cat-header {
  display: grid; grid-template-columns: repeat(12, 1fr);
  gap: var(--gutter); align-items: end;
  padding-bottom: var(--space-l); border-bottom: 1px solid var(--hairline);
}
.cat-header h1 {
  grid-column: 1 / span 8;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  font-weight: 300; line-height: 1;
  letter-spacing: -0.03em;
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
.cat-header .count {
  grid-column: 9 / -1; justify-self: end;
  font-family: var(--sans); font-size: var(--fs-small);
  color: var(--ink-muted); letter-spacing: 0.18em;
  text-transform: uppercase;
}
@media (max-width: 800px) { .cat-header h1, .cat-header .count { grid-column: 1 / -1; justify-self: start; } }

.cat-intro {
  margin-top: var(--space-m);
  max-width: 62ch;
  font-family: var(--serif); font-weight: 300;
  font-size: var(--fs-lead); line-height: 1.6;
  color: var(--ink-muted);
  font-variation-settings: "opsz" 18;
}

.cat-note {
  margin-top: var(--space-l);
  padding-top: var(--space-m);
  border-top: 1px solid var(--hairline);
  max-width: 72ch;
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: 1rem; line-height: 1.6;
  color: var(--ink-muted);
  font-variation-settings: "opsz" 18, "SOFT" 80;
}

.filters {
  display: flex; flex-wrap: wrap; gap: 1.2rem;
  padding: var(--space-m) 0;
  border-bottom: 1px solid var(--hairline);
  margin-bottom: var(--space-l);
  align-items: flex-end;
}
.filter {
  display: flex; flex-direction: column; gap: 0.4rem;
  min-width: 140px;
}
.filter label {
  font-family: var(--sans); font-size: var(--fs-micro);
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-muted); font-weight: 500;
}
.filter select, .filter input {
  border: 0; border-bottom: 1px solid var(--hairline);
  background: transparent;
  padding: 0.5rem 0;
  font-family: var(--serif); font-size: 1.05rem;
  color: var(--ink);
  font-variation-settings: "opsz" 18;
  appearance: none;
  cursor: pointer;
}
.filter select:focus, .filter input:focus {
  outline: none; border-bottom-color: var(--gold);
}
.filter-reset {
  font-family: var(--sans); font-size: var(--fs-micro);
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-muted); font-weight: 500;
  padding-bottom: 0.6rem;
  margin-left: auto;
  transition: color 0.3s;
}
.filter-reset:hover { color: var(--gold-deep); }

.cat-grid {
  display: grid; grid-template-columns: repeat(12, 1fr);
  gap: var(--gutter) var(--gutter);
}
.cat-card { grid-column: span 6; display: flex; flex-direction: column; gap: 1.2rem; }
.cat-card .media {
  aspect-ratio: 4 / 3; overflow: hidden; position: relative;
}
.cat-card .media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 2.4s var(--ease-out), opacity 0.6s;
}
.cat-card .media img.alt { position: absolute; inset: 0; opacity: 0; }
.cat-card:hover .media img.alt { opacity: 1; }
.cat-card:hover .media img.main { transform: scale(1.04); }
.cat-card .meta {
  display: flex; justify-content: space-between;
  align-items: baseline;
  border-bottom: 1px solid var(--hairline);
  padding-bottom: 0.6rem;
}
.cat-card .name {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.4vw, 2rem);
  font-weight: 300; letter-spacing: -0.02em;
  font-variation-settings: "opsz" 144, "SOFT" 40;
}
.cat-card .price {
  font-family: var(--sans); font-size: var(--fs-small);
  color: var(--ink-muted); letter-spacing: 0.06em;
}
.cat-card .price strong {
  color: var(--ink); font-weight: 500;
  font-family: var(--serif); font-size: 1.05rem;
  font-variation-settings: "opsz" 18;
}
.cat-card .specs {
  font-family: var(--sans); font-size: var(--fs-small);
  color: var(--ink-muted);
  display: flex; flex-wrap: wrap; gap: 1.4rem;
}
.cat-card .specs span { display: inline-flex; align-items: center; gap: 0.5em; }
.cat-card .specs span::before {
  content: ""; width: 3px; height: 3px;
  background: var(--gold); border-radius: 50%;
}
.cat-card .line {
  font-family: var(--serif); font-weight: 300;
  font-size: 1rem; line-height: 1.5;
  color: var(--ink); max-width: 48ch;
  font-variation-settings: "opsz" 18;
}
.cat-card.featured { grid-column: span 12; }
.cat-card.featured .media { aspect-ratio: 21 / 9; }
.cat-card.featured .name { font-size: clamp(2rem, 3vw, 2.8rem); }
@media (max-width: 900px) {
  .cat-card, .cat-card.featured { grid-column: span 12; }
}

/* ---------- property detail ---------- */
.prop-intro {
  padding: var(--space-2xl) 0 var(--space-xl);
  background: var(--bg);
}
.prop-intro-grid {
  display: grid; grid-template-columns: repeat(12, 1fr);
  gap: var(--gutter); align-items: start;
}
.prop-intro-story { grid-column: 1 / span 7; }
.prop-intro-story p {
  font-family: var(--serif); font-weight: 300;
  font-size: var(--fs-lead); line-height: 1.55;
  color: var(--ink); max-width: 58ch;
  font-variation-settings: "opsz" 18;
}
.prop-intro-story p + p { margin-top: 1.2em; }
.prop-intro-specs {
  grid-column: 9 / -1;
  display: flex; flex-direction: column; gap: 1rem;
  padding-top: 0.4rem;
  border-top: 1px solid var(--hairline);
}
.prop-intro-specs .row {
  display: flex; justify-content: space-between;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--hairline);
  font-family: var(--sans); font-size: var(--fs-small);
}
.prop-intro-specs .row .l {
  color: var(--ink-muted); letter-spacing: 0.18em;
  text-transform: uppercase; font-weight: 500;
}
.prop-intro-specs .row .v {
  font-family: var(--serif); font-size: 1rem;
  color: var(--ink); letter-spacing: 0;
  font-variation-settings: "opsz" 18;
}
@media (max-width: 900px) {
  .prop-intro-story, .prop-intro-specs { grid-column: 1 / -1; }
  .prop-intro-specs { margin-top: 2rem; }
}

.gallery { padding: var(--space-xl) 0; background: var(--bg); }
.gallery-grid {
  display: grid; grid-template-columns: repeat(12, 1fr);
  gap: var(--gutter);
}
.gallery-grid .g-photo { overflow: hidden; }
.gallery-grid .g-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 2.4s var(--ease-out); }
.gallery-grid .g-photo:hover img { transform: scale(1.04); }
.g-photo.wide { grid-column: span 8; aspect-ratio: 16 / 10; }
.g-photo.tall { grid-column: span 4; aspect-ratio: 4 / 5; }
.g-photo.half { grid-column: span 6; aspect-ratio: 4 / 3; }
.g-photo.sq   { grid-column: span 4; aspect-ratio: 1 / 1; }
.g-photo.full { grid-column: span 12; aspect-ratio: 21 / 9; }
@media (max-width: 900px) {
  .g-photo, .g-photo.wide, .g-photo.tall, .g-photo.half, .g-photo.sq, .g-photo.full {
    grid-column: span 12; aspect-ratio: 4 / 3;
  }
}

.feature-lists { padding: var(--space-xl) 0; background: var(--bg-alt); }
.fl-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--gutter);
}
.fl-col h3 {
  font-family: var(--sans); font-size: var(--fs-micro);
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-muted); font-weight: 500;
  margin-bottom: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--hairline);
}
.fl-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.6rem; }
.fl-col li {
  font-family: var(--serif); font-size: 1rem;
  color: var(--ink); font-weight: 300;
  font-variation-settings: "opsz" 18;
  display: flex; gap: 0.6em; align-items: baseline;
}
.fl-col li::before { content: "—"; color: var(--gold); font-family: var(--serif); }
@media (max-width: 800px) { .fl-grid { grid-template-columns: 1fr; gap: 2rem; } }

.booking { padding: var(--space-xl) 0 var(--space-2xl); background: var(--bg); }
.booking-grid {
  display: grid; grid-template-columns: repeat(12, 1fr);
  gap: var(--gutter); align-items: start;
}
.booking-left { grid-column: 1 / span 6; }
.booking-right { grid-column: 8 / -1; }
.booking-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.6vw, 3rem);
  font-weight: 300; letter-spacing: -0.02em;
  line-height: 1; margin-bottom: 1.4rem;
  font-variation-settings: "opsz" 144, "SOFT" 40;
}
.calendar-placeholder {
  margin-top: 1.6rem;
  padding: 2rem;
  border: 1px dashed var(--hairline);
  background: rgba(255,255,255,0.4);
  text-align: center;
  color: var(--ink-muted);
  font-family: var(--sans); font-size: var(--fs-small);
  letter-spacing: 0.12em;
  min-height: 220px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 0.6rem;
}
.calendar-placeholder .lbl {
  font-size: var(--fs-micro); letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold);
}
.calendar-placeholder .msg {
  font-family: var(--serif); font-size: 1.05rem;
  color: var(--ink); max-width: 32ch; line-height: 1.4;
  font-variation-settings: "opsz" 18;
}
.pricing-table {
  margin-top: 1.6rem;
  display: flex; flex-direction: column;
}
.pricing-row {
  display: flex; justify-content: space-between;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--hairline);
  font-family: var(--sans); font-size: var(--fs-small);
}
.pricing-row .l {
  color: var(--ink-muted); letter-spacing: 0.14em;
  text-transform: uppercase; font-weight: 500;
}
.pricing-row .v {
  font-family: var(--serif); font-size: 1.05rem; color: var(--ink);
  font-variation-settings: "opsz" 18;
}

/* form (booking, owner lead, general) */
.form {
  display: flex; flex-direction: column; gap: 1.2rem;
  padding-top: 0.4rem;
}
.form-row { display: flex; flex-direction: column; gap: 0.3rem; }
.form-row.two { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-row label {
  font-family: var(--sans); font-size: var(--fs-micro);
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-muted); font-weight: 500;
}
.form-row input,
.form-row textarea,
.form-row select {
  border: 0; border-bottom: 1px solid var(--hairline);
  background: transparent; padding: 0.6rem 0;
  font-family: var(--serif); font-size: 1.05rem;
  color: var(--ink);
  font-variation-settings: "opsz" 18;
  width: 100%;
}
.form-row textarea { min-height: 120px; resize: vertical; }
.form-row input:focus, .form-row textarea:focus, .form-row select:focus {
  outline: none; border-bottom-color: var(--gold);
}
.form-submit { margin-top: 1rem; align-self: flex-start; }
.form-note {
  font-family: var(--serif); font-size: 0.95rem;
  color: var(--ink-muted); font-weight: 300; line-height: 1.4;
  font-variation-settings: "opsz" 18;
  margin-top: 0.5rem;
}
@media (max-width: 900px) {
  .booking-left, .booking-right { grid-column: 1 / -1; }
  .booking-right { margin-top: 3rem; }
}

/* ---------- qui sommes-nous / team extended ---------- */
.team { background: var(--bg-alt); padding: var(--space-2xl) 0; }
.team-title {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5.2vw, 4.4rem);
  font-weight: 300; line-height: 1;
  letter-spacing: -0.025em;
  margin-bottom: var(--space-l);
  max-width: 18ch;
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
.team-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--gutter);
  border-top: 1px solid var(--hairline);
  padding-top: var(--space-l);
}
.team-card { display: flex; flex-direction: column; gap: 1rem; }
.team-card .num { font-family: var(--serif); font-style: italic; color: var(--gold-deep); font-size: 1rem; font-variation-settings: "opsz" 18, "SOFT" 100; }
.team-card .name { font-family: var(--serif); font-size: clamp(1.6rem, 2.6vw, 2.2rem); font-weight: 300; line-height: 1.05; letter-spacing: -0.02em; font-variation-settings: "opsz" 144, "SOFT" 40; }
.team-card .role { font-family: var(--sans); font-size: var(--fs-small); letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-muted); font-weight: 500; }
.team-card .bio { font-family: var(--serif); font-weight: 300; font-size: 1rem; line-height: 1.55; color: var(--ink); font-variation-settings: "opsz" 18; max-width: 38ch; }
@media (max-width: 800px) { .team-grid { grid-template-columns: 1fr; gap: 2.4rem; } }

.method { padding: var(--space-2xl) 0; background: var(--bg); }
.method-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: var(--gutter) var(--space-l);
}
.method-item { padding-top: 1rem; border-top: 1px solid var(--hairline); }
.method-item .n {
  font-family: var(--serif); font-style: italic;
  color: var(--gold-deep); font-size: 1rem;
  font-variation-settings: "opsz" 18, "SOFT" 100;
  margin-bottom: 0.6rem;
}
.method-item h3 {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  line-height: 1.1; letter-spacing: -0.015em;
  margin-bottom: 0.8rem;
  font-variation-settings: "opsz" 144, "SOFT" 40;
}
.method-item p {
  font-family: var(--serif); font-weight: 300;
  font-size: 1rem; line-height: 1.55;
  color: var(--ink-muted); max-width: 46ch;
  font-variation-settings: "opsz" 18;
}
@media (max-width: 800px) { .method-grid { grid-template-columns: 1fr; } }

/* ---------- journal index ---------- */
.journal-idx { padding: 7rem 0 var(--space-xl); }
.journal-idx h1 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  font-weight: 300; line-height: 1;
  letter-spacing: -0.03em;
  max-width: 16ch;
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
.journal-idx .sub {
  margin-top: 1.2rem;
  font-family: var(--serif); font-weight: 300;
  font-size: var(--fs-lead); color: var(--ink-muted);
  max-width: 52ch;
  font-variation-settings: "opsz" 18;
}

.jx-grid {
  margin-top: var(--space-xl);
  display: grid; grid-template-columns: repeat(12, 1fr);
  gap: var(--gutter);
}
.jx-card { grid-column: span 6; display: flex; flex-direction: column; gap: 1rem; }
.jx-card.featured { grid-column: span 12; }
.jx-card.featured .media { aspect-ratio: 21 / 9; }
.jx-card .media { aspect-ratio: 4 / 3; overflow: hidden; }
.jx-card .media img { width: 100%; height: 100%; object-fit: cover; transition: transform 2.4s var(--ease-out); }
.jx-card:hover .media img { transform: scale(1.04); }
.jx-card .cat {
  font-family: var(--sans); font-size: var(--fs-micro);
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); font-weight: 500;
}
.jx-card .title {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(1.5rem, 2.2vw, 2rem); line-height: 1.12;
  letter-spacing: -0.02em; max-width: 28ch;
  font-variation-settings: "opsz" 144, "SOFT" 40;
}
.jx-card.featured .title { font-size: clamp(2rem, 3.2vw, 2.8rem); max-width: 24ch; }
.jx-card .excerpt {
  font-family: var(--serif); font-weight: 300;
  font-size: 1rem; line-height: 1.5;
  color: var(--ink-muted); max-width: 56ch;
  font-variation-settings: "opsz" 18;
}
@media (max-width: 800px) { .jx-card, .jx-card.featured { grid-column: span 12; } }

/* journal rubric tabs */
.rubrics {
  margin-top: 2.4rem;
  display: flex; flex-wrap: wrap; gap: 0.6rem 1.4rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--hairline);
}
.rubric {
  font-family: var(--sans); font-size: var(--fs-micro);
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-muted); font-weight: 500;
  padding: 0.4rem 0;
  border-bottom: 1px solid transparent;
  transition: color 0.3s, border-color 0.3s;
}
.rubric:hover, .rubric.is-active { color: var(--ink); border-bottom-color: var(--gold); }

/* ---------- journal article ---------- */
.article-hero {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  margin-top: 5rem;
}
.article-hero img { width: 100%; height: 100%; object-fit: cover; }
.article-hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,11,8,0.1), rgba(14,11,8,0.4));
}
.article-hero .caption {
  position: absolute;
  bottom: 2rem; left: 2rem; right: 2rem;
  color: var(--cream);
  display: flex; flex-direction: column; gap: 0.8rem;
  max-width: var(--container-max); margin: 0 auto;
}
.article-hero .cat {
  font-family: var(--sans); font-size: var(--fs-micro);
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); font-weight: 500;
}
.article-hero h1 {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(2rem, 4.6vw, 4rem);
  line-height: 1; letter-spacing: -0.03em;
  max-width: 22ch;
  font-variation-settings: "opsz" 144, "SOFT" 50;
}

.article-body {
  padding: var(--space-xl) 0;
  background: var(--bg);
}
.article-body p,
.article-body h2,
.article-body h3,
.article-body blockquote,
.article-body figure,
.article-body ul {
  max-width: 720px; margin-left: auto; margin-right: auto;
  padding-left: var(--gutter); padding-right: var(--gutter);
}
.article-body p {
  font-family: var(--serif); font-weight: 300;
  font-size: 1.12rem; line-height: 1.75;
  color: var(--ink);
  font-variation-settings: "opsz" 18;
  margin-bottom: 1.2em;
}
.article-body .lead-p {
  font-size: 1.3rem; line-height: 1.55;
  color: var(--ink); font-weight: 300;
  font-variation-settings: "opsz" 18;
}
.article-body h2 {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  line-height: 1.15; letter-spacing: -0.02em;
  margin: 3rem auto 1.2rem;
  font-variation-settings: "opsz" 144, "SOFT" 40;
}
.article-body h3 {
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: 1.3rem; line-height: 1.3;
  color: var(--gold-deep);
  margin: 2.2rem auto 0.8rem;
  font-variation-settings: "opsz" 18, "SOFT" 80;
}
.article-body blockquote {
  font-family: var(--serif); font-style: italic;
  font-weight: 300; font-size: 1.4rem;
  line-height: 1.4; color: var(--ink);
  border-left: 2px solid var(--gold);
  padding-left: 1.4rem !important;
  margin: 2.4rem auto;
  font-variation-settings: "opsz" 144, "SOFT" 60;
}
.article-body figure { max-width: 1100px; margin: 2.4rem auto; padding: 0 var(--gutter); }
.article-body figure img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.article-body figcaption {
  font-family: var(--sans); font-size: var(--fs-micro);
  letter-spacing: 0.1em; color: var(--ink-muted);
  margin-top: 0.6rem;
}
.article-body ul { padding-left: calc(var(--gutter) + 1rem); }
.article-body ul li {
  font-family: var(--serif); font-weight: 300;
  font-size: 1.1rem; line-height: 1.6;
  color: var(--ink);
  font-variation-settings: "opsz" 18;
  margin-bottom: 0.5em;
}

/* ---------- footer ---------- */
.footer {
  background: var(--night);
  color: rgba(244,239,228,0.7);
  padding: var(--space-l) 0 var(--space-m);
}
.footer-grid {
  display: grid; grid-template-columns: repeat(12, 1fr);
  gap: var(--gutter); align-items: start;
}
.footer-logo {
  grid-column: 1 / span 3;
  font-family: var(--serif); color: var(--gold);
}
.footer-logo .m { font-size: 1.2rem; letter-spacing: 0.26em; }
.footer-logo .s { font-size: 0.62rem; letter-spacing: 0.42em; text-transform: uppercase; margin-top: 6px; font-family: var(--sans); font-weight: 500; }
.footer-col {
  grid-column: span 2;
  font-size: var(--fs-small);
  display: flex; flex-direction: column;
  gap: 0.6em;
}
.footer-col .head {
  font-family: var(--sans); font-size: var(--fs-micro);
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(244,239,228,0.45);
  margin-bottom: 0.8em; font-weight: 500;
}
.footer-col a { color: rgba(244,239,228,0.82); transition: color 0.3s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  margin-top: var(--space-l);
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; justify-content: space-between;
  font-size: var(--fs-micro);
  letter-spacing: 0.14em;
  color: rgba(244,239,228,0.4);
  text-transform: uppercase;
}
@media (max-width: 900px) {
  .footer-logo, .footer-col { grid-column: 1 / -1; }
  .footer-col { margin-top: 1.8rem; }
  .footer-bottom { flex-direction: column; gap: 0.6rem; }
}

/* ---------- curseur ---------- */
@media (hover: hover) and (pointer: fine) {
  body { cursor: none; }
  a, button, select, input, textarea, .nav-lang button { cursor: none; }

  .cursor {
    position: fixed;
    top: 0; left: 0;
    pointer-events: none;
    z-index: 200;
    mix-blend-mode: difference;
  }
  .cursor-dot {
    width: 6px; height: 6px;
    background: var(--cream);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.25s var(--ease-out), height 0.25s var(--ease-out), opacity 0.3s;
  }
  .cursor-ring {
    position: fixed;
    top: 0; left: 0;
    width: 34px; height: 34px;
    border: 1px solid var(--cream);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.35s var(--ease-out), height 0.35s var(--ease-out), opacity 0.3s;
    pointer-events: none;
    z-index: 200;
    mix-blend-mode: difference;
  }
  body.cursor-hover .cursor-dot { width: 0; height: 0; opacity: 0; }
  body.cursor-hover .cursor-ring { width: 54px; height: 54px; border-color: var(--gold); }
  body.cursor-media .cursor-dot { opacity: 0; }
  body.cursor-media .cursor-ring {
    width: 80px; height: 80px;
    background: var(--gold); border-color: var(--gold);
    color: var(--night);
  }
  body.cursor-media .cursor-ring::after {
    content: "VOIR";
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--sans); font-size: 10px;
    letter-spacing: 0.22em; color: var(--night); font-weight: 500;
  }
}

/* ---------- loader — strong brand entry ---------- */
.loader {
  position: fixed; inset: 0;
  background: #0E0B08;
  z-index: 999;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  color: var(--cream);
  transition: opacity 0.9s var(--ease-out), visibility 0.9s;
  overflow: hidden;
}
.loader::before {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 800px; height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,111,0.07) 0%, transparent 60%);
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.loader.is-done { opacity: 0; visibility: hidden; }
.loader-stage {
  position: relative;
  text-align: center;
  z-index: 2;
  animation: loader-rise 1.6s var(--ease-out) both;
}
@keyframes loader-rise {
  0% { opacity: 0; transform: translateY(20px); }
  60% { opacity: 1; transform: translateY(0); }
  100% { opacity: 1; transform: translateY(0); }
}
/* Logo image — takes the stage */
.loader-logo {
  display: block;
  width: clamp(220px, 28vw, 360px);
  height: auto;
  margin: 0 auto;
  opacity: 0;
  animation: loader-logo-in 1.5s var(--ease-out) 0.1s forwards;
  filter: drop-shadow(0 6px 30px rgba(212,175,111,0.18));
}
@keyframes loader-logo-in {
  0% { opacity: 0; transform: translateY(14px) scale(0.97); }
  60% { opacity: 1; transform: translateY(0) scale(1); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
@media (max-width: 640px) {
  .loader-logo { width: 200px; }
}
.loader .bar {
  position: absolute;
  bottom: 0; left: 0;
  height: 2px; width: 0;
  background: var(--gold);
  transition: width 0.3s var(--ease-out);
}
@media (max-width: 640px) {
  .loader-mark { letter-spacing: 0.26em; padding-left: 0.26em; }
}

/* ---------- HERO brand mark — persistent signature over video ---------- */
.hero-brandmark {
  position: absolute;
  top: 7.4rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 5;
  color: var(--cream);
  pointer-events: none;
  opacity: 0;
  animation: hbm-fade-in 1.4s var(--ease-out) 1.1s forwards;
}
.hbm-mark {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  letter-spacing: 0.42em;
  padding-left: 0.42em;
  line-height: 1;
  color: var(--cream);
  font-variation-settings: "opsz" 96, "SOFT" 30;
  text-shadow: 0 2px 30px rgba(0,0,0,0.45);
}
.hbm-rule {
  width: 32px;
  height: 1px;
  background: var(--gold);
  margin: 0.85rem auto 0.85rem;
  opacity: 0.9;
}
.hbm-sub {
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: rgba(244,239,228,0.78);
  font-weight: 500;
  text-shadow: 0 1px 12px rgba(0,0,0,0.4);
}
@keyframes hbm-fade-in { to { opacity: 1; } }
body.topbar-revealed .hero-brandmark { transform: translate(-50%, 8px); transition: transform 0.5s var(--ease-out); }
@media (max-width: 640px) {
  .hero-brandmark { top: 5.6rem; }
  .hbm-mark { letter-spacing: 0.34em; padding-left: 0.34em; }
  .hbm-sub { font-size: 0.54rem; letter-spacing: 0.28em; }
}

/* ---------- page title (generic, no subhero) ---------- */
.page-title {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  font-weight: 300; line-height: 1;
  letter-spacing: -0.03em;
  max-width: 18ch;
  margin: 2rem 0 1.6rem;
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
.section-h-center {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.6vw, 3rem);
  font-weight: 300; line-height: 1.05;
  letter-spacing: -0.025em;
  text-align: center;
  margin-bottom: var(--space-m);
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
.lead-center { text-align: center; margin-left: auto; margin-right: auto; max-width: 60ch; margin-bottom: var(--space-l); }

/* ---------- contact page ---------- */
.contact-list {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--hairline);
  margin-top: var(--space-l);
  border: 1px solid var(--hairline);
}
.contact-item {
  background: var(--bg);
  padding: var(--space-m);
  display: flex; flex-direction: column; gap: 0.6rem;
  transition: background 0.3s;
}
.contact-item:not(.static):hover { background: var(--bg-alt); }
.contact-item .contact-label {
  font-family: var(--sans); font-size: var(--fs-micro);
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-muted); font-weight: 500;
}
.contact-item .contact-value {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(1.3rem, 1.8vw, 1.6rem);
  line-height: 1.2; letter-spacing: -0.015em;
  color: var(--ink);
  font-variation-settings: "opsz" 144, "SOFT" 40;
}
.contact-item .contact-note {
  font-family: var(--serif); font-weight: 300;
  font-size: 0.95rem; line-height: 1.5;
  color: var(--ink-muted); max-width: 40ch;
  font-variation-settings: "opsz" 18;
}
@media (max-width: 800px) { .contact-list { grid-template-columns: 1fr; } }

/* ---------- espace proprietaires (construction) ---------- */
.construction { min-height: 60vh; padding-top: 7rem; padding-bottom: 7rem; }
.placeholder-box {
  margin-top: var(--space-m);
  padding: var(--space-l);
  background: var(--bg-alt);
  border: 1px dashed var(--gold);
  max-width: 720px;
}
.placeholder-kicker {
  font-family: var(--sans); font-size: var(--fs-micro);
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); font-weight: 500;
  margin-bottom: 1.2rem;
}
.placeholder-box p {
  font-family: var(--serif); font-weight: 300;
  font-size: 1.05rem; line-height: 1.6;
  color: var(--ink); margin-bottom: 1rem;
  font-variation-settings: "opsz" 18;
}
.feature-ul { list-style: none; padding: 0; margin: 1rem 0 1.6rem; }
.feature-ul li {
  font-family: var(--serif); font-weight: 300;
  font-size: 1.02rem; line-height: 1.5;
  color: var(--ink);
  padding: 0.5rem 0 0.5rem 1.6rem;
  position: relative;
  border-bottom: 1px solid var(--hairline);
  font-variation-settings: "opsz" 18;
}
.feature-ul li::before {
  content: "→";
  position: absolute; left: 0; top: 0.5rem;
  color: var(--gold); font-style: italic;
}
.feature-ul li:last-child { border-bottom: 0; }

/* ---------- legal pages ---------- */
.legal-body { padding-top: 8rem; }
.legal-body h1 { font-size: clamp(2.2rem, 4.2vw, 3.6rem); margin-top: 1rem; }
.legal-body h2 { font-size: clamp(1.3rem, 2vw, 1.6rem); }
.legal-body .section-label {
  display: block;
  max-width: 720px; margin: 0 auto;
  padding: 0 var(--gutter);
  border-top: 0;
  font-family: var(--sans); font-size: var(--fs-micro);
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--ink-muted);
}
.legal-body .section-label::before { display: none; }
.legal-footnote {
  max-width: 720px; margin: 2.4rem auto 0;
  padding: 1rem var(--gutter);
  font-family: var(--sans); font-size: var(--fs-micro);
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-muted); border-top: 1px dashed var(--hairline);
}

/* ---------- case studies (proprietaires) ---------- */
.cases-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--gutter);
}
.case-card {
  background: var(--bg-alt);
  padding: var(--space-m);
  display: flex; flex-direction: column; gap: 0.8rem;
}
.case-card .case-title {
  font-family: var(--serif); font-weight: 300; font-style: italic;
  font-size: 1.15rem; color: var(--gold-deep);
  font-variation-settings: "opsz" 18, "SOFT" 80;
}
.case-card p {
  font-family: var(--serif); font-weight: 300;
  font-size: 1rem; line-height: 1.55;
  color: var(--ink);
  font-variation-settings: "opsz" 18;
}
@media (max-width: 900px) { .cases-grid { grid-template-columns: 1fr; } }

/* ---------- form extensions ---------- */
.form-full { display: flex; flex-direction: column; gap: 0.3rem; }
.form-full span {
  font-family: var(--sans); font-size: var(--fs-micro);
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-muted); font-weight: 500;
}
.form-full textarea {
  border: 0; border-bottom: 1px solid var(--hairline);
  background: transparent; padding: 0.6rem 0;
  font-family: var(--serif); font-size: 1.05rem;
  color: var(--ink); min-height: 120px; resize: vertical;
  font-variation-settings: "opsz" 18;
  width: 100%;
}
.form-full textarea:focus { outline: none; border-bottom-color: var(--gold); }
.form-footnote {
  font-family: var(--serif); font-weight: 300;
  font-size: 0.9rem; line-height: 1.5;
  color: var(--ink-muted); max-width: 54ch;
  font-variation-settings: "opsz" 18;
  margin-top: 0.6rem;
}
.form-feedback {
  margin-top: 1rem;
  font-family: var(--serif); font-style: italic;
  font-size: 1.05rem; color: var(--gold-deep);
  font-variation-settings: "opsz" 18, "SOFT" 80;
}

/* ---------- owners-note (bande sombre contrastée, qui-sommes-nous) ---------- */
.owners-note {
  position: relative;
  margin-top: var(--space-2xl);
  padding: var(--space-2xl) var(--gutter);
  color: var(--cream);
  overflow: hidden;
  isolation: isolate;
  min-height: 52vh;
  display: flex; align-items: center;
}
.owners-note img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
  will-change: transform;
}
.owners-note::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,11,8,0.55), rgba(14,11,8,0.8));
  z-index: -1;
}
.owners-note-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  width: 100%;
  display: flex; flex-direction: column; gap: 1rem;
  align-items: flex-start;
}
.owners-note-label {
  color: var(--gold);
}
.owners-note-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  max-width: 22ch;
  font-variation-settings: "opsz" 144, "SOFT" 60;
}
.owners-note-copy {
  font-family: var(--serif); font-weight: 300;
  font-size: 1.1rem; line-height: 1.6;
  color: rgba(244,239,228,0.85);
  max-width: 56ch;
  font-variation-settings: "opsz" 18;
}
.owners-note-cta {
  margin-top: 0.8rem;
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--sans); font-size: var(--fs-micro);
  letter-spacing: 0.22em; text-transform: uppercase; font-weight: 500;
  padding: 0.9rem 1.6rem;
  background: transparent; color: var(--gold);
  border: 1px solid rgba(212,175,111,0.5);
  transition: background 0.3s, color 0.3s;
}
.owners-note-cta:hover {
  background: var(--gold); color: var(--night);
}

/* ---------- footer encart propriétaires ---------- */
.footer-owners {
  border-bottom: 1px solid rgba(255,255,255,0.12);
  padding-bottom: var(--space-m);
  margin-bottom: var(--space-m);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-m);
  align-items: end;
}
.footer-owners .fo-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  line-height: 1.1; letter-spacing: -0.015em;
  color: var(--cream);
  max-width: 28ch;
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
.footer-owners .fo-title em {
  font-style: italic; color: var(--gold);
  font-variation-settings: "opsz" 144, "SOFT" 80;
}
.footer-owners .fo-copy {
  font-family: var(--serif); font-weight: 300;
  font-size: 1rem; line-height: 1.55;
  color: rgba(244,239,228,0.7);
  max-width: 56ch; margin-top: 0.8rem;
  font-variation-settings: "opsz" 18;
}
.footer-owners .fo-cta {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--sans); font-size: var(--fs-micro);
  letter-spacing: 0.22em; text-transform: uppercase; font-weight: 500;
  padding: 0.9rem 1.6rem;
  background: transparent; color: var(--gold);
  border: 1px solid rgba(212,175,111,0.4);
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.footer-owners .fo-cta:hover {
  background: var(--gold); color: var(--night); border-color: var(--gold);
}
@media (max-width: 800px) {
  .footer-owners { grid-template-columns: 1fr; gap: 1.4rem; }
  .footer-owners .fo-cta { justify-self: start; }
}

/* ====================================================================
   Villa detail page — Le Collectionist-style layout
   Summary bar · sticky booking aside · experiences · similar villas
   ==================================================================== */

/* hero already uses .subhero — adjust subhero height for villa */
.subhero.villa-hero { height: 88svh; min-height: 560px; }

/* summary strip right under the hero */
.villa-summary {
  background: var(--bg);
  border-bottom: 1px solid var(--hairline);
  padding: 1.2rem 0;
  position: sticky; top: 38px; z-index: 80;
  transition: transform 0.4s var(--ease-out);
}
body.topbar-revealed .villa-summary { top: 76px; }
.villa-summary-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.2rem; flex-wrap: wrap;
}
.villa-summary-title {
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: 1.05rem; color: var(--ink-muted);
  font-variation-settings: "opsz" 18, "SOFT" 80;
  padding-right: 1.2rem;
  border-right: 1px solid var(--hairline);
  white-space: nowrap;
}
.villa-summary-specs {
  display: flex; gap: 1.5rem;
  flex: 1;
  font-family: var(--sans); font-size: var(--fs-small);
  color: var(--ink-muted); letter-spacing: 0.02em;
  flex-wrap: wrap;
}
.villa-summary-specs span {
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0;
}
.villa-summary-specs span b {
  font-family: var(--serif); font-weight: 400;
  font-variation-settings: "opsz" 18;
}
.villa-summary-price {
  font-family: var(--serif); font-weight: 400; font-size: 1rem;
  color: var(--gold-deep);
  font-variation-settings: "opsz" 18, "SOFT" 60;
  white-space: nowrap;
}
.villa-summary-price strong { font-weight: 500; color: var(--ink); }

/* main 2-column layout (left: content, right: sticky booking) */
.villa-layout {
  padding: var(--space-xl) 0 var(--space-2xl);
}
.villa-layout .container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: var(--space-l);
  align-items: start;
}
.villa-main { min-width: 0; }
.villa-main > section { margin-bottom: var(--space-xl); }
.villa-main > section:last-child { margin-bottom: 0; }

.villa-aside {
  position: sticky;
  top: 140px;
  align-self: start;
}
body.topbar-revealed .villa-aside { top: 178px; }

.booking-card {
  background: var(--bg);
  border: 1px solid var(--hairline);
  padding: 1.8rem 1.6rem 1.6rem;
  display: flex; flex-direction: column; gap: 1rem;
}
.booking-card .bc-title {
  font-family: var(--serif); font-weight: 300;
  font-size: 1.35rem; line-height: 1.1;
  letter-spacing: -0.015em;
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
.booking-card .bc-sub {
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: 0.88rem; color: var(--ink-muted);
  margin-top: -0.5rem; margin-bottom: 0.3rem;
  font-variation-settings: "opsz" 18, "SOFT" 80;
}
.booking-card .bc-field {
  display: flex; flex-direction: column; gap: 0.3rem;
}
.booking-card .bc-field label {
  font-family: var(--sans); font-size: var(--fs-micro);
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink-muted); font-weight: 500;
}
.booking-card .bc-field input,
.booking-card .bc-field select {
  border: 0; border-bottom: 1px solid var(--hairline);
  background: transparent; padding: 0.6rem 0;
  font-family: var(--serif); font-size: 1rem;
  color: var(--ink);
  font-variation-settings: "opsz" 18;
  min-height: 44px;
  width: 100%;
  box-sizing: border-box;
}
@media (max-width: 720px) {
  .booking-card .bc-field input,
  .booking-card .bc-field select {
    min-height: 48px;
    font-size: 16px;
  }
}
.booking-card .bc-field input:focus,
.booking-card .bc-field select:focus {
  outline: none; border-bottom-color: var(--gold);
}
.booking-card .bc-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem;
}
.booking-card .bc-estimate {
  display: flex; flex-direction: column; gap: 0.25rem;
  padding: 0.95rem 1rem;
  margin: 0.2rem 0;
  background: linear-gradient(180deg, rgba(212, 175, 111, 0.06), rgba(212, 175, 111, 0.02));
  border: 1px solid rgba(212, 175, 111, 0.35);
  border-radius: 4px;
  font-family: var(--serif);
  transition: background 0.3s ease, border-color 0.3s ease;
}
.booking-card .bc-estimate.is-quoted {
  background: linear-gradient(180deg, rgba(212, 175, 111, 0.18), rgba(212, 175, 111, 0.08));
  border-color: var(--gold-deep);
}
.booking-card .bc-estimate .l {
  color: var(--ink-muted); font-style: italic;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}
.booking-card .bc-estimate .v {
  font-weight: 500; color: var(--ink);
  font-size: 1.12rem;
  font-style: italic;
  font-variation-settings: "opsz" 36, "SOFT" 60;
  line-height: 1.2;
}
.booking-card .bc-estimate.is-quoted .v {
  font-style: normal;
  font-size: 1.25rem;
  font-weight: 500;
}

/* Visible banner if Supabase availability/prices fail to load */
.booking-card .bc-data-error {
  background: #fff3e6;
  border: 1px solid #d4a878;
  border-radius: 4px;
  padding: 0.7rem 0.9rem;
  margin: 0 0 0.4rem;
  font-family: var(--sans);
  font-size: 0.78rem;
  line-height: 1.45;
  color: #6e4a1c;
}
.booking-card .bc-data-error a {
  color: #6e4a1c;
  text-decoration: underline;
  font-weight: 500;
}

/* Divider between price and contact section */
.booking-card .bc-divider {
  display: flex; align-items: center; gap: 0.7rem;
  margin: 0.6rem 0 0.2rem;
  color: var(--ink-muted);
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.booking-card .bc-divider::before,
.booking-card .bc-divider::after {
  content: ""; flex: 1; height: 1px;
  background: var(--hairline);
}
.booking-card .bc-divider span { white-space: nowrap; }

/* Contact section — visually de-emphasized until dates are picked */
.booking-card .bc-contact {
  display: flex; flex-direction: column; gap: 0.8rem;
  opacity: 0.55;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.booking-card.has-dates .bc-contact {
  opacity: 1;
  pointer-events: auto;
}
.booking-card .bc-cta {
  background: var(--ink); color: var(--cream);
  border: 1px solid var(--ink);
  padding: 0.95rem 1.2rem;
  font-family: var(--sans); font-size: var(--fs-small);
  letter-spacing: 0.22em; text-transform: uppercase;
  font-weight: 500; cursor: pointer;
  transition: background 0.3s, color 0.3s;
  text-align: center;
}
.booking-card .bc-cta:hover { background: var(--gold); border-color: var(--gold); color: var(--night); }
.booking-card .bc-foot {
  font-family: var(--serif); font-style: italic;
  font-weight: 300; font-size: 0.82rem;
  line-height: 1.4; color: var(--ink-muted);
  font-variation-settings: "opsz" 18, "SOFT" 80;
  text-align: center;
}
.booking-card .bc-terms {
  margin-top: 0.6rem;
  border-top: 1px solid var(--hairline);
  padding-top: 0.8rem;
}
.booking-card .bc-terms summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--sans);
  font-size: var(--fs-micro);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 500;
  padding: 0.2rem 0;
  display: flex; justify-content: space-between; align-items: center;
}
.booking-card .bc-terms summary::-webkit-details-marker { display: none; }
.booking-card .bc-terms summary::after {
  content: '↓'; font-family: var(--serif); font-size: 0.9rem;
  transition: transform .2s;
}
.booking-card .bc-terms[open] summary::after { transform: rotate(180deg); }
.booking-card .bc-terms-body {
  padding: 0.6rem 0 0.4rem;
  font-family: var(--serif);
  font-weight: 300;
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--ink);
  font-variation-settings: "opsz" 18, "SOFT" 80;
}
.booking-card .bc-terms-body p { margin: 0 0 0.6rem; }
.booking-card .bc-terms-body p:last-child { margin-bottom: 0; }
.booking-card .bc-terms-body strong {
  font-family: var(--serif); font-style: italic;
  font-weight: 400; color: var(--gold-deep);
}
/* Range input styling — match other inputs */
.booking-card .flatpickr-input + .form-control {
  width: 100%;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--hairline);
  background: #fff;
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--ink);
}
.booking-card .bc-wa {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  margin-top: 0.4rem;
  padding: 0.6rem 0;
  border-top: 1px solid var(--hairline);
  font-family: var(--sans); font-size: var(--fs-micro);
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 500;
}
.booking-card .bc-wa::before {
  content: ""; width: 8px; height: 8px;
  background: #25D366; border-radius: 50%;
}

/* Villa story + specs inline, side by side on first pass */
.villa-story {
  display: grid; grid-template-columns: minmax(0, 1fr) auto;
  gap: var(--space-l); align-items: start;
}
.villa-story .story-text {
  font-family: var(--serif); font-weight: 300;
  font-size: 1.1rem; line-height: 1.65;
  color: var(--ink); max-width: 62ch;
  font-variation-settings: "opsz" 18;
}
.villa-story .story-text p + p { margin-top: 1.1em; }
.villa-story .story-specs {
  width: 260px;
  padding-top: 0.4rem;
  border-top: 1px solid var(--hairline);
  font-family: var(--sans); font-size: var(--fs-small);
}
.villa-story .story-specs .row {
  display: flex; justify-content: space-between;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--hairline);
}
.villa-story .story-specs .row .l { color: var(--ink-muted); letter-spacing: 0.08em; }
.villa-story .story-specs .row .v { font-family: var(--serif); font-weight: 400; color: var(--ink); }

/* Experiences mini-cards */
.experiences-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem; margin-top: var(--space-m);
}
.exp-card {
  padding: 1.2rem 1.2rem 1rem;
  border: 1px solid var(--hairline);
  background: var(--bg);
  display: flex; flex-direction: column; gap: 0.5rem;
  transition: border-color 0.3s, transform 0.3s var(--ease-out);
}
.exp-card:hover { border-color: var(--gold); transform: translateY(-2px); }
.exp-card .kicker {
  font-family: var(--serif); font-style: italic;
  color: var(--gold-deep); font-size: 0.95rem;
  font-variation-settings: "opsz" 18, "SOFT" 80;
}
.exp-card .name {
  font-family: var(--serif); font-weight: 400;
  font-size: 1.1rem; line-height: 1.2;
  font-variation-settings: "opsz" 144, "SOFT" 40;
}
.exp-card p {
  font-family: var(--serif); font-weight: 300;
  font-size: 0.92rem; line-height: 1.45;
  color: var(--ink-muted);
  font-variation-settings: "opsz" 18;
}

/* Location block */
.villa-location {
  display: grid; grid-template-columns: 5fr 4fr; gap: var(--gutter);
  align-items: stretch;
}
.villa-location .loc-map {
  aspect-ratio: 4 / 3;
  background: var(--bg-alt);
  border: 1px solid var(--hairline);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-muted);
  font-family: var(--serif); font-style: italic;
  font-size: 1rem;
  font-variation-settings: "opsz" 18, "SOFT" 80;
}
.villa-location .loc-text p {
  font-family: var(--serif); font-weight: 300;
  font-size: 1.05rem; line-height: 1.6;
  color: var(--ink);
  font-variation-settings: "opsz" 18;
}
.villa-location .loc-text p + p { margin-top: 0.9em; }
.villa-location .loc-text .addr {
  margin-top: 1rem;
  font-family: var(--sans); font-size: var(--fs-small);
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-muted);
}

/* Similar villas */
.similar-villas .sim-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: var(--gutter); margin-top: var(--space-m);
}
.sim-card {
  display: block;
  background: var(--bg);
  transition: transform 0.4s var(--ease-out);
}
.sim-card:hover { transform: translateY(-3px); }
.sim-card .media {
  aspect-ratio: 4 / 3; overflow: hidden;
}
.sim-card .media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 2s var(--ease-out);
}
.sim-card:hover .media img { transform: scale(1.05); }
.sim-card .meta {
  padding: 1rem 0 0;
  display: flex; align-items: baseline; justify-content: space-between;
}
.sim-card .name {
  font-family: var(--serif); font-weight: 400;
  font-size: 1.25rem;
  font-variation-settings: "opsz" 144, "SOFT" 40;
}
.sim-card .price {
  font-family: var(--sans); font-size: var(--fs-small);
  color: var(--ink-muted); letter-spacing: 0.02em;
}
.sim-card .line {
  margin-top: 0.4rem;
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: 0.95rem; line-height: 1.5;
  color: var(--ink-muted); max-width: 40ch;
  font-variation-settings: "opsz" 18, "SOFT" 80;
}

/* Mobile — villa page collapses aside below */
@media (max-width: 1100px) {
  .villa-layout .container { grid-template-columns: minmax(0, 1fr); }
  .villa-main, .villa-aside { min-width: 0; max-width: 100%; }
  .villa-aside { position: static; }
  .booking-card { max-width: 480px; margin: 0 auto; width: 100%; }
}
/* Mobile narrow — kill any 480px constraint that would spill the viewport */
@media (max-width: 720px) {
  body.villa-page { overflow-x: clip; }
  .villa-layout, .villa-layout .container { width: 100%; max-width: 100%; }
  .villa-main, .villa-aside { width: 100%; max-width: 100%; }
  .villa-aside .booking-card { max-width: 100%; padding: 1.4rem 1.2rem; }
  .villa-hero { max-width: 100%; }
}

/* Visually hidden — accessible to screen readers and SEO, invisible visually */
.visually-hidden {
  position: absolute !important;
  width: 1px !important; height: 1px !important;
  padding: 0 !important; margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* ===========================================================================
   BRAND INTRO SPLASH — full-screen NIGHT logo on first load
   Auto-hides after ~1.6s (or on user interaction)
   =========================================================================== */
.brand-intro {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--night, #0E0B08);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.6s ease, visibility 0s 0.6s;
  pointer-events: none;
}
.brand-intro.is-hidden {
  opacity: 0;
  visibility: hidden;
}
.bi-inner {
  text-align: center;
  color: var(--cream, #F4EFE5);
  animation: biFadeIn 0.7s ease-out both;
  padding: 0 1.5rem;
}
.bi-mark {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(3rem, 12vw, 7rem);
  letter-spacing: 0.04em;
  line-height: 1;
  font-variation-settings: "opsz" 144, "SOFT" 60;
  font-weight: 300;
  color: var(--gold, #D4AF6F);
}
.bi-sub {
  font-family: var(--sans);
  font-size: clamp(0.7rem, 2.5vw, 0.85rem);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  margin-top: 1.4rem;
  color: var(--cream, #F4EFE5);
  opacity: 0.85;
  font-weight: 400;
}
@keyframes biFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .bi-inner { animation: none; }
  .brand-intro { transition: opacity 0.2s ease; }
}

/* Desktop / mobile copy toggles — used on villa pages to shorten text on mobile */
.m-only { display: none; }
@media (max-width: 720px) {
  .d-only { display: none !important; }
  .m-only { display: block; }
  span.m-only { display: inline; }
}
@media (max-width: 800px) {
  .villa-summary { position: static; }
  .villa-story { grid-template-columns: 1fr; }
  .villa-story .story-specs { width: 100%; }
  .experiences-grid { grid-template-columns: repeat(2, 1fr); }
  .villa-location { grid-template-columns: 1fr; }
  .similar-villas .sim-grid { grid-template-columns: 1fr; }
}

/* ---------- WhatsApp widget — minimalist circular FAB with portrait ---------- */
.wa-widget {
  position: fixed;
  bottom: 1.6rem; right: 1.6rem;
  z-index: 90;
  display: block;
  text-decoration: none;
  transform: translateY(16px);
  opacity: 0;
  transition: transform 0.5s var(--ease-out), opacity 0.5s var(--ease-out);
}
.wa-widget.is-shown { transform: translateY(0); opacity: 1; }

.wa-avatar {
  position: relative;
  width: 64px; height: 64px;
  border-radius: 50%;
  box-shadow: 0 4px 18px rgba(14, 11, 8, 0.16),
              0 1px 3px rgba(14, 11, 8, 0.08);
  transition: transform 0.4s var(--ease-out),
              box-shadow 0.4s var(--ease-out);
}
.wa-avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}
.wa-widget:hover .wa-avatar {
  transform: scale(1.05);
  box-shadow: 0 8px 28px rgba(14, 11, 8, 0.22),
              0 1px 3px rgba(14, 11, 8, 0.1);
}

/* Gentle pulse ring, very subtle */
.wa-avatar::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.45);
  animation: wa-pulse 2.8s var(--ease-out) infinite;
}
@keyframes wa-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.35); }
  70%  { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.wa-badge {
  position: absolute;
  bottom: -2px; right: -2px;
  width: 22px; height: 22px;
  background: #25D366;
  border: 2px solid var(--bg);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 1px 3px rgba(14, 11, 8, 0.12);
}
.wa-badge svg { width: 11px; height: 11px; fill: white; }

/* Tooltip label that appears on hover — serif, gold hairline */
.wa-bubble {
  position: absolute;
  right: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  opacity: 0;
  pointer-events: none;
  background: var(--bg);
  border: 1px solid var(--hairline);
  padding: 0.55rem 0.95rem;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(14, 11, 8, 0.08);
  transition: transform 0.35s var(--ease-out), opacity 0.35s var(--ease-out);
}
.wa-bubble::after {
  content: "";
  position: absolute;
  right: -6px; top: 50%;
  transform: translateY(-50%);
  width: 0; height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 6px solid var(--hairline);
}
.wa-widget:hover .wa-bubble {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}
.wa-name {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 0.82rem;
  color: var(--ink);
  letter-spacing: -0.005em;
  line-height: 1.1;
  font-variation-settings: "opsz" 18, "SOFT" 40;
}
.wa-name em {
  font-style: italic;
  font-weight: 300;
  color: var(--ink-muted);
  margin-left: 0.2em;
  font-variation-settings: "opsz" 18, "SOFT" 80;
}
.wa-msg {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 0.82rem;
  line-height: 1.2;
  color: var(--ink-muted);
  margin-top: 2px;
  font-variation-settings: "opsz" 18, "SOFT" 80;
}

@media (max-width: 640px) {
  .wa-widget { bottom: 1.2rem; right: 1.2rem; }
  .wa-avatar { width: 56px; height: 56px; }
  .wa-badge { width: 19px; height: 19px; }
  .wa-badge svg { width: 10px; height: 10px; }
  /* Hide tooltip on mobile — tap-only interaction */
  .wa-bubble { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .wa-avatar::before { animation: none; }
}

/* ---------- a11y ---------- */
@media (prefers-reduced-motion: reduce) {
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
  .image-reveal::after { display: none; }
  .image-reveal img { transform: none; }
}

/* ---------- Les Roches · Choose your casita ---------- */
.casitas { padding: var(--space-xl) 0; }
.casitas-intro {
  max-width: 58ch;
  font-family: var(--serif);
  font-weight: 300;
  font-size: 1.1rem;
  line-height: 1.55;
  color: var(--ink-muted);
  margin: -1rem 0 2.6rem;
  font-variation-settings: "opsz" 24, "SOFT" 60;
}
.casitas-intro em { font-style: italic; color: var(--ink); }
.casitas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem 1.8rem;
}
.casita-card {
  display: flex; flex-direction: column;
  background: var(--cream);
  border: 1px solid var(--hairline);
  text-decoration: none; color: inherit;
  transition: border-color 0.4s var(--ease-out), transform 0.5s var(--ease-out);
}
.casita-card:hover {
  border-color: rgba(212, 175, 111, 0.45);
  transform: translateY(-3px);
}
.casita-media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  position: relative;
}
.casita-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease-out);
}
.casita-card:hover .casita-media img { transform: scale(1.04); }
.casita-body {
  padding: 1.4rem 1.4rem 1.3rem;
  display: flex; flex-direction: column;
  flex-grow: 1; gap: 0.7rem;
}
.casita-head {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 1rem;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid var(--hairline);
}
.casita-name {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.45rem;
  letter-spacing: 0.01em;
  line-height: 1;
  color: var(--ink);
  font-variation-settings: "opsz" 36, "SOFT" 80;
  margin: 0;
}
.casita-name em {
  font-style: italic; font-weight: 300;
  color: var(--gold-deep);
  font-size: 0.78em;
  margin-right: 0.25em;
}
.casita-ref {
  font-family: var(--serif); font-style: italic;
  font-size: 0.88rem;
  color: var(--gold-deep);
  font-variation-settings: "opsz" 18, "SOFT" 100;
  opacity: 0.65;
}
.casita-line {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 0.96rem;
  line-height: 1.5;
  color: var(--ink-muted);
  font-variation-settings: "opsz" 18, "SOFT" 60;
  margin: 0;
}
.casita-specs {
  display: flex; flex-wrap: wrap;
  gap: 0.45rem 0.9rem;
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  padding: 0.3rem 0;
}
.casita-specs span {
  display: inline-flex; align-items: center;
}
.casita-specs span + span::before {
  content: "·";
  margin-right: 0.9rem;
  color: var(--gold);
  font-size: 1.1em;
  opacity: 0.6;
}
.casita-foot {
  margin-top: auto;
  padding-top: 0.9rem;
  border-top: 1px solid var(--hairline);
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem;
}
.casita-foot .from {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.casita-foot .from strong {
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.08em;
}
.casita-foot .cta {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--gold);
  font-variation-settings: "opsz" 18, "SOFT" 80;
  transition: color 0.3s, letter-spacing 0.4s var(--ease-out);
}
.casita-card:hover .casita-foot .cta {
  color: var(--gold-deep);
  letter-spacing: 0.03em;
}
.casitas-note {
  margin-top: 2.6rem;
  max-width: 70ch;
  font-family: var(--serif);
  font-weight: 300;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--ink-muted);
  padding: 1rem 0 0;
  border-top: 1px dashed var(--hairline);
  font-variation-settings: "opsz" 18, "SOFT" 70;
}
.casitas-note em { font-style: italic; color: var(--gold-deep); }

@media (max-width: 1100px) {
  .casitas-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .casitas-grid { grid-template-columns: 1fr; gap: 1.4rem; }
  .casita-body { padding: 1.1rem 1.1rem 1rem; }
  .casita-name { font-size: 1.25rem; }
  .casita-foot { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
}

/* ---------- About editorial ---------- */
.about-ed { padding: var(--space-xl) 0 0; position: relative; }

/* Storytelling — narrow italic column, centered */
.about-story {
  max-width: 640px;
  margin: 2.4rem auto 0;
  padding: 0 var(--gutter);
  text-align: center;
  position: relative;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 1.22rem;
  line-height: 1.72;
  color: var(--ink);
  font-variation-settings: "opsz" 24, "SOFT" 80;
}
.about-story p {
  margin: 0 0 1.2em;
}
.about-story p:last-of-type { margin-bottom: 2.4rem; }
.about-quote-mark {
  font-family: var(--serif);
  font-size: 5.5rem;
  color: var(--gold);
  line-height: 0.2;
  margin: 0.4em auto 0.4em;
  opacity: 0.38;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  letter-spacing: 0;
}
.about-signature {
  display: inline-flex;
  gap: 0.6rem;
  align-items: center;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1rem;
  color: var(--gold-deep);
  letter-spacing: 0.02em;
  font-variation-settings: "opsz" 24, "SOFT" 100;
  padding-top: 1.4rem;
  border-top: 1px solid var(--hairline);
  width: auto;
}
.about-signature .s-dot { color: var(--gold); opacity: 0.6; }

/* Bridge — fine gold line with 3 dots */
.about-bridge {
  display: flex; align-items: center; justify-content: center;
  gap: 0.8rem;
  margin: 3rem auto;
  max-width: 320px;
}
.about-bridge .line {
  flex: 1; height: 1px;
  background: linear-gradient(to right, transparent, var(--hairline) 20%, var(--hairline) 80%, transparent);
}
.about-bridge .d {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

/* Triptyque — 3 cartes, offsets asymétriques (haut-bas-haut) */
.about-triptych {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4rem;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 2rem var(--gutter) 4rem;
  align-items: start;
}
.tp-card {
  margin: 0;
  display: flex; flex-direction: column;
}
.tp-up   { transform: translateY(-2.2rem); }
.tp-down { transform: translateY(2.2rem); }
.tp-media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  position: relative;
  background: var(--cream);
}
.tp-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.6s var(--ease-out);
}
.tp-card:hover .tp-media img { transform: scale(1.03); }
.tp-body {
  padding: 1.3rem 0.3rem 0;
  display: flex; flex-direction: column; gap: 0.55rem;
}
.tp-head {
  display: flex; align-items: baseline; gap: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--hairline);
}
.tp-no {
  font-family: var(--serif); font-style: italic;
  font-size: 0.88rem;
  color: var(--gold-deep);
  opacity: 0.7;
  font-variation-settings: "opsz" 18, "SOFT" 100;
}
.tp-name {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 2.1rem;
  line-height: 1;
  margin: 0;
  color: var(--ink);
  font-variation-settings: "opsz" 48, "SOFT" 70;
}
.tp-name em {
  font-style: italic;
  font-weight: 300;
}
.tp-role {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 500;
  padding-top: 0.3rem;
}
.tp-quote {
  font-family: var(--serif);
  font-weight: 300;
  font-style: normal;
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--ink);
  margin: 0.4rem 0 0;
  font-variation-settings: "opsz" 18, "SOFT" 60;
}
.tp-quote em { font-style: italic; color: var(--gold-deep); }

@media (max-width: 900px) {
  .about-triptych { grid-template-columns: 1fr; gap: 2.6rem; }
  .tp-up, .tp-down { transform: none; }
  .tp-card { max-width: 520px; margin: 0 auto; }
  .about-story { font-size: 1.1rem; }
}

/* En-cart propriétaire — encadré warm bien visible */
.about-owners {
  position: relative;
  margin: 4rem auto 3rem;
  max-width: calc(var(--container-max) - 2 * var(--gutter));
  background: var(--warm);
  color: var(--ink);
  padding: 3.6rem 3.2rem;
  border: 1px solid rgba(212,175,111,0.55);
  border-radius: 3px;
  box-shadow:
    0 1px 0 rgba(212,175,111,0.3) inset,
    0 30px 60px -30px rgba(30, 20, 10, 0.25),
    0 10px 30px -10px rgba(30, 20, 10, 0.12);
  overflow: hidden;
}
/* Ornement : double filet + coin supérieur doré */
.about-owners::before {
  content: "";
  position: absolute;
  top: 14px; left: 14px; right: 14px; bottom: 14px;
  border: 1px solid rgba(212,175,111,0.25);
  border-radius: 1px;
  pointer-events: none;
}
.about-owners::after {
  content: "";
  position: absolute;
  top: -80px; right: -80px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,111,0.18), transparent 70%);
  pointer-events: none;
}
.ao-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
  position: relative;
}
.ao-eyebrow {
  font-family: var(--sans);
  font-size: 0.66rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 0.9rem;
}
.ao-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  line-height: 1.1;
  margin: 0;
  color: var(--ink);
  font-variation-settings: "opsz" 60, "SOFT" 60;
  letter-spacing: -0.01em;
}
.ao-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold-deep);
}
.ao-body p {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 1.02rem;
  line-height: 1.6;
  color: var(--ink-muted);
  margin: 0 0 1.4rem;
  max-width: 38ch;
  font-variation-settings: "opsz" 18, "SOFT" 70;
}
/* CTA — vrai bouton doré, bien visible, envie de cliquer */
.ao-cta {
  display: inline-flex; align-items: center; gap: 0.65em;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1rem;
  color: #0E0B08;
  background: var(--gold);
  font-variation-settings: "opsz" 24, "SOFT" 80;
  padding: 0.85em 1.8em 0.9em;
  border: 1px solid var(--gold);
  border-radius: 999px;
  letter-spacing: 0.01em;
  box-shadow: 0 8px 20px -8px rgba(212, 175, 111, 0.55);
  transition: background 0.35s var(--ease-out), border-color 0.35s var(--ease-out), transform 0.35s var(--ease-out), box-shadow 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.ao-cta span {
  font-family: var(--sans);
  font-style: normal;
  font-size: 1.05rem;
  transition: transform 0.4s var(--ease-out);
  display: inline-block;
  line-height: 1;
}
.ao-cta:hover {
  background: #0E0B08;
  border-color: #0E0B08;
  color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -10px rgba(30, 20, 10, 0.45);
}
.ao-cta:hover span { transform: translateX(5px); }

@media (max-width: 900px) {
  .about-owners { padding: 2.2rem 1.6rem; }
  .ao-inner { grid-template-columns: 1fr; gap: 1.4rem; }
}

/* ---------- Home About teaser ---------- */
.about-teaser { padding: var(--space-xl) 0; }
.at-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding-top: 1rem;
}
.at-lead { max-width: 440px; }
.at-sentence {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 1.35rem;
  line-height: 1.55;
  color: var(--ink);
  margin: 0 0 2rem;
  font-variation-settings: "opsz" 36, "SOFT" 70;
}
.at-sentence em {
  font-style: italic;
  color: var(--gold-deep);
  font-weight: 400;
}
.at-cta {
  display: inline-flex; align-items: center; gap: 0.5em;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1.02rem;
  color: var(--gold);
  padding-bottom: 0.3em;
  border-bottom: 1px solid var(--gold);
  font-variation-settings: "opsz" 24, "SOFT" 80;
  transition: color 0.3s, border-color 0.3s;
}
.at-cta span {
  font-family: var(--sans); font-style: normal;
  transition: transform 0.4s var(--ease-out);
  display: inline-block;
}
.at-cta:hover { color: var(--gold-deep); border-color: var(--gold-deep); }
.at-cta:hover span { transform: translateX(4px); }

.at-portraits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  justify-self: end;
  width: 100%;
  max-width: 520px;
}
.at-portrait {
  text-align: center;
  text-decoration: none;
  color: var(--ink);
  transition: transform 0.5s var(--ease-out);
}
.at-portrait.at-offset { transform: translateY(1.6rem); }
.at-portrait:hover { transform: translateY(-3px); }
.at-portrait.at-offset:hover { transform: translateY(calc(1.6rem - 3px)); }
.at-media {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--cream);
  margin-bottom: 0.8rem;
  border: 1px solid var(--hairline);
}
.at-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease-out);
}
.at-portrait:hover .at-media img { transform: scale(1.05); }
.at-name {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1rem;
  color: var(--ink);
  letter-spacing: 0.01em;
  font-variation-settings: "opsz" 24, "SOFT" 90;
}

@media (max-width: 900px) {
  .at-grid { grid-template-columns: 1fr; gap: 2.4rem; }
  .at-portraits { justify-self: stretch; max-width: 100%; }
}
@media (max-width: 500px) {
  .at-portraits { gap: 0.8rem; }
  .at-name { font-size: 0.88rem; }
}

/* ==========  OWNERS PAGE  ========== */

/* Hero — hero-height with CTAs below subtitle */
.owners-hero { height: 88svh; min-height: 600px; }
.owners-hero-cta {
  margin-top: 1.8rem;
  display: flex; gap: 1rem; align-items: center; flex-wrap: wrap;
}
.btn-wa-gold {
  display: inline-flex; align-items: center; gap: 0.5em;
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: 1rem; letter-spacing: 0.01em;
  color: #0E0B08; background: var(--gold);
  padding: 0.9em 1.8em;
  border: 1px solid var(--gold); border-radius: 999px;
  box-shadow: 0 10px 24px -10px rgba(212,175,111,0.5);
  transition: background 0.35s var(--ease-out), color 0.35s, transform 0.35s, box-shadow 0.4s;
  white-space: nowrap;
}
.btn-wa-gold span { font-family: var(--serif); font-style: italic; }
.btn-wa-gold:hover {
  background: var(--cream); color: #0E0B08;
  border-color: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 16px 32px -12px rgba(30,20,10,0.5);
}
.btn-ghost {
  display: inline-flex; align-items: center; gap: 0.5em;
  font-family: var(--sans); font-size: 0.78rem;
  letter-spacing: 0.22em; text-transform: uppercase; font-weight: 500;
  color: rgba(244,239,228,0.85);
  padding: 0.8em 1.2em;
  border-bottom: 1px solid rgba(244,239,228,0.4);
  transition: color 0.3s, border-color 0.3s;
}
.btn-ghost:hover { color: var(--cream); border-color: var(--cream); }

/* Numbers row */
.owners-numbers {
  background: var(--ink);
  color: var(--cream);
  padding: 3rem 0;
}
.on-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.on-item {
  padding: 1rem 1.4rem;
  border-left: 1px solid rgba(244,239,228,0.12);
  text-align: center;
}
.on-item:first-child { border-left: 0; }
.on-big {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(2.2rem, 3.6vw, 3.2rem);
  line-height: 1; color: var(--cream);
  font-variation-settings: "opsz" 72, "SOFT" 50;
  letter-spacing: -0.01em;
}
.on-plus, .on-unit {
  font-family: var(--serif); font-style: italic;
  font-weight: 300; font-size: 0.6em;
  color: var(--gold);
  margin-left: 0.1em;
  font-variation-settings: "opsz" 36, "SOFT" 100;
}
.on-lab {
  margin-top: 0.8rem;
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(244,239,228,0.62);
  font-weight: 500;
}
@media (max-width: 720px) {
  .on-grid { grid-template-columns: 1fr 1fr; }
  .on-item { padding: 1.4rem 1rem; border-top: 1px solid rgba(244,239,228,0.12); }
  .on-item:nth-child(1), .on-item:nth-child(2) { border-top: 0; }
  .on-item:nth-child(3) { border-left: 0; }
}

/* Scope — included / separate */
.owners-scope .os-head { margin-bottom: 1.4rem; }
.os-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.os-card {
  background: var(--cream);
  border: 1px solid var(--hairline);
  padding: 2.4rem 2rem;
  border-radius: 3px;
  display: flex; flex-direction: column;
}
.os-in { border-color: rgba(212,175,111,0.45); background: #FBF7EE; }
.os-card-head { margin-bottom: 1.6rem; }
.os-badge {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.62rem; letter-spacing: 0.28em;
  text-transform: uppercase; font-weight: 500;
  padding: 0.4em 0.9em;
  background: var(--gold); color: #0E0B08;
  border-radius: 999px;
  margin-bottom: 1rem;
}
.os-badge-mute {
  background: transparent;
  color: var(--ink-muted);
  border: 1px solid var(--hairline);
}
.os-title {
  font-family: var(--serif); font-weight: 400;
  font-size: 1.6rem; line-height: 1.2;
  margin: 0;
  color: var(--ink);
  font-variation-settings: "opsz" 48, "SOFT" 70;
}
.os-list {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column;
  gap: 0.8rem;
}
.os-list li {
  font-family: var(--serif); font-weight: 300;
  font-size: 1.02rem; line-height: 1.45;
  color: var(--ink);
  padding-left: 1.4em;
  position: relative;
  font-variation-settings: "opsz" 18, "SOFT" 60;
}
.os-in .os-list li::before {
  content: "";
  position: absolute; left: 0; top: 0.55em;
  width: 12px; height: 2px;
  background: var(--gold);
}
.os-out .os-list li::before {
  content: "+";
  position: absolute; left: 0.1em; top: 0.05em;
  color: var(--ink-muted); font-family: var(--sans);
  font-size: 0.9em; font-weight: 400;
}
.os-note {
  margin-top: 1.4rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--hairline);
  font-family: var(--serif); font-style: italic;
  font-weight: 300; font-size: 0.92rem;
  line-height: 1.5; color: var(--ink-muted);
  font-variation-settings: "opsz" 18, "SOFT" 80;
}
@media (max-width: 900px) {
  .os-grid { grid-template-columns: 1fr; }
}

/* Pillars */
.op-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem;
  margin-top: 1rem;
}
.op-card {
  background: var(--cream);
  border: 1px solid var(--hairline);
  padding: 2rem 1.8rem 1.8rem;
  position: relative;
  border-radius: 2px;
  transition: border-color 0.35s var(--ease-out);
}
.op-card:hover { border-color: rgba(212,175,111,0.45); }
.op-num {
  font-family: var(--serif); font-style: italic;
  font-size: 0.88rem; color: var(--gold-deep);
  opacity: 0.6;
  font-variation-settings: "opsz" 18, "SOFT" 100;
  margin-bottom: 0.6rem;
}
.op-t {
  font-family: var(--serif); font-weight: 400;
  font-size: 1.35rem; margin: 0 0 0.6rem;
  line-height: 1.2; color: var(--ink);
  font-variation-settings: "opsz" 36, "SOFT" 70;
}
.op-p {
  font-family: var(--serif); font-weight: 300;
  font-size: 0.98rem; line-height: 1.55;
  color: var(--ink-muted); margin: 0;
  font-variation-settings: "opsz" 18, "SOFT" 60;
}
@media (max-width: 720px) {
  .op-grid { grid-template-columns: 1fr; }
}

/* How it works — 4 steps */
.ow-steps {
  display: grid; grid-template-columns: 1fr;
  margin-top: 1rem;
}
.ow-step {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 2.4rem;
  padding: 2.2rem 0;
  border-top: 1px solid var(--hairline);
  align-items: baseline;
}
.ow-step:first-child { border-top: 0; }
.ow-no {
  font-family: var(--serif); font-style: italic;
  font-weight: 300;
  font-size: 3.8rem;
  line-height: 0.9;
  color: var(--gold-deep);
  font-variation-settings: "opsz" 60, "SOFT" 100;
}
.ow-body h3 {
  font-family: var(--serif); font-weight: 400;
  font-size: 1.6rem; margin: 0 0 0.5rem;
  line-height: 1.2; color: var(--ink);
  font-variation-settings: "opsz" 48, "SOFT" 70;
}
.ow-body p {
  font-family: var(--serif); font-weight: 300;
  font-size: 1.02rem; line-height: 1.55;
  color: var(--ink-muted); margin: 0;
  max-width: 60ch;
  font-variation-settings: "opsz" 18, "SOFT" 60;
}
@media (max-width: 720px) {
  .ow-step { grid-template-columns: 1fr; gap: 0.6rem; padding: 1.6rem 0; }
  .ow-no { font-size: 2.4rem; }
}

/* Owner portal preview */
.opv-grid {
  display: grid; grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem; align-items: center; margin-top: 1rem;
}
.opv-copy { padding-right: 1rem; }
.opv-title {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  line-height: 1.15; margin: 0 0 1rem;
  color: var(--ink);
  font-variation-settings: "opsz" 60, "SOFT" 60;
}
.opv-copy p {
  font-family: var(--serif); font-weight: 300;
  font-size: 1.04rem; line-height: 1.55;
  color: var(--ink-muted); margin: 0 0 1.4rem;
  max-width: 40ch;
  font-variation-settings: "opsz" 18, "SOFT" 60;
}
.opv-feat {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 0.6rem;
}
.opv-feat li {
  font-family: var(--serif); font-weight: 300;
  font-size: 0.96rem; color: var(--ink);
  font-variation-settings: "opsz" 18, "SOFT" 60;
}
.opv-feat li span { color: var(--gold); margin-right: 0.6em; font-weight: 500; }

/* Dashboard mockup */
.opv-mock {
  background: var(--cream);
  border: 1px solid var(--hairline);
  border-radius: 8px;
  overflow: hidden;
  box-shadow:
    0 30px 60px -20px rgba(30,20,10,0.25),
    0 10px 20px -8px rgba(30,20,10,0.08);
}
.opv-mock-bar {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.7rem 1rem;
  background: #ede6d7;
  border-bottom: 1px solid var(--hairline);
  position: relative;
}
.opv-mock-bar .dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  display: inline-block;
}
.opv-mock-bar .d1 { background: #e06c5a; }
.opv-mock-bar .d2 { background: #e9b55a; }
.opv-mock-bar .d3 { background: #6aaa5c; }
.opv-url {
  margin-left: auto; margin-right: auto;
  font-family: var(--sans); font-size: 0.72rem;
  letter-spacing: 0.08em; color: var(--ink-muted);
  background: var(--cream);
  padding: 0.2em 0.9em; border-radius: 999px;
  border: 1px solid var(--hairline);
}
.opv-mock-body {
  padding: 1.8rem 1.8rem 1.6rem;
  background: var(--cream);
  display: flex; flex-direction: column;
  gap: 1.4rem;
}
.opv-mock-head { display: flex; justify-content: space-between; align-items: center; }
.opv-villa {
  font-family: var(--serif); font-weight: 400;
  font-size: 1rem; color: var(--ink);
  font-variation-settings: "opsz" 24, "SOFT" 80;
}
.opv-villa em { font-style: italic; color: var(--gold-deep); margin-right: 0.2em; }
.opv-welcome {
  font-family: var(--sans);
  font-size: 0.72rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--ink-muted);
  margin-top: 0.3rem;
}
.opv-avatar {
  width: 36px; height: 36px;
  border-radius: 50%; background: var(--gold);
  color: #0E0B08;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--sans); font-size: 0.72rem;
  letter-spacing: 0.08em; font-weight: 500;
}
.opv-kpis {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}
.opv-kpi {
  padding: 1rem 0.9rem;
  border: 1px solid var(--hairline);
  border-radius: 4px;
  background: #FBF7EE;
}
.opv-kpi-gold { background: var(--gold); border-color: var(--gold); color: #0E0B08; }
.opv-k-lab {
  font-family: var(--sans); font-size: 0.6rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink-muted); font-weight: 500;
}
.opv-kpi-gold .opv-k-lab { color: rgba(14,11,8,0.7); }
.opv-k-val {
  font-family: var(--serif); font-weight: 400;
  font-size: 1.5rem; line-height: 1; margin-top: 0.5rem;
  color: var(--ink);
  font-variation-settings: "opsz" 48, "SOFT" 70;
}
.opv-k-val span {
  font-size: 0.68em; font-style: italic; font-weight: 300;
  color: var(--ink-muted);
  font-variation-settings: "opsz" 24, "SOFT" 100;
}
.opv-kpi-gold .opv-k-val, .opv-kpi-gold .opv-k-val span { color: #0E0B08; }
.opv-k-sub {
  margin-top: 0.45rem;
  font-family: var(--sans); font-size: 0.66rem;
  letter-spacing: 0.12em;
  color: var(--gold-deep);
}
.opv-kpi-gold .opv-k-sub { color: #0E0B08; opacity: 0.7; }

.opv-cal { padding-top: 0.4rem; }
.opv-cal-lab {
  font-family: var(--sans); font-size: 0.62rem;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-muted); font-weight: 500;
  margin-bottom: 0.7rem;
}
.opv-cal-strip {
  display: grid; grid-template-columns: repeat(30, 1fr);
  gap: 3px;
  margin-bottom: 0.7rem;
}
.cs-day {
  height: 14px;
  background: var(--hairline);
  border-radius: 2px;
}
.cs-day.cs-booked { background: var(--gold); }
.cs-day.cs-owner { background: var(--ink); }
.opv-cal-legend {
  display: flex; gap: 1rem; align-items: center;
  font-family: var(--sans); font-size: 0.64rem;
  letter-spacing: 0.08em;
  color: var(--ink-muted);
}
.opv-cal-legend span { display: inline-flex; align-items: center; gap: 0.4em; }
.opv-cal-legend .ls { width: 10px; height: 10px; border-radius: 2px; background: var(--hairline); display: inline-block; }
.opv-cal-legend .ls.cs-booked { background: var(--gold); }
.opv-cal-legend .ls.cs-owner { background: var(--ink); }

.opv-log {
  padding-top: 0.8rem;
  border-top: 1px solid var(--hairline);
}
.opv-log-lab {
  font-family: var(--sans); font-size: 0.62rem;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-muted); font-weight: 500;
  margin-bottom: 0.7rem;
}
.opv-log-row {
  display: flex; align-items: center; gap: 0.6em;
  font-family: var(--serif); font-weight: 300;
  font-size: 0.9rem; color: var(--ink);
  padding: 0.3em 0;
  font-variation-settings: "opsz" 18, "SOFT" 60;
}
.opv-log-row em { font-style: italic; color: var(--gold-deep); }
.lr-dot { width: 6px; height: 6px; border-radius: 50%; background: #6aaa5c; flex-shrink: 0; }
.lr-dot.lr-amber { background: #e9b55a; }
.lr-dot.lr-gold { background: var(--gold); }

@media (max-width: 900px) {
  .opv-grid { grid-template-columns: 1fr; gap: 2rem; }
  .opv-copy { padding-right: 0; }
  .opv-kpis { grid-template-columns: 1fr; }
}

/* Final CTA — réutilise about-owners mais avec owners-final override */
.owners-final { max-width: 920px; margin: 0 auto; }
.owners-final-inner { grid-template-columns: 1fr; gap: 1.4rem; text-align: center; }
.owners-final .ao-body { display: flex; flex-direction: column; align-items: center; }
.owners-final .ao-body p { max-width: 44ch; }
.ao-fine {
  margin-top: 1.8rem !important;
  font-family: var(--sans) !important;
  font-size: 0.64rem !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  color: var(--ink-muted) !important;
  font-style: normal !important;
}

/* ==========  OWNERS PAGE — refinements (v2)  ========== */

/* Section label BIG — titres plus visibles */
.section-label-big {
  padding-top: 3rem;
  padding-bottom: 1.6rem;
  margin-bottom: 3rem;
  column-gap: 2.8rem;
}
.section-label-big .n {
  font-size: 6rem;
  color: var(--gold);
  font-variation-settings: "opsz" 72, "SOFT" 100;
  font-weight: 300;
  line-height: 0.85;
}
.section-label-big .t {
  font-size: 1.15rem;
  letter-spacing: 0.2em;
  color: var(--ink);
  font-weight: 500;
  padding-bottom: 1.2em;
}
.section-label-big .side {
  font-size: 1rem;
  color: var(--ink-muted);
  padding-bottom: 1.4em;
}
.section-label-big.is-in::before { width: 120px; height: 2px; }
@media (max-width: 640px) {
  .section-label-big { padding-top: 1.8rem; column-gap: 1.4rem; margin-bottom: 2rem; }
  .section-label-big .n { font-size: 3.6rem; }
  .section-label-big .t { font-size: 0.88rem; }
}

/* --- 20% feature block inside os-in --- */
.os-pct {
  display: flex; align-items: baseline;
  gap: 0.4em;
  margin-bottom: 1.4rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px dashed rgba(212,175,111,0.45);
}
.os-pct-n {
  font-family: var(--serif); font-weight: 300;
  font-size: 5.6rem; line-height: 0.9;
  color: var(--gold);
  font-variation-settings: "opsz" 144, "SOFT" 40;
  letter-spacing: -0.02em;
}
.os-pct-s {
  font-family: var(--serif); font-style: italic;
  font-weight: 300; font-size: 3rem;
  color: var(--gold-deep);
  font-variation-settings: "opsz" 72, "SOFT" 100;
  margin-left: -0.15em;
}
.os-pct-lab {
  margin-left: auto;
  font-family: var(--sans); font-size: 0.7rem;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--ink-muted); font-weight: 500;
  padding-bottom: 0.5em;
}

/* --- Highlighted OTA bypass feature --- */
.os-hero-feat {
  background: linear-gradient(135deg, #0E0B08 0%, #1a1410 100%);
  color: var(--cream);
  padding: 1.4rem 1.4rem 1.3rem;
  margin: 1.6rem 0;
  border-radius: 3px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(212,175,111,0.35);
}
.os-hero-feat::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: var(--gold);
}
.os-hero-feat::after {
  content: "";
  position: absolute;
  top: -60px; right: -60px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,111,0.15), transparent 70%);
}
.os-hero-feat-lab {
  font-family: var(--sans); font-size: 0.58rem;
  letter-spacing: 0.32em; text-transform: uppercase;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 0.55rem;
}
.os-hero-feat-title {
  font-family: var(--serif); font-weight: 400;
  font-size: 1.22rem; line-height: 1.25;
  color: var(--cream);
  margin-bottom: 0.6rem;
  font-variation-settings: "opsz" 36, "SOFT" 80;
}
.os-hero-feat-p {
  font-family: var(--serif); font-weight: 300;
  font-size: 0.88rem; line-height: 1.5;
  color: rgba(244,239,228,0.8);
  margin: 0;
  font-variation-settings: "opsz" 18, "SOFT" 60;
}

/* --- Pillars — plus dynamiques --- */
.owners-pillars { padding: var(--space-xl) 0; }
.op-grid { gap: 1.8rem; }
.op-card {
  padding: 2.4rem 2rem 2rem;
  overflow: hidden;
  position: relative;
  background: var(--cream);
  border: 1px solid var(--hairline);
  transition: transform 0.5s var(--ease-out), border-color 0.5s, box-shadow 0.5s;
}
.op-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.7s var(--ease-out);
}
.op-card::after {
  content: "";
  position: absolute;
  top: 1.8rem; right: 1.8rem;
  width: 24px; height: 1px;
  background: var(--gold);
  opacity: 0.5;
  transform-origin: right center;
  transition: width 0.5s var(--ease-out), opacity 0.3s;
}
.op-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212,175,111,0.55);
  box-shadow: 0 20px 40px -20px rgba(30,20,10,0.2);
}
.op-card:hover::before { width: 100%; }
.op-card:hover::after { width: 48px; opacity: 1; }
.op-num {
  font-family: var(--serif); font-style: italic;
  font-weight: 300;
  font-size: 3.6rem;
  line-height: 0.9;
  color: var(--gold);
  font-variation-settings: "opsz" 72, "SOFT" 100;
  margin-bottom: 1.1rem;
  opacity: 0.25;
  transition: opacity 0.5s var(--ease-out), transform 0.6s var(--ease-out), color 0.4s;
}
.op-card:hover .op-num {
  opacity: 1;
  color: var(--gold-deep);
  transform: translateX(4px);
}
.op-t {
  font-size: 1.55rem;
  font-variation-settings: "opsz" 48, "SOFT" 60;
  letter-spacing: -0.005em;
}
.op-p {
  font-size: 1rem;
  line-height: 1.6;
}

/* --- How it works — TIMELINE avec ligne verticale + nodes or --- */
.owners-how { padding: var(--space-xl) 0; }
.ow-steps {
  position: relative;
  margin-top: 1rem;
  padding-left: 0;
}
.ow-steps::before {
  content: "";
  position: absolute;
  left: 45px;
  top: 20px;
  bottom: 20px;
  width: 1px;
  background: linear-gradient(to bottom, rgba(212,175,111,0.15), var(--hairline), rgba(212,175,111,0.15));
}
.ow-step {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 2.4rem;
  padding: 2.2rem 0;
  border-top: 0;
  position: relative;
  align-items: flex-start;
}
.ow-step:first-child { padding-top: 0.4rem; }
.ow-step:last-child { padding-bottom: 0.4rem; }

.ow-no {
  position: relative;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid rgba(212,175,111,0.45);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-style: italic;
  font-weight: 300;
  font-size: 2.4rem;
  line-height: 1;
  color: var(--gold-deep);
  font-variation-settings: "opsz" 72, "SOFT" 100;
  transition: transform 0.5s var(--ease-out), background 0.5s, color 0.4s, box-shadow 0.5s, border-color 0.5s;
  z-index: 2;
  box-shadow: 0 4px 12px -4px rgba(30,20,10,0.06);
}
.ow-no::before {
  content: "";
  position: absolute;
  inset: -6px;
  border: 1px solid rgba(212,175,111,0.18);
  border-radius: 50%;
  transform: scale(0.7);
  opacity: 0;
  transition: transform 0.6s var(--ease-out), opacity 0.4s;
}
.ow-step:hover .ow-no {
  background: var(--gold);
  color: #0E0B08;
  border-color: var(--gold);
  transform: scale(1.08);
  box-shadow: 0 14px 30px -8px rgba(212,175,111,0.45);
}
.ow-step:hover .ow-no::before {
  transform: scale(1);
  opacity: 1;
}

/* When the step enters view, the number pops */
.ow-step.reveal-up.is-in .ow-no {
  animation: ow-pop 0.8s var(--ease-out) 0.2s both;
}
@keyframes ow-pop {
  0% { transform: scale(0.85); opacity: 0; }
  60% { transform: scale(1.04); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}

.ow-body {
  padding-top: 0.8rem;
  padding-left: 0.8rem;
}
.ow-body h3 {
  font-size: 1.8rem;
  font-variation-settings: "opsz" 60, "SOFT" 60;
  letter-spacing: -0.008em;
  margin-bottom: 0.6rem;
  transition: color 0.3s;
}
.ow-step:hover .ow-body h3 { color: var(--gold-deep); }
.ow-body p {
  font-size: 1.04rem;
  line-height: 1.65;
}

/* Connector arrow between steps (except last) */
.ow-step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 44px;
  bottom: -8px;
  width: 3px; height: 16px;
  background: var(--gold);
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.5s, transform 0.6s var(--ease-out);
}
.ow-step.is-in:not(:last-child)::after {
  opacity: 0.4;
  transform: translateY(0);
}

@media (max-width: 720px) {
  .ow-steps::before { left: 30px; }
  .ow-step { grid-template-columns: 60px 1fr; gap: 1.2rem; padding: 1.4rem 0; }
  .ow-no { width: 60px; height: 60px; font-size: 1.6rem; }
  .ow-body { padding-top: 0.4rem; padding-left: 0; }
  .ow-body h3 { font-size: 1.4rem; }
  .ow-step:not(:last-child)::after { left: 29px; }
}

/* ==========  HOME — Team bridge (section 04)  ========== */
.team-bridge { padding: var(--space-xl) 0; position: relative; }

/* Intro */
.tb-intro { max-width: 700px; margin: 0 auto 3rem; text-align: center; }
.tb-lead {
  font-family: var(--serif); font-weight: 300;
  font-size: 1.3rem; line-height: 1.55;
  color: var(--ink-muted);
  font-variation-settings: "opsz" 24, "SOFT" 70;
  margin: 0;
}
.tb-lead em { font-style: italic; color: var(--gold-deep); font-weight: 400; }

/* Portraits — 3 columns aligned */
.tb-portraits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  max-width: 760px;
  margin: 0 auto;
}
.tb-portrait {
  text-align: center;
  text-decoration: none;
  color: var(--ink);
  transition: transform 0.5s var(--ease-out);
}
.tb-portrait:hover { transform: translateY(-3px); }
.tb-media {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--cream);
  border: 1px solid var(--hairline);
  margin-bottom: 0.8rem;
}
.tb-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease-out);
}
.tb-portrait:hover .tb-media img { transform: scale(1.05); }
.tb-name {
  font-family: var(--serif); font-style: italic;
  font-weight: 400;
  font-size: 1.1rem;
  color: var(--ink);
  font-variation-settings: "opsz" 24, "SOFT" 90;
}
.tb-role {
  margin-top: 0.3rem;
  font-family: var(--sans);
  font-size: 0.6rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 500;
}

/* Visual bridge — convergence then Y split */
.tb-split {
  position: relative;
  max-width: 760px; margin: 3.5rem auto 3rem;
  height: 90px;
}
.tb-split-line {
  position: absolute;
  background: var(--hairline);
  transition: background 0.6s, transform 0.8s var(--ease-out);
  transform-origin: top center;
}
.tb-split-down {
  width: 1px; height: 36px;
  top: 0; left: 50%;
  transform: translateX(-50%) scaleY(0);
}
.team-bridge.is-in .tb-split-down { transform: translateX(-50%) scaleY(1); transition-delay: 0.2s; }
.tb-split-dot {
  position: absolute;
  top: 32px; left: 50%; transform: translateX(-50%) scale(0);
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  transition: transform 0.6s var(--ease-out) 0.7s;
}
.team-bridge.is-in .tb-split-dot { transform: translateX(-50%) scale(1); }
.tb-split-left, .tb-split-right {
  height: 1px; top: 38px;
  width: 0;
  background: linear-gradient(to right, var(--gold), var(--hairline));
  transition: width 1s var(--ease-out) 0.9s;
}
.tb-split-left { left: 50%; transform-origin: left center; transform: rotate(28deg); }
.tb-split-right { right: 50%; transform-origin: right center; transform: rotate(-28deg); background: linear-gradient(to left, var(--gold), var(--hairline)); }
.team-bridge.is-in .tb-split-left { width: 38%; }
.team-bridge.is-in .tb-split-right { width: 38%; }

/* Two paths */
.tb-paths {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1080px;
  margin: 0 auto;
}
.tb-path {
  position: relative;
  padding: 2.6rem 2.2rem;
  border: 1px solid var(--hairline);
  border-radius: 3px;
  background: var(--cream);
  display: flex; flex-direction: column;
  transition: transform 0.5s var(--ease-out), border-color 0.5s, box-shadow 0.5s;
  overflow: hidden;
}
.tb-path::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.7s var(--ease-out);
}
.tb-path:hover { transform: translateY(-4px); border-color: rgba(212,175,111,0.55); box-shadow: 0 20px 40px -20px rgba(30,20,10,0.18); }
.tb-path:hover::before { width: 100%; }

.tb-travelers { background: var(--cream); }
.tb-owners {
  background: linear-gradient(135deg, var(--warm) 0%, #f4ead4 100%);
  border-color: rgba(212,175,111,0.35);
}

.tb-path-eyebrow {
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 500;
  margin-bottom: 1rem;
}
.tb-path-title {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(1.5rem, 2.4vw, 1.85rem);
  line-height: 1.2;
  margin: 0 0 1rem;
  color: var(--ink);
  font-variation-settings: "opsz" 48, "SOFT" 60;
  letter-spacing: -0.005em;
}
.tb-path-title em { font-style: italic; font-weight: 300; color: var(--gold-deep); }
.tb-path-copy {
  font-family: var(--serif); font-weight: 300;
  font-size: 1rem; line-height: 1.55;
  color: var(--ink-muted);
  margin: 0 0 1.6rem;
  font-variation-settings: "opsz" 18, "SOFT" 60;
  flex-grow: 1;
}

.tb-path-cta {
  display: inline-flex; align-items: center; gap: 0.55em;
  align-self: flex-start;
  font-family: var(--serif); font-style: italic;
  font-weight: 400;
  font-size: 0.98rem;
  padding: 0.85em 1.6em;
  border-radius: 999px;
  font-variation-settings: "opsz" 24, "SOFT" 80;
  transition: background 0.4s var(--ease-out), color 0.4s, transform 0.4s, box-shadow 0.4s, border-color 0.4s;
  white-space: nowrap;
  text-decoration: none;
}
.tb-cta-light {
  background: transparent;
  color: var(--gold-deep);
  border: 1px solid var(--gold);
}
.tb-cta-light:hover {
  background: var(--gold);
  color: #0E0B08;
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -10px rgba(212,175,111,0.45);
}
.tb-cta-dark {
  background: #0E0B08;
  color: var(--gold);
  border: 1px solid #0E0B08;
}
.tb-cta-dark:hover {
  background: var(--gold);
  color: #0E0B08;
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -10px rgba(212,175,111,0.45);
}
.tb-arrow { font-family: var(--sans); font-style: normal; transition: transform 0.4s var(--ease-out); display: inline-block; }
.tb-path-cta:hover .tb-arrow { transform: translateX(4px); }

@media (max-width: 800px) {
  .tb-portraits { grid-template-columns: 1fr 1fr 1fr; gap: 0.8rem; }
  .tb-name { font-size: 0.95rem; }
  .tb-role { font-size: 0.54rem; letter-spacing: 0.2em; }
  .tb-paths { grid-template-columns: 1fr; }
  .tb-split { display: none; }
  .tb-split { margin-bottom: 1.5rem; }
}

/* ==========  HOME — Contact bridge (section 05)  ========== */
.contact-bridge { padding: var(--space-xl) 0; }
.cb-head { text-align: center; max-width: 700px; margin: 0 auto 3rem; }
.cb-title {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1; margin: 0 0 1rem;
  color: var(--ink);
  font-variation-settings: "opsz" 72, "SOFT" 50;
  letter-spacing: -0.01em;
}
.cb-title em { font-style: italic; font-weight: 300; color: var(--gold-deep); }
.cb-sub {
  font-family: var(--serif); font-weight: 300;
  font-size: 1.05rem; line-height: 1.5;
  color: var(--ink-muted); margin: 0;
  font-variation-settings: "opsz" 18, "SOFT" 60;
}
.cb-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.cb-card {
  position: relative;
  display: flex; flex-direction: column;
  text-decoration: none;
  background: var(--cream);
  border: 1px solid var(--hairline);
  border-radius: 3px;
  padding: 2.4rem 2rem 2rem;
  color: var(--ink);
  transition: transform 0.5s var(--ease-out), border-color 0.5s, box-shadow 0.5s;
  overflow: hidden;
}
.cb-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: var(--gold);
  transform: scaleX(0); transform-origin: left center;
  transition: transform 0.7s var(--ease-out);
}
.cb-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212,175,111,0.55);
  box-shadow: 0 20px 40px -20px rgba(30,20,10,0.2);
}
.cb-card:hover::before { transform: scaleX(1); }
.cb-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid rgba(212,175,111,0.45);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.4rem;
  color: var(--gold-deep);
  transition: background 0.4s var(--ease-out), color 0.4s, transform 0.4s, border-color 0.4s;
}
.cb-icon svg { width: 20px; height: 20px; }
.cb-card:hover .cb-icon {
  background: var(--gold);
  color: #0E0B08;
  border-color: var(--gold);
  transform: scale(1.08);
}
.cb-channel {
  font-family: var(--serif); font-style: italic;
  font-weight: 400; font-size: 1.5rem;
  line-height: 1; color: var(--ink);
  font-variation-settings: "opsz" 48, "SOFT" 80;
  margin-bottom: 0.5rem;
}
.cb-handle {
  font-family: var(--sans);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  color: var(--ink-muted);
  margin-bottom: 1rem;
  word-break: break-all;
}
.cb-line {
  font-family: var(--serif); font-weight: 300;
  font-size: 0.95rem; line-height: 1.5;
  color: var(--ink-muted);
  margin: 0 0 1.4rem;
  font-variation-settings: "opsz" 18, "SOFT" 60;
  flex-grow: 1;
}
.cb-cta {
  display: inline-flex; align-items: center; gap: 0.4em;
  font-family: var(--serif); font-style: italic;
  font-size: 0.92rem;
  color: var(--gold);
  padding-top: 0.8rem;
  border-top: 1px solid var(--hairline);
  font-variation-settings: "opsz" 24, "SOFT" 80;
  transition: color 0.3s, border-color 0.3s;
}
.cb-cta span:last-child {
  font-family: var(--sans); font-style: normal;
  transition: transform 0.4s var(--ease-out);
  display: inline-block;
}
.cb-card:hover .cb-cta { color: var(--gold-deep); border-color: rgba(212,175,111,0.4); }
.cb-card:hover .cb-cta span:last-child { transform: translateX(4px); }

/* Instagram card — petit overlay gradient */
.cb-card-ig {
  background: linear-gradient(160deg, var(--cream) 0%, #f9f3e3 100%);
}
.cb-card-ig .cb-icon {
  background: linear-gradient(135deg, #FCAF45 0%, #E1306C 50%, #833AB4 100%);
  color: var(--cream);
  border-color: transparent;
}
.cb-card-ig:hover .cb-icon {
  background: linear-gradient(135deg, #FCAF45 0%, #E1306C 50%, #833AB4 100%);
  color: var(--cream);
}

@media (max-width: 800px) {
  .cb-grid { grid-template-columns: 1fr; }
}

/* ==========  HOME 02 — THE PLACE — cinematic video panel  ========== */
.place-video-section {
  background: var(--bg);
  padding: var(--space-xl) 0 var(--space-l);
}
.pv-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: end;
  margin-top: 2rem;
  margin-bottom: 3.4rem;
}
.pv-h {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 1.02;
  margin: 0;
  color: var(--ink);
  font-variation-settings: "opsz" 144, "SOFT" 50;
  letter-spacing: -0.015em;
}
.pv-h em { font-style: italic; font-weight: 300; color: var(--gold-deep); }
.pv-lead {
  font-family: var(--serif); font-weight: 300;
  font-size: 1.1rem; line-height: 1.6;
  color: var(--ink-muted);
  max-width: 50ch;
  margin: 0;
  font-variation-settings: "opsz" 18, "SOFT" 60;
}
@media (max-width: 800px) {
  .pv-head { grid-template-columns: 1fr; gap: 1.4rem; }
}

/* Frame full-bleed-ish (avec une marge latérale) */
.pv-frame {
  margin: 0 var(--gutter);
  position: relative;
}
.pv-video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 21 / 9;
  overflow: hidden;
  background: #0E0B08;
  border-radius: 3px;
  box-shadow:
    0 30px 80px -30px rgba(30,20,10,0.4),
    0 12px 30px -10px rgba(30,20,10,0.15);
}
.pv-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.pv-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(14,11,8,0.55) 0%, rgba(14,11,8,0.05) 35%, rgba(14,11,8,0.05) 65%, rgba(14,11,8,0.4) 100%),
    linear-gradient(to right, rgba(14,11,8,0.25), transparent 30%, transparent 70%, rgba(14,11,8,0.25));
  pointer-events: none;
}
/* Coin tags — style "doc/film" */
.pv-corner {
  position: absolute;
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(244,239,228,0.85);
  font-weight: 500;
  padding: 0.4em 0.9em;
  border: 1px solid rgba(244,239,228,0.3);
  border-radius: 2px;
  backdrop-filter: blur(4px);
  background: rgba(14,11,8,0.18);
}
.pv-tl { top: 1.4rem; left: 1.4rem; }
.pv-tr { top: 1.4rem; right: 1.4rem; }
.pv-bl { bottom: 1.4rem; left: 1.4rem; display: inline-flex; align-items: center; gap: 0.5em; }
.pv-rec {
  width: 7px; height: 7px; border-radius: 50%;
  background: #e06c5a;
  display: inline-block;
  animation: pv-blink 1.6s infinite;
}
@keyframes pv-blink { 50% { opacity: 0.3; } }
.pv-cap {
  position: absolute;
  bottom: 1.4rem; right: 1.4rem;
  text-align: right;
  max-width: 380px;
  color: var(--cream);
}
.pv-cap-eye {
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.pv-cap-line {
  font-family: var(--serif); font-style: italic;
  font-weight: 300;
  font-size: 1.15rem;
  line-height: 1.4;
  color: var(--cream);
  font-variation-settings: "opsz" 36, "SOFT" 90;
  text-shadow: 0 1px 12px rgba(0,0,0,0.4);
}
@media (max-width: 720px) {
  .pv-video-wrap { aspect-ratio: 16 / 11; }
  .pv-corner { font-size: 0.5rem; padding: 0.3em 0.6em; }
  .pv-tr { display: none; }
  .pv-cap { max-width: 80%; bottom: 1rem; right: 1rem; }
  .pv-cap-line { font-size: 0.95rem; }
}

/* ==========  Tighter spacing entre Team (03) et Journal (04)  ========== */
.team-bridge + .ornament + .journal-teaser {
  padding-top: 1rem;
}
.team-bridge { padding-bottom: 3rem; }
.team-bridge + .ornament { margin: 0.6rem 0; }

/* ==========  HOME 03 — Cards "For travelers / For owners" — hero-style  ========== */
.tb-paths {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
  max-width: 1080px;
  margin: 0 auto;
}
.tb-path {
  position: relative;
  display: block;
  min-height: 460px;
  border-radius: 3px;
  overflow: hidden;
  text-decoration: none;
  background: #0E0B08;
  border: 1px solid var(--hairline);
  transition: transform 0.6s var(--ease-out), box-shadow 0.6s, border-color 0.5s;
}
.tb-path::before { display: none; }
.tb-path-bg {
  position: absolute; inset: 0;
  overflow: hidden;
}
.tb-path-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.6s var(--ease-out);
  filter: saturate(0.95) contrast(1.05);
}
.tb-path:hover .tb-path-bg img { transform: scale(1.06); }
.tb-path-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(14,11,8,0.85) 0%, rgba(14,11,8,0.55) 40%, rgba(14,11,8,0.2) 75%, rgba(14,11,8,0.4) 100%);
  transition: background 0.5s var(--ease-out);
}
.tb-path:hover .tb-path-overlay {
  background:
    linear-gradient(to top, rgba(14,11,8,0.9) 0%, rgba(14,11,8,0.6) 40%, rgba(14,11,8,0.3) 75%, rgba(14,11,8,0.5) 100%);
}
.tb-path:hover {
  transform: translateY(-6px);
  border-color: rgba(212,175,111,0.55);
  box-shadow: 0 30px 60px -25px rgba(30,20,10,0.45);
}

.tb-path-inner {
  position: relative;
  z-index: 2;
  padding: 2.6rem 2.4rem 2.4rem;
  height: 100%;
  display: flex; flex-direction: column;
  justify-content: flex-end;
  color: var(--cream);
}
.tb-path-eyebrow {
  font-family: var(--sans);
  font-size: 0.66rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1rem;
  display: inline-flex; align-items: center; gap: 0.6em;
}
.tb-path-eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--gold);
  display: inline-block;
}
.tb-path-title {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(1.7rem, 2.6vw, 2.2rem);
  line-height: 1.15;
  margin: 0 0 1rem;
  color: var(--cream);
  font-variation-settings: "opsz" 60, "SOFT" 50;
  letter-spacing: -0.01em;
  text-shadow: 0 1px 16px rgba(0,0,0,0.35);
}
.tb-path-title em { font-style: italic; font-weight: 300; color: var(--gold); }
.tb-path-copy {
  font-family: var(--serif); font-weight: 300;
  font-size: 1rem; line-height: 1.55;
  color: rgba(244,239,228,0.82);
  margin: 0 0 1.6rem;
  font-variation-settings: "opsz" 18, "SOFT" 60;
  max-width: 38ch;
}
.tb-path-cta {
  display: inline-flex; align-items: center; gap: 0.6em;
  align-self: flex-start;
  font-family: var(--serif); font-style: italic;
  font-weight: 400;
  font-size: 1rem;
  padding: 0.85em 1.7em;
  border-radius: 999px;
  font-variation-settings: "opsz" 24, "SOFT" 80;
  transition: background 0.4s var(--ease-out), color 0.4s, border-color 0.4s, transform 0.4s, box-shadow 0.5s;
  white-space: nowrap;
  border: 1px solid;
}
.tb-cta-light {
  background: transparent;
  color: var(--cream);
  border-color: rgba(244,239,228,0.6);
}
.tb-path:hover .tb-cta-light {
  background: var(--cream);
  color: #0E0B08;
  border-color: var(--cream);
  box-shadow: 0 14px 30px -10px rgba(244,239,228,0.4);
}
.tb-cta-dark {
  background: var(--gold);
  color: #0E0B08;
  border-color: var(--gold);
}
.tb-path:hover .tb-cta-dark {
  background: var(--cream);
  color: #0E0B08;
  border-color: var(--cream);
  box-shadow: 0 14px 30px -10px rgba(212,175,111,0.5);
}
.tb-arrow { font-family: var(--sans); font-style: normal; transition: transform 0.4s var(--ease-out); display: inline-block; }
.tb-path:hover .tb-arrow { transform: translateX(5px); }

@media (max-width: 800px) {
  .tb-paths { grid-template-columns: 1fr; }
  .tb-path { min-height: 380px; }
  .tb-path-inner { padding: 2rem 1.6rem 1.8rem; }
}

/* ==========  HOME — spacing reductions + cards typographic-only (v3)  ========== */

/* --- Tighter section transitions on the home --- */
.estates.section.compact { padding-bottom: 2rem; }

.place-video-section { padding: 2.5rem 0 2rem !important; }
.place-video-section .pv-head { margin-top: 1rem; margin-bottom: 2rem; }

.team-bridge.section { padding: 2.2rem 0 2rem !important; }
.team-bridge .tb-intro { margin-bottom: 1.4rem; }
.team-bridge .tb-portraits { margin-bottom: 0; }
.tb-split { margin: 1.4rem auto 1.4rem !important; height: 70px; }
.tb-split-down { height: 28px; }
.tb-split-dot { top: 24px; }
.tb-split-left, .tb-split-right { top: 30px; }

.journal-teaser { padding: 2rem 0 2.4rem !important; }
.journal-teaser h2.h1 { margin-bottom: 1.6rem !important; }
.contact-bridge.section { padding: 2.2rem 0 3rem !important; }
.contact-bridge .cb-head { margin-bottom: 2rem; }

/* Bring ornaments closer */
.team-bridge + .ornament,
.estates + .ornament,
.place-video-section + .ornament { margin: 0.4rem 0 !important; padding: 0; }

/* --- Cards For travelers / For owners — typographic, no photos --- */
.tb-paths { gap: 1.4rem; }
.tb-path {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 0;
  border-radius: 3px;
  overflow: hidden;
  text-decoration: none;
  border: 1px solid var(--hairline);
  background: var(--cream);
  padding: 0;
  transition: transform 0.5s var(--ease-out), border-color 0.5s, box-shadow 0.5s, background 0.5s;
}
.tb-path::before {
  content: "";
  position: absolute;
  top: 0; left: 0; height: 3px; width: 0;
  background: var(--gold);
  transition: width 0.7s var(--ease-out);
  z-index: 3;
}
.tb-path:hover::before { width: 100%; }
.tb-path:hover {
  transform: translateY(-4px);
  border-color: rgba(212,175,111,0.6);
  box-shadow: 0 22px 44px -22px rgba(30,20,10,0.22);
}

/* Travelers — light cream */
.tb-travelers { background: linear-gradient(170deg, #FCF8EE 0%, var(--cream) 100%); }
/* Owners — warm with subtle gold tint */
.tb-owners { background: linear-gradient(170deg, var(--warm) 0%, #f4ead4 100%); }

/* Inner — keep generous padding */
.tb-path-inner {
  padding: 2.4rem 2.4rem 2.2rem;
  display: flex; flex-direction: column;
  height: 100%;
  position: relative;
  z-index: 2;
}

/* Big eyebrow — visible at first glance */
.tb-path-eyebrow {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  line-height: 1;
  letter-spacing: -0.005em;
  color: var(--gold-deep);
  font-variation-settings: "opsz" 60, "SOFT" 100;
  margin-bottom: 1.4rem;
  padding-bottom: 1rem;
  position: relative;
  text-transform: none;
  text-shadow: none;
  display: block;
}
.tb-path-eyebrow em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
  margin-right: 0.18em;
}
.tb-path-eyebrow::before { content: none; }
.tb-path-eyebrow::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 56px; height: 2px;
  background: var(--gold);
  transition: width 0.6s var(--ease-out);
}
.tb-path:hover .tb-path-eyebrow::after { width: 96px; }

/* Title */
.tb-path-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.4rem, 2vw, 1.7rem);
  line-height: 1.2;
  margin: 0 0 0.8rem;
  color: var(--ink);
  font-variation-settings: "opsz" 36, "SOFT" 60;
  letter-spacing: -0.005em;
  text-shadow: none;
}
.tb-path-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold-deep);
}

/* Copy */
.tb-path-copy {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 0.96rem;
  line-height: 1.55;
  color: var(--ink-muted);
  margin: 0 0 1.4rem;
  max-width: 42ch;
  flex-grow: 1;
  font-variation-settings: "opsz" 18, "SOFT" 60;
}

/* CTA — both pill buttons, distinct tones */
.tb-path-cta {
  display: inline-flex; align-items: center; gap: 0.55em;
  align-self: flex-start;
  font-family: var(--serif); font-style: italic;
  font-weight: 400;
  font-size: 0.96rem;
  padding: 0.75em 1.5em;
  border-radius: 999px;
  font-variation-settings: "opsz" 24, "SOFT" 80;
  transition: background 0.4s var(--ease-out), color 0.4s, border-color 0.4s, box-shadow 0.4s;
  white-space: nowrap;
  border: 1px solid;
  text-shadow: none;
}
.tb-cta-light {
  background: transparent;
  color: var(--gold-deep);
  border-color: var(--gold);
}
.tb-path:hover .tb-cta-light {
  background: var(--gold);
  color: #0E0B08;
  border-color: var(--gold);
  box-shadow: 0 10px 22px -10px rgba(212,175,111,0.55);
}
.tb-cta-dark {
  background: #0E0B08;
  color: var(--gold);
  border-color: #0E0B08;
}
.tb-path:hover .tb-cta-dark {
  background: var(--gold);
  color: #0E0B08;
  border-color: var(--gold);
  box-shadow: 0 10px 22px -10px rgba(212,175,111,0.55);
}
.tb-arrow { font-family: var(--sans); font-style: normal; transition: transform 0.4s var(--ease-out); display: inline-block; }
.tb-path:hover .tb-arrow { transform: translateX(4px); }

@media (max-width: 800px) {
  .tb-path-inner { padding: 1.8rem 1.6rem; }
}

/* ==========  Logo image — nav · hero · footer  ========== */

/* Nav logo as image — swaps gold (over hero photo) ↔ black (over cream inner pages) */
.nav-logo-img {
  display: flex; align-items: center;
  padding: 0;
  position: relative;
}
.nav-logo-pic {
  display: block;
  height: 56px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
  transition: transform 0.4s var(--ease-out);
}
.nav-logo-img:hover .nav-logo-pic { transform: scale(1.04); }
/* By default (home, transparent nav over hero photo) — show GOLD, hide DARK */
.nav-logo-pic-dark { display: none; }
/* On solid/scrolled nav (cream bg) — swap to DARK */
.nav.is-solid .nav-logo-pic-gold,
.nav.is-scrolled .nav-logo-pic-gold { display: none; }
.nav.is-solid .nav-logo-pic-dark,
.nav.is-scrolled .nav-logo-pic-dark {
  display: block;
  filter: none;
}
/* Disable parent nav's mix-blend-mode for the logo image so it doesn't invert */
.nav .nav-logo-img { mix-blend-mode: normal; isolation: isolate; }
@media (max-width: 640px) {
  .nav-logo-pic { height: 44px; }
}

/* Hero brandmark — image (replaces the typo lockup) */
.hero-brandmark-img {
  top: 6.4rem;
}
.hbm-pic {
  display: block;
  width: clamp(150px, 16vw, 220px);
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 4px 22px rgba(0,0,0,0.55));
}

/* Footer logo as image */
.footer-logo-img {
  display: flex; align-items: center;
  min-width: 0;
}
.footer-logo-pic {
  display: block;
  height: 88px;
  width: auto;
}
@media (max-width: 640px) {
  .footer-logo-pic { height: 72px; }
}

/* ==========  Cookie consent banner  ========== */
.consent-banner {
  position: fixed;
  bottom: 1rem; left: 1rem; right: 1rem;
  max-width: 720px;
  margin: 0 auto;
  z-index: 200;
  background: #0E0B08;
  color: var(--cream);
  padding: 1.1rem 1.4rem;
  border: 1px solid rgba(212, 175, 111, 0.4);
  border-radius: 4px;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.55);
  transform: translateY(40px);
  opacity: 0;
  transition: transform 0.5s var(--ease-out), opacity 0.5s var(--ease-out);
  font-family: var(--sans);
}
.consent-banner.is-in { transform: translateY(0); opacity: 1; }
.consent-banner.is-hidden { transform: translateY(40px); opacity: 0; pointer-events: none; }
.cb-inner {
  display: flex; align-items: center; gap: 1.4rem;
  flex-wrap: wrap;
}
.cb-text {
  flex: 1;
  font-size: 0.86rem;
  line-height: 1.45;
  color: rgba(244, 239, 228, 0.85);
  min-width: 240px;
}
.cb-text strong {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
  font-size: 1rem;
  margin-right: 0.3em;
}
.cb-link {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-left: 0.4em;
  white-space: nowrap;
}
.cb-link:hover { color: var(--cream); }
.cb-actions {
  display: flex; gap: 0.6rem;
  flex-shrink: 0;
}
.cb-btn {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 0.86rem;
  padding: 0.55em 1.2em;
  border: 1px solid;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
  font-variation-settings: "opsz" 18, "SOFT" 80;
  white-space: nowrap;
}
.cb-deny {
  background: transparent;
  color: rgba(244,239,228,0.65);
  border-color: rgba(244,239,228,0.3);
}
.cb-deny:hover { color: var(--cream); border-color: rgba(244,239,228,0.6); }
.cb-accept {
  background: var(--gold);
  color: #0E0B08;
  border-color: var(--gold);
}
.cb-accept:hover { background: var(--cream); border-color: var(--cream); }

@media (max-width: 640px) {
  .consent-banner { padding: 0.9rem 1rem; bottom: 0.6rem; left: 0.6rem; right: 0.6rem; }
  .cb-inner { gap: 0.9rem; }
  .cb-text { font-size: 0.78rem; }
  .cb-btn { font-size: 0.78rem; padding: 0.4em 1em; }
  .cb-actions { width: 100%; justify-content: flex-end; }
}

/* ==========  Les Roches v2 — refinements  ========== */

/* Tighter spacing between numbered sections on villa pages */
.villa-main > section + section { margin-top: 2.6rem; }
.villa-main .section-label-big {
  padding-top: 1.4rem;
  padding-bottom: 0.8rem;
  margin-bottom: 1.6rem;
}
.villa-main .section-label-big .n { font-size: 4.6rem; }
.villa-main .section-label-big .t { font-size: 1rem; padding-bottom: 1em; }
.villa-main .section-label-big .side { font-size: 0.92rem; padding-bottom: 1.1em; }

/* Casita card — position line + Book now CTA + photo hint overlay */
.casita-pos {
  display: inline-flex; align-items: center; gap: 0.55em;
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 500;
  margin-top: 0.4rem;
}
.casita-pos .dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  display: inline-block;
}

/* Photo hint overlay — appears on hover, signals "click to open" */
.casita-media {
  position: relative;
  display: block;
  cursor: pointer;
  text-decoration: none;
}
.casita-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(14,11,8,0) 60%, rgba(14,11,8,0.55) 100%);
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
  pointer-events: none;
}
.casita-media:hover::after,
.casita-card:hover .casita-media::after { opacity: 1; }

.casita-media-hint {
  position: absolute;
  left: 1rem; bottom: 1rem;
  display: inline-flex; align-items: center; gap: 0.55em;
  padding: 0.45em 0.9em;
  background: rgba(14,11,8,0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(212,175,111,0.4);
  border-radius: 999px;
  color: var(--cream);
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out);
  z-index: 2;
}
.casita-media-hint svg { width: 14px; height: 14px; color: var(--gold); flex-shrink: 0; }
.casita-card:hover .casita-media-hint,
.casita-media:hover .casita-media-hint { opacity: 1; transform: translateY(0); }

/* Book now CTA inside casita card */
.casita-foot { padding-top: 0.9rem; }
.cta-book {
  display: inline-flex; align-items: center; gap: 0.4em;
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: 0.8rem;
  padding: 0.55em 1.1em;
  background: var(--gold);
  color: #0E0B08;
  border: 1px solid var(--gold);
  border-radius: 999px;
  text-decoration: none;
  font-variation-settings: "opsz" 18, "SOFT" 80;
  transition: background 0.3s, color 0.3s, border-color 0.3s, transform 0.3s, box-shadow 0.4s;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.cta-book span:last-child { font-family: var(--sans); font-style: normal; transition: transform 0.4s; display: inline-block; }
.cta-book:hover {
  background: #0E0B08;
  color: var(--gold);
  border-color: #0E0B08;
  transform: translateY(-1px);
  box-shadow: 0 8px 18px -8px rgba(30,20,10,0.5);
}
.cta-book:hover span:last-child { transform: translateX(3px); }

/* Override existing casita-foot .cta to prevent legacy text styling collision */
.casita-foot .cta { display: none; }

/* ==========  Gallery — horizontal scroll rail  ========== */
.gallery-scroll { padding-top: 1rem; }
.gallery-hint {
  display: inline-flex; align-items: center; gap: 0.55em;
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: 0.96rem;
  color: var(--ink-muted);
  margin: 0 0 1.4rem;
  font-variation-settings: "opsz" 18, "SOFT" 80;
}
.gh-icon {
  display: inline-flex; align-items: center;
  width: 32px; height: 32px;
  background: rgba(212,175,111,0.12);
  border: 1px solid rgba(212,175,111,0.3);
  border-radius: 50%;
  justify-content: center;
  color: var(--gold-deep);
  flex-shrink: 0;
}
.gh-icon svg { width: 16px; height: 16px; animation: gh-shimmy 2.4s var(--ease-in-out) infinite; }
@keyframes gh-shimmy {
  0%, 100% { transform: translateX(-2px); }
  50% { transform: translateX(2px); }
}

.gallery-rail {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 0.4rem 0 1.4rem;
  margin: 0 calc(-1 * var(--gutter));
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  scrollbar-width: thin;
  scrollbar-color: var(--gold) transparent;
}
.gallery-rail::-webkit-scrollbar { height: 8px; }
.gallery-rail::-webkit-scrollbar-track { background: var(--hairline); border-radius: 999px; }
.gallery-rail::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 999px; }
.gr-tile {
  flex: 0 0 auto;
  width: clamp(260px, 32vw, 420px);
  aspect-ratio: 4 / 5;
  scroll-snap-align: start;
  overflow: hidden;
  border-radius: 2px;
  position: relative;
  cursor: pointer;
  text-decoration: none;
  background: var(--cream);
}
.gr-tile picture, .gr-tile img {
  width: 100%; height: 100%; display: block;
}
.gr-tile img {
  object-fit: cover;
  transition: transform 1.4s var(--ease-out);
}
.gr-tile:hover img { transform: scale(1.04); }
.gr-mask {
  position: absolute;
  inset: 0;
  background: rgba(14,11,8,0);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.4s var(--ease-out);
  pointer-events: none;
}
.gr-tile:hover .gr-mask { background: rgba(14,11,8,0.35); }
.gr-plus {
  width: 56px; height: 56px;
  background: var(--gold);
  color: #0E0B08;
  font-family: var(--sans);
  font-size: 1.6rem; font-weight: 300;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.4s var(--ease-out), transform 0.5s var(--ease-out);
}
.gr-tile:hover .gr-plus { opacity: 1; transform: scale(1); }

@media (max-width: 720px) {
  .gr-tile { width: 70vw; }
  .gallery-hint { font-size: 0.86rem; }
}

/* ==========  Location v2 — embedded map  ========== */
.villa-location-v2 {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
  align-items: stretch;
  margin-top: 1rem;
}
.loc-map-wrap {
  position: relative;
  min-height: 380px;
  border-radius: 3px;
  overflow: hidden;
  background: var(--cream);
  border: 1px solid var(--hairline);
  box-shadow: 0 20px 40px -25px rgba(30,20,10,0.18);
}
.loc-map-wrap iframe {
  filter: saturate(0.85) contrast(1.02);
}
.loc-open {
  position: absolute;
  bottom: 14px; right: 14px;
  display: inline-flex; align-items: center; gap: 0.45em;
  background: var(--gold);
  color: #0E0B08;
  font-family: var(--serif); font-style: italic;
  font-size: 0.82rem;
  padding: 0.55em 1.1em;
  border-radius: 999px;
  text-decoration: none;
  font-variation-settings: "opsz" 18, "SOFT" 80;
  box-shadow: 0 8px 18px -6px rgba(212,175,111,0.55);
  transition: background 0.3s, color 0.3s, transform 0.3s;
  z-index: 2;
}
.loc-open span:last-child { font-family: var(--sans); font-style: normal; }
.loc-open:hover { background: #0E0B08; color: var(--gold); transform: translateY(-2px); }

.loc-text {
  background: var(--warm);
  border: 1px solid rgba(212,175,111,0.3);
  border-radius: 3px;
  padding: 2rem 1.8rem;
  display: flex; flex-direction: column;
  position: relative;
}
.loc-text::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 56px; height: 2px;
  background: var(--gold);
}
.loc-eyebrow {
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 500;
  margin-bottom: 0.8rem;
}
.loc-addr {
  font-family: var(--serif); font-weight: 400;
  font-size: 1.18rem;
  line-height: 1.3;
  color: var(--ink);
  margin: 0 0 1.4rem;
  font-variation-settings: "opsz" 36, "SOFT" 70;
}
.loc-divider {
  height: 1px;
  background: linear-gradient(to right, var(--gold) 0%, var(--gold) 30%, transparent 30%, transparent 100%);
  margin: 0.4rem 0 1.2rem;
}
.loc-text p {
  font-family: var(--serif); font-weight: 300;
  font-size: 0.96rem; line-height: 1.6;
  color: var(--ink-muted);
  margin: 0;
  font-variation-settings: "opsz" 18, "SOFT" 70;
}

@media (max-width: 800px) {
  .villa-location-v2 { grid-template-columns: 1fr; }
  .loc-map-wrap { min-height: 320px; }
}

/* ==========  Les Roches v3 — video hero + centering + booking emphasis  ========== */

/* Hero video (replaces static image) */
.villa-hero-video { position: relative; overflow: hidden; }
.villa-hero-vid {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  z-index: 0;
}
.villa-hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(14,11,8,0.18) 0%, rgba(14,11,8,0.05) 35%, rgba(14,11,8,0.55) 100%);
  z-index: 1;
  pointer-events: none;
}
.villa-hero-video .subhero-caption { position: relative; z-index: 2; }

/* Casita card — center the position + specs + foot */
.casita-body {
  text-align: center;
  align-items: center;
}
.casita-head {
  width: 100%;
  justify-content: center;
}
.casita-pos {
  justify-content: center;
}
.casita-specs {
  justify-content: center;
}
.casita-foot {
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 0.7rem;
  width: 100%;
}
.casita-foot .from {
  text-align: center;
}

/* What's included — recentre cards content with generous padding */
.fl-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-top: 1rem;
}
.fl-col {
  background: var(--cream);
  border: 1px solid var(--hairline);
  border-radius: 3px;
  padding: 2.2rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  text-align: left;
  position: relative;
  transition: border-color 0.4s var(--ease-out), transform 0.4s var(--ease-out), box-shadow 0.5s;
}
.fl-col:hover {
  border-color: rgba(212,175,111,0.45);
  transform: translateY(-3px);
  box-shadow: 0 16px 32px -18px rgba(30,20,10,0.18);
}
.fl-col h3 {
  font-family: var(--serif); font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.2;
  margin: 0 0 1.2rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(212,175,111,0.35);
  color: var(--ink);
  font-variation-settings: "opsz" 36, "SOFT" 70;
  letter-spacing: -0.005em;
}
.fl-col ul {
  list-style: none;
  margin: 0; padding: 0;
  display: flex; flex-direction: column;
  gap: 0.7rem;
}
.fl-col ul li {
  font-family: var(--serif); font-weight: 300;
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--ink);
  padding-left: 1.4em;
  position: relative;
  font-variation-settings: "opsz" 18, "SOFT" 70;
}
.fl-col ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.65em;
  width: 10px; height: 1px;
  background: var(--gold);
}
@media (max-width: 800px) {
  .fl-grid { grid-template-columns: 1fr; }
}

/* Booking sidebar — make it stand out */
.villa-aside .booking-card {
  position: relative;
  border: 1px solid rgba(212,175,111,0.55);
  box-shadow:
    0 1px 0 rgba(212,175,111,0.3) inset,
    0 30px 60px -25px rgba(30,20,10,0.28),
    0 12px 28px -12px rgba(30,20,10,0.16);
  background: var(--cream);
  padding-top: 2rem;
  border-radius: 4px;
  overflow: hidden;
}
.villa-aside .booking-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: var(--gold);
}
.villa-aside .booking-card::after {
  content: "Book direct";
  position: absolute;
  top: -1px; right: 1.6rem;
  background: var(--gold);
  color: #0E0B08;
  font-family: var(--sans);
  font-size: 0.58rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 0.3em 0.9em 0.32em;
  border-radius: 0 0 4px 4px;
  pointer-events: none;
}
.bc-title {
  font-family: var(--serif); font-weight: 400;
  font-size: 1.35rem !important;
  line-height: 1.15;
  margin-top: 0.4rem;
}
.bc-cta {
  background: var(--gold);
  color: #0E0B08;
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: 1rem;
  padding: 1em 1.4em;
  border: 1px solid var(--gold);
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.4s, color 0.4s, transform 0.3s, box-shadow 0.4s;
  font-variation-settings: "opsz" 24, "SOFT" 80;
  margin-top: 0.6rem;
  box-shadow: 0 10px 22px -10px rgba(212,175,111,0.55);
}
.bc-cta:hover {
  background: #0E0B08;
  color: var(--gold);
  border-color: #0E0B08;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -10px rgba(30,20,10,0.45);
}

/* Location — subtle region label under coords */
.loc-region {
  display: block;
  margin-top: 0.5em;
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 500;
}

/* ==========  Villas catalog — editorial filters (luxe)  ========== */
/*
   Editorial bar — no chrome, no rounded inputs, no badges.
   Each cell is a column with a small caps eyebrow + serif italic value.
   Cells are separated by thin vertical hairlines, sit on a transparent /
   warm background, and the whole bar reads like a magazine masthead.
*/
.filters-v2 {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr auto;
  align-items: stretch;
  max-width: 920px;
  margin: 1rem auto 3.4rem;
  padding: 0;
  background: transparent;
  border: 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  border-radius: 0;
  box-shadow: none;
  position: relative;
  overflow: visible;
}
.filters-v2::before { content: none; }

/* Each cell behaves as a clickable area */
.filters-v2 .filter {
  display: flex; flex-direction: column;
  justify-content: center;
  padding: 1.4rem 1.6rem 1.5rem;
  border-left: 1px solid var(--hairline);
  background: transparent;
  position: relative;
  cursor: pointer;
  transition: background 0.4s var(--ease-out);
  min-width: 0;
}
.filters-v2 .filter:first-child { border-left: 0; }
.filters-v2 .filter:hover { background: rgba(212, 175, 111, 0.06); }

/* Animated gold underline on hover/focus-within (editorial accent) */
.filters-v2 .filter::after {
  content: "";
  position: absolute;
  left: 50%; bottom: -1px;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.5s var(--ease-out), left 0.5s var(--ease-out);
}
.filters-v2 .filter:hover::after,
.filters-v2 .filter:focus-within::after {
  width: 80%; left: 10%;
}

/* Eyebrow (small caps spaced) */
.filters-v2 .filter label {
  font-family: var(--sans);
  font-size: 0.56rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 500;
  margin-bottom: 0.7rem;
  cursor: pointer;
  transition: color 0.3s;
}
.filters-v2 .filter:hover label,
.filters-v2 .filter:focus-within label { color: var(--gold-deep); }

/* Value — serif italic, larger, line below for readability */
.filters-v2 .filter input,
.filters-v2 .filter select {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 1.05rem;
  letter-spacing: 0.005em;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0.4rem 0;
  min-height: 44px;
  width: 100%;
  cursor: pointer;
  font-variation-settings: "opsz" 24, "SOFT" 80;
  outline: none;
  text-overflow: ellipsis;
}
@media (max-width: 720px) {
  .filters-v2 .filter input,
  .filters-v2 .filter select { font-size: 16px; min-height: 48px; }
}
.filters-v2 .filter input::placeholder {
  color: var(--ink-muted);
  font-style: italic;
  opacity: 0.7;
}
.filters-v2 .filter select {
  appearance: none; -webkit-appearance: none; -moz-appearance: none;
  padding-right: 1.4em;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--gold-deep) 50%),
    linear-gradient(135deg, var(--gold-deep) 50%, transparent 50%);
  background-position:
    calc(100% - 0.5em) 0.55em,
    calc(100% - 0.25em) 0.55em;
  background-size: 4px 4px, 4px 4px;
  background-repeat: no-repeat;
}

/* Dates field — wider + tiny calendar icon next to the eyebrow */
.filter-dates {
  position: relative;
}
.filter-dates label::before {
  content: "";
  display: inline-block;
  width: 10px; height: 10px;
  background: var(--gold);
  border-radius: 50%;
  margin-right: 0.7em;
  vertical-align: middle;
  opacity: 0.6;
  transition: opacity 0.3s, transform 0.5s var(--ease-out);
}
.filter-dates:hover label::before,
.filter-dates:focus-within label::before {
  opacity: 1;
  transform: scale(1.2);
}
.filter-dates input { cursor: pointer; }
.filter-dates-icon { display: none; }  /* hide old SVG icon — we use the dot instead */

/* Reset link — italic, far right, thin gold underline on hover */
.filters-v2 .filter-reset {
  display: inline-flex; align-items: center;
  font-family: var(--serif); font-style: italic;
  font-weight: 400;
  font-size: 0.86rem;
  color: var(--ink-muted);
  padding: 0 1.6rem;
  text-decoration: none;
  border-left: 1px solid var(--hairline);
  font-variation-settings: "opsz" 18, "SOFT" 80;
  transition: color 0.3s;
}
.filters-v2 .filter-reset:hover { color: var(--gold-deep); }

@media (max-width: 720px) {
  .filters-v2 {
    grid-template-columns: 1fr;
    border-bottom: 0;
  }
  .filters-v2 .filter {
    border-left: 0;
    border-bottom: 1px solid var(--hairline);
    padding: 1rem 0.4rem;
  }
  .filters-v2 .filter-reset {
    border-left: 0;
    padding: 1rem 0.4rem;
    justify-content: center;
  }
}

/* Flatpickr — match brand */
.flatpickr-calendar {
  font-family: var(--sans) !important;
  border: 1px solid rgba(212,175,111,0.5) !important;
  border-radius: 6px !important;
  box-shadow: 0 24px 48px -20px rgba(30,20,10,0.25) !important;
  background: var(--cream) !important;
}
.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected.inRange,
.flatpickr-day.startRange.inRange,
.flatpickr-day.endRange.inRange {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
  color: #0E0B08 !important;
}
.flatpickr-day.inRange {
  background: rgba(212, 175, 111, 0.18) !important;
  border-color: rgba(212, 175, 111, 0.18) !important;
  box-shadow: -5px 0 0 rgba(212, 175, 111, 0.18), 5px 0 0 rgba(212, 175, 111, 0.18) !important;
  color: var(--ink) !important;
}
.flatpickr-day:hover {
  background: rgba(212, 175, 111, 0.25) !important;
  border-color: rgba(212, 175, 111, 0.25) !important;
}
.flatpickr-months .flatpickr-month,
.flatpickr-current-month,
.flatpickr-monthDropdown-months,
.flatpickr-weekday {
  color: var(--ink) !important;
  font-weight: 500;
}
.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month {
  color: var(--gold-deep) !important;
  fill: var(--gold-deep) !important;
}

/* ===========================================
   ADMIN PANEL — login, dashboard, shell
   =========================================== */

/* Reset for admin pages */
body.admin-body {
  background: #F8F4EA;
  color: var(--ink);
  font-family: var(--sans);
  cursor: default;
}
body.admin-body .cursor,
body.admin-body .cursor-ring,
body.admin-body .topbar,
body.admin-body .nav,
body.admin-body .nav-drawer,
body.admin-body .footer,
body.admin-body .wa-widget,
body.admin-body .consent-banner { display: none !important; }

/* ---------- ADMIN LOGIN ---------- */
.adm-login {
  min-height: 100vh;
  min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #0E0B08 0%, #1a1410 50%, #0E0B08 100%);
  padding: 2rem 1.4rem;
  position: relative;
  overflow: hidden;
}
.adm-login::before {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 900px; height: 900px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,111,0.08) 0%, transparent 60%);
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.adm-login-card {
  position: relative;
  width: 100%;
  max-width: 460px;
  background: rgba(244, 239, 228, 0.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(212, 175, 111, 0.35);
  border-radius: 4px;
  padding: 3rem 2.6rem 2.6rem;
  box-shadow: 0 40px 80px -30px rgba(0,0,0,0.6);
}
.adm-login-logo {
  display: block;
  width: 90px;
  margin: 0 auto 1.6rem;
}
.adm-login-title {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 1.6rem;
  color: var(--cream);
  text-align: center;
  margin: 0 0 0.4rem;
  font-variation-settings: "opsz" 36, "SOFT" 80;
}
.adm-login-sub {
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  margin-bottom: 2rem;
}
.adm-login-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 1.8rem;
  border-bottom: 1px solid rgba(244,239,228,0.15);
}
.adm-login-tab {
  background: transparent;
  border: 0;
  border-bottom: 2px solid transparent;
  padding: 0.8em 0.4em;
  color: rgba(244,239,228,0.55);
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.3s, border-color 0.3s;
}
.adm-login-tab.is-active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.adm-login-form { display: flex; flex-direction: column; gap: 1.1rem; }
.adm-field { display: flex; flex-direction: column; gap: 0.4rem; }
.adm-field label {
  font-family: var(--sans);
  font-size: 0.58rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(244, 239, 228, 0.55);
  font-weight: 500;
}
.adm-field input,
.adm-field select,
.adm-field textarea {
  background: rgba(14, 11, 8, 0.4);
  border: 1px solid rgba(244, 239, 228, 0.18);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 0.92rem;
  padding: 0.75em 1em;
  border-radius: 3px;
  transition: border-color 0.3s, background 0.3s;
}
.adm-field input:focus,
.adm-field select:focus,
.adm-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(14, 11, 8, 0.6);
}
.adm-login-cta {
  background: var(--gold); color: #0E0B08;
  font-family: var(--serif); font-style: italic;
  font-size: 1rem;
  padding: 0.95em 1.4em;
  border: 1px solid var(--gold);
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.4s, color 0.4s, transform 0.3s, box-shadow 0.4s;
  margin-top: 0.4rem;
  font-variation-settings: "opsz" 24, "SOFT" 80;
  box-shadow: 0 10px 22px -10px rgba(212,175,111,0.5);
}
.adm-login-cta:hover {
  background: var(--cream);
  border-color: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -10px rgba(244,239,228,0.4);
}
.adm-login-foot {
  margin-top: 1.6rem;
  text-align: center;
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(244, 239, 228, 0.4);
}
.adm-login-foot a { color: var(--gold); text-decoration: none; }
.adm-login-error {
  margin-top: 0.4rem;
  padding: 0.6rem 0.9rem;
  border: 1px solid rgba(220, 80, 80, 0.4);
  background: rgba(220, 80, 80, 0.08);
  color: #f4cccc;
  font-family: var(--sans);
  font-size: 0.78rem;
  border-radius: 4px;
}

/* ---------- ADMIN MODAL (new booking, expense, etc.) ---------- */
.adm-modal {
  position: fixed; inset: 0;
  background: rgba(14, 11, 8, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  z-index: 200;
  padding: 1.5rem;
}
.adm-modal[hidden] { display: none !important; }
#nb-delete[hidden], button[hidden] { display: none !important; }
.adm-modal-card {
  background: #fff;
  border-radius: 6px;
  padding: 2rem;
  width: 100%;
  max-width: 640px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px -10px rgba(0,0,0,0.3);
}
.adm-modal-head {
  display: flex; align-items: flex-start; justify-content: space-between;
  margin-bottom: 1.4rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--hairline);
}
.adm-modal-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.4rem;
  font-variation-settings: 'opsz' 36, 'SOFT' 70;
  margin: 0.2rem 0 0;
}
.adm-modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.adm-modal-error {
  margin-top: 0.8rem;
  padding: 0.6rem 0.9rem;
  border: 1px solid rgba(220, 80, 80, 0.4);
  background: rgba(220, 80, 80, 0.08);
  color: #a33;
  font-family: var(--sans);
  font-size: 0.78rem;
  border-radius: 4px;
}
@media (max-width: 600px) {
  .adm-modal-grid { grid-template-columns: 1fr; }
}

/* ---------- ADMIN SHELL (sidebar + topbar + main) ---------- */
.adm-shell {
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: 100vh; min-height: 100svh;
}
/* Sidebar */
.adm-side {
  background: #0E0B08;
  color: rgba(244, 239, 228, 0.7);
  padding: 1.6rem 0;
  position: sticky;
  top: 0;
  height: 100vh; height: 100svh;
  overflow-y: auto;
  border-right: 1px solid rgba(212,175,111,0.18);
}
.adm-side-logo {
  display: flex; align-items: center;
  padding: 0 1.4rem 1.4rem;
  gap: 0.6rem;
  border-bottom: 1px solid rgba(244,239,228,0.08);
}
.adm-side-logo img { height: 38px; width: auto; }
.adm-side-logo-text {
  display: flex; flex-direction: column;
}
.adm-side-logo-mark {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 0.94rem;
  letter-spacing: 0.18em;
  color: var(--cream);
}
.adm-side-logo-sub {
  font-family: var(--sans);
  font-size: 0.52rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}
.adm-side-section {
  font-family: var(--sans);
  font-size: 0.56rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(244,239,228,0.4);
  padding: 1.4rem 1.4rem 0.6rem;
  font-weight: 500;
}
.adm-side-link {
  display: flex; align-items: center;
  gap: 0.7rem;
  padding: 0.7em 1.4rem;
  font-family: var(--sans);
  font-size: 0.86rem;
  font-weight: 400;
  color: rgba(244,239,228,0.65);
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
  position: relative;
  border-left: 2px solid transparent;
}
.adm-side-link:hover {
  background: rgba(212,175,111,0.06);
  color: var(--cream);
}
.adm-side-link.is-active {
  color: var(--gold);
  background: rgba(212,175,111,0.1);
  border-left-color: var(--gold);
}
.adm-side-link svg { width: 16px; height: 16px; flex-shrink: 0; }
.adm-side-foot {
  position: absolute;
  bottom: 1rem; left: 0; right: 0;
  padding: 0 1.4rem;
}
.adm-side-user {
  display: flex; align-items: center; gap: 0.7rem;
  padding: 0.6em 0;
  border-top: 1px solid rgba(244,239,228,0.08);
}
.adm-side-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--gold);
  color: #0E0B08;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--sans); font-size: 0.7rem;
  font-weight: 500; letter-spacing: 0.05em;
  flex-shrink: 0;
}
.adm-side-user-text {
  font-family: var(--sans);
  font-size: 0.76rem;
  color: var(--cream);
  flex-grow: 1;
}
.adm-side-user-text small {
  display: block;
  font-size: 0.62rem;
  color: rgba(244,239,228,0.5);
  letter-spacing: 0.12em;
  margin-top: 1px;
}
.adm-side-logout {
  color: rgba(244,239,228,0.5);
  font-size: 0.7rem;
  text-decoration: none;
  transition: color 0.3s;
}
.adm-side-logout:hover { color: var(--gold); }

/* Main content area */
.adm-main {
  padding: 0;
  background: #F8F4EA;
  min-height: 100vh; min-height: 100svh;
}
.adm-topbar {
  background: var(--cream);
  border-bottom: 1px solid var(--hairline);
  padding: 1.1rem 2rem;
  display: flex; justify-content: space-between; align-items: center;
  position: sticky; top: 0;
  z-index: 10;
  backdrop-filter: blur(8px);
}
.adm-topbar-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.4rem;
  color: var(--ink);
  font-variation-settings: "opsz" 36, "SOFT" 70;
  letter-spacing: -0.005em;
}
.adm-topbar-title em { font-style: italic; color: var(--gold-deep); }
.adm-topbar-actions {
  display: flex; align-items: center; gap: 1rem;
}
.adm-search {
  position: relative;
}
.adm-search input {
  background: #FBF7EE;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  padding: 0.5em 1em 0.5em 2.4em;
  width: 240px;
  font-family: var(--sans); font-size: 0.86rem;
  color: var(--ink);
}
.adm-search input:focus {
  outline: none; border-color: var(--gold);
  background: var(--cream);
}
.adm-search svg {
  position: absolute;
  left: 0.85em; top: 50%;
  transform: translateY(-50%);
  width: 14px; height: 14px;
  color: var(--ink-muted);
}
.adm-bell {
  position: relative;
  background: transparent;
  border: 1px solid var(--hairline);
  border-radius: 50%;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: var(--ink);
  transition: background 0.3s, border-color 0.3s;
}
.adm-bell:hover { background: var(--cream); border-color: var(--gold); }
.adm-bell svg { width: 16px; height: 16px; }
.adm-bell-dot {
  position: absolute;
  top: 6px; right: 8px;
  width: 7px; height: 7px;
  background: #e06c5a;
  border-radius: 50%;
  border: 2px solid var(--cream);
}

/* Main content padding */
.adm-content { padding: 2.2rem 2.4rem 4rem; max-width: 1400px; margin: 0 auto; }

/* KPI cards row */
.adm-kpi-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin-bottom: 2.4rem;
}
.adm-kpi {
  background: var(--cream);
  border: 1px solid var(--hairline);
  border-radius: 4px;
  padding: 1.4rem 1.4rem 1.3rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s, border-color 0.4s;
}
.adm-kpi:hover {
  transform: translateY(-2px);
  border-color: rgba(212,175,111,0.45);
  box-shadow: 0 14px 28px -16px rgba(30,20,10,0.18);
}
.adm-kpi-lab {
  font-family: var(--sans);
  font-size: 0.6rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 500;
  margin-bottom: 0.6rem;
}
.adm-kpi-val {
  font-family: var(--serif); font-weight: 400;
  font-size: 2.2rem;
  line-height: 1;
  color: var(--ink);
  font-variation-settings: "opsz" 60, "SOFT" 60;
  letter-spacing: -0.01em;
}
.adm-kpi-val small {
  font-size: 0.5em;
  font-weight: 300;
  color: var(--ink-muted);
  font-style: italic;
  margin-left: 0.2em;
}
.adm-kpi-trend {
  margin-top: 0.7rem;
  font-family: var(--sans); font-size: 0.7rem;
  color: var(--gold-deep);
  letter-spacing: 0.04em;
}
.adm-kpi-trend.is-down { color: #b14a3a; }

/* Cards & section heads */
.adm-card {
  background: var(--cream);
  border: 1px solid var(--hairline);
  border-radius: 4px;
  padding: 1.6rem 1.6rem 1.4rem;
  margin-bottom: 1.4rem;
}
.adm-card-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 1.2rem;
}
.adm-card-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.14rem;
  color: var(--ink);
  margin: 0;
  font-variation-settings: "opsz" 24, "SOFT" 70;
}
.adm-card-title em { font-style: italic; color: var(--gold-deep); margin-right: 0.2em; }
.adm-card-action {
  font-family: var(--serif); font-style: italic;
  font-size: 0.86rem;
  color: var(--gold-deep);
  text-decoration: none;
  cursor: pointer;
}
.adm-card-action:hover { color: var(--gold); }

/* Buttons */
.adm-btn {
  display: inline-flex; align-items: center; gap: 0.45em;
  padding: 0.55em 1.1em;
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  font-weight: 500;
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--hairline);
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.3s, border-color 0.3s, color 0.3s, transform 0.3s;
}
.adm-btn:hover { border-color: var(--gold); color: var(--gold-deep); }
.adm-btn-gold {
  background: var(--gold); color: #0E0B08; border-color: var(--gold);
}
.adm-btn-gold:hover {
  background: #0E0B08; color: var(--gold); border-color: #0E0B08;
  transform: translateY(-1px);
}

/* CALENDAR (multi-villa) */
.adm-calendar {
  overflow-x: auto;
  scrollbar-color: var(--gold) transparent;
  scrollbar-width: thin;
}
.adm-calendar table {
  width: 100%;
  border-collapse: collapse;
  min-width: 1100px;
}
.adm-calendar thead th {
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 500;
  padding: 0.7rem 0.2rem;
  border-bottom: 1px solid var(--hairline);
  text-align: center;
  position: sticky;
  top: 0;
  background: var(--cream);
}
.adm-calendar thead th:first-child {
  text-align: left;
  padding-left: 0.6rem;
  min-width: 140px;
}
.adm-calendar thead th .day-num {
  display: block;
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: 0;
}
.adm-calendar thead th .day-name {
  display: block;
  font-size: 0.52rem;
  margin-top: 2px;
}
.adm-calendar thead th.is-today .day-num { color: var(--gold-deep); }
.adm-calendar tbody td {
  border: 1px solid rgba(212,175,111,0.1);
  padding: 0;
  height: 44px;
  background: #FBF7EE;
  position: relative;
}
.adm-calendar tbody tr td:first-child {
  font-family: var(--serif);
  font-size: 0.95rem;
  font-weight: 400;
  padding: 0 0.8rem;
  background: var(--cream);
  border-right: 2px solid var(--hairline);
  color: var(--ink);
}
.adm-calendar tbody tr td:first-child em {
  font-style: italic;
  color: var(--gold-deep);
  font-size: 0.7em;
  display: block;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 1px;
}
/* Booking strips — span across days */
.adm-booking {
  position: absolute;
  top: 6px; bottom: 6px;
  left: 4px; right: 4px;
  border-radius: 3px;
  padding: 0.2em 0.5em;
  font-family: var(--sans);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  display: flex; align-items: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: pointer;
}
.adm-booking.airbnb { background: #FF5A5F22; color: #c4393f; border-left: 3px solid #FF5A5F; }
.adm-booking.booking { background: #003B9522; color: #003B95; border-left: 3px solid #003B95; }
.adm-booking.direct { background: #D4AF6F33; color: #8a6a3d; border-left: 3px solid var(--gold); }
.adm-booking.owner { background: #0E0B0815; color: #0E0B08; border-left: 3px solid #0E0B08; }
.adm-booking.pending { background: #FFC10722; color: #b07d05; border-left: 3px solid #FFC107; }

.adm-cal-legend {
  display: flex; gap: 1.4rem;
  margin-top: 0.9rem;
  font-family: var(--sans); font-size: 0.7rem;
  color: var(--ink-muted);
  flex-wrap: wrap;
}
.adm-cal-legend span { display: inline-flex; align-items: center; gap: 0.4em; }
.adm-cal-legend .lg-dot {
  width: 10px; height: 10px;
  border-radius: 2px;
  display: inline-block;
}
.adm-cal-legend .lg-dot.airbnb { background: #FF5A5F; }
.adm-cal-legend .lg-dot.booking { background: #003B95; }
.adm-cal-legend .lg-dot.direct { background: var(--gold); }
.adm-cal-legend .lg-dot.owner { background: #0E0B08; }
.adm-cal-legend .lg-dot.pending { background: #FFC107; }

/* Tables (CRM, etc) */
.adm-table {
  width: 100%;
  border-collapse: collapse;
}
.adm-table thead th {
  font-family: var(--sans);
  font-size: 0.6rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 500;
  text-align: left;
  padding: 0.7rem 0.6rem;
  border-bottom: 1px solid var(--hairline);
}
.adm-table tbody tr {
  transition: background 0.3s;
}
.adm-table tbody tr:hover { background: rgba(212,175,111,0.06); }
.adm-table tbody td {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 0.92rem;
  color: var(--ink);
  padding: 0.9rem 0.6rem;
  border-bottom: 1px solid rgba(212,175,111,0.1);
  font-variation-settings: "opsz" 18, "SOFT" 60;
}
.adm-table tbody td:first-child {
  font-style: italic;
  color: var(--gold-deep);
  font-weight: 400;
}
.adm-tag {
  display: inline-block;
  padding: 0.18em 0.7em;
  font-family: var(--sans);
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 999px;
  font-weight: 500;
}
.adm-tag.new { background: rgba(212,175,111,0.18); color: var(--gold-deep); }
.adm-tag.replied { background: rgba(106,170,92,0.18); color: #3d7a2d; }
.adm-tag.closed { background: rgba(14,11,8,0.08); color: var(--ink-muted); }
.adm-tag.confirmed { background: rgba(106,170,92,0.18); color: #3d7a2d; }
.adm-tag.pending { background: rgba(255,193,7,0.2); color: #b07d05; }

/* Price editor table */
.adm-price-row {
  display: grid;
  grid-template-columns: 1fr 120px 120px 120px 80px;
  gap: 0.8rem;
  align-items: center;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--hairline);
}
.adm-price-row:last-child { border-bottom: 0; }
.adm-price-row .lbl {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  color: var(--ink);
  font-size: 0.96rem;
}
.adm-price-row input {
  background: #FBF7EE;
  border: 1px solid var(--hairline);
  border-radius: 3px;
  padding: 0.5em 0.7em;
  font-family: var(--sans); font-size: 0.86rem;
  color: var(--ink);
  width: 100%;
}
.adm-price-row input:focus { outline: none; border-color: var(--gold); background: var(--cream); }
.adm-price-row .ccy { color: var(--ink-muted); font-size: 0.72rem; }

/* Charts placeholder */
.adm-chart {
  height: 220px;
  background: linear-gradient(180deg, rgba(212,175,111,0.04), transparent);
  border-radius: 3px;
  position: relative;
  display: flex;
  align-items: end;
  gap: 4px;
  padding: 0 0.4rem;
}
.adm-chart-bar {
  flex: 1;
  background: linear-gradient(to top, var(--gold) 0%, rgba(212,175,111,0.3) 100%);
  border-radius: 2px 2px 0 0;
  position: relative;
  min-height: 6px;
  transition: opacity 0.3s;
}
.adm-chart-bar:hover { opacity: 0.7; }
.adm-chart-axis {
  display: flex;
  justify-content: space-between;
  margin-top: 0.4rem;
  font-family: var(--sans); font-size: 0.6rem;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-muted);
}

/* 2 column layouts */
.adm-grid-2 {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1.4rem;
  align-items: start;
}
@media (max-width: 1100px) {
  .adm-grid-2 { grid-template-columns: 1fr; }
  .adm-shell { grid-template-columns: 1fr; }
  .adm-side { position: static; height: auto; }
  .adm-kpi-row { grid-template-columns: 1fr 1fr; }
}

/* ---------- OWNER PORTAL ---------- */
body.owner-body { background: var(--bg); color: var(--ink); font-family: var(--sans); cursor: default; }
body.owner-body .cursor, body.owner-body .cursor-ring,
body.owner-body .topbar, body.owner-body .nav, body.owner-body .nav-drawer,
body.owner-body .footer, body.owner-body .wa-widget,
body.owner-body .consent-banner { display: none !important; }

.own-shell {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem var(--gutter);
}
.own-topbar {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 1.4rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--hairline);
}
.own-topbar-logo { display: flex; align-items: center; gap: 0.8rem; }
.own-topbar-logo img { height: 40px; }
.own-topbar-logo-text {
  font-family: var(--serif); font-style: italic;
  font-size: 1rem;
  color: var(--ink);
}
.own-topbar-logo-text small {
  display: block;
  font-family: var(--sans);
  font-size: 0.56rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-top: 2px;
  font-style: normal;
}
.own-topbar-user {
  display: flex; align-items: center; gap: 0.7rem;
  font-family: var(--sans); font-size: 0.82rem;
}
.own-topbar-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--gold);
  color: #0E0B08;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 500; letter-spacing: 0.05em;
}
.own-topbar-logout {
  margin-left: 1rem;
  color: var(--ink-muted); font-size: 0.7rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  text-decoration: none;
  transition: color 0.3s;
}
.own-topbar-logout:hover { color: var(--gold); }

.own-hero {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 2rem;
  margin-bottom: 2.6rem;
  align-items: end;
}
.own-hero h1 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.1;
  margin: 0 0 0.4rem;
  color: var(--ink);
  font-variation-settings: "opsz" 60, "SOFT" 60;
  letter-spacing: -0.01em;
}
.own-hero h1 em { font-style: italic; color: var(--gold-deep); }
.own-hero-sub {
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: 1.04rem;
  color: var(--ink-muted);
  margin: 0;
  font-variation-settings: "opsz" 18, "SOFT" 80;
}
.own-hero-villa {
  text-align: right;
  font-family: var(--sans);
}
.own-hero-villa-img {
  width: 100%; aspect-ratio: 16/10;
  object-fit: cover;
  border-radius: 3px;
  display: block;
  margin-bottom: 0.6rem;
}
.own-hero-villa-name {
  font-family: var(--serif); font-style: italic;
  font-size: 1rem; color: var(--ink);
}

.own-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1.4rem;
  margin-bottom: 1.4rem;
}
@media (max-width: 900px) {
  .own-hero { grid-template-columns: 1fr; }
  .own-hero-villa { text-align: left; }
  .own-grid { grid-template-columns: 1fr; }
}

/* Owner calendar — 2-month grid */
.own-cal {
  background: var(--cream);
  border: 1px solid var(--hairline);
  border-radius: 4px;
  padding: 1.4rem;
}
.own-cal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
  margin-top: 1rem;
}
.own-cal-month-title {
  font-family: var(--serif); font-style: italic;
  font-size: 1rem; color: var(--ink);
  margin-bottom: 0.7rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--hairline);
}
.own-cal-month {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px;
}
.own-cal-month .h {
  font-family: var(--sans); font-size: 0.54rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-muted);
  text-align: center;
  padding: 0.3em 0;
}
.own-cal-month .d {
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--sans); font-size: 0.78rem;
  color: var(--ink);
  background: #FBF7EE;
  border-radius: 2px;
  cursor: default;
  transition: background 0.3s;
}
.own-cal-month .d:hover { background: rgba(212,175,111,0.15); }
.own-cal-month .d.empty { background: transparent; cursor: default; }
.own-cal-month .d.booked {
  background: var(--gold);
  color: #0E0B08;
  font-weight: 500;
}
.own-cal-month .d.owner-block {
  background: #0E0B08;
  color: var(--gold);
}

/* Revenue card */
.own-rev {
  background: linear-gradient(135deg, #0E0B08 0%, #1a1410 100%);
  color: var(--cream);
  border: 1px solid rgba(212,175,111,0.4);
  border-radius: 4px;
  padding: 1.6rem;
  position: relative;
  overflow: hidden;
}
.own-rev::before {
  content: ""; position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,111,0.15), transparent 70%);
}
.own-rev-month {
  font-family: var(--sans); font-size: 0.6rem;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.own-rev-amount {
  font-family: var(--serif); font-weight: 400;
  font-size: 2.6rem;
  color: var(--cream);
  line-height: 1;
  font-variation-settings: "opsz" 60, "SOFT" 60;
}
.own-rev-amount small {
  font-style: italic; font-size: 0.4em; color: var(--gold);
  margin-left: 0.2em;
}
.own-rev-detail {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(244,239,228,0.15);
  display: flex; flex-direction: column; gap: 0.5rem;
}
.own-rev-row {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--sans); font-size: 0.78rem;
  color: rgba(244,239,228,0.8);
}
.own-rev-row strong {
  font-family: var(--serif); font-weight: 400;
  color: var(--cream);
}
.own-rev-cta {
  margin-top: 1.2rem;
  display: inline-flex; align-items: center; gap: 0.45em;
  padding: 0.55em 1.1em;
  background: var(--gold);
  color: #0E0B08;
  border-radius: 999px;
  font-family: var(--serif); font-style: italic;
  font-size: 0.82rem;
  text-decoration: none;
  transition: background 0.3s, color 0.3s, transform 0.3s;
}
.own-rev-cta:hover { background: var(--cream); transform: translateY(-1px); }

/* Maintenance log */
.own-mn-row {
  display: flex; align-items: center; gap: 1rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(212,175,111,0.12);
}
.own-mn-row:last-child { border-bottom: 0; }
.own-mn-thumb {
  width: 56px; height: 56px;
  border-radius: 3px;
  background-size: cover; background-position: center;
  background-color: #FBF7EE;
  flex-shrink: 0;
}
.own-mn-text {
  flex: 1;
}
.own-mn-title {
  font-family: var(--serif); font-weight: 400;
  font-size: 0.95rem; color: var(--ink);
  margin: 0;
}
.own-mn-date {
  font-family: var(--sans); font-size: 0.66rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-muted);
  margin-top: 2px;
}

/* Reports list */
.own-report-row {
  display: flex; align-items: center; gap: 1rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(212,175,111,0.12);
}
.own-report-row:last-child { border-bottom: 0; }
.own-report-icon {
  width: 36px; height: 36px;
  background: rgba(212,175,111,0.12);
  color: var(--gold-deep);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.own-report-icon svg { width: 16px; height: 16px; }
.own-report-text { flex: 1; }
.own-report-name {
  font-family: var(--serif); font-weight: 400;
  font-size: 0.92rem;
}
.own-report-meta {
  font-family: var(--sans); font-size: 0.66rem;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-muted);
  margin-top: 2px;
}
.own-report-dl {
  font-family: var(--serif); font-style: italic;
  font-size: 0.86rem;
  color: var(--gold-deep);
  text-decoration: none;
}
.own-report-dl:hover { color: var(--gold); }

/* Block dates form */
.own-block {
  background: var(--cream);
  border: 1px solid rgba(212,175,111,0.4);
  border-radius: 4px;
  padding: 1.4rem;
  position: relative;
}
.own-block::before {
  content: "";
  position: absolute; top: 0; left: 0;
  width: 56px; height: 2px;
  background: var(--gold);
}
.own-block-form {
  display: flex; gap: 0.7rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}
.own-block-form input {
  flex: 1; min-width: 130px;
  padding: 0.6em 0.8em;
  border: 1px solid var(--hairline);
  border-radius: 3px;
  background: #FBF7EE;
  font-family: var(--serif); font-size: 0.88rem;
  color: var(--ink);
}
.own-block-form button {
  padding: 0.6em 1.4em;
  background: #0E0B08; color: var(--gold);
  border: 1px solid #0E0B08; border-radius: 999px;
  font-family: var(--serif); font-style: italic;
  font-size: 0.86rem;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}
.own-block-form button:hover { background: var(--gold); color: #0E0B08; }

/* ==========  Admin calendar — editable cells + popover  ========== */

/* Editable cell — show price + min nights, hover affordance */
.adm-calendar tbody td.adm-cal-open {
  padding: 0;
  cursor: pointer;
  position: relative;
  background: #FBF7EE;
  transition: background 0.2s;
}
.adm-calendar tbody td.adm-cal-open:hover {
  background: rgba(212, 175, 111, 0.18);
}
.adm-calendar tbody td.adm-cal-open.is-special {
  background: rgba(212, 175, 111, 0.12);
}
.adm-calendar tbody td.adm-cal-open.is-special:hover {
  background: rgba(212, 175, 111, 0.28);
}
.adm-calendar tbody td.adm-cal-open.just-saved {
  animation: cell-flash 1.1s ease-out;
}
.adm-calendar tbody td.adm-cal-open.is-selected {
  background: rgba(106, 170, 92, 0.22) !important;
  outline: 2px solid rgba(106, 170, 92, 0.65);
  outline-offset: -2px;
}
.adm-calendar { user-select: none; -webkit-user-select: none; }
.adm-edit-popover { width: 340px; }
@keyframes cell-flash {
  0% { background: rgba(106, 170, 92, 0.5); }
  100% { background: rgba(212, 175, 111, 0.12); }
}

.adm-cell-edit {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 1px;
  height: 100%;
  padding: 4px 2px;
  text-align: center;
}
.adm-cell-price {
  font-family: var(--sans);
  font-size: 0.66rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.02em;
}
.adm-cell-min {
  font-family: var(--sans);
  font-size: 0.54rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.adm-calendar tbody td.adm-cal-open.is-special .adm-cell-price {
  color: var(--gold-deep);
  font-weight: 600;
}

/* Tiny pencil affordance on hover */
.adm-calendar tbody td.adm-cal-open::after {
  content: "✎";
  position: absolute;
  top: 3px; right: 4px;
  font-size: 9px;
  color: var(--gold-deep);
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
}
.adm-calendar tbody td.adm-cal-open:hover::after { opacity: 1; }

/* Popover editor */
.adm-edit-popover {
  position: absolute;
  width: 320px;
  background: var(--cream);
  border: 1px solid rgba(212,175,111,0.5);
  border-radius: 6px;
  box-shadow:
    0 1px 0 rgba(212,175,111,0.3) inset,
    0 24px 50px -16px rgba(30,20,10,0.32);
  z-index: 100;
  overflow: hidden;
  animation: pop-in 0.25s var(--ease-out);
}
@keyframes pop-in {
  from { opacity: 0; transform: translateY(-8px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.adm-edit-popover[hidden] { display: none; }
.adm-edit-popover::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: var(--gold);
}
.adm-edit-head {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding: 1.1rem 1.2rem 0.8rem;
  border-bottom: 1px solid var(--hairline);
}
.adm-edit-eyebrow {
  font-family: var(--sans);
  font-size: 0.56rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 500;
  margin-bottom: 0.4rem;
}
.adm-edit-title {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1.04rem;
  color: var(--ink);
  font-variation-settings: "opsz" 24, "SOFT" 80;
}
.adm-edit-close {
  background: transparent;
  border: 0;
  color: var(--ink-muted);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  padding: 0 0.4rem;
}
.adm-edit-close:hover { color: var(--ink); }

.adm-edit-body {
  padding: 1.1rem 1.2rem;
  display: flex; flex-direction: column;
  gap: 0.9rem;
}
.adm-edit-field {
  display: flex; flex-direction: column;
  gap: 0.35rem;
}
.adm-edit-field label {
  font-family: var(--sans);
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 500;
}
.adm-edit-input-wrap {
  display: flex; align-items: center;
  background: #FBF7EE;
  border: 1px solid var(--hairline);
  border-radius: 4px;
  padding: 0.4em 0.7em;
  transition: border-color 0.3s, background 0.3s;
}
.adm-edit-input-wrap:focus-within {
  border-color: var(--gold);
  background: var(--cream);
}
.adm-edit-prefix,
.adm-edit-suffix {
  font-family: var(--sans);
  font-size: 0.78rem;
  color: var(--ink-muted);
  letter-spacing: 0.12em;
}
.adm-edit-prefix { margin-right: 0.4em; }
.adm-edit-suffix { margin-left: 0.4em; text-transform: uppercase; font-size: 0.62rem; letter-spacing: 0.2em; }
.adm-edit-input-wrap input {
  flex: 1;
  background: transparent;
  border: 0;
  outline: 0;
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--ink);
  width: 100%;
}
.adm-edit-field select {
  background: #FBF7EE;
  border: 1px solid var(--hairline);
  border-radius: 4px;
  padding: 0.5em 0.7em;
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.92rem;
  color: var(--ink);
  cursor: pointer;
}
.adm-edit-field select:focus { outline: none; border-color: var(--gold); }

.adm-edit-foot {
  display: flex; justify-content: flex-end; gap: 0.6rem;
  padding: 0.9rem 1.2rem 1.1rem;
  border-top: 1px solid var(--hairline);
  background: #FBF7EE;
}

/* ---------- Owners hero — video version ---------- */
.owners-hero-video { position: relative; overflow: hidden; }
.owners-hero-video .owners-hero-vid {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.owners-hero-video .owners-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    180deg,
    rgba(14, 11, 8, 0.15) 0%,
    rgba(14, 11, 8, 0.35) 55%,
    rgba(14, 11, 8, 0.6) 100%
  );
  z-index: 1;
  pointer-events: none;
}
.owners-hero-video .subhero-caption {
  position: relative;
  z-index: 2;
}

/* ===========================================================================
   PHASE 6 — MOBILE OPTIMIZATIONS
   ===========================================================================
   Comprehensive mobile fixes: typography, tap targets, layout, performance,
   conversion (sticky booking footer), and visual hints.
   =========================================================================== */

/* ---------- MOBILE: tighter vertical rhythm ---------- */
@media (max-width: 720px) {
  /* Compress XL/2XL spacers — desktop is 4.5rem / 7rem, way too airy on mobile */
  :root {
    --space-xl: 2.4rem !important;
    --space-2xl: 3rem !important;
    --space-lg: 1.8rem !important;
  }
  /* Estate sections (home triptych) — kill the big top/bottom padding */
  .estates { padding-top: 1.6rem !important; padding-bottom: 1.6rem !important; }
  .estate { padding: 1.4rem 0 !important; gap: 1rem !important; }
  .estate-meta { gap: 0.6rem !important; }
  .estate-name { font-size: clamp(1.7rem, 7vw, 2.2rem) !important; }
  .estate-line { font-size: 0.96rem !important; line-height: 1.5; }
  .estate-specs { gap: 0.6rem 1rem !important; padding-top: 0.2rem !important; }
  .estate-photos { gap: 0.5rem !important; margin-top: 0.6rem; }
  /* Show only 2 photos per estate on mobile (hide the 3rd) */
  .estate-photos > .estate-photo:nth-of-type(n+3) { display: none !important; }

  /* Section-label-big — much tighter on mobile */
  .section-label-big {
    padding-top: 0.8rem !important;
    padding-bottom: 0.8rem !important;
    margin-bottom: 1rem !important;
    column-gap: 0.8rem !important;
  }
  .section-label-big .n { font-size: 2.6rem !important; }
  .section-label-big .t { font-size: 0.7rem !important; padding-bottom: 0.4em !important; }

  /* Section-label (numbered "01 OUR VILLAS" used on home) — kill the big spacers */
  .section-label {
    padding-top: 0.9rem !important;
    padding-bottom: 0.4rem !important;
    margin-bottom: 1rem !important;
    column-gap: 0.9rem !important;
  }
  .section-label .n { font-size: 2.4rem !important; line-height: 1 !important; }
  .section-label .t { font-size: 0.7rem !important; padding-bottom: 0.4em !important; letter-spacing: 0.22em !important; }
  .section-label .side { font-size: 0.78rem !important; padding-bottom: 0.45em !important; }

  /* The h2 "Neither a catalogue..." has inline margin-bottom: 1.2em — reduce on mobile */
  .estates h2[style] { margin-bottom: 0.8em !important; }
  .estates h2.h1 { font-size: clamp(1.5rem, 6vw, 2rem) !important; line-height: 1.1; }

  /* h2 / section titles inside content sections */
  h2.section-title,
  .section .h-section,
  .estates h2 {
    margin: 0.4rem 0 1.4rem !important;
  }

  /* Journal / gallery / feature blocks */
  .journal-teaser,
  .gallery,
  .feature-lists,
  .booking,
  .section,
  .section.tight {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }

  /* Container gutter — slightly tighter */
  .container { padding-left: 1.1rem !important; padding-right: 1.1rem !important; }

  /* Breathing room between team portraits and the "For travelers / For owners" cards */
  .tb-team { margin-bottom: 2.4rem !important; }
  .tb-split { margin: 0.6rem 0 1.6rem !important; }
  .tb-paths { margin-top: 2rem !important; gap: 1.4rem !important; }
  .tb-paths .tb-path { padding: 1.6rem 1.4rem !important; }
  .tb-path-eyebrow { margin-bottom: 0.6rem !important; font-size: 1.5rem !important; }
  .tb-path-title { font-size: 1.6rem !important; line-height: 1.15; margin: 0 0 0.6rem !important; }
  .tb-path-copy { font-size: 0.95rem !important; line-height: 1.5; }
}

/* ---------- MOBILE HEADER: centered logo + 3-line burger right + fixed top ---------- */
@media (max-width: 720px) {
  /* Kill the second strip — too cluttered on mobile */
  .topbar { display: none !important; }

  /* CRITICAL: kill the topbar-revealed translate that creates a phantom gap on mobile */
  body.topbar-revealed .nav { transform: none !important; }

  /* Nav fixed flush at top, no gap, no blend mode trickery on mobile */
  .nav {
    position: fixed !important;
    top: 0 !important; left: 0 !important; right: 0 !important;
    transform: none !important;
    grid-template-columns: 44px 1fr 44px !important;  /* spacer | logo center | burger */
    padding: 0.5rem 0.8rem !important;
    min-height: 54px;
    align-items: center;
    background: rgba(14, 11, 8, 0.0);
    transition: background .25s ease, backdrop-filter .25s ease, border-color .25s ease, color .25s ease;
    border-bottom: 1px solid transparent;
    z-index: 100;
    mix-blend-mode: normal !important;  /* off on mobile — would otherwise invert against backdrop */
    color: var(--cream) !important;
  }
  .nav.is-solid,
  .nav.is-scrolled {
    background: rgba(14, 11, 8, 0.95) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom-color: rgba(212, 175, 111, 0.2) !important;
  }
  /* Hide left links + right book button — only burger + logo visible */
  .nav-left { display: none !important; }
  .nav-right .nav-entry,
  .nav-right > a { display: none !important; }

  /* Logo: centered */
  .nav-logo {
    justify-self: center !important;
    text-align: center;
    grid-column: 2;
  }
  .nav-logo-mark {
    font-size: 1.05rem !important;
    letter-spacing: 0.32em !important;
    text-align: center;
  }
  .nav-logo-sub {
    font-size: 0.55rem !important;
    letter-spacing: 0.18em !important;
    text-align: center;
  }

  /* Right: burger only, 44x44 tap zone */
  .nav-right {
    justify-self: end;
    grid-column: 3;
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }

  /* 3-line burger using existing 2 spans + a ::before pseudo */
  .nav-burger {
    display: inline-flex !important;
    flex-direction: column;
    width: 44px; height: 44px;
    background: transparent;
    border: 0;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 0;
    position: relative;
  }
  .nav-burger span,
  .nav-burger::before {
    content: '';
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--cream);
    border-radius: 1px;
    transition: transform .25s ease, opacity .2s ease, background .2s;
  }
  /* The pseudo-element acts as the 3rd (top) line */
  .nav-burger::before {
    margin-bottom: 5px;
  }
  /* Active state: morph into X */
  .nav-burger[aria-expanded="true"]::before {
    transform: translateY(7px) rotate(45deg);
  }
  .nav-burger[aria-expanded="true"] span:first-child {
    opacity: 0;
  }
  .nav-burger[aria-expanded="true"] span:last-child {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* Push body content below the fixed nav (heros use 100vh so they handle it) */
  /* Note: subhero / hero sections already account for nav via padding-top */
}

/* ---------- MOBILE DRAWER: full screen, comfortable, includes lang + owners ---------- */
@media (max-width: 720px) {
  .nav-drawer {
    background: rgba(14, 11, 8, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }
  .drawer-inner {
    padding: 5rem 1.6rem 2rem;
  }
  .drawer-group {
    display: flex; flex-direction: column;
    gap: 0;
  }
  .drawer-group a {
    padding: 0.95rem 0;
    font-size: 1.4rem;
    font-family: var(--serif);
    font-style: italic;
    border-bottom: 1px solid rgba(212, 175, 111, 0.12);
    display: flex; justify-content: space-between; align-items: center;
  }
  .drawer-group a::after {
    content: "→";
    font-style: normal;
    color: var(--gold);
    font-size: 0.9rem;
    opacity: 0.6;
    transition: transform .2s, opacity .2s;
  }
  .drawer-group a:hover::after { transform: translateX(4px); opacity: 1; }
  .drawer-group-sep {
    margin-top: 1.4rem;
    font-family: var(--sans);
    font-size: 0.6rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--gold-deep);
    margin-bottom: 0.4rem;
    padding-bottom: 0.4rem;
  }
  .drawer-group.aside a {
    font-size: 1.1rem;
  }
  .drawer-lang {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(212,175,111,0.12);
  }
  .drawer-lang button {
    background: transparent;
    border: 1px solid rgba(212, 175, 111, 0.3);
    color: rgba(244, 239, 228, 0.55);
    padding: 0.5rem 1rem;
    font-family: var(--sans);
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 2px;
  }
  .drawer-lang button.is-active {
    color: var(--cream);
    border-color: var(--gold);
  }
}

/* ---------- UNIVERSAL MOBILE STICKY "BOOK NOW" FOOTER (all pages) ---------- */
.mobile-book-bar-simple {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(14, 11, 8, 0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid rgba(212, 175, 111, 0.2);
  padding: 0.65rem 1rem;
  padding-bottom: calc(0.65rem + env(safe-area-inset-bottom, 0));
  z-index: 95;
}
.mobile-book-bar-simple-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  max-width: 480px;
  margin: 0 auto;
}
.mobile-book-bar-simple .mbbs-text {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.92rem;
  color: rgba(244, 239, 228, 0.7);
  font-variation-settings: "opsz" 24, "SOFT" 60;
}
.mobile-book-bar-simple .mbbs-text em {
  font-style: italic;
  color: var(--gold);
  font-weight: 500;
}
.mobile-book-bar-simple .mbbs-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--ink);
  border: none;
  padding: 0.75rem 1.3rem;
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  border-radius: 2px;
  text-decoration: none;
  white-space: nowrap;
  min-height: 44px;
  transition: background .15s;
}
.mobile-book-bar-simple .mbbs-cta:hover { background: var(--cream); }

@media (max-width: 1100px) {
  /* Show simple bar on non-villa pages, but ONLY after scrolling 200px */
  body:not(.villa-page) .mobile-book-bar-simple {
    display: block;
    transform: translateY(100%);
    opacity: 0;
    transition: transform .3s ease, opacity .3s ease;
    pointer-events: none;
  }
  body:not(.villa-page).is-scrolled-deep .mobile-book-bar-simple {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  /* Body padding-bottom only when bar is visible — avoid wasted space at top */
  body:not(.villa-page).is-scrolled-deep { padding-bottom: 70px; }
  /* Hide WA widget on mobile when sticky bar is present (avoid overlap) */
  body:not(.admin-body):not(.owner-body).is-scrolled-deep .wa-widget {
    bottom: calc(70px + 1rem) !important;
  }
}
@media (max-width: 720px) {
  /* On small phones, keep WA widget tight */
  .wa-widget {
    bottom: calc(70px + 0.4rem) !important;
    right: 0.6rem !important;
  }
}

/* ===========================================================================
   BOOKING DATE WIDGET — luxe 2-cell display (Arrival | Departure)
   Used on /maisons/{slug}.html booking forms (mobile + desktop)
   =========================================================================== */
.bc-range-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  border: 0 !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
/* Hide the redundant <label> that ships above the hidden input */
.bc-field:has(> .bc-dates-pretty) > label[for="bc-range"] {
  display: none;
}
.bc-dates-pretty {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0;
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: 4px;
  cursor: pointer;
  transition: border-color .2s ease, box-shadow .2s ease;
  overflow: hidden;
}
.bc-dates-pretty:hover,
.bc-dates-pretty.is-partial {
  border-color: var(--gold);
  box-shadow: 0 4px 14px -8px rgba(212, 175, 111, 0.25);
}
.bc-dates-pretty.is-filled {
  border-color: var(--gold-deep);
}
.bcdp-cell {
  padding: 0.7rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-height: 56px;
  justify-content: center;
}
.bcdp-cell[data-bcdp="out"] {
  border-left: 1px solid var(--hairline);
  text-align: right;
  align-items: flex-end;
}
.bcdp-lab {
  font-family: var(--sans);
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 500;
}
.bcdp-val {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1;
  color: var(--ink-muted);
  font-variation-settings: "opsz" 36, "SOFT" 60;
  transition: color .2s ease;
}
.bc-dates-pretty.is-filled .bcdp-val,
.bc-dates-pretty.is-partial [data-bcdp="in"] .bcdp-val {
  color: var(--ink);
  font-weight: 500;
  font-style: normal;
}
.bcdp-arrow {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold);
  font-size: 1rem;
  padding: 0 0.4rem;
  user-select: none;
}

/* ----- FLATPICKR — luxe styling override ----- */
.flatpickr-calendar {
  background: var(--cream) !important;
  border: 1px solid var(--hairline) !important;
  border-radius: 4px !important;
  box-shadow: 0 14px 44px -12px rgba(14, 11, 8, 0.25) !important;
  font-family: var(--serif);
  width: 320px;
}
.flatpickr-calendar.hasMonths .flatpickr-months,
.flatpickr-calendar.multiMonth { width: auto !important; }
.flatpickr-calendar.multiMonth .flatpickr-days { width: auto !important; }
.flatpickr-months {
  padding: 0.6rem 0.6rem 0.4rem;
  border-bottom: 1px solid var(--hairline);
  background: transparent !important;
}
.flatpickr-month {
  background: transparent !important;
  color: var(--ink) !important;
}
.flatpickr-current-month {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400 !important;
  font-size: 1.02rem !important;
  color: var(--ink) !important;
  font-variation-settings: "opsz" 36, "SOFT" 60;
  padding: 0.4rem 0 !important;
}
.flatpickr-current-month .flatpickr-monthDropdown-months,
.flatpickr-current-month input.cur-year {
  font-family: var(--serif) !important;
  color: var(--ink) !important;
  font-weight: 400 !important;
}
.flatpickr-prev-month,
.flatpickr-next-month {
  color: var(--gold-deep) !important;
  fill: var(--gold-deep) !important;
}
.flatpickr-prev-month:hover svg,
.flatpickr-next-month:hover svg { fill: var(--ink) !important; }
.flatpickr-weekdays { background: transparent !important; }
.flatpickr-weekday {
  font-family: var(--sans) !important;
  font-size: 0.6rem !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase !important;
  color: var(--ink-muted) !important;
  font-weight: 500 !important;
  background: transparent !important;
}
.flatpickr-day {
  font-family: var(--serif) !important;
  font-size: 0.92rem !important;
  color: var(--ink) !important;
  line-height: 38px !important;
  height: 38px !important;
  border-radius: 2px !important;
  border: 0 !important;
  font-variation-settings: "opsz" 18;
  font-weight: 400 !important;
}
.flatpickr-day.today {
  border: 1px solid var(--gold) !important;
  color: var(--gold-deep) !important;
}
.flatpickr-day:hover {
  background: rgba(212, 175, 111, 0.18) !important;
  color: var(--ink) !important;
}
.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected:hover {
  background: var(--ink) !important;
  color: var(--cream) !important;
  border-color: var(--ink) !important;
}
.flatpickr-day.inRange {
  background: rgba(212, 175, 111, 0.22) !important;
  color: var(--ink) !important;
  box-shadow: -5px 0 0 rgba(212, 175, 111, 0.22), 5px 0 0 rgba(212, 175, 111, 0.22) !important;
}
.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover {
  background: transparent !important;
  color: rgba(14, 11, 8, 0.18) !important;
  text-decoration: line-through;
  cursor: not-allowed;
}
.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay {
  color: rgba(14, 11, 8, 0.3) !important;
}

/* Mobile: full-width calendar, stacked months */
@media (max-width: 720px) {
  .flatpickr-calendar {
    width: calc(100vw - 2rem) !important;
    max-width: 360px;
  }
  .flatpickr-rContainer,
  .flatpickr-days { width: 100% !important; }
  .flatpickr-day { max-width: none !important; flex-basis: 14.2857% !important; }
  /* Stack the 2 months vertically on small screens */
  .flatpickr-calendar.multiMonth .flatpickr-months > .flatpickr-month { flex: 1 1 100%; }
}

/* Don't show mobile-book-bar on admin/owner panels (they have their own UI) */
body.admin-body .mobile-book-bar,
body.admin-body .mobile-book-bar-simple,
body.owner-body .mobile-book-bar,
body.owner-body .mobile-book-bar-simple {
  display: none !important;
}

/* ===========================================================================
   MOBILE CATALOG — clean editorial layout for /maisons/
   Image full-width 4:5, then card body on cream below. Generous breathing.
   =========================================================================== */
@media (max-width: 720px) {
  /* Section padding */
  .catalogue { padding-top: 1.6rem !important; padding-bottom: 2.4rem !important; }

  /* Cat header */
  .cat-header {
    display: flex !important;
    align-items: baseline;
    gap: 0.8rem;
    margin-bottom: 1.6rem !important;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--hairline);
  }
  .cat-header h1 {
    font-size: clamp(2.2rem, 9vw, 2.8rem) !important;
    line-height: 1;
    margin: 0;
    font-style: italic;
  }
  .cat-header .count {
    font-family: var(--sans);
    font-size: 0.6rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink-muted);
  }

  /* Filter bar tighter */
  .filters,
  .filters-v2 {
    margin-bottom: 1.6rem;
  }

  /* Grid: full-width single column with generous gap */
  .cat-grid {
    display: flex !important;
    flex-direction: column;
    gap: 2.4rem !important;
    margin-top: 0;
  }

  /* CARD: image on top, content on cream below — no dark trick, just clean */
  .cat-card,
  .cat-card.featured {
    grid-column: 1 / -1 !important;
    display: flex !important;
    flex-direction: column;
    background: transparent;
    text-decoration: none;
    color: inherit;
    transition: transform .25s ease;
    position: relative;
  }
  .cat-card:active { transform: scale(0.995); }

  /* Image: 4:5 portrait, generous, subtle hover-zoom feel */
  .cat-card .media {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border-radius: 3px;
    margin: 0 0 1.1rem 0;
  }
  .cat-card .media img,
  .cat-card .media picture,
  .cat-card .media picture img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block;
    transition: transform 1s var(--ease-out);
  }
  .cat-card:hover .media img { transform: scale(1.02); }
  /* Hide secondary "alt" image on mobile to keep card clean */
  .cat-card .media img.alt,
  .cat-card .media picture:nth-of-type(2) { display: none; }

  /* Tiny floating label (top-left of image) — area name */
  .cat-card .media::before {
    content: '';  /* placeholder; kept for potential future use */
  }

  /* Meta: villa name only (price hidden on mobile) */
  .cat-card .meta {
    display: flex !important;
    flex-direction: column;
    gap: 0;
    padding: 0 0.2rem;
    margin: 0;
  }
  .cat-card .meta .name {
    font-family: var(--serif);
    font-size: clamp(1.7rem, 7vw, 2.1rem);
    line-height: 1.05;
    font-weight: 400;
    color: var(--ink) !important;
    font-variation-settings: "opsz" 96, "SOFT" 30;
    letter-spacing: -0.01em;
  }
  /* Hide price on mobile cards (kept on desktop) */
  .cat-card .meta .price { display: none !important; }

  /* Specs: 3 max, separated by · */
  .cat-card .specs {
    display: flex !important;
    flex-wrap: wrap;
    gap: 0;
    padding: 0.5rem 0.2rem 0;
    margin: 0;
  }
  .cat-card .specs span {
    font-family: var(--sans);
    font-size: 0.62rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink-muted);
    display: inline-flex;
    align-items: center;
  }
  .cat-card .specs span:nth-child(n+4) { display: none; }
  .cat-card .specs span:not(:last-child)::after {
    content: '·';
    margin: 0 0.55em;
    color: var(--gold);
    font-weight: 500;
  }
  .cat-card .specs span:nth-child(3)::after { content: ''; margin: 0; }

  /* Tagline hidden on mobile */
  .cat-card .line { display: none !important; }

  /* "Book now" CTA — proper pill button at bottom of card */
  .cat-card::after {
    content: 'Book now';
    display: block;
    margin: 1rem 0 0;
    padding: 0.95rem 1rem;
    text-align: center;
    background: var(--ink);
    color: var(--cream);
    font-family: var(--sans);
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 500;
    border-radius: 2px;
    transition: background .2s ease, letter-spacing .25s ease;
  }
  .cat-card:hover::after,
  .cat-card:active::after {
    background: var(--gold-deep);
    letter-spacing: 0.26em;
  }

  /* Unavailability — soft red tint over image */
  .cat-card.is-unavailable .media::after {
    content: '';
    position: absolute; inset: 0;
    background: rgba(170, 51, 51, 0.18);
    pointer-events: none;
  }

  /* Footnote */
  .cat-note {
    margin-top: 2rem !important;
    font-size: 0.92rem;
    line-height: 1.55;
    color: var(--ink-muted);
    font-style: italic;
    padding-top: 1.4rem;
    border-top: 1px solid var(--hairline);
  }
}

/* ---------- Form inputs: prevent iOS Safari zoom on focus ---------- */
input, select, textarea, .flatpickr-input {
  font-size: 16px;  /* iOS won't zoom if >= 16px */
}
@media (min-width: 720px) {
  /* Restore desktop refinement: smaller serif inputs in editorial forms */
  .booking-card .bc-field input,
  .booking-card .bc-field select {
    font-size: 1rem;  /* still 16px on rem basis, OK */
  }
}

/* ---------- Booking card: bigger tap targets on mobile ---------- */
@media (max-width: 720px) {
  .booking-card .bc-field input,
  .booking-card .bc-field select {
    padding: 0.85rem 0.95rem;
    min-height: 48px;
    border: 1px solid rgba(0,0,0,0.12);
    border-radius: 4px;
    background: #fff;
  }
  .booking-card .bc-cta {
    min-height: 52px;
    font-size: 0.78rem;
  }
}

/* ---------- Hero typography: tighter on small screens ---------- */
@media (max-width: 480px) {
  .hero-title,
  .subhero-title,
  h1 {
    font-size: clamp(1.7rem, 8vw, 2.4rem) !important;
    line-height: 1.05 !important;
    letter-spacing: -0.01em;
  }
  .hero-line, .subhero-caption .lead, .lead {
    font-size: clamp(0.95rem, 3.6vw, 1.05rem);
    line-height: 1.5;
  }
  .section-title, h2 {
    font-size: clamp(1.4rem, 6vw, 1.9rem) !important;
    line-height: 1.15;
  }
}

/* ---------- About: quote mark scales down on small screens ---------- */
.about-quote-mark {
  font-size: clamp(3.2rem, 14vw, 5.5rem) !important;
}

/* ---------- Maisons catalog: filter bar wraps cleanly on mobile ---------- */
@media (max-width: 720px) {
  .filters,
  .filters-v2 {
    flex-wrap: wrap !important;
    gap: 0.6rem !important;
  }
  .filters .filter,
  .filters-v2 .filter {
    flex: 1 1 calc(50% - 0.3rem);
    min-width: 0;
  }
  .filters .filter-dates,
  .filters-v2 .filter-dates {
    flex: 1 1 100%;  /* full width — date picker needs room */
  }
  .filters .filter-reset,
  .filters-v2 .filter-reset {
    flex: 1 1 100%;
    text-align: right;
    padding-top: 0.4rem;
  }
}

/* ---------- Villa summary bar: free up vertical space on mobile ---------- */
@media (max-width: 640px) {
  .villa-summary-specs { display: none !important; }
  .villa-summary { padding: 0.5rem var(--gutter); }
  .villa-summary-price { font-size: 0.85rem; }
}

/* ---------- WhatsApp widget: less aggressive bottom-right placement ---------- */
@media (max-width: 720px) {
  .wa-widget {
    bottom: 0.8rem !important;
    right: 0.8rem !important;
  }
  .wa-widget .wa-bubble {
    /* On mobile, hide the speech bubble to avoid cluttering */
    display: none !important;
  }
}

/* ---------- Calendar grid (owner) — denser on mobile ---------- */
@media (max-width: 720px) {
  .own-cal-grid { grid-template-columns: 1fr !important; gap: 1.4rem; }
  .own-cal-month .d, .own-cal-month .h {
    font-size: 0.78rem;
    line-height: 1.7;
  }
}

/* ---------- Color contrast: smaller text uses gold-deep on cream ---------- */
@media (max-width: 640px) {
  .from, .price, .cat-card .price,
  .villa-summary-price strong,
  .own-rev-detail strong {
    color: var(--gold-deep) !important;  /* darker, accessible */
  }
}

/* ---------- Casita grid → carousel on mobile (Les Roches) ---------- */
@media (max-width: 720px) {
  .casitas-grid {
    grid-template-columns: none !important;
    grid-auto-flow: column !important;
    grid-auto-columns: 86% !important;  /* a peek of the next card */
    overflow-x: auto !important;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    gap: 1rem !important;
    padding: 0 var(--gutter) 1rem;
    margin-left: calc(-1 * var(--gutter));
    margin-right: calc(-1 * var(--gutter));
    /* hide native scrollbar (still scrollable) */
    scrollbar-width: none;
  }
  .casitas-grid::-webkit-scrollbar { display: none; }
  .casita-card {
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }
  /* Visual scroll hint */
  .casitas-section {
    position: relative;
  }
  .casitas-section::after {
    content: 'swipe →';
    display: block;
    text-align: right;
    margin: 0.6rem var(--gutter) 0;
    font-family: var(--sans);
    font-size: 0.6rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold-deep);
    opacity: 0.8;
  }
}

/* ---------- Gallery scroll hint visible on mobile ---------- */
@media (max-width: 720px) {
  .gallery-hint {
    display: flex !important;
    visibility: visible !important;
    margin-top: 0.6rem;
    color: var(--gold-deep);
    font-family: var(--sans);
    font-size: 0.6rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    text-align: center;
    justify-content: center;
    opacity: 1;
  }
  .gh-icon { animation: scroll-hint 2.4s ease-in-out infinite; }
}
@keyframes scroll-hint {
  0%, 100% { transform: translateX(0); opacity: 0.4; }
  50% { transform: translateX(8px); opacity: 1; }
}

/* ---------- STICKY MOBILE BOOKING FOOTER (villa pages) ---------- */
.mobile-book-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #fff;
  border-top: 1px solid var(--hairline);
  padding: 0.7rem var(--gutter);
  padding-bottom: max(0.7rem, env(safe-area-inset-bottom, 0.7rem));
  box-shadow: 0 -8px 24px -10px rgba(0,0,0,0.08);
  z-index: 95;
}
.mobile-book-bar-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.7rem;
  align-items: center;
}
.mobile-book-bar .mbb-name {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--ink);
  font-variation-settings: "opsz" 36, "SOFT" 60;
  letter-spacing: 0.01em;
  line-height: 1.1;
}
.mobile-book-bar .mbb-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  color: #fff;
  border: none;
  padding: 0.85rem 1.2rem;
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  border-radius: 3px;
  text-decoration: none;
  white-space: nowrap;
  min-height: 44px;
}
.mobile-book-bar .mbb-cta:hover { background: var(--gold-deep); }

@media (max-width: 1100px) {
  .mobile-book-bar { display: block; }
  /* Add bottom padding to villa pages so the footer doesn't overlap last content */
  body.villa-page { padding-bottom: calc(80px + env(safe-area-inset-bottom, 0px)); }
  /* Hide the WhatsApp widget when sticky bar is present (avoid overlap) */
  .villa-page .wa-widget { display: none !important; }
}
/* Above 1100px the sticky aside still works — no mobile bar needed */

/* ---------- Mobile menu accessibility ---------- */
@media (max-width: 720px) {
  .nav-burger { width: 44px; height: 44px; }
  .nav-burger span { width: 22px; }
}

/* ---------- Generic horizontal scroll guard ---------- */
@media (max-width: 720px) {
  body { overflow-x: hidden; }
  .container { padding-left: var(--gutter); padding-right: var(--gutter); }
}

/* ---------- Reduced motion: respect user preference ---------- */
@media (prefers-reduced-motion: reduce) {
  .scroll-hint, .gh-icon { animation: none !important; }
}
