:root {
  --obsidian: #0A0A0B;
  --void: #0D0D10;
  --white: #FFFFFF;
  --white-dim: rgba(255, 255, 255, 0.7);
  --white-muted: rgba(255, 255, 255, 0.35);
  --gold: #C9A96E;
  --gold-dim: rgba(201, 169, 110, 0.4);
  --glass: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'DM Sans', sans-serif;
  --ease-silk: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-expo: cubic-bezier(0.87, 0, 0.13, 1);
  --gut: 5vw;
}

html {
  font-size: 16px;
  scroll-behavior: auto;
}

body {
  background: var(--obsidian);
  color: var(--white);
  font-family: var(--font-body);
  overflow-x: hidden;
  cursor: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: none;
}

button {
  border: none;
  background: none;
  font-family: inherit;
  cursor: none;
}

/* CUSTOM CURSOR */
#cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 8px; height: 8px;
  background-color: var(--white);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
}

#cursor-ring {
  position: fixed;
  top: 0; left: 0;
  width: 44px; height: 44px;
  border: 1px solid var(--white);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease-silk), height 0.3s var(--ease-silk), background-color 0.3s var(--ease-silk);
}

#cursor-ring.hover {
  width: 64px;
  height: 64px;
  background-color: rgba(255, 255, 255, 0.1);
}

/* LOADER */
#loader {
  position: fixed;
  inset: 0;
  background: var(--obsidian);
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.loader-sub {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0.6em;
  color: var(--gold);
  text-transform: uppercase;
  overflow: hidden;
  opacity: 0; /* for GSAP */
}

.loader-title {
  display: flex;
  overflow: hidden;
}

.loader-title .letter {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(60px, 12vw, 120px);
  color: var(--white);
  line-height: 1;
  transform: translateY(100%);
}

.loader-progress {
  width: 0;
  height: 1px;
  background-color: var(--white);
  margin-top: 10px;
}

/* NAVBAR */
#navbar {
  position: fixed;
  top: 0; left: 0; width: 100%;
  height: 68px;
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 var(--gut);
  background: transparent;
  transition: background 0.5s ease, backdrop-filter 0.5s ease, border-bottom 0.5s ease;
}

#navbar.scrolled {
  background: rgba(10, 10, 11, 0.9);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--glass-border);
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  color: var(--white);
}

.divider {
  width: 1px;
  height: 20px;
  background-color: var(--white);
  opacity: 0.5;
}

.logo-sub {
  font-weight: 300;
  font-size: 9px;
  letter-spacing: 0.4em;
  color: var(--white-muted);
}

.nav-center {
  display: flex;
  gap: 32px;
}

.nav-center a {
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--white-dim);
  text-transform: uppercase;
  position: relative;
  transition: color 0.3s ease;
}

.nav-center a:hover {
  color: var(--white);
}

.nav-center a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--white);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-silk);
}

.nav-center a:hover::after {
  transform: scaleX(1);
}

.btn-book {
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  border-radius: 2px;
  padding: 10px 28px;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  transition: color 0.4s ease;
}

.btn-book::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--white);
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.4s var(--ease-silk);
  z-index: -1;
}

.btn-book:hover {
  color: var(--obsidian);
}

.btn-book:hover::before {
  clip-path: inset(0 0% 0 0);
}

.nav-mobile-menu {
  display: none;
  cursor: none;
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 24px;
}

.hamburger span {
  display: block;
  height: 1px;
  background: var(--white);
  width: 100%;
  transition: 0.3s;
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 11, 0.96);
  z-index: 998;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.mobile-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.mobile-links a {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 36px;
  color: var(--white);
  opacity: 0;
  transform: translateY(20px);
}

/* Fallback image styles */
.fallback-img {
  background: linear-gradient(135deg, #1a1612, #2a2118);
  position: relative;
  overflow: hidden;
}

.fallback-img::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(201,169,110,0.05) 50%, rgba(255,255,255,0) 100%);
  transform: rotate(30deg);
  animation: shimmer 3s infinite linear;
}

@keyframes shimmer {
  0% { transform: translateX(-100%) rotate(30deg); }
  100% { transform: translateX(100%) rotate(30deg); }
}

/* SCENE 1: HERO */
#scene-hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.hero-media-wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

#hero-canvas {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  filter: brightness(0.55) contrast(1.05) saturate(1.1);
  will-change: transform;
}

.hero-overlay-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,11,0.35) 0%, rgba(10,10,11,0.0) 35%, rgba(10,10,11,0.0) 55%, rgba(10,10,11,1.0) 100%);
  z-index: 1;
}

.hero-noise {
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml;utf8,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.8" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)"/%3E%3C/svg%3E');
  opacity: 0.035;
  mix-blend-mode: overlay;
  z-index: 2;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 60px;
}

.hero-eyebrow {
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.45em;
  color: var(--white-muted);
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-headline {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.line-wrap {
  overflow: hidden;
}

.hero-headline .line-1, .hero-headline .line-3 {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(60px, 10vw, 150px);
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1;
}

.hero-headline .line-2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(70px, 12vw, 180px);
  color: var(--white);
  letter-spacing: -0.04em;
  line-height: 1;
}

.hero-subtext {
  font-weight: 300;
  font-size: 17px;
  color: rgba(255, 255, 255, 0.65);
  max-width: 500px;
  line-height: 1.7;
  margin: 32px auto;
}

.hero-cta-row {
  display: flex;
  gap: 16px;
}

.btn-filled, .btn-ghost {
  padding: 18px 48px;
  border-radius: 2px;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.btn-filled {
  background: var(--white);
  color: var(--obsidian);
}

.btn-filled:hover {
  background: #f0f0f0;
  transform: scale(1.02);
}

.btn-ghost {
  border: 1px solid var(--white-dim);
  color: var(--white);
}

.btn-ghost:hover {
  border-color: var(--white);
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 10;
}

.scroll-indicator span {
  display: block;
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 0.4em;
  color: var(--white-muted);
  margin-bottom: 8px;
}

.scroll-indicator .arrow {
  font-size: 14px;
  color: var(--white);
  animation: bounce 1.5s infinite ease-in-out;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* SCENE 2: COLONY */
#scene-colony {
  height: 100vh;
  background: var(--obsidian);
  position: relative;
  overflow: hidden;
}

.colony-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5) saturate(1.15);
  will-change: transform;
}

.dark-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 30%, rgba(10,10,11,0.85) 100%), linear-gradient(to top, var(--obsidian), transparent 20%);
}

.colony-content {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: var(--gut);
}

.colony-eyebrow {
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.45em;
  color: var(--white-muted);
  text-transform: uppercase;
  margin-bottom: 24px;
}

.colony-headline {
  display: flex;
  flex-direction: column;
}

.colony-headline .line-italic {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(48px, 7vw, 100px);
  color: var(--white);
  line-height: 1;
}

.colony-headline .line-bold {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(56px, 9vw, 120px);
  color: var(--white);
  line-height: 1;
}

.colony-body {
  font-weight: 300;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  max-width: 420px;
  line-height: 1.8;
  margin-top: 28px;
}

.colony-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.pill {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 8px 20px;
  font-weight: 400;
  font-size: 12px;
  color: var(--white-dim);
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
}

.pill:hover {
  border-color: var(--white);
  color: var(--white);
}

.zoom-out-element {
  position: absolute;
  bottom: 40px;
  right: var(--gut);
  width: 200px;
  border: 1px solid var(--white);
  background: var(--glass);
  border-radius: 8px;
  padding: 20px 24px;
  z-index: 10;
  backdrop-filter: blur(10px);
}

.map-title {
  font-weight: 500;
  font-size: 10px;
  color: var(--white-muted);
  letter-spacing: 0.3em;
  margin-bottom: 16px;
  text-align: center;
}

.map-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.map-square {
  aspect-ratio: 1;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
}

.map-square.active {
  background: var(--gold);
  box-shadow: 0 0 10px rgba(201, 169, 110, 0.5);
}

/* SCENE 3: FACADE */
#scene-facade {
  height: 100vh;
  position: relative;
  overflow: hidden;
  background: var(--obsidian);
}

.facade-container {
  display: flex;
  width: 100%;
  height: 100%;
}

.facade-left {
  width: 50%;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 var(--gut);
  z-index: 10;
}

.facade-text-content {
  max-width: 500px;
}

.facade-eyebrow {
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.45em;
  color: var(--white-muted);
  text-transform: uppercase;
  margin-bottom: 24px;
}

.facade-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(64px, 10vw, 140px);
  color: var(--white);
  line-height: 1;
  margin-bottom: 16px;
}

.facade-sub {
  font-weight: 300;
  font-size: 18px;
  color: var(--white-dim);
  margin-bottom: 32px;
}

.facade-desc {
  font-weight: 300;
  font-size: 15px;
  color: var(--white-muted);
  line-height: 1.8;
  max-width: 380px;
  position: absolute;
}

.facade-desc.description-2 {
  opacity: 0;
  pointer-events: none;
  font-size: 16px;
  color: var(--white-dim);
  max-width: 400px;
}

.facade-gold-line {
  height: 1px;
  background: var(--gold);
  width: 0;
  margin: 32px 0;
  opacity: 0;
}

.facade-tags {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 180px; /* space for absolute desc */
}

.tag-box {
  border: 1px solid var(--white);
  padding: 16px 20px;
  border-radius: 2px;
}

.tag-num {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 32px;
  color: var(--white);
  margin-bottom: 4px;
}

.tag-label {
  font-weight: 300;
  font-size: 11px;
  color: var(--white-muted);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.facade-right {
  width: 50%;
  height: 100%;
  position: relative;
}

.facade-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.facade-img.img-2 {
  opacity: 0;
}

/* SCENE 4: INTERIOR */
#scene-interior {
  position: relative;
  background: var(--obsidian);
}

.interior-wrapper {
  display: flex;
  width: 100%;
}

.interior-sticky-text {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 42%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: var(--gut);
  z-index: 10;
}

.room-text {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.room-text.active {
  opacity: 1;
  pointer-events: auto;
}

.room-eyebrow {
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.45em;
  color: var(--white-muted);
  text-transform: uppercase;
  margin-bottom: 24px;
}

.room-headline {
  font-family: var(--font-display);
  font-weight: 600;
  font-style: italic;
  font-size: clamp(44px, 6vw, 80px);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
}

.room-body {
  font-weight: 300;
  font-size: 15px;
  color: var(--white-dim);
  line-height: 1.85;
  max-width: 360px;
}

.interior-photo-col {
  width: 58%;
  display: flex;
  flex-direction: column;
}

.room-block {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.room-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.room-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--obsidian) 0%, transparent 40%);
}

.room-tracker {
  position: fixed;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.room-tracker.visible {
  opacity: 1;
}

.tracker-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 80px;
  color: rgba(255, 255, 255, 0.06);
  line-height: 1;
  margin-bottom: 20px;
}

.tracker-line {
  width: 1px;
  height: 100px;
  background: rgba(255, 255, 255, 0.2);
  position: relative;
}

.tracker-fill {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.6);
  height: 0%;
}

/* SCENE 5: OUTDOOR */
#scene-outdoor {
  height: 120vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.outdoor-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55) saturate(1.2);
  z-index: 0;
}

.outdoor-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}

.outdoor-eyebrow {
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.45em;
  color: var(--white-muted);
  text-transform: uppercase;
  margin-bottom: 32px;
}

.outdoor-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  font-size: clamp(64px, 12vw, 160px);
  color: var(--white);
  line-height: 0.92;
}

.outdoor-subtext {
  font-weight: 300;
  font-size: 17px;
  color: rgba(255, 255, 255, 0.65);
  max-width: 520px;
  line-height: 1.7;
  margin: 28px auto 48px;
}

.outdoor-features {
  display: flex;
  gap: 48px;
  justify-content: center;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.feature-item svg {
  width: 16px;
  height: 16px;
  color: var(--white);
}

.feature-item span {
  font-weight: 400;
  font-size: 12px;
  color: var(--white-muted);
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.outdoor-gradient-bottom {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(transparent 0%, var(--obsidian) 100%);
  z-index: 1;
}

/* SCENE 6: GALLERY */
#scene-gallery {
  background: var(--obsidian);
  padding: 140px var(--gut);
  min-height: 100vh;
}

.gallery-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
}

.gallery-eyebrow {
  font-weight: 400;
  font-size: 11px;
  color: var(--white-muted);
  letter-spacing: 0.4em;
  margin-bottom: 12px;
}

.gallery-headline {
  font-family: var(--font-display);
  font-weight: 600;
  font-style: italic;
  font-size: clamp(36px, 5vw, 72px);
  color: var(--white);
}

.gallery-filters {
  display: flex;
  gap: 24px;
}

.filter-btn {
  font-weight: 400;
  font-size: 12px;
  color: var(--white-dim);
  letter-spacing: 0.15em;
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.filter-btn.active, .filter-btn:hover {
  color: var(--white);
  border-bottom-color: var(--white);
}

.gallery-grid {
  column-count: 3;
  column-gap: 16px;
}

@media (max-width: 900px) {
  .gallery-grid { column-count: 2; }
  .gallery-header { flex-direction: column; align-items: flex-start; gap: 32px; }
}

@media (max-width: 600px) {
  .gallery-grid { column-count: 1; }
}

.gallery-card {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: 3px;
  overflow: hidden;
  position: relative;
  cursor: none;
}

.gallery-card img {
  width: 100%;
  display: block;
  transition: transform 0.8s var(--ease-silk);
}

.gallery-card:hover img {
  transform: scale(1.06);
}

.gallery-hover {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 40%, rgba(10,10,11,0.85) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px 24px;
}

.gallery-card:hover .gallery-hover {
  opacity: 1;
}

.gallery-hover-text {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: 22px;
  color: var(--white);
  margin-bottom: 8px;
}

.gallery-hover-view {
  font-weight: 400;
  font-size: 12px;
  color: var(--white-muted);
}

/* SCENE 7: SPECS */
#scene-specs {
  background: var(--void);
  padding: 140px var(--gut);
}

.specs-header {
  text-align: center;
  margin-bottom: 80px;
}

.specs-eyebrow {
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.45em;
  color: var(--white-muted);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.specs-headline {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(36px, 5vw, 64px);
  color: var(--white);
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 1024px) {
  .specs-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .specs-grid { grid-template-columns: 1fr; }
}

.spec-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s var(--ease-silk);
}

.spec-card:hover {
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-6px);
}

.spec-card::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 50%; height: 100%;
  background: linear-gradient(to right, transparent, rgba(201, 169, 110, 0.05), transparent);
  transform: skewX(-15deg);
}

.spec-card:hover::before {
  animation: sweep 0.8s ease forwards;
}

@keyframes sweep {
  0% { left: -100%; }
  100% { left: 200%; }
}

.spec-icon {
  width: 28px;
  height: 28px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 24px;
}

.spec-category {
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.35em;
  color: var(--white-muted);
  text-transform: uppercase;
  margin-bottom: 32px;
}

.spec-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.spec-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.spec-name {
  font-weight: 300;
  font-size: 14px;
  color: var(--white-dim);
  white-space: nowrap;
}

.spec-dots {
  flex-grow: 1;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
  margin: 0 12px;
  position: relative;
  top: 4px;
}

.spec-val {
  font-weight: 500;
  font-size: 14px;
  color: var(--white);
  white-space: nowrap;
}

/* SCENE 8: QUOTE */
#scene-quote {
  height: 80vh;
  background: var(--obsidian);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.quote-wrapper {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  padding: 0 var(--gut);
  text-align: center;
}

.quote-mark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 300px;
  color: rgba(255, 255, 255, 0.04);
  position: absolute;
  top: -80px;
  left: -40px;
  line-height: 1;
  pointer-events: none;
}

.quote-text {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(28px, 4vw, 56px);
  color: var(--white);
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

.quote-text span {
  display: inline-block;
  opacity: 0.15;
  color: var(--white-muted);
  transition: all 0.4s;
}

.quote-attr {
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.3em;
  color: var(--white-muted);
  margin-top: 48px;
  opacity: 0;
}

/* SCENE 9: CONTACT */
#scene-contact {
  background: var(--obsidian);
  padding: 160px var(--gut) 120px;
}

.contact-grid {
  display: flex;
  gap: 80px;
}

@media (max-width: 900px) {
  .contact-grid { flex-direction: column; }
}

.contact-left, .contact-right {
  flex: 1;
}

.contact-eyebrow {
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.45em;
  color: var(--white-muted);
  text-transform: uppercase;
  margin-bottom: 24px;
}

.contact-headline {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(44px, 6vw, 88px);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
}

.contact-body {
  font-weight: 300;
  font-size: 15px;
  color: var(--white-dim);
  max-width: 400px;
  line-height: 1.8;
}

.contact-details {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.detail-val {
  font-weight: 400;
  font-size: 16px;
  color: var(--white);
}

.detail-val-dim {
  font-weight: 400;
  font-size: 14px;
  color: var(--white-dim);
}

.detail-val-muted {
  font-weight: 300;
  font-size: 13px;
  color: var(--white-muted);
}

.form-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--white-muted);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  padding: 14px 0;
  outline: none;
  transition: border-color 0.3s ease;
  appearance: none;
  border-radius: 0;
}

.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-bottom-color: var(--white);
}

.form-group input::placeholder, .form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.form-group textarea {
  resize: none;
}

.select-wrapper {
  position: relative;
}

.select-arrow {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  color: var(--white);
  pointer-events: none;
}

.form-group select option {
  background: var(--obsidian);
  color: var(--white);
}

.btn-submit {
  width: 100%;
  background: var(--white);
  color: var(--obsidian);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 18px;
  border-radius: 2px;
  margin-top: 16px;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  background: rgba(255, 255, 255, 0.88);
  transform: scale(1.01);
}

/* FOOTER */
#footer {
  background: #06060A;
  padding: 80px var(--gut) 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 80px;
}

@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .footer-top { grid-template-columns: 1fr; gap: 60px; }
}

.footer-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 32px;
  color: var(--white);
  letter-spacing: 0.1em;
  line-height: 1;
}

.footer-logo-sub {
  font-weight: 300;
  font-size: 10px;
  color: var(--white-muted);
  letter-spacing: 0.35em;
  margin-top: 4px;
}

.footer-tagline {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: 16px;
  color: var(--white-dim);
  margin-top: 16px;
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.social-icon {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-dim);
  transition: all 0.3s ease;
}

.social-icon svg {
  width: 16px;
  height: 16px;
}

.social-icon:hover {
  border-color: var(--white);
  color: var(--white);
}

.footer-col-title {
  font-weight: 500;
  font-size: 12px;
  color: var(--white-muted);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.footer-link {
  display: block;
  font-weight: 400;
  font-size: 14px;
  color: var(--white-dim);
  margin-bottom: 16px;
  transition: all 0.3s ease;
}

.footer-link:hover {
  transform: translateX(4px);
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 300;
  font-size: 12px;
  color: var(--white-muted);
}

@media (max-width: 600px) {
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}

.footer-legal a {
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: var(--white);
}

/* NAV DOTS */
.nav-dots {
  position: fixed;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.dot.active {
  background: var(--white);
  border-color: var(--white);
  transform: scale(1.4);
}

@media (max-width: 768px) {
  .nav-center, .nav-right { display: none; }
  .nav-mobile-menu { display: block; }
  .nav-dots { display: none; }
  
  .facade-container { flex-direction: column; }
  .facade-left, .facade-right { width: 100%; height: 50%; }
  .facade-tags { margin-top: 80px; }
  
  .interior-wrapper { flex-direction: column; }
  .interior-sticky-text, .interior-photo-col { width: 100%; }
  .interior-sticky-text { position: relative; height: auto; padding: 60px var(--gut); }
  .room-block { height: 60vh; }
  .room-text { position: relative; opacity: 1; pointer-events: auto; margin-bottom: 60px; }
  .room-tracker { display: none; }
  
  .hero-headline .line-1, .hero-headline .line-3 { font-size: 14vw; }
  .hero-headline .line-2 { font-size: 16vw; }
  
  .colony-content { padding-top: 100px; }
  .zoom-out-element { bottom: 20px; right: 20px; transform: scale(0.8); transform-origin: bottom right; }
}
