/* ============================================
   2338 Yadkin Avenue — Immersive FSBO Listing
   Parallax · 3D · Glassmorphism · Creative
   ============================================ */

:root {
  --cream: #FAF7F2;
  --warm-white: #FFFDF9;
  --sand: #F0EBE3;
  --taupe: #C4B5A4;
  --mocha: #8B7355;
  --espresso: #5C4A32;
  --charcoal: #2C2C2C;
  --midnight: #1A1A1A;
  --sage: #7A8B6F;
  --sage-light: #E8EDE5;
  --gold: #C9A96E;
  --gold-light: #F5EFE0;
  --white: #FFFFFF;
  --text: #3A3A3A;
  --text-light: #7A7A7A;
  --text-lighter: #ABABAB;
  --border: #E8E3DC;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'Space Grotesk', monospace;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--warm-white);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ========== CURSOR GLOW ========== */
.cursor-glow {
  position: fixed;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,169,110,0.07) 0%, transparent 70%);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
  opacity: 0;
}
body:hover .cursor-glow { opacity: 1; }

/* ========== TYPOGRAPHY ========== */
.section-eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--mocha);
  background: var(--gold-light);
  padding: 6px 18px; border-radius: 100px;
  margin-bottom: 20px;
}
.section-eyebrow-light {
  background: rgba(201,169,110,0.2);
  color: var(--gold);
}
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600; line-height: 1.15;
  color: var(--midnight);
  margin-bottom: 16px;
}
.section-heading em { font-style: italic; color: var(--espresso); }
.section-heading-white { color: var(--white); }
.section-heading-white em { color: var(--gold); }
.section-sub {
  font-size: 1.05rem; color: var(--text-light);
  max-width: 520px; margin: 0 auto;
}
.section-header-center { text-align: center; margin-bottom: 64px; }

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-body); font-size: 0.9rem; font-weight: 500;
  padding: 14px 32px; border-radius: 12px;
  border: none; cursor: pointer;
  transition: all 0.4s var(--ease);
  text-decoration: none; position: relative; overflow: hidden;
}
.btn-glow {
  background: var(--white); color: var(--midnight); font-weight: 600;
  box-shadow: 0 0 30px rgba(255,255,255,0.2);
}
.btn-glow:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(255,255,255,0.3);
}
.btn-ghost {
  background: rgba(255,255,255,0.08); color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-2px);
}
.btn-dark {
  background: var(--charcoal); color: var(--white);
}
.btn-dark:hover {
  background: var(--midnight);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}
.btn-outline-dark {
  background: transparent; color: var(--charcoal);
  border: 1.5px solid var(--taupe);
}
.btn-outline-dark:hover {
  background: var(--charcoal); color: var(--white);
  border-color: var(--charcoal);
}
.btn-block { width: 100%; margin-top: 12px; }
.btn svg { transition: transform 0.3s var(--ease); }
.btn:hover svg { transform: translateX(4px); }

/* ========== NAVBAR ========== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s var(--ease);
}
.navbar.scrolled {
  background: rgba(255,253,249,0.85);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 1px 30px rgba(0,0,0,0.06);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-size: 1.15rem; font-weight: 600;
  color: var(--white);
  transition: color 0.4s;
}
.navbar.scrolled .nav-logo { color: var(--midnight); }
.nav-logo-icon { font-size: 1.3rem; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-link {
  font-size: 0.82rem; font-weight: 400;
  color: rgba(255,255,255,0.75);
  transition: all 0.3s; position: relative;
}
.nav-link::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1.5px; background: var(--gold);
  transition: width 0.3s var(--ease);
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.navbar.scrolled .nav-link { color: var(--text-light); }
.nav-link:hover { color: var(--white); }
.navbar.scrolled .nav-link:hover { color: var(--midnight); }
.nav-cta {
  background: rgba(255,255,255,0.12) !important;
  padding: 8px 20px !important; border-radius: 8px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
}
.nav-cta::after { display: none; }
.navbar.scrolled .nav-cta {
  background: var(--charcoal) !important;
  color: var(--white) !important;
  border-color: var(--charcoal);
}
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); transition: all 0.3s;
}
.navbar.scrolled .nav-hamburger span { background: var(--midnight); }

/* Mobile Overlay */
.mobile-overlay {
  position: fixed; inset: 0; background: var(--midnight); z-index: 999;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s;
}
.mobile-overlay.active { opacity: 1; pointer-events: all; }
.mobile-menu-inner { display: flex; flex-direction: column; align-items: center; gap: 24px; }
.mobile-link {
  font-family: var(--font-display); font-size: 2rem;
  color: var(--white); opacity: 0.7;
  transition: opacity 0.3s;
}
.mobile-link:hover { opacity: 1; }

/* ========== HERO ========== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; background: #1a2332;
}
.hero-canvas-wrap {
  position: absolute; inset: 0; z-index: 1;
}
.hero-gradient-overlay {
  position: absolute; inset: 0; z-index: 2;
  background:
    linear-gradient(135deg, rgba(26,35,50,0.95) 0%, rgba(44,62,80,0.85) 30%, rgba(74,103,65,0.7) 60%, rgba(92,74,50,0.85) 100%);
  background-size: 300% 300%;
  animation: heroGradient 20s ease infinite;
}
@keyframes heroGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.hero-particles {
  position: absolute; inset: 0; z-index: 3;
  pointer-events: none;
}
.hero-particles .particle {
  position: absolute;
  width: 3px; height: 3px;
  background: rgba(201,169,110,0.4);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  50% { transform: translateY(-120px) scale(1.5); }
}
.hero-content {
  position: relative; z-index: 5;
  text-align: center; padding: 0 24px; max-width: 900px;
}
.hero-tag-row {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
  margin-bottom: 32px;
  animation: fadeDown 0.8s var(--ease) both;
}
.hero-pill {
  font-family: var(--font-mono);
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  padding: 8px 20px; border-radius: 100px;
}
.pill-gold { background: var(--gold); color: var(--white); }
.pill-glass {
  background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
}
.hero-headline {
  color: var(--white); margin-bottom: 16px;
  animation: fadeUp 0.8s var(--ease) 0.1s both;
}
.hero-line-small {
  display: block;
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  font-weight: 300; letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.7; margin-bottom: 8px;
}
.hero-line-big {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700; font-style: italic;
  line-height: 1.05; letter-spacing: -0.02em;
  background: linear-gradient(135deg, #fff 0%, #C9A96E 50%, #fff 100%);
  background-size: 200% auto;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 4s ease infinite;
}
@keyframes shimmer {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}
.hero-location {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 0.95rem; color: rgba(255,255,255,0.6);
  margin-bottom: 40px;
  animation: fadeUp 0.8s var(--ease) 0.2s both;
}

/* Hero Glass Cards */
.hero-stats-row {
  display: flex; justify-content: center; gap: 16px;
  margin-bottom: 40px;
  animation: fadeUp 0.8s var(--ease) 0.3s both;
}
.hero-glass-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px; padding: 20px 28px;
  text-align: center;
  transition: all 0.4s var(--ease);
  cursor: default;
}
.hero-glass-card:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(201,169,110,0.3);
  transform: translateY(-4px) scale(1.02);
}
.hgc-value {
  display: block; font-family: var(--font-display);
  font-size: 1.8rem; font-weight: 700; color: var(--white);
  line-height: 1.2;
}
.hgc-label {
  display: block; font-size: 0.7rem; font-weight: 500;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-top: 4px;
}

.hero-cta-row {
  display: flex; justify-content: center; gap: 16px;
  animation: fadeUp 0.8s var(--ease) 0.4s both;
}

/* Hero Scroll Indicator */
.hero-scroll-indicator {
  position: absolute; bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  color: rgba(255,255,255,0.4);
  font-family: var(--font-mono);
  font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
  animation: fadeScroll 0.8s var(--ease) 0.8s both;
  z-index: 5;
}
@keyframes fadeScroll {
  from { opacity: 0; transform: translateX(-50%) translateY(20px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.3; transform: scaleY(0.5); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ========== MARQUEE ========== */
.marquee-strip {
  background: var(--charcoal); padding: 14px 0;
  overflow: hidden; white-space: nowrap;
}
.marquee-content {
  display: inline-flex; align-items: center; gap: 0;
  animation: marquee 30s linear infinite;
}
.marquee-item {
  font-family: var(--font-mono);
  font-size: 0.75rem; font-weight: 500;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0 20px;
}
.marquee-dot {
  color: var(--gold); font-size: 0.5rem; opacity: 0.5;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-33.333%); }
}

/* ========== STORY / INTRO ========== */
.story-section {
  padding: 140px 0; background: var(--warm-white);
  position: relative;
}
.story-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.story-image-stack {
  position: relative; height: 550px;
}
.story-img-main {
  position: absolute; top: 0; left: 0;
  width: 85%; height: 80%;
  border-radius: 24px; overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}
.story-img-float {
  position: absolute; bottom: 0; right: 0;
  width: 55%; height: 45%;
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 15px 50px rgba(0,0,0,0.12);
  border: 4px solid var(--warm-white);
  z-index: 2;
}
.story-accent-circle {
  position: absolute; top: -30px; right: 60px;
  width: 120px; height: 120px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: var(--gold-light);
  opacity: 0.6;
  z-index: -1;
}

/* Creative placeholders */
.img-placeholder-creative {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--sand) 0%, var(--gold-light) 50%, var(--sage-light) 100%);
  position: relative;
}
.ipc-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
  opacity: 0.25; margin-bottom: 16px;
}
.ipc-cell {
  width: 40px; height: 40px;
  border: 2px solid var(--mocha); border-radius: 8px;
}
.ipc-label {
  font-family: var(--font-display); font-size: 1.1rem;
  font-style: italic; color: var(--taupe);
}
.img-placeholder-mini {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; color: var(--taupe);
  background: linear-gradient(135deg, var(--gold-light), var(--sand));
}
.img-placeholder-mini span {
  font-family: var(--font-display); font-size: 0.9rem; font-style: italic;
}

.story-description {
  font-size: 1.05rem; color: var(--text-light);
  line-height: 1.85; margin-bottom: 40px;
}
.story-highlights {
  display: flex; flex-direction: column; gap: 16px;
}
.story-highlight-card {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 16px; border-radius: 14px;
  background: var(--white);
  border: 1px solid var(--border);
  transition: all 0.4s var(--ease);
}
.story-highlight-card:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
  border-color: var(--gold);
}
.shc-icon {
  flex-shrink: 0; width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: var(--gold-light); border-radius: 12px;
  color: var(--mocha);
}
.shc-text strong {
  display: block; font-size: 0.92rem; font-weight: 600;
  color: var(--midnight); margin-bottom: 2px;
}
.shc-text span {
  font-size: 0.82rem; color: var(--text-light);
}

/* ========== SPECS — DARK SECTION ========== */
.specs-section {
  position: relative; padding: 140px 0;
  background: var(--midnight); color: var(--white);
  overflow: hidden;
}
.specs-parallax-bg {
  position: absolute; inset: -50px;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(201,169,110,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(122,139,111,0.06) 0%, transparent 50%);
  pointer-events: none;
}
.specs-orbit {
  position: relative;
}
.specs-center-card {
  text-align: center; margin-bottom: 64px;
  padding: 40px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  backdrop-filter: blur(20px);
}
.scc-price {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700; color: var(--gold);
  line-height: 1;
}
.scc-address {
  font-size: 1.1rem; color: rgba(255,255,255,0.7);
  margin-top: 8px;
}
.scc-type {
  font-family: var(--font-mono);
  font-size: 0.75rem; font-weight: 500;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.15em; text-transform: uppercase;
  margin-top: 8px;
}
.specs-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.spec-group {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px; padding: 28px;
  transition: all 0.4s var(--ease);
}
.spec-group:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(201,169,110,0.3);
  transform: translateY(-6px);
}
.spec-group-title {
  font-family: var(--font-mono);
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.spec-items { display: flex; flex-direction: column; gap: 12px; }
.spec-item {
  display: flex; justify-content: space-between; align-items: center;
}
.spec-label { font-size: 0.82rem; color: rgba(255,255,255,0.5); }
.spec-value { font-size: 0.88rem; font-weight: 600; color: var(--white); }

/* ========== FEATURES ========== */
.features-section {
  padding: 120px 0; background: var(--cream);
}
.features-mosaic {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 12px;
  margin-bottom: 60px;
}
.feature-chip {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 22px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.88rem; color: var(--text);
  transition: all 0.3s var(--ease);
  cursor: default;
}
.feature-chip svg { color: var(--sage); flex-shrink: 0; }
.feature-chip:hover {
  background: var(--gold-light);
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(201,169,110,0.15);
}
.appliances-row {
  text-align: center; padding-top: 40px;
  border-top: 1px solid var(--border);
}
.appliances-title {
  font-family: var(--font-display); font-size: 1.2rem;
  font-weight: 600; color: var(--midnight);
  margin-bottom: 20px;
}
.appliance-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.appliance-tag {
  font-family: var(--font-mono); font-size: 0.75rem; font-weight: 500;
  color: var(--mocha); background: var(--white);
  padding: 8px 18px; border-radius: 8px;
  border: 1px solid var(--border);
  letter-spacing: 0.03em;
}

/* ========== GALLERY ========== */
.gallery-section {
  padding: 120px 0; background: var(--warm-white);
}
.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 16px;
}
.gc-1 { grid-column: span 2; grid-row: span 2; }
.gc-2 { grid-column: span 2; }
.gc-3 { grid-column: span 1; }
.gc-4 { grid-column: span 1; }
.gc-5 { grid-column: span 2; }
.gc-6 { grid-column: span 1; }
.gc-7 { grid-column: span 1; }
.gc-8 { grid-column: span 2; }

.gallery-card {
  cursor: pointer; border-radius: 16px; overflow: hidden;
  transition: transform 0.5s var(--ease);
}
.gallery-card:hover { transform: scale(1.03); }
.gallery-card-inner {
  width: 100%; height: 100%; position: relative;
}
.gc-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; color: var(--taupe);
  background: linear-gradient(135deg, var(--sand) 0%, var(--gold-light) 50%, var(--sage-light) 100%);
  transition: all 0.5s;
}
.gc-placeholder span {
  font-family: var(--font-display); font-size: 0.9rem; font-style: italic;
}
.gallery-card:hover .gc-placeholder { transform: scale(1.05); }
.gc-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 20px; opacity: 0;
  transition: opacity 0.4s;
}
.gallery-card:hover .gc-overlay { opacity: 1; }
.gc-caption {
  font-family: var(--font-display); font-size: 1rem;
  color: var(--white); font-weight: 500;
}
.gc-category {
  font-family: var(--font-mono);
  font-size: 0.65rem; color: rgba(255,255,255,0.5);
  text-transform: uppercase; letter-spacing: 0.1em; margin-top: 4px;
}

/* ========== NEIGHBORHOOD ========== */
.neighborhood-section {
  padding: 120px 0; background: var(--cream);
}
.neighborhood-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.neighborhood-desc {
  font-size: 1rem; color: var(--text-light);
  line-height: 1.8; margin-bottom: 32px;
}
.nearby-cards {
  display: flex; flex-direction: column; gap: 12px;
}
.nearby-card {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 20px; background: var(--white);
  border-radius: 14px; border: 1px solid var(--border);
  transition: all 0.3s var(--ease);
}
.nearby-card:hover {
  transform: translateX(8px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  border-color: var(--gold);
}
.nc-icon { font-size: 1.6rem; }
.nc-info strong {
  display: block; font-size: 0.92rem; color: var(--midnight);
}
.nc-info span {
  font-size: 0.8rem; color: var(--text-light);
}
.map-embed {
  border-radius: 20px; overflow: hidden;
  height: 420px; box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  background: var(--sand);
}
.map-embed iframe { width: 100%; height: 100%; }

/* ========== OPEN HOUSES — TIMELINE ========== */
.openhouse-section {
  padding: 120px 0; background: var(--warm-white);
}
.oh-timeline {
  position: relative; max-width: 800px; margin: 0 auto;
}
.oh-timeline-line {
  position: absolute; left: 50%; top: 0; bottom: 0;
  width: 2px; background: var(--border);
  transform: translateX(-50%);
}
.oh-timeline-item {
  position: relative; display: flex;
  margin-bottom: 40px;
  padding: 0 50%;
}
.oh-left { padding-right: 50%; padding-left: 0; justify-content: flex-end; }
.oh-right { padding-left: 50%; padding-right: 0; justify-content: flex-start; }
.oh-left .oh-card-3d { margin-right: 40px; }
.oh-right .oh-card-3d { margin-left: 40px; }

.oh-timeline-dot {
  position: absolute; left: 50%; top: 24px;
  width: 14px; height: 14px;
  background: var(--gold); border-radius: 50%;
  border: 3px solid var(--warm-white);
  transform: translateX(-50%);
  z-index: 2;
}
.oh-card-3d {
  perspective: 800px;
}
.oh-card-face {
  background: var(--white); border-radius: 20px;
  padding: 28px 32px;
  border: 1px solid var(--border);
  transition: all 0.5s var(--ease);
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}
.oh-card-face:hover {
  transform: rotateY(-5deg) translateY(-4px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  border-color: var(--gold);
}
.oh-number {
  font-family: var(--font-display);
  font-size: 2.5rem; font-weight: 700;
  color: var(--gold-light); line-height: 1;
  margin-bottom: 8px;
}
.oh-date {
  font-family: var(--font-display);
  font-size: 1.15rem; font-weight: 600;
  color: var(--midnight);
}
.oh-time {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.88rem; color: var(--text-light); margin-top: 6px;
}
.oh-type {
  display: inline-block; font-family: var(--font-mono);
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--sage); background: var(--sage-light);
  padding: 4px 12px; border-radius: 100px;
  margin-top: 12px;
}
.oh-note {
  font-size: 0.8rem; color: var(--mocha);
  font-style: italic; margin-top: 8px;
}

/* ========== SCHEDULE ========== */
.schedule-section {
  position: relative; padding: 140px 0;
  overflow: hidden;
}
.schedule-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--espresso) 0%, #1a2332 50%, var(--charcoal) 100%);
}
.schedule-split {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.schedule-desc {
  font-size: 1.05rem; color: rgba(255,255,255,0.6);
  line-height: 1.8; margin-bottom: 32px;
}
.schedule-perks {
  display: flex; flex-direction: column; gap: 16px;
}
.schedule-perk {
  display: flex; align-items: center; gap: 12px;
  color: rgba(255,255,255,0.75); font-size: 0.92rem;
}
.schedule-perk svg { color: var(--gold); flex-shrink: 0; }
.cal-card {
  background: var(--white); border-radius: 24px;
  overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.cal-placeholder-nice {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 16px;
  min-height: 420px; padding: 40px;
  text-align: center; color: var(--text-light);
}
.cal-placeholder-nice svg { color: var(--taupe); }
.cal-placeholder-nice h3 {
  font-family: var(--font-display); font-size: 1.5rem;
  font-weight: 600; color: var(--midnight);
}
.cal-placeholder-nice p {
  font-size: 0.92rem; color: var(--text-light);
  max-width: 280px;
}

/* ========== DETAILS DEEP DIVE ========== */
.details-deep {
  padding: 120px 0; background: var(--cream);
}
.details-layout {
  display: grid; grid-template-columns: 1fr 380px;
  gap: 48px; align-items: start;
}
.detail-block {
  margin-bottom: 32px;
}
.detail-block h3 {
  font-family: var(--font-display); font-size: 1.4rem;
  font-weight: 600; color: var(--midnight); margin-bottom: 16px;
}
.detail-block p {
  font-size: 0.95rem; color: var(--text-light);
  line-height: 1.85; margin-bottom: 16px;
}

/* Price Card */
.price-card {
  position: sticky; top: 100px;
  background: var(--white); border-radius: 24px;
  padding: 32px; box-shadow: 0 10px 50px rgba(0,0,0,0.08);
  border: 1px solid var(--border);
}
.pc-tag {
  font-family: var(--font-mono);
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--mocha); margin-bottom: 8px;
}
.pc-price {
  font-family: var(--font-display);
  font-size: 2.4rem; font-weight: 700;
  color: var(--midnight);
}
.pc-ppsf {
  font-size: 0.85rem; color: var(--text-light); margin-top: 4px;
}
.pc-divider {
  height: 1px; background: var(--border);
  margin: 20px 0;
}
.pc-stats {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px;
  text-align: center;
}
.pc-stat strong {
  display: block; font-size: 1.3rem; font-weight: 700;
  color: var(--midnight);
}
.pc-stat span {
  font-size: 0.72rem; color: var(--text-light);
  text-transform: uppercase; letter-spacing: 0.05em;
}
.pc-info-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 0; font-size: 0.85rem;
}
.pc-info-row span { color: var(--text-light); }
.pc-info-row strong { color: var(--text); font-weight: 600; }
.pc-agent-note {
  margin: 16px 0; padding: 12px 16px;
  background: var(--sage-light); border-radius: 12px;
}
.pc-agent-note strong {
  display: block; font-size: 0.82rem; color: var(--sage);
}
.pc-agent-note span {
  font-size: 0.78rem; color: var(--text-light);
}

/* ========== CONTACT ========== */
.contact-section {
  padding: 120px 0; background: var(--warm-white);
}
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}
.contact-desc {
  font-size: 1rem; color: var(--text-light);
  line-height: 1.8; margin-bottom: 32px;
}
.contact-methods { margin-top: 24px; }
.contact-method {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.92rem; color: var(--text);
  padding: 12px 0;
}
.contact-method svg { color: var(--mocha); }

/* Form */
.inquiry-form {
  background: var(--white); padding: 36px;
  border-radius: 24px; box-shadow: 0 10px 50px rgba(0,0,0,0.06);
  border: 1px solid var(--border);
}
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { margin-bottom: 20px; }
.form-field label {
  display: block; font-size: 0.78rem; font-weight: 600;
  color: var(--text); margin-bottom: 6px; letter-spacing: 0.02em;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%; padding: 12px 16px;
  font-family: var(--font-body); font-size: 0.9rem;
  color: var(--text); background: var(--cream);
  border: 1.5px solid transparent; border-radius: 12px;
  transition: all 0.3s; outline: none;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--mocha); background: var(--white);
  box-shadow: 0 0 0 4px rgba(139,115,85,0.08);
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--text-lighter); }
.form-field textarea { resize: vertical; min-height: 80px; }

/* ========== DISCLAIMER ========== */
.disclaimer-bar {
  padding: 28px 0; background: var(--sand);
  border-top: 1px solid var(--border);
}
.disclaimer-bar p {
  font-size: 0.75rem; color: var(--text-light);
  text-align: center; line-height: 1.8;
  max-width: 800px; margin: 0 auto;
}

/* ========== FOOTER ========== */
.footer {
  background: var(--midnight); color: var(--white);
  padding: 60px 0 32px;
}
.footer-grid {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 32px; border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 32px;
}
.footer-logo {
  font-family: var(--font-display); font-size: 1.15rem; font-weight: 600;
}
.footer-address {
  font-size: 0.82rem; color: rgba(255,255,255,0.4); margin-top: 8px;
}
.footer-nav { display: flex; gap: 24px; }
.footer-nav a {
  font-size: 0.82rem; color: rgba(255,255,255,0.4);
  transition: color 0.3s;
}
.footer-nav a:hover { color: var(--white); }
.footer-bottom { text-align: center; }
.footer-bottom p { font-size: 0.75rem; color: rgba(255,255,255,0.25); }

/* ========== TOAST ========== */
.toast {
  position: fixed; bottom: 32px; right: 32px; z-index: 4000;
  display: flex; align-items: center; gap: 12px;
  background: var(--charcoal); color: var(--white);
  padding: 16px 28px; border-radius: 14px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  font-size: 0.9rem;
  transform: translateY(calc(100% + 80px));
  opacity: 0; visibility: hidden;
  transition: all 0.5s var(--ease-spring);
}
.toast.active {
  transform: translateY(0); opacity: 1; visibility: visible;
}
.toast svg { color: var(--sage); flex-shrink: 0; }

/* ========== LIGHTBOX ========== */
.lightbox {
  position: fixed; inset: 0; z-index: 3000;
  background: rgba(0,0,0,0.95);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s;
}
.lightbox.active { opacity: 1; pointer-events: all; }
.lb-close {
  position: absolute; top: 24px; right: 24px;
  background: none; border: none; color: var(--white);
  font-size: 1.5rem; cursor: pointer; opacity: 0.6; z-index: 10;
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.08);
  transition: all 0.3s;
}
.lb-close:hover { opacity: 1; background: rgba(255,255,255,0.15); }
.lb-prev, .lb-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.08); border: none;
  color: var(--white); font-size: 2rem;
  width: 52px; height: 52px; border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s; z-index: 10;
}
.lb-prev { left: 24px; }
.lb-next { right: 24px; }
.lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,0.2); }
.lb-placeholder {
  width: 70vw; height: 60vh; max-width: 900px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 16px;
  background: linear-gradient(135deg, #222 0%, #333 100%);
  border-radius: 16px; color: rgba(255,255,255,0.3);
}
.lb-placeholder span {
  font-family: var(--font-display); font-size: 1.3rem;
  font-style: italic; color: rgba(255,255,255,0.5);
}
.lb-counter {
  position: absolute; bottom: 24px; left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.4); font-size: 0.85rem;
  font-family: var(--font-mono);
}

/* ========== SCROLL ANIMATIONS ========== */
.js-reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.js-reveal.visible {
  opacity: 1; transform: translateY(0);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .story-grid { grid-template-columns: 1fr; gap: 48px; }
  .story-visual { order: -1; max-width: 500px; margin: 0 auto; }
  .story-image-stack { height: 400px; }
  .specs-grid { grid-template-columns: 1fr 1fr; }
  .details-layout { grid-template-columns: 1fr; }
  .price-card { position: static; max-width: 500px; margin: 0 auto; }
  .schedule-split { grid-template-columns: 1fr; gap: 48px; }
  .neighborhood-split { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .gallery-masonry { grid-template-columns: repeat(2, 1fr); }
  .gc-1 { grid-column: span 2; }
  .gc-2, .gc-5, .gc-8 { grid-column: span 1; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .hero-stats-row { flex-wrap: wrap; gap: 10px; }
  .hero-glass-card { padding: 14px 18px; }
  .hgc-value { font-size: 1.4rem; }
  .hero-cta-row { flex-direction: column; width: 100%; max-width: 320px; margin: 0 auto; }
  .hero-cta-row .btn { width: 100%; }
  .hero-line-big { font-size: 2.8rem !important; }
  .specs-grid { grid-template-columns: 1fr; }
  .gallery-masonry {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 180px;
  }
  .gc-1 { grid-column: span 2; grid-row: span 1; }
  .oh-timeline-line { display: none; }
  .oh-timeline-item { padding: 0 !important; justify-content: center !important; }
  .oh-left .oh-card-3d, .oh-right .oh-card-3d { margin: 0; }
  .oh-timeline-dot { display: none; }
  .form-row-2 { grid-template-columns: 1fr; }
  .footer-grid { flex-direction: column; text-align: center; gap: 24px; }
  .footer-nav { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 480px) {
  .hero-stats-row { gap: 8px; }
  .hero-glass-card { padding: 12px 14px; min-width: 0; }
  .hgc-value { font-size: 1.2rem; }
  .hgc-label { font-size: 0.6rem; }
  .section-heading { font-size: 1.8rem; }
  .hero-tag-row { flex-direction: column; }
  .gallery-masonry { grid-template-columns: 1fr; }
  .gc-1 { grid-column: span 1; }
}

/* Smooth scroll anchors */
section[id] { scroll-margin-top: 80px; }
::selection { background: var(--gold-light); color: var(--espresso); }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--taupe); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--mocha); }
