/* ===========================================================
   Betty Villa — C-560, Defence Colony
   =========================================================== */

:root{
  --ink:#26190f;
  --ink-soft:#332215;
  --ink-line: rgba(247,235,217,0.15);
  --paper:#f8ecdb;
  --paper-dim:#efdcbe;
  --paper-line: rgba(38,25,15,0.12);
  --stone:#c1652f;
  --stone-light:#e08a4f;
  --stone-dark:#8a431c;
  --text-soft: rgba(38,25,15,0.64);
  --text-soft-light: rgba(247,235,217,0.68);

  --font-display:'Playfair Display', 'Georgia', serif;
  /* Archivo's width axis at 125% is the extended grotesque used for every
     label, nav item and button. Note: there is no "Archivo Expanded" family
     on Google Fonts — asking for one silently falls back to Inter. */
  --font-label:'Archivo', 'Inter', -apple-system, sans-serif;
  --font-script:'Pinyon Script', 'Playfair Display', cursive;
  --font-body:'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --container: 1240px;
  --ease: cubic-bezier(.16,.84,.44,1);
  --dur: .9s;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:auto; }
html.is-loading{ overflow:hidden; }
body{
  margin:0;
  background:var(--paper);
  color:var(--ink);
  font-family:var(--font-body);
  font-weight:400;
  line-height:1.5;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
  /* inherited; only Archivo has a width axis, the other families ignore it */
  font-stretch:125%;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }

/* Display headings: uppercase high-contrast serif */
h1,h2,h3,h4{
  font-family:var(--font-display); font-weight:400; margin:0 0 .5em;
  text-transform:uppercase; letter-spacing:.005em; line-height:1.06;
}
p{ margin:0 0 1em; }
button{ font-family:inherit; }

::selection{ background:var(--stone); color:var(--paper); }

/* small tracked label text, used all over */
.micro{
  font-family:var(--font-label); font-size:11px; font-weight:600; letter-spacing:.14em;
  text-transform:uppercase; color:var(--stone-dark); margin:0 0 .8em;
}
.section--dark .micro{ color:var(--stone-light); }

/* ---------- grain ---------- */
.grain{
  position:fixed; inset:0; z-index:9998; pointer-events:none;
  opacity:.035; mix-blend-mode:overlay;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- preloader ---------- */
.preloader{
  position:fixed; inset:0; z-index:10000; background:var(--ink); color:var(--paper);
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:18px;
  transition:transform 1.05s var(--ease), opacity .5s ease .5s;
}
.preloader.is-done{ transform:translateY(-101%); opacity:0; pointer-events:none; }
.preloader__inner{ display:flex; flex-direction:column; align-items:center; gap:12px; text-align:center; }
.preloader__mark{
  width:54px; height:54px; color:var(--stone-light);
  opacity:0; transform:translateY(10px); animation:preIn .8s var(--ease) .1s forwards;
}
.preloader__brand{
  font-family:var(--font-display); text-transform:uppercase; letter-spacing:.06em;
  font-size:clamp(26px,5vw,52px); opacity:0; transform:translateY(14px);
  animation:preIn .9s var(--ease) .18s forwards;
}
.preloader__meta{
  font-family:var(--font-label); font-size:10.5px; letter-spacing:.2em; text-transform:uppercase;
  color:var(--text-soft-light); opacity:0; transform:translateY(10px);
  animation:preIn .9s var(--ease) .3s forwards;
}
@keyframes preIn{ to{ opacity:1; transform:translateY(0); } }
.preloader__count{
  position:absolute; bottom:34px; right:clamp(20px,5vw,52px);
  font-family:var(--font-display); font-size:clamp(30px,6vw,64px); color:var(--stone-light); line-height:1;
}
.preloader__line{ position:absolute; bottom:0; left:0; width:100%; height:2px; background:rgba(247,235,217,.14); }
.preloader__line i{ display:block; height:100%; width:0%; background:var(--stone-light); }

/* ---------- custom cursor ---------- */
.cursor{
  position:fixed; top:0; left:0; z-index:9997; pointer-events:none;
  width:74px; height:74px; margin:-37px 0 0 -37px; border-radius:50%;
  background:var(--stone); color:var(--paper);
  display:flex; align-items:center; justify-content:center;
  font-family:var(--font-label); font-size:10px; letter-spacing:.14em; text-transform:uppercase; font-weight:600;
  transform:scale(0); transition:transform .4s var(--ease), opacity .3s ease; opacity:0;
}
.cursor.is-active{ transform:scale(1); opacity:1; }
[data-cursor]{ cursor:none; }
@media (hover:none),(pointer:coarse){ .cursor{ display:none; } [data-cursor]{ cursor:auto; } }

/* ---------- scroll progress ---------- */
.scroll-progress{ position:fixed; top:0; left:0; width:100%; height:2px; z-index:9999; background:transparent; }
.scroll-progress span{ display:block; height:100%; width:0%; background:var(--stone); transition:width .1s linear; }

/* ---------- layout helpers ---------- */
.section{ position:relative; padding:min(14vw,140px) 0; }
.section--tight{ padding-bottom:min(6vw,56px); }
.section--tight-top{ padding-top:min(6vw,56px); }
.section--dark{ background:var(--ink); color:var(--paper); }
.section--dark h2, .section--dark h3, .section--dark .lede{ color:var(--paper); }
.section--paper-dim{ background:var(--paper-dim); }
.section__inner{ max-width:var(--container); margin:0 auto; padding:0 clamp(20px,5vw,64px); }
.section__inner.narrow{ max-width:820px; }
.section__head{ max-width:840px; margin-bottom:clamp(40px,6vw,80px); }

.split{ display:grid; grid-template-columns: .8fr 1.2fr; gap:clamp(32px,6vw,90px); align-items:start; }
.split--reverse{ grid-template-columns: 1fr 1fr; }
.split__label{ position:sticky; top:120px; }

.eyebrow{
  font-family:var(--font-label); font-size:11px; letter-spacing:.16em; text-transform:uppercase;
  color:var(--stone-dark); font-weight:600; margin:0 0 1.2em;
  display:inline-flex; align-items:center; gap:8px;
}
.section--dark .eyebrow{ color:var(--stone-light); }
.section-index{
  display:block; font-family:var(--font-label); font-size:11px; letter-spacing:.14em;
  color:var(--text-soft); margin-bottom:1.4em;
}
.section--dark .section-index{ color:var(--text-soft-light); }

h2{ font-size:clamp(28px,4.4vw,56px); }
h3{ font-size:clamp(19px,2vw,24px); letter-spacing:.02em; }
.lede{ font-size:clamp(16px,1.5vw,19px); line-height:1.6; color:var(--text-soft); max-width:52ch; }
.section--dark .lede{ color:var(--text-soft-light); }

/* pulsing "available" dot */
.pulse{
  width:7px; height:7px; border-radius:50%; background:var(--stone-light); display:inline-block; flex:none;
  box-shadow:0 0 0 0 rgba(224,138,79,.7); animation:pulse 2.2s infinite;
}
.pulse--dark{ background:var(--stone); box-shadow:0 0 0 0 rgba(193,101,47,.6); }
@keyframes pulse{
  0%{ box-shadow:0 0 0 0 rgba(224,138,79,.55); }
  70%{ box-shadow:0 0 0 9px rgba(224,138,79,0); }
  100%{ box-shadow:0 0 0 0 rgba(224,138,79,0); }
}

/* ---------- buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:.5em;
  padding:16px 30px; border-radius:999px; font-size:11.5px; font-weight:600;
  font-family:var(--font-label); letter-spacing:.12em; text-transform:uppercase;
  border:1px solid transparent; cursor:pointer; white-space:nowrap;
  transition:transform .35s var(--ease), background .3s ease, color .3s ease, border-color .3s ease;
  will-change:transform;
}
.btn--primary{ background:var(--paper); color:var(--ink); }
.btn--primary:hover{ background:var(--stone-light); color:var(--ink); }
.btn--ghost-light{ background:rgba(247,235,217,0.08); color:var(--paper); border-color:rgba(247,235,217,0.35); backdrop-filter:blur(6px); }
.btn--ghost-light:hover{ background:rgba(247,235,217,0.16); }
.btn--outline{ background:transparent; color:var(--ink); border-color:var(--paper-line); }
.btn--outline:hover{ border-color:var(--stone); color:var(--stone-dark); }
.btn--outline-light{ background:transparent; color:var(--paper); border-color:var(--ink-line); }
.btn--outline-light:hover{ border-color:var(--stone-light); color:var(--stone-light); }
.btn--sm{ padding:11px 20px; font-size:10.5px; }
.btn--full{ width:100%; padding:18px 30px; }

/* ---------- placeholder image system ---------- */
.ph-image{
  position:relative; margin:0; overflow:hidden; background:var(--ink-soft);
  aspect-ratio: 4/3;
}
.ph-image img{ width:100%; height:100%; object-fit:cover; display:block; }
.ph-image.is-placeholder img{ visibility:hidden; }
.ph-image::after{
  content: attr(data-ph-label);
  position:absolute; inset:0; display:none;
  align-items:flex-start; justify-content:flex-start;
  padding:18px; font-family:var(--font-label); font-size:10px; letter-spacing:.14em; text-transform:uppercase;
  color:rgba(247,235,217,0.55); font-weight:600;
  background:
    linear-gradient(160deg, rgba(193,101,47,.28), rgba(38,25,15,0) 60%),
    repeating-linear-gradient(135deg, rgba(247,235,217,0.04) 0 2px, transparent 2px 14px),
    linear-gradient(135deg,#332215,#26190f 70%);
}
.ph-image.is-placeholder::after{ display:flex; }
.ph-image.is-placeholder::before{
  content:"";
  position:absolute; top:16px; right:16px; width:34px; height:34px; border-radius:50%;
  border:1.5px solid rgba(247,235,217,0.35);
  background: center/16px no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f7ebd9' stroke-width='1.6'%3E%3Cpath d='M4 8h3l1.5-2h7L17 8h3a1 1 0 0 1 1 1v9a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V9a1 1 0 0 1 1-1z'/%3E%3Ccircle cx='12' cy='13.5' r='3.3'/%3E%3C/svg%3E");
}

/* ---------- header ---------- */
.site-header{
  position:fixed; top:0; left:0; width:100%; z-index:500;
  padding:22px clamp(20px,4vw,48px);
  display:flex; justify-content:center;
  transition:padding .4s var(--ease), background .4s ease, box-shadow .4s ease;
}
.site-header.is-scrolled{ padding:12px clamp(20px,4vw,48px); background:rgba(38,25,15,0.72); backdrop-filter:blur(14px); box-shadow:0 1px 0 var(--ink-line); }
.site-header__inner{ width:100%; max-width:1440px; display:flex; align-items:center; justify-content:space-between; gap:24px; }

/* ---------- the mark ----------
   An eight-point star (two overlapping squares) inside an octagon — the
   geometry of the Lodhi-era tomb that still stands in the Defence Colony
   market roundabout. Strokes inherit currentColor so it works on any ground. */
.mark{ display:block; overflow:visible; }
.mark__oct{ stroke-width:1.5; opacity:.45; }
.mark__star{ stroke-width:1.6; }
.mark__eye{ stroke-width:1.5; }

.brand{ display:flex; align-items:center; gap:13px; color:var(--paper); }
.brand__badge{ position:relative; width:54px; height:54px; flex:none; display:block; color:var(--stone-light); }
.brand__ring{ width:100%; height:100%; animation:badgeSpin 26s linear infinite; }
.brand__ring text{
  font-family:var(--font-label); font-size:8.6px; font-weight:600; letter-spacing:.16em;
  fill:currentColor; opacity:.75;
}
.brand__badge .mark{
  position:absolute; top:50%; left:50%; width:25px; height:25px; margin:-12.5px 0 0 -12.5px;
  transition:transform .6s var(--ease);
}
.brand:hover .mark{ transform:rotate(45deg); }
@keyframes badgeSpin{ to{ transform:rotate(360deg); } }
.brand__name{ font-family:var(--font-display); font-size:15px; text-transform:uppercase; letter-spacing:.08em; }
/* the badge already says it — drop the wordmark once space gets tight */
@media (max-width:520px){ .brand__name{ display:none; } }

/* footer instance of the mark */
.brand__mark{ width:40px; height:40px; flex:none; color:var(--stone-light); }

.main-nav{ display:flex; gap:clamp(14px,1.8vw,28px); }
.main-nav a{
  font-family:var(--font-label); font-size:10.5px; font-weight:600; letter-spacing:.14em; text-transform:uppercase;
  color:var(--text-soft-light); position:relative; padding:4px 0;
}
.main-nav a::after{
  content:""; position:absolute; left:0; bottom:0; height:1px; width:0; background:var(--stone-light);
  transition:width .35s var(--ease);
}
.main-nav a:hover{ color:var(--paper); }
.main-nav a:hover::after{ width:100%; }

.header-cta{ display:flex; align-items:center; gap:16px; }
.header-cta__call{ font-family:var(--font-label); font-size:11px; letter-spacing:.08em; color:var(--text-soft-light); display:none; }
.nav-toggle{ display:none; width:34px; height:34px; background:none; border:none; cursor:pointer; flex-direction:column; justify-content:center; gap:5px; padding:0; }
.nav-toggle span{ display:block; width:100%; height:1px; background:var(--paper); }

@media (min-width: 1180px){ .header-cta__call{ display:inline; } }

@media (max-width: 1179px){
  .main-nav{
    position:fixed; inset:0 0 0 auto; width:min(78vw,340px); height:100vh;
    background:var(--ink); flex-direction:column; padding:100px 32px 40px;
    transform:translateX(100%); transition:transform .5s var(--ease); gap:22px; z-index:490;
  }
  .main-nav.is-open{ transform:translateX(0); }
  .main-nav a{ font-size:20px; font-family:var(--font-display); color:var(--paper); letter-spacing:.04em; }
  .nav-toggle{ display:flex; }
}

/* ---------- hero ---------- */
.hero{
  position:relative; height:100svh; min-height:600px; overflow:hidden;
  display:flex; align-items:center; justify-content:center; text-align:center;
  color:var(--paper); background:var(--ink);
}
.hero__media{ position:absolute; inset:-8% -2% -2%; aspect-ratio:auto; }
.hero__media img{ transform:scale(1.08); will-change:transform; }
.hero__scrim{
  position:absolute; inset:0;
  /* even vignette rather than a bottom scrim — the lockup now sits centred */
  background:
    radial-gradient(120% 90% at 50% 45%, rgba(20,13,7,0.18) 0%, rgba(20,13,7,0.52) 100%),
    linear-gradient(0deg, rgba(20,13,7,0.72) 0%, rgba(20,13,7,0.1) 40%, rgba(20,13,7,0.3) 100%);
}
/* Centred brand lockup: display name stacked, script sub-line tucked under it. */
.hero__center{ position:relative; z-index:2; padding:0 clamp(20px,5vw,64px); transform:translateY(-4vh); }
.hero__headline{
  font-size:clamp(56px,13.5vw,190px); line-height:.84; margin:0; letter-spacing:.005em;
}
/* Sits below the wordmark, not through it. Pinyon Script carries very tall
   ascender loops, so it needs real line-box room plus a positive gap — a
   negative margin here collides with the VILLA baseline at some widths. */
.hero__script{
  display:block; font-family:var(--font-script); font-size:clamp(28px,5.6vw,78px);
  line-height:1.25; color:var(--stone-light); margin-top:.1em; text-transform:none;
}
.reveal-line{ display:block; overflow:hidden; padding-bottom:.06em; margin-bottom:-.06em; }
.reveal-line span{ display:inline-block; transform:translateY(112%); transition:transform 1.15s var(--ease); }
.hero.is-ready .reveal-line span{ transform:translateY(0); }
.hero.is-ready .reveal-line:nth-child(1) span{ transition-delay:.12s; }
.hero.is-ready .reveal-line:nth-child(2) span{ transition-delay:.24s; }
.hero.is-ready .reveal-line:nth-child(3) span{ transition-delay:.36s; }

.hero .eyebrow{ color:var(--stone-light); }

/* base row: tagline — actions — tagline */
.hero__foot{
  position:absolute; left:0; right:0; bottom:clamp(34px,5.5vw,64px); z-index:2;
  display:flex; align-items:center; justify-content:space-between; gap:clamp(20px,4vw,60px);
  max-width:1180px; margin:0 auto; padding:0 clamp(20px,5vw,64px);
}
.hero__tag{
  font-family:var(--font-display); text-transform:uppercase; letter-spacing:.05em;
  font-size:clamp(12px,1.4vw,19px); margin:0; white-space:nowrap;
}
.hero__actions{ display:flex; flex-wrap:wrap; gap:12px; justify-content:center; }
@media (max-width:860px){
  .hero__foot{ flex-direction:column; gap:18px; bottom:clamp(28px,6vw,50px); }
  .hero__tag{ display:none; }
  /* WhatsApp is already on the sticky bar and the floating button down here */
  .hero__actions .btn--ghost-light{ display:none; }
}

/* left rail: counter over a vertical SCROLL line */
.hero__rail{
  position:absolute; left:clamp(16px,3vw,44px); top:50%; transform:translateY(-50%); z-index:2;
  display:flex; flex-direction:column; align-items:center; gap:18px; color:var(--text-soft-light);
}
.hero__rail-num{ font-family:var(--font-label); font-size:11px; font-weight:600; letter-spacing:.14em; }
@media (max-width:900px){ .hero__rail{ display:none; } }

.eyebrow.reveal-word{ opacity:0; transform:translateY(10px); transition:opacity .8s var(--ease), transform .8s var(--ease); }
.hero.is-ready .eyebrow.reveal-word{ opacity:1; transform:translateY(0); }
.reveal-fade{ opacity:0; transform:translateY(14px); transition:opacity 1s var(--ease) .6s, transform 1s var(--ease) .6s; }
.hero.is-ready .reveal-fade{ opacity:1; transform:translateY(0); }

.hero__scroll-cue{
  display:flex; flex-direction:column; align-items:center; gap:14px;
  font-family:var(--font-label); font-size:9.5px; font-weight:600; letter-spacing:.22em; text-transform:uppercase;
}
.hero__scroll-cue > span{ writing-mode:vertical-rl; }
.hero__scroll-cue i{ width:1px; height:clamp(60px,12vh,110px); background:linear-gradient(transparent, var(--stone-light)); position:relative; overflow:hidden; }
.hero__scroll-cue i::after{
  content:""; position:absolute; top:-100%; left:0; width:100%; height:100%; background:var(--paper);
  animation:scrollcue 2.2s ease-in-out infinite;
}
@keyframes scrollcue{ 0%{ top:-100%; } 60%{ top:100%; } 100%{ top:100%; } }

/* ---------- marquee ---------- */
.marquee{ background:var(--ink); color:var(--paper); border-top:1px solid var(--ink-line); border-bottom:1px solid var(--ink-line); overflow:hidden; padding:14px 0; }
.marquee__track span:nth-child(even){ color:var(--stone-light); }
.marquee__track{
  display:flex; gap:14px; white-space:nowrap; width:max-content;
  font-family:var(--font-label); font-weight:600; font-size:clamp(11px,1.1vw,13px); letter-spacing:.18em;
  animation:marquee 34s linear infinite;
}
.marquee__track span{ padding:0 4px; }
@keyframes marquee{ from{ transform:translateX(0); } to{ transform:translateX(-50%); } }

/* ---------- statement ---------- */
.statement{ padding:clamp(80px,12vw,150px) 0 clamp(50px,7vw,90px); text-align:center; }
.statement__text{
  font-family:var(--font-label); font-weight:700; text-transform:uppercase;
  font-size:clamp(19px,3.1vw,40px); line-height:1.24; letter-spacing:.01em;
  max-width:20ch; margin:0 auto .3em;
}
.statement__script{ font-family:var(--font-script); font-size:clamp(34px,5.4vw,72px); color:var(--stone); margin:0; line-height:1.1; }

/* ---------- split-text word reveal ---------- */
.sw{ display:inline-block; overflow:hidden; vertical-align:bottom; padding-bottom:.14em; margin-bottom:-.14em; }
.sw > span{ display:inline-block; transform:translateY(115%); transition:transform 1s var(--ease); }
.is-split-in .sw > span{ transform:translateY(0); }

/* ---------- trio ---------- */
.trio{ padding:0 0 clamp(70px,10vw,130px); }
.trio__grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:clamp(22px,3.4vw,48px); }
.trio__item figure{ aspect-ratio:4/5; margin-bottom:22px; }
.trio__item h3{ margin:0 0 .6em; }
.trio__item p:last-child{ color:var(--text-soft); font-size:14.5px; margin:0; max-width:36ch; }
@media (max-width:860px){ .trio__grid{ grid-template-columns:1fr; } .trio__item figure{ aspect-ratio:16/10; } }

/* ---------- image curtain reveal ---------- */
.reveal-img{ clip-path:inset(0 0 100% 0); transition:clip-path 1.25s var(--ease); }
.reveal-img.in-view{ clip-path:inset(0 0 0 0); }
.reveal-img img{ transform:scale(1.18); transition:transform 1.6s var(--ease); }
.reveal-img.in-view img{ transform:scale(1); }

/* ---------- reveal-on-scroll generic ---------- */
.reveal-up{ opacity:0; transform:translateY(36px); transition:opacity .9s var(--ease), transform .9s var(--ease); }
.reveal-up.in-view{ opacity:1; transform:translateY(0); }
.reveal-scale{ opacity:0; transform:scale(.94); transition:opacity 1s var(--ease), transform 1s var(--ease); }
.reveal-scale.in-view{ opacity:1; transform:scale(1); }

/* ---------- building ---------- */
.building-layout{ display:grid; grid-template-columns:1fr 1.05fr; gap:clamp(24px,4vw,60px); align-items:stretch; }
.building-facade{ aspect-ratio:3/4; }
.stack{ display:flex; flex-direction:column; gap:2px; }
.stack__level{
  flex:1; display:flex; align-items:center; justify-content:space-between; gap:16px;
  padding:clamp(16px,2vw,26px) clamp(18px,2vw,28px); background:var(--ink-soft); border:1px solid var(--ink-line);
  opacity:.5; transform:translateX(20px);
  transition:opacity .7s var(--ease), transform .7s var(--ease), background .4s ease, border-color .4s ease;
}
.stack__level.in-view{ opacity:1; transform:translateX(0); }
.stack__level--available{
  background:linear-gradient(120deg, rgba(193,101,47,.3), rgba(193,101,47,.08));
  border-color:var(--stone-light); flex:1.5;
}
.stack__level--available:hover{ background:linear-gradient(120deg, rgba(193,101,47,.45), rgba(193,101,47,.16)); }
.stack__name{ font-family:var(--font-display); text-transform:uppercase; font-size:clamp(16px,1.9vw,24px); letter-spacing:.03em; }
.stack__status{ display:inline-flex; align-items:center; gap:9px; font-family:var(--font-label); font-size:10px; font-weight:600; letter-spacing:.14em; text-transform:uppercase; color:var(--text-soft-light); }
.stack__level--available .stack__name{ color:var(--stone-light); }
.stack__level--available .stack__status{ color:var(--stone-light); }
.stack__arrow{ color:var(--stone-light); font-size:18px; transition:transform .4s var(--ease); }
.stack__level--available:hover .stack__arrow{ transform:translateX(6px); }
@media (max-width:860px){ .building-layout{ grid-template-columns:1fr; } .building-facade{ aspect-ratio:16/11; } }

.marks{ display:grid; grid-template-columns:repeat(3,1fr); gap:clamp(18px,3vw,40px); margin-top:clamp(40px,5vw,70px); }
.marks li{ padding-top:20px; border-top:1px solid var(--ink-line); }
.marks span{ display:block; font-family:var(--font-display); text-transform:uppercase; font-size:clamp(15px,1.6vw,19px); letter-spacing:.03em; margin-bottom:.5em; }
.marks em{ font-style:normal; font-family:var(--font-label); font-size:10.5px; letter-spacing:.1em; text-transform:uppercase; color:var(--text-soft-light); }
/* same block on a paper background */
.marks--light li{ border-top-color:var(--paper-line); }
.marks--light span{ color:var(--stone-dark); font-size:clamp(22px,2.6vw,34px); }
.marks--light em{ color:var(--text-soft); }
@media (max-width:700px){ .marks{ grid-template-columns:1fr; } }

/* ---------- availability call-to-action strip ---------- */
.avail-cta{
  margin-top:clamp(36px,5vw,64px); padding-top:clamp(24px,3vw,36px); border-top:1px solid var(--ink-line);
  display:flex; flex-wrap:wrap; align-items:center; justify-content:space-between; gap:20px;
}
.avail-cta p{
  margin:0; font-family:var(--font-label); font-size:11px; font-weight:600; letter-spacing:.12em;
  text-transform:uppercase; color:var(--text-soft-light);
}

/* ---------- full-bleed bands ---------- */
.band{ position:relative; height:min(86vh,760px); overflow:hidden; display:flex; align-items:center; justify-content:center; }
.band__media{ position:absolute; inset:-12% 0; aspect-ratio:auto; }
.band__media::before{ content:""; }
.band::after{ content:""; position:absolute; inset:0; background:rgba(20,13,7,.42); z-index:1; }
.band__quote{
  position:relative; z-index:2; margin:0; padding:0 clamp(20px,6vw,80px); text-align:center; color:var(--paper);
  font-family:var(--font-display); text-transform:uppercase; letter-spacing:.02em;
  font-size:clamp(24px,4.4vw,58px); line-height:1.1; max-width:18ch;
}

.closing{ position:relative; height:min(92vh,820px); overflow:hidden; display:flex; align-items:flex-end; }
.closing__media{ position:absolute; inset:-12% 0; aspect-ratio:auto; }
.closing::after{ content:""; position:absolute; inset:0; background:linear-gradient(0deg, rgba(20,13,7,.85), rgba(20,13,7,.15) 60%); z-index:1; }
.closing__text{ position:relative; z-index:2; padding:0 clamp(20px,5vw,64px) clamp(50px,7vw,90px); color:var(--paper); max-width:1000px; }
.closing__text h2{ color:var(--paper); font-size:clamp(28px,5.4vw,72px); margin-bottom:.4em; }
.closing__text .micro{ color:var(--stone-light); margin:0; }

/* ---------- floor head + stats ---------- */
.floor-head{ display:grid; grid-template-columns:1.1fr .9fr; gap:clamp(30px,5vw,70px); align-items:end; }
@media (max-width:900px){ .floor-head{ grid-template-columns:1fr; } }
.stat-row{ display:flex; flex-wrap:wrap; gap:clamp(24px,3.4vw,48px); padding-top:2em; border-top:1px solid var(--ink-line); }
.stat-row--light{ border-top-color:var(--paper-line); }
.stat{ display:flex; flex-direction:column; }
.stat__num, .stat__num-text{ font-family:var(--font-display); font-size:clamp(26px,3vw,42px); color:var(--stone-dark); line-height:1; }
.stat__unit{ font-family:var(--font-display); font-size:clamp(14px,1.5vw,19px); color:var(--stone-dark); }
.stat__label{ font-family:var(--font-label); font-size:10px; font-weight:600; letter-spacing:.14em; text-transform:uppercase; color:var(--text-soft); margin-top:.7em; }
.section--dark .stat__num, .section--dark .stat__num-text, .section--dark .stat__unit{ color:var(--stone-light); }
.section--dark .stat__label{ color:var(--text-soft-light); }

/* ---------- horizontal walkthrough ---------- */
.walk{ position:relative; background:var(--ink); color:var(--paper); }
.walk__sticky{
  position:sticky; top:0; height:100svh; overflow:hidden;
  display:flex; flex-direction:column; justify-content:center; gap:clamp(16px,2.4vw,30px);
  padding:clamp(70px,9vw,100px) 0 clamp(40px,5vw,60px);
}
.walk__bar{
  display:flex; align-items:center; justify-content:space-between; gap:20px;
  padding:0 clamp(20px,5vw,64px);
  font-family:var(--font-label); font-size:10px; font-weight:600; letter-spacing:.16em; text-transform:uppercase;
  color:var(--text-soft-light);
}
.walk__counter b{ color:var(--stone-light); font-weight:600; }
.walk__track{
  display:flex; align-items:center; gap:clamp(14px,2vw,28px); padding:0 clamp(20px,5vw,64px);
  will-change:transform;
}
/* Sized by height so the strip always fits the pinned viewport; the mix of
   landscape and portrait frames gives the pan a rhythm rather than a conveyor. */
.walk__frame{
  flex:none; height:min(60vh,540px); width:auto; aspect-ratio:4/3; position:relative;
}
.walk__frame:nth-child(3n+2){ aspect-ratio:3/4; height:min(48vh,430px); }
.walk__frame img{ transition:transform .9s var(--ease); }
.walk__frame:hover img{ transform:scale(1.05); }
.walk__frame figcaption{
  position:absolute; left:0; bottom:0; z-index:3; padding:16px 18px;
  font-family:var(--font-label); font-size:10px; font-weight:600; letter-spacing:.14em; text-transform:uppercase;
  color:var(--paper); text-shadow:0 1px 12px rgba(20,13,7,.7);
}
.walk__frame figcaption b{ color:var(--stone-light); margin-right:8px; }
.walk__progress{ margin:0 clamp(20px,5vw,64px); height:1px; background:var(--ink-line); }
.walk__progress i{ display:block; height:100%; width:0%; background:var(--stone-light); }

/* touch / narrow: native horizontal swipe instead of pinning */
@media (max-width:900px), (hover:none){
  .walk__sticky{ position:static; height:auto; padding:clamp(50px,9vw,70px) 0; }
  .walk__track{
    overflow-x:auto; scroll-snap-type:x mandatory; -webkit-overflow-scrolling:touch;
    padding-bottom:14px; transform:none !important;
  }
  .walk__track::-webkit-scrollbar{ display:none; }
  .walk__frame{ scroll-snap-align:center; width:min(80vw,420px); height:auto; }
  .walk__frame:nth-child(3n+2){ width:min(64vw,340px); height:auto; }
}

/* ---------- gallery cta ---------- */
.gallery-cta{ display:flex; flex-wrap:wrap; align-items:center; justify-content:space-between; gap:20px; padding-top:32px; border-top:1px solid var(--paper-line); }
.gallery-cta p{ margin:0; max-width:42ch; color:var(--text-soft); font-family:var(--font-label); font-size:11px; font-weight:600; letter-spacing:.12em; text-transform:uppercase; }

/* ---------- floor plan ---------- */
.floorplan-image{ aspect-ratio:1/1; background:var(--paper); }
.check-list{ margin:1.8em 0 2.2em; display:flex; flex-direction:column; gap:14px; }
.check-list li{ position:relative; padding-left:26px; font-family:var(--font-label); font-size:11px; font-weight:500; letter-spacing:.1em; text-transform:uppercase; }
.check-list li::before{
  content:""; position:absolute; left:0; top:3px; width:12px; height:12px; border-radius:50%;
  border:1.4px solid var(--stone); background:radial-gradient(circle at 30% 30%, var(--stone-light), transparent 70%);
}

/* ---------- amenities ---------- */
.amenity-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:1px; background:var(--paper-line); border:1px solid var(--paper-line); }
.amenity{ background:var(--paper); padding:36px 24px; display:flex; flex-direction:column; gap:18px; transition:background .35s ease, color .35s ease; }
.amenity:hover{ background:var(--ink); color:var(--paper); }
.amenity svg{ color:var(--stone-dark); transition:color .35s ease; }
.amenity:hover svg{ color:var(--stone-light); }
.amenity h3{ font-size:13px; font-family:var(--font-label); font-weight:600; letter-spacing:.1em; margin:0; }
@media (max-width:900px){ .amenity-grid{ grid-template-columns:repeat(2,1fr); } }

/* ---------- location ---------- */
/* align-items:start matters — stretching the map would let aspect-ratio derive
   its width from the row height, overflowing the column and covering the list. */
.location-layout{ display:grid; grid-template-columns:1.4fr 1fr; gap:clamp(24px,4vw,48px); align-items:start; }
.location-map{ width:100%; aspect-ratio:4/3; overflow:hidden; filter:grayscale(.35) contrast(1.05) sepia(.18); border:1px solid var(--ink-line); }
.location-map iframe{ width:100%; height:100%; border:0; }
/* Name | walk | drive — three columns kept in step by a shared grid. */
.landmarks{ display:flex; flex-direction:column; justify-content:center; }
.landmarks__head, .landmark-list li{
  display:grid; grid-template-columns:1fr 4.2em 4.2em; gap:14px; align-items:center;
}
.landmarks__head{
  padding:0 2px 10px; border-bottom:1px solid var(--ink-line);
}
.landmarks__head em, .landmark-list em{
  font-style:normal; font-family:var(--font-label); font-size:10px; font-weight:600;
  letter-spacing:.12em; text-transform:uppercase; white-space:nowrap; text-align:right;
}
.landmarks__head em{ color:var(--text-soft-light); }
.landmark-list li{
  padding:clamp(11px,1.5vw,17px) 2px; border-bottom:1px solid var(--ink-line);
  font-family:var(--font-display); text-transform:uppercase; letter-spacing:.03em; font-size:clamp(12px,1.35vw,17px);
}
.landmark-list em{ color:var(--stone-light); }
.landmark-list em:last-child{ color:var(--text-soft-light); }
.landmarks__note{
  margin:14px 0 0; font-family:var(--font-label); font-size:9.5px; letter-spacing:.1em;
  text-transform:uppercase; color:var(--text-soft-light);
}
@media (max-width:800px){ .location-layout{ grid-template-columns:1fr; } }

/* ---------- faq ---------- */
.faq-list{ margin-top:2em; border-top:1px solid var(--paper-line); }
.faq-item{ border-bottom:1px solid var(--paper-line); }
.faq-item summary{
  cursor:pointer; padding:24px 4px; font-family:var(--font-display); text-transform:uppercase; letter-spacing:.03em;
  font-size:clamp(14px,1.6vw,19px);
  display:flex; justify-content:space-between; align-items:center; gap:16px; list-style:none;
}
.faq-item summary::-webkit-details-marker{ display:none; }
.faq-item summary::after{ content:"+"; font-size:20px; color:var(--stone-dark); transition:transform .3s ease; flex:none; }
.faq-item[open] summary::after{ transform:rotate(45deg); }
.faq-item__body{ padding:0 4px 24px; color:var(--text-soft); max-width:60ch; font-size:15px; }
.faq-item__body p{ margin:0; }

/* ---------- enquiry form ---------- */
.direct-contact{ display:flex; flex-direction:column; gap:8px; margin-top:1.8em; font-family:var(--font-display); font-size:17px; letter-spacing:.02em; }
.direct-contact a:hover{ color:var(--stone-light); }

.enquiry-form{ display:flex; flex-direction:column; gap:18px; }
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.enquiry-form label{ display:flex; flex-direction:column; gap:9px; font-family:var(--font-label); font-size:10px; font-weight:600; letter-spacing:.12em; text-transform:uppercase; color:var(--text-soft-light); }
.enquiry-form label em{ text-transform:none; font-style:normal; letter-spacing:0; opacity:.6; font-weight:400; }
.enquiry-form input, .enquiry-form select, .enquiry-form textarea{
  font-family:var(--font-body); font-size:15px; color:var(--paper); background:rgba(247,235,217,0.05);
  border:1px solid var(--ink-line); border-radius:2px; padding:14px 16px; outline:none;
  transition:border-color .3s ease, background .3s ease;
}
.enquiry-form input::placeholder, .enquiry-form textarea::placeholder{ color:rgba(247,235,217,0.35); }
.enquiry-form input:focus, .enquiry-form select:focus, .enquiry-form textarea:focus{ border-color:var(--stone-light); background:rgba(247,235,217,0.08); }
.enquiry-form select{ appearance:none; background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e08a4f' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat:no-repeat; background-position:right 14px center; background-size:16px; }
.enquiry-form .full{ width:100%; }
.form-actions{ display:flex; flex-direction:column; align-items:center; gap:14px; margin-top:6px; }
.email-fallback{ font-family:var(--font-label); font-size:10px; letter-spacing:.1em; text-transform:uppercase; color:var(--text-soft-light); text-decoration:underline; text-underline-offset:4px; }
.email-fallback:hover{ color:var(--stone-light); }
.form-note{ font-size:11.5px; color:var(--text-soft-light); text-align:center; margin:0; }
@media (max-width:600px){ .form-row{ grid-template-columns:1fr; } }

/* ---------- footer ---------- */
.site-footer{ background:var(--ink); color:var(--paper); padding-top:70px; }
.site-footer__inner{
  max-width:var(--container); margin:0 auto; padding:0 clamp(20px,5vw,64px) 50px;
  display:flex; flex-wrap:wrap; justify-content:space-between; gap:32px; align-items:flex-start;
}
.footer-brand{ display:flex; gap:14px; }
.footer-brand p{ font-family:var(--font-label); font-size:11px; letter-spacing:.08em; text-transform:uppercase; color:var(--text-soft-light); margin:0; line-height:1.9; }
.footer-contact{ display:flex; flex-direction:column; gap:6px; font-family:var(--font-display); font-size:16px; letter-spacing:.02em; }
.footer-contact a:hover{ color:var(--stone-light); }
.footer-note{ font-family:var(--font-label); font-size:10px; letter-spacing:.1em; text-transform:uppercase; color:var(--text-soft-light); margin-top:10px; }
.site-footer__bottom{
  border-top:1px solid var(--ink-line); padding:22px clamp(20px,5vw,64px); display:flex; flex-wrap:wrap;
  justify-content:space-between; gap:8px; font-family:var(--font-label); font-size:9.5px; letter-spacing:.1em;
  text-transform:uppercase; color:var(--text-soft-light);
  max-width:var(--container); margin:0 auto;
}

/* ---------- floating whatsapp + mobile bar ---------- */
.fab-whatsapp{
  position:fixed; bottom:26px; right:26px; z-index:400; width:56px; height:56px; border-radius:50%;
  background:#25D366; color:#fff; display:flex; align-items:center; justify-content:center;
  box-shadow:0 10px 30px rgba(0,0,0,.25); transition:transform .3s var(--ease);
}
.fab-whatsapp:hover{ transform:scale(1.08); }

.mobile-cta-bar{ display:none; }
@media (max-width:760px){
  .fab-whatsapp{ bottom:78px; }
  .mobile-cta-bar{
    display:flex; position:fixed; bottom:0; left:0; width:100%; z-index:399;
    background:var(--ink); border-top:1px solid var(--ink-line);
  }
  .mobile-cta-bar a{
    flex:1; text-align:center; padding:15px 0; font-family:var(--font-label); font-size:10px; font-weight:600;
    letter-spacing:.12em; text-transform:uppercase; color:var(--paper);
    border-right:1px solid var(--ink-line);
  }
  .mobile-cta-bar a:last-child{ border-right:none; background:var(--stone); color:var(--paper); }
  body{ padding-bottom:52px; }
}

/* ---------- lightbox ---------- */
.lightbox{
  position:fixed; inset:0; z-index:9000; background:rgba(20,13,7,0.95);
  display:flex; align-items:center; justify-content:center; padding:40px;
  opacity:0; pointer-events:none; transition:opacity .35s ease;
}
.lightbox.is-open{ opacity:1; pointer-events:auto; }
.lightbox img{ max-width:100%; max-height:100%; box-shadow:0 30px 80px rgba(0,0,0,.5); }
.lightbox__close{
  position:absolute; top:24px; right:28px; background:none; border:none; color:var(--paper);
  font-size:36px; line-height:1; cursor:pointer;
}

/* ---------- responsive split collapse ---------- */
@media (max-width:900px){
  .split, .split--reverse{ grid-template-columns:1fr; }
  .split__label{ position:static; top:auto; }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce){
  *{ animation-duration:.001ms !important; animation-iteration-count:1 !important; transition-duration:.001ms !important; scroll-behavior:auto !important; }
  .reveal-up, .reveal-scale, .reveal-img{ opacity:1; transform:none; clip-path:none; }
  .sw > span{ transform:none; }
  .preloader{ display:none; }
}
