/* ═══════════════════════════════════════════════
   1860 MOUNTAIN VIEW DRIVE — TIBURON
   Luxury Property Website
   ═══════════════════════════════════════════════ */

:root {
  --black:    #080808;
  --charcoal: #111111;
  --dark:     #1a1a1a;
  --mid:      #444444;
  --muted:    #888888;
  --light:    #e8e4de;
  --white:    #ffffff;
  --gold:     #b8946a;
  --gold-lt:  #d4b48a;
  --gold-dk:  #8a6a42;
  --cream:    #f7f4ef;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Montserrat', -apple-system, sans-serif;

  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
}

/* ──────────────────────────────────────────────
   SITE GATE — Password landing page
────────────────────────────────────────────── */
.site-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #060606;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
.site-gate.unlocked {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.gate-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 40%, rgba(184,148,106,0.07) 0%, transparent 70%),
    url('images/Twilight/View_Night_GGB_1308.jpg') center/cover no-repeat;
  opacity: 0.35;
}
.gate-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 40px;
  max-width: 640px;
  width: 90%;
}
.gate-rule {
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184,148,106,0.7), transparent);
  margin-bottom: 48px;
}
.gate-rule-bottom {
  margin-top: 48px;
  margin-bottom: 0;
}
.gate-eyebrow {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(184,148,106,0.75);
  margin-bottom: 28px;
}
.gate-title {
  font-family: var(--font-serif);
  font-size: clamp(52px, 9vw, 88px);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 36px;
}
.gate-presented {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 10px;
}
.gate-agents {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.75);
  margin-bottom: 40px;
}
.gate-logos {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 44px;
  margin-bottom: 44px;
  flex-wrap: wrap;
  justify-content: center;
}
.gate-logo-group {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 32px;
}
.gate-logo-sep {
  width: 1px;
  height: 56px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}
.gate-logo-img {
  height: 36px;
  width: auto;
  object-fit: contain;
}
/* Lurie Group — larger on gate */
.gate-logo-lurie {
  height: 56px;
}
.gate-logo-blend { mix-blend-mode: screen; }
.gate-logo-invert { filter: invert(1); opacity: 0.7; }
.gate-form {
  width: 100%;
  max-width: 320px;
}
.gate-input-wrap {
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(184,148,106,0.5);
  padding-bottom: 10px;
  gap: 12px;
}
.gate-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.25em;
  color: var(--white);
  text-align: center;
}
.gate-input::placeholder {
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.2em;
}
.gate-submit {
  background: none;
  border: none;
  color: rgba(184,148,106,0.8);
  font-size: 18px;
  cursor: pointer;
  padding: 0 4px;
  transition: color 0.3s;
  line-height: 1;
}
.gate-submit:hover { color: var(--gold-lt); }
.gate-error {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: rgba(200,100,100,0.8);
  margin-top: 14px;
  min-height: 16px;
}

/* Gate agent name spans */
.gate-agent-name { display: inline; }
.gate-agent-sep  { display: inline; }

/* Mobile gate overrides */
@media (max-width: 600px) {
  .gate-inner {
    padding: 48px 28px;
  }
  .gate-title {
    font-size: clamp(44px, 13vw, 64px);
    margin-bottom: 28px;
  }
  /* Stack names vertically, hide dot */
  .gate-agents {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 16px;
  }
  .gate-agent-sep { display: none; }
  /* Stack logos vertically on mobile, hide vertical separator */
  .gate-logos { flex-direction: column; gap: 28px; margin-bottom: 0; }
  .gate-logo-sep   { display: none; }
  .gate-logo-group { padding: 0; }
  /* Equidistant spacing: top rule→content matches logos→bottom rule (both 48px) */
  .gate-rule-bottom { margin-top: 48px; }
}

/* Hero trophy subtitle */
.hero-trophy-sub {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-top: -14px;
  margin-bottom: 28px;
}

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

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

body {
  font-family: var(--font-sans);
  background: var(--white);
  color: var(--dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ──────────────────────────────────────────────
   SCROLL REVEAL ANIMATIONS
────────────────────────────────────────────── */
.reveal, .reveal-up, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
  transition-delay: var(--delay, 0s);
}
.reveal         { transform: translateY(30px); }
.reveal-up      { transform: translateY(40px); }
.reveal-left    { transform: translateX(-50px); }
.reveal-right   { transform: translateX(50px); }

.reveal.visible,
.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: none;
}

/* ──────────────────────────────────────────────
   NAVIGATION
────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 48px;
  transition: background 0.4s var(--ease), padding 0.4s var(--ease), box-shadow 0.4s;
}

#navbar.scrolled {
  background: rgba(8, 8, 8, 0.97);
  backdrop-filter: blur(12px);
  padding: 14px 48px;
  box-shadow: 0 2px 40px rgba(0,0,0,0.4);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1600px;
  margin: 0 auto;
}

.nav-logo img {
  height: 62px;
  width: auto;
  object-fit: contain;
  transition: opacity 0.3s;
}
.nav-logo:hover img { opacity: 0.75; }

/* Reusable blend class for logo on dark backgrounds */
.logo-blend {
  mix-blend-mode: screen;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-links li a {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color 0.3s;
  position: relative;
}

.nav-links li a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease-out);
}

.nav-links li a:hover { color: var(--white); }
.nav-links li a:hover::after { width: 100%; }

.nav-cta {
  border: 1px solid rgba(255,255,255,0.4) !important;
  padding: 10px 24px !important;
  border-radius: 2px;
  transition: border-color 0.3s, background 0.3s, color 0.3s !important;
}

.nav-cta:hover {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
  color: var(--white) !important;
}
.nav-cta::after { display: none !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px; height: 1.5px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  background: rgba(8,8,8,0.98);
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-out), padding 0.3s;
}
.mobile-menu.open {
  display: flex;
  max-height: 400px;
  padding: 16px 0 24px;
}
.mobile-link {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  padding: 14px 48px;
  transition: color 0.3s, background 0.3s;
}
.mobile-link:hover { color: var(--gold); background: rgba(255,255,255,0.03); }

/* ──────────────────────────────────────────────
   HERO
────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  background: var(--black);
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.8s ease;
}
.hero-slide.active { opacity: 1; }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.25) 0%,
    rgba(0,0,0,0.15) 40%,
    rgba(0,0,0,0.6) 100%
  );
}

.hero-content {
  position: absolute;
  bottom: 12vh;
  left: 0; right: 0;
  padding: 0 80px;
  max-width: 900px;
}

.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(56px, 8vw, 110px);
  font-weight: 300;
  line-height: 0.95;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}

.hero-price {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.75);
  margin-bottom: 36px;
}
.hero-price span {
  color: var(--white);
  font-weight: 500;
}

.hero-btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 6px;
  transition: color 0.3s, border-color 0.3s;
}
.hero-btn:hover { color: var(--gold); }

.hero-scroll-hint {
  position: absolute;
  right: 48px;
  bottom: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.hero-scroll-hint span {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* ──────────────────────────────────────────────
   STATS BAR
────────────────────────────────────────────── */
.stats-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--charcoal);
  padding: 40px 60px;
  gap: 0;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
  padding: 0 56px;
}

.stat-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 42px;
  font-weight: 400;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  display: block;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}

/* ──────────────────────────────────────────────
   PROPERTY SECTION
────────────────────────────────────────────── */
.section-property {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
  align-items: center;
}

.container-text {
  padding: 100px 80px 100px 10%;
}

.section-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}

.section-heading {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4vw, 60px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--charcoal);
  letter-spacing: -0.01em;
  margin-bottom: 40px;
}

.property-desc p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.9;
  color: #3a3a3a;
  margin-bottom: 22px;
  max-width: 560px;
}

.property-split-img {
  height: 100%;
  min-height: 600px;
  overflow: hidden;
}
.property-split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 12s ease;
}
.property-split-img:hover img { transform: scale(1.04); }

/* ──────────────────────────────────────────────
   FULL-WIDTH PHOTO
────────────────────────────────────────────── */
.full-photo {
  height: 75vh;
  min-height: 500px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  display: flex;
  align-items: flex-end;
}

.full-photo-caption {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  padding: 24px 48px;
  background: linear-gradient(transparent, rgba(0,0,0,0.5));
  width: 100%;
}

/* ──────────────────────────────────────────────
   GALLERY
────────────────────────────────────────────── */
.section-gallery {
  background: var(--cream);
  padding: 100px 0;
}

.gallery-header {
  text-align: center;
  padding: 0 40px 60px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 280px;
  gap: 6px;
  padding: 0 6px;
}

.gallery-item {
  overflow: hidden;
  cursor: pointer;
  position: relative;
  background: var(--charcoal);
}

.gallery-item.tall  { grid-row: span 2; }
.gallery-item.wide  { grid-column: span 2; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.4s;
}
.gallery-item-overlay span {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: white;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s, transform 0.4s;
}

.gallery-item:hover img { transform: scale(1.06); }
.gallery-item:hover .gallery-item-overlay { background: rgba(0,0,0,0.35); }
.gallery-item:hover .gallery-item-overlay span { opacity: 1; transform: none; }

.gallery-all-btn-wrap {
  text-align: center;
  margin-top: 48px;
}

/* ──────────────────────────────────────────────
   LIGHTBOX
────────────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.97);
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }

.lb-img-wrap {
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lb-img-wrap img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border: none;
}

.lb-close, .lb-prev, .lb-next {
  position: absolute;
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  font-size: 28px;
  transition: color 0.3s;
  line-height: 1;
  padding: 12px;
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover { color: var(--white); }

.lb-close { top: 24px; right: 32px; font-size: 36px; }
.lb-prev  { left: 24px;  top: 50%; transform: translateY(-50%); font-size: 32px; }
.lb-next  { right: 24px; top: 50%; transform: translateY(-50%); font-size: 32px; }

.lb-counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.5);
}

/* ──────────────────────────────────────────────
   BUTTONS
────────────────────────────────────────────── */
.btn-outline {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--charcoal);
  border: 1px solid var(--charcoal);
  padding: 16px 40px;
  background: none;
  cursor: pointer;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
  border-radius: 2px;
}
.btn-outline:hover {
  background: var(--charcoal);
  color: var(--white);
}

/* ──────────────────────────────────────────────
   ARCHITECTURE
────────────────────────────────────────────── */
.section-architecture {
  padding: 100px 10%;
  background: var(--white);
}

.arch-intro {
  text-align: center;
  margin-bottom: 80px;
}

.arch-features {
  display: flex;
  flex-direction: column;
  gap: 80px;
  margin-bottom: 100px;
}

.arch-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.arch-feature.reverse { direction: rtl; }
.arch-feature.reverse > * { direction: ltr; }

.arch-feature-img {
  overflow: hidden;
  aspect-ratio: 4/3;
}
.arch-feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 10s ease;
}
.arch-feature:hover .arch-feature-img img { transform: scale(1.04); }

.arch-feature-text h3 {
  font-family: var(--font-serif);
  font-size: clamp(26px, 2.5vw, 38px);
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.arch-feature-text p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.9;
  color: #444;
}

/* Features grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  border-top: 1px solid #e0dbd3;
  padding-top: 60px;
}

.features-col h4 {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.features-col li {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.5;
  color: #444;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.features-col li.has-sublist {
  border-bottom: none;
  padding-bottom: 0;
}
.features-sublist {
  margin-top: 4px;
  padding-left: 18px;
  list-style: none;
}
.features-sublist li {
  font-size: 12px;
  border-bottom: none;
  padding: 3px 0;
  color: #666;
}
.features-sublist li::before {
  content: '– ';
  color: var(--gold);
}
.features-sublist + * {
  border-top: 1px solid rgba(0,0,0,0.06);
}

/* ──────────────────────────────────────────────
   VIDEO SECTION
────────────────────────────────────────────── */
.section-video {
  background: var(--black);
  padding: 100px 10%;
}
.video-header {
  text-align: center;
  margin-bottom: 48px;
}
.video-header .section-heading { color: var(--white); }
.video-wrap {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  background: #111;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}
.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
/* Custom centered play button overlay */
.video-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: opacity 0.3s ease;
  background:
    linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.35)),
    url('images/Twilight/View_Sunset_GGB_1299.jpg') center/cover no-repeat;
}
.video-play-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}
.video-play-btn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(0,0,0,0.55);
  border: 2px solid rgba(255,255,255,0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.9);
  font-size: 26px;
  padding-left: 5px;
  transition: background 0.25s, transform 0.25s, border-color 0.25s;
}
.video-play-overlay:hover .video-play-btn {
  background: rgba(0,0,0,0.75);
  border-color: rgba(184,148,106,0.9);
  color: rgba(184,148,106,1);
  transform: scale(1.07);
}
.video-note {
  margin-top: 24px;
  text-align: center;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.08em;
  font-style: italic;
  color: rgba(255,255,255,0.3);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

/* ──────────────────────────────────────────────
   FLOOR PLAN
────────────────────────────────────────────── */
.section-floorplan {
  background: var(--cream);
  padding: 100px 10%;
}
.floorplan-header {
  text-align: center;
  margin-bottom: 60px;
}
.floorplan-body--solo {
  display: block !important;
}
.floorplan-body--solo .floorplan-img-wrap {
  max-width: 560px;
  margin: 0 auto;
}
.floorplan-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.floorplan-img-wrap {
  background: white;
  padding: 20px;
  box-shadow: 0 4px 40px rgba(0,0,0,0.08);
}
.floorplan-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
}
.floorplan-levels {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.floorplan-level h4 {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.floorplan-level li {
  font-size: 13px;
  font-weight: 300;
  color: #444;
  padding: 7px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  line-height: 1.4;
}
.floorplan-note {
  font-size: 10px;
  font-weight: 300;
  color: var(--muted);
  text-align: center;
  margin-top: 48px;
  letter-spacing: 0.05em;
  line-height: 1.7;
}

/* ──────────────────────────────────────────────
   VIEWS SECTION
────────────────────────────────────────────── */
.section-views {
  background: var(--charcoal);
}

.views-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 70vh;
}

.views-img {
  overflow: hidden;
}
.views-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.views-text {
  padding: 80px 80px 80px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.views-text .section-label { color: var(--gold); margin-bottom: 20px; }
.views-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 30px;
  line-height: 1.1;
}
.views-text > p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(255,255,255,0.65);
  margin-bottom: 36px;
}

.views-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.views-list li {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.5);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.views-list li::before {
  content: '— ';
  color: var(--gold);
}

.views-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 300px;
}
.views-strip-img {
  background-size: cover;
  background-position: center;
  transition: transform 0.8s ease;
  overflow: hidden;
}
.views-strip-img:hover { transform: scale(1.03); }

/* ──────────────────────────────────────────────
   RECORD SALE SECTION
────────────────────────────────────────────── */
.section-record {
  background: var(--cream);
  padding: 100px 10%;
  text-align: center;
}

.record-inner {
  max-width: 880px;
  margin: 0 auto;
}
.record-inner .section-label { justify-content: center; display: block; }

.record-quote {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3.5vw, 48px);
  font-weight: 300;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.3;
  margin: 24px 0 20px;
}

.record-source {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.record-sub {
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 60px;
}

.record-sales {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.record-sale {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 40px 60px;
  border: 1px solid #ddd;
  background: white;
  flex: 1;
  min-width: 240px;
  max-width: 320px;
}

.record-year {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}

.record-price {
  font-family: var(--font-serif);
  font-size: 38px;
  font-weight: 400;
  color: var(--charcoal);
}

.record-note {
  font-size: 11px;
  font-weight: 300;
  color: var(--muted);
  text-align: center;
  line-height: 1.6;
}

/* ──────────────────────────────────────────────
   PRESS
────────────────────────────────────────────── */
.section-press {
  padding: 100px 10%;
  background: var(--white);
}

.press-header {
  text-align: center;
  margin-bottom: 48px;
}

.press-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 72px;
  padding: 32px 40px;
  background: var(--cream);
}

.press-pub {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 500;
  font-style: italic;
  color: var(--charcoal);
  letter-spacing: 0.02em;
}

.press-sep {
  color: var(--gold);
  font-size: 20px;
}

.press-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: #e8e4de;
}

.press-card {
  background: var(--white);
  padding: 48px 40px;
  position: relative;
  transition: background 0.3s;
}
.press-card:hover { background: var(--cream); }

.press-card-pub {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.press-card-headline {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  font-style: italic;
  color: var(--charcoal);
  margin-bottom: 18px;
  line-height: 1.3;
}

.press-card-body {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.85;
  color: #555;
  margin-bottom: 24px;
}

.press-card-link {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dk);
  border-bottom: 1px solid var(--gold-dk);
  padding-bottom: 3px;
  transition: color 0.3s, border-color 0.3s;
}
.press-card-link:hover { color: var(--gold); border-color: var(--gold); }

.press-card-year {
  position: absolute;
  top: 48px; right: 40px;
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 300;
  color: rgba(0,0,0,0.04);
  line-height: 1;
  user-select: none;
}

/* ──────────────────────────────────────────────
   FULL-QUOTE SECTION
────────────────────────────────────────────── */
.full-quote {
  position: relative;
  height: 60vh;
  min-height: 400px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
}

.full-quote-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

.full-quote-text {
  position: relative;
  z-index: 1;
  font-family: var(--font-serif);
  font-size: clamp(26px, 4vw, 52px);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  text-align: center;
  max-width: 900px;
  padding: 0 60px;
  line-height: 1.3;
}

.full-quote-text cite {
  display: block;
  margin-top: 24px;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-lt);
}

/* ──────────────────────────────────────────────
   CONTACT
────────────────────────────────────────────── */
.section-contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--charcoal);
  min-height: 80vh;
}

.contact-left {
  padding: 100px 60px 100px 10%;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.contact-left .section-label { color: var(--gold); }
.contact-left h2 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 3vw, 48px);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.15;
}
.contact-left > p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(255,255,255,0.6);
  margin-bottom: 40px;
  max-width: 420px;
}

/* Co-agent cards */
.contact-agents {
  display: flex;
  gap: 0;
  margin-bottom: 40px;
  flex-wrap: nowrap;
  align-items: flex-start;
}
.contact-agent-card {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-right: 32px;
  flex: 1;
  min-width: 0;
}
.contact-agent-card strong {
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.04em;
}
.contact-agent-card span {
  font-size: 10px;
  color: rgba(255,255,255,0.35);
  font-weight: 300;
  letter-spacing: 0.08em;
  margin-bottom: 2px;
}
.agent-title {
  font-size: 11px !important;
  color: rgba(255,255,255,0.55) !important;
  font-weight: 400 !important;
}
.agent-subtitle {
  font-size: 10px !important;
  color: var(--gold) !important;
  font-weight: 400 !important;
  letter-spacing: 0.05em !important;
}
.agent-dre {
  font-size: 9px !important;
  color: rgba(255,255,255,0.25) !important;
  letter-spacing: 0.1em !important;
  margin-bottom: 6px !important;
}
.contact-agent-card a {
  font-size: 12px;
  color: var(--gold-lt);
  font-weight: 300;
  transition: color 0.3s;
}
.contact-agent-card a:hover { color: var(--white); }
.contact-agent-divider {
  width: 1px;
  background: rgba(255,255,255,0.12);
  margin: 0 32px 0 0;
  align-self: stretch;
}

/* Agent logos — stacked column */
.agent-logos {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-top: 14px;
}
.agent-logos a {
  display: flex;
  align-items: center;
}

/* Josh: JD + CB logos — height-based, matching ~124px wide */
.agent-logo-img {
  height: 28px;
  width: auto;
  object-fit: contain;
}

/* Lurie Group — set to same rendered width as JD logo (~124px) */
.logo-blend.agent-logo-img {
  width: 124px;
  height: auto;
}

/* City RE — proportional to Lurie Group's resized height (~61px tall) */
.agent-logo-img.city-re-logo {
  width: auto;
  height: 60px;
}

/* Inverted logo (white bg → dark bg inversion) */
.logo-invert {
  filter: invert(1);
  opacity: 0.75;
}

.contact-logo img {
  height: 52px;
  width: auto;
  opacity: 0.7;
}

/* Contact form */
.contact-form {
  padding: 100px 10% 100px 60px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-group label {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.form-group input,
.form-group textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 300;
  padding: 14px 18px;
  outline: none;
  transition: border-color 0.3s, background 0.3s;
  resize: none;
  border-radius: 2px;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.08);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.25);
}

.btn-submit {
  width: 100%;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  border: none;
  padding: 18px 40px;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  border-radius: 2px;
  margin-top: 8px;
}
.btn-submit:hover {
  background: var(--gold-lt);
  transform: translateY(-1px);
}

.form-note {
  font-size: 10px;
  font-weight: 300;
  color: rgba(255,255,255,0.25);
  text-align: center;
  margin-top: 16px;
  letter-spacing: 0.05em;
}

/* ──────────────────────────────────────────────
   FOOTER
────────────────────────────────────────────── */
.site-footer {
  background: var(--black);
  padding: 64px 10% 48px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-inner {
  display: grid;
  grid-template-columns: 140px 1fr 1fr;
  gap: 40px 60px;
  align-items: start;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 8px;
}
.footer-logo-img {
  height: 40px;
  width: auto;
}
.city-re-logo-footer {
  height: 56px !important;
  width: auto;
  mix-blend-mode: screen;
  object-fit: contain;
  object-position: left;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-nav a {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  transition: color 0.3s;
}
.footer-nav a:hover { color: var(--gold); }

.footer-address p {
  font-size: 12px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255,255,255,0.4);
}
.footer-presented-by {
  font-size: 9px !important;
  font-weight: 500 !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase !important;
  color: var(--gold) !important;
  margin-bottom: 4px !important;
}
.footer-brokerage {
  color: rgba(255,255,255,0.6) !important;
  font-weight: 400 !important;
  line-height: 2 !important;
}
.footer-disclaimer-col {
  text-align: right;
}
.footer-disclaimer {
  font-size: 10px !important;
  color: rgba(255,255,255,0.2) !important;
  line-height: 1.7 !important;
}

.footer-copy {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 28px;
}
.footer-copy p {
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.2);
}

/* ──────────────────────────────────────────────
   RESPONSIVE
────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .section-property { grid-template-columns: 1fr; }
  .property-split-img { min-height: 50vw; }
  .container-text { padding: 80px 8%; }

  .arch-feature, .arch-feature.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .section-architecture { padding: 80px 6%; }

  .press-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr 1fr; gap: 40px; }

  .views-panel { grid-template-columns: 1fr; }
  .views-img { height: 50vw; }
  .views-text { padding: 60px 8%; }

  .section-contact { grid-template-columns: 1fr; }
  .contact-left { padding: 80px 8% 60px; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .contact-form { padding: 60px 8% 80px; }

  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  #navbar { padding: 18px 24px; }
  #navbar.scrolled { padding: 12px 24px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero-content { padding: 0 32px; bottom: 14vh; }
  .hero-scroll-hint { display: none; }

  /* Stats — 2×2 centered grid, hide flex dividers */
  .stats-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: rgba(255,255,255,0.1);
    padding: 0;
  }
  .stat {
    background: var(--charcoal);
    padding: 32px 16px;
    text-align: center;
  }
  .stat-divider { display: none; }
  .stat-num { font-size: 30px; }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }
  .gallery-item.tall  { grid-row: span 1; }
  .gallery-item.wide  { grid-column: span 2; }

  .press-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; gap: 32px; }

  .views-strip { grid-template-columns: repeat(2, 1fr); height: 200px; }

  .record-sales { gap: 20px; }
  .record-sale { padding: 32px 40px; }

  .footer-inner { grid-template-columns: 1fr; gap: 40px; }

  .form-row { grid-template-columns: 1fr; }

  .full-photo, .full-quote { background-attachment: scroll; }

  /* Press logos — stack vertically, hide separator dots */
  .press-logos {
    flex-direction: column;
    gap: 14px;
    align-items: center;
    padding: 32px 24px;
  }
  .press-sep { display: none; }
  .press-pub { font-size: 16px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 48px; }
  .section-heading { font-size: 30px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.wide { grid-column: span 1; }
  .views-strip { grid-template-columns: repeat(2, 1fr); }
}
