/* ============================================================
   The 30 on Galileo — style.css
   ============================================================ */

/* ── Variables ── */
:root {
  --green:       #1D3C3F;
  --green-dark:  #152d30;
  --gold:        #DAC188;
  --gold-dark:   #c4a96a;
  --white:       #FFFFFF;
  --soft-white:  #F7F7F7;
  --neutral:     #EDEBE7;
  --text:        #2B2B2B;
  --text-light:  #6B6B6B;
  --border:      #E0DEDB;

  --font-serif:  'DM Serif Display', Georgia, serif;
  --font-sans:   'Inter', system-ui, sans-serif;
  --font-script: 'Dancing Script', cursive;

  --nav-top-h:    96px;
  --nav-bottom-h: 48px;
  --nav-h:        144px;
  --gutter:       4vw;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
input, textarea, select {
  font-family: inherit; font-size: inherit;
  border: 1px solid var(--border); border-radius: 2px;
  padding: .65rem 1rem; width: 100%; outline: none; background: var(--white);
}
input:focus, textarea:focus, select:focus { border-color: var(--green); }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ── Utilities ── */
.container { width: 100%; padding: 0 var(--gutter); }
.sr-only { position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(0,0,0,0); }

/* ── Shared typography ── */
.section-label {
  display: block;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}
.section-label.light { color: rgba(218,193,136,0.8); }

/* ── Buttons ── */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--green);
  font-family: var(--font-sans);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  border-radius: 2px;
  transition: background .2s, transform .15s;
  white-space: nowrap;
}
.btn-primary:hover { background: var(--gold-dark); transform: translateY(-1px); }

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .95rem 2.5rem;
  border-radius: 2px;
  border: 1px solid rgba(255,255,255,0.5);
  transition: border-color .2s, background .2s;
  white-space: nowrap;
}
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

.btn-gold-outline {
  display: inline-block;
  background: transparent;
  color: var(--gold);
  font-family: var(--font-sans);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .95rem 2.5rem;
  border-radius: 2px;
  border: 1px solid var(--gold);
  transition: background .2s, color .2s;
}
.btn-gold-outline:hover { background: var(--gold); color: var(--green); }

/* ── Private page ── */
.private-wrap {
  min-height: 100vh; display: flex; align-items: center;
  justify-content: center; padding: 2rem; background: var(--green-dark);
}
.private-card {
  background: #fff; border-radius: 4px; padding: 2.5rem 2rem;
  width: 100%; max-width: 360px; text-align: center;
}
.private-card h1 { font-size: 1.25rem; margin-bottom: .5rem; }
.private-card p  { font-size: .875rem; color: var(--text-light); margin-bottom: 1.5rem; }
.private-card input { margin-bottom: 1rem; }
.private-card button {
  width: 100%; padding: .7rem; background: var(--green);
  color: #fff; border-radius: 2px; font-weight: 600;
}
.private-error { color: #c0392b; font-size: .8rem; margin-top: .5rem; }

/* ── Scroll reveal ── */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity .75s ease, transform .75s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   NAVIGATION
   ============================================================ */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background .3s ease, box-shadow .3s ease;
}

/* Top row */
.nav-top {
  height: var(--nav-top-h);
  background: transparent;
  transition: background .3s ease, height .35s ease;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.nav-scrolled .nav-top {
  height: 72px;
  background: var(--green);
  border-bottom-color: rgba(255,255,255,0.1);
}
.nav-top-inner {
  height: 100%;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; }
.nav-logo-img {
  height: 80px;
  width: auto;
  object-fit: contain;
  transition: height 0.35s ease;
}
.nav-scrolled .nav-logo-img {
  height: 52px;
}

.nav-book-btn {
  font-family: var(--font-sans);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--gold);
  padding: .7rem 1.9rem;
  border-radius: 2px;
  transition: background .2s;
  white-space: nowrap;
}
.nav-book-btn:hover { background: var(--gold-dark); }

/* Bottom row */
.nav-bottom {
  height: var(--nav-bottom-h);
  background: transparent;
  transition: background .3s ease;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-scrolled .nav-bottom {
  background: var(--green-dark);
  border-bottom-color: rgba(255,255,255,0.08);
}
.nav-bottom-inner {
  height: 100%;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-links-row {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-links-row a {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  transition: color .2s;
  position: relative;
  padding-bottom: 2px;
}
.nav-links-row a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .25s ease;
}
.nav-links-row a:hover { color: var(--white); }
.nav-links-row a:hover::after { width: 100%; }

.nav-address {
  font-size: .68rem;
  letter-spacing: .08em;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
}

/* Hamburger */
/* Hamburger — hidden on desktop, elegant two-bar design */
.nav-mobile-cta { display: none; }
.nav-hamburger { display: none; }
  align-items: center;
  gap: .6rem;
  padding: .4rem;
  cursor: pointer;
  background: none;
  border: none;
}
.nav-hamburger-label {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: color .2s;
}
.nav-hamburger-icon {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 28px;
}
.bar {
  display: block;
  height: 1.5px;
  background: rgba(255,255,255,0.85);
  border-radius: 2px;
  transform-origin: center;
  transition: transform .35s cubic-bezier(0.76, 0, 0.24, 1),
              width .3s ease,
              opacity .25s ease;
}
.bar-1 { width: 100%; }
.bar-2 { width: 65%; }

.nav-hamburger.is-open .bar-1 { transform: translateY(3.75px) rotate(45deg); width: 100%; }
.nav-hamburger.is-open .bar-2 { transform: translateY(-3.75px) rotate(-45deg); width: 100%; }
.nav-hamburger:hover .nav-hamburger-label { color: var(--white); }
.nav-hamburger:hover .bar { background: var(--white); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
  padding-top: calc(var(--nav-h) + 2rem);
  padding-bottom: 8rem;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.08) 0%,
    rgba(0,0,0,0.12) 40%,
    rgba(15,30,32,0.85) 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  padding: 0 var(--gutter);
  width: 100%;
  max-width: 820px;
}
.hero-overline {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: fadeUp .8s .3s forwards;
}
.hero-h1 {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 6.5vw, 5.5rem);
  font-weight: 400;
  line-height: 1.06;
  color: var(--white);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp .8s .5s forwards;
}
.hero-h1 span {
  display: block;
  white-space: nowrap;
}
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 2.75rem;
  opacity: 0;
  animation: fadeUp .8s .7s forwards;
}
.hero-sub-lease {
  color: var(--gold);
  font-weight: 600;
  letter-spacing: .04em;
  margin-bottom: 2.75rem;
  margin-top: -1.75rem;
}
.hero-ctas {
  display: flex; gap: 1rem; flex-wrap: wrap;
  opacity: 0; animation: fadeUp .8s .9s forwards;
}
.hero-scroll-indicator {
  position: absolute; bottom: 2.5rem; left: 50%;
  transform: translateX(-50%); z-index: 2;
}
.hero-scroll-indicator span {
  display: block; width: 1px; height: 54px;
  background: linear-gradient(to bottom, rgba(218,193,136,0), var(--gold));
  animation: scrollLine 2s ease infinite;
  margin: 0 auto;
}

/* Short / smaller laptop screens — keep the hero content clear of the fixed navbar */
@media (min-width: 769px) and (max-height: 820px) {
  .hero {
    padding-top: calc(var(--nav-h) + 1.5rem);
    padding-bottom: 4rem;
  }
  .hero-h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); }
  .hero-sub { margin-bottom: 1.5rem; }
  .hero-sub-lease { margin-top: -0.75rem; margin-bottom: 1.5rem; }
  .hero-scroll-indicator { display: none; }
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 1.6rem 0;
}
.trust-inner {
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem 2rem;
}
.trust-item {
  display: flex; align-items: center; gap: .6rem;
  font-size: .7rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--text);
}
.trust-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0;
}

/* ============================================================
   SPLIT SECTIONS
   ============================================================ */
/* ============================================================
   PINNED SLIDE SECTION
   ============================================================ */

/* Tall wrapper — page scrolls through this, one slide per 100vh */
.splits-wrapper {
  height: 400vh; /* 4 slides × 100vh */
  position: relative;
}

/* Sticky stage — catches each slide as the wrapper scrolls past */
.splits-stage {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}

/* Individual slides — stacked vertically, slide up on advance */
.split-slide {
  position: absolute;
  inset: 0;
  display: flex;
  pointer-events: none;
  z-index: 1;
  transform: translateY(100%); /* future slides wait below */
  transition: transform 0.85s cubic-bezier(0.76, 0, 0.24, 1);
}
.split-slide.is-prev {
  z-index: 2;
  transform: translateY(-100%); /* past slides exit above */
}
.split-slide.is-active {
  pointer-events: auto;
  z-index: 3;
  transform: translateY(0);
}
.split-slide.split-reverse {
  flex-direction: row-reverse;
}

/* Image half — flush to viewport edge */
.split-image {
  flex: 0 0 52%;
  overflow: hidden;
  position: relative;
}
.split-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Image travels slightly slower than the slide = depth during transition */
  transform: translateY(6%);
  transition: transform 0.85s cubic-bezier(0.76, 0, 0.24, 1);
}
.split-slide.is-active .split-image img {
  transform: translateY(0);
}
.split-slide.is-prev .split-image img {
  transform: translateY(-6%);
}

/* Content half */
.split-content {
  flex: 1;
  display: flex;
  align-items: center;
  background: var(--green);
  overflow-y: auto;
}
/* Alternating green shades across the four slides */
.split-content-1 { background: var(--green); }
.split-content-2 { background: #24484c; }
.split-content-3 { background: var(--green-dark); }
.split-content-4 { background: #1f4245; }

.split-content-inner {
  /* Right padding accounts for dots UI (gutter + ~48px dot zone) */
  padding: 5rem calc(var(--gutter) + 56px) 5rem calc(var(--gutter) + 2rem);
  width: 100%;
  transition: opacity 0.4s ease 0.55s, transform 0.4s ease 0.55s;
  opacity: 0;
  transform: translateY(12px);
}
.split-slide.is-active .split-content-inner {
  opacity: 1;
  transform: translateY(0);
}
.split-slide.is-prev .split-content-inner {
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity 0.5s ease 0s, transform 0.5s ease 0s;
}
/* Reversed slides: image is right, content is left — dots are on image side, normal padding */
.split-reverse .split-content-inner {
  padding: 5rem calc(var(--gutter) + 2rem) 5rem var(--gutter);
}

/* Typography — always white on green */
.split-h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 3.8vw, 3.6rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.split-h2.light { color: var(--white); }

.split-body {
  font-size: .975rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

.split-features {
  margin: 1.25rem 0 2rem;
  display: flex; flex-direction: column; gap: .65rem;
}
.split-features li {
  font-size: .9rem; color: rgba(255,255,255,0.65);
  padding-left: 1.1rem; position: relative;
}
.split-features li::before {
  content: '';
  position: absolute; left: 0; top: 50%;
  transform: translateY(-50%);
  width: 5px; height: 1px; background: var(--gold);
}

.split-amenities {
  margin: 1.25rem 0 2rem;
  display: flex; flex-direction: column; gap: .75rem;
}
.split-amenities li {
  font-size: .9rem;
  color: rgba(255,255,255,0.65);
  padding-left: 1.1rem; position: relative;
}
.split-amenities li::before {
  content: '';
  position: absolute; left: 0; top: 50%;
  transform: translateY(-50%);
  width: 5px; height: 1px; background: var(--gold);
}

/* Progress dots + counter — always on the image side, always visible */
.splits-ui {
  position: absolute;
  right: var(--gutter);
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.splits-dots {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.splits-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: 1px solid rgba(255,255,255,0.5);
  cursor: pointer;
  transition: background .3s, transform .3s, border-color .3s;
  padding: 0;
}
.splits-dot.is-active {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.4);
}
.splits-counter {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .1em;
  color: rgba(255,255,255,0.5);
  writing-mode: vertical-rl;
  text-orientation: mixed;
}
.splits-count-current {
  color: var(--gold);
}


.split-features {
  margin: 1.25rem 0 2rem;
  display: flex; flex-direction: column; gap: .65rem;
}
.split-features li {
  font-size: .9rem; color: rgba(255,255,255,0.65);
  padding-left: 1.1rem; position: relative;
}
.split-features li::before {
  content: '';
  position: absolute; left: 0; top: 50%;
  transform: translateY(-50%);
  width: 5px; height: 1px; background: var(--gold);
}

.split-amenities {
  margin: 1.25rem 0 2rem;
  display: flex; flex-direction: column; gap: .75rem;
}
.split-amenities li {
  font-size: .9rem;
  color: rgba(255,255,255,0.72);
  padding-left: 1.1rem; position: relative;
}
.split-amenities li::before {
  content: '';
  position: absolute; left: 0; top: 50%;
  transform: translateY(-50%);
  width: 5px; height: 1px; background: var(--gold);
}

/* ============================================================
   LOCATION SECTION (homepage)
   ============================================================ */
.location-section {
  background: var(--neutral);
}
.location-split {
  display: flex;
  min-height: 600px;
}
.location-content {
  flex: 0 0 38%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem var(--gutter) 6rem var(--gutter);
  gap: 1.5rem;
}
.location-h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 3.8vw, 3.8rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--text);
}
.location-h2 em { font-style: italic; color: var(--green); }
.location-body-text {
  font-size: .95rem;
  color: var(--text-light);
  line-height: 1.85;
  max-width: 400px;
}
/* Filters sit inline inside the content column */
.location-content .map-filters {
  background: transparent;
  border: none;
  padding: 0;
  flex-wrap: wrap;
  gap: .4rem;
}
.location-map-wrap {
  flex: 1;
  position: relative;
  min-height: 600px;
}
.location-map-wrap #map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* ============================================================
   GALLERY + LIGHTBOX
   ============================================================ */
.gallery-section {
  background: var(--green-dark);
  padding: 6rem 0 0;
}
.gallery-header {
  padding: 0 var(--gutter) 3.5rem;
}
.gallery-h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 3.8vw, 3.4rem);
  font-weight: 400;
  line-height: 1.12;
  color: var(--white);
}
.gallery-h2 em {
  font-style: italic;
  color: var(--gold);
}

/* Grid — 1 large left + 2×2 right (5 images) */
.gallery-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  grid-template-rows: 260px 260px;
  gap: 3px;
}
.gallery-item--large {
  grid-row: 1 / 3;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}
.gallery-item:hover img {
  transform: scale(1.04);
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(29, 60, 63, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s ease;
}
.gallery-overlay span {
  font-size: 2rem;
  font-weight: 300;
  color: rgba(255,255,255,0);
  line-height: 1;
  transition: color .3s ease, transform .3s ease;
  transform: scale(0.7);
}
.gallery-item:hover .gallery-overlay {
  background: rgba(29, 60, 63, 0.45);
}
.gallery-item:hover .gallery-overlay span {
  color: var(--gold);
  transform: scale(1);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(12, 22, 24, 0.97);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}
.lightbox-img-wrap {
  max-width: 88vw;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-img-wrap img {
  max-width: 88vw;
  max-height: 85vh;
  object-fit: contain;
  display: block;
  border: 1px solid rgba(218,193,136,0.15);
  transition: opacity .25s ease;
}
.lightbox-img-wrap img.is-loading {
  opacity: 0;
}
.lightbox-close {
  position: absolute;
  top: 1.5rem; right: 2rem;
  font-size: 2rem;
  line-height: 1;
  color: rgba(255,255,255,0.5);
  background: none; border: none;
  cursor: pointer;
  transition: color .2s;
}
.lightbox-close:hover { color: var(--gold); }

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  font-size: 1.4rem;
  color: rgba(255,255,255,0.4);
  background: none; border: none;
  cursor: pointer;
  padding: 1rem 1.5rem;
  transition: color .2s;
}
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }
.lightbox-prev:hover,
.lightbox-next:hover { color: var(--gold); }

.lightbox-counter {
  position: absolute;
  bottom: 1.75rem;
  left: 50%; transform: translateX(-50%);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px 200px;
  }
  .gallery-item--large { grid-row: 1; grid-column: 1 / 3; }
  .lightbox-prev { left: .25rem; }
  .lightbox-next { right: .25rem; }
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
  padding: 9rem var(--gutter);
  background: var(--green-dark);
  text-align: center;
}
.final-cta-inner { max-width: 680px; margin: 0 auto; }
.final-cta-h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  font-weight: 400; line-height: 1.1;
  color: var(--white); margin-bottom: 1.5rem;
}
.final-cta-body {
  font-size: 1rem; color: rgba(255,255,255,0.65);
  line-height: 1.8; margin-bottom: 2.5rem;
}
.final-cta-btns {
  display: flex; gap: 1rem;
  justify-content: center; flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
  background: var(--green);
  padding: 5rem 0 2.5rem;
  border-top: 1px solid rgba(218,193,136,0.15);
}
.footer-inner { padding: 0 var(--gutter); }
.footer-top {
  display: flex; justify-content: space-between;
  align-items: flex-start; gap: 3rem; flex-wrap: wrap;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 2rem;
}
.footer-logo-img { height: 72px; width: auto; object-fit: contain; margin-bottom: 1.5rem; }
.footer-tagline {
  font-size: .82rem; color: rgba(255,255,255,0.45);
  line-height: 1.75; max-width: 340px;
}
.footer-nav {
  display: flex; flex-direction: column;
  align-items: flex-end; gap: .9rem;
}
.footer-nav a {
  font-size: .72rem; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,0.6); transition: color .2s;
}
.footer-nav a:hover { color: var(--gold); }
.footer-cta { color: var(--gold) !important; font-weight: 700 !important; margin-top: .4rem; }
.footer-bottom {
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: .5rem;
  font-size: .72rem; color: rgba(255,255,255,0.25);
  letter-spacing: .05em;
}
.footer-bottom-right {
  display: flex; align-items: center; flex-wrap: wrap;
  gap: .5rem 1.25rem;
}
.footer-credit a { color: rgba(255,255,255,0.45); transition: color .2s; }
.footer-credit a:hover { color: var(--gold); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  :root { --gutter: 3vw; }
  .split-image { flex: 0 0 48%; }

}

@media (max-width: 768px) {
  :root {
    --nav-top-h:    68px;
    --nav-bottom-h: 0px;
    --gutter:       6vw;
  }

  /* Logo — fixed size on mobile, no resize */
  .nav-logo-img { height: 48px !important; transition: none !important; }

  /* Show hamburger, hide desktop CTA */
  .nav-hamburger { display: flex; }
  .nav-book-btn  { display: none; }

  /* Dropdown panel */
  .nav-bottom {
    position: absolute;
    top: var(--nav-top-h);
    left: 0; right: 0;
    height: auto !important;
    max-height: 0;
    overflow: hidden;
    background: var(--green) !important;
    transition: max-height .45s cubic-bezier(0.76, 0, 0.24, 1);
    border-bottom: none;
    box-shadow: 0 12px 40px rgba(0,0,0,0.25);
  }
  .nav-bottom.nav-open {
    max-height: 520px;
    border-bottom: 1px solid rgba(218,193,136,0.15);
  }

  .nav-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem var(--gutter) 2.5rem;
    gap: 0;
    height: auto;
    border-top: 1px solid rgba(218,193,136,0.15);
  }

  /* Nav links — large and editorial */
  .nav-links-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
    margin-bottom: 2rem;
  }
  .nav-links-row a {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
    color: rgba(255,255,255,0.85);
    padding: .6rem 0;
    width: 100%;
    border-bottom: none;
    transition: color .2s, padding-left .2s;
  }
  .nav-links-row a:hover { color: var(--gold); padding-left: .35rem; }
  .nav-links-row a::after { display: none; }

  /* Mobile CTA */
  .nav-mobile-cta {
    display: inline-block;
    background: var(--gold);
    color: var(--green);
    font-family: var(--font-sans);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: .85rem 2rem;
    border-radius: 2px;
    margin-bottom: 1.75rem;
    transition: background .2s;
  }
  .nav-mobile-cta:hover { background: var(--gold-dark); }

  /* Address — small and muted at bottom */
  .nav-address {
    display: block !important;
    font-size: .65rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.25);
  }

  /* Split sections stack */
  /* Slides stack vertically on mobile — no snap mechanism */
  .splits-wrapper { height: auto; }
  .splits-stage { position: relative; height: auto; overflow: visible; }
  .split-slide {
    position: relative; inset: auto;
    flex-direction: column;
    opacity: 1; pointer-events: auto;
    transform: none !important;
  }
  .split-slide.split-reverse { flex-direction: column; }
  .split-image { flex: none; height: 55vw; min-height: 260px; }
  .split-image img {
    position: relative; width: 100%; height: 100%;
    transform: none !important;
    inset: auto;
  }
  .split-content-inner,
  .split-reverse .split-content-inner {
    padding: 3.5rem var(--gutter);
    opacity: 1; transform: none !important;
    transition: none;
  }
  .splits-ui { display: none; }

  /* Location */
  .location-split { flex-direction: column; }
  .location-content { flex: none; padding: 4rem var(--gutter) 2.5rem; }
  .location-body-text { max-width: 100%; }
  .location-map-wrap { min-height: 380px; position: relative; }
  .location-map-wrap #map { position: absolute; inset: 0; }

  /* Hero */
  .hero-h1 { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-ctas { flex-direction: column; }

  /* Visual */
  .visual-statement { background-attachment: scroll; }

  /* Final CTA */
  .final-cta { padding: 6rem var(--gutter); }
  .final-cta-btns { flex-direction: column; align-items: center; }

  /* Footer */
  .footer-top { flex-direction: column; }
  .footer-nav { align-items: flex-start; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom-right { justify-content: center; }

  /* Trust */
  .trust-inner { justify-content: flex-start; gap: .85rem 2rem; }
}

@media (max-width: 480px) {
  .trust-inner { flex-direction: column; }
  .split-image { height: 72vw; }
}

/* ============================================================
   LOCATION PAGE
   ============================================================ */

/* Page Hero */
.page-hero {
  background: var(--green);
  padding: calc(var(--nav-h) + 5rem) var(--gutter) 6rem;
}
.page-hero-inner { max-width: 700px; }
.page-hero-h1 {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.page-hero-h1 em { font-style: italic; color: var(--gold); }
.page-hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  max-width: 480px;
}

/* Filter Bar */
.map-filters {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: 1.25rem var(--gutter);
  background: var(--white);
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}
.map-filter-btn {
  display: flex;
  align-items: center;
  gap: .45rem;
  font-family: var(--font-sans);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-light);
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: .5rem 1rem;
  cursor: pointer;
  transition: border-color .2s, color .2s, background .2s;
  white-space: nowrap;
}
.map-filter-btn:hover {
  border-color: var(--green);
  color: var(--green);
}
.map-filter-btn.is-active {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}
.filter-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Map container */
#map {
  height: 580px;
  width: 100%;
  background: var(--neutral);
}

/* Custom map markers */
.map-marker-home {
  width: 52px; height: 52px;
  background: var(--green);
  border: 3px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 16px rgba(0,0,0,0.3);
}
.map-marker-home span {
  font-family: var(--font-serif);
  font-size: .9rem;
  color: var(--gold);
  font-weight: 400;
}
.map-marker-pin {
  width: 14px; height: 14px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.9);
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
}

/* Leaflet popup override */
.leaflet-popup-content-wrapper {
  border-radius: 3px !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15) !important;
  padding: 0 !important;
}
.leaflet-popup-content { margin: 0 !important; }
.map-popup {
  padding: .85rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: .2rem;
  min-width: 160px;
}
.popup-cat {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.popup-name {
  font-size: .9rem;
  color: var(--text);
  font-weight: 600;
  line-height: 1.3;
}
.popup-note {
  font-size: .78rem;
  color: var(--text-light);
}

/* Highlights strip */
.location-highlights {
  background: var(--neutral);
  padding: 5rem var(--gutter);
}
.location-highlights-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.highlight-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem 3.5rem;
}
.highlight-number {
  font-family: var(--font-serif);
  font-size: 3rem;
  line-height: 1;
  color: var(--green);
  margin-bottom: .5rem;
}
.highlight-number em {
  font-style: normal;
  font-size: 1.1rem;
  color: var(--gold);
  margin-left: 2px;
}
.highlight-label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-light);
  max-width: 120px;
  line-height: 1.5;
}
.highlight-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  #map { height: 420px; }
  .highlight-divider { display: none; }
  .highlight-block { padding: 1.5rem 2rem; }
  .location-highlights-inner { gap: 0; }
  .map-filters { gap: .4rem; }
  .map-filter-btn { padding: .4rem .75rem; font-size: .68rem; }
}

/* ============================================================
   INNER PAGE HERO (reusable partial)
   ============================================================ */
.inner-hero {
  position: relative;
  min-height: 52vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding-bottom: 5rem;
}
.inner-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 30, 32, var(--overlay-opacity, 0.72));
}
.inner-hero-content {
  position: relative;
  z-index: 2;
  padding: calc(var(--nav-h) + 3rem) var(--gutter) 0;
  width: 100%;
  max-width: 800px;
}
.inner-hero-h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.inner-hero-sub {
  font-size: .975rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 2rem;
}
.inner-hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ============================================================
   FLOORPLANS PAGE
   ============================================================ */

/* Intro */
.fp-intro {
  padding: 6rem 0;
  background: var(--white);
}
.fp-intro-inner {
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.section-h2.dark { color: var(--text); }
.fp-intro-body p {
  font-size: .975rem;
  color: var(--text-light);
  line-height: 1.85;
  margin-bottom: 1.1rem;
  max-width: 480px;
}

/* Filter tabs */
.fp-section {
  background: var(--soft-white);
  padding: 5rem 0 7rem;
}
.fp-section-inner { padding: 0 var(--gutter); }

.fp-filters {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0;
}
.fp-filter-btn {
  font-family: var(--font-sans);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-light);
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  padding: .75rem 1.25rem;
  cursor: pointer;
  transition: color .2s, border-color .2s;
  margin-bottom: -1px;
  white-space: nowrap;
}
.fp-filter-btn:hover { color: var(--green); }
.fp-filter-btn.is-active {
  color: var(--green);
  border-bottom-color: var(--gold);
}

/* Cards grid */
.fp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.fp-card {
  background: var(--white);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: opacity .35s ease, transform .35s ease;
}
.fp-card.is-hidden {
  display: none;
}
.fp-card-image {
  position: relative;
  overflow: hidden;
  height: 280px;
}
.fp-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.fp-card:hover .fp-card-image img {
  transform: scale(1.03);
}
.fp-card-badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  background: var(--green);
  color: var(--gold);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .4rem .85rem;
  border-radius: 2px;
}
.fp-card-body {
  padding: 2rem 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  border: 1px solid var(--border);
  border-top: none;
}
.fp-card-label {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: .5rem;
}
.fp-card-name {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 1.25rem;
  line-height: 1.1;
}
.fp-card-features {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin-bottom: 2rem;
  flex: 1;
}
.fp-card-features li {
  font-size: .875rem;
  color: var(--text-light);
  padding-left: 1rem;
  position: relative;
  line-height: 1.5;
}
.fp-card-features li::before {
  content: '';
  position: absolute;
  left: 0; top: .6em;
  width: 4px; height: 1px;
  background: var(--gold);
}
.fp-card-actions {
  display: flex;
  align-items: center;
  gap: .75rem 1rem;
  flex-wrap: wrap;
}
.fp-card-actions .btn-primary,
.fp-card-actions .btn-gold-outline {
  padding: .8rem 1.5rem;
  font-size: .72rem;
}
.fp-card-tour {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .06em;
  color: var(--green);
  text-transform: uppercase;
  transition: color .2s, gap .2s;
}
.fp-card-tour:hover { color: var(--gold-dark); }

/* Feature split */
.fp-feature {
  display: flex;
  min-height: 60vh;
}
.fp-feature-image {
  flex: 0 0 52%;
  overflow: hidden;
}
.fp-feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fp-feature-content {
  flex: 1;
  background: var(--green);
  display: flex;
  align-items: center;
}
.fp-feature-inner {
  padding: 5rem var(--gutter) 5rem calc(var(--gutter) + 2rem);
}
.fp-feature-h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.fp-feature-body {
  font-size: .975rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.85;
  margin-bottom: 1.1rem;
  max-width: 440px;
}

/* Brochure */
.fp-brochure {
  position: relative;
  padding: 9rem var(--gutter);
  background-size: cover;
  background-position: center;
  text-align: center;
}
.fp-brochure-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 30, 32, 0.82);
}
.fp-brochure-inner {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin: 0 auto;
}
.fp-brochure-h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.fp-brochure-inner .fp-body-text {
  color: rgba(255,255,255,0.65);
  margin-bottom: 2.5rem;
  max-width: 100%;
}
.fp-brochure-inner .section-label { justify-content: center; }

/* Responsive */
@media (max-width: 1024px) {
  .fp-grid { grid-template-columns: 1fr; }
  .fp-card-image { height: 320px; }
}

@media (max-width: 768px) {
  .fp-intro-inner { grid-template-columns: 1fr; gap: 2rem; }
  .fp-intro-body p { max-width: 100%; }
  .fp-feature { flex-direction: column; min-height: auto; }
  .fp-feature-image { flex: none; height: 55vw; }
  .fp-feature-inner { padding: 3.5rem var(--gutter); }
  .fp-brochure-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .fp-brochure-image img { height: 260px; }
  .inner-hero { min-height: 45vh; }
}

/* ============================================================
   FLOORPLAN / VIRTUAL TOUR LIGHTBOX
   ============================================================ */
.fp-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9500;
  display: flex;
  flex-direction: column;
  background: rgba(12, 22, 24, 0.96);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.fp-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}
.fp-lightbox-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  background: var(--green);
  border-bottom: 1px solid rgba(218,193,136,0.2);
  flex-shrink: 0;
}
.fp-lightbox-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--white);
}
.fp-lightbox-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.fp-lightbox-download {
  font-size: .7rem;
  padding: .5rem 1.25rem;
}
.fp-lightbox-close {
  font-size: 1.75rem;
  line-height: 1;
  color: rgba(255,255,255,0.5);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0 .25rem;
  transition: color .2s;
}
.fp-lightbox-close:hover { color: var(--gold); }
.fp-lightbox-body {
  flex: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
/* Tour mode fills the viewport edge-to-edge */
.fp-lightbox.is-tour .fp-lightbox-body { padding: 0; }
.fp-lightbox-body img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}
.fp-lightbox-body iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.fp-lightbox-body .is-hidden { display: none; }

@media (max-width: 768px) {
  .fp-lightbox-header { padding: .85rem 1.25rem; }
  .fp-lightbox-body { padding: 1rem; }
}

/* ============================================================
   LOCATION PAGE (full)
   ============================================================ */

/* Intro */
.loc-intro { padding: 6rem 0; background: var(--white); }
.loc-intro-inner {
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.loc-intro-body p {
  font-size: .975rem; color: var(--text-light);
  line-height: 1.85; margin-bottom: 1.1rem;
}

/* Map section */
.loc-map-section { background: var(--soft-white); }
.loc-map-header {
  padding: 5rem var(--gutter) 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: end;
}
.loc-map-sub {
  font-size: .95rem; color: var(--text-light);
  line-height: 1.75; margin-top: .75rem;
  max-width: 420px;
}
.loc-map-section .map-filters {
  background: transparent;
  border: none;
  padding: 0;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.loc-map-section #map { height: 520px; }

/* Highlights grid */
.loc-highlights { background: var(--neutral); padding: 6rem 0; }
.loc-highlights-inner {
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2.5rem;
}
.loc-highlight-col .section-label { margin-bottom: 1.25rem; }
.loc-highlight-list {
  display: flex; flex-direction: column; gap: .65rem;
}
.loc-highlight-list li {
  font-size: .9rem; color: var(--text-light);
  padding-left: 1rem; position: relative; line-height: 1.5;
}
.loc-highlight-list li::before {
  content: '';
  position: absolute; left: 0; top: .6em;
  width: 4px; height: 1px; background: var(--gold);
}

/* Commute split */
.loc-commute {
  display: flex;
  min-height: 60vh;
}
.loc-commute-content {
  flex: 1;
  background: var(--green);
  display: flex;
  align-items: center;
}
.loc-commute-inner {
  padding: 5rem calc(var(--gutter) + 2rem) 5rem var(--gutter);
}
.loc-commute-h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  font-weight: 400; line-height: 1.1;
  color: var(--white); margin-bottom: 1.5rem;
}
.loc-commute-body {
  font-size: .975rem; color: rgba(255,255,255,0.68);
  line-height: 1.85; margin-bottom: 1.5rem; max-width: 420px;
}
.loc-commute-list {
  display: flex; flex-direction: column; gap: .65rem;
}
.loc-commute-list li {
  font-size: .9rem; color: rgba(255,255,255,0.65);
  padding-left: 1rem; position: relative;
}
.loc-commute-list li::before {
  content: '';
  position: absolute; left: 0; top: .6em;
  width: 4px; height: 1px; background: var(--gold);
}
.loc-commute-image {
  flex: 0 0 48%;
  overflow: hidden;
}
.loc-commute-image img {
  width: 100%; height: 100%; object-fit: cover;
}

/* Lifestyle */
.loc-lifestyle {
  padding: 8rem var(--gutter);
  background: var(--white);
  text-align: center;
}
.loc-lifestyle-inner { max-width: 680px; margin: 0 auto; }
.loc-lifestyle-h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 400; line-height: 1.1;
  color: var(--text); margin-bottom: 1.5rem;
}
.loc-lifestyle-h2 em { font-style: italic; color: var(--green); }
.loc-lifestyle-body {
  font-size: .975rem; color: var(--text-light); line-height: 1.85;
}

/* Visual statement */
.loc-visual {
  position: relative;
  height: 65vh; min-height: 420px;
  background-size: cover; background-position: center;
  background-attachment: fixed;
  display: flex; align-items: center; justify-content: center;
}
.loc-visual-overlay {
  position: absolute; inset: 0;
  background: rgba(15, 30, 32, 0.6);
}
.loc-visual-content { position: relative; z-index: 2; text-align: center; }

/* Responsive */
@media (max-width: 1024px) {
  .loc-highlights-inner { grid-template-columns: repeat(2, 1fr); }
  .loc-map-header { grid-template-columns: 1fr; gap: 2rem; }
  .loc-map-section .map-filters { justify-content: flex-start; }
}
@media (max-width: 768px) {
  .loc-intro-inner { grid-template-columns: 1fr; gap: 2rem; }
  .loc-commute { flex-direction: column; min-height: auto; }
  .loc-commute-image { flex: none; height: 55vw; }
  .loc-commute-inner { padding: 3.5rem var(--gutter); }
  .loc-highlights-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .loc-map-section #map { height: 400px; }
  .loc-visual { background-attachment: scroll; }
}
@media (max-width: 480px) {
  .loc-highlights-inner { grid-template-columns: 1fr; }
}

/* Clickable highlight list items */
.loc-highlight-list li[data-place] {
  transition: color .2s, padding-left .2s;
}
.loc-highlight-list li[data-place]:hover {
  color: var(--green);
  padding-left: 1.4rem;
}
.loc-highlight-list li[data-place]:hover::before {
  background: var(--green);
  width: 8px;
}

/* ============================================================
   AMENITIES PAGE
   ============================================================ */

/* Intro */
.am-intro { padding: 6rem 0; background: var(--white); }
.am-intro-inner {
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.am-intro-body p {
  font-size: .975rem; color: var(--text-light);
  line-height: 1.85; margin-bottom: 1.1rem;
}

/* Two-column amenities grid */
.am-grid-section { background: var(--soft-white); padding: 2px 0; }
.am-grid-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.am-col {
  background: var(--white);
  display: flex;
  flex-direction: column;
}
.am-col-alt { background: var(--soft-white); }

.am-col-image {
  height: 340px;
  overflow: hidden;
  flex-shrink: 0;
}
.am-col-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.am-col:hover .am-col-image img { transform: scale(1.02); }

.am-col-content {
  padding: 3.5rem var(--gutter);
  flex: 1;
}
.am-col-h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 2rem;
}

/* Amenity list items */
.am-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.am-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.am-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--gold-dark);
  margin-top: 2px;
}
.am-icon svg { width: 100%; height: 100%; }
.am-list li div:last-child {
  display: flex;
  flex-direction: column;
  gap: .2rem;
}
.am-list li strong {
  font-size: .9rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}
.am-list li span {
  font-size: .8rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* Feature split */
.am-feature {
  display: flex;
  min-height: 60vh;
}
.am-feature-image {
  flex: 0 0 50%;
  overflow: hidden;
}
.am-feature-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s ease;
}
.am-feature:hover .am-feature-image img { transform: scale(1.02); }
.am-feature-content {
  flex: 1;
  background: var(--green);
  display: flex;
  align-items: center;
}
.am-feature-inner {
  padding: 5rem calc(var(--gutter) + 2rem) 5rem var(--gutter);
}
.am-feature-h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  font-weight: 400; line-height: 1.1;
  color: var(--white); margin-bottom: 1.5rem;
}
.am-feature-body {
  font-size: .975rem; color: rgba(255,255,255,0.68);
  line-height: 1.85; margin-bottom: 1.1rem; max-width: 420px;
}
.am-feature-inner .btn-gold-outline { margin-top: 1rem; }

/* Built-in conveniences callout */
.am-callout {
  background: var(--soft-white);
  padding: 4rem var(--gutter);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.am-callout-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.am-callout-h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 1rem;
}
.am-callout-body {
  font-size: .975rem;
  color: var(--text-light);
  line-height: 1.85;
  margin-bottom: 1.75rem;
}

/* Lifestyle split */
.am-lifestyle { background: var(--neutral); padding: 0; }
.am-lifestyle-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.am-lifestyle-text {
  padding: 7rem var(--gutter) 7rem calc(var(--gutter) + 1rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.am-lifestyle-h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  font-weight: 400; line-height: 1.1;
  color: var(--text); margin-bottom: 1.5rem;
}
.am-lifestyle-body {
  font-size: .975rem; color: var(--text-light);
  line-height: 1.85; margin-bottom: 1rem; max-width: 460px;
}
.am-lifestyle-image {
  overflow: hidden;
  min-height: 480px;
}
.am-lifestyle-image img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%;
  transition: transform .8s ease;
}
.am-lifestyle:hover .am-lifestyle-image img { transform: scale(1.02); }

/* Location support */
.am-location {
  padding: 8rem var(--gutter);
  background: var(--green-dark);
  text-align: center;
}
.am-location-inner { max-width: 640px; margin: 0 auto; }
.am-location-h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 400; line-height: 1.1;
  color: var(--white); margin-bottom: 1.25rem;
}
.am-location-body {
  font-size: .975rem; color: rgba(255,255,255,0.65);
  line-height: 1.85; margin-bottom: 2.5rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .am-grid-inner { grid-template-columns: 1fr; }
  .am-col-image { height: 300px; }
  .am-lifestyle-inner { grid-template-columns: 1fr; }
  .am-lifestyle-image { min-height: 320px; order: -1; }
}
@media (max-width: 768px) {
  .am-intro-inner { grid-template-columns: 1fr; gap: 2rem; }
  .am-feature { flex-direction: column; min-height: auto; }
  .am-feature-image { flex: none; height: 55vw; }
  .am-feature-inner { padding: 3.5rem var(--gutter); }
  .am-col-content { padding: 3rem var(--gutter); }
  .am-lifestyle-text { padding: 4rem var(--gutter); }
}

/* ============================================================
   CONTACT / LEASING PAGE
   ============================================================ */

.contact-section {
  background: var(--soft-white);
  padding: 6rem 0 7rem;
}
.contact-inner {
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 5rem;
  align-items: start;
}

/* Form column */
.contact-h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 400;
  color: var(--text);
  margin-bottom: .75rem;
  line-height: 1.1;
}
.contact-intro-text {
  font-size: .95rem;
  color: var(--text-light);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

/* Form fields */
.leasing-form { display: flex; flex-direction: column; gap: 1.5rem; }

.lf-row { display: flex; flex-direction: column; gap: 1.5rem; }
.lf-row-2 { flex-direction: row; gap: 1.5rem; }
.lf-row-2 .lf-field { flex: 1; }

.lf-field {
  display: flex;
  flex-direction: column;
  gap: .45rem;
}
.lf-field label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text);
}
.lf-required { color: var(--gold-dark); }

.lf-field input,
.lf-field textarea {
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: .75rem 1rem;
  font-size: .9rem;
  background: var(--white);
  color: var(--text);
  transition: border-color .2s;
  font-family: var(--font-sans);
}
.lf-field input:focus,
.lf-field textarea:focus {
  border-color: var(--green);
  outline: none;
}
.lf-field input[type="date"] { color: var(--text-light); }

/* Suite type radio buttons */
.lf-suite-options {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.lf-option {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.lf-option input[type="radio"] { display: none; }
.lf-option span {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-light);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: .5rem 1rem;
  transition: all .2s;
  cursor: pointer;
  white-space: nowrap;
}
.lf-option input[type="radio"]:checked + span {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}
.lf-option:hover span { border-color: var(--green); color: var(--green); }

.lf-error {
  font-size: .85rem;
  color: #c0392b;
  padding: .75rem 1rem;
  background: #fdf0ee;
  border-left: 3px solid #c0392b;
  border-radius: 2px;
}
.lf-submit { align-self: flex-start; }

/* Sidebar */
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
}
.contact-sidebar-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 2rem;
}
.contact-sidebar-h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: .75rem;
  line-height: 1.2;
}
.contact-sidebar-body {
  font-size: .875rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

/* Contact details */
.contact-detail {
  display: flex;
  align-items: center;
  gap: .85rem;
  margin-bottom: 1rem;
}
.contact-detail:last-of-type { margin-bottom: 0; }
.contact-detail-icon {
  width: 36px; height: 36px;
  background: var(--soft-white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--green);
}
.contact-detail-icon svg { width: 16px; height: 16px; }
.contact-detail-label {
  display: block;
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: .15rem;
}
.contact-detail-value {
  font-size: .9rem;
  font-weight: 600;
  color: var(--green);
  transition: color .2s;
}
.contact-detail-value:hover { color: var(--gold-dark); }

/* Urgency card */
.contact-urgency {
  background: var(--green);
  border-color: transparent;
}
.contact-urgency-tag {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .6rem;
}
.contact-urgency .contact-sidebar-h3 { color: var(--white); }
.contact-urgency .contact-sidebar-body { color: rgba(255,255,255,0.65); }

/* Trust card */
.contact-trust { background: var(--neutral); border-color: transparent; }

/* Map */
.contact-map-section { background: var(--white); }
.contact-map-header {
  padding: 5rem var(--gutter) 2.5rem;
  display: flex;
  align-items: flex-end;
  gap: 3rem;
  flex-wrap: wrap;
}
.contact-map-header .section-h2.dark { margin-bottom: 0; }
.contact-map-section #map { height: 460px; }

/* Responsive */
@media (max-width: 1100px) {
  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
  .contact-sidebar { position: static; }
}
@media (max-width: 640px) {
  .lf-row-2 { flex-direction: column; }
  .contact-map-header { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
}

/* ============================================================
   FAQ PREVIEW
   ============================================================ */
.faq-preview {
  background: var(--neutral);
  padding: 7rem var(--gutter);
  text-align: center;
}
.faq-preview-inner { max-width: 600px; margin: 0 auto; }
.faq-preview-h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 1.25rem;
}
.faq-preview-body {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 2rem;
}
.faq-preview .btn-gold-outline {
  color: var(--green);
  border-color: var(--green);
}
.faq-preview .btn-gold-outline:hover {
  background: var(--green);
  color: var(--white);
}

/* ============================================================
   FAQ PAGE
   ============================================================ */

/* Intro */
.faq-intro {
  background: var(--white);
  padding: 6rem var(--gutter) 4rem;
  text-align: center;
}
.faq-intro-inner { max-width: 640px; margin: 0 auto; }
.faq-intro-inner .section-h2 { margin-left: auto; margin-right: auto; }
.faq-intro-body {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.8;
  max-width: 520px;
  margin: 0 auto;
}

/* FAQ section */
.faq-section {
  background: var(--soft-white);
  padding: 4rem 0 7rem;
}
.faq-inner {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

/* Category group */
.faq-group-heading {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--green);
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.faq-accordion {
  display: flex;
  flex-direction: column;
}

/* Individual FAQ item */
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.5rem 0;
  cursor: pointer;
  list-style: none;
  transition: color .2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--green); }

.faq-question {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.5;
  transition: color .2s;
}
.faq-item summary:hover .faq-question { color: var(--green); }

.faq-toggle {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  color: var(--gold-dark);
  transition: transform .3s ease;
}
.faq-toggle svg { width: 100%; height: 100%; }
.faq-item[open] .faq-toggle { transform: rotate(180deg); }

.faq-answer {
  padding: 0 3rem 1.75rem 0;
  font-size: .95rem;
  color: var(--text-light);
  line-height: 1.8;
  animation: faqSlide .3s ease;
}

@keyframes faqSlide {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Final CTA */
.faq-contact {
  background: var(--green-dark);
  padding: 8rem var(--gutter);
  text-align: center;
}
.faq-contact-inner { max-width: 640px; margin: 0 auto; }
.faq-contact-h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.faq-contact-body {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}
.faq-contact-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .faq-item summary { padding: 1.25rem 0; gap: 1rem; }
  .faq-question { font-size: .95rem; }
  .faq-answer { padding: 0 2rem 1.5rem 0; }
  .faq-contact-btns { flex-direction: column; align-items: center; }
}

/* "(adjacent)" tag in highlight list */
.loc-highlight-list li em {
  font-style: italic;
  font-size: .78rem;
  color: var(--gold-dark);
  margin-left: .35rem;
  font-weight: 500;
}

/* ============================================================
   BLOG — listing + cards
   ============================================================ */
.blog-section { background: var(--soft-white); padding: 5rem 0 7rem; }
.blog-section-inner { max-width: 1240px; margin: 0 auto; padding: 0 var(--gutter); }

.blog-h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text);
}

/* Category filter (mirrors the floorplan filter) */
.blog-filters {
  display: flex; gap: .5rem; flex-wrap: wrap;
  margin-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}
.blog-filter-btn {
  font-family: var(--font-sans);
  font-size: .75rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--text-light);
  padding: .5rem .25rem 1rem;
  margin-right: 1.25rem;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
}
.blog-filter-btn:hover { color: var(--green); }
.blog-filter-btn.is-active { color: var(--green); border-bottom-color: var(--gold); }

/* Grid */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }

/* Card */
.blog-card {
  background: var(--white);
  display: flex; flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform .35s ease, box-shadow .35s ease, opacity .35s ease;
}
.blog-card.is-hidden { display: none; }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(15,30,32,0.10); }
.blog-card-img-wrap {
  position: relative; display: block;
  height: 220px; overflow: hidden;
  background: var(--neutral);
}
.blog-card-img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.blog-card:hover .blog-card-img { transform: scale(1.04); }
.blog-card-img--placeholder {
  display: block;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
}
.blog-card-badge {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--green); color: var(--gold);
  font-size: .6rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  padding: .35rem .8rem; border-radius: 2px;
}
.blog-card-body { padding: 1.75rem 1.75rem 2rem; display: flex; flex-direction: column; flex: 1; }
.blog-card-date {
  font-size: .68rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold-dark); margin-bottom: .75rem;
}
.blog-card-title {
  font-family: var(--font-serif);
  font-size: 1.5rem; font-weight: 400; line-height: 1.2;
  color: var(--text); margin-bottom: .85rem;
}
.blog-card-title a { transition: color .2s; }
.blog-card-title a:hover { color: var(--gold-dark); }
.blog-card-excerpt {
  font-size: .9rem; color: var(--text-light); line-height: 1.65;
  margin-bottom: 1.5rem; flex: 1;
}
.blog-card-read {
  font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--green); transition: color .2s;
}
.blog-card-read:hover { color: var(--gold-dark); }

/* Empty state */
.blog-empty { text-align: center; max-width: 560px; margin: 2rem auto; }
.blog-empty .section-label { display: block; }
.blog-empty-body { font-size: 1rem; color: var(--text-light); line-height: 1.8; margin: 1rem 0 2rem; }

/* ============================================================
   BLOG — single post
   ============================================================ */
.post-section { background: var(--white); padding: 5rem 0 6rem; }
.post-wrap {
  max-width: 1180px; margin: 0 auto; padding: 0 var(--gutter);
  display: grid; grid-template-columns: 240px 1fr; gap: 4rem; align-items: start;
}
.post-wrap--full { grid-template-columns: 1fr; max-width: 760px; }

/* Table of contents */
.post-toc { position: sticky; top: calc(var(--nav-h) + 2rem); }
.post-toc-list { margin-top: 1.25rem; border-left: 1px solid var(--border); }
.post-toc-link {
  display: flex; gap: .75rem; align-items: baseline;
  padding: .5rem 0 .5rem 1.25rem; margin-left: -1px;
  border-left: 2px solid transparent;
  font-size: .85rem; color: var(--text-light); line-height: 1.4;
  transition: color .2s, border-color .2s;
}
.post-toc-link:hover { color: var(--green); }
.post-toc-link.is-active { color: var(--green); border-left-color: var(--gold); }
.post-toc-num { font-size: .68rem; font-weight: 600; color: var(--gold-dark); flex-shrink: 0; }

/* Article */
.post-article { min-width: 0; }
.post-meta { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.post-date { font-size: .8rem; color: var(--text-light); letter-spacing: .04em; }
.post-cat {
  font-size: .62rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold-dark); padding-left: 1rem; border-left: 1px solid var(--border);
}
.post-lede {
  font-family: var(--font-serif); font-size: 1.4rem; line-height: 1.5;
  color: var(--text); margin-bottom: 2.5rem;
}
.post-body p { font-size: 1.02rem; color: var(--text); line-height: 1.9; margin-bottom: 1.5rem; }
.post-body a { color: var(--gold-dark); text-decoration: underline; text-underline-offset: 2px; }
.post-section-heading {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 2.4vw, 2.1rem); font-weight: 400; line-height: 1.2;
  color: var(--text); margin: 2.75rem 0 1.25rem;
  scroll-margin-top: calc(var(--nav-h) + 1.5rem);
}
.post-back { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--border); }

/* Related */
.related-posts { background: var(--soft-white); padding: 5rem 0 6rem; border-top: 1px solid var(--border); }
.related-posts-inner { max-width: 1240px; margin: 0 auto; padding: 0 var(--gutter); }
.related-posts-header { margin-bottom: 2.5rem; text-align: center; }
.related-posts-header .section-label { display: block; }

/* Responsive */
@media (max-width: 1024px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .post-wrap { grid-template-columns: 1fr; gap: 0; max-width: 760px; }
  .post-toc { display: none; }
}
@media (max-width: 768px) {
  .blog-grid { grid-template-columns: 1fr; }
  .blog-section { padding: 3.5rem 0 5rem; }
  .post-section { padding: 3.5rem 0 4rem; }
}
