/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Monochrome — pure white/neutral, zero terracotta */
  --accent:          rgba(255, 252, 248, 0.82);
  --accent-dim:      rgba(255, 252, 248, 0.35);
  --accent-glow:     rgba(255, 252, 248, 0.08);

  /* Frosted glass — pure white, no warm tint */
  --glass-bg:        rgba(255, 255, 255, 0.055);
  --glass-border:    rgba(255, 255, 255, 0.045);
  --glass-highlight: rgba(255, 255, 255, 0.08);
  --glass-shadow:    rgba(0, 0, 0, 0.28);

  --dark:            #0C0906;

  --text:            rgba(255, 252, 248, 0.90);
  --text-dim:        rgba(255, 252, 248, 0.70);
  --text-muted:      rgba(255, 252, 248, 0.50);

  --nav-h: 64px;
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --radius-glass: 20px;
}

html { scroll-behavior: smooth; font-size: 16px; overscroll-behavior: none; }

body {
  background: var(--dark);
  color: var(--text);
  font-family: 'Raleway', -apple-system, sans-serif;
  font-weight: 300;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Cormorant italic — white/cream, no orange */
em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  color: rgba(255, 252, 248, 0.88);
  letter-spacing: 0.01em;
}

strong { font-weight: 500; color: var(--text); }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(255,252,248,0.14); border-radius: 2px; }

/* ─── FROSTED GLASS — pure white vision pro style ─── */
.glass-panel {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(48px) saturate(180%) brightness(1.06);
  -webkit-backdrop-filter: blur(48px) saturate(180%) brightness(1.06);
  border-radius: var(--radius-glass);
  position: relative;
  overflow: hidden;
  box-shadow:
    inset 0 1px 0 var(--glass-highlight),
    inset 0 -1px 0 rgba(255,255,255,0.016),
    0 24px 64px var(--glass-shadow),
    0 4px 16px rgba(0,0,0,0.15),
    0 0 0 0.5px rgba(255,255,255,0.020);
}

/* ─── NAV — transparent, no bar, floating text only ─── */
#nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100; height: var(--nav-h);
  background: transparent;
  border: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
}
/* no visible bar even when scrolled */
#nav.scrolled {
  background: transparent;
  border: none;
  box-shadow: none;
}

.nav-inner {
  width: 100%; padding: 0 48px;
  height: 100%; display: flex; align-items: center; gap: 0;
}
.nav-logo { display: flex; align-items: center; flex-shrink: 0; margin-right: 48px; transition: opacity 0.4s ease; }
.nav-logo.hero-hidden { opacity: 0; pointer-events: none; }
.nav-logo-img { height: 32px; width: auto; display: block; }

/* links — fixed top-center */
.nav-links {
  position: fixed;
  top: 0; left: 50%;
  transform: translateX(-50%);
  height: var(--nav-h);
  display: flex; align-items: center; gap: 56px;
  z-index: 101;
  pointer-events: all;
}
.nav-links a {
  font-size: 11px; font-weight: 500; letter-spacing: 0.26em;
  text-transform: uppercase; color: rgba(255, 255, 255, 0.90);
  transition: color 0.3s; position: relative; white-space: nowrap;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: rgba(255, 255, 255, 0.60);
  transform: scaleX(0); transition: transform 0.35s var(--ease-out); transform-origin: left;
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-right { flex-shrink: 0; }
.nav-cta {
  display: inline-flex; align-items: center;
  font-size: 10px; font-weight: 300; letter-spacing: 0.20em;
  text-transform: uppercase; color: rgba(255,252,248,0.70);
  border: 1px solid rgba(255,252,248,0.18); padding: 9px 20px; border-radius: 100px;
  backdrop-filter: blur(20px);
  transition: background 0.3s, color 0.3s, border-color 0.3s; white-space: nowrap;
}
.nav-cta:hover {
  background: rgba(255,252,248,0.92); color: #0C0906;
  border-color: transparent;
}

.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px;
  margin-left: auto;
}
.nav-hamburger span {
  display: block; width: 20px; height: 1px;
  background: rgba(255,252,248,0.70);
  transition: transform 0.35s var(--ease-out), opacity 0.3s, width 0.3s;
}
.nav-hamburger span:last-child { width: 12px; }
.nav-hamburger:hover span { background: rgba(255,252,248,0.95); }
.nav-hamburger:hover span:last-child { width: 20px; }

/* ─── MOBILE MENU ─── */
.mobile-menu {
  position: fixed; inset: 0; z-index: 99;
  background: rgba(10, 12, 10, 0.55);
  backdrop-filter: blur(32px) saturate(140%) brightness(0.72);
  -webkit-backdrop-filter: blur(32px) saturate(140%) brightness(0.72);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.45s var(--ease-out);
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu ul {
  display: flex; flex-direction: column; gap: 8px; text-align: center;
  list-style: none; padding: 0; margin: 0;
  background: none; border: none; box-shadow: none;
  transform: scale(1);
  transform-origin: center center;
}
.mobile-menu ul li { border: none; }
.mobile-menu a {
  display: block;
  padding: 10px 24px;
  font-family: 'Raleway', sans-serif;
  font-size: 11px; font-weight: 300;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: rgba(255, 252, 248, 0.82);
  transition: color 0.25s;
}
.mobile-menu a:hover { color: rgba(255, 252, 248, 0.95); }

/* ─── SCROLL STAGE — tall container, hero sticks inside it ─── */
.scroll-stage {
  position: relative;
  height: 350vh; /* 250vh of scroll travel to scrub through the video */
}

/* ─── HERO — sticky so it pins to viewport during scrub ─── */
.hero {
  position: sticky; top: 0;
  height: 100vh; min-height: 700px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }

.hero-video-stay {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center center;
  pointer-events: none; z-index: 0;
}

.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center center;
  pointer-events: none; z-index: 1;
  opacity: 0;
}

.hero-overlay {
  position: absolute; inset: 0; z-index: 2;
  background:
    linear-gradient(to top,
      rgba(8,6,5,0.95) 0%,
      rgba(8,6,5,0.80) 10%,
      rgba(8,6,5,0.58) 22%,
      rgba(8,6,5,0.35) 35%,
      rgba(8,6,5,0.15) 50%,
      rgba(8,6,5,0.04) 63%,
      transparent      75%);
}

.hero-ambient { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.ambient-orb {
  position: absolute; border-radius: 50%; filter: blur(110px);
  animation: orbFloat 14s ease-in-out infinite alternate;
}
/* subtle white/neutral orbs — no orange */
.orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,252,248,0.04) 0%, transparent 70%);
  top: -160px; right: -80px;
}
.orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,252,248,0.025) 0%, transparent 70%);
  bottom: -40px; left: 8%; animation-delay: -7s;
}
@keyframes orbFloat { 0% { transform: translate(0,0) scale(1); } 100% { transform: translate(24px,16px) scale(1.08); } }

.hero-content {
  position: relative; z-index: 4;
  max-width: 1400px; width: 100%; margin: 0 auto;
  padding: 0 64px;
  transition: opacity 1s var(--ease-out);
  will-change: transform;
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
}
.hero-content.fade-out  { opacity: 0; }
.hero-content.is-hidden { opacity: 0; transform: translateY(-16px) !important; pointer-events: none; transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }

.hero-badge, .hero-title, .hero-sub, .hero-actions { will-change: transform; }
.hero-video { will-change: transform; transform-origin: center center; }

/* Hero badge — matches btn-outline style */
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 22px; background: transparent;
  border: 1px solid rgba(255,255,255,0.025); border-radius: 100px;
  font-size: 9px; font-weight: 300; letter-spacing: 0.20em;
  text-transform: uppercase; color: var(--text-dim);
}
.badge-dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: rgba(255,252,248,0.70);
  animation: pulse 2.8s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.4; transform: scale(0.75); } }

.hero-logo-large {
  margin-bottom: 20px; margin-top: 90px; display: flex; justify-content: center;
}
.hero-logo-large img {
  width: clamp(220px, 30vw, 420px);
  height: auto; display: block;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

.hero-sub {
  font-size: 12px; font-weight: 300; letter-spacing: 0.06em;
  color: var(--text-dim); line-height: 1.8; max-width: 480px; margin-bottom: 26px;
  text-align: center;
}

.hero-actions { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; margin-top: 140px; }

/* Hero countdown — smaller */
.hero-countdown {
  display: flex; align-items: center;
  background: rgba(255,255,255,0.022);
  border: 1px solid rgba(255,255,255,0.040);
  backdrop-filter: blur(48px) saturate(180%) brightness(1.06);
  -webkit-backdrop-filter: blur(48px) saturate(180%) brightness(1.06);
  border-radius: 14px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.025), 0 12px 36px rgba(0,0,0,0.28);
  overflow: hidden; width: fit-content;
}
.cd-unit { display: flex; flex-direction: column; align-items: center; padding: 12px 20px; gap: 4px; }
/* thin number — Raleway 100 */
.cd-num { font-family: 'Raleway', sans-serif; font-size: 22px; font-weight: 300; letter-spacing: -0.02em; color: rgba(255,252,248,0.80); line-height: 1; }
/* thick label for contrast — Raleway 400 */
.cd-label { font-size: 7px; font-weight: 400; letter-spacing: 0.22em; text-transform: uppercase; color: var(--text-muted); }
.cd-sep { font-size: 16px; font-weight: 300; color: rgba(255,255,255,0.045); padding: 0 2px; align-self: center; }

.hero-scroll-hint {
  position: absolute; bottom: 48px; left: 50%;
  transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.scroll-label { font-size: 8px; font-weight: 300; letter-spacing: 0.32em; text-transform: uppercase; color: var(--text-muted); }
.scroll-track { width: 1px; height: 48px; background: rgba(255,255,255,0.035); border-radius: 1px; overflow: hidden; }
.scroll-thumb { width: 100%; height: 50%; background: rgba(255,252,248,0.45); border-radius: 1px; animation: scrollDown 2.2s ease-in-out infinite; }
@keyframes scrollDown { 0% { transform: translateY(-100%); opacity: 0; } 25% { opacity: 1; } 75% { opacity: 1; } 100% { transform: translateY(200%); opacity: 0; } }

/* ─── BUTTONS ─── */
.btn-glass {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 22px;
  background: rgba(255,255,255,0.030);
  border: 1px solid rgba(255,255,255,0.020);
  backdrop-filter: blur(40px) saturate(160%) brightness(1.06);
  -webkit-backdrop-filter: blur(40px) saturate(160%) brightness(1.06);
  border-radius: 100px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.030), 0 8px 24px rgba(0,0,0,0.18);
  font-size: 9px; font-weight: 300; letter-spacing: 0.20em;
  text-transform: uppercase; color: var(--text);
  transition: background 0.3s, border-color 0.3s, transform 0.35s var(--ease-spring), box-shadow 0.3s;
}
.btn-glass:hover {
  background: rgba(255,255,255,0.048); border-color: rgba(255,255,255,0.040);
  transform: translateY(-1px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.040), 0 16px 40px rgba(0,0,0,0.26);
}

.btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 22px; background: transparent;
  border: 1px solid rgba(255,255,255,0.025); border-radius: 100px;
  font-size: 9px; font-weight: 300; letter-spacing: 0.20em;
  text-transform: uppercase; color: var(--text-dim);
  transition: border-color 0.3s, color 0.3s;
}
.btn-outline:hover { border-color: rgba(255,255,255,0.025); color: var(--text); }

/* Primary CTA — white filled, dark text */
.btn-accent {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 13px 30px;
  background: rgba(255,252,248,0.90);
  border: none; border-radius: 100px;
  font-size: 10px; font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase; color: #0C0906;
  font-family: 'Raleway', sans-serif; cursor: pointer;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.80);
  transition: opacity 0.3s, transform 0.35s var(--ease-spring), box-shadow 0.3s;
}
.btn-accent:hover {
  opacity: 0.93; transform: translateY(-1px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.32), inset 0 1px 0 rgba(255,255,255,0.80);
}

.btn-gold {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 13px 30px;
  background: rgba(255,252,248,0.90);
  border: none; border-radius: 100px;
  font-size: 10px; font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase; color: #0C0906;
  font-family: 'Raleway', sans-serif; cursor: pointer;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.80);
  transition: opacity 0.3s, transform 0.35s var(--ease-spring), box-shadow 0.3s;
}
.btn-gold:hover { opacity: 0.93; transform: translateY(-1px); }

/* ─── SECTIONS ─── */
.section { max-width: 1400px; margin: 0 auto; padding: 120px 64px; }

/* thin label — Raleway 200 */
.section-label {
  font-size: 9px; font-weight: 300; letter-spacing: 0.36em;
  text-transform: uppercase; color: var(--text-muted);
  margin-bottom: 20px; display: flex; align-items: center; gap: 14px;
}
.section-label::before { content: ''; display: block; width: 22px; height: 1px; background: rgba(255,255,255,0.020); }

/* thin display title — Raleway 100/200 */
.section-title {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(30px, 4.2vw, 56px); font-weight: 300;
  line-height: 1.08; letter-spacing: -0.02em;
  color: rgba(255,252,248,0.90); margin-bottom: 24px;
}

/* body — Raleway 300, readable */
.section-body {
  font-size: 13px; font-weight: 300; letter-spacing: 0.03em;
  color: var(--text-dim); line-height: 1.92;
  max-width: 520px; margin-bottom: 40px;
}

/* ─── WELCOME ─── */
.welcome-section { padding-top: 140px; }
.welcome-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.welcome-sub { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 300; letter-spacing: 0.06em; color: rgba(255,252,248,0.65); margin-bottom: 16px; margin-top: -12px; }
.welcome-tag { font-size: 12px; font-weight: 400; letter-spacing: 0.08em; color: rgba(255,252,248,0.55); margin-bottom: 20px; }
.welcome-pillars { display: flex; flex-direction: column; gap: 12px; padding-top: 12px; }

.pillar-card { padding: 26px 30px; }
.pillar-label { font-size: 9px; font-weight: 300; letter-spacing: 0.30em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 12px; }
.pillar-body { font-size: 13px; font-weight: 300; letter-spacing: 0.02em; color: var(--text-dim); line-height: 1.80; margin-bottom: 10px; }
.pillar-em { font-size: 13px; color: var(--text-dim); }

/* ─── LOCATION ─── */
.location-section { padding-top: 140px; }
.location-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.location-visual { position: relative; height: 480px; }
.loc-map-placeholder {
  width: 100%; height: 100%; border-radius: 20px;
  background: linear-gradient(155deg, #120C08 0%, #1A1008 35%, #0E0A06 65%, #130E09 100%);
  border: 1px solid rgba(255,255,255,0.030);
  box-shadow: 0 24px 64px rgba(0,0,0,0.40);
  position: relative; overflow: hidden;
}
.loc-map-placeholder::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 60% 35%, rgba(255,252,248,0.04) 0%, transparent 55%);
}

.loc-glass-card {
  position: absolute; bottom: 24px; left: 24px;
  display: flex; align-items: center; gap: 14px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.030);
  border: 1px solid rgba(255,255,255,0.045);
  backdrop-filter: blur(48px) saturate(180%) brightness(1.06);
  -webkit-backdrop-filter: blur(48px) saturate(180%) brightness(1.06);
  border-radius: 14px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.030), 0 12px 32px rgba(0,0,0,0.30);
}
.loc-card-icon { flex-shrink: 0; }
.loc-card-title { font-size: 13px; font-weight: 300; letter-spacing: 0.04em; color: rgba(255,252,248,0.86); margin-bottom: 3px; }
.loc-card-sub { font-size: 10px; font-weight: 300; letter-spacing: 0.12em; color: var(--text-muted); }

.loc-group-label { font-size: 9px; font-weight: 300; letter-spacing: 0.28em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 8px; }
.location-features { display: flex; flex-direction: column; gap: 8px; margin-bottom: 40px; }
.loc-feature {
  display: flex; align-items: center; gap: 16px; padding: 14px 18px;
  background: rgba(255,255,255,0.016);
  border: 1px solid rgba(255,255,255,0.035);
  backdrop-filter: blur(32px) saturate(160%) brightness(1.04);
  -webkit-backdrop-filter: blur(32px) saturate(160%) brightness(1.04);
  border-radius: 11px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.040), 0 4px 12px rgba(0,0,0,0.14);
  transition: border-color 0.3s, background 0.3s;
}
.loc-feature:hover { border-color: rgba(255,255,255,0.030); background: rgba(255,255,255,0.025); }
.loc-feature-icon { font-size: 12px; color: var(--text-muted); flex-shrink: 0; }
/* feature title — Cormorant for elegance */
.loc-feature-title { font-family: 'Cormorant Garamond', serif; font-size: 18px; font-weight: 300; letter-spacing: 0.04em; color: rgba(255,252,248,0.88); }
.loc-feature-sub { font-size: 11px; font-weight: 300; letter-spacing: 0.04em; color: var(--text-muted); margin-top: 1px; }

/* ─── RITUALS ─── */
.rituals-section {
  padding: 120px 64px;
  background: linear-gradient(160deg, rgba(255,252,248,0.018) 0%, transparent 55%);
  border-top: 1px solid rgba(255,255,255,0.025);
  border-bottom: 1px solid rgba(255,255,255,0.025);
}
.rituals-inner { max-width: 900px; margin: 0 auto; text-align: center; }
/* display title — Raleway 100 ultra-thin */
.rituals-title { font-family: 'Raleway', sans-serif; font-size: clamp(26px,3.8vw,48px); font-weight: 300; letter-spacing: -0.02em; color: rgba(255,252,248,0.90); line-height: 1.1; margin-bottom: 24px; }
.rituals-title em { font-size: 1.15em; letter-spacing: 0; color: rgba(255,252,248,0.88); }
/* thin label */
.rituals-sub { font-size: 9px; font-weight: 300; letter-spacing: 0.30em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 12px; }
/* Cormorant for the quote feel */
.rituals-body { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 300; letter-spacing: 0.04em; color: rgba(255,252,248,0.62); margin-bottom: 10px; }
.rituals-note { font-size: 13px; font-weight: 300; letter-spacing: 0.03em; color: var(--text-dim); line-height: 1.7; margin-bottom: 36px; }
.rituals-tags { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.r-tag {
  padding: 9px 16px;
  background: rgba(255,255,255,0.020);
  border: 1px solid rgba(255,255,255,0.040);
  backdrop-filter: blur(32px) saturate(160%) brightness(1.05);
  -webkit-backdrop-filter: blur(32px) saturate(160%) brightness(1.05);
  border-radius: 100px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.020), 0 4px 12px rgba(0,0,0,0.10);
  font-size: 11px; font-weight: 300; letter-spacing: 0.10em; color: var(--text-dim);
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}
.r-tag:hover { border-color: rgba(255,255,255,0.040); color: var(--text); background: rgba(255,255,255,0.035); }
/* thick weight for contrast inside tag */
.r-tag strong { font-weight: 500; color: rgba(255,252,248,0.72); }

/* ─── COLLECTION ─── */
.collection-section { padding-top: 140px; }
.villas-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; margin-top: 56px; }

.villa-card {
  background: rgba(255,255,255,0.020);
  border: 1px solid rgba(255,255,255,0.035);
  backdrop-filter: blur(40px) saturate(160%) brightness(1.05);
  -webkit-backdrop-filter: blur(40px) saturate(160%) brightness(1.05);
  border-radius: 18px; overflow: hidden; position: relative;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.020), 0 16px 48px rgba(0,0,0,0.24);
  transition: transform 0.45s var(--ease-out), border-color 0.3s, box-shadow 0.45s;
  cursor: pointer;
}
.villa-card:hover {
  transform: translateY(-7px); border-color: rgba(255,255,255,0.035);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.030), 0 40px 80px rgba(0,0,0,0.42);
}

.villa-img-wrap { position: relative; height: 200px; overflow: hidden; }
.villa-img-placeholder { width: 100%; height: 100%; transition: transform 0.65s var(--ease-out); }
.villa-card:hover .villa-img-placeholder { transform: scale(1.04); }

.villa-1bed { background: linear-gradient(155deg, #24190F 0%, #3E2D1A 45%, #151A12 100%); }
.villa-2bed { background: linear-gradient(155deg, #1A1208 0%, #2E1E0C 45%, #120E06 100%); }
.villa-3a   { background: linear-gradient(155deg, #1E1208 0%, #352008 45%, #150E06 100%); }
.villa-3b   { background: linear-gradient(155deg, #201408 0%, #3A2210 45%, #180E06 100%); }

.villa-img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(12,9,6,0.88) 0%, transparent 55%); }

.villa-tag {
  position: absolute; top: 12px; left: 12px;
  background: rgba(255,255,255,0.040);
  backdrop-filter: blur(24px) saturate(160%) brightness(1.06);
  -webkit-backdrop-filter: blur(24px) saturate(160%) brightness(1.06);
  border: 1px solid rgba(255,255,255,0.020);
  border-radius: 100px; padding: 5px 12px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.030);
  font-size: 9px; font-weight: 300; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--text-dim); z-index: 2;
}
.villa-featured-badge {
  position: absolute; top: 12px; right: 12px;
  background: rgba(255,255,255,0.045);
  backdrop-filter: blur(24px); border: 1px solid rgba(255,255,255,0.030);
  border-radius: 100px; padding: 5px 12px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.035);
  font-size: 9px; font-weight: 300; letter-spacing: 0.16em;
  text-transform: uppercase; color: rgba(255,252,248,0.72); z-index: 2;
}
.villa-info { padding: 20px 20px 22px; }
/* Cormorant for villa name — elegant serif */
.villa-name { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 300; letter-spacing: 0.08em; color: rgba(255,252,248,0.88); margin-bottom: 14px; }
.villa-specs { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.spec-row { display: flex; justify-content: space-between; align-items: baseline; }
.spec-key { font-size: 9px; font-weight: 300; letter-spacing: 0.20em; text-transform: uppercase; color: var(--text-muted); }
.spec-val { font-size: 12px; font-weight: 300; letter-spacing: 0.04em; color: var(--text-dim); }
.villa-link { display: inline-flex; align-items: center; gap: 6px; font-size: 9px; font-weight: 300; letter-spacing: 0.20em; text-transform: uppercase; color: var(--text-dim); transition: gap 0.3s var(--ease-spring), color 0.3s; }
.villa-link:hover { gap: 10px; color: var(--text); }

.collection-cta { margin-top: 56px; display: flex; flex-direction: column; align-items: center; gap: 20px; text-align: center; }
.cta-note { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 300; letter-spacing: 0.04em; color: var(--text-dim); }

/* ─── PERFORMANCE ─── */
.performance-section {
  background: linear-gradient(160deg, rgba(255,255,255,0.008) 0%, transparent 60%);
  border-top: 1px solid rgba(255,255,255,0.025);
}
.perf-inner { max-width: 1400px; margin: 0 auto; padding: 120px 64px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.perf-cards { display: flex; flex-direction: column; gap: 12px; }
.perf-card { padding: 28px 30px; }
.perf-card-label { font-size: 9px; font-weight: 300; letter-spacing: 0.28em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 10px; }
/* ultra-thin huge numbers — Raleway 100 */
.perf-card-num { font-family: 'Raleway', sans-serif; font-size: 48px; font-weight: 300; letter-spacing: -0.04em; color: rgba(255,252,248,0.90); line-height: 1; }
.perf-unit { font-size: 18px; font-weight: 300; color: var(--text-dim); }
.perf-card-sub { font-size: 11px; font-weight: 300; letter-spacing: 0.06em; color: var(--text-dim); margin-top: 6px; }
.perf-card-body { font-size: 13px; font-weight: 300; letter-spacing: 0.03em; color: var(--text-dim); line-height: 1.7; }

/* ─── LAUNCH ─── */
.launch-section { text-align: center; }
.launch-inner { max-width: 760px; margin: 0 auto; }
.launch-inner .section-body { max-width: 100%; text-align: left; }

.launch-countdown { padding: 40px; margin: 48px auto 32px; width: fit-content; }
.launch-cd-label { font-size: 9px; font-weight: 300; letter-spacing: 0.32em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 28px; text-align: center; }
.launch-cd-units { display: flex; align-items: center; }
.lcd-unit { display: flex; flex-direction: column; align-items: center; padding: 0 32px; gap: 6px; }
/* Raleway 100 — biggest thin number */
.lcd-num { font-family: 'Raleway', sans-serif; font-size: 52px; font-weight: 300; letter-spacing: -0.04em; color: rgba(255,252,248,0.82); line-height: 1; }
/* Raleway 400 — thicker label for contrast */
.lcd-label { font-size: 8px; font-weight: 400; letter-spacing: 0.24em; text-transform: uppercase; color: var(--text-muted); }
.lcd-sep { font-size: 32px; font-weight: 300; color: rgba(255,255,255,0.035); align-self: center; padding: 0 4px; margin-bottom: 20px; }
.launch-note { font-size: 12px; font-weight: 300; letter-spacing: 0.08em; color: var(--text-muted); }

/* ─── ACCESS ─── */
.access-section { border-top: 1px solid rgba(255,255,255,0.025); }
.access-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.access-sub { font-size: 13px; font-weight: 300; font-style: italic; letter-spacing: 0.03em; color: var(--text-muted); line-height: 1.7; }
.access-lists { display: flex; flex-direction: column; gap: 12px; padding-top: 8px; }
.access-card { padding: 28px 30px; }
.access-card-title { font-size: 10px; font-weight: 300; letter-spacing: 0.24em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 16px; }
.access-list { display: flex; flex-direction: column; gap: 10px; }
.access-list li { font-size: 13px; font-weight: 300; letter-spacing: 0.02em; color: var(--text-dim); padding-left: 16px; position: relative; line-height: 1.6; }
.access-list li::before { content: '—'; position: absolute; left: 0; color: var(--text-muted); }
.access-list-gold li::before { color: rgba(255,252,248,0.40); }
.access-list-gold li { color: rgba(255,252,248,0.60); }

/* ─── EMBER CIRCLE ─── */
.ember-section { border-top: 1px solid rgba(255,255,255,0.025); }
.ember-section > .section-label { justify-content: center; }
.ember-section > .section-label::before { display: none; }
.ember-section > .section-title { text-align: center; }
.ember-intro { font-size: 14px; font-weight: 300; letter-spacing: 0.04em; color: var(--text-dim); text-align: center; margin-bottom: 56px; }
.ember-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-bottom: 56px; }
.ember-card { padding: 32px; }
.ember-cat { font-size: 9px; font-weight: 300; letter-spacing: 0.30em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 24px; }
/* Cormorant serif for elegance */
.ember-item-title { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 300; letter-spacing: 0.06em; color: rgba(255,252,248,0.88); margin-bottom: 4px; }
.ember-item-sub { font-size: 10px; font-weight: 300; letter-spacing: 0.10em; color: var(--text-muted); font-style: italic; margin-bottom: 10px; }
.ember-item-body { font-size: 12px; font-weight: 300; letter-spacing: 0.02em; color: var(--text-dim); line-height: 1.75; }
.ember-divider { height: 1px; background: rgba(255,255,255,0.025); margin: 22px 0; }
.ember-cta { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.ember-cta-note { font-size: 10px; font-weight: 300; letter-spacing: 0.16em; color: var(--text-muted); }

/* ─── DEVELOPER ─── */
.developer-section { border-top: 1px solid rgba(255,255,255,0.025); }
.developer-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.dev-tagline { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 300; letter-spacing: 0.04em; color: rgba(255,252,248,0.65); margin-bottom: 20px; margin-top: -8px; }
.dev-tagline strong { font-family: 'Raleway', sans-serif; font-weight: 300; font-size: 0.85em; color: rgba(255,252,248,0.82); }
.dev-warranties { display: flex; flex-direction: column; gap: 8px; margin-bottom: 36px; }
.warranty-label { font-size: 9px; font-weight: 300; letter-spacing: 0.28em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 4px; }
.warranty-item {
  display: flex; align-items: center; gap: 14px; padding: 12px 16px;
  background: rgba(255,255,255,0.016);
  border: 1px solid rgba(255,255,255,0.035);
  backdrop-filter: blur(24px) saturate(160%) brightness(1.04);
  border-radius: 10px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.040);
}
/* Cormorant number — thick contrast against thin body */
.warranty-num { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 300; color: rgba(255,252,248,0.60); min-width: 28px; }
.warranty-item span:last-child { font-size: 12px; font-weight: 300; letter-spacing: 0.04em; color: var(--text-dim); }
.developer-visual { position: relative; height: 460px; }
.dev-visual-placeholder { width: 100%; height: 100%; border-radius: 18px; background: linear-gradient(155deg, #1A1208 0%, #2A1A0A 45%, #120E06 100%); border: 1px solid rgba(255,255,255,0.030); box-shadow: 0 24px 64px rgba(0,0,0,0.40); }

/* ─── IMPACT ─── */
.impact-section { border-top: 1px solid rgba(255,255,255,0.025); text-align: center; }
.impact-inner { max-width: 1000px; margin: 0 auto; }
.impact-title { margin: 0 auto 24px; }
.impact-body { max-width: 100%; margin: 0 auto 16px; font-size: 18px; font-family: 'Cormorant Garamond', serif; font-weight: 300; letter-spacing: 0.04em; color: rgba(255,252,248,0.65); }
.impact-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; margin-top: 52px; }
.impact-card { padding: 28px 20px; text-align: center; }
/* Raleway 100 — huge thin stat number */
.impact-num { font-family: 'Raleway', sans-serif; font-size: 56px; font-weight: 300; letter-spacing: -0.04em; color: rgba(255,252,248,0.78); line-height: 1; margin-bottom: 6px; }
/* Raleway 400 — thicker label = contrast */
.impact-card-label { font-size: 9px; font-weight: 400; letter-spacing: 0.28em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 10px; }
.impact-card-val { font-size: 12px; font-weight: 300; letter-spacing: 0.03em; color: var(--text-muted); line-height: 1.65; }

/* ─── REGISTER ─── */
.register-section { border-top: 1px solid rgba(255,255,255,0.025); }
.register-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.register-bullets { display: flex; flex-direction: column; gap: 10px; margin-top: -20px; }
.register-bullets li { font-size: 13px; font-weight: 300; letter-spacing: 0.03em; color: var(--text-dim); padding-left: 18px; position: relative; line-height: 1.65; }
.register-bullets li::before { content: '◎'; position: absolute; left: 0; font-size: 10px; color: var(--text-muted); top: 2px; }

.register-form { padding: 40px; }
.form-head { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 300; letter-spacing: 0.06em; color: rgba(255,252,248,0.88); margin-bottom: 8px; }
.form-subhead { font-size: 12px; font-weight: 300; letter-spacing: 0.03em; color: var(--text-dim); line-height: 1.7; margin-bottom: 28px; }
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: 9px; font-weight: 300; letter-spacing: 0.28em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 8px; }
.form-input {
  width: 100%;
  background: rgba(255,255,255,0.016);
  border: 1px solid rgba(255,255,255,0.035);
  border-radius: 10px; padding: 13px 16px;
  font-size: 13px; font-family: 'Raleway', sans-serif;
  font-weight: 300; letter-spacing: 0.02em; color: var(--text);
  outline: none;
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
  appearance: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.025);
}
.form-input::placeholder { color: rgba(255,252,248,0.16); letter-spacing: 0.03em; }
.form-input:focus {
  border-color: rgba(255,252,248,0.28);
  background: rgba(255,255,255,0.025);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.040), 0 0 0 3px rgba(255,252,248,0.05);
}
.form-select { background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='rgba(255,252,248,0.22)' stroke-width='1.2' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; cursor: pointer; }
.form-select option { background: #1A140E; color: rgba(255,248,240,0.85); }
.form-submit { width: 100%; justify-content: center; margin-top: 8px; }
.form-disclaimer { font-size: 10px; font-weight: 300; letter-spacing: 0.10em; color: var(--text-muted); text-align: center; margin-top: 14px; font-style: italic; }

/* ─── FOOTER ─── */
.footer { border-top: 1px solid rgba(255,255,255,0.025); padding: 40px 0 0; }
.footer-inner { max-width: 1400px; margin: 0 auto; padding: 0 64px 40px; display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.footer-logo { display: flex; align-items: baseline; gap: 6px; }
.footer-tagline { font-family: 'Cormorant Garamond', serif; font-size: 14px; font-weight: 300; letter-spacing: 0.14em; color: rgba(255,248,240,0.16); }
.footer-links { display: flex; gap: 28px; }
.footer-links a { font-size: 9px; font-weight: 300; letter-spacing: 0.24em; text-transform: uppercase; color: var(--text-muted); transition: color 0.25s; }
.footer-links a:hover { color: var(--text-dim); }
.footer-copy { font-size: 10px; font-weight: 300; letter-spacing: 0.08em; color: rgba(255,248,240,0.14); }

.footer-before-you-go { border-top: 1px solid rgba(255,255,255,0.025); padding: 40px 64px; }
.byg-inner { max-width: 1400px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 40px; padding: 32px 40px; flex-wrap: wrap; }
.byg-text strong { display: block; font-size: 14px; font-weight: 300; letter-spacing: 0.06em; color: rgba(255,252,248,0.65); margin-bottom: 8px; }
.byg-text p { font-size: 12px; font-weight: 300; letter-spacing: 0.03em; color: var(--text-dim); line-height: 1.75; max-width: 560px; }

/* ─── REVEAL ─── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.10s; }
.reveal-delay-2 { transition-delay: 0.20s; }
.reveal-delay-3 { transition-delay: 0.30s; }
.reveal-delay-4 { transition-delay: 0.42s; }

/* ─── RESPONSIVE ─── */

/* Tablet landscape */
@media (max-width: 1024px) {
  .hero-content {
    padding: 0 40px;
    padding-top: var(--nav-h);
  }
  .scroll-stage { height: 320vh; }
  .nav-inner { padding: 0 36px; }
  /* Hide desktop nav links on all iPad sizes, show hamburger */
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
}

/* Tablet portrait & large phone */
@media (max-width: 768px) {
  :root { --nav-h: 56px; }

  /* Nav */
  .nav-inner { padding: 0 24px; }

  /* Hero content */
  .hero-content {
    padding: 0 24px;
    padding-top: var(--nav-h);
  }
  .hero-title {
    font-size: clamp(24px, 6.5vw, 40px);
    margin-bottom: 12px;
  }
  .hero-sub {
    font-size: 13px;
    max-width: 100%;
    margin-bottom: 22px;
  }
  .hero-badge {
    margin-bottom: 18px;
  }
  .hero-actions {
    flex-wrap: wrap;
    gap: 12px;
  }
  .btn-glass {
    font-size: 9px;
    padding: 11px 20px;
  }
  .hero-scroll-hint { bottom: 32px; }
  .scroll-stage { height: 300vh; }
}

/* Small phone */
@media (max-width: 480px) {
  :root { --nav-h: 52px; }

  /* Nav */
  .nav-inner { padding: 0 18px; }
  .nav-logo-img { height: 26px; }

  /* Hero content */
  .hero-content {
    padding: 0 18px;
    padding-top: var(--nav-h);
  }
  .hero-title {
    font-size: clamp(16px, 5vw, 22px);
    line-height: 1.10;
    margin-bottom: 8px;
  }
  .hero-badge {
    padding: 6px 12px;
    font-size: 7px;
    letter-spacing: 0.12em;
    margin-bottom: 10px;
  }
  .badge-dot { width: 3px; height: 3px; }
  .hero-sub {
    font-size: 10px;
    line-height: 1.7;
    margin-bottom: 14px;
  }
  .hero-actions { margin-bottom: 0; }
  .btn-glass {
    padding: 10px 16px;
    font-size: 8px;
    letter-spacing: 0.14em;
  }
  .hero-scroll-hint { bottom: 18px; }
  .scroll-label { font-size: 7px; }
  .scroll-stage { height: 280vh; }
}

/* Landscape phone */
@media (max-width: 768px) and (orientation: landscape) {
  .hero {
    min-height: 100svh;
  }
  .hero-content {
    padding-top: calc(var(--nav-h) + 8px);
  }
  .hero-title { font-size: clamp(18px, 4.5vw, 30px); margin-bottom: 8px; }
  .hero-sub { font-size: 11px; margin-bottom: 14px; }
  .hero-badge { margin-bottom: 10px; }
  .hero-scroll-hint { bottom: 12px; }
  .scroll-stage { height: 350vh; }
}

/* ─── SCRUB WHEEL ─── */
/* ─── VILLA PINS ─── */
.villa-pins {
  position: fixed; inset: 0; z-index: 48;
  pointer-events: none;
  opacity: 0; transition: opacity 0.6s ease;
}
/* only the pins themselves catch pointer events — the full-screen container
   must stay transparent to clicks/swipes so scrub + scroll-stage still work */
.villa-pins.visible { opacity: 1; }
.villa-pins.visible .villa-pin { pointer-events: auto; }



.villa-pin {
  position: absolute;
  display: flex; align-items: center;
  cursor: pointer;
}

/* small white dot — is the hover anchor */
.vp-dot {
  position: relative;        /* card is absolutely positioned inside */
  width: 5px; height: 5px;
  background: rgba(255,252,248,0.92);
  border-radius: 50%; flex-shrink: 0; z-index: 2;
  box-shadow: 0 0 6px rgba(255,255,255,0.55);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.villa-pin:hover .vp-dot {
  transform: scale(1.6);
  box-shadow: 0 0 16px rgba(255,255,255,0.9), 0 0 0 5px rgba(255,255,255,0.10);
}

/* line thickens + freezes on hover */
.vp-track {
  transition: height 0.25s ease, background 0.25s ease;
}
.villa-pin:hover .vp-glow  { animation-play-state: paused; }
.villa-pin:hover .vp-track {
  height: 2px;
  background: rgba(255,255,255,0.55);
}

/* ── HOVER CARD — full villa card on waypoint hover ── */
.vp-card {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 14px);
  transform: translateX(-50%) translateY(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s ease, transform 0.24s ease;
  z-index: 20;
  width: 210px;
  border-radius: 18px;
  overflow: hidden;
  border: 0.5px solid rgba(255,255,255,0.18);
  box-shadow: 0 16px 48px rgba(0,0,0,0.50);
  white-space: normal;
  backdrop-filter: blur(40px) saturate(160%) brightness(1.06);
  -webkit-backdrop-filter: blur(40px) saturate(160%) brightness(1.06);
}
.villa-pin:hover .vp-card {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

/* image area */
.vpc-img-wrap {
  position: relative;
  height: 148px;
  overflow: hidden;
}
.vpc-photo {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.vpc-img-fade {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(transparent, rgba(0,0,0,0.60));
  pointer-events: none;
}
.vpc-img-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 0 12px 11px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 8px;
}
.vpc-code {
  display: block;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-shadow: 0 1px 6px rgba(0,0,0,0.6);
}
.vpc-type {
  display: block;
  color: rgba(255,255,255,0.50);
  font-size: 9px;
  letter-spacing: 0.04em;
  margin-top: 2px;
}
.vpc-vr {
  background: rgba(22,14,8,0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 0.5px solid rgba(255,255,255,0.18);
  color: #fff;
  font-size: 8px;
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  letter-spacing: 0.12em;
  padding: 5px 9px;
  border-radius: 16px;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
}

/* frosted glass stats panel — backdrop-filter lives on .vp-card to avoid render delay */
.vpc-glass {
  background: rgba(255,255,255,0.030);
  border-top: 1px solid rgba(255,255,255,0.020);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.030);
  padding: 11px 12px 13px;
}
.vpc-loc {
  margin: 0 0 9px;
  font-size: 8px;
  color: rgba(255,255,255,0.40);
  text-transform: uppercase;
  letter-spacing: 0.10em;
  font-weight: 300;
}
.vpc-stats-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.vpc-stats { display: flex; gap: 9px; }
.vpc-stats > div { flex-shrink: 0; }
.vpc-val {
  margin: 0;
  font-size: 11.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.92);
  letter-spacing: 0.02em;
  white-space: nowrap;
  line-height: 1.2;
}
.vpc-lbl {
  margin: 2px 0 0;
  font-size: 7px;
  color: rgba(255,255,255,0.36);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 300;
  white-space: nowrap;
  line-height: 1;
}
.vpc-circ {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.11);
  border: 0.5px solid rgba(255,255,255,0.22);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.vpc-cn {
  color: rgba(255,255,255,0.88);
  font-size: 13px;
  font-weight: 300;
  line-height: 1;
}
.vpc-cb {
  color: rgba(255,255,255,0.36);
  font-size: 6px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 1px;
}

/* line + label group */
.vp-connector {
  display: flex; align-items: center; gap: 10px;
}

/* thin connector line — travelling shimmer like .scroll-track */
.vp-track {
  width: 70px; height: 1px;
  background: rgba(255,255,255,0.22);
  border-radius: 1px; overflow: hidden; flex-shrink: 0;
}
.vp-glow {
  width: 45%; height: 100%;
  background: rgba(255,252,248,0.85);
  border-radius: 1px;
  animation: vpLineGlow 2.4s ease-in-out infinite;
}
@keyframes vpLineGlow {
  0%   { transform: translateX(-100%); opacity: 0; }
  20%  { opacity: 1; }
  80%  { opacity: 1; }
  100% { transform: translateX(300%); opacity: 0; }
}
/* stagger each pin so glows don't all move in sync */
.villa-pin[data-v="02"] .vp-glow { animation-delay: -0.34s; }
.villa-pin[data-v="03"] .vp-glow { animation-delay: -0.68s; }
.villa-pin[data-v="04"] .vp-glow { animation-delay: -1.02s; }
.villa-pin[data-v="05"] .vp-glow { animation-delay: -1.36s; }
.villa-pin[data-v="06"] .vp-glow { animation-delay: -1.70s; }
.villa-pin[data-v="07"] .vp-glow { animation-delay: -2.04s; }

/* modern sans label — thin word, bold code */
.vp-label {
  white-space: nowrap;
  font-family: 'Raleway', sans-serif;
  font-size: 9px; font-weight: 300;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: rgba(255,252,248,0.88);
  text-shadow: 0 1px 8px rgba(0,0,0,0.85), 0 0 16px rgba(0,0,0,0.6);
  pointer-events: none;
}
.vp-label em {
  font-family: 'Raleway', sans-serif;
  font-style: normal; font-weight: 700;
  letter-spacing: 0.18em;
  color: rgba(255,252,248,1);
}

/* flip — line + label go to the left of the dot */
.villa-pin.vp-flip {
  flex-direction: row-reverse;
}
.villa-pin.vp-flip .vp-connector {
  flex-direction: row-reverse;
}
.villa-pin.vp-flip .vp-glow {
  animation-name: vpLineGlowRev;
}
@keyframes vpLineGlowRev {
  0%   { transform: translateX(300%);  opacity: 0; }
  20%  { opacity: 1; }
  80%  { opacity: 1; }
  100% { transform: translateX(-100%); opacity: 0; }
}

/* ─── SCRUB WHEEL ─── */
.scrub-wheel {
  position: fixed;
  right: 0;
  top: 0;
  width: 420px;
  height: 100vh;
  z-index: 99;
  cursor: grab;
  overflow: visible;
  -webkit-tap-highlight-color: transparent;
}

.scrub-wheel:active { cursor: grabbing; }

.sw-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

.sw-display {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 18px;
  pointer-events: none;
  user-select: none;
}

.sw-num {
  font-family: 'Raleway', -apple-system, BlinkMacSystemFont, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 72px;
  line-height: 1;
  color: rgba(255, 252, 248, 0.95);
  letter-spacing: 0.10em;
  white-space: nowrap;
}

.sw-caption {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.sw-cap-title {
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  font-size: 11px;
  color: rgba(255, 252, 248, 0.80);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  white-space: nowrap;
}

.sw-cap-sub {
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  font-size: 10px;
  color: rgba(255, 252, 248, 0.30);
  letter-spacing: 0.06em;
  max-width: 130px;
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .scrub-wheel { width: 340px; }
  .sw-num { font-size: 58px; }
}

@media (max-width: 768px) {
  .scrub-wheel { width: 260px; }
  .sw-num { font-size: 44px; }
  .sw-caption { display: none; }
}

@media (max-width: 480px) {
  .scrub-wheel {
    right: auto;
    top:   auto;
    left:   0;
    bottom: 0;
    width:  100vw;
    height: 170px;
  }
  .sw-num { font-size: 36px; letter-spacing: 0.14em; }
  .sw-caption { display: none; }
}


/* ─── CALIBRATION UI ─── */
#calibrateBtn {
  position: fixed; bottom: 24px; right: 24px; z-index: 9999;
  padding: 10px 18px;
  background: rgba(20,14,8,0.85);
  border: 1px solid rgba(255,252,248,0.30);
  border-radius: 4px;
  color: rgba(255,252,248,0.90);
  font-family: 'Raleway', sans-serif;
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: background 0.2s;
}
#calibrateBtn.cal-active {
  background: rgba(210,175,110,0.90);
  color: rgba(10,7,4,0.95);
  border-color: transparent;
}
#calibrateOut {
  display: none;
  position: fixed; bottom: 72px; right: 24px; z-index: 9999;
  max-width: 340px;
  padding: 14px 16px;
  background: rgba(10,7,4,0.92);
  border: 1px solid rgba(255,252,248,0.20);
  border-radius: 4px;
  color: rgba(255,252,248,0.88);
  font-family: monospace; font-size: 11px; line-height: 1.7;
  backdrop-filter: blur(8px);
  white-space: pre;
}
.cal-draggable {
  cursor: grab !important;
  touch-action: none;
}
.cal-draggable:active { cursor: grabbing !important; }

/* ─── PINS MODE — scrub wheel steps back when villa pins are visible ─── */
/* opacity controlled by JS in tick() to avoid cascade conflicts */
#scrubWheel .sw-display { transition: opacity 0.35s ease; }
#scrubWheel .sw-svg     { transition: opacity 0.40s ease; }

/* ─── CONTACT MODAL ─── */
.contact-overlay {
  position: fixed; inset: 0; z-index: 200;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  background: rgba(8,6,5,0.40);
  opacity: 0; pointer-events: none;
  transition: opacity 0.45s var(--ease-out);
}
.contact-dark-cover {
  position: absolute; inset: 0; z-index: 0;
  background: rgba(0,0,0,0.70);
  pointer-events: none;
}

.contact-bg-video {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  pointer-events: none;
}
.contact-overlay.open {
  opacity: 1; pointer-events: all;
}

.contact-card {
  position: relative; z-index: 1;
  width: 100%; max-width: 420px;
  padding: 38px 34px 32px;
  border-radius: 28px;
  background: rgba(255,255,255,0.055);
  backdrop-filter: blur(48px) saturate(180%) brightness(1.06);
  -webkit-backdrop-filter: blur(48px) saturate(180%) brightness(1.06);
  border: 0.5px solid rgba(255,255,255,0.14);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 32px 80px rgba(0,0,0,0.60),
    0 8px 24px rgba(0,0,0,0.30);
  transform: translateY(16px);
  transition: transform 0.35s var(--ease-out);
}
.contact-overlay.open .contact-card {
  transform: translateY(0);
}

.cc-topbar {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 18px;
}
.contact-close {
  background: rgba(255,255,255,0.08);
  border: 0.5px solid rgba(255,255,255,0.14);
  color: rgba(255,252,248,0.60);
  width: 28px; height: 28px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; flex-shrink: 0;
  transition: background 0.2s, color 0.2s;
}
.contact-close:hover { background: rgba(255,255,255,0.14); color: #fff; }

.cc-head {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 14px; margin-bottom: 28px;
}
.cc-label {
  font-size: 8px; font-weight: 300; letter-spacing: 0.22em;
  text-transform: uppercase; color: rgba(255,252,248,0.50);
}
.cc-title {
  font-family: 'Raleway', sans-serif;
  font-size: 38px; font-weight: 200;
  line-height: 1.0; letter-spacing: -0.02em;
  color: rgba(255,252,248,0.94);
  margin-bottom: 10px;
}
.cc-title em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-weight: 300; font-size: 1.08em;
  color: rgba(255,252,248,0.88); letter-spacing: -0.01em;
}
.cc-sub {
  font-size: 11px; font-weight: 300; letter-spacing: 0.03em;
  color: rgba(255,252,248,0.55); line-height: 1.65; max-width: 200px;
}
.cc-pill {
  flex-shrink: 0; display: flex; align-items: center; gap: 7px;
  padding: 8px 14px 8px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 0.5px solid rgba(255,255,255,0.14);
  font-size: 10px; font-weight: 300; letter-spacing: 0.08em;
  color: rgba(255,252,248,0.80); white-space: nowrap;
}
.cc-pill-dot {
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cc-pill-dot svg { width: 11px; height: 11px; }

.cc-form { display: flex; flex-direction: column; gap: 10px; margin-bottom: 22px; }

.cc-field {
  display: flex; align-items: center;
  background: rgba(255,255,255,0.06);
  border: 0.5px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  padding: 3px 6px;
  transition: background 0.2s, border-color 0.2s;
}
.cc-field:focus-within {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.22);
}
.cc-field-ta { border-radius: 18px; align-items: flex-start; }

.cc-icon {
  flex-shrink: 0; width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 0.5px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  margin-right: 10px; color: rgba(255,252,248,0.50);
}
.cc-icon svg { width: 14px; height: 14px; }

.cc-field input,
.cc-field textarea {
  flex: 1; border: none; background: transparent; outline: none;
  font-family: 'Raleway', sans-serif;
  font-size: 12px; font-weight: 300; letter-spacing: 0.04em;
  color: rgba(255,252,248,0.90);
  padding: 11px 12px 11px 0;
}
.cc-field textarea {
  resize: none; height: 72px; padding-top: 14px; line-height: 1.55;
}
.cc-field input::placeholder,
.cc-field textarea::placeholder { color: rgba(255,252,248,0.35); }

.cc-footer {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 16px;
}
.cc-disclaimer {
  font-size: 10px; font-weight: 300; letter-spacing: 0.03em;
  color: rgba(255,252,248,0.35); line-height: 1.55; max-width: 260px;
}
.cc-submit {
  flex-shrink: 0; width: 50px; height: 50px; border-radius: 50%;
  background: rgba(255,252,248,0.92);
  border: none; display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: #0C0906;
  transition: transform 0.2s var(--ease-spring), background 0.2s;
  box-shadow: 0 8px 24px rgba(0,0,0,0.40);
}
.cc-submit:hover { transform: translateY(-2px) scale(1.04); background: #fff; }
.cc-submit:active { transform: scale(0.96); }
.cc-submit svg { width: 18px; height: 18px; }

.cc-signoff {
  text-align: center; margin-top: 22px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-weight: 300; font-size: 13px;
  color: rgba(255,252,248,0.40); letter-spacing: 0.04em;
}

