/* ═══════════════════════════════════════════════════
   BC MESA — styles.css
   JSLM Property Management · Class A Apartment Website

   DESIGN NOTE
   Same structural bones as Trails at Harris (identical
   class-name contract, so script.js and future JSLM
   sites stay interchangeable) with a distinct
   "Desert Modern" identity: warm charcoal + sand +
   terracotta, an optical serif display face, and an
   asymmetric split hero instead of a centered one.
   ═══════════════════════════════════════════════════ */

/* ─── Google Fonts ─────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,300;9..144,400;9..144,500;9..144,600;9..144,700&family=Inter:wght@300;400;500;600;700&display=swap');

/* ─── Design Tokens ─────────────────────────────── */
:root {
  /* Core palette — Desert Modern */
  --ink:         #1C1A17;   /* warm near-black  */
  --ink-soft:    #2A2621;
  --stone:       #3A342D;   /* deep warm brown  */
  --stone-light: #6E6357;
  --sand:        #F4EFE7;   /* section cream    */
  --sand-deep:   #E7DFD2;
  --warm-white:  #FBF9F5;
  --dune:        #D6C4AC;

  /* Accent */
  --clay:        #C06A3E;   /* terracotta       */
  --clay-light:  #D98A5F;
  --clay-deep:   #9E5330;
  --sage:        #6E7A63;   /* secondary accent */

  --dark-text:   #1C1A17;
  --muted:       rgba(28,26,23,0.58);

  /* Back-compat aliases — legacy JSLM class names use
     "gold"; on BC Mesa the accent is clay. Keeping the
     aliases means shared markup/JS ports without edits. */
  --gold:        var(--clay);
  --gold-light:  var(--clay-light);
  --navy:        var(--ink);
  --navy-dark:   var(--ink-soft);
  --navy-deep:   #12100E;
  --silver:      var(--stone-light);
  --cream:       var(--sand);

  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --section-pad:  clamp(80px, 10vw, 128px);
  --max-width:    1200px;
  --radius-sm:    2px;
  --radius-md:    3px;

  --nav-h:        88px;

  --transition-base: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);

  --shadow-card:  0 1px 2px rgba(28,26,23,0.05), 0 18px 40px -22px rgba(28,26,23,0.30);
  --shadow-lift:  0 2px 4px rgba(28,26,23,0.06), 0 34px 60px -28px rgba(28,26,23,0.40);
}

/* ─── Reset ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--warm-white);
  color: var(--dark-text);
  line-height: 1.7;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
:focus-visible { outline: 2px solid var(--clay); outline-offset: 3px; }

/* ─── PLACEHOLDER MARKERS ──────────────────────────
   Every unconfirmed BC Mesa fact is wrapped in
   <span class="ph">…</span>. While <body class="draft">
   they are tinted so nothing ships unfilled. Delete the
   "draft" class on <body> to preview the live look; the
   markers then render as ordinary text.
   ─────────────────────────────────────────────────── */
.draft .ph {
  background: rgba(192,106,62,0.14);
  box-shadow: 0 0 0 1px rgba(192,106,62,0.35) inset;
  border-radius: 2px;
  padding: 0 3px;
}
.draft .ph::after { content: ""; }
.draft-flag {
  position: fixed; left: 0; right: 0; top: 0; z-index: 9999;
  background: var(--clay-deep); color: #fff;
  font-family: var(--font-body); font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  text-align: center; padding: 6px 12px; line-height: 1.4;
}
body:not(.draft) .draft-flag { display: none; }
.draft { padding-top: 30px; }
.draft #main-nav { top: 30px; }

/* ─── Containers ───────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding-left: clamp(20px, 5vw, 40px);
  padding-right: clamp(20px, 5vw, 40px);
}

/* ─── Shared Type ──────────────────────────────── */
.section-label {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 16px;
}
.gold-divider {
  display: block;
  width: 54px; height: 2px;
  background: var(--clay);
  margin: 20px auto 0;
  position: relative;
}
.gold-divider::after {
  content: "";
  position: absolute; left: 62px; top: 0;
  width: 18px; height: 2px;
  background: rgba(192,106,62,0.35);
}
.gold-divider--left { margin-left: 0; margin-right: auto; }

h1, h2, h3 { font-family: var(--font-display); font-weight: 400; line-height: 1.12; letter-spacing: -0.012em; }

/* ─── Buttons ──────────────────────────────────── */
.btn-gold, .btn-outline-white, .btn-gold-outline, .btn-outline-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 15px 30px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
  white-space: nowrap;
}
.btn-gold {
  background: var(--clay);
  color: var(--warm-white);
  box-shadow: 0 12px 26px -14px rgba(158,83,48,0.85);
}
.btn-gold:hover { background: var(--clay-deep); transform: translateY(-2px); box-shadow: 0 18px 34px -16px rgba(158,83,48,0.9); }

.btn-outline-white { border: 1px solid rgba(251,249,245,0.55); color: var(--warm-white); }
.btn-outline-white:hover { background: var(--warm-white); color: var(--ink); border-color: var(--warm-white); }

.btn-gold-outline { border: 1px solid var(--clay); color: var(--clay); }
.btn-gold-outline:hover { background: var(--clay); color: var(--warm-white); }

.btn-outline-gold { border: 1px solid rgba(192,106,62,0.6); color: var(--clay); }
.btn-outline-gold:hover { background: var(--clay); color: var(--warm-white); border-color: var(--clay); }

/* ─── Fade-Up Animation ────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}
.fade-up.visible { opacity: 1; transform: none; }
.fade-up--d1 { transition-delay: 0.09s; }
.fade-up--d2 { transition-delay: 0.18s; }
.fade-up--d3 { transition-delay: 0.27s; }
.fade-up--d4 { transition-delay: 0.36s; }
.fade-up--d5 { transition-delay: 0.45s; }

@media (prefers-reduced-motion: reduce) {
  .fade-up { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ═══════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════ */
#main-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 5vw, 48px);
  /* Solid sand masthead: blends into the hero's left panel and
     forms a clean band across the hero image on the right. */
  background: var(--sand);
  border-bottom: 1px solid transparent;
  transition: background var(--transition-base), box-shadow var(--transition-base),
              border-color var(--transition-base), height var(--transition-base);
}
#main-nav.scrolled {
  background: rgba(251,249,245,0.96);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom-color: rgba(28,26,23,0.09);
  box-shadow: 0 10px 30px -22px rgba(28,26,23,0.55);
  height: 74px;
}
.nav-logo { display: flex; align-items: center; }
/* Nav carries the horizontal lockup (~3.7:1), so height is set low;
   if you swap in the stacked mark (~1.8:1), raise these to 42/36px. */
.nav-logo img { height: 34px; width: auto; transition: height var(--transition-base); }
#main-nav.scrolled .nav-logo img { height: 29px; }
.nav-logo-fallback {
  font-family: var(--font-display);
  font-size: 1.28rem;
  letter-spacing: 0.1em;
  color: var(--ink);
}

.nav-links { display: flex; align-items: center; gap: clamp(18px, 2.6vw, 34px); }
.nav-links a {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
  position: relative;
  padding: 6px 0;
  transition: color var(--transition-base);
}
.nav-links a::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--clay);
  transition: width var(--transition-base);
}
.nav-links a:hover { color: var(--clay); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.nav-cta::after { display: none; }

.nav-cta {
  background: var(--clay);
  color: var(--warm-white) !important;
  padding: 11px 22px !important;
  border-radius: var(--radius-sm);
  transition: background var(--transition-base), transform var(--transition-base);
}
.nav-cta:hover { background: var(--clay-deep); transform: translateY(-1px); }

.nav-hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--ink);
  transition: background var(--transition-base);
}

/* Mobile overlay */
.nav-mobile-overlay {
  position: fixed; inset: 0; z-index: 1200;
  background: var(--ink);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 22px;
  opacity: 0; pointer-events: none;
  transition: opacity var(--transition-base);
}
.nav-mobile-overlay.open { opacity: 1; pointer-events: auto; }
.nav-mobile-overlay a {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--warm-white);
  letter-spacing: 0.02em;
}
.nav-mobile-overlay a:hover { color: var(--clay-light); }
.nav-mobile-close {
  position: absolute; top: 22px; right: 26px;
  font-size: 2.4rem; line-height: 1; color: var(--warm-white);
}

/* ═══════════════════════════════════════════════
   HERO — asymmetric split (BC Mesa signature)
   ═══════════════════════════════════════════════ */
#hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 1fr);
  background: var(--sand);
  overflow: hidden;
}
.hero-bg {
  grid-column: 2;
  grid-row: 1;
  position: relative;
  background: linear-gradient(150deg, var(--stone) 0%, var(--clay-deep) 100%);
  background-size: cover;
  background-position: center;
  opacity: 1;
  transition: opacity 0.8s ease;
}
.hero-bg::after {
  /* soft feather where the image meets the sand panel */
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(244,239,231,0.92) 0%, rgba(244,239,231,0.10) 16%, rgba(0,0,0,0) 44%);
  pointer-events: none;
}
.hero-content {
  grid-column: 1;
  grid-row: 1;
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-h) + 40px) clamp(24px, 5vw, 76px) 64px clamp(24px, 7vw, 104px);
}
.hero-content::before {
  /* vertical accent rule */
  content: "";
  position: absolute;
  left: clamp(24px, 7vw, 104px);
  top: 50%;
  transform: translateY(-50%) translateX(-26px);
  width: 2px; height: 132px;
  background: linear-gradient(to bottom, var(--clay), rgba(192,106,62,0));
}
.hero-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 22px;
}
.hero-heading {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.15rem);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.022em;
  color: var(--ink);
  margin-bottom: 24px;
}
.hero-heading em {
  font-style: italic;
  font-weight: 300;
  color: var(--clay-deep);
}
.hero-sub {
  font-size: clamp(0.95rem, 1.15vw, 1.06rem);
  color: var(--stone-light);
  max-width: 30em;
  margin-bottom: 38px;
  line-height: 1.75;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
/* Desktop hero copy sits on the light sand panel, so the secondary
   CTA needs a dark outline; it flips to white below 900px where the
   hero collapses to a full-bleed dark image. */
.hero-actions .btn-outline-white { border-color: rgba(28,26,23,0.28); color: var(--ink); }
.hero-actions .btn-outline-white:hover { background: var(--ink); color: var(--warm-white); border-color: var(--ink); }

.hero-meta {
  margin-top: 44px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 34px;
  padding-top: 26px;
  border-top: 1px solid rgba(28,26,23,0.12);
}
.hero-meta-item { display: flex; flex-direction: column; gap: 2px; }
.hero-meta-val {
  font-family: var(--font-display);
  font-size: 1.22rem;
  color: var(--ink);
}
.hero-meta-lbl {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ═══════════════════════════════════════════════
   RESIDENCES
   ═══════════════════════════════════════════════ */
#residences {
  background: var(--warm-white);
  padding: var(--section-pad) 0;
}
.residences-header { text-align: center; margin-bottom: clamp(44px, 5vw, 66px); }
.residences-heading { font-size: clamp(2rem, 3.4vw, 3rem); color: var(--ink); }
.residences-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(24px, 3vw, 40px);
}
.residence-card {
  background: var(--warm-white);
  border: 1px solid rgba(28,26,23,0.09);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
  transform-style: preserve-3d;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}
.residence-card:hover { box-shadow: var(--shadow-lift); }
.residence-image {
  position: relative;
  height: 236px;
  overflow: hidden;
  background: linear-gradient(140deg, var(--dune), var(--stone));
}
.residence-image-inner {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform var(--transition-slow);
}
.residence-card:hover .residence-image-inner { transform: scale(1.05); }
.residence-image-label {
  position: absolute; top: 14px; left: 14px;
  background: rgba(251,249,245,0.94);
  color: var(--clay-deep);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
}
.residence-body { padding: clamp(24px, 2.6vw, 34px); display: flex; flex-direction: column; flex: 1; }
.residence-name { font-size: 1.7rem; color: var(--ink); margin-bottom: 20px; }
.residence-details { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.residence-detail { display: flex; flex-direction: column; gap: 3px; }
.residence-detail-val { font-size: 0.84rem; font-weight: 600; color: var(--ink); line-height: 1.35; }
.residence-detail-lbl {
  font-size: 0.57rem; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--muted);
}
.residence-divider { height: 1px; background: rgba(28,26,23,0.1); margin: 22px 0; }
.residence-features { display: grid; gap: 9px; margin-bottom: 26px; }
.residence-features li {
  position: relative;
  padding-left: 20px;
  font-size: 0.88rem;
  color: var(--stone-light);
}
.residence-features li::before {
  content: "";
  position: absolute; left: 0; top: 0.63em;
  width: 8px; height: 1px;
  background: var(--clay);
}
.residence-body .btn-gold-outline { margin-top: auto; align-self: flex-start; }

/* ═══════════════════════════════════════════════
   INTRO
   ═══════════════════════════════════════════════ */
#intro {
  background: var(--sand);
  padding: var(--section-pad) clamp(20px, 5vw, 40px);
  text-align: center;
}
.intro-inner { max-width: 780px; margin: 0 auto; }
.intro-heading { font-size: clamp(2rem, 3.6vw, 3.1rem); color: var(--ink); }
.intro-body { font-size: 1.02rem; color: var(--stone-light); line-height: 1.85; margin-top: 26px; }

/* ═══════════════════════════════════════════════
   PARALLAX BANNER
   ═══════════════════════════════════════════════ */
#parallax-banner {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.parallax-bg {
  position: absolute; inset: -12% 0;
  background: linear-gradient(150deg, var(--stone), var(--ink));
  background-size: cover;
  background-position: center;
  will-change: transform;
}
.parallax-content { position: relative; z-index: 2; padding: 40px 20px; width: 100%; }
.parallax-highlights {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px clamp(20px, 3vw, 44px);
}
.parallax-highlight-item {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  color: var(--warm-white);
  min-width: 150px;
}
.parallax-highlight-item i { font-size: 1.5rem; color: var(--clay-light); }
.parallax-highlight-item span {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; text-align: center;
}
.parallax-highlight-divider { width: 1px; height: 46px; background: rgba(251,249,245,0.22); }

/* ═══════════════════════════════════════════════
   AMENITIES — three columns
   ═══════════════════════════════════════════════ */
#amenities { background: var(--warm-white); }
.features-header { text-align: center; margin-bottom: clamp(46px, 5vw, 70px); }
.features-heading { font-size: clamp(2rem, 3.4vw, 3rem); color: var(--ink); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(30px, 3.4vw, 52px);
}
.feature-col { position: relative; padding-top: 8px; }
.feature-icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(192,106,62,0.4);
  border-radius: var(--radius-sm);
  color: var(--clay);
  font-size: 1.1rem;
  margin-bottom: 20px;
}
.feature-col-heading { font-size: 1.42rem; color: var(--ink); }
.feature-col-divider {
  display: block; width: 38px; height: 2px;
  background: var(--clay);
  margin: 16px 0 20px;
}
.feature-list { display: grid; gap: 10px; }
.feature-list li {
  position: relative;
  padding-left: 20px;
  font-size: 0.9rem;
  color: var(--stone-light);
}
.feature-list li::before {
  content: "";
  position: absolute; left: 0; top: 0.64em;
  width: 8px; height: 1px;
  background: var(--clay);
}

/* ═══════════════════════════════════════════════
   SPLIT SECTIONS
   ═══════════════════════════════════════════════ */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}
.split-image { position: relative; overflow: hidden; background: linear-gradient(150deg, var(--stone), var(--ink)); min-height: 340px; }
.split-image-inner {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
}
.split-copy {
  display: flex; align-items: center;
  background: var(--sand);
  padding: clamp(48px, 6vw, 92px) clamp(24px, 5vw, 76px);
}
.split-copy--dark { background: var(--ink); }
.split-copy--dark .split-copy-heading { color: var(--warm-white); }
.split-copy--dark .split-copy-body { color: rgba(251,249,245,0.74); }
.split-copy--dark .section-label { color: var(--clay-light); }
.split-copy-inner { max-width: 520px; }
.split-copy-heading { font-size: clamp(1.85rem, 3.1vw, 2.75rem); color: var(--ink); }
.split-copy-body { font-size: 1rem; color: var(--stone-light); line-height: 1.85; }
.split-copy .btn-gold, .split-copy .btn-gold-outline { margin-top: 32px; }
.split-section--img-right .split-copy { grid-column: 1; grid-row: 1; }
.split-section--img-right .split-image { grid-column: 2; grid-row: 1; }

/* ═══════════════════════════════════════════════
   PETS
   ═══════════════════════════════════════════════ */
#pets { background: var(--warm-white); padding: var(--section-pad) 0; }
.pets-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 4vw, 64px);
  align-items: center;
}
.pets-heading { font-size: clamp(1.9rem, 3.2vw, 2.75rem); color: var(--ink); }
.pets-body { font-size: 1rem; color: var(--stone-light); line-height: 1.85; }
.pets-policy { margin-top: 30px; display: grid; gap: 14px; }
.pets-policy-item {
  display: flex; align-items: center; gap: 16px;
  background: var(--sand);
  border-left: 2px solid var(--clay);
  padding: 16px 20px;
  border-radius: var(--radius-sm);
}
.pets-policy-icon {
  width: 38px; height: 38px; flex: none;
  display: flex; align-items: center; justify-content: center;
  background: var(--warm-white);
  border-radius: 50%;
  color: var(--clay);
}
.pets-policy-text { display: flex; flex-direction: column; font-size: 0.88rem; color: var(--stone-light); line-height: 1.5; }
.pets-policy-text strong {
  font-size: 0.63rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--ink); margin-bottom: 2px;
}
.pets-visual { position: relative; }
.pets-visual-inner {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-md);
  background: linear-gradient(150deg, var(--sage), var(--stone));
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-card);
}

/* ═══════════════════════════════════════════════
   LOCATION
   ═══════════════════════════════════════════════ */
#location { background: var(--sand); padding: var(--section-pad) 0; }
.location-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 4vw, 64px);
  align-items: center;
}
.location-map-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: var(--sand-deep);
}
.location-map-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.location-copy-heading { font-size: clamp(1.9rem, 3.2vw, 2.75rem); color: var(--ink); }
.location-callout {
  background: var(--warm-white);
  border-left: 2px solid var(--clay);
  padding: 18px 22px;
  border-radius: var(--radius-sm);
}
.location-callout-title {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--clay-deep); margin-bottom: 6px;
}
.location-callout-text { font-size: 0.9rem; color: var(--stone-light); line-height: 1.65; }
.location-list { margin-top: 26px; display: grid; gap: 16px; }
.location-list li { display: flex; gap: 14px; align-items: flex-start; }
.location-list li div:last-child { font-size: 0.88rem; color: var(--stone-light); line-height: 1.55; }
.location-list strong {
  display: block;
  font-size: 0.82rem; font-weight: 600; color: var(--ink);
  letter-spacing: 0.01em; margin-bottom: 1px;
}
.location-list-icon {
  width: 34px; height: 34px; flex: none;
  display: flex; align-items: center; justify-content: center;
  background: var(--warm-white);
  border: 1px solid rgba(28,26,23,0.09);
  border-radius: var(--radius-sm);
  color: var(--clay);
  font-size: 0.8rem;
}

/* ═══════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════ */
#contact { background: var(--ink) !important; }
#contact::before { border-color: rgba(192,106,62,0.16); }

#contact .contact-eyebrow { color: var(--clay-light) !important; }
#contact .contact__detail-label { color: rgba(251,249,245,0.5) !important; }

#contact .contact-sub,
#contact .form__sub,
#contact .form__note,
#contact .contact__form-wrap li { color: rgba(251,249,245,0.74) !important; }

#contact .gold-divider { background: var(--clay) !important; }
#contact .contact__form-wrap span[aria-hidden="true"] { background: rgba(251,249,245,0.22) !important; }

#contact .contact__form-wrap {
  background: rgba(251,249,245,0.05) !important;
  border-color: rgba(251,249,245,0.12) !important;
}

#contact .contact__detail-icon,
#contact .contact__form-wrap > div:first-child > div { background: rgba(251,249,245,0.09) !important; }

#contact .contact__form-wrap .btn-gold {
  background: var(--clay) !important;
  color: var(--warm-white) !important;
  box-shadow: none;
}

footer { background: var(--ink); color: rgba(251,249,245,0.66); padding: clamp(52px, 6vw, 78px) 0 28px; }

/* ═══════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════ */
footer { background: var(--sand); color: var(--stone-light); padding: clamp(52px, 6vw, 78px) 0 28px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
}
.nav-logo img { height: 60px; width: auto; transition: height var(--transition-base); }
#main-nav.scrolled .nav-logo img { height: 44px; }

.footer-logo img { height: 80px; width: auto; }

/* Footer logo uses the ink SVG directly — no filter. The Equal Housing
   badge only exists as white artwork, so that one still needs inverting. */
.footer-legal-links img { filter: invert(1); opacity: 0.75; }

.footer-tagline { margin-top: 16px; font-size: 0.86rem; line-height: 1.75; max-width: 30em; }
.footer-col-title {
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--ink); margin-bottom: 16px;
}
.footer-address { font-size: 0.88rem; line-height: 1.85; }
.footer-address a:hover, .footer-col-links a:hover { color: var(--clay-deep); }
.footer-col-links { display: grid; gap: 9px; font-size: 0.88rem; }
.footer-col-links a { transition: color var(--transition-base); }
.footer-bottom {
  margin-top: clamp(36px, 4vw, 54px);
  padding-top: 22px;
  border-top: 1px solid rgba(28,26,23,0.14);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.footer-copy { font-size: 0.76rem; color: rgba(28,26,23,0.5); }
.footer-legal-links { display: flex; align-items: center; gap: 18px; }

@media (max-width: 1024px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px)  { .footer-grid { grid-template-columns: 1fr; }
                             .footer-bottom { justify-content: center; text-align: center; } }
                             
/* ═══════════════════════════════════════════════
   STICKY MOVE-IN SPECIALS BANNER
   ═══════════════════════════════════════════════ */
#sticky-specials-banner {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 900;
  width: 300px;
  background: var(--warm-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 24px 60px -20px rgba(28,26,23,0.55);
  border: 1px solid rgba(28,26,23,0.08);
}
.sticky-banner-close {
  position: absolute; top: 6px; right: 10px; z-index: 3;
  font-size: 1.5rem; line-height: 1; color: var(--warm-white);
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}
.sticky-banner-img-wrap { position: relative; height: 108px; overflow: hidden; }
.sticky-banner-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.sticky-banner-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(28,26,23,0.25), rgba(28,26,23,0.65));
}
.sticky-banner-body { padding: 18px 20px 20px; text-align: center; }
.sticky-banner-label {
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--clay-deep); margin-bottom: 8px;
}
.sticky-banner-headline { font-family: var(--font-display); font-size: 1.28rem; color: var(--ink); line-height: 1.2; }
.sticky-banner-sub { font-size: 0.8rem; color: var(--stone-light); margin: 8px 0 14px; }
.sticky-banner-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--clay); color: var(--warm-white);
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 12px 18px; border-radius: var(--radius-sm);
  transition: background var(--transition-base);
}
.sticky-banner-cta:hover { background: var(--clay-deep); }

/* ═══════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .split-section { grid-template-columns: 1fr; }
  .split-section .split-image { grid-column: 1 !important; grid-row: 1 !important; height: 340px; min-height: 340px; }
  .split-section .split-copy { grid-column: 1 !important; grid-row: 2 !important; }
  .pets-inner, .location-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  /* Hero collapses to a single full-bleed image with scrim */
  #hero { grid-template-columns: 1fr; }
  .hero-bg { grid-column: 1; grid-row: 1; position: absolute; inset: 0; }
  .hero-bg::after {
    background: linear-gradient(to bottom, rgba(28,26,23,0.62) 0%, rgba(28,26,23,0.55) 45%, rgba(28,26,23,0.78) 100%);
  }
  .hero-content {
    grid-column: 1; grid-row: 1;
    padding: calc(var(--nav-h) + 48px) clamp(22px, 7vw, 44px) 72px;
  }
  .hero-content::before { display: none; }
  .hero-heading { color: var(--warm-white); }
  .hero-heading em { color: var(--clay-light); }
  .hero-sub { color: rgba(251,249,245,0.82); }
  .hero-label { color: var(--clay-light); }
  .hero-meta { border-top-color: rgba(251,249,245,0.22); }
  .hero-meta-val { color: var(--warm-white); }
  .hero-meta-lbl { color: rgba(251,249,245,0.6); }
  .hero-actions .btn-outline-white { border-color: rgba(251,249,245,0.55); color: var(--warm-white); }
  .hero-actions .btn-outline-white:hover { background: var(--warm-white); color: var(--ink); border-color: var(--warm-white); }
}

@media (max-width: 600px) {
  .residence-details { grid-template-columns: 1fr 1fr; }
  .parallax-highlight-divider { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { justify-content: center; text-align: center; }
  #sticky-specials-banner { right: 12px; left: 12px; width: auto; bottom: 12px; }
  .sticky-banner-img-wrap { height: 84px; }
  .btn-gold, .btn-outline-white, .btn-gold-outline, .btn-outline-gold { padding: 14px 22px; font-size: 0.72rem; }
}
