/* ============================================================
   WESTOVER OFFICES — Main Stylesheet
   Brand: #8C7B5E warm gold | #2A2828 charcoal | #F7F4F0 cream
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: #1A1A1A;
  background: #fff;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

:root {
  --gold:       #8C7B5E;
  --gold-light: #A8946A;
  --gold-dark:  #6B5C44;
  --charcoal:   #2A2828;
  --dark:       #1A1A1A;
  --cream:      #F7F4F0;
  --white:      #FFFFFF;
  --muted:      #666;
  --border:     #E0DAD2;
  --radius:     3px;
  --shadow:     0 4px 24px rgba(0,0,0,0.09);
  --shadow-lg:  0 12px 40px rgba(0,0,0,0.16);
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  line-height: 1.2;
  color: var(--dark);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 600; }
h3 { font-size: clamp(1.15rem, 2vw, 1.55rem); }
p  { color: #444; margin-bottom: 1rem; }

/* ── CONTAINER ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s ease;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.75);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-dark {
  background: var(--charcoal);
  color: var(--white);
  border-color: var(--charcoal);
}
.btn-dark:hover { background: #000; border-color: #000; transform: translateY(-2px); }
.btn-sm  { padding: 10px 22px; font-size: 0.75rem; }
.btn-lg  { padding: 18px 44px; font-size: 0.9rem; }
.btn-full { width: 100%; }

/* ── LABELS ── */
.eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.eyebrow.light { color: var(--gold-light); }
.section-header { text-align: center; max-width: 700px; margin: 0 auto 64px; }
.video-section .section-header { max-width: 860px; }
.section-header h2 { margin-bottom: 16px; }
.section-sub { color: var(--muted); font-size: 1.05rem; line-height: 1.7; }

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 22px 0;
  transition: background 0.35s ease, padding 0.35s ease, box-shadow 0.35s ease;
}
.navbar.scrolled {
  background: rgba(26,26,26,0.97);
  backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: 0 2px 24px rgba(0,0,0,0.25);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.nav-logo img {
  height: 46px;
  width: auto;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  color: rgba(255,255,255,0.88);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: all 0.2s;
  letter-spacing: 0.2px;
}
.nav-link:hover, .nav-link.active { color: var(--white); background: rgba(255,255,255,0.1); }
.nav-phone-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-left: 8px;
}
.nav-phone {
  display: block;
  background: var(--gold);
  color: var(--white);
  padding: 7px 16px;
  border-radius: var(--radius);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  transition: all 0.2s;
  white-space: nowrap;
}
.nav-phone:hover { background: var(--gold-dark); }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  background: var(--charcoal);
  border-radius: var(--radius);
  padding: 8px 0;
  min-width: 170px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.22s ease;
  box-shadow: var(--shadow-lg);
  border-top: 2px solid var(--gold);
}
.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown a {
  display: block;
  padding: 10px 20px;
  color: rgba(255,255,255,0.82);
  font-size: 0.83rem;
  transition: all 0.18s;
}
.dropdown a:hover { color: var(--white); background: rgba(255,255,255,0.07); padding-left: 24px; }
.dropdown-arrow { font-size: 0.65rem; margin-left: 4px; }


/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1001;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
  transform-origin: center;
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── HERO ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--white);
  text-align: center;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(26,26,26,0.72) 0%, rgba(42,40,40,0.55) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  padding: 0 28px;
}
.hero-address {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 24px;
  padding: 8px 20px;
  border: 1px solid rgba(168,148,106,0.4);
  border-radius: var(--radius);
}
.hero h1 {
  color: var(--white);
  margin-bottom: 22px;
  text-shadow: 0 2px 30px rgba(0,0,0,0.35);
}
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.82);
  max-width: 640px;
  margin: 0 auto 40px;
  line-height: 1.75;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.hero-scroll span {
  font-size: 0.62rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: lineDown 2.2s infinite;
}
@keyframes lineDown {
  0%   { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50%  { opacity: 1; transform: scaleY(1); }
  100% { opacity: 0; transform: scaleY(1); }
}

/* ── STATS BAR ── */
.stats-bar { background: var(--charcoal); padding: 36px 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  text-align: center;
}
.stat {
  padding: 12px 20px;
  border-right: 1px solid rgba(255,255,255,0.1);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.stat:last-child { border-right: none; }
.stat-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-lbl {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.55);
}

/* ── OVERVIEW ── */
.overview { padding: 110px 0; }
.overview-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 72px;
  align-items: center;
}
.overview-img-wrap {
  position: relative;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 3 / 4;
}
.overview-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  display: block;
  border-radius: var(--radius);
}
.img-tag {
  position: absolute;
  bottom: -18px;
  right: -18px;
  background: var(--gold);
  color: var(--white);
  padding: 14px 28px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: var(--radius);
}
.overview-text h2 { margin-bottom: 20px; }
.overview-text p { margin-bottom: 18px; }
.feature-list { margin: 28px 0 36px; }
.feature-list li {
  padding: 11px 0 11px 22px;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  color: #444;
  position: relative;
}
.feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 2px;
  background: var(--gold);
}

/* ── LOCATION ── */
.location {
  position: relative;
  padding: 110px 0;
  overflow: hidden;
  color: var(--white);
}
.location-bg {
  position: absolute;
  inset: 0;
}
.location-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.location-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(26,26,26,0.94) 0%, rgba(42,40,40,0.9) 100%);
  z-index: 1;
}
.location-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}
.location-inner h2 {
  color: var(--white);
  max-width: 720px;
  margin: 0 auto 18px;
}
.location-lead {
  max-width: 820px;
  margin: 0 auto 64px;
  color: rgba(255,255,255,0.78);
  font-size: 1.05rem;
  line-height: 1.75;
}
.loc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  text-align: left;
}
.loc-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-top: 3px solid var(--gold);
  padding: 36px 30px;
  border-radius: var(--radius);
  transition: all 0.3s;
}
.loc-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-5px); }
.loc-icon { margin-bottom: 20px; display: block; line-height: 0; }
.loc-card h3 { color: var(--white); font-size: 1.1rem; margin-bottom: 18px; }
.loc-card ul li {
  color: rgba(255,255,255,0.72);
  font-size: 0.88rem;
  padding: 7px 0 7px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  position: relative;
}
.loc-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 7px;
  height: 1px;
  background: var(--gold-light);
}

/* ── BUILDINGS SECTION ── */
.buildings { padding: 110px 0; background: var(--cream); }
.bldg-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}
.bldg-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.32s ease;
}
.bldg-card:hover { transform: translateY(-9px); box-shadow: var(--shadow-lg); }
.bldg-thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.bldg-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.bldg-card:hover .bldg-thumb img { transform: scale(1.06); }
.badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 14px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border-radius: var(--radius);
}
.badge-sale { background: var(--gold); color: var(--white); }
.badge-sold { background: var(--charcoal); color: var(--white); }
.bldg-info { padding: 24px; }
.bldg-info h3 { margin-bottom: 6px; font-size: 1.25rem; }
.bldg-info p { font-size: 0.84rem; color: var(--muted); margin-bottom: 20px; white-space: nowrap; }

/* Sold proof */
.sold-proof { text-align: center; padding-top: 20px; }
.sold-proof h3 { font-size: 1.45rem; margin-bottom: 12px; }
.sold-proof > p { max-width: 580px; margin: 0 auto 40px; color: var(--muted); }
.sold-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 780px;
  margin: 0 auto;
}
.sold-item { position: relative; border-radius: var(--radius); overflow: hidden; }
.sold-item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  filter: grayscale(55%);
  display: block;
}
.sold-cap {
  position: absolute;
  inset: 0;
  background: rgba(26,26,26,0.58);
  display: flex;
  align-items: center;
  justify-content: center;
}
.sold-cap span {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 5px;
}
.sold-item p {
  text-align: center;
  margin-top: 10px;
  font-size: 0.84rem;
  color: var(--muted);
  font-weight: 600;
}

/* ── VIDEO ── */
.video-section { padding: 110px 0; }
.video-wrap {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.22);
}
.video-wrap video { width: 100%; display: block; max-height: 580px; object-fit: cover; }
.video-wrap iframe { width: 100%; aspect-ratio: 16 / 9; display: block; border: none; }

/* ── BROCHURE CTA ── */
.brochure-cta { background: var(--gold); padding: 68px 0; }
.brochure-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
.brochure-inner h2 { color: var(--white); font-size: 2rem; margin-bottom: 8px; }
.brochure-inner p  { color: rgba(255,255,255,0.85); margin: 0; font-size: 1rem; }
.brochure-cta .btn-primary {
  background: var(--white);
  color: var(--gold-dark);
  border-color: var(--white);
  flex-shrink: 0;
}
.brochure-cta .btn-primary:hover { background: var(--cream); border-color: var(--cream); }

/* ── CONTACT ── */
.contact { padding: 110px 0; background: var(--cream); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 16px; }
.contact-info > p { color: var(--muted); margin-bottom: 44px; font-size: 1.02rem; }
.contact-details { display: flex; flex-direction: column; gap: 28px; }
.contact-item { display: flex; flex-direction: column; gap: 5px; }
.contact-item strong {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--gold);
}
.contact-item a, .contact-item span { font-size: 0.95rem; color: #3A3A3A; }
.contact-item a:hover { color: var(--gold); }
.contact-form-box {
  background: var(--white);
  padding: 44px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.contact-form-box h3 { margin-bottom: 30px; font-size: 1.35rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.94rem;
  font-family: 'Inter', sans-serif;
  color: var(--dark);
  background: var(--white);
  transition: border-color 0.2s;
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 0.76rem; color: var(--muted); margin-top: 14px; text-align: center; }

/* ── FOOTER ── */
.footer { background: var(--charcoal); color: rgba(255,255,255,0.75); padding: 68px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr;
  gap: 60px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo { height: 38px; width: auto; margin-bottom: 18px; }
.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,0.55); line-height: 1.7; max-width: 300px; }
.footer h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 22px;
}
.footer-nav ul { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a { font-size: 0.88rem; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-nav a:hover { color: var(--gold-light); }
.footer-contact-col p { font-size: 0.88rem; margin-bottom: 8px; line-height: 1.5; }
.footer-contact-col a { color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-contact-col a:hover { color: var(--gold-light); }
.footer-agent { display: flex; gap: 16px; align-items: flex-start; }
.agent-logo { width: 56px; flex-shrink: 0; border-radius: 2px; display: block; }
.footer-bottom {
  padding: 22px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.76rem; color: rgba(255,255,255,0.35); margin: 0; }
.legal-links a {
  color: rgba(255,255,255,0.35);
  font-size: 0.76rem;
  transition: color 0.2s;
}
.legal-links a:hover { color: var(--gold-light); }
.site-by { font-size: 0.76rem; color: rgba(255,255,255,0.35); white-space: nowrap; }
.site-by a { color: rgba(255,255,255,0.35); transition: color 0.2s; }
.site-by a:hover { color: var(--gold-light); }

/* ── BUILDING DETAIL PAGE ── */
.bldg-hero {
  position: relative;
  height: 72vh;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.bldg-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bldg-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, transparent 25%),
    linear-gradient(to top,    rgba(26,26,26,0.88) 0%, rgba(26,26,26,0.05) 55%);
}
.bldg-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px 60px;
  color: var(--white);
}
.bldg-status {
  display: inline-block;
  padding: 6px 18px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
  border-radius: var(--radius);
}
.status-for-sale { background: var(--gold); color: var(--white); }
.status-sold { background: var(--charcoal); color: var(--white); border: 1px solid rgba(255,255,255,0.2); }
.bldg-hero-content h1 { color: var(--white); margin-bottom: 10px; }
.bldg-hero-content .bldg-sub { color: rgba(255,255,255,0.78); font-size: 1.08rem; margin: 0; }

/* Detail layout */
.bldg-detail { padding: 80px 0 110px; }
.bldg-detail-grid {
  display: grid;
  grid-template-columns: 1fr 390px;
  gap: 60px;
  align-items: start;
}
.bldg-desc h2 { font-size: 1.8rem; margin-bottom: 18px; }
.bldg-desc p  { margin-bottom: 18px; font-size: 0.97rem; line-height: 1.75; }

/* Photo gallery */
.gallery { margin-top: 48px; }
.gallery h3 { font-size: 1.2rem; margin-bottom: 24px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.gal-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: zoom-in;
}
.gal-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.42s ease;
}
.gal-img:hover img { transform: scale(1.07); }

/* Sidebar */
.bldg-sidebar { position: sticky; top: 100px; }
.spec-box {
  background: var(--cream);
  padding: 36px;
  border-radius: var(--radius);
  margin-bottom: 24px;
}
.spec-box h3 { font-size: 1.15rem; margin-bottom: 28px; padding-bottom: 16px; border-bottom: 2px solid var(--gold); }
.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
  gap: 12px;
}
.spec-row:last-child { border-bottom: none; }
.spec-key { color: var(--muted); }
.spec-val { font-weight: 700; color: var(--dark); text-align: right; }
.cta-box {
  background: var(--gold);
  padding: 32px;
  border-radius: var(--radius);
  text-align: center;
}
.cta-box h3 { color: var(--white); font-size: 1.1rem; margin-bottom: 12px; }
.cta-box p { color: rgba(255,255,255,0.88); font-size: 0.88rem; margin-bottom: 24px; }
.cta-box .btn-primary {
  background: var(--white);
  color: var(--gold-dark);
  border-color: var(--white);
  width: 100%;
  margin-bottom: 12px;
}
.cta-box .btn-primary:hover { background: var(--cream); }
.cta-phone {
  display: block;
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 700;
  margin: 8px 0 0;
  transition: opacity 0.2s;
}
.cta-phone:hover { opacity: 0.85; }
.cta-divider {
  color: rgba(255,255,255,0.5);
  font-size: 0.78rem;
  margin: 6px 0;
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 0.84rem;
  font-weight: 600;
  margin-bottom: 32px;
  transition: gap 0.2s;
}
.back-link:hover { gap: 12px; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.93);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.28s;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img { max-width: 90vw; max-height: 87vh; object-fit: contain; border-radius: var(--radius); }
.lb-close {
  position: absolute;
  top: 20px;
  right: 24px;
  color: var(--white);
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
  background: none;
  border: none;
  opacity: 0.75;
  transition: opacity 0.2s;
}
.lb-close:hover { opacity: 1; }
.lb-prev, .lb-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-size: 2.6rem;
  line-height: 1;
  cursor: pointer;
  padding: 10px 20px;
  border-radius: var(--radius);
  opacity: 0.7;
  transition: opacity 0.2s, background 0.2s;
  z-index: 1;
  user-select: none;
}
.lb-prev { left: 20px; }
.lb-next { right: 20px; }
.lb-prev:hover, .lb-next:hover { opacity: 1; background: rgba(255,255,255,0.2); }
@media (max-width: 520px) {
  .lb-prev { left: 8px; padding: 8px 14px; font-size: 2rem; }
  .lb-next { right: 8px; padding: 8px 14px; font-size: 2rem; }
}

/* ── SPEC PRICE HIGHLIGHT ── */
.spec-price-highlight {
  background: var(--charcoal);
  border-radius: calc(var(--radius) - 2px);
  padding: 18px 20px;
  margin-bottom: 20px;
  text-align: center;
}
.spec-ph-label {
  display: block;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 6px;
}
.spec-ph-price {
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.1;
}
.spec-ph-psf {
  display: block;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}

/* ── OWNERSHIP / POA SECTION ── */
.ownership-section { padding: 80px 0; background: var(--cream); }
.ownership-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.own-card {
  background: var(--white);
  padding: 34px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.own-card h3 {
  font-size: 0.7rem;
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.own-card p { font-size: 0.94rem; line-height: 1.75; color: var(--dark); margin: 0; }
.own-card ul { list-style: none; padding: 0; margin: 0; }
.own-card ul li {
  font-size: 0.92rem;
  padding: 9px 0 9px 20px;
  border-bottom: 1px solid var(--border);
  color: var(--dark);
  position: relative;
  line-height: 1.5;
}
.own-card ul li:last-child { border-bottom: none; }
.own-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 17px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}
.own-note {
  margin-top: 16px;
  padding: 13px 16px;
  background: rgba(140,123,94,0.09);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.88rem;
  color: var(--dark);
  line-height: 1.65;
}

/* ── SITE PLAN PAGE ── */
.sp-page-hero {
  background: var(--charcoal);
  padding: 130px 28px 70px;
  text-align: center;
}
.sp-page-hero h1 { color: var(--white); margin: 14px 0 10px; }
.sp-section { padding: 56px 0 80px; background: var(--white); }
.sp-legend-hint {
  font-size: 0.78rem;
  color: var(--muted);
  font-style: italic;
}
.sp-img-wrap {
  position: relative;
  display: block;
  width: 100%;
  margin-top: 30px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.13);
  border: 1px solid var(--border);
  background: var(--white);
}
.sp-plan-img {
  display: block;
  width: 100%;
  height: auto;
}
.sp-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
}
.sp-hit { transition: fill 0.18s; }
.sp-hit-available {
  fill: rgba(140,123,94,0.15);
  stroke: rgba(140,123,94,0.55);
  stroke-width: 3;
}
.sp-hit-sold {
  fill: rgba(40,40,40,0.13);
  stroke: rgba(40,40,40,0.32);
  stroke-width: 2;
}
.sp-hit-link { cursor: pointer; }
.sp-hit-link:hover .sp-hit-available,
.sp-hit-link:focus .sp-hit-available { fill: rgba(140,123,94,0.42); }
.sp-hit-label {
  text-anchor: middle;
  font-family: Inter, sans-serif;
  font-weight: 700;
  fill: #6B5A3E;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.18s;
}
.sp-hit-sub {
  text-anchor: middle;
  font-family: Inter, sans-serif;
  font-weight: 600;
  fill: #8C7B5E;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.18s;
}
.sp-hit-link:hover .sp-hit-label,
.sp-hit-link:focus .sp-hit-label,
.sp-hit-link:hover .sp-hit-sub,
.sp-hit-link:focus .sp-hit-sub { opacity: 1; }
.sp-sold-label {
  text-anchor: middle;
  font-family: Inter, sans-serif;
  font-weight: 600;
  fill: rgba(40,40,40,0.55);
  pointer-events: none;
}
.sp-sold-sub {
  text-anchor: middle;
  font-family: Inter, sans-serif;
  font-weight: 700;
  fill: rgba(40,40,40,0.45);
  pointer-events: none;
}
.sp-buildings { padding: 80px 0; background: var(--cream); }
.sp-cta-btns { display: flex; gap: 14px; flex-wrap: wrap; flex-shrink: 0; }
.sp-btn-white { background: var(--white); color: var(--gold-dark); border-color: var(--white); }
.sp-btn-white:hover { background: var(--cream); border-color: var(--cream); }
.sp-btn-outline { border-color: rgba(255,255,255,0.7); color: var(--white); }
.sp-btn-outline:hover { background: rgba(255,255,255,0.12); }

/* ── SITE PLAN ── */
.site-plan { padding: 100px 0; background: var(--cream); }
.bldg-site-plan { padding: 60px 0 90px; background: var(--cream); }
.site-plan-legend {
  display: flex;
  gap: 32px;
  justify-content: center;
  margin: 24px 0 0;
  flex-wrap: wrap;
}
.sp-legend-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--dark);
}
.sp-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}
.sp-available .sp-dot { background: var(--gold); }
.sp-sold .sp-dot { background: var(--charcoal); }
.site-plan-img-wrap {
  margin-top: 36px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.12);
  border: 1px solid var(--border);
  background: var(--white);
}
.site-plan-img-wrap img { width: 100%; display: block; }
.site-plan-caption {
  text-align: center;
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 16px;
  letter-spacing: 0.5px;
}

/* ── MOBILE IMPROVEMENTS ── */
@media (max-width: 768px) {
  /* Hero — aerial fallback always visible, deep cinematic overlay */
  .hero {
    height: 100dvh;
    min-height: 600px;
    background: url('../Westover Offices Website Assets/Website Images/Westover Aerial.jpg') center/cover no-repeat;
  }
  .hero-overlay {
    background:
      radial-gradient(ellipse at 50% 60%, transparent 25%, rgba(0,0,0,0.42) 100%),
      linear-gradient(180deg,
        rgba(0,0,0,0.62) 0%,
        rgba(0,0,0,0.18) 28%,
        rgba(0,0,0,0.18) 58%,
        rgba(0,0,0,0.80) 100%
      );
  }
  .hero-content { padding: 0 24px; }
  .hero-address { font-size: 0.64rem; letter-spacing: 3px; margin-bottom: 18px; }
  .hero h1 { margin-bottom: 16px; }
  .hero-sub { font-size: 0.94rem; margin-bottom: 32px; }
  .hero-actions { flex-direction: column; align-items: center; gap: 12px; }
  .hero-actions .btn { width: 100%; max-width: 320px; }
  .hero-scroll { display: none; }

  /* Navbar — always show gradient so logo/hamburger readable */
  .navbar:not(.scrolled) {
    background: linear-gradient(to bottom, rgba(0,0,0,0.65) 0%, transparent 100%);
    padding: 16px 0;
  }
  .navbar.scrolled { padding: 10px 0; }
  .nav-logo img { height: 38px; }
  .nav-toggle {
    padding: 10px 8px;
  }
  .nav-toggle span { width: 26px; height: 2.5px; gap: 6px; }

  /* Stats bar — horizontal scroll strip on mobile */
  .stats-bar {
    padding: 0;
    overflow: hidden;
    position: relative;
  }
  .stats-bar::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 64px;
    background: linear-gradient(to right, transparent, var(--charcoal));
    pointer-events: none;
    z-index: 2;
  }
  .stats-grid {
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    gap: 0;
    grid-template-columns: unset;
    padding: 0;
  }
  .stats-grid::-webkit-scrollbar { display: none; }
  .stat {
    flex: 0 0 auto;
    min-width: 44vw;
    padding: 28px 20px;
    border-right: none;
    border-bottom: none;
  }
  .stat:last-child { border-right: none; }
  .stat-num { font-size: 1.75rem; }
  .stat-lbl { font-size: 0.64rem; letter-spacing: 1.5px; }

  /* Section spacing */
  .overview, .video-section { padding: 72px 0; }
  .buildings { padding: 72px 0; }
  .location { padding: 72px 0; }
  .contact { padding: 72px 0; }
  .ownership-section { padding: 60px 0; }

  /* Overview image shorter on mobile */
  .overview-img-wrap { aspect-ratio: 16/9; }

  /* Location cards */
  .loc-card { padding: 28px 22px; }

  /* Building cards */
  .bldg-info { padding: 20px; }
  .bldg-info h3 { font-size: 1.1rem; }

  /* Building detail hero */
  .bldg-hero { height: 52vh; min-height: 340px; }

  /* Site plan */
  .site-plan-img-wrap { margin-top: 24px; }

  /* Contact */
  .contact-form-box { padding: 28px 22px; }

  /* Brochure CTA */
  .brochure-cta { padding: 52px 0; }
  .brochure-inner h2 { font-size: 1.6rem; }

  /* Footer */
  .footer { padding: 52px 0 0; }
  .footer-grid { gap: 32px; }
  .footer-bottom-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
  }
  .footer-bottom p,
  .footer-bottom .legal-links,
  .footer-bottom .site-by { text-align: center; white-space: nowrap; }
}

/* Disable sticky hover on touch devices */
@media (hover: none) and (max-width: 768px) {
  .nav-link:hover { background: none; color: rgba(255,255,255,0.88); }
  .dropdown a:hover { background: none; color: rgba(255,255,255,0.6); padding-left: 16px; }
}

/* ── SCROLL ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .bldg-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-grid .stat:nth-child(3) { border-right: none; }
  .overview-grid { gap: 52px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
  .bldg-detail-grid { grid-template-columns: 1fr 340px; gap: 40px; }
  .loc-grid { gap: 20px; }
}

@media (max-width: 768px) {
  /* Mobile nav backdrop */
  .nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.32s ease, visibility 0.32s ease;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
  }
  .nav-backdrop.open { opacity: 1; visibility: visible; }

  /* Mobile nav */
  .nav-menu {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(300px, 82vw);
    height: 100vh;
    height: 100dvh;
    background: #1A1818;
    flex-direction: column;
    align-items: flex-start;
    padding: 0 0 40px;
    transform: translateX(100%);
    transition: transform 0.32s cubic-bezier(0.4,0,0.2,1);
    gap: 0;
    overflow-y: auto;
    box-shadow: -12px 0 60px rgba(0,0,0,0.55);
    border-left: 1px solid rgba(255,255,255,0.05);
    z-index: 1000;
  }
  .nav-menu::before {
    content: '';
    display: block;
    position: sticky;
    top: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    flex-shrink: 0;
    z-index: 1;
  }
  .nav-menu > li:first-child { margin-top: 80px; }
  .nav-menu.open { transform: translateX(0); }
  .nav-toggle { display: flex; }
  .nav-menu { -webkit-tap-highlight-color: transparent; align-items: stretch; }

  /* Each top-level menu item gets the divider */
  .nav-menu > li {
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .nav-menu > li.nav-phone-group { border-bottom: none; }

  .nav-link {
    display: block;
    width: 100%;
    padding: 20px 22px;
    font-size: 1.05rem;
    border-radius: 0;
    border-bottom: none;
    letter-spacing: 0.3px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }
  .nav-link:active { background: rgba(140,123,94,0.18); color: var(--gold-light); }
  .nav-link.active { color: var(--gold-light); }

  /* Dropdown — indented under For Sale */
  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
    padding: 0 0 12px 0;
    margin: 0 0 0 22px;
    box-shadow: none;
    border-top: none;
    border-left: 2px solid rgba(140,123,94,0.4);
    border-radius: 0;
    min-width: unset;
  }
  .dropdown li { border-bottom: none; }
  .dropdown a {
    display: block;
    padding: 14px 18px;
    font-size: 0.92rem;
    color: rgba(255,255,255,0.62);
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }
  .dropdown a:active { color: var(--gold-light); background: rgba(140,123,94,0.12); }
  .nav-phone-group {
    width: 100%;
    box-sizing: border-box;
    padding: 20px 22px 0;
    margin-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.1);
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  .nav-phone {
    margin-left: 0;
    width: 80%;
    box-sizing: border-box;
    text-align: center;
    padding: 11px 12px;
    font-size: 0.84rem;
    letter-spacing: 0;
    white-space: normal;
    line-height: 1.4;
  }
  .nav-phone:last-child {
    background: transparent;
    border: 1px solid rgba(140,123,94,0.45);
    color: var(--gold-light);
  }
  .nav-phone:last-child:hover { background: rgba(140,123,94,0.12); }

  /* Prevent any horizontal overflow in the sidebar */
  .nav-menu { overflow-x: hidden; }

  .overview-grid { grid-template-columns: 1fr; gap: 44px; }
  .loc-grid { grid-template-columns: 1fr; }
  .bldg-grid { grid-template-columns: 1fr 1fr; }
  .sold-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid .stat { border-right: none; border-bottom: none; }
  .stats-grid .stat:nth-child(2n) { border-right: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .brochure-inner { flex-direction: column; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-brand { grid-column: span 1; }
  .bldg-detail-grid { grid-template-columns: 1fr; }
  .bldg-sidebar { position: static; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gal-img.span2 { grid-column: span 1; }
  .form-row { grid-template-columns: 1fr; }
  .img-tag { display: none; }
}

@media (max-width: 768px) {
  .ownership-grid { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .bldg-grid { grid-template-columns: 1fr; }
  .sold-grid { grid-template-columns: 1fr; max-width: 360px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .gallery-grid { grid-template-columns: 1fr; }
  .contact-form-box { padding: 28px 22px; }
}
