/* ============================================================
   Villa Sawah Langkawi — "Quiet Luxury" design language
   Inspired by AYANA Villas & Soneva: restrained, exclusive,
   ivory + stone + espresso, a whisper of antique bronze.
   Classical type · generous whitespace · hairline detail ·
   sharp gallery edges · slow, understated motion.
   ============================================================ */

:root {
  /* Warm neutral canvas */
  --paper:    #f1ede3;   /* page */
  --paper-2:  #eae5d8;
  --ivory:    #faf8f2;   /* cards / near-white */
  --sand:     #e6dfce;
  --stone:    #cabfa9;

  /* Ink */
  --ink:      #211f19;   /* near-black, warm */
  --charcoal: #2c2922;
  --espresso: #1a1813;   /* dark sections */
  --muted:    #6d685b;   /* secondary text */
  --soft:     #938d7c;

  /* Single accent — antique bronze, used sparingly */
  --bronze:   #98794d;
  --bronze-2: #c3a877;   /* lighter, for dark grounds */

  --line:        rgba(33, 31, 25, .18);
  --line-2:      rgba(33, 31, 25, .10);
  --line-light:  rgba(250, 248, 242, .24);
  --line-light2: rgba(250, 248, 242, .12);

  --display: "Marcellus", Georgia, "Times New Roman", serif;
  --serif:   "Cormorant Garamond", Georgia, serif;
  --sans:    "Jost", system-ui, -apple-system, "Segoe UI", sans-serif;
  --ease:    cubic-bezier(.4, .12, .2, 1);

  --maxw: 1320px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--paper);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.78;
  letter-spacing: .01em;
  overflow-x: hidden;
  background:
    radial-gradient(1400px 900px at 50% -10%, rgba(152, 121, 77, .05), transparent 60%),
    var(--paper);
}

a { color: inherit; text-decoration: none; }
img, video { max-width: 100%; display: block; }
figure { margin: 0; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
::selection { background: rgba(152, 121, 77, .2); }
:focus-visible { outline: 1px solid var(--bronze); outline-offset: 5px; }

h1, h2, h3 {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: .005em;
  color: var(--ink);
}

em { font-style: italic; font-weight: 400; color: var(--bronze); }

/* shared label type — fine, wide-tracked, restrained */
.eyebrow,
.label,
.kicker,
.chapter-number,
.review-label {
  font-family: var(--sans);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--bronze);
}

/* ============================================================
   Scroll progress — single hairline of bronze
   ============================================================ */
.progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: var(--bronze);
  z-index: 10000;
  transition: width .1s linear;
}

/* ============================================================
   Navigation
   ============================================================ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 9000;
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px clamp(20px, 5vw, 64px);
  color: var(--ivory);
  border-bottom: 1px solid transparent;
  transition: background .6s var(--ease), color .6s var(--ease),
              border-color .6s var(--ease), backdrop-filter .6s var(--ease), min-height .6s var(--ease);
}
.nav.scrolled,
.nav.menu-open {
  background: rgba(241, 237, 227, .86);
  color: var(--ink);
  border-bottom-color: var(--line-2);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  min-height: 70px;
}

.brand {
  font-family: var(--display);
  font-size: 1.4rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  gap: clamp(16px, 2vw, 38px);
  align-items: center;
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 400;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.nav-links > a {
  position: relative;
  opacity: .82;
  padding: 6px 0;
  transition: opacity .3s ease;
}
.nav-links > a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--bronze);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}
.nav-links > a:hover { opacity: 1; }
.nav-links > a:hover::after { transform: scaleX(1); }

.nav-cta {
  border: 1px solid currentColor;
  padding: 11px 22px;
  opacity: 1 !important;
  font-size: .68rem;
  transition: background .35s var(--ease), color .35s var(--ease), border-color .35s ease;
}
.nav-cta::after { display: none; }
.nav-cta:hover {
  background: var(--bronze);
  border-color: var(--bronze);
  color: var(--ivory);
}

.mobile-toggle {
  display: none;
  border: 1px solid currentColor;
  background: transparent;
  padding: 10px 18px;
  font-size: .68rem;
  font-weight: 400;
  letter-spacing: .22em;
  text-transform: uppercase;
  cursor: pointer;
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  border: 1px solid currentColor;
  overflow: hidden;
  opacity: .9;
}
.lang-toggle button {
  border: 0;
  background: transparent;
  padding: 8px 11px;
  cursor: pointer;
  font-size: .64rem;
  letter-spacing: .14em;
  color: inherit;
  transition: background .3s ease, color .3s ease;
}
.lang-toggle button.active { background: var(--bronze); color: var(--ivory); }

/* ============================================================
   Chapter dots — minimal bronze ticks
   ============================================================ */
.chapter-dots {
  position: fixed;
  right: 26px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 8500;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.chapter-dots a {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid rgba(250, 248, 242, .7);
  box-shadow: 0 0 0 1px rgba(33,31,25,.12);
  transition: all .4s var(--ease);
}
.chapter-dots a.active {
  background: var(--bronze);
  border-color: var(--bronze);
  transform: scale(1.15);
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  min-height: 100svh;
  position: relative;
  display: grid;
  place-items: center;
  color: var(--ivory);
  overflow: hidden;
  background: var(--espresso);
  isolation: isolate;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
  transform: scale(1.05);
  animation: kenburns 30s ease-in-out infinite alternate;
}
@keyframes kenburns {
  from { transform: scale(1.05); }
  to   { transform: scale(1.14); }
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(to bottom, rgba(18, 16, 12, .42), rgba(18, 16, 12, .12) 42%, rgba(18, 16, 12, .68)),
    radial-gradient(120% 90% at 50% 40%, transparent 45%, rgba(18, 16, 12, .4));
}
.hero-content {
  position: relative;
  text-align: center;
  width: min(960px, calc(100% - 44px));
  padding-top: 70px;
}
.hero .eyebrow {
  display: inline-block;
  margin-bottom: 30px;
  color: rgba(250, 248, 242, .82);
  letter-spacing: .42em;
}
.hero h1 {
  color: var(--ivory);
  font-size: clamp(3.4rem, 10vw, 9rem);
  font-weight: 400;
  letter-spacing: .07em;
  line-height: 1;
  text-transform: uppercase;
  text-shadow: 0 10px 50px rgba(0, 0, 0, .35);
}
.subtitle {
  margin: 26px auto 0;
  max-width: 640px;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.4rem, 2.8vw, 2.3rem);
  line-height: 1.3;
  color: rgba(250, 248, 242, .94);
  letter-spacing: .01em;
}
.hero-actions {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.scroll-line {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  width: 1px;
  height: 72px;
  overflow: hidden;
  background: rgba(250, 248, 242, .22);
}
.scroll-line::after {
  content: "";
  position: absolute;
  left: 0; top: -52px;
  width: 1px; height: 52px;
  background: var(--ivory);
  animation: linefall 2.8s ease-in-out infinite;
}
@keyframes linefall { 0% { top: -52px; } 60%, 100% { top: 72px; } }

/* ============================================================
   Buttons — rectangular, hairline, wide-tracked
   ============================================================ */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--ivory);
  padding: 16px 32px;
  font-family: var(--sans);
  font-size: .7rem;
  font-weight: 400;
  letter-spacing: .26em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .4s var(--ease), color .4s var(--ease),
              border-color .4s var(--ease), transform .4s var(--ease);
}
.button:hover { background: var(--bronze); border-color: var(--bronze); color: var(--ivory); }

.button.light {
  background: transparent;
  border-color: rgba(250, 248, 242, .55);
  color: var(--ivory);
}
.button.light:hover { background: var(--ivory); border-color: var(--ivory); color: var(--ink); }

.button.solid { background: var(--ivory); border-color: var(--ivory); color: var(--ink); }
.button.solid:hover { background: var(--bronze); border-color: var(--bronze); color: var(--ivory); }

/* light buttons on light grounds */
.contact-card .button.light,
.booking-form .button.light { border-color: var(--bronze); color: var(--ink); }
.contact-card .button.light:hover { background: var(--ink); border-color: var(--ink); color: var(--ivory); }

/* ============================================================
   Section scaffolding
   ============================================================ */
.section {
  position: relative;
  padding: clamp(84px, 11vw, 168px) clamp(22px, 6vw, 88px);
}
.container { width: min(var(--maxw), 100%); margin: 0 auto; }

.chapter-head {
  display: grid;
  grid-template-columns: minmax(150px, 240px) 1fr;
  gap: clamp(28px, 6vw, 96px);
  align-items: end;
  margin-bottom: clamp(54px, 8vw, 104px);
}
.chapter-number {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  display: inline-block;
}
.chapter-head h2,
.collection-heading h2 {
  font-size: clamp(2.7rem, 6vw, 5.8rem);
  font-weight: 400;
  letter-spacing: .01em;
  line-height: 1.05;
}
.chapter-head p,
.collection-heading p {
  max-width: 620px;
  margin: 26px 0 0;
  font-size: clamp(1.02rem, 1.3vw, 1.18rem);
  color: var(--muted);
  font-weight: 300;
  line-height: 1.75;
}
.kicker, .label, .review-label { margin-bottom: 20px; }

.lead {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.1vw, 1.9rem);
  line-height: 1.34;
  font-weight: 400;
  color: var(--charcoal);
  letter-spacing: .005em;
}
.text p { color: var(--muted); margin: 0 0 22px; }

/* ---------- image frames — sharp, quiet ---------- */
.image-frame,
.contact-photo,
.island-card figure,
.villa-card figure,
.story-image {
  position: relative;
  overflow: hidden;
  background: var(--sand);
}
.image-frame { border-radius: 2px; }
.image-frame img,
.image-frame video,
.contact-photo img,
.island-card img,
.villa-card img,
.story-image img,
.flow-panel img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.6s var(--ease), filter 1.6s ease;
}
.image-frame:hover img,
.island-card:hover img,
.story-image:hover img,
.villa-card:hover img { transform: scale(1.045); }
.ratio-cinema { aspect-ratio: 16 / 8.6; }

/* ============================================================
   01 · The Land
   ============================================================ */
.land {
  background: linear-gradient(180deg, var(--ivory), var(--paper) 55%);
}
.land .chapter-head {
  grid-template-columns: minmax(150px, .42fr) minmax(0, 1fr);
  align-items: start;
}
.land-feature {
  display: grid;
  grid-template-columns: minmax(280px, .8fr) minmax(0, 1fr);
  gap: clamp(36px, 7vw, 96px);
  align-items: center;
}
.field-note {
  position: relative;
  margin-top: 34px;
  padding-left: 26px;
  border-left: 1px solid var(--bronze);
  font-family: var(--serif);
  font-size: clamp(1.3rem, 1.9vw, 1.8rem);
  font-style: italic;
  line-height: 1.32;
  color: var(--charcoal);
}
.field-note span { display: block; }
.field-note span:first-child {
  font-family: var(--sans);
  font-style: normal;
  font-size: .64rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .3em;
  color: var(--bronze);
  margin-bottom: 14px;
}

/* collage — clean rectangles, gentle offset */
.land-collage {
  display: grid;
  grid-template-columns: 1.1fr .82fr;
  gap: clamp(14px, 1.6vw, 22px);
  align-items: end;
}
.land-collage .tall { grid-row: span 2; aspect-ratio: 4 / 5.6; }
.land-collage .wide { aspect-ratio: 16 / 11; transform: translateY(22px); }
.land-collage .square { aspect-ratio: 1.05 / 1; }

/* stat row — hairline-separated, no cards */
.land-facts {
  list-style: none;
  padding: clamp(34px, 4vw, 56px) 0 0;
  margin: clamp(56px, 8vw, 104px) 0 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.land-facts li {
  padding: 4px clamp(16px, 2vw, 32px);
  border-left: 1px solid var(--line-2);
}
.land-facts li:first-child { border-left: 0; padding-left: 0; }
.land-facts strong {
  display: block;
  font-family: var(--display);
  color: var(--ink);
  font-size: clamp(2rem, 3.6vw, 3.4rem);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: .01em;
}
.land-facts span {
  color: var(--muted);
  font-size: .68rem;
  font-weight: 400;
  letter-spacing: .16em;
  text-transform: uppercase;
  line-height: 1.5;
}

/* ============================================================
   Immersive photo interludes — full-bleed, cinematic
   ============================================================ */
.flow-panel {
  position: relative;
  min-height: clamp(480px, 72vh, 760px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--ivory);
  background: var(--espresso);
  padding: clamp(40px, 7vw, 110px);
  isolation: isolate;
}
.flow-panel figure { position: absolute; inset: 0; z-index: -2; }
.flow-panel img {
  filter: saturate(.96);
  transform: scale(1.04);
  animation: drift 34s ease-in-out infinite alternate;
}
@keyframes drift {
  from { transform: scale(1.04) translate(0, 0); }
  to   { transform: scale(1.11) translate(-1.4%, -1.4%); }
}
.flow-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(18, 16, 12, .82), rgba(18, 16, 12, .34) 50%, rgba(18, 16, 12, .05)),
    linear-gradient(0deg, rgba(18, 16, 12, .6), transparent 50%);
}
.flow-island::after {
  background:
    linear-gradient(270deg, rgba(18, 16, 12, .82), rgba(18, 16, 12, .34) 50%, rgba(18, 16, 12, .05)),
    linear-gradient(0deg, rgba(18, 16, 12, .6), transparent 50%);
}
.flow-copy { position: relative; width: min(540px, 100%); }
.flow-island .flow-copy { margin-left: auto; }
.flow-copy .kicker { color: var(--bronze-2); }
.flow-copy p {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3.4vw, 3.4rem);
  line-height: 1.22;
  font-weight: 400;
  color: rgba(250, 248, 242, .96);
}

/* ============================================================
   02 · The Collection — light gallery
   ============================================================ */
.villas {
  background: linear-gradient(180deg, var(--paper), var(--ivory) 60%);
}
.collection-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(240px, .6fr);
  gap: clamp(26px, 5vw, 72px);
  align-items: end;
  margin-bottom: clamp(44px, 6vw, 76px);
}
.collection-heading .chapter-number {
  border: 0;
  padding: 0;
  margin-bottom: 24px;
}
.collection-heading p {
  margin-bottom: 6px;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.2rem, 1.8vw, 1.65rem);
  color: var(--charcoal);
}

/* amenities — refined inline list */
.amenities {
  list-style: none;
  margin: 0 0 clamp(44px, 6vw, 72px);
  padding: 0;
  border: 1px solid var(--line-2);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
}
.amenities span {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 132px;
  padding: clamp(20px, 2.5vw, 34px);
  color: var(--muted);
  border-left: 1px solid var(--line-2);
}
.amenities span:first-child { border-left: 0; }
.amenities strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(1.45rem, 2vw, 1.95rem);
  line-height: 1.05;
  font-weight: 400;
  color: var(--ink);
}
.amenities small {
  display: block;
  max-width: 290px;
  font-size: clamp(.92rem, 1.05vw, 1.02rem);
  line-height: 1.65;
  font-weight: 300;
  color: var(--muted);
}

/* villa cards — image + caption below, sharp */
.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 2.6vw, 40px) clamp(18px, 2.2vw, 32px);
}
.villa-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: transparent;
}
.villa-card figure {
  aspect-ratio: 4 / 3.6;
  border-radius: 2px;
}
.villa-body { padding: 22px 2px 0; }
.villa-body h3 {
  font-size: clamp(1.6rem, 2.1vw, 2.1rem);
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 8px;
  color: var(--ink);
}
.villa-body > p {
  color: var(--bronze);
  font-size: .76rem;
  font-weight: 400;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin: 0 0 16px;
}
.villa-lines {
  display: grid;
  gap: 5px;
  color: var(--muted);
  font-size: .92rem;
  font-weight: 300;
  line-height: 1.55;
  padding-top: 16px;
  border-top: 1px solid var(--line-2);
}
.pill {
  position: absolute;
  top: 16px; right: 16px;
  z-index: 2;
  display: inline-flex;
  padding: 7px 13px;
  background: rgba(26, 24, 19, .72);
  backdrop-filter: blur(4px);
  color: var(--ivory);
  font-size: .58rem;
  font-weight: 400;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.coming-soon figure { opacity: .72; }
.coming-soon:hover figure { opacity: .85; }
.coming-soon .pill { background: rgba(250, 248, 242, .9); color: var(--ink); }

/* ============================================================
   03 · The Experience — editorial, airy
   ============================================================ */
.island {
  background: linear-gradient(180deg, var(--ivory), var(--paper));
}
.island .chapter-head {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
  max-width: 860px;
  margin-inline: auto;
}
.island .chapter-number { border: 0; padding: 0; margin-bottom: 18px; }
.island .chapter-head p { margin-inline: auto; }

.island-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(240px, .5fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
  margin-bottom: clamp(64px, 9vw, 120px);
}
.island-hero p {
  margin: 0;
  font-family: var(--serif);
  font-style: italic;
  color: var(--charcoal);
  font-size: clamp(1.6rem, 2.6vw, 2.5rem);
  line-height: 1.3;
}

.island-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 3.4vw, 50px);
}
.island-card {
  display: flex;
  flex-direction: column;
}
.island-card figure { aspect-ratio: 4 / 4.6; border-radius: 2px; }
.island-card > div { padding: 26px 2px 0; }
.island-card h3 {
  font-size: clamp(1.5rem, 2.1vw, 2rem);
  font-weight: 400;
  margin-bottom: 14px;
  color: var(--ink);
}
.island-card p { color: var(--muted); margin: 0; font-size: .96rem; font-weight: 300; }

.island-close {
  width: min(920px, 100%);
  margin: clamp(88px, 13vw, 170px) auto 0;
  text-align: center;
}
.island-close p {
  margin: 0;
  font-family: var(--serif);
  font-style: italic;
  color: var(--charcoal);
  font-size: clamp(1.9rem, 4vw, 3.6rem);
  line-height: 1.26;
  font-weight: 400;
}

/* ============================================================
   04 · The Story
   ============================================================ */
.story {
  background: linear-gradient(180deg, var(--paper), var(--paper-2));
}
.story-layout {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(0, 1fr);
  gap: clamp(40px, 7vw, 96px);
  align-items: center;
}
.story-image { aspect-ratio: 4 / 5; border-radius: 2px; }
.story-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.story-gallery .story-image {
  grid-column: 1 / -1;
}
.story-detail {
  aspect-ratio: 4 / 3.2;
  border-radius: 2px;
}
.story-copy { color: var(--muted); }
.story-copy .lead { color: var(--charcoal); margin-top: 0; margin-bottom: 26px; }
.story-copy p { margin: 0 0 20px; font-weight: 300; }
.story-copy p:last-of-type { margin-bottom: 0; }
.story-emphasis {
  color: var(--ink) !important;
  font-weight: 500 !important;
  border-left: 1px solid var(--bronze);
  padding-left: 22px;
}
.signature {
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 6px;
}
.signature strong {
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 3rem);
  font-style: italic;
  font-weight: 400;
  line-height: .95;
  color: var(--ink);
}
.signature span {
  color: var(--bronze);
  font-size: .68rem;
  font-weight: 400;
  letter-spacing: .26em;
  text-transform: uppercase;
}

/* ============================================================
   05 · Inquiry
   ============================================================ */
.contact {
  background: linear-gradient(180deg, var(--paper-2), var(--paper));
  padding-bottom: clamp(88px, 10vw, 130px);
}
.contact p { color: var(--muted); }

/* review band — espresso */
.review-stage {
  position: relative;
  background: var(--espresso);
  color: var(--ivory);
  padding: clamp(40px, 6vw, 84px);
  margin-bottom: clamp(60px, 8vw, 100px);
  border-radius: 2px;
  overflow: hidden;
}
.review-intro {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(28px, 5vw, 64px);
  align-items: end;
  margin-bottom: 46px;
}
.review-intro .kicker { color: var(--bronze-2); }
.review-intro h3 {
  color: var(--ivory);
  font-size: clamp(2.4rem, 4.6vw, 4.4rem);
  font-weight: 400;
  line-height: 1.06;
}
.review-intro h3 em { color: var(--bronze-2); }
.review-summary {
  max-width: 600px;
  margin: 22px 0 0;
  color: rgba(250, 248, 242, .72) !important;
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  font-weight: 300;
}
.rating-badge {
  align-self: center;
  border: 1px solid var(--line-light);
  padding: 13px 20px;
  color: rgba(250, 248, 242, .86);
  font-size: .66rem;
  font-weight: 400;
  letter-spacing: .2em;
  text-transform: uppercase;
  white-space: nowrap;
}
.reviews {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--line-light) transparent;
}
.reviews::-webkit-scrollbar { height: 4px; }
.reviews::-webkit-scrollbar-thumb { background: var(--line-light); }
.review-card {
  min-width: min(390px, 80vw);
  scroll-snap-align: start;
  padding: 8px clamp(28px, 3vw, 46px);
  border-left: 1px solid var(--line-light2);
  display: flex;
  flex-direction: column;
}
.review-card:first-child { padding-left: 0; border-left: 0; }
.review-label { color: var(--bronze-2) !important; margin-bottom: 18px; }
.review-card p {
  color: rgba(250, 248, 242, .92);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.4rem;
  line-height: 1.4;
  margin: 0 0 24px;
  flex: 1;
  font-weight: 400;
}
.review-card small { color: rgba(250, 248, 242, .55); font-weight: 400; letter-spacing: .08em; }

/* contact grid */
.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(40px, 7vw, 92px);
  align-items: start;
}
.contact-photo { aspect-ratio: 16 / 11; border-radius: 2px; margin-bottom: 30px; }
.trust-line {
  border-left: 1px solid var(--bronze);
  padding-left: 22px;
  margin-bottom: 30px;
}
.trust-line strong {
  display: block;
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.15;
}
.trust-line span { color: var(--muted); font-weight: 300; }
.contact-card {
  border-top: 1px solid var(--line-2);
  padding: 26px 0;
  margin: 0;
}
.contact-card strong {
  display: block;
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 4px;
}
.contact-card span { color: var(--muted); font-weight: 300; }
.contact-card .button { margin-top: 18px; }
.direct-note { margin-top: 26px; max-width: 520px; color: var(--muted); font-weight: 300; }

/* booking form */
.booking-form {
  background: var(--ivory);
  border: 1px solid var(--line-2);
  border-radius: 2px;
  padding: clamp(28px, 4vw, 56px);
}
.booking-form .label { margin-bottom: 26px; display: block; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.booking-form input,
.booking-form textarea,
.booking-form select {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  padding: 15px 2px;
  margin-bottom: 6px;
  color: var(--ink);
  font-weight: 300;
  outline: none;
  border-radius: 0;
  transition: border-color .3s ease;
}
.booking-form input::placeholder,
.booking-form textarea::placeholder { color: var(--soft); }
.booking-form input:focus,
.booking-form textarea:focus,
.booking-form select:focus { border-bottom-color: var(--bronze); }
.booking-form textarea { min-height: 110px; resize: vertical; }
.booking-form .button { margin-top: 28px; width: 100%; }
input.invalid, select.invalid, textarea.invalid { border-bottom-color: #a8512c !important; }
.form-note { color: var(--muted); min-height: 1.4em; margin: 16px 0 0; font-size: .88rem; font-weight: 300; }

/* ============================================================
   Final refinements — richer section rhythm + booking calendar
   ============================================================ */
.section { padding-block: clamp(70px, 8vw, 118px); }

.land {
  background:
    radial-gradient(900px 520px at 78% 8%, rgba(195, 168, 119, .18), transparent 62%),
    linear-gradient(180deg, #faf7ef, #f1eadb 70%, #ede1cd);
}
.land .chapter-head p { display: none; }
.land-feature { align-items: start; margin-top: clamp(28px, 4vw, 56px); }
.land-feature .text {
  display: grid;
  gap: clamp(18px, 2vw, 28px);
  align-content: start;
}
.land-feature .text p { margin: 0; }
.land-feature .text > p:first-of-type {
  color: var(--muted);
  font-size: clamp(1.02rem, 1.3vw, 1.16rem);
  line-height: 1.78;
}
.land-opening strong,
.land-emphasis strong {
  color: var(--ink);
  font-family: inherit;
  font-size: inherit;
  font-weight: 600;
  line-height: inherit;
}
.land-feature .text p:not(.land-opening):not(.land-emphasis) strong {
  color: var(--ink);
  font-weight: 500;
}
.land-opening strong {
  display: inline;
  margin-bottom: 0;
}
.land-emphasis {
  color: var(--muted);
  font-size: clamp(1.02rem, 1.3vw, 1.16rem);
  line-height: 1.68;
}
.land-emphasis strong {
  display: inline;
  max-width: none;
  margin-top: 0;
  font-size: inherit;
  font-weight: 600;
  line-height: inherit;
}
.land-distance {
  color: var(--muted);
  font-size: clamp(.98rem, 1.15vw, 1.08rem);
  line-height: 1.72;
}
.land-facts {
  margin-top: clamp(34px, 5vw, 64px);
  padding-top: clamp(22px, 3vw, 34px);
}

.flow-panel { min-height: clamp(420px, 58vh, 620px); }

.villas {
  background:
    radial-gradient(900px 600px at 18% 0%, rgba(195, 168, 119, .16), transparent 58%),
    linear-gradient(180deg, #2f3a2e, #263225 72%, #342419);
  color: var(--ivory);
}
.villas .chapter-number,
.villas .collection-heading p { color: var(--bronze-2); }
.villas h2,
.villas .collection-heading h2 { color: var(--ivory); }
.villas .amenities {
  border-color: rgba(250, 248, 242, .2);
  background: rgba(250, 248, 242, .92);
  color: var(--ink);
}
.villas .amenities span {
  border-color: rgba(33, 31, 25, .13);
  color: var(--muted);
}
.villas .amenities strong { color: var(--ink); }
.villas .amenities small { color: var(--muted); }
.villa-card {
  min-height: auto;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 2px;
  background: #1d241b;
  transform: perspective(1000px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.villa-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(500px 360px at var(--glow-x, 50%) var(--glow-y, 50%), rgba(250, 248, 242, .18), transparent 52%),
    linear-gradient(180deg, rgba(20, 18, 13, .04) 18%, rgba(20, 18, 13, .78));
}
.villa-card:hover { box-shadow: 0 22px 46px rgba(0, 0, 0, .24); }
.villa-card figure {
  position: absolute;
  inset: 0;
  aspect-ratio: auto;
  border-radius: 0;
}
.villa-body {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  padding: clamp(18px, 2.2vw, 28px);
  color: var(--ivory);
}
.villa-body h3 {
  color: var(--ivory);
  font-size: clamp(1.48rem, 1.85vw, 1.9rem);
  max-width: calc(100% - 8px);
}
.villa-body > p { color: var(--bronze-2); margin-bottom: 10px; }
.villa-lines {
  border-color: rgba(250, 248, 242, .18);
  color: rgba(250, 248, 242, .8);
  font-size: .84rem;
  line-height: 1.45;
  padding-top: 10px;
}
.coming-soon figure { opacity: .58; filter: grayscale(.08); }
.coming-soon .villa-body { color: rgba(250, 248, 242, .86); }
.villa-card .pill {
  top: 18px;
  right: 18px;
  left: auto;
  bottom: auto;
  max-width: calc(100% - 36px);
  white-space: nowrap;
}

.flow-island {
  background: #2e1d13;
}

.island {
  background:
    radial-gradient(900px 600px at 72% 0%, rgba(195, 168, 119, .1), transparent 58%),
    linear-gradient(180deg, #3d2518, #2d1c13 78%, #211810);
  color: var(--ivory);
}
.island .chapter-number,
.island .kicker { color: var(--bronze-2); }
.island .chapter-head h2,
.island .chapter-head h2 em,
.island-card h3,
.island-hero p { color: var(--ivory); }
.island .chapter-head p,
.island-card p { color: rgba(250, 248, 242, .72); }
.island .image-frame,
.island-card figure { background: rgba(250, 248, 242, .08); }
.island-grid { gap: clamp(34px, 4vw, 58px); }
.island-card {
  padding-top: clamp(26px, 3vw, 42px);
  border-top: 1px solid rgba(250, 248, 242, .16);
}
.island-card figure { aspect-ratio: 4 / 3.1; }
.island-close { display: none; }

.story {
  background:
    radial-gradient(900px 560px at 15% 10%, rgba(152, 121, 77, .16), transparent 62%),
    linear-gradient(180deg, #e2d3bd, #f4ebdc);
}
.story-layout {
  display: grid;
  grid-template-columns: minmax(280px, .82fr) minmax(0, 1fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
}
.story-portrait {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 28px 80px rgba(72, 52, 32, .14);
}
.story-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.story-copy {
  width: auto;
  margin-inline: 0;
  background: rgba(250, 248, 242, .9);
  border: 1px solid rgba(33, 31, 25, .14);
  box-shadow: 0 28px 80px rgba(72, 52, 32, .12);
  padding: clamp(34px, 5vw, 72px);
}
.story-copy .lead {
  font-size: clamp(1.75rem, 2.7vw, 2.65rem);
}
.story-gallery { display: none; }
.story-detail { display: none; }

.contact {
  background:
    radial-gradient(900px 600px at 15% 0%, rgba(195, 168, 119, .12), transparent 60%),
    linear-gradient(180deg, #2d3528, #3b2a1d 70%, #241a13);
  color: var(--ivory);
}
.contact .chapter-number,
.contact .kicker { color: var(--bronze-2); }
.contact h2,
.contact h2 em,
.contact .trust-line strong,
.contact-card strong { color: var(--ivory); }
.contact p,
.contact .trust-line span,
.contact-card span,
.direct-note { color: rgba(250, 248, 242, .72); }
.contact-card { border-color: rgba(250, 248, 242, .16); }
.contact .button.light { border-color: rgba(250, 248, 242, .32); color: var(--ivory); }
.contact .button.light:hover { background: var(--ivory); color: var(--ink); }
.booking-form {
  background: #fbf8f1;
  color: var(--ink);
  box-shadow: 0 28px 70px rgba(0, 0, 0, .22);
}

.review-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 1.6vw, 22px);
  margin-top: clamp(28px, 4vw, 52px);
  padding-top: clamp(24px, 3vw, 38px);
  border-top: 1px solid rgba(250, 248, 242, .14);
}
.review-gallery figure {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: rgba(250, 248, 242, .08);
}
.review-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease), filter 1.4s ease;
}
.review-gallery figure:hover img {
  transform: scale(1.045);
  filter: saturate(1.05);
}

.date-field {
  position: relative;
  z-index: 5;
}
.date-field input { cursor: pointer; }
.date-picker {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  width: min(360px, 88vw);
  background: #fbf8f1;
  border: 1px solid var(--line);
  box-shadow: 0 22px 50px rgba(33, 31, 25, .18);
  padding: 18px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity .25s ease, transform .25s ease;
}
.date-picker.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.date-picker-head,
.date-jump,
.date-picker-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.date-nav,
.date-title,
.date-picker-actions button {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  min-height: 36px;
  padding: 6px 12px;
  cursor: pointer;
}
.date-nav {
  width: 38px;
  padding: 0;
  font-size: 1.4rem;
  line-height: 1;
}
.date-title {
  flex: 1;
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.date-jump { margin-top: 10px; }
.date-jump select {
  margin: 0;
  padding: 8px 6px;
  border: 1px solid var(--line);
}
.date-weekdays,
.date-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
}
.date-weekdays {
  margin: 16px 0 8px;
  color: var(--soft);
  font-size: .62rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-align: center;
}
.date-grid button,
.date-grid span {
  min-height: 36px;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}
.date-grid button:hover { background: rgba(152, 121, 77, .12); }
.date-grid button:disabled {
  color: rgba(33, 31, 25, .25);
  cursor: not-allowed;
}
.date-grid button.in-range { background: rgba(152, 121, 77, .14); }
.date-grid button.selected {
  background: var(--bronze);
  color: var(--ivory);
}
.date-picker-actions {
  justify-content: flex-end;
  margin-top: 16px;
}
.date-picker-actions button:last-child {
  background: var(--ink);
  color: var(--ivory);
}

/* ============================================================
   Mobile sticky CTA
   ============================================================ */
.mobile-book {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 8800;
  display: none;
  grid-template-columns: 1fr 1fr;
}
.mobile-book a {
  text-align: center;
  padding: 16px 10px;
  font-size: .68rem;
  font-weight: 400;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.mobile-book a:first-child { background: var(--ink); color: var(--ivory); }
.mobile-book a:last-child { background: var(--bronze); color: var(--ivory); }

/* ============================================================
   Footer
   ============================================================ */
footer {
  background: var(--espresso);
  color: rgba(250, 248, 242, .6);
  padding: clamp(48px, 6vw, 72px) clamp(22px, 6vw, 88px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  font-size: .74rem;
  font-weight: 300;
  letter-spacing: .12em;
}
footer a { color: rgba(250, 248, 242, .82); transition: color .3s ease; }
footer a:hover { color: var(--bronze-2); }
footer > div:nth-child(2) {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  letter-spacing: .02em;
  color: rgba(250, 248, 242, .8);
}

/* ============================================================
   Reveal — slow, restrained
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 1.3s var(--ease), transform 1.3s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal.delay-1 { transition-delay: .14s; }
.reveal.delay-2 { transition-delay: .28s; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1080px) {
  .collection-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .island-grid { grid-template-columns: 1fr; gap: 40px; }
  .island-card { flex-direction: row; gap: 28px; align-items: center; }
  .island-card figure { flex: 0 0 44%; aspect-ratio: 4 / 3.4; }
  .island-card > div { padding: 0; }
}

@media (max-width: 900px) {
  .chapter-dots { display: none; }
  .nav { min-height: 66px; }
  .mobile-toggle { display: block; }
  .nav-links {
    position: fixed;
    top: 66px; left: 14px; right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(241, 237, 227, .98);
    color: var(--ink);
    padding: 10px 18px;
    border: 1px solid var(--line);
  }
  .nav-links.open { display: flex; }
  .nav-links > a { padding: 16px 0; border-bottom: 1px solid var(--line-2); opacity: 1; }
  .nav-links > a::after { display: none; }
  .nav-cta { text-align: center; margin-top: 14px; border-color: var(--bronze); color: var(--bronze); }
  .lang-toggle { align-self: flex-start; margin-top: 14px; border-color: var(--line); }

  .chapter-head,
  .land .chapter-head,
  .land-feature,
  .collection-heading,
  .island-hero,
  .contact-grid { grid-template-columns: 1fr; }

  .land-collage { grid-template-columns: 1fr 1fr; }
  .land-collage .tall { grid-row: auto; aspect-ratio: 4 / 4.4; grid-column: 1 / -1; }
  .land-collage .wide { transform: none; }
  .land-facts {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
  }
  .land-facts li {
    border-left: 1px solid var(--line-2);
    padding: 4px clamp(12px, 1.8vw, 22px);
  }
  .land-facts li:first-child { border-left: 0; padding-left: 0; }
  .land-facts strong { font-size: clamp(1.7rem, 5vw, 2.7rem); }
  .land-facts span { font-size: .58rem; letter-spacing: .13em; }
  .amenities { grid-template-columns: repeat(2, 1fr); }
  .amenities span:nth-child(odd) { border-left: 0; }
  .amenities span:nth-child(n + 3) { border-top: 1px solid var(--line-2); }
  .villas .amenities span:nth-child(n + 3) { border-top-color: rgba(33, 31, 25, .13); }
  .collection-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .review-intro { grid-template-columns: 1fr; align-items: start; }
  .rating-badge { justify-self: start; align-self: start; }
  .review-gallery { grid-template-columns: repeat(3, 1fr); }
  .story-image,
  .story-portrait { max-width: 560px; }
  .mobile-book { display: grid; }
  footer { padding-bottom: 84px; justify-content: center; text-align: center; }
}

@media (max-width: 560px) {
  .section { padding-block: 56px; }
  .hero h1 { font-size: clamp(2.9rem, 15vw, 4.4rem); }
  .subtitle { font-size: 1.4rem; }
  .hero-actions { margin-top: 30px; width: 100%; }
  .hero-actions .button { flex: 1; }
  .chapter-head h2,
  .collection-heading h2 { font-size: clamp(2.4rem, 11vw, 3.2rem); }
  .land-collage { grid-template-columns: 1fr 1fr; gap: 12px; }
  .land-collage .tall { grid-row: span 2; grid-column: auto; aspect-ratio: 4 / 5; }
  .land-collage .wide { aspect-ratio: 1 / 1; }
  .land-collage .square { aspect-ratio: 1 / 1; }
  .land-facts {
    grid-template-columns: repeat(4, minmax(122px, 1fr));
    gap: 0;
    overflow-x: auto;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
  }
  .land-facts li {
    border-left: 1px solid var(--line-2);
    padding: 4px 14px;
  }
  .land-facts li:first-child { border-left: 0; padding-left: 0; }
  .land-facts strong { font-size: clamp(1.8rem, 12vw, 2.35rem); }
  .land-facts span { font-size: .55rem; letter-spacing: .12em; }
  .story-layout { grid-template-columns: 1fr; gap: 24px; }
  .story-copy { padding: 26px 22px; }
  .story-portrait { aspect-ratio: 4 / 3.2; }
  .amenities { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .amenities span { min-height: 0; padding: 18px 16px; }
  .amenities span,
  .amenities span:nth-child(odd) { border-left: 1px solid var(--line-2); }
  .amenities span:first-child,
  .amenities span:nth-child(odd) { border-left: 0; }
  .amenities span:nth-child(n + 3) { border-top: 1px solid var(--line-2); }
  .villas .amenities span:nth-child(n + 3) { border-top-color: rgba(33, 31, 25, .13); }
  .collection-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .villa-card {
    aspect-ratio: 1 / 1.14;
    min-height: 420px;
  }
  .villa-body { padding: 20px; }
  .villa-body h3 { font-size: 1.7rem; }
  .villa-body > p {
    font-size: .66rem;
    margin-bottom: 12px;
  }
  .villa-lines {
    font-size: .92rem;
    line-height: 1.5;
    gap: 6px;
    padding-top: 12px;
  }
  .villa-card .pill {
    top: 12px;
    right: 12px;
    max-width: calc(100% - 24px);
    padding: 7px 11px;
    font-size: .54rem;
    letter-spacing: .18em;
  }
  .island-grid { gap: 24px; }
  .island-card { flex-direction: row; gap: 16px; align-items: start; padding-top: 18px; }
  .island-card figure { flex: 0 0 42%; width: auto; aspect-ratio: 1 / 1; }
  .island-card > div { padding-top: 0; }
  .island-card h3 { font-size: 1.3rem; margin-bottom: 10px; }
  .island-card p { font-size: .9rem; line-height: 1.55; }
  .review-stage { padding: 26px 18px; margin-bottom: 44px; }
  .review-intro { margin-bottom: 28px; gap: 18px; }
  .review-intro h3 { font-size: clamp(2rem, 10vw, 2.9rem); }
  .reviews { gap: 0; }
  .review-card {
    min-width: min(290px, 74vw);
    padding: 6px 18px;
  }
  .review-card p { font-size: 1.08rem; margin-bottom: 16px; }
  .review-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .review-gallery figure { aspect-ratio: 1 / 1; }
  .review-gallery figure:last-child { grid-column: 1 / -1; aspect-ratio: 16 / 8.8; }
  .contact-photo { aspect-ratio: 16 / 9.5; margin-bottom: 18px; }
  .contact-card { padding: 18px 0; }
  .booking-form { padding: 22px 18px; }
  .form-row { grid-template-columns: 1fr; gap: 10px; }
  .flow-panel {
    min-height: 42vh;
    padding: 24px 18px;
    align-items: end;
  }
  .flow-copy { width: min(360px, 100%); }
  .flow-copy p { font-size: clamp(1.2rem, 7vw, 1.8rem); }
  .ratio-cinema { aspect-ratio: 4 / 4.2; }
  footer { flex-direction: column; gap: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}
