/* ============================================================
   TANA VILLAS — Design System
   Bali-inspired luxury villas · Panglao, Bohol
   Palette: warm white / sand / stone · tropical green · muted gold
   Type: Cormorant Garamond (display serif) + Jost (geometric sans)
   ============================================================ */

/* ----------------------------------------------------- tokens */
:root {
  /* surfaces */
  --bone:     #FAF6EF;
  --sand:     #EFE9DD;
  --sand-2:   #E7DFD0;
  --shell:    #DED4C2;

  /* neutrals */
  --stone:    #9A9286;
  --stone-d:  #6B645A;
  --charcoal: #3B403A;
  --ink:      #262A24;

  /* botanicals + metal */
  --forest:   #4C5A46;
  --forest-d: #3A4636;
  --wood:     #A9855F;
  --gold:     #B08E54;
  --gold-d:   #997A45;

  /* lines + helpers */
  --line:     rgba(59, 64, 58, 0.14);
  --line-2:   rgba(59, 64, 58, 0.08);
  --on-dark:  rgba(255, 255, 255, 0.86);
  --on-dark-d:rgba(255, 255, 255, 0.62);

  /* type */
  --font-display: 'Cormorant Garamond', 'Hoefler Text', Georgia, serif;
  --font-sans: 'Jost', 'Century Gothic', system-ui, sans-serif;

  /* metrics */
  --container: 1280px;
  --container-narrow: 920px;
  --radius: 3px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --nav-h: 96px;
}

/* ----------------------------------------------------- reset */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--stone-d);
  background: var(--sand);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }

::selection { background: var(--gold); color: #fff; }

/* ----------------------------------------------------- type */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.08;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.6rem, 6vw, 5rem); font-weight: 300; }
h2 { font-size: clamp(2rem, 4.2vw, 3.4rem); font-weight: 300; }
h3 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); }
h4 { font-size: 1.3rem; }

p { max-width: 64ch; }
strong { font-weight: 500; color: var(--charcoal); }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold-d);
  display: inline-block;
}
.eyebrow.on-dark { color: var(--gold); }

.lead {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  line-height: 1.45;
  font-weight: 300;
  color: var(--charcoal);
  letter-spacing: 0;
}

.muted { color: var(--stone); }
.serif { font-family: var(--font-display); }

/* ----------------------------------------------------- layout */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.4rem, 5vw, 4rem);
}
.container.narrow { max-width: var(--container-narrow); }

.section { padding-block: clamp(5rem, 11vw, 9.5rem); }
.section.tight { padding-block: clamp(3.5rem, 7vw, 6rem); }
.section--bone  { background: var(--bone); }
.section--sand2 { background: var(--sand-2); }
.section--forest { background: var(--forest-d); color: var(--on-dark); }
.section--ink   { background: var(--ink); color: var(--on-dark); }

.section--forest h1, .section--forest h2, .section--forest h3, .section--forest h4,
.section--ink h1, .section--ink h2, .section--ink h3, .section--ink h4 { color: #fff; }
.section--forest .lead, .section--ink .lead { color: rgba(255,255,255,.82); }

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

/* section heading block */
.head { max-width: 760px; }
.head.center { margin-inline: auto; text-align: center; }
.head .eyebrow { margin-bottom: 1.25rem; }
.head h2 { margin-bottom: 1.4rem; }
.head p { color: var(--stone-d); }
.head.center p { margin-inline: auto; }
.section--forest .head p, .section--ink .head p, .cta-band p { color: rgba(255,255,255,.74); }

/* grids */
.grid { display: grid; gap: clamp(1.5rem, 3vw, 2.5rem); }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }

/* ----------------------------------------------------- buttons */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--font-sans);
  font-size: 0.74rem; font-weight: 400;
  letter-spacing: 0.2em; text-transform: uppercase;
  padding: 1.05rem 2rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  transition: all .45s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 14px; height: 14px; transition: transform .45s var(--ease); }
.btn:hover svg { transform: translateX(4px); }

.btn--primary { background: var(--charcoal); color: #fff; }
.btn--primary:hover { background: var(--ink); }

.btn--gold { background: var(--gold); color: #fff; }
.btn--gold:hover { background: var(--gold-d); }

.btn--outline { border-color: var(--charcoal); color: var(--charcoal); }
.btn--outline:hover { background: var(--charcoal); color: #fff; }

.btn--ghost-light { border-color: rgba(255,255,255,.55); color: #fff; }
.btn--ghost-light:hover { background: #fff; color: var(--ink); border-color: #fff; }

.btn--light { background: #fff; color: var(--ink); }
.btn--light:hover { background: var(--sand); }

.link-arrow {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-size: 0.74rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold-d); font-weight: 400;
  padding-bottom: 4px; border-bottom: 1px solid var(--line);
  transition: color .4s var(--ease), border-color .4s var(--ease);
}
.link-arrow svg { width: 14px; height: 14px; transition: transform .4s var(--ease); }
.link-arrow:hover { color: var(--ink); border-color: var(--gold); }
.link-arrow:hover svg { transform: translateX(4px); }
.on-dark .link-arrow, .link-arrow.on-dark { color: var(--gold); border-color: rgba(255,255,255,.25); }
.link-arrow.on-dark:hover { color: #fff; }

.btn-row { display: flex; flex-wrap: wrap; gap: 1rem; }

/* ----------------------------------------------------- nav */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: background .5s var(--ease), box-shadow .5s var(--ease), height .5s var(--ease);
}
.nav .container { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
/* soft scrim so the transparent header stays readable over bright imagery */
.nav::before {
  content: ''; position: absolute; left: 0; right: 0; top: 0; height: 170px;
  background: linear-gradient(180deg, rgba(18,20,16,.6) 0%, rgba(18,20,16,.26) 45%, transparent 100%);
  pointer-events: none; z-index: -1; transition: opacity .5s var(--ease);
}
.nav.scrolled::before, .nav--solid::before { opacity: 0; }
.nav:not(.scrolled):not(.nav--solid) .nav__links a,
.nav:not(.scrolled):not(.nav--solid) .nav__cta .btn { text-shadow: 0 1px 10px rgba(0,0,0,.45); }
.nav:not(.scrolled):not(.nav--solid) .nav__logo img { filter: drop-shadow(0 2px 10px rgba(0,0,0,.4)); }
.nav__logo { display: block; }
.nav__logo img { height: 54px; width: auto; transition: opacity .4s var(--ease); }
.nav.scrolled .nav__logo img { height: 46px; }
.nav__logo .logo-charcoal { position: absolute; top: 0; left: 0; opacity: 0; }
.nav__logo { position: relative; }

.nav__links { display: flex; align-items: center; gap: clamp(1.1rem, 2vw, 2.1rem); }
.nav__links a {
  font-size: 0.84rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--on-dark); font-weight: 300;
  padding-block: 0.4rem; position: relative;
  transition: color .35s var(--ease);
}
.nav__links a::after {
  content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 1px;
  background: var(--gold); transition: width .4s var(--ease);
}
.nav__links a:hover::after, .nav__links a.active::after { width: 100%; }

.nav__cta { display: flex; align-items: center; gap: 1rem; }
.nav__cta .btn { padding: 0.85rem 1.6rem; font-size: 0.78rem; }

/* scrolled / solid state */
.nav.scrolled {
  background: rgba(247, 243, 236, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
  height: 72px;
}
.nav.scrolled .logo-white { opacity: 0; }
.nav.scrolled .logo-charcoal { opacity: 1; }
.nav.scrolled .nav__links a { color: var(--charcoal); }
.nav.scrolled .nav__cta .btn--ghost-light { border-color: var(--charcoal); color: var(--charcoal); }
.nav.scrolled .nav__cta .btn--ghost-light:hover { background: var(--charcoal); color: #fff; }

/* solid by default (interior pages) */
.nav--solid { background: rgba(247, 243, 236, 0.92); backdrop-filter: blur(14px); box-shadow: 0 1px 0 var(--line); }
.nav--solid .logo-white { opacity: 0; }
.nav--solid .logo-charcoal { opacity: 1; }
.nav--solid .nav__links a { color: var(--charcoal); }
.nav--solid .nav__cta .btn--ghost-light { border-color: var(--charcoal); color: var(--charcoal); }
.nav--solid .nav__cta .btn--ghost-light:hover { background: var(--charcoal); color: #fff; }

/* hamburger */
.nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: 8px; }
.nav__burger span { width: 26px; height: 1.5px; background: currentColor; color: var(--on-dark); transition: .4s var(--ease); }
.nav.scrolled .nav__burger span, .nav--solid .nav__burger span { background: var(--charcoal); }

/* mobile overlay menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 99;
  background: var(--bone);
  display: flex; flex-direction: column; justify-content: flex-start;
  gap: 0.1rem; overflow-y: auto;
  padding: calc(var(--nav-h) + 1.4rem) clamp(1.6rem, 8vw, 4rem) 2rem;
  transform: translateY(-100%); opacity: 0; visibility: hidden;
  transition: transform .6s var(--ease), opacity .5s var(--ease), visibility .5s;
}
.mobile-menu.open { transform: translateY(0); opacity: 1; visibility: visible; }
/* nav links — elegant serif list */
.mobile-menu a:not(.btn) {
  font-family: var(--font-display); font-size: clamp(1.4rem, 5.6vw, 2rem);
  color: var(--ink); padding-block: 0.55rem; font-weight: 300; line-height: 1.15;
  border-bottom: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between;
}
.mobile-menu a:not(.btn)::after {
  content: '›'; font-family: var(--font-sans); color: var(--gold); opacity: .55;
  font-size: 1.1em; transition: transform .3s var(--ease);
}
.mobile-menu a:not(.btn):active::after { transform: translateX(4px); }
/* the CTA button — full width, correct size, white text on charcoal */
.mobile-menu a.btn {
  margin-top: 1.6rem; align-self: stretch; width: 100%;
  justify-content: center; text-align: center; white-space: normal;
  font-family: var(--font-sans); font-size: 0.8rem; letter-spacing: 0.16em;
  padding: 1.15rem 1.3rem; color: #fff; border-radius: var(--radius);
}
/* highlight the Virtual Tour item so it stands out */
.mobile-menu a[href="tour/"] { color: var(--gold-d); }
.mobile-menu a[href="tour/"]::after { opacity: 1; }

/* ----------------------------------------------------- hero */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: flex-end;
  color: #fff; overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; animation: kenburns 26s ease-out infinite alternate; }
@keyframes kenburns { from { transform: scale(1.04); } to { transform: scale(1.16) translateY(-1.5%); } }
.hero__bg::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(30,33,28,.34) 0%, rgba(30,33,28,.08) 30%, rgba(30,33,28,.12) 55%, rgba(26,29,24,.74) 100%);
}
.hero__inner { position: relative; z-index: 2; padding-top: calc(var(--nav-h) + 1.5rem); padding-bottom: clamp(4rem, 9vh, 8rem); width: 100%; text-shadow: 0 1px 26px rgba(0,0,0,.5), 0 1px 4px rgba(0,0,0,.4); }
.hero h1 { color: #fff; max-width: 16ch; margin-bottom: 1.6rem; }
.hero .eyebrow { color: rgba(255,255,255,.85); margin-bottom: 1.8rem; }
.hero__sub { font-size: clamp(1.05rem, 1.7vw, 1.3rem); color: rgba(255,255,255,.9); max-width: 46ch; margin-bottom: 2.6rem; font-weight: 300; }
.hero .btn-row { gap: 1rem; }

.hero__scroll {
  position: absolute; left: 50%; bottom: 2rem; transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: .7rem;
  font-size: .62rem; letter-spacing: .3em; text-transform: uppercase; color: rgba(255,255,255,.7);
}
.hero__scroll .line { width: 1px; height: 46px; background: rgba(255,255,255,.4); position: relative; overflow: hidden; }
.hero__scroll .line::after { content:''; position:absolute; top:-100%; left:0; width:100%; height:60%; background:#fff; animation: scrolldot 2.4s var(--ease) infinite; }
@keyframes scrolldot { 0%{ top:-60%;} 60%,100%{ top:100%; } }

/* hero stat strip */
.hero__stats { display: flex; flex-wrap: wrap; gap: clamp(1.5rem, 5vw, 4rem); margin-top: 3rem; }
.hero__stats .stat { }
.hero__stats .stat b { font-family: var(--font-display); font-size: 2.2rem; font-weight: 300; color: #fff; display: block; line-height: 1; }
.hero__stats .stat span { font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.7); }

/* ----------------------------------------------------- intro / split */
.split { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(2.5rem, 6vw, 6rem); }
.split.reverse .split__media { order: 2; }
.split__media { position: relative; }
.split__media img { width: 100%; border-radius: var(--radius); }
.split__media .tag {
  position: absolute; bottom: 1.4rem; left: 1.4rem;
  background: rgba(250,246,239,.94); color: var(--charcoal);
  padding: .7rem 1.2rem; font-size: .68rem; letter-spacing: .18em; text-transform: uppercase;
  border-radius: var(--radius);
}
.split__body .eyebrow { margin-bottom: 1.2rem; }
.split__body h2 { margin-bottom: 1.5rem; }
.split__body p + p { margin-top: 1.1rem; }
.split__body .btn-row, .split__body .link-arrow { margin-top: 2rem; }

/* feature list with hairline */
.feature-list { margin-top: 2rem; display: grid; gap: 0; }
.feature-list li { display: flex; gap: 1.2rem; padding: 1.2rem 0; border-top: 1px solid var(--line); }
.feature-list li:last-child { border-bottom: 1px solid var(--line); }
.feature-list .n { font-family: var(--font-display); font-size: 1.2rem; color: var(--gold-d); min-width: 2ch; }
.feature-list h4 { margin-bottom: .2rem; font-family: var(--font-sans); font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 400; color: var(--charcoal); }
.feature-list p { font-size: .98rem; margin: 0; }

/* ----------------------------------------------------- USP cards */
.usp { padding: 2.2rem 1.8rem; background: var(--bone); border: 1px solid var(--line-2); border-radius: var(--radius); transition: transform .5s var(--ease), box-shadow .5s var(--ease); }
.usp:hover { transform: translateY(-5px); box-shadow: 0 24px 50px -28px rgba(40,42,36,.4); }
.usp__icon { width: 62px; height: 62px; display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(176,142,84,.4); border-radius: 50%; color: var(--gold-d); margin-bottom: 1.6rem;
  transition: border-color .55s var(--ease), background .55s var(--ease), transform .55s var(--ease); }
.usp__icon svg { width: 27px; height: 27px; stroke-width: .9; stroke-linecap: round; stroke-linejoin: round; fill: none; }
.usp:hover .usp__icon { border-color: var(--gold); background: rgba(176,142,84,.07); transform: translateY(-2px); }
.usp h3 { font-size: 1.3rem; margin-bottom: .6rem; }
.usp p { font-size: .96rem; margin: 0; }
.section--forest .usp, .section--ink .usp { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.12); }
.section--forest .usp h3, .section--ink .usp h3 { color: #fff; }
.section--forest .usp p, .section--ink .usp p { color: rgba(255,255,255,.74); }
.section--forest .usp__icon, .section--ink .usp__icon { color: var(--gold); border-color: rgba(255,255,255,.28); }
.section--forest .usp:hover .usp__icon, .section--ink .usp:hover .usp__icon { border-color: var(--gold); background: rgba(255,255,255,.06); }
.section--forest .usp:hover, .section--ink .usp:hover { box-shadow: 0 24px 50px -30px rgba(0,0,0,.6); }

/* ----------------------------------------------------- villa cards */
.villa-card { display: block; group: villa; }
.villa-card__media { position: relative; overflow: hidden; border-radius: var(--radius); aspect-ratio: 4/3; }
.villa-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.villa-card:hover .villa-card__media img { transform: scale(1.06); }
.villa-card__count { position: absolute; top: 1rem; left: 1rem; background: rgba(250,246,239,.92); color: var(--charcoal); font-size: .64rem; letter-spacing: .18em; text-transform: uppercase; padding: .45rem .9rem; border-radius: 100px; }
.villa-card__body { padding-top: 1.5rem; }
.villa-card__body h3 { margin-bottom: .3rem; }
.villa-card__meta { display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; font-size: .78rem; letter-spacing: .08em; color: var(--stone-d); margin-bottom: 1rem; text-transform: uppercase; }
.villa-card__meta span { display: inline-flex; align-items: center; gap: .4rem; }

/* ----------------------------------------------------- gallery */
.gallery { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(.6rem, 1.2vw, 1rem); }
.gallery a { overflow: hidden; border-radius: var(--radius); position: relative; cursor: pointer; }
.gallery a img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.gallery a:hover img { transform: scale(1.05); }
.gallery a::after { content:''; position:absolute; inset:0; background:rgba(30,33,28,0); transition:.4s; }
.gallery a:hover::after { background:rgba(30,33,28,.12); }
.g-tall { grid-column: span 4; grid-row: span 2; }
.g-wide { grid-column: span 8; }
.g-sq   { grid-column: span 4; }
.g-half { grid-column: span 6; }

/* lightbox */
.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(22,24,20,.94); display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: opacity .4s var(--ease), visibility .4s; padding: 4vw; }
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img { max-width: 100%; max-height: 90vh; border-radius: var(--radius); box-shadow: 0 30px 80px rgba(0,0,0,.5); }
.lightbox__close, .lightbox__nav { position: absolute; background: none; border: 0; color: #fff; opacity: .8; transition: opacity .3s; }
.lightbox__close { top: 2rem; right: 2.2rem; font-size: 2rem; line-height: 1; }
.lightbox__nav { top: 50%; transform: translateY(-50%); font-size: 2.4rem; padding: 1rem; }
.lightbox__nav.prev { left: 1rem; } .lightbox__nav.next { right: 1rem; }
.lightbox__close:hover, .lightbox__nav:hover { opacity: 1; }
.lightbox__count { position: absolute; bottom: 1.6rem; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,.7); font-size: .72rem; letter-spacing: .2em; }

/* ----------------------------------------------------- location */
.loc { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: stretch; }
.loc__map { border-radius: var(--radius); overflow: hidden; min-height: 440px; position: relative; border: 1px solid var(--line); }
.loc__map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(.3) sepia(.06); }
.loc__list { display: grid; gap: 0; align-content: center; }
.loc__list li { display: flex; align-items: baseline; justify-content: space-between; gap: 2rem; padding: 1.1rem 0; border-bottom: 1px solid var(--line); }
.loc__list li:first-child { border-top: 1px solid var(--line); }
.loc__list .place { font-family: var(--font-display); font-size: 1.35rem; color: var(--ink); }
.loc__list .dist { font-size: .76rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-d); white-space: nowrap; }

/* ----------------------------------------------------- lifestyle tiles */
.tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(.7rem, 1.4vw, 1.1rem); }
.tile { position: relative; aspect-ratio: 3/4; overflow: hidden; border-radius: var(--radius); }
.tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.tile:hover img { transform: scale(1.07); }
.tile::after { content:''; position:absolute; inset:0; background: linear-gradient(180deg, transparent 40%, rgba(26,29,24,.72)); }
.tile span { position: absolute; bottom: 1.3rem; left: 1.4rem; z-index: 2; color: #fff; font-family: var(--font-display); font-size: 1.5rem; }
.tile small { position: absolute; top: 1.3rem; left: 1.4rem; z-index: 2; color: rgba(255,255,255,.8); font-size: .62rem; letter-spacing: .22em; text-transform: uppercase; }

/* ----------------------------------------------------- FAQ */
.faq { max-width: 880px; margin-inline: auto; }
.faq__item { border-top: 1px solid var(--line); }
.faq__item:last-child { border-bottom: 1px solid var(--line); }
.faq__q { width: 100%; text-align: left; background: none; border: 0; padding: 1.6rem 3rem 1.6rem 0; position: relative; font-family: var(--font-display); font-size: clamp(1.2rem, 2vw, 1.55rem); color: var(--ink); display: flex; }
.faq__q::after { content: '+'; position: absolute; right: 0; top: 50%; transform: translateY(-50%); font-family: var(--font-sans); font-weight: 300; font-size: 1.6rem; color: var(--gold-d); transition: transform .4s var(--ease); }
.faq__item.open .faq__q::after { transform: translateY(-50%) rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .5s var(--ease); }
.faq__a-inner { padding: 0 3rem 1.8rem 0; }
.faq__a p { font-size: 1rem; }

/* ----------------------------------------------------- CTA band */
.cta-band { position: relative; overflow: hidden; color: #fff; text-align: center; }
.cta-band__bg { position: absolute; inset: 0; z-index: 0; }
.cta-band__bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-band__bg::after { content:''; position:absolute; inset:0; background: linear-gradient(180deg, rgba(26,29,24,.62), rgba(26,29,24,.72)); }
.cta-band .container { position: relative; z-index: 2; }
.cta-band h2 { color: #fff; max-width: 18ch; margin: 0 auto 1.4rem; }
.cta-band p { color: rgba(255,255,255,.85); max-width: 52ch; margin: 0 auto 2.4rem; }
.cta-band .btn-row { justify-content: center; }

/* ----------------------------------------------------- stat row */
.stat-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; }
.stat-row .stat { text-align: center; padding: 1rem; }
.stat-row .stat b { font-family: var(--font-display); font-weight: 300; font-size: clamp(2.6rem,4vw,3.6rem); color: var(--ink); display: block; line-height: 1; margin-bottom: .5rem; }
.section--forest .stat-row .stat b, .section--ink .stat-row .stat b { color: #fff; }
.stat-row .stat span { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--stone-d); }
.section--forest .stat-row .stat span, .section--ink .stat-row .stat span { color: rgba(255,255,255,.65); }
.stat-row .stat b .unit { font-size: .55em; color: var(--gold-d); }

/* ----------------------------------------------------- forms */
.form { display: grid; gap: 1.4rem; }
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.field { display: flex; flex-direction: column; gap: .5rem; }
.field label { font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: var(--stone-d); }
.field input, .field select, .field textarea {
  font-family: var(--font-sans); font-size: 1rem; font-weight: 300; color: var(--ink);
  background: #fff; border: 1px solid var(--shell); border-radius: var(--radius);
  padding: .95rem 1.1rem; transition: border-color .3s, box-shadow .3s; width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: 0; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(176,142,84,.12); }
.field textarea { resize: vertical; min-height: 120px; }
.form__note { font-size: .82rem; color: var(--stone-d); }
.form__success { display: none; padding: 1.2rem 1.4rem; background: rgba(76,90,70,.1); border: 1px solid var(--forest); border-radius: var(--radius); color: var(--forest-d); }
.form__success.show { display: block; }

.checks { display: flex; flex-wrap: wrap; gap: .7rem; }
.checks label { display: inline-flex; align-items: center; gap: .5rem; font-size: .82rem; letter-spacing: .04em; text-transform: none; color: var(--stone-d); background: #fff; border: 1px solid var(--shell); border-radius: 100px; padding: .5rem 1rem; cursor: pointer; }
.checks input { accent-color: var(--gold); }

/* ----------------------------------------------------- footer */
.footer { background: var(--ink); color: rgba(255,255,255,.7); padding-block: clamp(4rem, 8vw, 6rem) 2.5rem; }
.footer__top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 2.5rem; padding-bottom: 3.5rem; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer__brand img { height: 52px; margin-bottom: 1.5rem; }
.footer__brand p { font-size: .95rem; color: rgba(255,255,255,.6); max-width: 34ch; }
.footer h5 { font-family: var(--font-sans); font-size: .7rem; letter-spacing: .22em; text-transform: uppercase; color: rgba(255,255,255,.45); margin-bottom: 1.3rem; font-weight: 400; }
.footer__col a, .footer__col li { display: block; font-size: .92rem; padding-block: .35rem; color: rgba(255,255,255,.72); transition: color .3s; }
.footer__col a:hover { color: var(--gold); }
.footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; padding-top: 2rem; font-size: .78rem; color: rgba(255,255,255,.4); }
.footer__bottom a:hover { color: var(--gold); }
.footer__disclaimer { max-width: 70ch; font-size: .76rem; line-height: 1.7; color: rgba(255,255,255,.38); margin-top: 1.5rem; }

/* ----------------------------------------------------- sticky mobile CTA + whatsapp */
.sticky-cta { position: fixed; bottom: 0; left: 0; right: 0; z-index: 90; display: none; gap: .6rem; padding: .7rem; background: rgba(247,243,236,.96); backdrop-filter: blur(10px); border-top: 1px solid var(--line); }
.sticky-cta .btn { flex: 1; justify-content: center; padding: .95rem 1rem; }

.wa-float { position: fixed; right: 1.4rem; bottom: 1.6rem; z-index: 91; width: 56px; height: 56px; border-radius: 50%; background: #25D366; color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 30px -8px rgba(0,0,0,.4); transition: transform .4s var(--ease); }
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 28px; height: 28px; }

/* ----------------------------------------------------- page hero (interior) */
.page-hero { position: relative; min-height: 62vh; display: flex; align-items: flex-end; color: #fff; overflow: hidden; }
.page-hero__bg { position: absolute; inset: 0; }
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero__bg::after { content:''; position:absolute; inset:0; background: linear-gradient(180deg, rgba(26,29,24,.4) 0%, rgba(26,29,24,.15) 40%, rgba(26,29,24,.7) 100%); }
.page-hero__inner { position: relative; z-index: 2; padding-bottom: clamp(3rem,6vw,5rem); width: 100%; text-shadow: 0 1px 26px rgba(0,0,0,.5), 0 1px 4px rgba(0,0,0,.4); }
.page-hero h1 { color: #fff; max-width: 18ch; }
.page-hero .eyebrow { color: var(--gold); margin-bottom: 1.2rem; }
.page-hero p { color: rgba(255,255,255,.85); max-width: 50ch; margin-top: 1.2rem; }
.breadcrumb { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.6); margin-bottom: 1.4rem; }
.breadcrumb a:hover { color: #fff; }

/* prose */
.prose p { margin-bottom: 1.2rem; color: var(--stone-d); }
.prose h3 { margin: 2.5rem 0 1rem; }
.prose ul.ticks li { position: relative; padding-left: 1.8rem; margin-bottom: .7rem; }
.prose ul.ticks li::before { content:''; position:absolute; left:0; top:.6em; width:8px; height:8px; border:1px solid var(--gold); transform: rotate(45deg); }

/* utilities */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; } .mt-3 { margin-top: 3rem; }
.mb-0 { margin-bottom: 0; }
.maxw-prose { max-width: 60ch; }

/* reveal animation */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: .1s; }
[data-reveal][data-delay="2"] { transition-delay: .2s; }
[data-reveal][data-delay="3"] { transition-delay: .3s; }
[data-reveal][data-delay="4"] { transition-delay: .4s; }

/* ============================================================ responsive */
@media (max-width: 1024px) {
  .footer__top { grid-template-columns: 1fr 1fr; }
  .loc { grid-template-columns: 1fr; }
  .loc__map { min-height: 360px; }
  .stat-row { grid-template-columns: repeat(2,1fr); gap: 2.5rem 1rem; }
}

@media (max-width: 880px) {
  :root { --nav-h: 72px; }
  .nav__links, .nav__cta .btn { display: none; }
  .nav__burger { display: flex; }
  .nav__cta { gap: .5rem; }
  .split { grid-template-columns: 1fr; gap: 2.5rem; }
  .split.reverse .split__media { order: 0; }
  .cols-3, .cols-4 { grid-template-columns: 1fr 1fr; }
  .tiles { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: repeat(6,1fr); }
  .g-tall, .g-wide, .g-sq, .g-half { grid-column: span 3; grid-row: auto; }
  .sticky-cta { display: flex; }
  .wa-float { bottom: 5rem; }
  body { padding-bottom: 0; }
}

@media (max-width: 560px) {
  .cols-2, .cols-3, .cols-4 { grid-template-columns: 1fr; }
  .tiles { grid-template-columns: 1fr 1fr; }
  .form .row { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; gap: 2rem; }
  .hero__stats { gap: 1.5rem 2rem; }
  .hero__stats .stat b { font-size: 1.8rem; }
  .loc__list li { flex-direction: column; gap: .2rem; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .g-tall, .g-wide, .g-sq, .g-half { grid-column: span 1; }
}

/* ============================================================ Phase 1 — investment components */
/* yield scenario table */
.ytable { width: 100%; border-collapse: collapse; margin-top: 1.5rem; font-size: .98rem; }
.ytable th, .ytable td { text-align: left; padding: 1.1rem 1.2rem; border-bottom: 1px solid var(--line); }
.ytable thead th { font-family: var(--font-sans); font-weight: 400; font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: var(--stone-d); }
.ytable tbody th { font-family: var(--font-display); font-size: 1.3rem; color: var(--ink); font-weight: 400; }
.ytable td .roi { font-family: var(--font-display); font-size: 1.6rem; color: var(--gold-d); }
.ytable tbody tr:hover { background: var(--bone); }
.ytable .is-base { background: rgba(176,142,84,.08); }
.section--forest .ytable th, .section--forest .ytable td { border-color: rgba(255,255,255,.14); color: rgba(255,255,255,.86); }
.section--forest .ytable thead th { color: rgba(255,255,255,.6); }
.section--forest .ytable tbody th { color: #fff; }
.section--forest .ytable td .roi { color: var(--gold); }
.section--forest .ytable .is-base { background: rgba(255,255,255,.06); }

/* scarcity bar */
.scarcity { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: .5rem 1.4rem; background: var(--ink); color: #fff; padding: .9rem 1.4rem; text-align: center; font-size: .73rem; letter-spacing: .16em; text-transform: uppercase; }
.scarcity b { color: var(--gold); font-weight: 400; }
.scarcity .dot { width: 4px; height: 4px; background: var(--gold); border-radius: 50%; display: inline-block; }

/* trust / press strip */
.trust { display: flex; flex-direction: column; align-items: center; gap: 1rem; text-align: center; }
.trust .label { font-size: .66rem; letter-spacing: .24em; text-transform: uppercase; color: var(--stone); }
.press { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: .8rem 2rem; }
.press span { font-family: var(--font-display); font-size: 1.3rem; color: var(--stone-d); opacity: .85; }
.section--ink .press span, .section--forest .press span { color: rgba(255,255,255,.72); }
.section--ink .trust .label, .section--forest .trust .label { color: rgba(255,255,255,.5); }

/* award badge */
.badge { display: inline-flex; align-items: center; gap: .6rem; border: 1px solid var(--line); border-radius: 100px; padding: .5rem 1.1rem; font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; color: var(--charcoal); }
.badge svg { width: 16px; height: 16px; color: var(--gold-d); flex: none; }
.section--ink .badge, .section--forest .badge { border-color: rgba(255,255,255,.28); color: #fff; }
.section--ink .badge svg, .section--forest .badge svg { color: var(--gold); }

/* responsive yield table -> stacked cards */
@media (max-width: 620px) {
  .ytable thead { display: none; }
  .ytable tbody tr { display: block; border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: 1rem; padding: .4rem 1.1rem; }
  .ytable tbody th, .ytable td { display: flex; justify-content: space-between; align-items: center; border: 0; padding: .65rem 0; }
  .ytable td[data-label]::before { content: attr(data-label); font-size: .64rem; letter-spacing: .16em; text-transform: uppercase; color: var(--stone); }
}

/* ============================================================ Phase 2 — data viz */
.barchart { display: grid; gap: 1.2rem; margin-top: 2rem; max-width: 760px; }
.barchart .bar { display: grid; grid-template-columns: 170px 1fr auto; align-items: center; gap: 1.2rem; }
.barchart .name { font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; color: var(--stone-d); }
.barchart .track { height: 10px; background: rgba(59,64,58,.1); border-radius: 100px; overflow: hidden; }
.barchart .fill { height: 100%; background: var(--gold); border-radius: 100px; width: 0; transition: width 1.2s var(--ease); }
[data-reveal].in .barchart .fill { width: var(--w); }
.barchart .val { font-family: var(--font-display); font-size: 1.25rem; color: var(--ink); white-space: nowrap; }
.section--ink .barchart .name { color: rgba(255,255,255,.7); }
.section--ink .barchart .track { background: rgba(255,255,255,.14); }
.section--ink .barchart .val { color: #fff; }
.source-note { font-size: .76rem; color: var(--stone-d); margin-top: 2rem; max-width: 78ch; }
.section--ink .source-note, .section--forest .source-note { color: rgba(255,255,255,.45); }
@media (max-width: 560px) { .barchart .bar { grid-template-columns: 1fr auto; } .barchart .track { grid-column: 1 / -1; order: 3; } }

/* ============================================================ One-pager — anchor scroll + helpers */
section[id], [id].anchor { scroll-margin-top: 84px; }
.metric-hi { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 2rem; }
.metric-hi .m { text-align: center; padding: 1.6rem 1rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--bone); }
.section--ink .metric-hi .m, .section--forest .metric-hi .m { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.12); }
.metric-hi .m b { font-family: var(--font-display); font-weight: 300; font-size: clamp(2.2rem,3.6vw,3rem); color: var(--gold-d); display: block; line-height: 1; }
.section--ink .metric-hi .m b, .section--forest .metric-hi .m b { color: var(--gold); }
.metric-hi .m span { font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; color: var(--stone); margin-top: .6rem; display: block; }
.section--ink .metric-hi .m span, .section--forest .metric-hi .m span { color: rgba(255,255,255,.6); }
@media (max-width:720px){ .metric-hi { grid-template-columns: 1fr 1fr; } }

/* ============================================================ masterplan + location image */
.loc__map img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.loc__map { cursor: pointer; }
.masterplan-fig { display: block; margin-top: clamp(2rem, 4vw, 3rem); border-radius: var(--radius); overflow: hidden; position: relative; cursor: pointer; }
.masterplan-fig img { width: 100%; display: block; transition: transform 1.1s var(--ease); }
.masterplan-fig:hover img { transform: scale(1.03); }
.masterplan-fig figcaption { position: absolute; left: 0; bottom: 0; right: 0; padding: 2.5rem 1.5rem 1.3rem; background: linear-gradient(transparent, rgba(20,22,18,.72)); color: rgba(255,255,255,.9); font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; }

/* keep hero buttons crisp (don't inherit the hero text-shadow) */
.hero__inner .btn, .page-hero__inner .btn { text-shadow: none; }

/* ============================================================ full-width location map (uncropped) */
.locmap { display: block; position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); margin-top: clamp(2rem, 4vw, 3rem); cursor: pointer; }
.locmap img { width: 100%; height: auto; display: block; transition: transform 1.1s var(--ease); }
.locmap:hover img { transform: scale(1.02); }
.locmap__cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 2.2rem 1.4rem 1.1rem; background: linear-gradient(transparent, rgba(20,22,18,.65)); color: rgba(255,255,255,.92); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; }
.dist-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; margin-top: 1.5rem; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.dist-row > div { background: var(--bone); padding: 1.2rem .8rem; text-align: center; }
.dist-row .place { display: block; font-family: var(--font-display); font-size: 1.2rem; color: var(--ink); line-height: 1.15; }
.dist-row .dist { display: block; font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-d); margin-top: .45rem; }
@media (max-width: 780px) { .dist-row { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px) { .dist-row { grid-template-columns: 1fr; } }

/* ============================================================ masterplan RESERVED units */
.ru-layer { position: absolute; inset: 0; pointer-events: none; z-index: 2; }
.ru { position: absolute; transform: translate(-50%, -50%) rotate(var(--rot, -26deg));
  background: rgba(150,52,42,.8); border: 1px solid rgba(255,255,255,.32); border-radius: 3px;
  padding: .38rem .7rem; text-align: center; box-shadow: 0 4px 16px rgba(0,0,0,.4);
  backdrop-filter: saturate(.9); }
.ru b { display: block; font-family: var(--font-sans); font-weight: 500; font-size: .6rem;
  letter-spacing: .22em; text-transform: uppercase; color: #fff; line-height: 1; }
.ru span { display: block; font-family: var(--font-sans); font-weight: 400; font-size: .5rem;
  letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.9); margin-top: 3px; line-height: 1; }
.mp-legend { display: inline-flex; align-items: center; gap: .55rem; margin-top: 1.3rem; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--stone-d); }
.mp-legend i { width: 12px; height: 12px; border-radius: 2px; background: rgba(150,52,42,.85); display: inline-block; }

/* ============================================================ polish pass — mobile fixes */
@media (max-width: 700px) {
  .ru { padding: .24rem .45rem; --rot: -22deg; }
  .ru b { font-size: .44rem; letter-spacing: .16em; }
  .ru span { font-size: .38rem; margin-top: 2px; }
}
@media (max-width: 600px) {
  .scarcity { font-size: .62rem; padding: .7rem 1rem; gap: .4rem .9rem; }
  .scarcity > span:nth-child(2), .scarcity > span:nth-child(3) { display: none; }
  .stat-row .stat b { font-size: 2.1rem; }
  .stat-row { gap: 1.8rem .8rem; }
}

/* ============================================================ villa-card hover crossfade */
.villa-card__media .alt { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity .9s var(--ease); }
.villa-card:hover .villa-card__media .alt { opacity: 1; }

/* ============================================================ full-bleed parallax band */
.bleed { position: relative; min-height: 72vh; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; background-image: var(--bleed-img); background-size: cover; background-position: center; background-attachment: fixed; }
.bleed::after { content: ''; position: absolute; inset: 0; background: rgba(22,25,20,.38); }
.bleed .inner { position: relative; z-index: 2; padding: clamp(3rem,8vw,6rem) clamp(1.4rem,5vw,4rem); max-width: 880px; }
.bleed .inner p { font-family: var(--font-display); font-weight: 300; font-size: clamp(1.7rem, 3.6vw, 2.9rem); line-height: 1.3; color: #fff; text-shadow: 0 2px 24px rgba(0,0,0,.45); }
.bleed .inner .eyebrow { color: rgba(255,255,255,.85); margin-bottom: 1.4rem; }
@media (max-width: 900px), (hover: none) { .bleed { background-attachment: scroll; min-height: 54vh; } }

/* ============================================================ edge-to-edge gallery strip */
.gstrip-wrap { position: relative; width: 100vw; margin-left: calc(50% - 50vw); }
.gstrip { display: flex; gap: clamp(.6rem, 1vw, 1rem); overflow-x: auto; scroll-snap-type: x proximity; scroll-behavior: smooth; padding-block: .4rem; width: 100%; padding-inline: clamp(1.4rem, 5vw, 4rem); scrollbar-width: none; cursor: grab; }
.gstrip::-webkit-scrollbar { display: none; }
.gstrip.grabbing { cursor: grabbing; scroll-behavior: auto; scroll-snap-type: none; }
.gstrip.grabbing img { pointer-events: none; }
/* hover navigation arrows (desktop) */
.gstrip-nav { position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 48px; height: 48px; border-radius: 50%; background: rgba(250,246,239,.92);
  border: 1px solid var(--line); color: var(--charcoal); display: flex; align-items: center; justify-content: center;
  cursor: pointer; box-shadow: 0 8px 24px rgba(0,0,0,.14); backdrop-filter: blur(4px);
  opacity: 0; transition: opacity .3s var(--ease), background .3s var(--ease), color .3s var(--ease); }
.gstrip-wrap:hover .gstrip-nav { opacity: 1; }
.gstrip-nav:hover { background: var(--charcoal); color: #fff; border-color: var(--charcoal); }
.gstrip-nav svg { width: 20px; height: 20px; }
.gstrip-nav.prev { left: clamp(.8rem, 2vw, 1.6rem); }
.gstrip-nav.next { right: clamp(.8rem, 2vw, 1.6rem); }
.gstrip-nav[disabled] { opacity: 0 !important; pointer-events: none; }
@media (hover: none) { .gstrip-nav { display: none; } }
.gstrip a { flex: 0 0 auto; height: clamp(240px, 38vw, 400px); scroll-snap-align: center; overflow: hidden; border-radius: var(--radius); position: relative; cursor: pointer; }
.gstrip a img { height: 100%; width: auto; display: block; transition: transform 1s var(--ease); }
.gstrip a:hover img { transform: scale(1.04); }
.gstrip-hint { text-align: center; font-size: .68rem; letter-spacing: .22em; text-transform: uppercase; color: var(--stone); margin-top: 1.1rem; }

/* ============================================================ PREMIUM OVERHAUL */
/* -- elevated typography ------------------------------------ */
h1 { font-size: clamp(2.8rem, 6.5vw, 5.4rem); }
h2 { font-size: clamp(2.2rem, 4.6vw, 3.8rem); letter-spacing: -0.015em; }
.head.center .eyebrow { display: inline-flex; align-items: center; gap: 1rem; }
.head.center .eyebrow::before, .head.center .eyebrow::after {
  content: ''; width: 34px; height: 1px; background: currentColor; opacity: .55; }

/* -- hero slideshow ----------------------------------------- */
.hero__bg[data-slideshow] img { position: absolute; inset: 0; opacity: 0; transition: opacity 2s ease; }
.hero__bg[data-slideshow] img.on { opacity: 1; }

/* -- framed-art image treatment (split media) ---------------- */
@media (min-width: 900px) {
  .split__media { position: relative; }
  .split__media::before {
    content: ''; position: absolute; top: 20px; left: 20px; right: -20px; bottom: -20px;
    border: 1px solid rgba(176,142,84,.38); border-radius: var(--radius); z-index: 0;
    transition: transform .8s var(--ease); pointer-events: none; }
  .split.reverse .split__media::before { left: -20px; right: 20px; }
  .split__media img { position: relative; z-index: 1; }
  .split__media:hover::before { transform: translate(-5px, -5px); }
  .split.reverse .split__media:hover::before { transform: translate(5px, -5px); }
}

/* -- cinematic image reveal (settle from slight zoom) -------- */
.split__media[data-reveal] img { transition: transform 1.8s var(--ease); }
.split__media[data-reveal]:not(.in) img { transform: scale(1.06); }
.split__media[data-reveal].in img { transform: scale(1); }

/* -- villa cards, taller + statelier ------------------------- */
.villa-card__media { aspect-ratio: 16/11; }
.villa-card__body h3 { font-size: clamp(1.5rem, 2.2vw, 1.9rem); }
.villa-card__meta { font-size: .8rem; color: var(--gold-d); }
.villa-card__meta span:first-child { color: var(--ink); font-weight: 400; }

/* -- buttons + links breathe on hover ------------------------ */
.btn:hover { letter-spacing: .24em; }

/* -- lightbox settles in ------------------------------------- */
.lightbox img { transform: scale(.965); transition: transform .55s var(--ease), opacity .4s; }
.lightbox.open img { transform: scale(1); }

/* -- scarcity bar hairlines ---------------------------------- */
.scarcity { border-top: 1px solid rgba(176,142,84,.35); border-bottom: 1px solid rgba(176,142,84,.35); }

/* -- masterplan dark showcase -------------------------------- */
.section--ink .mp-legend { color: rgba(255,255,255,.6); }
.section--ink .masterplan-fig { box-shadow: 0 30px 80px -30px rgba(0,0,0,.7); }

/* -- gallery strip, taller editorial ------------------------- */
.gstrip a { height: clamp(280px, 44vw, 460px); }

/* -- partner / architect logo -------------------------------- */
.partner-logo { display: inline-block; }
.partner-logo img { height: clamp(30px, 4.4vw, 46px); width: auto; opacity: .92; transition: opacity .4s var(--ease), transform .5s var(--ease); }
.partner-logo:hover img { opacity: 1; transform: translateY(-2px); }

/* -- partner logo: hard size cap (width-based) --------------- */
.partner-logo img { height: auto; width: 100%; max-width: min(360px, 72vw); }

/* Virtual Tour nav link — subtle gold emphasis (desktop) */
.nav__links a[href="tour/"]{ color: var(--gold); }
.nav.scrolled .nav__links a[href="tour/"], .nav--solid .nav__links a[href="tour/"]{ color: var(--gold-d); }

/* justified body paragraphs (client request) */
p { text-align: justify; -webkit-hyphens: auto; hyphens: auto; }
/* keep centred intros / CTAs centred */
.head.center p, .text-center p, .text-center, .cta-band p, .lead.text-center { text-align: center; }
/* keep these left, not justified (short lines / small print) */
.hero__sub, .page-hero__inner p, .breadcrumb, .form__note, .source-note,
.footer__disclaimer, .footer__brand p, .scarcity, .stat span, .hero__stats .stat span {
  text-align: left; -webkit-hyphens: manual; hyphens: manual;
}
.hero__sub, .scarcity, .stat span { text-align: inherit; }

/* The Collection — refined spec row (not a corporate bullet list) */
.spec-row{ list-style:none; padding:0; margin:1.6rem auto 0; max-width:900px;
  display:flex; flex-wrap:wrap; justify-content:center; align-items:center; row-gap:.4rem;
  font-family:var(--font-sans); font-weight:300; font-size:1rem; line-height:1.5; color:var(--charcoal); }
.spec-row li{ display:inline-flex; align-items:center; letter-spacing:.01em; }
.spec-row li b{ font-weight:500; color:var(--ink); }
.spec-row li::after{ content:''; width:6px; height:6px; background:var(--gold);
  transform:rotate(45deg); margin:0 1.1rem; flex:0 0 auto; }
.spec-row li:last-child::after{ display:none; }
@media(max-width:640px){
  .spec-row{ flex-direction:column; gap:.6rem; font-size:.95rem; margin-top:1.3rem; }
  .spec-row li{ gap:.65rem; }
  .spec-row li::after{ display:none; }
  .spec-row li::before{ content:''; width:5px; height:5px; background:var(--gold); transform:rotate(45deg); flex:0 0 auto; }
}

/* development timeline */
.timeline{ list-style:none; padding:0; margin:clamp(2.5rem,5vw,3.5rem) auto 0; max-width:720px; position:relative; }
.timeline::before{ content:''; position:absolute; left:9px; top:8px; bottom:8px; width:1px;
  background:linear-gradient(var(--gold), rgba(176,142,84,.2)); }
.tl-step{ position:relative; padding:0 0 clamp(1.6rem,3vw,2.4rem) 44px; }
.tl-step:last-child{ padding-bottom:0; }
.tl-marker{ position:absolute; left:2px; top:4px; width:16px; height:16px; border-radius:50%;
  background:var(--bone); border:2px solid var(--gold); box-sizing:border-box; z-index:1; }
.tl-step.is-done .tl-marker{ background:var(--gold); }
.tl-step.is-target .tl-marker{ border-color:var(--stone); border-style:dashed; background:var(--bone); }
.tl-step.is-current .tl-marker{ background:var(--gold); border-color:var(--gold);
  box-shadow:0 0 0 5px rgba(176,142,84,.22),0 0 14px rgba(176,142,84,.55); }
.tl-date{ font-family:var(--font-sans); font-size:.72rem; letter-spacing:.16em; text-transform:uppercase; color:var(--gold-d); }
.tl-date b{ color:var(--gold); font-weight:500; margin-right:.15em; }
.tl-body h3{ font-size:clamp(1.25rem,2vw,1.55rem); margin:.28rem 0 .4rem; }
.tl-body p{ color:var(--stone-d); max-width:54ch; }
.tl-status{ display:inline-block; margin-top:.7rem; font-family:var(--font-sans); font-size:.6rem;
  letter-spacing:.2em; text-transform:uppercase; color:var(--stone); border:1px solid var(--line); border-radius:30px; padding:4px 12px; }
.tl-step.is-done .tl-status{ color:var(--gold-d); border-color:rgba(176,142,84,.35); }
.tl-step.is-current .tl-status{ background:var(--gold); color:#fff; border-color:var(--gold); }
.tl-step.is-current{ background:linear-gradient(90deg, rgba(176,142,84,.08), transparent 68%); border-radius:var(--radius); }
