/* ==========================================================
   Dar Collective — premium Marrakech villas marketplace
   Commercial-luxury design system (sans-dominant, warm, airy)
   ========================================================== */

:root {
  /* Surfaces */
  --bg:       #f5f2ea;   /* warm cream */
  --bg-2:     #fbf8f1;   /* page body */
  --surface:  #ffffff;
  --card:     #fbf8f1;
  --tint:     #efe9db;   /* section tint */

  /* Ink */
  --ink:      #15110c;
  --ink-2:    #3c342b;
  --muted:    #8a7f72;
  --line:     #e4dccb;
  --line-2:   #d7ceba;

  /* Accents */
  --gold:      #b8935f;
  --gold-deep: #8c6a3d;
  --terra:     #b0533a;
  --olive:     #3e5041;
  --forest:    #1e2b25;
  --wa:        #25d366;  /* WhatsApp green */

  /* Geometry */
  --r-xs: 4px;
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 18px;
  --r-pill: 999px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --shadow-1: 0 1px 2px rgba(30,22,12,0.05);
  --shadow-2: 0 8px 30px -12px rgba(30,22,12,0.18);
  --shadow-3: 0 30px 60px -25px rgba(30,22,12,0.28);
  --shadow-lg: 0 50px 100px -40px rgba(30,22,12,0.4);

  --sans:    "Inter", -apple-system, system-ui, "Segoe UI", sans-serif;
  --display: "DM Sans", "Inter", system-ui, sans-serif;
  --accent:  "Fraunces", "Cormorant Garamond", Georgia, serif;

  --container: 1340px;
  --gutter: 32px;
}

/* Reset ----------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg-2);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; border: 0; background: transparent; }
ul { list-style: none; padding: 0; margin: 0; }
[hidden] { display: none !important; }

/* Typography ------------------------------------------------ */
h1, h2, h3, h4, h5 {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--ink);
}
h1 { font-size: clamp(2.6rem, 5.8vw, 5rem); line-height: 1.02; letter-spacing: -0.035em; }
h2 { font-size: clamp(2rem, 3.2vw, 2.9rem); line-height: 1.1;  letter-spacing: -0.03em; }
h3 { font-size: 1.5rem;  line-height: 1.22; }
h4 { font-size: 1.1rem; }

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  margin: 0 0 1rem;
}
.kicker::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--muted);
  display: inline-block;
}
.kicker--gold { color: var(--gold-deep); }
.kicker--gold::before { background: var(--gold); }

.serif { font-family: var(--accent); font-style: italic; font-weight: 400; }

.link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink);
  padding-bottom: 2px;
  border-bottom: 1px solid currentColor;
  transition: color .25s var(--ease), gap .25s var(--ease);
}
.link:hover { color: var(--gold-deep); gap: 12px; }

/* Layout ---------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
@media (max-width: 640px) { :root { --gutter: 20px; } }

.section { padding: clamp(4.5rem, 9vw, 8.5rem) 0; position: relative; }
.section--tinted { background: var(--bg); }
.section--dark { background: var(--forest); color: #e7dbc6; }
.section--dark h2, .section--dark h3 { color: #fbf4e4; }
.section--dark .kicker { color: #c2a678; }
.section--dark .kicker::before { background: #c2a678; }

.hair { border: 0; height: 1px; background: var(--line); margin: 0; }

/* Section heads --------------------------------------------- */
.sec-head {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: end;
  margin-bottom: 3.5rem;
}
.sec-head .sec-head__lede {
  color: var(--muted);
  max-width: 44ch;
  justify-self: end;
  margin: 0;
}
.sec-head h2 { max-width: 18ch; }
@media (max-width: 820px) {
  .sec-head { grid-template-columns: 1fr; gap: 1.2rem; }
  .sec-head .sec-head__lede { justify-self: start; }
}

/* Buttons --------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0.95rem 1.6rem;
  border-radius: var(--r-pill);
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  white-space: nowrap;
  cursor: pointer;
  line-height: 1;
}
.btn--primary { background: var(--ink); color: #fbf4e4; }
.btn--primary:hover { background: var(--gold-deep); transform: translateY(-1px); }
.btn--outline { background: transparent; color: var(--ink); border: 1px solid var(--ink); }
.btn--outline:hover { background: var(--ink); color: #fbf4e4; }
.btn--ghost { background: transparent; color: var(--ink); padding: 0.7rem 1rem; }
.btn--ghost:hover { color: var(--gold-deep); }
.btn--wa { background: var(--wa); color: #fff; }
.btn--wa:hover { background: #1db554; transform: translateY(-1px); }
.btn--sm { padding: 0.7rem 1.1rem; font-size: 0.85rem; }

/* Navigation ------------------------------------------------ */
.nav {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(251, 248, 241, 0.88);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav__top {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 0.78rem;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
}
.nav__top a { color: var(--ink-2); }
.nav__top a:hover { color: var(--gold-deep); }
.nav__top-l, .nav__top-r { display: flex; gap: 1.4rem; align-items: center; }
@media (max-width: 820px) { .nav__top { display: none; } }

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  gap: 2rem;
}
.brand { display: flex; align-items: center; gap: 0.75rem; color: var(--ink); }
.brand__mark { color: var(--gold); display: inline-flex; }
.brand__wordmark { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
  font-family: "Cinzel", "Fraunces", Georgia, serif;
  font-size: 1.18rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
}
.brand__tag { font-family: var(--accent); font-style: italic; font-size: 0.8rem; color: var(--muted); margin-top: 4px; }

.nav__links { display: flex; gap: 2.2rem; }
.nav__links a {
  font-size: 0.9rem;
  color: var(--ink-2);
  position: relative;
  padding: 6px 0;
  transition: color .25s var(--ease);
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: 0;
  height: 1px;
  background: var(--gold);
  transition: right .35s var(--ease);
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { right: 0; }

.nav__actions { display: flex; gap: 0.6rem; align-items: center; }
@media (max-width: 1024px) { .nav__links { display: none; } }
@media (max-width: 640px) {
  .nav__inner { height: 68px; }
  .brand__tag { display: none; }
  .nav__actions .btn--outline { display: none; }
}

/* HERO ------------------------------------------------------ */
.hero {
  position: relative;
  min-height: 94vh;
  display: flex;
  align-items: center;
  color: #fbf4e4;
  isolation: isolate;
  z-index: 2;            /* keep search popovers above the strip section below */
}
.hero__media {
  position: absolute; inset: 0; z-index: -1;
  overflow: hidden;            /* clips the scaled image below, not the popovers */
}
.hero__media::before {
  content: "";
  position: absolute; inset: 0;
  background-image: url("/assets/media/hero-sunset.jpg");
  background-size: cover;
  background-position: center;
  /* Subtle Ken-Burns drift for cinematic feel */
  animation: heroDrift 28s ease-in-out infinite alternate;
  transform-origin: center center;
}
@keyframes heroDrift {
  from { transform: scale(1.04) translate(0, 0); }
  to   { transform: scale(1.10) translate(-1.5%, -1%); }
}
.hero__media::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(15,11,4,0.55) 0%, rgba(15,11,4,0.25) 35%, rgba(15,11,4,0.78) 100%),
    linear-gradient(90deg, rgba(15,11,4,0.45), transparent 55%);
}
.hero__content {
  width: 100%;
  /* longhand vertical-only — shorthand zeroed out the .container's
     horizontal gutter and made the hero copy run flush to the screen
     edge on mobile (no left padding behind the h1 / lede / pill). */
  padding-top: 8rem;
  padding-bottom: 6rem;
  position: relative;
}
.hero__issue {
  position: absolute;
  top: 2rem; right: var(--gutter);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(251,244,228,0.75);
}
/* Editorial eyebrow above the hero h1 — no pill, no glow, no background.
   A single thin gold rule followed by widely-spaced caps so the line
   reads as a quiet luxury caption instead of a marketing badge. */
.hero__offer {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 0;
  background: transparent;
  border: 0;
  -webkit-backdrop-filter: none;
          backdrop-filter: none;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(251, 244, 228, 0.88);
  margin-bottom: 1.6rem;
}
.hero__offer::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
  border-radius: 0;
  box-shadow: none;
  flex: 0 0 auto;
}
@media (max-width: 540px) {
  .hero__offer { font-size: 0.68rem; gap: 10px; letter-spacing: 0.22em; }
  .hero__offer::before { width: 20px; }
}
.hero h1 {
  color: #fbf4e4;
  max-width: 16ch;
  margin-bottom: 1.2rem;
}
.hero h1 .serif { color: #e9c68b; }
.hero__lede {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  max-width: 48ch;
  color: rgba(251,244,228,0.88);
  margin: 0 0 2rem;
}

/* Trust row in hero */
.hero__trust {
  display: flex;
  gap: 1.6rem;
  flex-wrap: wrap;
  margin-top: 3rem;
  font-size: 0.82rem;
  color: rgba(251,244,228,0.82);
}
.hero__trust span { display: inline-flex; align-items: center; gap: 8px; }
.hero__trust span::before {
  content: "✓";
  color: var(--gold);
  font-weight: 600;
  font-size: 0.9rem;
}

/* Search card ----------------------------------------------- */
.search {
  margin-top: 2.5rem;
  background: rgba(251, 248, 241, 0.97);
  backdrop-filter: blur(20px);
  border-radius: var(--r-lg);
  padding: 0.5rem;
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr auto;
  gap: 0;
  max-width: 960px;
}
.search__field {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0.85rem 1.2rem;
  border-right: 1px solid var(--line);
  min-width: 0;
  transition: background .25s var(--ease);
  position: relative;
}
.search__field:last-of-type { border-right: 0; }
.search__field:hover { background: rgba(0,0,0,0.02); }
.search__field span {
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.search__field input,
.search__field select {
  border: 0;
  padding: 4px 0;
  background: transparent;
  font-size: 0.95rem;
  outline: none;
  width: 100%;
  color: var(--ink);
}
.search__submit { margin: 0.3rem; padding: 1rem 1.6rem; }
@media (max-width: 900px) {
  .search { grid-template-columns: 1fr 1fr; }
  .search__field { border-right: 0; border-bottom: 1px solid var(--line); }
  .search__field:nth-last-child(-n+2) { border-bottom: 0; }
  .search__submit { grid-column: 1 / -1; justify-content: center; margin-top: 0.5rem; }
}

/* Trust strip ----------------------------------------------- */
.strip {
  background: var(--bg);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 1.8rem 0;
}
.strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem 2.4rem;
  align-items: center;
}
.strip__item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--ink-2);
}
.strip__icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid rgba(176, 142, 74, 0.22);
  display: grid; place-items: center;
  color: var(--gold-deep);
  flex: 0 0 auto;
  box-shadow: 0 1px 2px rgba(42, 36, 30, 0.04);
}
.strip__text {
  display: flex;
  flex-direction: column;
  line-height: 1.35;
  min-width: 0;
}
.strip__text strong {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.strip__text span {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 2px;
}
/* Vertical hairline between cells on wide screens for a touch of rhythm */
@media (min-width: 821px) {
  .strip__item + .strip__item { border-left: 1px solid var(--line); padding-left: 2rem; margin-left: -0.4rem; }
}
@media (max-width: 820px) { .strip__grid { grid-template-columns: repeat(2, 1fr); gap: 1.2rem 1.6rem; } }
/* ---- Phone: 2x2 card grid (was a long 1-col stack) -------------------- */
@media (max-width: 560px) {
  .strip { padding: 1.2rem 0; }
  .strip__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.7rem;
  }
  .strip__item {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 14px 16px;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid var(--line);
    border-radius: 12px;
  }
  .strip__icon { width: 34px; height: 34px; }
  .strip__icon svg { width: 16px; height: 16px; }
  .strip__text { line-height: 1.3; }
  .strip__text strong { font-size: 0.82rem; }
  .strip__text span { font-size: 0.72rem; }
}
/* Very small phones (older iPhone SE etc.) — single column still works */
@media (max-width: 360px) {
  .strip__grid { grid-template-columns: 1fr; }
}

/* Filters ---------------------------------------------------- */
.filters {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}
.chip {
  padding: 0.6rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  font-size: 0.84rem;
  background: var(--surface);
  color: var(--ink-2);
  transition: all .25s var(--ease);
}
.chip:hover { border-color: var(--ink); color: var(--ink); }
.chip--active { background: var(--ink); color: #fbf4e4; border-color: var(--ink); }

/* Destination icon filters */
.dest-filters {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  padding-bottom: 2rem;
}
.dest-chip {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  font-size: 0.84rem;
  background: var(--surface);
  color: var(--ink-2);
  cursor: pointer;
  transition: all .22s var(--ease);
  white-space: nowrap;
}
.dest-chip__icon {
  display: flex;
  align-items: center;
  opacity: 0.55;
  transition: opacity .22s;
}
.dest-chip:hover {
  border-color: var(--ink);
  color: var(--ink);
}
.dest-chip:hover .dest-chip__icon { opacity: 0.9; }
.dest-chip--active {
  background: var(--ink);
  color: #fbf4e4;
  border-color: var(--ink);
}
.dest-chip--active .dest-chip__icon { opacity: 1; }

/* Villa grid ------------------------------------------------- */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 1024px) { .grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .grid { grid-template-columns: 1fr; } }

.card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  cursor: pointer;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); }
.card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--tint);
}
.card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1s var(--ease);
}
.card:hover .card__media img { transform: scale(1.05); }
.card__badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--ink);
  color: #fbf4e4;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: var(--r-pill);
  font-weight: 500;
}
.card__badge--gold { background: var(--gold); color: #1a1108; }
.card__fav {
  position: absolute;
  top: 12px; right: 12px;
  width: 38px; height: 38px;
  background: rgba(251, 248, 241, 0.94);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--ink);
  backdrop-filter: blur(6px);
  transition: transform .25s var(--ease), background .25s var(--ease);
  z-index: 2;
}
.card__fav:hover { transform: scale(1.1); background: #fff; color: var(--terra); }
.card__fav.is-on { color: var(--terra); background: #fff; }
.card__fav.is-on svg { fill: currentColor; }
.card__body { padding: 1.4rem; display: flex; flex-direction: column; gap: 10px; }
.card__row {
  display: flex; justify-content: space-between; align-items: baseline; gap: 1rem;
}
.card__name { font-family: var(--display); font-size: 1.3rem; font-weight: 500; letter-spacing: -0.02em; }
.card__rating {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.82rem; color: var(--ink); white-space: nowrap;
  font-weight: 500;
}
.card__rating::before { content: "★"; color: var(--gold); font-size: 0.9rem; }
.card__loc {
  font-size: 0.85rem; color: var(--muted);
  display: inline-flex; align-items: center; gap: 6px;
}
.card__loc::before {
  content: "◉"; color: var(--gold-deep); font-size: 0.7rem;
}
.card__facts {
  display: flex; gap: 1rem;
  font-size: 0.82rem;
  color: var(--ink-2);
  padding-top: 10px;
  border-top: 1px solid var(--line);
}
.card__facts span { display: inline-flex; align-items: center; gap: 5px; }
.card__price {
  display: flex; justify-content: space-between; align-items: baseline;
  padding-top: 10px; border-top: 1px solid var(--line);
}
.card__price strong {
  font-family: var(--display); font-size: 1.3rem; font-weight: 500;
  color: var(--ink);
}
.card__price small { color: var(--muted); font-size: 0.78rem; }
.card__cta { color: var(--gold-deep); font-size: 0.84rem; font-weight: 500; }

/* Featured villa (magazine-style) --------------------------- */
.feat {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.feat__media {
  aspect-ratio: 4 / 5;
  background: var(--tint);
  border-radius: var(--r-md);
  overflow: hidden;
  position: relative;
}
.feat__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.feat:hover .feat__media img { transform: scale(1.03); }
.feat__badge {
  position: absolute; top: 20px; left: 20px;
  background: rgba(251,244,228,0.95);
  color: var(--ink); padding: 8px 14px;
  border-radius: var(--r-pill);
  font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 500;
}
.feat__body { max-width: 520px; }
.feat__body h2 { margin-bottom: 1.2rem; }
.feat__tagline { font-family: var(--accent); font-style: italic; font-size: 1.25rem; color: var(--muted); margin: 0 0 1.5rem; line-height: 1.4; }
.feat__desc { color: var(--ink-2); margin: 0 0 2rem; }
.feat__facts {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 1.3rem 0;
  margin: 0 0 2rem;
}
.feat__fact { }
.feat__fact strong {
  display: block; font-family: var(--display); font-size: 1.35rem;
  font-weight: 500; color: var(--ink);
}
.feat__fact span { font-size: 0.75rem; color: var(--muted); letter-spacing: 0.06em; }
.feat__cta { display: flex; gap: 0.8rem; align-items: center; }
@media (max-width: 900px) { .feat { grid-template-columns: 1fr; gap: 2rem; } }

/* Neighbourhoods (6-tile grid) ------------------------------ */
.hoods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
@media (max-width: 900px) { .hoods { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .hoods { grid-template-columns: 1fr; } }
.hood {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--r-md);
  color: #fbf4e4;
  display: block;
  transition: transform .4s var(--ease);
}
.hood:hover { transform: translateY(-4px); }
.hood img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.hood:hover img { transform: scale(1.06); }
.hood::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,14,6,0.08) 0%, rgba(20,14,6,0.65) 100%);
}
.hood__body {
  position: absolute; inset: auto 0 0 0; z-index: 2;
  padding: 1.5rem;
  display: flex; justify-content: space-between; align-items: end; gap: 1rem;
}
.hood h3 { color: #fbf4e4; font-size: 1.4rem; letter-spacing: -0.02em; }
.hood__count {
  background: rgba(251,244,228,0.15);
  border: 1px solid rgba(251,244,228,0.3);
  backdrop-filter: blur(6px);
  padding: 6px 12px; border-radius: var(--r-pill);
  font-size: 0.78rem; color: #fbf4e4;
  white-space: nowrap;
}

/* Stats ------------------------------------------------------ */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
@media (max-width: 760px) { .stats { grid-template-columns: repeat(2, 1fr); } }
.stat {
  padding: 2rem 1rem;
  border-right: 1px solid rgba(226,206,164,0.2);
}
.stat:last-child { border-right: 0; }
@media (max-width: 760px) {
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid rgba(226,206,164,0.2); padding-bottom: 2rem; }
}
.stat strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  color: #fbf4e4;
  margin-bottom: 0.5rem;
}
.stat span { color: rgba(251,244,228,0.7); font-size: 0.84rem; letter-spacing: 0.1em; text-transform: uppercase; }

/* Services / amenities (icon grid) -------------------------- */
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem 3rem;
}
@media (max-width: 860px) { .services { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .services { grid-template-columns: 1fr; } }
.service {
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 10px;
}
.service__icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--tint);
  display: grid; place-items: center;
  color: var(--gold-deep);
  margin-bottom: 8px;
}
.service__num {
  font-family: var(--display); font-size: 0.88rem;
  color: var(--gold-deep); letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.service h4 { font-family: var(--display); font-weight: 500; }
.service p { color: var(--muted); margin: 0; font-size: 0.92rem; }

/* Testimonial ----------------------------------------------- */
.quote {
  padding: clamp(5rem, 10vw, 9rem) 0;
  background: var(--forest);
  color: #fbf4e4;
  position: relative;
  overflow: hidden;
}
.quote::before {
  content: "“";
  position: absolute;
  left: 4%; top: -2rem;
  font-family: var(--accent);
  font-style: italic;
  font-size: 22rem;
  color: rgba(184,147,95,0.12);
  line-height: 1;
  pointer-events: none;
}
.quote .container { position: relative; }
.quote blockquote {
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.6vw, 2.3rem);
  line-height: 1.35;
  letter-spacing: -0.02em;
  font-weight: 300;
  margin: 0 auto 2rem;
  max-width: 880px;
  text-align: center;
  color: #fbf4e4;
}
.quote figcaption {
  text-align: center;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(226,206,164,0.75);
}
/* Slider viewport + slides */
.quote__viewport {
  position: relative;
  overflow: hidden;
  max-width: 920px;
  margin: 0 auto;
}
.quote__track {
  position: relative;
  min-height: 1px;
}
.quote__slide {
  position: absolute;
  inset: 0 0 auto 0;
  margin: 0;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .55s ease, transform .55s cubic-bezier(.22,.61,.36,1);
  pointer-events: none;
  visibility: hidden;
}
.quote__slide.is-active {
  position: relative;
  opacity: 1;
  transform: none;
  pointer-events: auto;
  visibility: visible;
}

/* Prev / next arrows */
.quote__arr {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(226, 206, 164, 0.22);
  background: rgba(0, 0, 0, 0.18);
  color: #fbf4e4;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: background .2s, border-color .2s, transform .2s;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.quote__arr:hover {
  background: rgba(184,147,95,0.35);
  border-color: var(--gold);
  transform: translateY(-50%) scale(1.06);
}
.quote__arr--prev { left: max(1rem, 4vw); }
.quote__arr--next { right: max(1rem, 4vw); }
.quote__arr svg { display: block; }

/* Dot indicators (now real buttons) */
.quote__dots {
  display: flex; justify-content: center; gap: 10px;
  margin-top: 2.5rem;
}
.quote__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(226,206,164,0.28);
  cursor: pointer;
  transition: background .2s, transform .2s, width .2s;
}
.quote__dot:hover { background: rgba(226,206,164,0.55); }
.quote__dot.is-on {
  background: var(--gold);
  width: 22px;
  border-radius: 99px;
}

/* Mobile tweaks */
@media (max-width: 640px) {
  .quote__arr { width: 38px; height: 38px; font-size: 22px; }
  .quote__arr--prev { left: 8px; }
  .quote__arr--next { right: 8px; }
  .quote__viewport { padding: 0 56px; }
}

/* Journal (editorial post cards) ---------------------------- */
.journal {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 860px) { .journal { grid-template-columns: 1fr; } }
.post {
  display: flex; flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  color: var(--ink);
}
.post:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); }
.post__img { aspect-ratio: 16 / 10; overflow: hidden; background: var(--tint); }
.post__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.post:hover .post__img img { transform: scale(1.05); }
.post__body { padding: 1.8rem; display: flex; flex-direction: column; gap: 10px; }
.post__meta {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted);
  padding-bottom: 12px; border-bottom: 1px solid var(--line);
  margin-bottom: 8px;
}
.post__meta .tag { color: var(--gold-deep); font-weight: 600; }
.post h3 { font-size: 1.4rem; letter-spacing: -0.02em; line-height: 1.22; }
.post__dek { color: var(--muted); font-size: 0.94rem; margin: 4px 0 0; }
.post__byline {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 12px; border-top: 1px solid var(--line);
  margin-top: 8px;
  font-size: 0.82rem; color: var(--ink-2);
}
.post__byline .read { color: var(--gold-deep); font-weight: 500; }

/* Contact --------------------------------------------------- */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 920px) { .contact { grid-template-columns: 1fr; gap: 3rem; } }
.contact__left h2 { margin-bottom: 1rem; }
.contact__left p { color: var(--muted); max-width: 46ch; }
.contact__dl {
  margin: 2.5rem 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem 2rem;
}
.contact__dl div { padding-top: 1rem; border-top: 1px solid var(--line); }
.contact__dl dt {
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 4px;
}
.contact__dl dd { margin: 0; font-family: var(--display); font-size: 1.1rem; font-weight: 500; }

.form {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 2.2rem;
  border-radius: var(--r-md);
  display: flex; flex-direction: column; gap: 1.1rem;
  box-shadow: var(--shadow-1);
}
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form label {
  display: flex; flex-direction: column; gap: 6px;
  font-size: 0.72rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--muted);
  font-weight: 500;
}
.form input, .form textarea, .form select {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: 0.85rem 0.95rem;
  font-size: 0.95rem;
  color: var(--ink);
  font-weight: 400;
  text-transform: none; letter-spacing: 0;
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.form input:focus, .form textarea:focus, .form select:focus {
  outline: none; border-color: var(--ink); background: #fff;
}
.form .btn { align-self: flex-start; margin-top: 0.4rem; }
.form__ok { margin: 0; color: var(--olive); font-family: var(--accent); font-style: italic; font-size: 0.95rem; }

/* Footer ---------------------------------------------------- */
.foot {
  background: var(--ink);
  color: #c9c0b0;
  padding: 5rem 0 2rem;
}
.foot__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 980px) { .foot__inner { grid-template-columns: 1fr 1fr; } }
.foot__brand .brand__name { color: #fbf4e4; font-size: 1.25rem; letter-spacing: 0.18em; }
.foot__brand .brand__tag { color: #8e8472; }
.foot__brand p { color: #8e8472; margin: 1rem 0; font-size: 0.9rem; max-width: 32ch; }
.foot__socials { display: flex; gap: 10px; }
.foot__socials a {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: grid; place-items: center;
  color: #c9c0b0;
  transition: all .25s var(--ease);
}
.foot__socials a:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.foot h5 {
  font-family: var(--display);
  font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: #fbf4e4; margin: 0 0 1rem; font-weight: 500;
}
.foot ul { display: grid; gap: 0.55rem; font-size: 0.9rem; }
.foot a:hover { color: #fbf4e4; }
.foot__newsletter p { color: #8e8472; font-size: 0.88rem; margin: 0 0 1rem; }
.foot__newsletter form {
  display: flex; gap: 0; border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--r-pill); padding: 4px; background: rgba(255,255,255,0.03);
}
.foot__newsletter input {
  background: transparent; border: 0; padding: 10px 14px;
  color: #fbf4e4; flex: 1; outline: none; font-size: 0.88rem;
}
.foot__newsletter input::placeholder { color: #6d6355; }
.foot__newsletter button {
  background: var(--gold); color: var(--ink);
  padding: 10px 16px; border-radius: var(--r-pill);
  font-size: 0.82rem; font-weight: 500;
  transition: background .25s var(--ease);
}
.foot__newsletter button:hover { background: #cfa674; }

.foot__base {
  display: flex; justify-content: space-between;
  padding-top: 2rem; font-size: 0.8rem; color: #6d6355;
}
@media (max-width: 640px) { .foot__base { flex-direction: column; gap: 0.5rem; } }

/* Sticky WhatsApp fab --------------------------------------- */
.wa-fab {
  position: fixed;
  right: 24px; bottom: 24px;
  z-index: 90;
  width: 58px; height: 58px;
  background: var(--wa);
  color: #fff;
  border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: 0 20px 40px -15px rgba(37,211,102,0.5);
  transition: transform .25s var(--ease);
}
.wa-fab:hover { transform: scale(1.08); }
@media (max-width: 640px) { .wa-fab { right: 16px; bottom: 16px; width: 52px; height: 52px; } }

/* =========================================================
   VILLA DETAIL PAGE  (Le-Collectionist-inspired)
   ========================================================= */
.villa-page { background: #ffffff; }
.villa-page .loading { padding: 6rem 0; text-align: center; color: var(--muted); font-family: var(--accent); font-style: italic; }
.notfound { padding: 8rem 0; text-align: center; }
.notfound h1 { margin: 0.5rem auto 1rem; max-width: 18ch; }
.notfound p { color: var(--muted); max-width: 40ch; margin: 0 auto 2rem; }

.crumbs {
  display: flex; gap: 10px; align-items: center;
  font-size: 0.8rem;
  color: var(--muted);
  padding: 1.2rem 0 0.6rem;
}
.crumbs a { color: var(--ink-2); }
.crumbs a:hover { color: var(--gold-deep); }
.crumbs__current { color: var(--ink); }
.crumbs--light, .crumbs--light a, .crumbs--light .crumbs__current { color: rgba(251,244,228,0.85); }

/* ---- Hero (single image with photo count) ---- */
.lc-hero {
  position: relative;
  height: 78vh; min-height: 520px;
  overflow: hidden;
  background: var(--tint);
}
.lc-hero img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lc-hero__badge {
  position: absolute; top: 24px; left: 28px;
  background: rgba(255,255,255,0.94);
  padding: 8px 14px;
  border-radius: var(--r-pill);
  font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink); font-weight: 500;
}
.lc-hero__photos {
  position: absolute;
  bottom: 24px; right: 28px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
  padding: 12px 20px;
  border-radius: var(--r-pill);
  color: var(--ink);
  font-size: 0.88rem; font-weight: 500;
  display: inline-flex; align-items: center; gap: 10px;
  box-shadow: var(--shadow-2);
  transition: background .2s var(--ease), transform .2s var(--ease);
  cursor: pointer; border: 0;
}
.lc-hero__photos:hover { background: #fff; transform: translateY(-2px); }

/* ---- Title & facts ---- */
.lc-intro { padding: 3rem 0 2rem; max-width: 1100px; }
.lc-intro .kicker { margin-bottom: 1.2rem; }
.lc-intro h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
}
.lc-factline {
  display: flex; flex-wrap: wrap;
  gap: 0.4rem 1.4rem;
  font-size: 0.98rem;
  color: var(--ink-2);
  margin: 0 0 2rem;
}
.lc-factline span { display: inline-flex; align-items: center; gap: 10px; }
.lc-factline span + span::before {
  content: "·"; color: var(--line-2); margin-right: 1rem;
}
.lc-factline strong { font-weight: 500; color: var(--ink); }

.lc-desc {
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--ink-2);
  max-width: 68ch;
  margin: 0 0 1.5rem;
}
.lc-desc p { margin: 0 0 1.2rem; }
.lc-desc.is-collapsed p:nth-of-type(n+2) { display: none; }
.lc-readmore {
  color: var(--ink);
  font-size: 0.88rem; font-weight: 500;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
  cursor: pointer;
  transition: color .2s var(--ease), border-color .2s var(--ease);
}
.lc-readmore:hover { color: var(--gold-deep); border-color: var(--gold-deep); }

/* ---- Key features (icon row) ---- */
.lc-features {
  padding: 2rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 4rem;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}
@media (max-width: 900px) { .lc-features { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; } }
@media (max-width: 520px) { .lc-features { grid-template-columns: repeat(2, 1fr); } }
.lc-feature {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  text-align: left;
}
.lc-feature__icon {
  width: 40px; height: 40px;
  color: var(--gold-deep);
  display: grid; place-items: center;
}
.lc-feature__label {
  font-size: 0.85rem; color: var(--ink); font-weight: 500;
  line-height: 1.3;
}
.lc-feature__sub {
  font-size: 0.76rem; color: var(--muted);
}

/* ---- Section scaffolding ---- */
.lc-sec { padding: 3rem 0; border-top: 1px solid var(--line); }
.lc-sec:first-of-type { border-top: 0; padding-top: 0; }
.lc-sec__head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem; align-items: baseline;
  margin-bottom: 2rem;
}
.lc-sec__head h2 {
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  letter-spacing: -0.02em;
}
.lc-sec__num {
  font-family: var(--display);
  color: var(--gold-deep);
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

/* ---- Rooms ---- */
.lc-rooms-scroll {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.2rem;
}
.lc-room {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.lc-room:hover { transform: translateY(-3px); box-shadow: var(--shadow-2); }
.lc-room__img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--tint);
}
.lc-room__img img { width: 100%; height: 100%; object-fit: cover; }
.lc-room__body { padding: 1rem 1.1rem; }
.lc-room__body h4 { font-size: 1rem; margin-bottom: 4px; }
.lc-room__body p { font-size: 0.84rem; color: var(--muted); margin: 0; }
.lc-room__body .lc-room__cap { font-size: 0.78rem; color: var(--gold-deep, #b08e4a); margin-top: 3px; font-weight: 500; letter-spacing: 0.2px; }
.lc-room__icons {
  display: flex; gap: 8px; margin-top: 8px;
  color: var(--gold-deep);
}

/* ---- Modern amenities ---- */
.lc-amenities-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem 3.5rem;
}
@media (max-width: 820px) { .lc-amenities-grid { grid-template-columns: 1fr; gap: 1.8rem; } }
@media (max-width: 540px) { .lc-amenities-grid { gap: 1.4rem; } }
.lc-amenities-col h4 {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.78rem; margin-bottom: 1.4rem;
  padding-bottom: 0;
  border-bottom: 0;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--ink-2);
}
.lc-amen-dot {
  width: 6px; height: 6px;
  background: var(--gold-deep, #b08e4a);
  border-radius: 50%;
  display: inline-block;
}
.amen-tiles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
/* Mobile: keep 2-col (not 1-col) so the amenity list doesn't run to
   ~1000px. Tighter padding + smaller text + smaller icons make each
   tile sit comfortably even on narrow phones. */
@media (max-width: 540px) {
  .amen-tiles { grid-template-columns: repeat(2, 1fr); gap: 6px; }
  .amen-tile {
    padding: 9px 10px;
    gap: 8px;
    font-size: 0.8rem;
    border-radius: 9px;
    line-height: 1.25;
    min-width: 0;
  }
  .amen-tile svg { width: 16px; height: 16px; flex: 0 0 auto; }
  .amen-tile span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}
@media (max-width: 360px) {
  .amen-tile { font-size: 0.75rem; padding: 8px 9px; }
}
.amen-tile {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(154, 137, 100, .04);
  border: 1px solid rgba(154, 137, 100, .12);
  border-radius: 12px;
  font-size: 0.92rem;
  color: var(--ink, #1a1814);
  transition: background .2s var(--ease, ease), border-color .2s var(--ease, ease), transform .15s var(--ease, ease);
  line-height: 1.3;
}
.amen-tile:hover {
  background: rgba(201, 169, 106, .09);
  border-color: rgba(201, 169, 106, .35);
  transform: translateY(-1px);
}
.amen-tile svg {
  color: var(--gold-deep, #b08e4a);
  flex-shrink: 0;
  stroke-width: 1.6;
}
.amen-tile span {
  flex: 1;
  min-width: 0;
}

/* ---- Services (included + à la carte) ---- */
.lc-services-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
}
@media (max-width: 820px) { .lc-services-grid { grid-template-columns: 1fr; } }
.lc-services-col {
  padding: 2rem;
  background: var(--bg);
  border-radius: var(--r-md);
  border: 1px solid var(--line);
}
.lc-services-col h4 {
  display: flex; align-items: center; gap: 10px;
  font-size: 1rem; font-weight: 500;
  margin-bottom: 1rem;
  padding-bottom: 0.8rem; border-bottom: 1px solid var(--line);
}
.lc-services-col h4::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold);
}
.lc-services-col ul { display: grid; gap: 0.6rem; font-size: 0.92rem; color: var(--ink-2); }
.lc-services-col li { display: flex; justify-content: space-between; gap: 1rem; }
.lc-services-col .price { color: var(--muted); font-size: 0.85rem; white-space: nowrap; }

/* ---- Photo grid (all photos) ---- */
.lc-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
@media (max-width: 820px) { .lc-photos { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .lc-photos { grid-template-columns: 1fr; } }
.lc-photos__item {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--r-md);
  background: var(--tint);
  cursor: zoom-in;
}
.lc-photos__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.lc-photos__item:hover img { transform: scale(1.05); }

/* ---- Good to know ---- */
.lc-gtk {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 820px) { .lc-gtk { grid-template-columns: 1fr; } }
.lc-gtk__item {
  padding: 1.4rem;
  background: var(--bg);
  border-radius: var(--r-md);
  border: 1px solid var(--line);
}
.lc-gtk__item h5 {
  font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold-deep); margin-bottom: 0.8rem;
  font-weight: 600;
}
.lc-gtk__item p { margin: 0; color: var(--ink-2); font-size: 0.92rem; line-height: 1.55; }
.lc-gtk__item strong { color: var(--ink); display: block; margin-bottom: 2px; }

/* House-rules list (inside the .lc-gtk__item card) */
.lc-rules {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.lc-rules li {
  position: relative;
  padding-left: 1.1rem;
  color: var(--ink-2);
  font-size: 0.9rem;
  line-height: 1.5;
}
.lc-rules li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px; height: 5px;
  border-radius: 999px;
  background: var(--gold);
}
.lc-rules li + li { border-top: 1px solid var(--line); padding-top: 0.55rem; }
.lc-rules li + li::before { top: calc(0.55rem + 0.55em); }

/* ---- Surroundings (distances) ---- */
.lc-surroundings {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 900px) { .lc-surroundings { grid-template-columns: 1fr; } }
.lc-surroundings__map {
  aspect-ratio: 4 / 3;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--tint);
  position: relative;
}
.lc-surroundings__map img { width: 100%; height: 100%; object-fit: cover; }
.lc-surroundings__iframe {
  width: 100%; height: 100%;
  border: 0;
  display: block;
}
.lc-surroundings__list {
  display: grid; gap: 0;
}
.lc-surroundings__list li {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}
.lc-surroundings__list li:first-child { border-top: 1px solid var(--line); }
.lc-surroundings__list .place { color: var(--ink); font-weight: 500; }
.lc-surroundings__list .dist { color: var(--muted); font-family: var(--display); }

/* ---- Schedule-a-call callout ---- */
.lc-cta-call {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 2rem 2.5rem;
  background: var(--forest);
  color: #fbf4e4;
  border-radius: var(--r-md);
  margin: 2rem 0;
}
.lc-cta-call__avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--gold); color: var(--forest);
  display: grid; place-items: center;
  font-family: var(--display); font-size: 1.3rem; font-weight: 500;
}
.lc-cta-call h4 { color: #fbf4e4; margin-bottom: 4px; font-size: 1.15rem; }
.lc-cta-call p { color: rgba(251,244,228,0.75); margin: 0; font-size: 0.9rem; }
.lc-cta-call .btn--primary { background: var(--gold); color: var(--forest); }
.lc-cta-call .btn--primary:hover { background: #d1a977; }
@media (max-width: 760px) {
  .lc-cta-call {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    padding: 1.6rem 1.4rem;
    gap: 1rem;
  }
  .lc-cta-call__avatar { display: none; }
  .lc-cta-call h4 { font-size: 1.05rem; letter-spacing: 0.01em; }
  .lc-cta-call p { font-size: 0.86rem; max-width: 32ch; }
  .lc-cta-call .btn {
    width: auto;
    min-width: 0;
    padding: 0.7rem 1.6rem;
    font-size: 0.82rem;
    letter-spacing: 0.04em;
    border-radius: 999px;
  }
}

/* ---- Testimonials ---- */
.lc-testimonials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media (max-width: 820px) { .lc-testimonials { grid-template-columns: 1fr; } }
.lc-testimonial {
  padding: 2rem;
  background: var(--bg);
  border-radius: var(--r-md);
  border: 1px solid var(--line);
}
.lc-testimonial__stars { color: var(--gold); margin-bottom: 0.8rem; letter-spacing: 2px; }
.lc-testimonial p {
  font-family: var(--accent); font-style: italic;
  font-size: 1.08rem; line-height: 1.5;
  color: var(--ink); margin: 0 0 1rem;
}
.lc-testimonial__meta {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 0.8rem;
  border-top: 1px solid var(--line);
  font-size: 0.82rem;
}
.lc-testimonial__meta strong { font-weight: 500; }
.lc-testimonial__meta span { color: var(--muted); }

/* ---- Body layout: content + sticky booking ---- */
.lc-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3.5rem;
  padding: 3rem 0 5rem;
  align-items: start;
}
@media (max-width: 1100px) { .lc-layout { grid-template-columns: 1fr; } }

/* Sticky booking box — follows the user as they scroll within .lc-layout.
   Generous offset from the navbar so the widget feels like it's floating
   in the middle of the viewport, not glued to the navigation. */
.lc-book {
  position: sticky;
  top: 160px;
  max-height: calc(100vh - 200px);
  overflow-y: auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 1.8rem;
  box-shadow: var(--shadow-2);
  align-self: start;
}
.lc-book__from {
  font-size: 0.78rem; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.16em;
  margin-bottom: 4px;
}
.lc-book__price {
  font-family: var(--display);
  font-size: 2rem; font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 4px;
}
.lc-book__period {
  color: var(--muted); font-size: 0.88rem;
  margin-bottom: 1.4rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid var(--line);
}
.lc-book__dates {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; border: 1px solid var(--line);
  border-radius: var(--r-sm);
  margin-bottom: 0.6rem;
  overflow: hidden;
}
.lc-book__dates label {
  display: flex; flex-direction: column; gap: 2px;
  padding: 0.7rem 0.9rem;
  font-size: 0.66rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted); font-weight: 600;
  border-right: 1px solid var(--line);
  min-width: 0;                 /* let the input shrink rather than overflow */
}
.lc-book__dates label:last-child { border-right: 0; }
.lc-book__dates input {
  border: 0; padding: 0; background: transparent;
  font-size: 0.9rem; letter-spacing: 0; text-transform: none;
  color: var(--ink); font-weight: 400;
  width: 100%; min-width: 0;    /* fill the column, don't overflow it */
}
.lc-book__guests {
  display: block;
  padding: 0.7rem 0.9rem;
  font-size: 0.66rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted); font-weight: 600;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  margin-bottom: 1.2rem;
}
.lc-book__guests select {
  display: block; width: 100%;
  border: 0; padding: 0; background: transparent;
  margin-top: 2px;
  font-size: 0.9rem; letter-spacing: 0; text-transform: none;
  color: var(--ink); font-weight: 400;
}
.lc-book__cta-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem;
  margin-bottom: 1rem;
}
.lc-book__cta-row--single { grid-template-columns: 1fr; }
.lc-book__cta-row .btn { justify-content: center; padding: 0.95rem 1rem; font-size: 0.92rem; }

/* ── Standard booking widget: two-step inline form ─────────────────── */
.lc-step { animation: lcStepIn 0.28s cubic-bezier(0.22, 0.61, 0.36, 1); }
@keyframes lcStepIn {
  from { opacity: 0; transform: translateY(4px); }
  to   { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) { .lc-step { animation: none; } }

/* Step 2 recap strip — Back link + chosen-dates + guests pill */
.lc-recap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 0.9rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--line);
}
.lc-back {
  background: transparent;
  border: 0;
  padding: 4px 0;
  color: var(--gold-deep, #b08e4a);
  font-family: inherit;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: color 0.2s;
  flex: 0 0 auto;
}
.lc-back:hover { color: var(--ink); }
.lc-recap-text {
  font-size: 0.78rem;
  color: var(--muted);
  text-align: right;
  line-height: 1.4;
}

/* Contact fields — stacked labels with input below, matching .lc-book */
.lc-book__fields {
  display: grid;
  gap: 0.7rem;
  margin: 0 0 0.9rem;
}
.lc-book__fields label {
  display: flex;
  flex-direction: column;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  gap: 4px;
}
.lc-book__fields input,
.lc-book__fields textarea {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface, #fff);
  color: var(--ink);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: normal;
  text-transform: none;
  padding: 0.65rem 0.8rem;
  transition: border-color 0.2s;
}
.lc-book__fields textarea {
  resize: vertical;
  min-height: 70px;
  line-height: 1.5;
}
.lc-book__fields input:focus,
.lc-book__fields textarea:focus {
  outline: none;
  border-color: var(--ink);
}
.lc-book__fields input::placeholder,
.lc-book__fields textarea::placeholder { color: var(--muted-2, #aaa); }
.lc-hint {
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  color: var(--muted-2, #999);
  font-size: 0.72rem;
  margin-left: 4px;
}

/* Inline error / success panels */
.lc-bk-err {
  margin: 0.6rem 0 0;
  padding: 0.55rem 0.75rem;
  border: 1px solid rgba(176, 91, 76, 0.35);
  background: rgba(176, 91, 76, 0.06);
  color: #8a3a2b;
  border-radius: 8px;
  font-size: 0.82rem;
  line-height: 1.4;
}
.lc-bk-ok {
  margin: 0.6rem 0 0;
  padding: 0.6rem 0.75rem;
  border: 1px solid rgba(176, 142, 74, 0.35);
  background: rgba(176, 142, 74, 0.08);
  color: var(--gold-deep, #8a6d2e);
  border-radius: 8px;
  font-size: 0.82rem;
  line-height: 1.4;
}

/* Social-proof: live enquiry counter */
.lc-book__live {
  margin: 0.4rem 0 0.9rem;
  padding: 8px 12px;
  background: rgba(106, 170, 106, .08);
  border: 1px solid rgba(106, 170, 106, .35);
  border-radius: 99px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: #386a38;
  font-weight: 500;
  letter-spacing: 0.1px;
  line-height: 1.3;
}
.lc-book__live strong { color: #1f4a1f; font-weight: 700; }
.lc-book__live-dot,
.book-modal__live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #34c759;
  box-shadow: 0 0 0 0 rgba(52, 199, 89, 0.65);
  animation: liveDotPulse 1.6s ease-out infinite;
  flex-shrink: 0;
}
@keyframes liveDotPulse {
  0%   { box-shadow: 0 0 0 0   rgba(52, 199, 89, 0.7); }
  70%  { box-shadow: 0 0 0 8px rgba(52, 199, 89, 0); }
  100% { box-shadow: 0 0 0 0   rgba(52, 199, 89, 0); }
}

/* Modal version — slightly tighter */
.book-modal__live {
  margin: 6px 0 14px;
  padding: 7px 12px;
  background: rgba(106, 170, 106, .08);
  border: 1px solid rgba(106, 170, 106, .35);
  border-radius: 99px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: #386a38;
  font-weight: 500;
}
.book-modal__live strong { color: #1f4a1f; font-weight: 700; }

/* Live summary block (nights × rate = total) */
.lc-book__summary {
  margin: 0.8rem 0 1.1rem;
  padding: 0.9rem 1rem;
  background: rgba(176, 142, 74, .06);
  border: 1px solid rgba(176, 142, 74, .18);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: background .25s, border-color .25s;
}
.lc-book__summary[data-state="ok"] {
  background: rgba(176, 142, 74, .12);
  border-color: rgba(176, 142, 74, .35);
}
.lc-book__summary[data-state="error"] {
  background: rgba(201, 106, 106, .08);
  border-color: rgba(201, 106, 106, .4);
}
.lc-book__sum-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 0.84rem;
  color: var(--ink-2);
  gap: 12px;
}
.lc-book__sum-row em { font-style: normal; font-weight: 600; color: var(--ink); }
.lc-book__sum-val { font-variant-numeric: tabular-nums; color: var(--ink); font-weight: 500; }
.lc-book__sum-row--total {
  padding-top: 8px;
  border-top: 1px dashed rgba(176, 142, 74, .35);
  font-size: 0.92rem;
}
.lc-book__sum-row--total .lc-book__sum-label { color: var(--ink); font-weight: 500; }
.lc-book__sum-row--total .lc-book__sum-val {
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--gold-deep);
}
.lc-book__summary[data-state="empty"] .lc-book__sum-row,
.lc-book__summary[data-state="error"] .lc-book__sum-row { display: none; }
.lc-book__summary[data-state="ok"] .lc-book__sum-empty,
.lc-book__summary[data-state="ok"] .lc-book__sum-error { display: none; }
.lc-book__sum-empty,
.lc-book__sum-error {
  font-size: 0.82rem;
  color: var(--muted);
  text-align: center;
  font-family: var(--accent); font-style: italic;
  margin: 0;
}
.lc-book__sum-error { color: #b46060; font-style: normal; font-family: inherit; font-weight: 500; }
.lc-book__note {
  font-size: 0.78rem;
  color: var(--muted);
  text-align: center;
  font-family: var(--accent); font-style: italic;
  margin: 0;
}
.lc-book__perks {
  display: grid; gap: 8px;
  margin-top: 1.4rem; padding-top: 1.2rem;
  border-top: 1px solid var(--line);
  font-size: 0.84rem; color: var(--ink-2);
}
.lc-book__perks li { display: flex; gap: 10px; }
.lc-book__perks li svg { color: var(--gold-deep); flex: 0 0 auto; }

/* Recommended (carousel-like grid) */
.lc-reco {
  padding: 5rem 0;
  background: var(--bg);
}

/* =========================================================
   JOURNAL POST PAGE
   ========================================================= */
.pp-progress {
  position: fixed; top: 0; left: 0; right: 0;
  height: 3px; background: var(--gold);
  transform-origin: 0 50%;
  transform: scaleX(0);
  z-index: 100;
  transition: transform .1s linear;
}

.pp-cover {
  position: relative;
  height: 60vh; min-height: 440px;
  overflow: hidden;
  background: var(--forest);
}
.pp-cover__img { position: absolute; inset: 0; }
.pp-cover__img img { width: 100%; height: 100%; object-fit: cover; }
.pp-cover::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.15) 40%, rgba(0,0,0,0.55) 100%);
}
.pp-cover__meta { position: absolute; inset: auto 0 0 0; z-index: 2; padding-bottom: 1.5rem; }

.pp-head {
  /* longhand vertical-only — the shorthand zero on horizontal padding was
     wiping out the .container gutter and pushing the title + body flush
     against the viewport edge on phones. */
  padding-top: 4rem;
  padding-bottom: 2rem;
  max-width: 820px;
}
.pp-head h1 { margin: 0.8rem 0 1.2rem; font-size: clamp(2.2rem, 4.5vw, 3.8rem); }
.pp-dek {
  font-family: var(--accent); font-style: italic;
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  color: var(--ink-2);
  line-height: 1.45;
  margin: 0 0 2.5rem;
  max-width: 58ch;
}
.pp-byline { display: flex; gap: 12px; align-items: center; padding: 1.5rem 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.pp-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gold); color: var(--ink);
  display: grid; place-items: center;
  font-family: var(--display); font-weight: 500; font-size: 0.92rem;
}
/* Logo variant: black rounded-square tile with the J&J wordmark inside,
   matching the concierge tile on Ultra Luxury booking widgets. */
.pp-avatar--logo {
  width: 48px; height: 48px;
  background: #100C09;
  border: 1px solid rgba(237, 228, 213, 0.18);
  border-radius: 12px;
  overflow: hidden;
  color: #FFFFFF;
  padding: 0;
}
.pp-avatar--logo svg { width: 100%; height: 100%; display: block; }
.pp-avatar--logo svg text { fill: #FFFFFF !important; }
.pp-byline__name { font-weight: 500; font-size: 0.94rem; }
.pp-byline__role { font-size: 0.8rem; color: var(--muted); letter-spacing: 0.06em; }

.pp-body {
  max-width: 720px;
  /* longhand vertical-only — keep the .container's horizontal gutter so
     the drop-cap and prose don't run flush to the viewport edge on mobile. */
  padding-top: 3rem;
  padding-bottom: 5rem;
  font-size: 1.06rem;
  line-height: 1.75;
  color: var(--ink-2);
}
.pp-body h2 {
  font-family: var(--display);
  font-size: 1.65rem;
  margin: 3rem 0 1rem;
  color: var(--ink);
}
.pp-body p { margin: 0 0 1.4rem; }
.pp-body p:first-of-type::first-letter {
  font-family: var(--accent);
  font-size: 4.5rem;
  float: left;
  line-height: 0.85;
  padding: 6px 10px 0 0;
  color: var(--gold-deep);
  font-weight: 500;
}
.pp-body blockquote {
  font-family: var(--accent); font-style: italic;
  font-size: 1.5rem; line-height: 1.45;
  border-left: 3px solid var(--gold);
  padding: 0.3rem 0 0.3rem 1.5rem;
  margin: 2rem 0;
  color: var(--ink);
}
.pp-body figure { margin: 2.5rem 0; }
.pp-body figure img { border-radius: var(--r-md); }
.pp-body figcaption {
  font-size: 0.82rem; color: var(--muted);
  text-align: center; margin-top: 10px; font-style: italic;
}
.pp-related { padding: 5rem 0; }

/* =========================================================
   Reveal on scroll
   ========================================================= */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

/* =========================================================
   Reviews — guest-review module
   ========================================================= */
.rv-summary {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 32px;
  align-items: center;
  padding: 28px 32px;
  background: linear-gradient(135deg, #fdf9f0 0%, #f7efde 100%);
  border: 1px solid #e6d9bd;
  border-radius: 16px;
  margin-bottom: 28px;
}
@media (max-width: 720px) {
  .rv-summary { grid-template-columns: 1fr; gap: 16px; padding: 22px; text-align: center; }
}
.rv-summary__big { display: flex; flex-direction: column; align-items: flex-start; gap: 4px; }
@media (max-width: 720px) { .rv-summary__big { align-items: center; } }
.rv-summary__avg {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 56px;
  font-style: italic;
  color: #1a1814;
  line-height: 1;
  font-weight: 400;
}
.rv-summary__avg span {
  font-size: 18px;
  color: #948568;
  font-style: normal;
  margin-left: 4px;
}
.rv-summary__stars {
  color: #c9a96a;
  font-size: 18px;
  letter-spacing: 1px;
  margin-top: 4px;
}
.rv-summary__count {
  font-size: 13px;
  color: #6b5e45;
  margin-top: 4px;
  letter-spacing: .3px;
}
.rv-bars { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.rv-bar {
  display: grid;
  grid-template-columns: 38px 1fr 36px;
  gap: 10px;
  align-items: center;
  font-size: 12px;
  color: #6b5e45;
}
.rv-bar__lbl { font-weight: 600; color: #1a1814; }
.rv-bar__track {
  height: 6px;
  background: rgba(154, 137, 100, .2);
  border-radius: 99px;
  overflow: hidden;
  display: block;
}
.rv-bar__fill {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #c9a96a, #b08e4a);
  border-radius: 99px;
  transition: width .8s var(--ease, ease);
}
.rv-bar__num { text-align: right; font-variant-numeric: tabular-nums; }

.rv-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}
@media (max-width: 720px) { .rv-grid { grid-template-columns: 1fr; } }

.rv-card {
  background: #fff;
  border: 1px solid #ece4d2;
  border-radius: 12px;
  padding: 20px;
  transition: border-color .2s var(--ease, ease), transform .2s var(--ease, ease), box-shadow .2s var(--ease, ease);
}
.rv-card:hover {
  border-color: #d8c69b;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(60, 48, 25, .06);
}
.rv-card__head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.rv-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c9a96a, #8a6f3a);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .5px;
  flex-shrink: 0;
}
.rv-who { flex: 1; min-width: 0; line-height: 1.3; }
.rv-who strong { display: block; font-size: 14px; color: #1a1814; }
.rv-who span { font-size: 12px; color: #948568; }
.rv-stars {
  color: #c9a96a;
  font-size: 13px;
  letter-spacing: .8px;
  flex-shrink: 0;
}
.rv-quote {
  font-size: 14px;
  line-height: 1.65;
  color: #3a3328;
  margin: 0;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 300;
}
.rv-quote::before { content: '"'; color: #c9a96a; margin-right: 1px; }
.rv-quote::after  { content: '"'; color: #c9a96a; margin-left: 1px; }

.rv-more {
  display: block;
  margin: 4px auto 0;
  min-width: 240px;
}

/* =========================================================
   Inline auto-links inside journal articles
   ========================================================= */
.pp-body .rel-link {
  color: var(--gold-deep, #b08e4a);
  text-decoration: underline;
  text-decoration-color: rgba(176, 142, 74, .35);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: text-decoration-color .2s ease, color .2s ease;
}
.pp-body .rel-link:hover {
  color: #8a6f3a;
  text-decoration-color: var(--gold-deep, #b08e4a);
}

/* Villa name as inline link inside an article */
.pp-body .villa-link {
  color: var(--gold-deep, #b08e4a);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px dashed rgba(176, 142, 74, .55);
  padding-bottom: 1px;
  transition: color .2s ease, border-color .2s ease, background .2s ease;
}
.pp-body .villa-link:hover {
  color: #6e561e;
  border-bottom-color: var(--gold-deep, #b08e4a);
  background: rgba(201, 169, 106, .08);
}

/* =========================================================
   Villa-mention preview card (embedded inside articles)
   ========================================================= */
.vmention {
  margin: 1.6rem 0;
  border: 1px solid #ece4d2;
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}
.vmention:hover {
  border-color: #d8c69b;
  box-shadow: 0 10px 28px rgba(60, 48, 25, .08);
  transform: translateY(-2px);
}
.vmention__inner {
  display: grid;
  grid-template-columns: 220px 1fr;
  text-decoration: none;
  color: inherit;
  min-height: 170px;
}
@media (max-width: 640px) {
  .vmention__inner { grid-template-columns: 1fr; }
}
.vmention__media {
  position: relative;
  background: #f5ecd8;
  overflow: hidden;
}
.vmention__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.vmention:hover .vmention__media img { transform: scale(1.04); }
@media (max-width: 640px) {
  .vmention__media { aspect-ratio: 16/9; }
}
.vmention__noimg {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f1e6c7 0%, #d8c69b 100%);
}
.vmention__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #1a1814;
  color: #fbf4e4;
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 99px;
  font-weight: 500;
}
.vmention__body {
  padding: 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.vmention__loc {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: #948568;
  font-weight: 500;
}
.vmention__name {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 22px;
  font-weight: 400;
  color: #1a1814;
  line-height: 1.15;
  margin: 0;
}
.vmention__tag {
  font-size: 13px;
  color: #6b5e45;
  line-height: 1.55;
  margin: 2px 0 4px;
  font-style: italic;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 300;
}
.vmention__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12px;
  color: #6b5e45;
  margin-top: 2px;
}
.vmention__facts span {
  display: inline-flex;
  align-items: center;
}
.vmention__rating {
  color: var(--gold-deep, #b08e4a);
  font-weight: 600;
}
.vmention__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #ece4d2;
  gap: 10px;
  flex-wrap: wrap;
}
.vmention__price {
  font-size: 13px;
  color: #6b5e45;
}
.vmention__price strong {
  color: #1a1814;
  font-size: 16px;
  font-weight: 600;
}
.vmention__cta {
  font-size: 13px;
  color: var(--gold-deep, #b08e4a);
  font-weight: 600;
  letter-spacing: .3px;
  transition: transform .25s ease;
}
.vmention:hover .vmention__cta {
  transform: translateX(2px);
}

/* =========================================================
   Journal index page
   ========================================================= */
.jx-hero {
  padding: 5rem 0 2rem;
  background: linear-gradient(180deg, #fdf9f0 0%, #f7efde 100%);
  border-bottom: 1px solid #e6d9bd;
}
.jx-hero h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 300;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 1.05;
  margin: 0.5rem 0 1rem;
  color: #1a1814;
}
.jx-hero h1 .serif { font-style: italic; }
.jx-hero__lede {
  font-size: 1.05rem;
  color: #6b5e45;
  max-width: 620px;
  line-height: 1.65;
  margin-bottom: 1.6rem;
}
.jx-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}
.jx-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 9px 16px;
  border-radius: 99px;
  border: 1px solid rgba(176, 142, 74, .35);
  background: rgba(255,255,255,.6);
  color: #1a1814;
  text-decoration: none;
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .2px;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}
.jx-chip span {
  color: #948568;
  font-weight: 400;
  font-size: .8rem;
}
.jx-chip:hover {
  background: #fff;
  border-color: var(--gold-deep, #b08e4a);
}
.jx-chip.is-active {
  background: #1a1814;
  border-color: #1a1814;
  color: #fbf4e4;
}
.jx-chip.is-active span { color: rgba(251,244,228,.55); }

/* Featured */
.jx-featured { padding: 3rem 0 1rem; }
.jx-feat {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid #ece4d2;
  transition: box-shadow .3s ease, transform .3s ease;
}
.jx-feat:hover {
  box-shadow: 0 14px 38px rgba(60, 48, 25, .1);
  transform: translateY(-3px);
}
@media (max-width: 820px) { .jx-feat { grid-template-columns: 1fr; } }
.jx-feat__img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #f5ecd8;
}
.jx-feat__img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .6s ease;
}
.jx-feat:hover .jx-feat__img img { transform: scale(1.04); }
.jx-feat__body {
  padding: 2.4rem 2.6rem;
  display: flex; flex-direction: column; justify-content: center; gap: 1rem;
}
@media (max-width: 820px) { .jx-feat__body { padding: 1.8rem; } }
.jx-feat__body h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.2;
  color: #1a1814;
  margin: 0;
}
.jx-feat__body p {
  font-size: .98rem;
  line-height: 1.7;
  color: #6b5e45;
}
.jx-feat__cta {
  font-size: .9rem;
  color: var(--gold-deep, #b08e4a);
  font-weight: 600;
  letter-spacing: .3px;
  margin-top: 0.5rem;
}

/* Category sections */
.jx-cat { padding: 3rem 0 2.5rem; }
.jx-cat:nth-of-type(odd) { background: #fcfaf4; }
.jx-cat__head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 1.6rem;
  border-bottom: 1px solid #e6d9bd;
  padding-bottom: 1rem;
}
.jx-cat__head h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-size: clamp(1.6rem, 3.4vw, 2.2rem);
  color: #1a1814;
  line-height: 1.2;
  margin-top: 0.25rem;
}
.jx-cat__count {
  font-size: 0.7em;
  color: #948568;
  font-style: italic;
  margin-left: 0.4em;
  font-weight: 300;
}
.jx-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
@media (max-width: 980px) { .jx-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .jx-grid { grid-template-columns: 1fr; } }

.jx-card {
  display: flex;
  flex-direction: column;
  border: 1px solid #ece4d2;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  text-decoration: none;
  color: inherit;
  transition: border-color .2s ease, transform .25s ease, box-shadow .25s ease;
}
.jx-card:hover {
  border-color: #d8c69b;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(60, 48, 25, .07);
}
.jx-card__img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #f5ecd8;
}
.jx-card__img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .5s ease;
}
.jx-card:hover .jx-card__img img { transform: scale(1.05); }
.jx-card__noimg { width:100%; height:100%; background: linear-gradient(135deg, #f1e6c7 0%, #d8c69b 100%); }
.jx-card__body {
  padding: 1.1rem 1.2rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex: 1;
}
.jx-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.jx-tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 99px;
  background: rgba(201,169,106,.15);
  color: var(--gold-deep, #b08e4a);
  font-weight: 600;
}
.jx-card__read {
  font-size: 11px;
  color: #948568;
}
.jx-card h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-size: 1.12rem;
  line-height: 1.3;
  color: #1a1814;
  margin: 0;
}
.jx-card__dek {
  font-size: .88rem;
  line-height: 1.55;
  color: #6b5e45;
  margin: 0;
  flex: 1;
}
.jx-card__byline {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: #948568;
  border-top: 1px solid #f0e8d3;
  padding-top: 0.7rem;
  margin-top: 0.4rem;
}

/* =========================================================
   Lightbox
   ========================================================= */
.lb-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(10, 9, 7, 0.96);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .25s ease;
}
.lb-overlay.is-open { opacity: 1; pointer-events: all; }

.lb-stage {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  width: 100%; flex: 1;
  min-height: 0;
  padding: 0 64px;
}
.lb-img-wrap {
  max-width: min(1200px, 90vw);
  max-height: 75vh;
  display: flex; align-items: center; justify-content: center;
}
.lb-img-wrap img {
  max-width: 100%; max-height: 75vh;
  border-radius: 6px;
  object-fit: contain;
  display: block;
  transition: opacity .2s ease;
  user-select: none;
}
.lb-img-wrap img.lb-fade { opacity: 0; }

.lb-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15);
  color: #fff; border-radius: 50%; width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 20px; transition: background .2s;
  backdrop-filter: blur(4px);
}
.lb-btn:hover { background: rgba(255,255,255,.22); }
.lb-btn--prev { left: 14px; }
.lb-btn--next { right: 14px; }

.lb-close {
  position: absolute; top: 16px; right: 20px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15);
  color: #fff; border-radius: 50%; width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 18px; z-index: 2; transition: background .2s;
}
.lb-close:hover { background: rgba(255,255,255,.22); }

.lb-counter {
  color: rgba(255,255,255,.55); font-size: 13px; letter-spacing: .5px;
  padding: 10px 0 8px; flex-shrink: 0;
}

.lb-thumbs {
  display: flex; gap: 6px; overflow-x: auto; padding: 8px 16px 16px;
  scrollbar-width: none; max-width: 100%;
  flex-shrink: 0;
}
.lb-thumbs::-webkit-scrollbar { display: none; }
.lb-thumb {
  width: 60px; height: 44px; border-radius: 4px; overflow: hidden;
  flex-shrink: 0; cursor: pointer; border: 2px solid transparent;
  transition: border-color .18s, opacity .18s;
  opacity: .5;
}
.lb-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; pointer-events: none; }
.lb-thumb.is-active { border-color: #c9a96a; opacity: 1; }
.lb-thumb:hover { opacity: .85; }

@media (max-width: 600px) {
  .lb-stage { padding: 0 44px; }
  .lb-btn { width: 38px; height: 38px; font-size: 16px; }
  .lb-thumbs { display: none; }
}

/* =========================================================
   MOBILE / RESPONSIVE BLOCK
   ========================================================= */

/* Prevent horizontal scroll caused by overflowing children — but only on mobile.
   Setting overflow on <html>/<body> at any width breaks `position: sticky`
   for every descendant (the sticky booking sidebar etc.), so restrict it
   to widths where we don't rely on sticky behaviour. */
@media (max-width: 1100px) {
  html, body { overflow-x: clip; max-width: 100%; }
}
img, video { max-width: 100%; height: auto; }

/* ───────── Hamburger menu ───────── */
.nav__burger {
  display: none;
  width: 40px; height: 40px;
  background: transparent;
  border: 1px solid rgba(0,0,0,.1);
  border-radius: 6px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  padding: 0;
  transition: border-color .2s;
}
.nav__burger:hover { border-color: var(--gold-deep, #b08e4a); }
.nav__burger span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}
.nav__burger.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ── Drawer overlay ── */
.nav__drawer {
  position: fixed;
  inset: 0;
  background: rgba(15, 11, 4, .58);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  z-index: 9000;
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s ease;
}
.nav__drawer.is-open { opacity: 1; pointer-events: all; }
.nav__drawer__inner {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: min(88vw, 380px);
  background: #fbf8f1;
  padding: 0;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.22,.61,.36,1);
  overflow-y: auto;
  box-shadow: -10px 0 40px rgba(20, 14, 6, .22);
}
.nav__drawer.is-open .nav__drawer__inner { transform: translateX(0); }

/* ── Header strip: brand + close ── */
.nav__drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px 18px;
  border-bottom: 1px solid rgba(176, 142, 74, .15);
}
.nav__drawer__brand {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav__drawer__brand strong {
  font-family: "Cinzel", "Fraunces", Georgia, serif;
  font-weight: 500;
  font-size: 1.05rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #1a1814;
}
.nav__drawer__brand span {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: 0.7rem;
  color: #948568;
  margin-top: 3px;
  letter-spacing: 0.3px;
}
.nav__drawer__close {
  width: 38px; height: 38px;
  border: 1px solid rgba(176, 142, 74, .25);
  background: transparent;
  font-size: 20px; line-height: 1;
  cursor: pointer; color: #1a1814;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background .2s, border-color .2s, transform .2s;
}
.nav__drawer__close:hover { background: #f3ead3; border-color: var(--gold-deep, #b08e4a); transform: rotate(90deg); }

/* ── Nav links list ── */
.nav__drawer__nav {
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
}
.nav__drawer__nav > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 10px;
  font-size: 1.08rem;
  color: #1a1814;
  border-bottom: 1px solid rgba(176, 142, 74, .12);
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: padding .25s ease, color .25s ease;
  position: relative;
}
.nav__drawer__nav > a:last-child { border-bottom: 0; }
.nav__drawer__nav > a::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 0;
  height: 1px;
  background: var(--gold-deep, #b08e4a);
  transition: width .3s ease;
  transform: translateY(-50%);
}
.nav__drawer__nav > a:hover { color: var(--gold-deep, #b08e4a); padding-left: 22px; }
.nav__drawer__nav > a:hover::before { width: 14px; }
.nav__drawer__nav > a .arr {
  color: rgba(176, 142, 74, 0.5);
  font-size: 1.1rem;
  transition: transform .25s ease, color .25s ease;
}
.nav__drawer__nav > a:hover .arr { color: var(--gold-deep, #b08e4a); transform: translateX(3px); }

/* ── Section labels ── */
.nav__drawer__label {
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #948568;
  padding: 22px 24px 10px;
  font-weight: 600;
}

/* ── CTAs ── */
.nav__drawer__cta {
  padding: 0 22px 8px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.nav__drawer__cta .btn {
  width: 100%;
  justify-content: center;
  padding: 14px;
  font-size: 0.92rem;
}
/* keep button text colours from being overridden by the generic <a> rule */
.nav__drawer__cta a.btn--primary { color: #fbf4e4 !important; }
.nav__drawer__cta a.btn--wa      { color: #fff !important; }
.nav__drawer__cta a.btn--outline { color: #1a1814 !important; }

/* ── Phone numbers ── */
.nav__drawer__phones {
  padding: 0 24px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.nav__drawer__phones a {
  display: grid;
  grid-template-columns: 64px 1fr;
  align-items: center;
  padding: 9px 12px;
  background: rgba(176, 142, 74, .06);
  border-radius: 8px;
  color: #1a1814;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background .2s, border-color .2s;
}
.nav__drawer__phones a:hover {
  background: rgba(176, 142, 74, .12);
  border-color: rgba(176, 142, 74, .35);
}
.nav__drawer__phones .region {
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #948568;
  font-weight: 600;
}
.nav__drawer__phones .num {
  font-size: 0.92rem;
  color: #1a1814;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.2px;
}

/* ── Email row ── */
.nav__drawer__email {
  padding: 12px 24px 26px;
  margin-top: auto;
  border-top: 1px solid rgba(176, 142, 74, .15);
  font-size: 0.85rem;
  color: #6b5e45;
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav__drawer__email a { color: var(--gold-deep, #b08e4a); text-decoration: none; }
.nav__drawer__email a:hover { text-decoration: underline; }
.nav__drawer__email svg { color: var(--gold-deep, #b08e4a); flex-shrink: 0; }

/* =========================================================
   Celebrity-guest popup notifications
   ========================================================= */
.celeb-popup-wrap {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 80;
  width: min(360px, calc(100vw - 40px));
  pointer-events: none;
}
@media (max-width: 760px) {
  .celeb-popup-wrap {
    left: 12px;
    right: 12px;
    bottom: 88px; /* sit above the sticky mobile CTA on villa pages */
    width: auto;
  }
}
.celeb-popup {
  pointer-events: auto;
  opacity: 0;
  transform: translateY(28px) scale(.97);
  transition:
    opacity .5s cubic-bezier(.22,.61,.36,1),
    transform .5s cubic-bezier(.22,.61,.36,1);
  margin-top: 10px;
  will-change: transform, opacity;
}
.celeb-popup.is-in  { opacity: 1; transform: translateY(0) scale(1); }
.celeb-popup.is-out { opacity: 0; transform: translateY(28px) scale(.97); }

.celeb-popup__card {
  position: relative;
  background: #fff;
  border: 1px solid #ece4d2;
  border-radius: 14px;
  padding: 14px 16px 14px 14px;
  box-shadow: 0 18px 44px rgba(20, 14, 6, .14), 0 2px 10px rgba(20, 14, 6, .06);
  overflow: hidden;
}
.celeb-popup__card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, #c9a96a 0%, #8a6f3a 100%);
}
.celeb-popup__top {
  display: flex;
  align-items: center;
  gap: 12px;
}
.celeb-popup__avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a1814 0%, #3a3328 100%);
  color: #fbf4e4;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  flex-shrink: 0;
  border: 1.5px solid #c9a96a;
}
.celeb-popup__id { flex: 1; min-width: 0; line-height: 1.25; }
.celeb-popup__kicker {
  display: block;
  font-size: 10px;
  color: #b08e4a;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}
.celeb-popup__id strong {
  display: block;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: 1.05rem;
  color: #1a1814;
  margin-top: 2px;
  letter-spacing: -0.01em;
}
.celeb-popup__close {
  position: absolute;
  top: 8px; right: 8px;
  width: 26px; height: 26px;
  border: none;
  background: transparent;
  color: #948568;
  font-size: 18px; line-height: 1;
  cursor: pointer;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, color .2s;
}
.celeb-popup__close:hover { background: #f4ecd9; color: #1a1814; }
.celeb-popup__note {
  margin: 9px 0 0;
  font-size: 0.83rem;
  color: #5e533f;
  line-height: 1.5;
}

/* Villa preview inside the popup */
.celeb-popup__villa {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  padding: 10px;
  background: linear-gradient(135deg, #fdf9f0 0%, #f7efde 100%);
  border: 1px solid #e6d9bd;
  border-radius: 10px;
  text-decoration: none;
  color: inherit;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.celeb-popup__villa:hover {
  border-color: #c9a96a;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(60, 48, 25, .07);
}
.celeb-popup__villa-img {
  width: 80px; height: 80px;
  flex-shrink: 0;
  border-radius: 7px;
  overflow: hidden;
  background: #efe5cc;
}
.celeb-popup__villa-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .4s ease;
}
.celeb-popup__villa:hover .celeb-popup__villa-img img { transform: scale(1.06); }
.celeb-popup__villa-body {
  display: flex; flex-direction: column; gap: 3px;
  min-width: 0;
  line-height: 1.3;
  justify-content: center;
}
.celeb-popup__villa-loc {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  color: #b08e4a;
  font-weight: 600;
}
.celeb-popup__villa-body strong {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: 0.95rem;
  color: #1a1814;
  letter-spacing: -0.005em;
}
.celeb-popup__villa-meta {
  font-size: 11px;
  color: #6b5e45;
}
.celeb-popup__villa-cta {
  font-size: 11px;
  color: #b08e4a;
  font-weight: 600;
  margin-top: 2px;
  letter-spacing: 0.2px;
}
.celeb-popup__villa:hover .celeb-popup__villa-cta { color: #8a6f3a; }

/* =========================================================
   Simple page (About / Press / Contact)
   ========================================================= */
.page-hero {
  background: linear-gradient(180deg, #fdf9f0 0%, #f7efde 100%);
  border-bottom: 1px solid #e6d9bd;
  padding: 5rem 0 3rem;
}
.page-hero h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 300;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.05;
  margin: 0.5rem 0 1rem;
  color: #1a1814;
  max-width: 16ch;
}
.page-hero h1 .serif { font-style: italic; }
.page-hero p.lede {
  font-size: 1.05rem;
  color: #6b5e45;
  max-width: 620px;
  line-height: 1.65;
}
.page-section { padding: 3rem 0; }
.page-section + .page-section { border-top: 1px solid #f0e8d3; }
.page-section h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: #1a1814;
  margin-bottom: 1rem;
}
.page-section p,
.page-section li {
  font-size: 1rem;
  line-height: 1.75;
  color: #3a3328;
  margin-bottom: 1rem;
}
.page-section ul { padding-left: 1.2rem; }
.page-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
@media (max-width: 820px) { .page-grid-2 { grid-template-columns: 1fr; gap: 2rem; } }

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-top: 1.5rem;
}
@media (max-width: 760px) { .value-grid { grid-template-columns: 1fr; } }
.value-card {
  background: #fff;
  border: 1px solid #ece4d2;
  border-radius: 12px;
  padding: 1.5rem;
}
.value-card h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: 1.15rem;
  color: #1a1814;
  margin-bottom: 0.6rem;
}
.value-card p { font-size: 0.92rem; line-height: 1.65; color: #6b5e45; margin: 0; }

.company-card {
  background: #fbf8f1;
  border: 1px solid #ece4d2;
  border-radius: 14px;
  padding: 1.8rem 2rem;
}
.company-card h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: 1.2rem;
  color: #1a1814;
  margin-bottom: 1rem;
}
.company-card dl {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 8px 16px;
  font-size: 0.92rem;
}
@media (max-width: 540px) { .company-card dl { grid-template-columns: 1fr; gap: 4px 0; } }
.company-card dt { color: #948568; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 1px; align-self: center; font-weight: 600; }
.company-card dd { color: #1a1814; margin: 0; }
@media (max-width: 540px) { .company-card dd { margin-bottom: 0.4rem; } }
.company-card dd address { font-style: normal; line-height: 1.6; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 920px) { .contact-grid { grid-template-columns: 1fr; gap: 2rem; } }
.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-card {
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: #fbf8f1;
  border: 1px solid #ece4d2;
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.contact-card:hover {
  border-color: #c9a96a;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(60, 48, 25, .06);
}
.contact-card__icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c9a96a, #8a6f3a);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
}
.contact-card__body { line-height: 1.35; }
.contact-card__body span {
  display: block;
  font-size: 0.72rem;
  color: #948568;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-weight: 600;
}
.contact-card__body strong {
  display: block;
  color: #1a1814;
  font-size: 1.02rem;
  margin-top: 2px;
  font-weight: 500;
}

/* Press kit links */
.press-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}
@media (max-width: 760px) { .press-list { grid-template-columns: 1fr; } }
.press-list a {
  padding: 14px 18px;
  background: #fbf8f1;
  border: 1px solid #ece4d2;
  border-radius: 10px;
  color: #1a1814;
  text-decoration: none;
  font-size: 0.95rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: border-color .2s, background .2s;
}
.press-list a:hover { border-color: #c9a96a; background: #f4ecd9; }
.press-list a::after { content: "→"; color: #b08e4a; }

/* =========================================================
   Legal pages (Terms / Privacy)
   ========================================================= */
.legal-wrap { max-width: 760px; margin: 0 auto; padding: 2rem 0 3rem; }
.legal-wrap .meta {
  font-size: 0.82rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #ece4d2;
}
.legal-wrap h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-size: 1.5rem;
  color: #1a1814;
  margin: 2.4rem 0 0.8rem;
  scroll-margin-top: 100px;
}
.legal-wrap h2:first-of-type { margin-top: 0; }
.legal-wrap h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: 1.05rem;
  color: #1a1814;
  margin: 1.4rem 0 0.5rem;
}
.legal-wrap p,
.legal-wrap li {
  font-size: 0.96rem;
  line-height: 1.75;
  color: #3a3328;
  margin-bottom: 0.9rem;
}
.legal-wrap ul, .legal-wrap ol { padding-left: 1.4rem; margin-bottom: 1rem; }
.legal-wrap li { margin-bottom: 0.4rem; }
.legal-wrap strong { color: #1a1814; }
.legal-wrap a { color: var(--gold-deep, #b08e4a); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
.legal-wrap a:hover { color: #8a6f3a; }
.legal-toc {
  background: #fbf8f1;
  border: 1px solid #ece4d2;
  border-radius: 10px;
  padding: 1rem 1.4rem;
  margin-bottom: 2rem;
}
.legal-toc__label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--muted);
  margin-bottom: 0.5rem;
  font-weight: 600;
  display: block;
}
.legal-toc ol { columns: 2; column-gap: 2rem; margin: 0; padding-left: 1.2rem; }
@media (max-width: 600px) { .legal-toc ol { columns: 1; } }
.legal-toc li { font-size: 0.86rem; margin-bottom: 0.25rem; line-height: 1.5; }
.legal-toc a { text-decoration: none; }

/* =========================================================
   Currency switcher (top-bar inline + drawer chips)
   ========================================================= */
.cur-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.78rem;
  letter-spacing: 0.4px;
}
.cur-toggle [data-currency-toggle] {
  color: var(--muted, #8a7f6e);
  text-decoration: none;
  padding: 2px 6px;
  border-radius: 99px;
  transition: color .15s, background .15s;
  line-height: 1;
}
.cur-toggle [data-currency-toggle]:hover { color: var(--ink); }
.cur-toggle [data-currency-toggle].is-active {
  color: var(--gold-deep, #b08e4a);
  font-weight: 600;
}
.cur-toggle .sep { color: var(--line, #e6dfd0); margin: 0 1px; }

/* Drawer currency chips */
.nav__drawer__currency {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 0 22px 6px;
}
.nav__drawer__currency button {
  background: rgba(176, 142, 74, .06);
  border: 1px solid rgba(176, 142, 74, .25);
  color: #1a1814;
  border-radius: 8px;
  padding: 10px 12px;
  font-family: inherit;
  font-size: 0.85rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  letter-spacing: 0.3px;
  transition: background .2s, border-color .2s, color .2s;
}
.nav__drawer__currency button.is-active {
  background: linear-gradient(135deg, #c9a96a, #8a6f3a);
  border-color: #8a6f3a;
  color: #fbf4e4;
  font-weight: 600;
}
.nav__drawer__currency button:hover:not(.is-active) {
  background: rgba(176, 142, 74, .14);
  border-color: rgba(176, 142, 74, .45);
}

/* =========================================================
   Careers modal
   ========================================================= */
.careers-modal {
  position: fixed; inset: 0;
  z-index: 9500;
  display: none;
  align-items: center; justify-content: center;
  padding: 20px;
}
.careers-modal.is-open { display: flex; }
.careers-modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(15, 11, 4, 0.66);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  animation: cmFade .25s ease;
}
@keyframes cmFade { from { opacity: 0; } to { opacity: 1; } }
.careers-modal__panel {
  position: relative;
  width: 100%; max-width: 540px;
  max-height: 92vh; overflow-y: auto;
  background: #fbf8f1;
  border-radius: 16px;
  padding: 32px 36px 30px;
  box-shadow: 0 22px 60px rgba(20,14,6,.32);
  animation: cmRise .3s cubic-bezier(.22,.61,.36,1);
}
@keyframes cmRise {
  from { opacity: 0; transform: translateY(14px) scale(.985); }
  to   { opacity: 1; transform: none; }
}
.careers-modal__close {
  position: absolute; top: 14px; right: 14px;
  width: 38px; height: 38px;
  border: 1px solid #ece4d2;
  background: #fff;
  border-radius: 50%;
  font-size: 22px; line-height: 1; cursor: pointer;
  color: #1a1814;
}
.careers-modal__close:hover { background: #f4ecd9; }
.careers-modal h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-size: 1.9rem;
  line-height: 1.15;
  color: #1a1814;
  margin: 8px 0 12px;
}
.careers-modal__lede {
  font-size: 0.98rem;
  line-height: 1.65;
  color: #5e533f;
  margin-bottom: 16px;
}
.careers-modal__list {
  margin: 0 0 22px 18px;
  padding: 0;
  color: #5e533f;
  font-size: 0.92rem;
  line-height: 1.7;
}
.careers-modal__list li { margin-bottom: 6px; }
.careers-modal__cta {
  display: inline-flex !important;
  width: 100%;
  justify-content: center;
  padding: 14px;
  font-size: 0.95rem;
  color: #fbf4e4 !important;
}
.careers-modal__small {
  text-align: center;
  font-size: 0.78rem;
  color: #948568;
  margin-top: 14px;
  margin-bottom: 0;
}

@media (max-width: 1024px) {
  .nav__burger { display: flex; }
  .nav__actions .btn--outline,
  .nav__actions .btn--wa,
  .nav__actions .btn--primary { display: none; }
  .nav__inner { gap: 1rem; }
}
@media (min-width: 1025px) {
  .nav__drawer { display: none !important; }
}

/* ───────── Hero polish on mobile ───────── */
@media (max-width: 760px) {
  .hero { min-height: 80vh; }
  .hero__content { padding-top: 5rem; padding-bottom: 4rem; }
  .hero h1 { font-size: clamp(2.2rem, 8vw, 3rem); line-height: 1.05; }
  .hero__lede { font-size: 1rem; line-height: 1.55; }
  .hero__issue, .hero__offer { font-size: 0.78rem; }
  .hero__trust { display: none; }
}

/* ───────── Search form on small screens ───────── */
@media (max-width: 640px) {
  .search { grid-template-columns: 1fr; padding: 0.6rem; }
  .search__field { border-right: 0; border-bottom: 1px solid var(--line); padding: 0.6rem 1rem; }
  .search__field:last-of-type { border-bottom: 0; }
  .search__submit { width: 100%; margin: 0.6rem 0 0; padding: 1rem; justify-content: center; }
}

/* ───────── Sec-head: stack title + CTA on mobile ───────── */
@media (max-width: 640px) {
  .sec-head { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .sec-head__lede { max-width: 100%; }
  .sec-head h2 { font-size: clamp(1.6rem, 6vw, 2rem); }
}

/* ───────── Featured villa block ───────── */
@media (max-width: 900px) {
  .feat__media img { aspect-ratio: 4/3; }
  .feat__body { padding: 1.5rem; }
  .feat__body h2 { font-size: clamp(1.6rem, 5vw, 2.2rem); }
  .feat__facts { grid-template-columns: repeat(2, 1fr); gap: 0.8rem; }
}

/* ───────── Destination tiles on mobile ───────── */
@media (max-width: 520px) {
  .hood img { aspect-ratio: 16/9; }
}

/* ───────── Filter chips: scroll horizontally if needed ───────── */
@media (max-width: 640px) {
  .dest-filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 1.4rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .dest-filters::-webkit-scrollbar { display: none; }
  .dest-chip { flex-shrink: 0; }
}

/* ───────── Footer: stack columns ───────── */
@media (max-width: 720px) {
  .foot__inner {
    grid-template-columns: 1fr !important;
    gap: 1.8rem;
  }
  .foot__brand p { max-width: 100%; }
}

/* ───────── Contact form: better spacing ───────── */
@media (max-width: 640px) {
  .form .row { grid-template-columns: 1fr; }
  .form input, .form textarea, .form select { font-size: 16px; /* prevent iOS zoom */ }
}

/* ───────── Larger touch targets ───────── */
@media (max-width: 1024px) {
  .btn { min-height: 44px; padding: 10px 18px; }
  .chip, .dest-chip, .filter-chip { min-height: 38px; }
  .hood, .post, a.card { -webkit-tap-highlight-color: transparent; }
}

/* ───────── Villa detail page (mobile) ───────── */
@media (max-width: 1100px) {
  /* Sidebar moves below content; remove sticky behaviour */
  .lc-book {
    position: static;
    margin-top: 1.5rem;
  }
}
@media (max-width: 760px) {
  .lc-hero { height: 44vh; min-height: 280px; }
  .lc-hero__photos { font-size: 0.78rem; padding: 8px 14px; }
  .lc-sec h2 { font-size: clamp(1.5rem, 5vw, 1.9rem); }
  .lc-book { padding: 1.2rem; }
  .lc-book__price { font-size: 1.6rem; }
  /* `.lc-cta-call` mobile rules live higher up — they handle centering via CSS Grid */

  /* Lift the intro block closer to the hero and tighten its rhythm */
  .crumbs[style*="padding-top"] {
    padding-top: 0.9rem !important;
    padding-bottom: 0.4rem;
    font-size: 0.74rem;
    color: var(--muted);
  }
  .crumbs span { color: var(--line-2); }
  .crumbs__current { color: var(--ink); font-weight: 500; }

  .lc-layout { padding: 0.4rem 0 3rem !important; gap: 1.6rem !important; }
  .lc-intro {
    padding: 1.1rem 0 1.2rem;
    border-top: 1px solid var(--line);
    margin-top: 0.4rem;
  }
  .lc-intro .kicker {
    margin-bottom: 0.85rem;
    font-size: 0.68rem;
    letter-spacing: 2.2px;
  }
  .lc-intro h1 {
    margin: 0 0 0.9rem;
    font-size: clamp(1.85rem, 7vw, 2.4rem);
    line-height: 1.08;
    letter-spacing: -0.015em;
    font-weight: 500;
  }
  /* Drop the inline dot separators so nothing orphans on a new line */
  .lc-factline {
    gap: 0.45rem 1.1rem;
    font-size: 0.86rem;
    margin: 0 0 1.4rem;
    color: var(--muted);
    line-height: 1.4;
  }
  .lc-factline span + span::before { content: none; }
  .lc-factline span {
    gap: 6px;
    padding: 0;
    position: relative;
  }
  .lc-factline span:not(:last-child)::after {
    content: "";
    width: 3px; height: 3px;
    border-radius: 50%;
    background: var(--gold);
    display: inline-block;
    margin-left: 1.1rem;
    opacity: 0.55;
    vertical-align: middle;
  }
  .lc-factline strong { color: var(--ink); font-weight: 600; }
  /* Description spacing + readmore polish */
  .lc-desc { font-size: 0.98rem; line-height: 1.7; margin: 0 0 1.1rem; }
  .lc-readmore {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    color: var(--gold-deep);
    border-bottom-color: var(--gold-deep);
    padding-bottom: 4px;
    font-weight: 600;
  }
  .lc-factline span + span::before {
    margin-left: 0.5rem;
  }
  .lc-desc { font-size: 0.95rem; line-height: 1.6; }
  .lc-readmore { margin-top: 0.6rem; padding: 6px 0; font-size: 0.85rem; }
}

/* ───────── Mobile sticky CTA bar on villa pages ───────── */
.mobile-cta {
  display: none;
  position: fixed;
  left: 10px; right: 10px;
  bottom: 10px;
  padding: 10px 12px;
  padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
  z-index: 90;
  background: rgba(255, 255, 255, 0.96);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  backdrop-filter: saturate(140%) blur(14px);
  border: 1px solid rgba(176, 142, 74, 0.18);
  border-radius: 18px;
  align-items: center;
  gap: 8px;
  box-shadow:
    0 12px 28px rgba(20, 14, 6, 0.16),
    0 2px 6px rgba(20, 14, 6, 0.06);
}
.mobile-cta::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, #c9a96a, #8a6f3a);
  border-radius: 18px 0 0 18px;
}
.mobile-cta__price {
  flex: 1;
  min-width: 0;
  line-height: 1.15;
  padding-left: 8px;
}
.mobile-cta__price span.lbl {
  display: block;
  font-size: 0.66rem;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #948568;
  font-weight: 600;
  margin-bottom: 1px;
}
.mobile-cta__price strong {
  display: block;
  color: #1a1814;
  font-size: 1.05rem;
  font-weight: 600;
  font-family: 'Fraunces', Georgia, serif;
  letter-spacing: -0.005em;
}
.mobile-cta__price small {
  display: block;
  font-size: 0.7rem;
  color: #948568;
  margin-top: 1px;
  font-weight: 400;
  letter-spacing: 0.1px;
}
.mobile-cta .btn {
  white-space: nowrap;
  padding: 11px 16px;
  font-size: 0.86rem;
  min-height: 0;
  gap: 6px;
}
.mobile-cta .btn svg { flex-shrink: 0; }
.mobile-cta__wa { width: 44px; height: 44px; padding: 0 !important; justify-content: center; }
@media (min-width: 380px) { .mobile-cta__wa { width: auto; height: auto; padding: 11px 14px !important; } }

@media (max-width: 760px) {
  body.has-mobile-cta { padding-bottom: 92px; }
  .mobile-cta { display: flex; }
}

/* ───────── Lightbox on mobile ───────── */
@media (max-width: 600px) {
  .lb-img-wrap { max-width: 100%; }
  .lb-img-wrap img { max-height: 70vh; }
  .lb-close { top: 10px; right: 14px; }
}

/* ───────── Journal & post pages ───────── */
@media (max-width: 720px) {
  .pp-cover { height: 38vh; min-height: 240px; }
  .pp-head h1 { font-size: clamp(1.8rem, 6vw, 2.6rem); }
  .pp-dek { font-size: 1rem; }
  .pp-body { font-size: 1rem; line-height: 1.7; }
  .pp-body figure { margin: 1.5rem -16px; border-radius: 0; }
  .jx-hero { padding: 3rem 0 1.5rem; }
  .jx-feat { grid-template-columns: 1fr; }
  .jx-feat__body { padding: 1.4rem; }
  .vmention__inner { grid-template-columns: 1fr; }
}

/* ───────── Reviews on mobile ───────── */
@media (max-width: 640px) {
  .rv-summary { padding: 18px; gap: 14px; }
  .rv-summary__avg { font-size: 44px; }
  .rv-grid { gap: 12px; }
  .rv-card { padding: 16px; }
  .rv-card__head { gap: 10px; }
}

/* ───────── Quote block on mobile ───────── */
@media (max-width: 640px) {
  .quote figure blockquote { font-size: 1.2rem; line-height: 1.5; }
  .quote { padding: 3rem 0; }
}

/* ───────── Stats / services ───────── */
@media (max-width: 480px) {
  .stats { grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }
  .stat strong { font-size: 1.8rem; }
  .stat span { font-size: 0.78rem; }
}

/* ───────── Reduce sticky-nav top height on mobile ───────── */
@media (max-width: 760px) {
  .nav { position: relative; }
}

/* =========================================================
   Booking modal (villa enquiry / reservation)
   ========================================================= */
.book-modal {
  position: fixed; inset: 0; z-index: 9000;
  display: none;
  align-items: center; justify-content: center;
  padding: 20px;
}
.book-modal.is-open { display: flex; }
.book-modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(15, 11, 4, 0.66);
  backdrop-filter: blur(4px);
  animation: bmFade .2s ease;
}
@keyframes bmFade { from { opacity: 0; } to { opacity: 1; } }
.book-modal__panel {
  position: relative;
  width: 100%; max-width: 560px;
  max-height: 92vh; overflow-y: auto;
  background: #fff;
  border-radius: 16px;
  padding: 28px 32px 32px;
  box-shadow: 0 22px 60px rgba(20,14,6,.32);
  animation: bmRise .3s cubic-bezier(.22,.61,.36,1);
}
@keyframes bmRise {
  from { opacity: 0; transform: translateY(12px) scale(.985); }
  to   { opacity: 1; transform: none; }
}
.book-modal__close {
  position: absolute; top: 12px; right: 14px;
  width: 38px; height: 38px;
  border: 1px solid var(--line, #e6dfd0);
  background: #fff;
  border-radius: 50%;
  font-size: 20px; line-height: 1; cursor: pointer; color: var(--ink, #1a1814);
}
.book-modal__close:hover { background: #faf5e8; }
.book-modal__head .kicker { display: inline-block; margin-bottom: 8px; }
.book-modal__head h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-size: 1.7rem;
  line-height: 1.2;
  margin: 0 0 6px;
  color: var(--ink, #1a1814);
}
.book-modal__head p {
  color: var(--muted, #6b5e45);
  font-size: 0.9rem;
  margin-bottom: 18px;
}
.book-form { display: flex; flex-direction: column; gap: 12px; }
.book-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 540px) { .book-form__row { grid-template-columns: 1fr; gap: 10px; } }
.book-form label {
  display: flex; flex-direction: column; gap: 5px;
  font-size: 0.78rem;
  color: var(--muted, #6b5e45);
  text-transform: uppercase;
  letter-spacing: 0.7px;
  font-weight: 500;
}
.book-form input,
.book-form textarea {
  font: inherit;
  text-transform: none;
  letter-spacing: normal;
  color: var(--ink, #1a1814);
  background: #faf5e8;
  border: 1px solid #e6dfd0;
  padding: 11px 13px;
  border-radius: 8px;
  font-size: 16px; /* prevents iOS zoom */
  transition: border-color .2s, background .2s;
}
.book-form input:focus,
.book-form textarea:focus {
  outline: none;
  border-color: var(--gold, #c9a96a);
  background: #fff;
}
.book-form textarea { resize: vertical; min-height: 90px; }
/* Live total summary inside the booking modal */
.book-form__summary {
  margin: 4px 0 4px;
  padding: 12px 14px;
  border-radius: 10px;
  background: rgba(176, 142, 74, .06);
  border: 1px solid rgba(176, 142, 74, .22);
  display: flex; flex-direction: column; gap: 8px;
  transition: background .25s, border-color .25s;
}
.book-form__summary[data-state="ok"]    { background: rgba(176, 142, 74, .12); border-color: rgba(176, 142, 74, .4); }
.book-form__summary[data-state="error"] { background: rgba(201, 106, 106, .08); border-color: rgba(201, 106, 106, .4); }
.book-form__sum-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 0.86rem;
  color: var(--ink-2, #5e533f);
  gap: 12px;
}
.book-form__sum-row em { font-style: normal; font-weight: 600; color: #1a1814; }
.book-form__sum-row > :last-child { color: #1a1814; font-weight: 500; font-variant-numeric: tabular-nums; }
.book-form__sum-row--total {
  padding-top: 8px;
  border-top: 1px dashed rgba(176, 142, 74, .4);
  font-size: 0.92rem;
}
.book-form__sum-row--total > :first-child { color: #1a1814; font-weight: 500; }
.book-form__sum-row--total > :last-child {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: #b08e4a;
}
.book-form__summary[data-state="empty"] .book-form__sum-row,
.book-form__summary[data-state="error"] .book-form__sum-row { display: none; }
.book-form__summary[data-state="ok"] .book-form__sum-empty,
.book-form__summary[data-state="ok"] .book-form__sum-error { display: none; }
.book-form__sum-empty,
.book-form__sum-error {
  font-size: 0.85rem;
  color: #6b5e45;
  text-align: center;
  font-style: italic;
  font-family: 'Fraunces', Georgia, serif;
  margin: 0;
}
.book-form__sum-error { color: #b46060; font-style: normal; font-family: inherit; font-weight: 500; }

.book-form__submit {
  margin-top: 6px;
  width: 100%;
  justify-content: center;
  padding: 14px;
  font-size: 0.95rem;
}
.book-form__ok {
  background: #ecf6e9;
  border: 1px solid #b8d8a8;
  color: #2d5a2d;
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 0.92rem;
  margin: 0;
}
.book-form__err {
  color: #c96a6a;
  font-size: 0.88rem;
  margin: 0;
}

/* =========================================================
   Search results page
   ========================================================= */
.srch-head {
  background: linear-gradient(180deg, #fdf9f0 0%, #f7efde 100%);
  border-bottom: 1px solid #e6d9bd;
  padding: 4.5rem 0 2rem;
}
.srch-head h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 300;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.1;
  margin: 0.4rem 0 1.6rem;
  color: #1a1814;
}
.srch-refine {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr auto;
  gap: 10px;
  align-items: end;
  background: #fff;
  border: 1px solid #e6d9bd;
  border-radius: 14px;
  padding: 14px;
  box-shadow: 0 6px 20px rgba(60, 48, 25, .05);
}
@media (max-width: 860px) { .srch-refine { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .srch-refine { grid-template-columns: 1fr; } }
.srch-refine__field { display: flex; flex-direction: column; gap: 5px; }
.srch-refine__field span {
  font-size: 0.66rem; text-transform: uppercase; letter-spacing: 1.4px;
  color: #948568; font-weight: 600;
}
.srch-refine__field select,
.srch-refine__field input {
  background: #faf5e8; border: 1px solid #e6dfd0; color: #1a1814;
  padding: 10px 12px; border-radius: 8px; font-size: 0.95rem; font-family: inherit;
}
.srch-refine__field select:focus,
.srch-refine__field input:focus { outline: none; border-color: var(--gold, #c9a96a); background: #fff; }
.srch-refine .btn { height: 44px; justify-content: center; }
@media (max-width: 860px) { .srch-refine .btn { grid-column: 1 / -1; } }

/* Total-price block on each search card */
.srch-card__price {
  margin-top: 0.9rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--line, #ece4d2);
}
.srch-card__total { display: flex; flex-direction: column; line-height: 1.25; }
.srch-card__total strong {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.5rem; font-weight: 500; letter-spacing: -0.01em;
  color: var(--ink, #1a1814);
}
.srch-card__total span { font-size: 0.76rem; color: var(--muted, #948568); margin-top: 1px; }
.srch-card__rate { font-size: 0.8rem; color: var(--muted, #948568); margin-top: 4px; }
.srch-card:hover .srch-card__total strong { color: var(--gold-deep, #b08e4a); }

/* Empty state */
.srch-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 4rem 1rem;
  background: #fbf8f1;
  border: 1px dashed #e6d9bd;
  border-radius: 14px;
}
.srch-empty h3 {
  font-family: 'Fraunces', Georgia, serif; font-weight: 400;
  font-size: 1.5rem; color: #1a1814; margin-bottom: 0.6rem;
}
.srch-empty p { color: #6b5e45; max-width: 460px; margin: 0 auto 1.4rem; line-height: 1.6; }
.srch-empty__cta { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }

/* Search results: pack more cards per row, using the full width */
#srchResults.grid {
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1.5rem;
}
@media (min-width: 1500px) {
  #srchResults.grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 600px) {
  #srchResults.grid { grid-template-columns: 1fr; }
}
/* Tighten card text a touch so 4-up stays elegant */
#srchResults .card__name { font-size: 1.15rem; }
#srchResults .srch-card__total strong { font-size: 1.35rem; }

/* ─────────────────────────────────────────────────────────────────────
   Date picker (flatpickr) — themed to the house palette
   ───────────────────────────────────────────────────────────────────── */
.fp-input { cursor: pointer; }
.fp-input::placeholder { color: var(--muted); opacity: 1; }

/* Where / Guests selects: muted while on the default "any/all" option */
.search__field select.is-placeholder,
.srch-refine__field select.is-placeholder { color: var(--muted); }

.flatpickr-calendar {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-3);
  font-family: var(--sans);
  color: var(--ink);
  width: 19rem;
  padding: 4px;
}
.flatpickr-calendar.arrowTop::before,
.flatpickr-calendar.arrowTop::after,
.flatpickr-calendar.arrowBottom::before,
.flatpickr-calendar.arrowBottom::after { display: none; }

/* Month / year header */
.flatpickr-months { padding: 6px 4px 2px; }
.flatpickr-months .flatpickr-month {
  color: var(--ink);
  height: 38px;
}
.flatpickr-current-month {
  font-family: var(--display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.flatpickr-current-month .numInputWrapper:hover { background: var(--tint); }
.flatpickr-current-month input.cur-year { font-weight: 600; color: var(--ink); }
.flatpickr-monthDropdown-months { font-family: var(--display); color: var(--ink); }
.flatpickr-monthDropdown-months .flatpickr-monthDropdown-month { background: var(--surface); }

/* Prev / next arrows */
.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month {
  fill: var(--gold);
  padding: 8px 10px;
}
.flatpickr-months .flatpickr-prev-month:hover svg,
.flatpickr-months .flatpickr-next-month:hover svg { fill: var(--gold-deep); }
.flatpickr-months .flatpickr-prev-month svg,
.flatpickr-months .flatpickr-next-month svg { width: 12px; }

/* Weekday row */
.flatpickr-weekdays { background: transparent; margin-top: 2px; }
span.flatpickr-weekday {
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Day cells */
.flatpickr-day {
  color: var(--ink-2);
  border-radius: var(--r-sm);
  border: 1px solid transparent;
  font-size: 0.85rem;
  height: 38px;
  line-height: 37px;
  max-width: 38px;
}
.flatpickr-day:hover { background: var(--tint); border-color: var(--tint); }
.flatpickr-day.today { border-color: var(--gold); color: var(--gold-deep); font-weight: 600; }
.flatpickr-day.today:hover { background: var(--gold); border-color: var(--gold); color: #fff; }
.flatpickr-day.selected,
.flatpickr-day.selected:hover,
.flatpickr-day.selected.today {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
  font-weight: 600;
}
.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover,
.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay {
  color: var(--line-2);
}
.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover {
  background: transparent;
  border-color: transparent;
  cursor: not-allowed;
  text-decoration: line-through;
  opacity: 0.55;
}
