:root {
  --bg: #faf8f4;
  --ink: #1a1a1a;
  --muted: #6b6456;
  --line: #d9d3c4;
  --gold: #9a7b3f;
  --gold-light: #c9a864;
  --sand: #efe8d8;
  --dark: #0e0e0e;
  --serif: 'Poppins', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  --sans: 'Poppins', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ===== Utility bar ===== */
.utility {
  background: #0e0e0e;
  color: #d9d3c4;
  font-size: 12px;
  letter-spacing: 0.08em;
  padding: 10px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  gap: 16px;
  min-height: 38px;
  line-height: 1;
}
.utility .langs,
.utility .contact {
  display: inline-flex;
  align-items: center;
  flex-wrap: nowrap;
  white-space: nowrap;
}
.utility .langs a {
  display: inline-flex;
  align-items: center;
  height: 18px;
  margin-right: 14px;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.utility .langs a:last-child { margin-right: 0; }
.utility .langs a:hover, .utility .langs a.active { opacity: 1; }
.utility .contact > * {
  display: inline-flex;
  align-items: center;
  height: 18px;
  margin-left: 18px;
}
.utility .contact > *:first-child { margin-left: 0; }
.utility .contact span { opacity: 0.65; }
.utility .contact a { opacity: 0.85; transition: opacity 0.2s; }
.utility .contact a:hover { opacity: 1; }
.utility .contact a.whatsapp {
  color: #25d366;
  opacity: 1;
  position: relative;
  padding-left: 20px;
}
.utility .contact a.whatsapp::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 14px; height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2325d366'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 0 1-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 0 1-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 0 1 2.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0 0 12.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 0 0 5.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 0 0-3.48-8.413Z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

/* ===== Main nav ===== */
header.main-nav {
  padding: 28px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 10;
}
header.main-nav.over-hero {
  position: absolute;
  top: 34px; left: 0; right: 0;
  color: #fff;
}
header.main-nav.solid {
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}
.logo {
  font-family: var(--serif);
  font-size: 28px;
  letter-spacing: 0.12em;
  font-weight: 400;
}
.logo small {
  display: block;
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.3em;
  opacity: 0.8;
  margin-top: 2px;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 36px;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 400;
}
nav a { transition: opacity 0.2s; }
nav a:hover { opacity: 0.7; }
.cta-top {
  border: 1px solid currentColor;
  padding: 10px 22px;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all 0.3s;
  display: inline-block;
}
.cta-top:hover { background: currentColor; }
.over-hero .cta-top { border-color: rgba(255,255,255,0.6); }
.over-hero .cta-top:hover { background: #fff; color: #000; }
.solid .cta-top:hover { background: var(--ink); color: #fff; }

/* ===== Hero ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  overflow: hidden;
  color: #fff;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.78);
  z-index: 0;
}
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
  z-index: 1;
  /* If <source> fails to load, video collapses and .hero-bg behind shows */
}
.hero-overlay {
  position: absolute; inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0) 40%, rgba(0,0,0,0.55) 100%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(0,0,0,0.0) 0%, rgba(0,0,0,0) 40%, rgba(0,0,0,0.0) 100%);
  pointer-events: none;
}
@media (prefers-reduced-motion: reduce) {
  .hero-video { display: none; }
}
.hero-inner {
  position: relative; z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
}
.hero .eyebrow {
  font-size: 12px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  opacity: 0.9;
  margin-bottom: 24px;
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(42px, 7vw, 92px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.01em;
  max-width: 1100px;
}
.hero h1 em {
  font-style: italic;
  color: #e8d9b8;
}
.hero .sub {
  margin-top: 32px;
  font-size: 15px;
  letter-spacing: 0.05em;
  opacity: 0.92;
  max-width: 560px;
  line-height: 1.7;
}
.hero .scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.85;
  z-index: 3;
}
.hero .scroll::after {
  content: '';
  display: block;
  width: 1px; height: 30px;
  background: rgba(255,255,255,0.5);
  margin: 12px auto 0;
}

/* ===== Sections ===== */
section { padding: 120px 40px; }
.container { max-width: 1280px; margin: 0 auto; }
.eyebrow {
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.005em;
  color: var(--ink);
}
h2 em { font-style: italic; color: var(--gold); }
.lead {
  font-size: 17px;
  color: var(--muted);
  max-width: 640px;
  line-height: 1.75;
  margin-top: 24px;
}

/* ===== Intro ===== */
.intro { text-align: center; padding-top: 140px; padding-bottom: 80px; }
.intro .divider {
  width: 40px; height: 1px;
  background: var(--gold);
  margin: 0 auto 30px;
}
.intro .lead { margin: 24px auto 0; }

/* ===== Collections ===== */
.collections .header-row {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 60px;
  flex-wrap: wrap;
  gap: 20px;
}
.collections-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}
.collection-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  cursor: pointer;
}
.collection-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.collection-card:hover img { transform: scale(1.06); }
.collection-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.78) 100%);
}
.collection-card .meta {
  position: absolute;
  bottom: 40px; left: 40px; right: 40px;
  z-index: 2;
  color: #fff;
}
.collection-card .count {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 12px;
}
.collection-card h3 {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 12px;
}
.collection-card p {
  font-size: 14px;
  opacity: 0.88;
  line-height: 1.6;
  margin-bottom: 20px;
}
.collection-card .arrow {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255,255,255,0.5);
  display: inline-block;
}

/* ===== Owner's Villa (KW2) ===== */
.owner-villa { background: #0e0e0e; color: #ebe5d4; padding: 160px 40px; }
.owner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}
.owner-villa .eyebrow { color: var(--gold-light); }
.owner-villa h2 { color: #ebe5d4; }
.owner-villa h2 em { color: var(--gold-light); }
.owner-villa .lead { color: #a8a192; max-width: 100%; }
.owner-villa .tag {
  display: inline-block;
  border: 1px solid var(--gold-light);
  color: var(--gold-light);
  padding: 6px 14px;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-top: 32px;
}
.owner-img {
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
}
.owner-villa .cta-link {
  display: inline-block;
  margin-top: 32px;
  margin-left: 20px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--gold-light);
  color: var(--gold-light);
}

/* ===== Experiences ===== */
.experiences { background: var(--sand); }
.exp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 60px;
}
.exp-card { text-align: left; }
.exp-card .img {
  aspect-ratio: 1;
  background-size: cover;
  background-position: center;
  margin-bottom: 24px;
}
.exp-card h4 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 8px;
}
.exp-card p { font-size: 14px; color: var(--muted); }

/* ===== Destination ===== */
.destination { padding: 160px 40px; }
.dest-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}
.dest-img {
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
}

/* ===== Journal ===== */
.journal { padding-bottom: 140px; }
.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}
.article-card .img {
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  margin-bottom: 24px;
  transition: opacity 0.3s;
}
.article-card:hover .img { opacity: 0.85; }
.article-card .cat {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.article-card h4 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 10px;
}
.article-card p { font-size: 14px; color: var(--muted); }

/* ===== CTA strip ===== */
.cta-strip {
  background-size: cover;
  background-position: center;
  position: relative;
  color: #fff;
  text-align: center;
  padding: 180px 40px;
}
.cta-strip::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(10,10,10,0.55);
}
.cta-strip > * { position: relative; z-index: 2; }
.cta-strip h2 { color: #fff; }
.cta-strip h2 em { color: #e8d9b8; }
.cta-strip .lead { margin: 28px auto 40px; color: rgba(255,255,255,0.88); }
.cta-btn {
  display: inline-block;
  background: #25d366;
  color: #fff;
  padding: 18px 40px;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: transform 0.2s;
}
.cta-btn:hover { transform: translateY(-2px); }

/* ===== Footer ===== */
footer {
  background: #0a0a0a;
  color: #a8a192;
  padding: 80px 40px 40px;
  font-size: 13px;
}
.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
}
footer h5 {
  color: #ebe5d4;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 500;
}
footer ul { list-style: none; }
footer ul li { margin-bottom: 10px; }
footer ul a { transition: color 0.2s; }
footer ul a:hover { color: #ebe5d4; }
.footer-logo {
  font-family: var(--serif);
  font-size: 28px;
  color: #ebe5d4;
  margin-bottom: 20px;
  letter-spacing: 0.1em;
}
.footer-bottom {
  max-width: 1280px;
  margin: 60px auto 0;
  padding-top: 30px;
  border-top: 1px solid #242220;
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  letter-spacing: 0.1em;
  opacity: 0.6;
}

/* ===== Search panel ===== */
.search-panel {
  background: var(--bg);
  margin-top: -80px;
  position: relative;
  z-index: 5;
  max-width: 1100px;
  margin-left: auto; margin-right: auto;
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr auto;
  align-items: stretch;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.15);
}
.search-panel .field {
  padding: 22px 26px;
  border-right: 1px solid var(--line);
}
.search-panel .field:last-of-type { border-right: none; }
.search-panel label {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 6px;
}
.search-panel input,
.search-panel select {
  border: none;
  background: transparent;
  font-size: 16px;
  font-family: var(--serif);
  color: var(--ink);
  width: 100%;
  outline: none;
  font-weight: 500;
}
.search-panel select {
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M3 5l3 3 3-3' stroke='%236b6456' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
  padding-right: 20px;
  cursor: pointer;
}
.search-panel button {
  /* Larger, bolder, dimensional press button */
  background: linear-gradient(180deg, var(--ink) 0%, #050505 100%);
  color: #fff;
  border: none;
  margin: 10px;
  padding: 0 56px;
  min-height: 64px;
  min-width: 240px;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: var(--sans);
  font-weight: 500;
  border-radius: 4px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.06) inset,
    0 -1px 0 rgba(0,0,0,0.4) inset,
    0 8px 18px -4px rgba(0,0,0,0.35),
    0 2px 4px rgba(0,0,0,0.18);
  transform: translateY(0);
  transition: transform 0.15s cubic-bezier(.2,.8,.2,1),
              box-shadow 0.2s ease,
              background 0.25s ease;
}
.search-panel button::after {
  content: '\2192';   /* arrow → */
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0;
  margin-left: 4px;
  transition: transform 0.25s ease;
}
.search-panel button:hover {
  background: linear-gradient(180deg, var(--gold) 0%, #7d6432 100%);
  transform: translateY(-2px);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.12) inset,
    0 -1px 0 rgba(0,0,0,0.35) inset,
    0 14px 28px -6px rgba(154,123,63,0.45),
    0 4px 8px rgba(0,0,0,0.18);
}
.search-panel button:hover::after { transform: translateX(4px); }
.search-panel button:active {
  transform: translateY(2px);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.06) inset,
    0 -1px 0 rgba(0,0,0,0.5) inset,
    0 4px 8px -2px rgba(0,0,0,0.3);
  transition-duration: 0.05s;
}
.search-panel button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

/* ===== Page hero (smaller) ===== */
.page-hero {
  position: relative;
  height: 60vh;
  min-height: 480px;
  color: #fff;
  overflow: hidden;
}
.page-hero .hero-bg { filter: brightness(0.65); }
.page-hero .hero-inner h1 { font-size: clamp(40px, 6vw, 72px); }

/* ===== Villa listing grid ===== */
.villa-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px 40px;
  margin-top: 60px;
}
.villa-card { display: block; }
.villa-card .img {
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  margin-bottom: 24px;
  overflow: hidden;
}
.villa-card .img-inner {
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.villa-card:hover .img-inner { transform: scale(1.05); }
.villa-card .meta-line {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.villa-card h3 {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 8px;
}
.villa-card .specs {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.05em;
}
.villa-card .specs span:not(:last-child)::after {
  content: ' · '; opacity: 0.5;
}
.villa-card .price {
  font-family: var(--serif);
  font-size: 17px;
  margin-top: 12px;
  color: var(--ink);
}
.villa-card .price small { color: var(--muted); font-size: 12px; font-family: var(--sans); }
.villa-card .private-tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 4px 10px;
  margin-top: 12px;
  text-transform: uppercase;
}

/* ===== Villa detail page ===== */
.villa-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 4px;
  height: 80vh;
  min-height: 600px;
}
.villa-gallery .g {
  background-size: cover;
  background-position: center;
}
.villa-gallery .g1 { grid-row: span 2; }

.villa-info {
  padding: 100px 40px;
}
.villa-info-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 80px;
  max-width: 1280px;
  margin: 0 auto;
}
.villa-info h1 {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 12px;
}
.villa-info .collection-tag {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.villa-info .description {
  font-size: 17px;
  line-height: 1.85;
  color: var(--muted);
  margin-top: 32px;
}
.villa-info .description p { margin-bottom: 1em; }

.villa-side {
  background: var(--sand);
  padding: 40px;
  position: sticky;
  top: 40px;
  align-self: start;
}
.villa-side .row {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  font-size: 14px;
}
.villa-side .row:last-of-type { border-bottom: none; }
.villa-side .row .l { color: var(--muted); letter-spacing: 0.05em; }
.villa-side .row .v { font-family: var(--serif); font-size: 16px; font-weight: 500; }
.villa-side .price-block {
  border-top: 1px solid rgba(0,0,0,0.12);
  margin-top: 20px;
  padding-top: 24px;
  text-align: center;
}
.villa-side .price-block .from { font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--muted); }
.villa-side .price-block .amount {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 400;
  margin: 6px 0;
}
.villa-side .price-block .unit { font-size: 12px; color: var(--muted); }
.villa-side .cta {
  display: block;
  background: #25d366;
  color: #fff;
  text-align: center;
  padding: 16px;
  margin-top: 24px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.villa-side .cta-secondary {
  display: block;
  text-align: center;
  padding: 14px;
  margin-top: 8px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid var(--ink);
  color: var(--ink);
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 40px;
  margin-top: 32px;
  font-size: 14px;
  color: var(--ink);
}
.feature-list li {
  list-style: none;
  padding-left: 22px;
  position: relative;
}
.feature-list li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  position: absolute; left: 0; top: 7px;
}

/* ===== Villa more photos strip ===== */
.more-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}
.more-photos .p {
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
}

/* ===== Filter chips ===== */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.chip {
  border: 1px solid var(--line);
  padding: 8px 18px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--muted);
}
.chip:hover, .chip.active {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

/* ===== Hero CTA button (homepage hero) ===== */
.hero-cta {
  display: inline-block;
  margin-top: 36px;
  background: #25d366;
  color: #fff;
  padding: 16px 36px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: transform 0.2s, background 0.2s;
}
.hero-cta:hover { transform: translateY(-2px); background: #1ebe59; }

/* ===== Highlight pills (e.g., "2-minute walk to beach") ===== */
.highlight-pill, .card-pill {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--gold);
  color: #fff;
  padding: 6px 14px;
  margin: 14px 0;
  font-weight: 500;
}
.card-pill {
  position: absolute;
  top: 16px; left: 16px;
  z-index: 3;
  background: rgba(0,0,0,0.78);
  color: var(--gold-light);
  border: 1px solid var(--gold-light);
}

.villa-card .img { position: relative; }

/* ===== Detail page additions ===== */
.villa-tagline {
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  color: var(--gold);
  margin-top: 8px;
}
.features-title {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  margin-top: 50px;
  margin-bottom: 8px;
}

/* ===== Feature block (KW³ "2-min walk to beach") — replaces owner-villa ===== */
.feature-block { background: #0e0e0e; color: #ebe5d4; padding: 160px 40px; }
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}
.feature-block .eyebrow { color: var(--gold-light); }
.feature-block h2 { color: #ebe5d4; }
.feature-block h2 em { color: var(--gold-light); }
.feature-block .lead { color: #a8a192; max-width: 100%; }
.feature-img {
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
}
.big-pill {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  padding: 14px 26px;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  margin: 24px 0 8px;
}
.cta-link {
  display: inline-block;
  margin-top: 32px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--gold-light);
  color: var(--gold-light);
}

/* ===== Experiences upgrade — 6-grid, larger images ===== */
.exp-grid-6 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}
.exp-grid-6 .exp-card { display: block; cursor: pointer; }
.exp-grid-6 .exp-card .img {
  aspect-ratio: 4/3;
  margin-bottom: 24px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  position: relative;
  transition: transform 0.6s;
}
.exp-grid-6 .exp-card .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.exp-grid-6 .exp-card:hover .img {
  transform: scale(1.02);
}
.exp-grid-6 .exp-card h4 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 8px;
}
.exp-grid-6 .exp-card p { font-size: 14px; color: var(--muted); }

/* ===== Weekly Stay Offer ===== */
.weekly-offer {
  background: var(--sand);
  padding: 0;
}
.offer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 600px;
}
.offer-img {
  background-size: cover;
  background-position: center;
}
.offer-text {
  padding: 100px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.offer-text .lead { margin-top: 24px; }
.offer-perks {
  list-style: none;
  margin-top: 28px;
  margin-bottom: 36px;
}
.offer-perks li {
  padding: 12px 0 12px 32px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  position: relative;
  font-size: 15px;
}
.offer-perks li::before {
  content: '';
  position: absolute;
  left: 0; top: 18px;
  width: 18px; height: 1px;
  background: var(--gold);
}
.cta-btn.dark { background: var(--ink); color: #fff; align-self: flex-start; }
.cta-btn.dark:hover { background: var(--gold); }

/* ===== Weddings & Events ===== */
.weddings-section {
  padding: 140px 40px;
  background: var(--bg);
}
.weddings-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 70px;
}
.weddings-head h2 { margin-top: 8px; }
.weddings-head .lead { margin: 24px auto 0; }
.weddings-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1280px;
  margin: 0 auto;
}
.wedding-card {
  background: var(--sand);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
}
.wedding-img {
  aspect-ratio: 16/10;
  background-size: cover;
  background-position: center;
}
.wedding-text {
  padding: 38px 40px 44px;
  display: flex;
  flex-direction: column;
}
.wedding-tier {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.wedding-card h3 {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 16px;
}
.wedding-loc {
  display: block;
  font-style: italic;
  color: var(--muted);
  font-size: 22px;
  margin-top: 4px;
}
.wedding-card p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 22px;
}
.wedding-perks {
  list-style: none;
  margin: 0 0 28px;
}
.wedding-perks li {
  padding: 10px 0 10px 28px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  position: relative;
  font-size: 14px;
}
.wedding-perks li:last-child { border-bottom: none; }
.wedding-perks li::before {
  content: '';
  position: absolute;
  left: 0; top: 16px;
  width: 16px; height: 1px;
  background: var(--gold);
}
.wedding-card .cta-btn { align-self: flex-start; }

/* ===== FAQ ===== */
.faq { padding: 140px 40px; background: var(--bg); }
.faq-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1280px;
  margin-left: auto; margin-right: auto;
}
.faq-list {
  max-width: 920px;
  margin: 0 auto;
}
.faq-item {
  border-top: 1px solid var(--line);
  padding: 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 28px 0;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  display: flex;
  justify-content: space-between;
  align-items: center;
  outline: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: var(--sans);
  font-size: 24px;
  font-weight: 300;
  color: var(--gold);
  transition: transform 0.3s;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item p {
  padding: 0 0 28px;
  font-size: 16px;
  line-height: 1.75;
  color: var(--muted);
  max-width: 760px;
}

/* ===== Floating WhatsApp FAB (mobile only) ===== */
.wa-fab {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: #fff;
  width: auto;
  padding: 12px 18px 12px 14px;
  border-radius: 999px;
  display: none;
  align-items: center;
  gap: 8px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  z-index: 200;
  font-size: 13px;
  letter-spacing: 0.05em;
  font-weight: 500;
}
.wa-fab:hover { background: #1ebe59; }

/* ===== Fact Block (homepage at-a-glance) ===== */
.fact-block { padding: 100px 40px; background: var(--sand); }
.fact-block-head { text-align: center; margin-bottom: 60px; }
.fact-block-head h2 { margin-top: 8px; }
.fact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.fact-grid-6 { grid-template-columns: repeat(3, 1fr); }
.fact-grid > div {
  background: var(--sand);
  padding: 44px 28px;
  text-align: center;
}
.fact-grid .fn {
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.fact-grid-6 .fn { font-size: 38px; }
.fact-grid .fl {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 12px;
  line-height: 1.55;
}
.fact-grid .fmuted {
  display: block;
  margin-top: 4px;
  letter-spacing: 0.1em;
  color: var(--gold);
  font-size: 11px;
}

/* ===== Villa Fit table ===== */
.fit-table-section { padding: 100px 40px; }
.fit-table-section .eyebrow,
.fit-table-section h2 { text-align: center; }
.fit-table-section h2 { margin-bottom: 60px; }
.fit-table-wrap {
  max-width: 1100px;
  margin: 0 auto;
  overflow-x: auto;
  border: 1px solid var(--line);
}
.fit-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}
.fit-table th, .fit-table td {
  padding: 18px 22px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.fit-table th {
  background: var(--sand);
  font-family: var(--sans);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.fit-table tr:last-child td { border-bottom: none; }
.fit-table td a {
  color: var(--ink);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 1px;
}
.fit-table td a:hover { color: var(--gold); }
.fit-table td:first-child { font-weight: 500; min-width: 220px; }
.fit-table td:nth-child(2) { font-family: var(--serif); font-size: 17px; min-width: 280px; }

/* ===== Quick Facts (detail page) ===== */
.quick-facts {
  margin-top: 28px;
  border-top: 1px solid var(--line);
}
.qf-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  gap: 24px;
}
.qf-l { color: var(--muted); letter-spacing: 0.04em; flex-shrink: 0; }
.qf-v { font-family: var(--serif); font-size: 17px; text-align: right; }

/* ===== Best For (detail page) ===== */
.best-for {
  list-style: none;
  margin-top: 28px;
}
.best-for li {
  padding: 12px 0 12px 32px;
  border-bottom: 1px solid var(--line);
  position: relative;
  font-size: 16px;
  line-height: 1.6;
}
.best-for li:last-child { border-bottom: none; }
.best-for li::before {
  content: '';
  position: absolute;
  left: 0; top: 22px;
  width: 18px; height: 1px;
  background: var(--gold);
}

/* ===== Page-level FAQ on detail pages ===== */
.page-faq {
  max-width: 100%;
  margin-top: 28px;
}
.page-faq .faq-item summary { font-size: 19px; padding: 22px 0; }

/* ===== Related / Compare strip ===== */
.related-section { padding: 100px 40px; background: var(--sand); }
.related-section .eyebrow,
.related-section h2 { text-align: center; }
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}
.related-card { display: block; background: var(--bg); border: 1px solid var(--line); }
.related-card .img {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.related-card .img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.related-card:hover .img img { transform: scale(1.04); }
.related-card .meta-line {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 18px 22px 4px;
}
.related-card h4 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  padding: 0 22px;
}
.related-card .price {
  padding: 8px 22px 22px;
  font-family: var(--serif);
  font-size: 16px;
}
.related-card .price small { color: var(--muted); font-size: 12px; font-family: var(--sans); }

/* ===== Use-case landing pages ===== */
.use-case-hero {
  padding: 140px 40px 80px;
  text-align: center;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}
.use-case-hero h1 {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.005em;
  max-width: 880px;
  margin: 16px auto 0;
}
.use-case-hero h1 em { font-style: italic; color: var(--gold); }
.use-case-hero .lead { margin: 24px auto 0; max-width: 720px; text-align: center; }

.use-case-section { padding: 80px 40px; max-width: 920px; margin: 0 auto; }
.use-case-section h2 {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 24px;
}
.use-case-section h2 em { color: var(--gold); font-style: italic; }
.use-case-section h3 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  margin-top: 40px;
  margin-bottom: 12px;
}
.use-case-section p {
  font-size: 17px;
  line-height: 1.85;
  color: var(--ink);
  margin-bottom: 18px;
}
.use-case-section ul {
  margin: 16px 0 24px 22px;
  font-size: 16px;
  line-height: 1.85;
}
.use-case-section ul li { margin-bottom: 8px; }
.use-case-section .villa-recommendation {
  border-left: 2px solid var(--gold);
  padding: 18px 24px;
  background: var(--sand);
  margin: 28px 0;
}
.use-case-section .villa-recommendation h4 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 6px;
}
.use-case-section .villa-recommendation h4 a {
  color: var(--ink);
  border-bottom: 1px solid var(--gold);
}

/* ===== Flatpickr theming override (match Belmond palette) ===== */
.flatpickr-calendar {
  font-family: var(--sans);
  border-radius: 0;
  box-shadow: 0 20px 50px -10px rgba(0,0,0,0.2);
}
.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected.inRange {
  background: var(--gold);
  border-color: var(--gold);
}
.flatpickr-day.today { border-color: var(--gold); }
.flatpickr-months .flatpickr-month,
.flatpickr-current-month .flatpickr-monthDropdown-months,
span.flatpickr-weekday {
  color: var(--ink);
}

@media (max-width: 900px) {
  nav ul, .cta-top, .utility .langs span { display: none; }
  .collections-grid, .exp-grid, .exp-grid-6, .owner-grid, .dest-grid, .journal-grid,
  .footer-grid, .villa-grid, .villa-info-grid, .more-photos,
  .feature-grid, .offer-grid, .faq-head, .related-grid, .weddings-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .weddings-section { padding: 80px 20px; }
  .wedding-text { padding: 28px 24px 32px; }
  .fact-grid, .fact-grid-6 { grid-template-columns: repeat(2, 1fr); }
  .fact-block, .fit-table-section, .related-section { padding: 60px 20px; }
  .fit-table { font-size: 14px; }
  .fit-table th, .fit-table td { padding: 14px 12px; }
  section { padding: 80px 20px; }
  .feature-block, .faq { padding: 80px 20px; }
  .offer-text { padding: 60px 24px; }
  .offer-grid { min-height: 0; }
  .offer-img { min-height: 280px; }
  .utility { padding: 8px 20px; }
  header.main-nav { padding: 20px; }
  .search-panel { grid-template-columns: 1fr; }
  .search-panel .field { border-right: none; border-bottom: 1px solid var(--line); }
  .villa-gallery { grid-template-columns: 1fr; height: auto; }
  .villa-gallery .g { aspect-ratio: 4/3; }
  .wa-fab { display: inline-flex; }
}
