/* ─────────────────────────────────────────
   2801 DAVIE LLC — LUXURY REAL ESTATE CSS
   ───────────────────────────────────────── */

:root {
  --gold:       #c9a84c;
  --gold-light: #e6c97a;
  --gold-dim:   #8a6a2a;
  --bg:         #0a0a0f;
  --bg2:        #0f0f18;
  --bg3:        #13131e;
  --surface:    #1a1a28;
  --surface2:   #22223a;
  --text:       #e8e4d8;
  --text-dim:   #a09888;
  --text-muted: #6a6058;
  --white:      #ffffff;
  --nav-h:      80px;
  --radius:     12px;
  --radius-lg:  20px;
  --trans:      0.4s cubic-bezier(0.25,0.46,0.45,0.94);
}

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

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  line-height: 1.7;
}

img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── TYPOGRAPHY ── */
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-dim);
  max-width: 580px;
  margin: 0 auto 3rem;
}
.body-text {
  color: var(--text-dim);
  font-size: 1rem;
  margin-bottom: 1.2rem;
  line-height: 1.8;
}
.body-text strong { color: var(--text); font-weight: 500; }
.center { text-align: center; }

/* ── LAYOUT ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 7rem 0; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all var(--trans);
  cursor: pointer;
}
.btn-primary {
  background: var(--gold);
  color: #0a0a0f;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,168,76,0.35);
}
.btn-ghost {
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold);
}
.btn-ghost:hover {
  border-color: var(--gold);
  background: rgba(201,168,76,0.08);
  transform: translateY(-2px);
}
.btn-full { width: 100%; justify-content: center; }

/* ════════════════════════════════
   NAV
   ════════════════════════════════ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background var(--trans), backdrop-filter var(--trans), box-shadow var(--trans);
}
#site-header.scrolled {
  background: rgba(10,10,15,0.92);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(201,168,76,0.15);
}
.nav-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
}
.logo-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: -0.02em;
}
.logo-text {
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color var(--trans);
}
.nav-links a:hover { color: var(--gold); }
.nav-links .nav-cta {
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.4);
  padding: 0.5rem 1.2rem;
  border-radius: 3px;
}
.nav-links .nav-cta:hover { background: rgba(201,168,76,0.1); }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 1.5px; background: var(--text-dim); transition: var(--trans); }

/* ════════════════════════════════
   HERO
   ════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: heroZoom 12s ease-out forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,10,15,0.35) 0%,
    rgba(10,10,15,0.15) 40%,
    rgba(10,10,15,0.75) 80%,
    rgba(10,10,15,1) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 2rem;
  animation: heroFadeUp 1.2s ease 0.3s both;
}
@keyframes heroFadeUp { from { opacity:0; transform: translateY(30px); } to { opacity:1; transform: translateY(0); } }
.hero-eyebrow {
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(5rem, 14vw, 11rem);
  font-weight: 300;
  line-height: 0.9;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.hero-title em { font-style: italic; color: var(--gold); display: block; }
.hero-sub {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: rgba(232,228,216,0.7);
  margin-bottom: 2.5rem;
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
  opacity: 0.5;
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(6px)} }
.scroll-line { display:block; width:1px; height:40px; background: linear-gradient(to bottom, transparent, var(--gold)); }
.scroll-label { font-family:'Outfit',sans-serif; font-size:0.6rem; letter-spacing:0.25em; text-transform:uppercase; color:var(--gold); }
.hero-badge {
  position: absolute;
  top: calc(var(--nav-h) + 1.5rem);
  right: 2rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 50px;
  background: rgba(10,10,15,0.5);
  backdrop-filter: blur(10px);
  font-family: 'Outfit', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}
.badge-status {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #4caf50;
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.3} }

/* ════════════════════════════════
   STATS BAR
   ════════════════════════════════ */
.stats-bar {
  background: var(--surface);
  border-top: 1px solid rgba(201,168,76,0.15);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  padding: 2.5rem 0;
}
.stats-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}
.stat-item { text-align: center; flex: 1; min-width: 120px; }
.stat-num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.4rem;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(201,168,76,0.2);
  flex-shrink: 0;
}

/* ════════════════════════════════
   PROJECT SECTION
   ════════════════════════════════ */
.project-section { background: var(--bg2); }
.project-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 2rem;
}
.tag {
  padding: 0.4rem 1rem;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--gold);
}
.visual-card {
  background: var(--surface);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}
.visual-card::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.vc-stat { text-align: center; margin-bottom: 2rem; }
.vc-big {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.vc-small {
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.vc-divider { height: 1px; background: rgba(201,168,76,0.15); margin-bottom: 1.5rem; }
.vc-detail { display: flex; flex-direction: column; gap: 0.8rem; }
.vc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
}
.vc-row span { color: var(--text-muted); }
.vc-row strong { color: var(--text); font-weight: 500; }
.status-live { color: #4caf50 !important; }

/* ════════════════════════════════
   VIDEO / PROGRESS
   ════════════════════════════════ */
.progress-section { background: var(--bg); }
.video-showcase { display: flex; flex-direction: column; gap: 1.5rem; }
.video-player-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(201,168,76,0.1);
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}
.main-video {
  width: 100%;
  aspect-ratio: 16/9;
  display: block;
  background: #000;
}
.video-info-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  background: var(--surface);
  border-top: 1px solid rgba(201,168,76,0.1);
}
.video-date {
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}
.video-title-label {
  font-size: 0.88rem;
  color: var(--text-dim);
}
.video-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.thumb-btn {
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  transition: all var(--trans);
  text-align: left;
}
.thumb-btn:hover { border-color: rgba(201,168,76,0.4); transform: translateY(-3px); }
.thumb-btn.active {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold-dim), 0 8px 25px rgba(201,168,76,0.15);
}
.thumb-video-wrap {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #000;
}
.thumb-video { width: 100%; height: 100%; object-fit: cover; }
.thumb-overlay {
  position: absolute; inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.25);
  transition: background var(--trans);
}
.thumb-btn:hover .thumb-overlay { background: rgba(0,0,0,0.1); }
.play-icon { width: 44px; height: 44px; }
.thumb-meta { padding: 0.7rem 0.8rem; }
.thumb-date {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.2rem;
}
.thumb-name {
  display: block;
  font-size: 0.82rem;
  color: var(--text-dim);
}

/* ════════════════════════════════
   DETAILS GRID
   ════════════════════════════════ */
.details-section { background: var(--bg2); }
.details-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}
.detail-card {
  background: var(--surface);
  border: 1px solid rgba(201,168,76,0.08);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--trans);
  position: relative;
  overflow: hidden;
}
.detail-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--trans);
}
.detail-card:hover { border-color: rgba(201,168,76,0.25); transform: translateY(-4px); box-shadow: 0 20px 50px rgba(0,0,0,0.4); }
.detail-card:hover::after { opacity: 1; }
.detail-icon {
  width: 48px; height: 48px;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.detail-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.8rem;
}
.detail-card p { font-size: 0.9rem; color: var(--text-dim); line-height: 1.7; }

/* ════════════════════════════════
   LOCATION
   ════════════════════════════════ */
.location-section { background: var(--bg3); }
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.location-details { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.5rem; }
.loc-row {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.loc-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 0.1rem; }
.loc-row strong { display: block; color: var(--text); font-size: 0.88rem; font-weight: 500; margin-bottom: 0.2rem; }
.loc-row p { color: var(--text-dim); font-size: 0.88rem; line-height: 1.5; }
.location-map {
  height: 450px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(201,168,76,0.15);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  filter: grayscale(0.3) brightness(0.85);
}

/* ════════════════════════════════
   CONTACT
   ════════════════════════════════ */
.contact-section { background: var(--bg); }
.contact-form {
  max-width: 680px;
  margin: 0 auto;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1rem; }
.form-group.full { grid-column: 1/-1; }
.form-group label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.form-group input,
.form-group textarea {
  background: var(--surface);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 6px;
  padding: 0.85rem 1rem;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  transition: border-color var(--trans), box-shadow var(--trans);
  outline: none;
  width: 100%;
  resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}
.form-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 1rem;
}
.form-success {
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
  padding: 3rem;
  background: var(--surface);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-lg);
}
.success-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: rgba(76,175,80,0.1);
  border: 1px solid #4caf50;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
  color: #4caf50;
}
.form-success h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 0.8rem;
}
.form-success p { color: var(--text-dim); font-size: 0.95rem; }

/* ════════════════════════════════
   FOOTER
   ════════════════════════════════ */
.footer { background: var(--bg2); border-top: 1px solid rgba(201,168,76,0.1); padding: 4rem 0 2rem; }
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.footer-tagline { font-size: 0.85rem; color: var(--text-muted); margin-top: 0.6rem; }
.footer-links { display: flex; gap: 4rem; }
.footer-col h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col a { font-size: 0.88rem; color: var(--text-muted); transition: color var(--trans); }
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 2rem 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  align-items: center;
  text-align: center;
}
.footer-bottom p { font-size: 0.8rem; color: var(--text-muted); }
.footer-bottom a { color: var(--gold); }
.footer-disclaimer { font-size: 0.72rem !important; color: var(--text-muted); opacity: 0.6; }

/* ════════════════════════════════
   RESPONSIVE
   ════════════════════════════════ */
@media (max-width: 1024px) {
  .project-grid, .location-grid { grid-template-columns: 1fr; gap: 3rem; }
  .details-grid { grid-template-columns: 1fr 1fr; }
  .location-map { height: 350px; }
}
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: var(--nav-h); left:0; right:0; background: rgba(10,10,15,0.97); padding: 2rem; gap: 1.5rem; border-bottom: 1px solid rgba(201,168,76,0.1); }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .details-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .stats-inner { justify-content: center; }
  .stat-divider { display: none; }
  .hero-title { font-size: clamp(3.5rem, 16vw, 6rem); }
  .video-thumbs { grid-template-columns: 1fr; }
  .footer-links { flex-direction: column; gap: 2rem; }
  .footer-inner { flex-direction: column; }
}
@media (max-width: 480px) {
  .section { padding: 5rem 0; }
  .hero-badge { display: none; }
}
