@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --charcoal: #171b18;
  --forest: #1f2722;
  --warm-white: #f8f3eb;
  --ivory: #fffdf8;
  --cream: #efe4d4;
  --sand: #f2e8da;
  --cedar: #95663b;
  --gold: #c49463;
  --text: #232522;
  --muted: #676960;
  --border: rgba(35, 37, 34, 0.13);
  --shadow: 0 26px 60px rgba(0, 0, 0, 0.12);
  --radius-lg: 30px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: 'Manrope', Arial, sans-serif; color: var(--text); background: var(--warm-white); }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
a { color: inherit; }

.site-header {
  position: fixed; z-index: 50; top: 0; left: 0; right: 0; min-height: 78px;
  padding: 0 44px; display: flex; align-items: center; justify-content: space-between;
  background: rgba(20, 23, 20, 0.58); backdrop-filter: blur(18px); color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.10); transition: background 240ms ease, min-height 240ms ease;
}
.site-header.is-scrolled, .site-header.solid { background: rgba(20, 23, 20, 0.94); min-height: 68px; }

.brand { text-decoration: none; display: inline-flex; align-items: center; gap: 12px; position: relative; z-index: 60; }
.brand-mark { display: inline-flex; width: 128px; color: #efe4d4; }
.brand-mark svg { width: 100%; height: auto; display: block; }
.brand-text strong { display: block; font-size: 15px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 800; }
.brand-text small { display: block; margin-top: 1px; color: rgba(255,255,255,0.72); font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; }

.nav { display: flex; align-items: center; gap: 24px; }
.nav a { text-decoration: none; color: rgba(255,255,255,0.88); font-size: 13px; letter-spacing: .08em; text-transform: uppercase; font-weight: 800; }
.nav-button, .footer-link {
  border: 1px solid rgba(255,255,255,0.34); background: rgba(255,255,255,0.06); color: #fff;
  padding: 12px 18px; border-radius: 999px; cursor: pointer; font-weight: 800;
}
.menu-toggle { display: none; position: relative; z-index: 60; width: 44px; height: 44px; border: 1px solid rgba(255,255,255,0.30); border-radius: 999px; background: rgba(255,255,255,0.08); padding: 0; }
.menu-toggle span { display: block; width: 18px; height: 2px; background: #fff; margin: 4px auto; transition: transform 220ms ease, opacity 220ms ease; }
.menu-open .menu-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
.menu-open .menu-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

h1, h2, h3 { font-family: 'Manrope', Arial, sans-serif; margin: 0; }
h1 { font-size: clamp(44px, 7vw, 86px); line-height: .98; letter-spacing: -0.06em; font-weight: 800; }
h2 { font-size: clamp(32px, 5vw, 56px); line-height: 1.04; letter-spacing: -0.05em; font-weight: 800; }
h3 { font-size: clamp(24px, 3vw, 34px); line-height: 1.08; letter-spacing: -0.04em; font-weight: 800; }

.section-kicker {
  margin: 0 0 14px; text-transform: uppercase; letter-spacing: 0.22em;
  font-size: 12px; font-weight: 800; color: var(--cedar);
}

.hero-shell {
  max-width: 1280px; margin: 0 auto; padding: 132px 44px 54px;
  display: grid; grid-template-columns: 1fr 1.08fr; gap: 30px; align-items: stretch;
}
.hero-copy {
  background: linear-gradient(180deg, var(--ivory) 0%, #f4ebdf 100%);
  border: 1px solid var(--border); border-radius: 38px; padding: clamp(34px, 5vw, 54px);
  box-shadow: var(--shadow); display: flex; flex-direction: column; justify-content: center;
}
.hero-subtitle { margin: 22px 0 0; max-width: 580px; color: var(--muted); font-size: clamp(18px, 2vw, 22px); line-height: 1.65; }
.hero-actions { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 14px; }
.primary-button, .secondary-button {
  display: inline-flex; align-items: center; justify-content: center; min-height: 52px;
  padding: 0 22px; border-radius: 999px; text-decoration: none; cursor: pointer; border: 0; font-weight: 800;
}
.primary-button { background: linear-gradient(180deg, var(--gold) 0%, var(--cedar) 100%); color: #fff; box-shadow: 0 14px 30px rgba(157, 107, 61, 0.24); }
.secondary-button { color: var(--charcoal); border: 1px solid var(--border); background: rgba(255,255,255,0.92); }
.primary-button.full { width: 100%; margin-top: 4px; }

.hero-visual {
  position: relative; min-height: 560px; overflow: hidden; border-radius: 38px;
  box-shadow: var(--shadow); background: #d9dfeb;
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; object-position: center center; }
.visual-note {
  position: absolute; left: 24px; right: 24px; bottom: 24px;
  background: rgba(22, 28, 24, 0.78); color: #fff; border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(14px); border-radius: 24px; padding: 18px 20px;
}
.visual-note span { display: block; text-transform: uppercase; letter-spacing: .18em; font-size: 11px; font-weight: 800; color: rgba(255,255,255,0.75); }
.visual-note strong { display: block; margin-top: 6px; font-size: 18px; line-height: 1.45; }

.summary-strip { display: grid; grid-template-columns: repeat(4, 1fr); background: var(--ivory); color: var(--text); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.summary-strip div { padding: 30px 34px; border-right: 1px solid var(--border); }
.summary-strip div:last-child { border-right: 0; }
.summary-strip strong { display: block; font-size: 36px; font-weight: 800; line-height: 1; letter-spacing: -0.04em; }
.summary-strip span { display: block; margin-top: 8px; color: var(--muted); font-size: 13px; text-transform: uppercase; letter-spacing: .11em; font-weight: 800; }

.section { padding: 92px 44px; max-width: 1240px; margin: 0 auto; }
.section-heading { max-width: 790px; }
.section-intro, .modal-intro { color: var(--muted); line-height: 1.75; font-size: 17px; }

.property-preview { padding-top: 72px; }
.property-card {
  margin-top: 30px; overflow: hidden; border-radius: 34px; background: #ece5da;
  border: 1px solid var(--border); box-shadow: var(--shadow);
}
.property-card img { width: 100%; height: auto; object-fit: cover; object-position: center center; }

.split-section { display: grid; grid-template-columns: .82fr 1.18fr; gap: 58px; align-items: start; }
.sticky-heading { position: sticky; top: 118px; }
.copy-panel {
  background: var(--ivory); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 44px); box-shadow: var(--shadow);
}
.copy-panel p { margin: 0; color: var(--muted); line-height: 1.9; font-size: 18px; }
.copy-panel strong { color: var(--charcoal); font-weight: 800; }

.scenic-grid-section { padding-top: 24px; }
.scenic-grid {
  margin-top: 30px; display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 18px;
  align-items: stretch;
}
.image-card {
  overflow: hidden; border-radius: 28px; background: var(--ivory); border: 1px solid var(--border);
  box-shadow: var(--shadow); display: flex; flex-direction: column;
}
.image-card.wide { grid-row: span 2; }
.image-card img { width: 100%; height: 100%; min-height: 260px; object-fit: cover; }
.image-card.wide img { min-height: 100%; }
.image-card-copy { padding: 20px 22px 24px; }
.image-card-copy p { margin: 8px 0 0; color: var(--muted); line-height: 1.7; }

.tabs-shell {
  margin-top: 38px; background: var(--ivory); border: 1px solid var(--border);
  border-radius: 34px; padding: 16px; box-shadow: var(--shadow);
}
.tabs-shell.light { background: #f2e9de; }
.tab-list {
  display: flex; gap: 8px; padding: 6px; background: rgba(23, 27, 24, .06);
  border-radius: 999px; width: fit-content; max-width: 100%; overflow-x: auto;
}
.tab-button {
  border: 0; background: transparent; border-radius: 999px; padding: 12px 18px;
  cursor: pointer; font-weight: 800; color: var(--muted); white-space: nowrap;
}
.tab-button.is-active { background: var(--charcoal); color: #fff; }
.tab-panel { display: none; padding: clamp(28px, 4vw, 48px); }
.tab-panel.is-active { display: block; animation: tabFade 260ms ease; }
.tab-panel p { max-width: 760px; margin: 14px 0 0; line-height: 1.8; color: var(--muted); font-size: 18px; }
.tab-panel strong { color: var(--charcoal); }
@keyframes tabFade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

.location-panel {
  margin-bottom: 56px; border-radius: 34px; background: linear-gradient(180deg, #f3ebdf 0%, #efe4d4 100%);
  display: flex; align-items: stretch; justify-content: space-between; gap: 32px;
}
.location-copy { max-width: 560px; }
.location-copy p { color: var(--muted); line-height: 1.75; font-size: 17px; }
.map-link { display: inline-flex; margin-top: 8px; color: var(--charcoal); font-weight: 800; text-decoration: none; border-bottom: 2px solid var(--cedar); }
.map-card {
  position: relative; flex: 0 0 min(420px, 100%); min-height: 304px; overflow: hidden;
  border-radius: 28px; background: #d9d0c2; border: 1px solid rgba(32, 35, 31, 0.16); box-shadow: 0 18px 44px rgba(0,0,0,0.10);
}
.map-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.22) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.22) 1px, transparent 1px); background-size: 46px 46px; opacity: 0.75; }
.map-road { position: absolute; background: rgba(255,255,255,0.82); border: 1px solid rgba(32, 35, 31, 0.08); box-shadow: 0 4px 14px rgba(0,0,0,0.06); }
.road-one { width: 140%; height: 34px; left: -18%; top: 48%; transform: rotate(-14deg); }
.road-two { width: 34px; height: 135%; left: 58%; top: -14%; transform: rotate(9deg); }
.road-three { width: 105%; height: 24px; left: -6%; top: 26%; transform: rotate(7deg); opacity: 0.62; }
.map-pin { position: absolute; left: 54%; top: 42%; width: 54px; height: 54px; transform: translate(-50%, -100%) rotate(45deg); background: var(--cedar); border-radius: 50% 50% 50% 0; box-shadow: 0 12px 24px rgba(0,0,0,0.25); }
.map-pin span { position: absolute; width: 18px; height: 18px; inset: 18px; border-radius: 50%; background: var(--warm-white); }
.map-label { position: absolute; left: 50%; bottom: 24px; transform: translateX(-50%); width: calc(100% - 44px); background: rgba(27, 33, 29, 0.90); color: #fff; border-radius: 18px; padding: 16px 18px; text-align: center; backdrop-filter: blur(10px); }
.map-label strong, .map-label span, .site-footer strong, .site-footer span { display: block; }
.map-label span, .site-footer span { margin-top: 4px; color: rgba(255,255,255,0.72); }

.site-footer { background: var(--charcoal); color: #fff; padding: 32px 44px; display: flex; align-items: center; justify-content: space-between; }
.footer-actions { display: flex; align-items: center; gap: 18px; }
.footer-actions a { color: #fff; text-decoration: none; font-weight: 800; font-size: 13px; text-transform: uppercase; letter-spacing: .08em; }
.floating-cta {
  position: fixed; right: 24px; bottom: 24px; z-index: 40; background: linear-gradient(180deg, var(--gold), var(--cedar));
  color: #fff; text-decoration: none; border-radius: 999px; padding: 14px 18px; font-weight: 800; box-shadow: 0 18px 38px rgba(0,0,0,.22);
}

.modal-backdrop { position: fixed; inset: 0; z-index: 100; background: rgba(0,0,0,0.66); display: none; align-items: center; justify-content: center; padding: 24px; }
.modal-backdrop.is-open { display: flex; }
.modal { position: relative; width: min(640px, 100%); max-height: min(92vh, 900px); overflow: auto; background: var(--warm-white); border-radius: 28px; padding: 34px; box-shadow: 0 24px 60px rgba(0,0,0,0.22); }
.modal-close { position: absolute; top: 18px; right: 20px; width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--border); background: #fff; cursor: pointer; font-size: 28px; line-height: 1; }
.modal h2 { font-size: clamp(30px, 5vw, 44px); }
.interest-form { display: grid; gap: 15px; }
.interest-form label { display: grid; gap: 7px; font-size: 13px; font-weight: 800; color: var(--charcoal); }
.interest-form input, .interest-form textarea, .interest-form select { width: 100%; border: 1px solid var(--border); border-radius: 14px; padding: 13px 14px; background: #fff; color: var(--text); outline: none; }
.checkbox-field { margin: 0; padding: 14px 14px 15px; border: 1px solid var(--border); border-radius: 16px; background: #fff; }
.checkbox-field legend { padding: 0 5px; font-size: 13px; font-weight: 800; color: var(--charcoal); }
.checkbox-label { display: flex !important; align-items: flex-start; gap: 10px !important; font-size: 13px !important; font-weight: 600 !important; line-height: 1.4; color: var(--muted) !important; }
.checkbox-label input { width: 18px; height: 18px; margin-top: 1px; flex: 0 0 auto; }
.form-note { font-size: 12px; line-height: 1.45; color: var(--muted); margin: 0; }
.form-status { min-height: 20px; margin: 0; color: var(--charcoal); font-weight: 700; }

.resident-page { background: #f8f3eb; }
.resident-hero { padding: 170px 44px 90px; background: linear-gradient(135deg, var(--charcoal), var(--forest)); color: #fff; }
.resident-hero h1 { max-width: 940px; }
.resident-hero p:not(.section-kicker) { max-width: 720px; line-height: 1.75; color: rgba(255,255,255,.78); font-size: 18px; }
.resident-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.resident-grid article { background: var(--ivory); border: 1px solid var(--border); border-radius: 28px; padding: 30px; box-shadow: var(--shadow); }
.resident-grid span { color: var(--cedar); font-weight: 800; letter-spacing: .18em; }
.resident-grid h2 { margin-top: 18px; font-size: 34px; }
.resident-grid p { color: var(--muted); line-height: 1.7; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 750ms ease, transform 750ms ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1080px) {
  .hero-shell { grid-template-columns: 1fr; padding-bottom: 34px; }
  .hero-visual { min-height: 420px; }
  .scenic-grid { grid-template-columns: 1fr 1fr; }
  .image-card.wide { grid-column: 1 / -1; grid-row: auto; }
}

@media (max-width: 980px) {
  .site-header { padding: 0 20px; }
  .menu-toggle { display: block; }
  .nav {
    position: fixed; inset: 0; z-index: 55; background: rgba(20, 23, 20, .98);
    display: none; flex-direction: column; align-items: flex-start; justify-content: center; padding: 90px 28px 34px; gap: 24px;
  }
  .menu-open .nav { display: flex; }
  .nav a { display: block; font-size: 20px; }
  .nav-button { width: 100%; justify-content: center; }
  h1 { font-size: clamp(40px, 13vw, 72px); }
  h2 { font-size: clamp(30px, 9vw, 50px); }
  .summary-strip { grid-template-columns: repeat(2, 1fr); }
  .summary-strip div { padding: 22px 18px; border-bottom: 1px solid var(--border); }
  .summary-strip div:nth-child(2n) { border-right: 0; }
  .summary-strip strong { font-size: 30px; }
  .summary-strip span { font-size: 11px; line-height: 1.35; }
  .section { padding: 68px 24px; }
  .split-section { grid-template-columns: 1fr; gap: 28px; }
  .sticky-heading { position: static; }
  .location-panel { display: flex; flex-direction: column; border-radius: 0; margin-bottom: 0; }
  .map-card { flex-basis: auto; width: 100%; min-height: 280px; }
  .site-footer { padding: 28px 24px; gap: 22px; flex-direction: column; align-items: flex-start; }
  .footer-actions { flex-direction: column; align-items: flex-start; }
  .resident-grid { grid-template-columns: 1fr; }
  .resident-hero { padding: 138px 24px 68px; }
}

@media (max-width: 560px) {
  .brand-mark { width: 92px; }
  .brand-text strong { font-size: 12px; }
  .brand-text small { display: none; }
  .hero-shell { padding: 112px 18px 26px; gap: 18px; }
  .hero-copy, .hero-visual { border-radius: 26px; }
  .hero-visual { min-height: 330px; }
  .hero-subtitle { font-size: 17px; }
  .hero-actions { gap: 10px; }
  .primary-button, .secondary-button { width: 100%; }
  .property-card, .copy-panel, .tabs-shell, .image-card { border-radius: 24px; }
  .tab-list { width: 100%; border-radius: 20px; }
  .tab-button { padding: 11px 14px; font-size: 13px; }
  .tab-panel { padding: 24px 14px 12px; }
  .scenic-grid { grid-template-columns: 1fr; }
  .floating-cta { right: 14px; bottom: 14px; left: 14px; text-align: center; justify-content: center; display: flex; }
  .modal { padding: 28px 20px; }
}

/* Final logo + polish updates */
.brand-mark {
  width: 118px !important;
  height: 38px;
  align-items: center;
}
.logo-img {
  width: 118px;
  height: auto;
  max-height: 38px;
  object-fit: contain;
  display: block;
}
.brand-text strong {
  letter-spacing: 0.14em;
}
.hero-copy {
  min-height: 560px;
}
.hero-visual img {
  object-position: center 42%;
}
.property-card img {
  max-height: 620px;
  object-fit: cover;
  object-position: center 42%;
}
.scenic-grid .image-card:nth-child(2) img {
  object-position: center 58%;
}
@media (max-width: 560px) {
  .brand-mark, .logo-img {
    width: 86px !important;
    max-height: 32px;
  }
  .hero-copy {
    min-height: auto;
  }
}


/* Sign-based logo update */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

.sign-brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
}

.brand-sign-logo {
  width: 188px;
  height: auto;
  display: block;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.22));
}

@media (max-width: 560px) {
  .brand-sign-logo {
    width: 140px;
  }
}


/* Outline logo update */
.sign-brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
}
.brand-sign-logo {
  width: 210px;
  height: auto;
  display: block;
}
@media (max-width: 560px) {
  .brand-sign-logo {
    width: 148px;
  }
}

.hero-visual img {
  object-position: center 48%;
}
.property-card img {
  max-height: 640px;
  object-fit: cover;
  object-position: center 46%;
}

/* Landscape flow section */
.landscape-band {
  position: relative;
  min-height: 460px;
  margin: 12px 0 0;
  background-image: url('images/mount-peak-silhouette-bg.png');
  background-size: cover;
  background-position: center center;
  overflow: hidden;
}
.landscape-band__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18, 21, 19, 0.74), rgba(18, 21, 19, 0.32) 58%, rgba(18, 21, 19, 0.08)),
    linear-gradient(180deg, rgba(18, 21, 19, 0.05), rgba(18, 21, 19, 0.60));
}
.landscape-band__inner {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
  padding: 92px 44px;
  color: #fff;
}
.landscape-band__inner .section-kicker {
  color: #f0d6b7;
}
.landscape-band__inner p {
  max-width: 700px;
  margin: 18px 0 0;
  color: rgba(255,255,255,0.86);
  line-height: 1.75;
  font-size: 18px;
}

@media (max-width: 980px) {
  .landscape-band__inner {
    padding: 74px 24px;
  }
}
@media (max-width: 560px) {
  .landscape-band {
    min-height: 400px;
  }
  .landscape-band__inner {
    padding: 58px 20px;
  }
}


/* Approved grass landscape background update */
.brand-sign-logo {
  width: 212px;
  height: auto;
  display: block;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.22));
}
@media (max-width: 560px) {
  .brand-sign-logo {
    width: 148px;
  }
}

.landscape-band {
  position: relative;
  min-height: 470px;
  margin: 12px 0 0;
  background-image: url('images/foothill-grass-background.png');
  background-size: cover;
  background-position: center center;
  overflow: hidden;
}

.landscape-band__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(20, 22, 19, 0.72), rgba(20, 22, 19, 0.34) 58%, rgba(20, 22, 19, 0.10)),
    linear-gradient(180deg, rgba(20, 22, 19, 0.08), rgba(20, 22, 19, 0.56));
}

.landscape-band__inner {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
  padding: 92px 44px;
  color: #fff;
}

.landscape-band__inner .section-kicker {
  color: #f0d6b7;
}

.landscape-band__inner p {
  max-width: 700px;
  margin: 18px 0 0;
  color: rgba(255,255,255,0.88);
  line-height: 1.75;
  font-size: 18px;
}

@media (max-width: 980px) {
  .landscape-band__inner {
    padding: 74px 24px;
  }
}
@media (max-width: 560px) {
  .landscape-band {
    min-height: 400px;
  }
  .landscape-band__inner {
    padding: 58px 20px;
  }
}


/* Representative apartment layout section */
.layout-showcase {
  padding-top: 74px;
}

.layout-showcase-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 22px;
  align-items: stretch;
}

.layout-image-card,
.layout-copy-card {
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: 34px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.layout-image-card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.layout-image-card img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  display: block;
}

.layout-copy-card {
  padding: clamp(28px, 4vw, 44px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.layout-copy-card h3 {
  margin: 0;
}

.layout-copy-card p {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.75;
  font-size: 17px;
}

.layout-copy-card ul {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.layout-copy-card li {
  padding: 13px 14px;
  border-radius: 16px;
  background: var(--cream);
  color: var(--charcoal);
  font-weight: 800;
}

/* Approved grass background only */
.landscape-band {
  background-image: url('images/foothill-grass-background.png') !important;
  background-size: cover;
  background-position: center center;
}

@media (max-width: 980px) {
  .layout-showcase-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .layout-image-card,
  .layout-copy-card {
    border-radius: 24px;
  }

  .layout-image-card {
    padding: 10px;
  }

  .layout-image-card img {
    border-radius: 18px;
  }
}


/* Eye-catching photo hero update */
.hero-shell.hero-shell-photo {
  position: relative;
  max-width: min(1380px, calc(100% - 32px));
  margin: 18px auto 0;
  padding: 132px 36px 38px;
  border-radius: 42px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(14, 18, 16, 0.50), rgba(14, 18, 16, 0.18) 55%, rgba(14, 18, 16, 0.34)),
    linear-gradient(180deg, rgba(14,18,16,0.12), rgba(14,18,16,0.28)),
    url('images/hero-eagles-clear.jpg');
  background-size: cover;
  background-position: center center;
  box-shadow: 0 26px 60px rgba(0,0,0,0.16);
}

.hero-shell.hero-shell-photo .hero-copy {
  background: rgba(255, 252, 246, 0.90);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.42);
  box-shadow: 0 20px 44px rgba(0,0,0,0.12);
}

.hero-shell.hero-shell-photo .hero-subtitle {
  max-width: 540px;
}

.hero-shell.hero-shell-photo .hero-visual {
  min-height: 540px;
  border: 1px solid rgba(255,255,255,0.26);
  box-shadow: 0 20px 44px rgba(0,0,0,0.16);
}

.hero-shell.hero-shell-photo .hero-visual img {
  object-position: center 46%;
}

.hero-shell.hero-shell-photo .visual-note {
  background: rgba(22, 28, 24, 0.76);
  backdrop-filter: blur(16px);
}

@media (max-width: 980px) {
  .hero-shell.hero-shell-photo {
    max-width: calc(100% - 20px);
    margin-top: 12px;
    padding: 112px 18px 20px;
    gap: 18px;
    background-position: center center;
  }
}

@media (max-width: 560px) {
  .hero-shell.hero-shell-photo {
    max-width: calc(100% - 14px);
    padding: 98px 12px 14px;
    border-radius: 28px;
  }

  .hero-shell.hero-shell-photo .hero-copy,
  .hero-shell.hero-shell-photo .hero-visual {
    border-radius: 24px;
  }

  .hero-shell.hero-shell-photo .hero-visual {
    min-height: 320px;
  }
}


/* Final uploaded logo + cleaner overview copy */
.brand-sign-logo.final-logo {
  width: 220px;
  height: auto;
  max-height: 58px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 4px 14px rgba(0,0,0,0.28));
}

.copy-panel p {
  font-size: 18px;
  line-height: 1.85;
  color: var(--muted);
}

.copy-panel strong {
  font-weight: 700;
  color: var(--charcoal);
}

@media (max-width: 560px) {
  .brand-sign-logo.final-logo {
    width: 155px;
    max-height: 42px;
  }
}


/* Multi-page update */
.subpage main {
  padding-top: 96px;
}

.page-hero {
  max-width: 1240px;
  margin: 0 auto;
  padding: 112px 44px 42px;
}

.page-hero h1 {
  max-width: 940px;
}

.page-hero p:not(.section-kicker) {
  max-width: 720px;
  margin: 22px 0 0;
  color: var(--muted);
  line-height: 1.75;
  font-size: 18px;
}

.subpage .section {
  padding-top: 48px;
}

.subpage .landscape-band {
  margin-top: 48px;
}

@media (max-width: 980px) {
  .subpage main {
    padding-top: 78px;
  }

  .page-hero {
    padding: 86px 24px 32px;
  }
}

@media (max-width: 560px) {
  .page-hero {
    padding: 72px 20px 26px;
  }
}


/* Clean multi-page navigation update */
.subpage main {
  padding-top: 96px;
}

.page-hero {
  max-width: 1240px;
  margin: 0 auto;
  padding: 112px 44px 36px;
}

.page-hero h1 {
  max-width: 960px;
}

.page-hero p:not(.section-kicker) {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--muted);
  line-height: 1.75;
  font-size: 18px;
}

.detail-grid-page,
.location-cards-page {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding-top: 44px;
}

.detail-grid-page article,
.location-cards-page article,
.layout-note-panel,
.community-copy-strip {
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: clamp(26px, 4vw, 38px);
  box-shadow: var(--shadow);
}

.detail-grid-page span {
  display: inline-block;
  color: var(--cedar);
  font-weight: 800;
  letter-spacing: .18em;
  margin-bottom: 18px;
}

.detail-grid-page p,
.location-cards-page p,
.layout-note-panel p,
.community-copy-strip p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 17px;
}

.community-visual-page {
  padding-top: 44px;
}

.community-copy-strip {
  margin-top: 22px;
}

.layout-note-panel {
  margin-top: 0;
}

.subpage .layout-showcase {
  padding-top: 44px;
}

.subpage .landscape-band {
  margin-top: 48px;
}

@media (max-width: 980px) {
  .subpage main {
    padding-top: 78px;
  }

  .page-hero {
    padding: 86px 24px 26px;
  }

  .detail-grid-page,
  .location-cards-page {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .page-hero {
    padding: 72px 20px 22px;
  }
}


/* ===== Final refresh update ===== */
.brand-sign-logo.final-logo { height: 54px; width: auto; display: block; }
.nav a { font-size: 12px; letter-spacing: .10em; }
.nav a:hover, .nav a:focus-visible { color: #fff; }
.site-footer strong { display:block; }
.site-footer span { display:block; color: rgba(255,255,255,.7); }

.hero-banner {
  position: relative; min-height: 96vh; display: flex; align-items: flex-end;
  overflow: hidden; isolation: isolate;
}
.hero-banner__image {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.hero-banner-home .hero-banner__image { object-position: center center; }
.hero-banner__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,18,16,.18) 0%, rgba(15,18,16,.34) 44%, rgba(15,18,16,.72) 100%);
}
.hero-banner__content {
  position: relative; z-index: 2; max-width: 1240px; width: 100%; margin: 0 auto;
  padding: 180px 44px 72px; color: #fff;
}
.hero-banner__content h1 { max-width: 760px; }
.hero-banner__text {
  max-width: 660px; margin: 22px 0 0; color: rgba(255,255,255,.88);
  font-size: clamp(18px, 2.2vw, 22px); line-height: 1.7;
}
.section-kicker-light { color: rgba(255,255,255,.85); }
.hero-secondary { background: rgba(255,255,255,.12); color:#fff; border:1px solid rgba(255,255,255,.25); }
.hero-secondary:hover { background: rgba(255,255,255,.18); }
.clean-stats { margin-top: -30px; position: relative; z-index: 4; }

.editorial-intro {
  display:grid; grid-template-columns: .95fr 1.05fr; gap: 34px; align-items:start;
}
.narrow-heading { max-width: 500px; }
.editorial-intro__copy p {
  margin: 0 0 18px; color: var(--muted); font-size: 18px; line-height: 1.82;
}
.feature-grid-overview {
  display:grid; grid-template-columns: repeat(3,1fr); gap: 20px; padding-top: 32px;
}
.feature-grid-overview article,
.layout-stats article,
.location-cards-page article,
.resident-grid article,
.layout-note-panel,
.layout-copy-card,
.community-copy-strip,
.location-copy,
.map-card {
  background: var(--ivory); border:1px solid var(--border); border-radius:28px; box-shadow: var(--shadow);
}
.feature-grid-overview article { padding: 30px; }
.feature-grid-overview span { display:block; font-size:12px; font-weight:800; text-transform:uppercase; letter-spacing:.2em; color: var(--cedar); margin-bottom:12px; }
.feature-grid-overview p { color: var(--muted); line-height: 1.78; }

.image-copy-split {
  display:grid; grid-template-columns: 1.05fr .95fr; gap: 28px; align-items: stretch;
}
.image-copy-split__copy {
  background: linear-gradient(180deg, var(--ivory) 0%, #f4ebdf 100%);
  border:1px solid var(--border); border-radius: 30px; box-shadow: var(--shadow); padding: clamp(28px, 4vw, 40px);
  display:flex; flex-direction:column; justify-content:center;
}
.image-copy-split__copy p { color: var(--muted); line-height:1.8; }
.text-link { text-decoration:none; font-weight:800; color: var(--cedar); margin-top: 10px; }
.tall-image img { width:100%; height:100%; object-fit:cover; min-height: 560px; }
.soft-card img { object-position: center center; }

.landscape-band-grass { background-image: url('images/foothill-grass-background.png'); }
.landscape-band { background-size: cover; background-position: center center; }
.landscape-band__overlay { background: linear-gradient(180deg, rgba(11,13,12,.18), rgba(11,13,12,.62)); }

.subpage main { padding-top: 86px; }
.page-hero { max-width: 1240px; margin:0 auto; padding: 56px 44px 18px; }
.page-hero p:not(.section-kicker) { max-width: 740px; margin-top:20px; color: var(--muted); line-height:1.75; font-size:18px; }
.compact-hero { min-height: 70vh; }
.narrow-content h1 { max-width: 820px; }

.scenic-two-up { display:grid; grid-template-columns: repeat(2,1fr); gap:22px; }
.scenic-card {
  overflow:hidden; border-radius:30px; box-shadow: var(--shadow); background: var(--ivory); border:1px solid var(--border);
}
.scenic-card img { width:100%; height:300px; object-fit:cover; }
.scenic-card > div { padding: 24px 26px 28px; }
.scenic-card p { color: var(--muted); line-height:1.76; }
.scenic-card-soft img { object-position: center center; }

.layout-stats { display:grid; grid-template-columns: repeat(3,1fr); gap:20px; padding-top: 18px; }
.layout-stats article { padding: 28px; }
.layout-stats h3 { margin-bottom: 8px; }
.layout-stats p { color: var(--muted); line-height:1.7; }

.location-cards-page { display:grid; grid-template-columns: repeat(3,1fr); gap:20px; padding-top: 18px; }
.location-cards-page article { padding: 28px; }
.location-cards-page p { color: var(--muted); line-height:1.74; }
.location-bottom-split { padding-top: 24px; }

.resident-page main { padding-top: 90px; }
.resident-hero { max-width: 1080px; margin: 0 auto; padding: 56px 44px 12px; }
.resident-hero p:not(.section-kicker) { max-width: 720px; color: var(--muted); line-height:1.75; font-size:18px; }

@media (max-width: 1080px) {
  .feature-grid-overview,
  .location-cards-page,
  .layout-stats,
  .scenic-two-up,
  .editorial-intro,
  .image-copy-split { grid-template-columns: 1fr; }
  .hero-banner__content { padding-top: 160px; }
}
@media (max-width: 760px) {
  .brand-sign-logo.final-logo { height: 42px; }
  .hero-banner { min-height: 88vh; }
  .hero-banner__content { padding: 146px 24px 42px; }
  .page-hero, .resident-hero { padding: 42px 24px 12px; }
  .editorial-intro__copy p { font-size: 17px; }
  .clean-stats { margin-top: -18px; }
  .summary-strip.clean-stats { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .tall-image img { min-height: 360px; }
}
@media (max-width: 560px) {
  .hero-banner__content { padding: 132px 20px 34px; }
  .summary-strip.clean-stats { padding: 16px; gap: 10px; }
  .summary-strip.clean-stats div { padding: 16px 12px; }
}


/* ===== Consolidated final update ===== */
.brand-sign-logo.final-logo {
  height: 54px;
  width: auto;
  max-width: 230px;
  display: block;
}
.nav a {
  font-size: 12px;
  letter-spacing: .10em;
}
.hero-banner {
  position: relative;
  min-height: 96vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
}
.hero-banner__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-banner-home .hero-banner__image {
  object-position: center 38%;
}
.hero-forest .hero-banner__image {
  object-position: center 32%;
}
.hero-banner-location .hero-banner__image {
  object-position: center center;
}
.hero-banner__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,13,12,.18) 0%, rgba(10,13,12,.32) 44%, rgba(10,13,12,.74) 100%),
    linear-gradient(90deg, rgba(10,13,12,.45), rgba(10,13,12,.12) 58%, rgba(10,13,12,.28));
}
.hero-banner__content {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  padding: 180px 44px 72px;
  color: #fff;
}
.hero-banner__content h1 {
  max-width: 820px;
  text-shadow: 0 10px 32px rgba(0,0,0,.28);
}
.hero-banner__text {
  max-width: 660px;
  margin: 22px 0 0;
  color: rgba(255,255,255,.88);
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.7;
}
.section-kicker-light {
  color: rgba(255,255,255,.86);
}
.hero-secondary {
  background: rgba(255,255,255,.13);
  color: #fff;
  border: 1px solid rgba(255,255,255,.28);
}
.clean-stats {
  margin-top: -30px;
  position: relative;
  z-index: 4;
}
.editorial-intro {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 34px;
  align-items: start;
}
.narrow-heading {
  max-width: 500px;
}
.editorial-intro__copy p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.82;
}
.feature-grid-overview,
.location-cards-page,
.layout-stats,
.drive-time-grid,
.scenic-two-up {
  display: grid;
  gap: 20px;
}
.feature-grid-overview {
  grid-template-columns: repeat(3, 1fr);
  padding-top: 32px;
}
.location-cards-page,
.layout-stats {
  grid-template-columns: repeat(3, 1fr);
}
.drive-time-grid {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 28px;
}
.feature-grid-overview article,
.layout-stats article,
.location-cards-page article,
.drive-time-grid article,
.resident-grid article,
.layout-note-panel,
.layout-copy-card,
.community-copy-strip,
.address-card,
.map-card {
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow);
}
.feature-grid-overview article,
.location-cards-page article,
.layout-stats article,
.drive-time-grid article {
  padding: 28px;
}
.feature-grid-overview span {
  display: block;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--cedar);
  margin-bottom: 12px;
}
.feature-grid-overview p,
.location-cards-page p,
.layout-stats p,
.drive-time-grid p {
  color: var(--muted);
  line-height: 1.76;
}
.drive-time-grid article {
  text-align: center;
}
.drive-time-grid strong {
  display: block;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.drive-time-grid span {
  display: block;
  margin-top: 10px;
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--cedar);
}
.image-copy-split,
.address-section {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 28px;
  align-items: stretch;
}
.image-copy-split__copy {
  background: linear-gradient(180deg, var(--ivory) 0%, #f4ebdf 100%);
  border: 1px solid var(--border);
  border-radius: 30px;
  box-shadow: var(--shadow);
  padding: clamp(28px, 4vw, 40px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.image-copy-split__copy p {
  color: var(--muted);
  line-height: 1.8;
}
.text-link {
  text-decoration: none;
  font-weight: 800;
  color: var(--cedar);
  margin-top: 10px;
}
.tall-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 560px;
  object-position: center center;
}
.scenic-two-up {
  grid-template-columns: 1fr;
}
.scenic-card {
  overflow: hidden;
  border-radius: 30px;
  box-shadow: var(--shadow);
  background: var(--ivory);
  border: 1px solid var(--border);
}
.scenic-card img {
  width: 100%;
  height: min(48vw, 520px);
  min-height: 340px;
  object-fit: cover;
  object-position: center center;
}
.scenic-card > div {
  padding: 24px 26px 28px;
}
.scenic-card p {
  color: var(--muted);
  line-height: 1.76;
}
.landscape-band-grass {
  background-image: url('images/foothill-grass-background.png') !important;
  background-size: cover;
  background-position: center center;
}
.landscape-band__overlay {
  background: linear-gradient(180deg, rgba(11,13,12,.18), rgba(11,13,12,.62));
}
.subpage main {
  padding-top: 86px;
}
.page-hero {
  max-width: 1240px;
  margin: 0 auto;
  padding: 56px 44px 18px;
}
.page-hero p:not(.section-kicker) {
  max-width: 740px;
  margin-top: 20px;
  color: var(--muted);
  line-height: 1.75;
  font-size: 18px;
}
.compact-hero {
  min-height: 70vh;
}
.layout-showcase {
  padding-top: 42px;
}
.layout-stats {
  padding-top: 18px;
}
.address-section {
  align-items: stretch;
}
.address-card {
  padding: clamp(28px, 4vw, 44px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.address-card .address-city {
  margin: 8px 0 18px;
  font-size: 24px;
  font-weight: 800;
  color: var(--cedar);
}
.address-card p:not(.section-kicker):not(.address-city) {
  color: var(--muted);
  line-height: 1.75;
  font-size: 17px;
}
.address-card .map-link {
  width: fit-content;
  margin-top: 18px;
}
.resident-page main {
  padding-top: 90px;
}
.resident-hero {
  max-width: 1080px;
  margin: 0 auto;
  padding: 56px 44px 12px;
}
.resident-hero p:not(.section-kicker) {
  max-width: 720px;
  color: var(--muted);
  line-height: 1.75;
  font-size: 18px;
}
@media (max-width: 1080px) {
  .feature-grid-overview,
  .location-cards-page,
  .layout-stats,
  .drive-time-grid,
  .editorial-intro,
  .image-copy-split,
  .address-section {
    grid-template-columns: 1fr;
  }
  .hero-banner__content {
    padding-top: 160px;
  }
}
@media (max-width: 760px) {
  .brand-sign-logo.final-logo {
    height: 42px;
    max-width: 170px;
  }
  .hero-banner {
    min-height: 88vh;
  }
  .hero-banner__content {
    padding: 146px 24px 42px;
  }
  .page-hero,
  .resident-hero {
    padding: 42px 24px 12px;
  }
  .editorial-intro__copy p {
    font-size: 17px;
  }
  .clean-stats {
    margin-top: -18px;
  }
  .summary-strip.clean-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .tall-image img {
    min-height: 360px;
  }
  .drive-time-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .hero-banner__content {
    padding: 132px 20px 34px;
  }
  .summary-strip.clean-stats {
    padding: 16px;
    gap: 10px;
  }
  .summary-strip.clean-stats div {
    padding: 16px 12px;
  }
  .drive-time-grid span {
    font-size: 26px;
  }
}


/* --- refinement update --- */
.hero-banner-home .hero-banner__image,
.hero-forest .hero-banner__image {
  object-position: center 48%;
}
.hero-banner__overlay {
  background:
    linear-gradient(180deg, rgba(8,12,10,.22) 0%, rgba(8,12,10,.34) 46%, rgba(8,12,10,.72) 100%),
    linear-gradient(90deg, rgba(8,12,10,.42), rgba(8,12,10,.10) 55%, rgba(8,12,10,.30));
}
.render-showcase {
  padding-top: 34px;
}
.centered-heading {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 28px;
}
.centered-heading p:not(.section-kicker) {
  max-width: 760px;
  margin: 14px auto 0;
  color: var(--muted);
  line-height: 1.78;
}
.render-showcase__image {
  max-width: 1240px;
  margin: 0 auto;
  background: linear-gradient(180deg, #f4eee4 0%, #efe7db 100%);
  border: 1px solid var(--border);
  border-radius: 34px;
  padding: 26px;
  box-shadow: var(--shadow);
}
.render-showcase__image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  border-radius: 22px;
}
.render-showcase__linkwrap {
  text-align: center;
  margin-top: 18px;
}
.layout-copy-card ul li {
  margin-bottom: 8px;
}
.contain-image {
  background: linear-gradient(180deg, #f4eee4 0%, #efe7db 100%);
}
.contain-image img {
  object-fit: contain !important;
  object-position: center center !important;
  padding: 18px;
  background: linear-gradient(180deg, #f4eee4 0%, #efe7db 100%);
}
.location-bottom-split .contain-image img {
  min-height: 360px;
}
.location-bottom-split .image-copy-split__copy {
  align-self: stretch;
}
@media (max-width: 760px) {
  .render-showcase__image {
    padding: 16px;
    border-radius: 24px;
  }
  .location-bottom-split .contain-image img {
    min-height: 280px;
  }
}


/* legal/footer refinements */
.footer-note {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.site-footer .footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  align-items: center;
  justify-content: flex-end;
}
.legal-page main {
  padding-top: 90px;
}
.legal-hero {
  max-width: 980px;
}
.legal-section {
  padding-top: 24px;
}
.legal-card {
  max-width: 980px;
  margin: 0 auto;
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: 30px;
  box-shadow: var(--shadow);
  padding: clamp(28px, 4vw, 42px);
}
.legal-card h2 {
  margin-top: 30px;
  margin-bottom: 10px;
  font-size: clamp(22px, 3vw, 28px);
}
.legal-card h2:first-child {
  margin-top: 0;
}
.legal-card p {
  color: var(--muted);
  line-height: 1.8;
  margin: 0;
}
@media (max-width: 760px) {
  .site-footer .footer-actions {
    justify-content: flex-start;
  }
}


/* ===== Modern interior-led homepage update ===== */
.site-header {
  background: rgba(255, 253, 248, 0.92) !important;
  color: var(--charcoal) !important;
  border-bottom: 1px solid rgba(35,37,34,.10);
  box-shadow: 0 10px 40px rgba(0,0,0,.05);
}
.site-header.is-scrolled,
.site-header.solid {
  background: rgba(255, 253, 248, 0.97) !important;
}
.nav a {
  color: rgba(23,27,24,.78) !important;
}
.nav a:hover {
  color: var(--cedar) !important;
}
.nav-button {
  background: #151814 !important;
  color: #fff !important;
  border-color: #151814 !important;
}
.brand-sign-logo.final-logo {
  filter: none;
}
.modern-hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 34vw);
  overflow: hidden;
  background: #141610;
  padding-top: 78px;
}
.modern-hero__media {
  position: absolute;
  inset: 78px 0 0 0;
  overflow: hidden;
}
.modern-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% center;
  filter: saturate(.96) contrast(1.04);
}
.modern-hero__shade {
  position: absolute;
  inset: 78px 0 0 0;
  background:
    linear-gradient(90deg, rgba(14,15,11,.92) 0%, rgba(14,15,11,.72) 34%, rgba(14,15,11,.20) 58%, rgba(14,15,11,.16) 100%),
    linear-gradient(180deg, rgba(14,15,11,.12), rgba(14,15,11,.55));
  z-index: 1;
}
.modern-hero__content {
  position: relative;
  z-index: 3;
  align-self: center;
  max-width: 670px;
  padding: 70px 44px 70px max(44px, 7vw);
  color: #fff;
}
.modern-hero__content h1 {
  font-size: clamp(46px, 7.2vw, 92px);
  line-height: .94;
  letter-spacing: -0.065em;
}
.modern-hero__content p:not(.section-kicker) {
  max-width: 520px;
  margin: 24px 0 0;
  color: rgba(255,255,255,.88);
  line-height: 1.72;
  font-size: clamp(17px, 2vw, 21px);
}
.modern-hero__side {
  position: relative;
  z-index: 2;
  grid-column: 2;
  align-self: stretch;
  margin-top: 78px;
  overflow: hidden;
}
.modern-hero__side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 42% center;
}
.modern-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #fffdf8;
  border-bottom: 1px solid var(--border);
  border-top: 1px solid rgba(255,255,255,.2);
}
.modern-stats div {
  padding: 30px 28px;
  border-right: 1px solid var(--border);
}
.modern-stats div:last-child {
  border-right: 0;
}
.modern-stats strong {
  display: block;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1;
  letter-spacing: -0.05em;
}
.modern-stats span {
  display: block;
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
  font-weight: 800;
  color: var(--muted);
}
.refined-intro {
  padding-top: 78px;
}
.interior-editorial {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: .72fr 1.15fr .78fr 1fr;
  gap: 0;
  background: #fffdf8;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.interior-editorial__text {
  padding: clamp(36px, 5vw, 70px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.interior-editorial__text p:not(.section-kicker),
.interior-editorial__feature-list p {
  color: var(--muted);
  line-height: 1.76;
}
.interior-editorial__image {
  min-height: 500px;
  overflow: hidden;
}
.interior-editorial__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.interior-editorial__dining img {
  object-position: 44% center;
}
.interior-editorial__kitchen img {
  object-position: center center;
}
.interior-editorial__feature-list {
  padding: clamp(30px, 4vw, 54px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 26px;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
}
.interior-editorial__feature-list article {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.interior-editorial__feature-list article:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.interior-editorial__feature-list span {
  display: block;
  color: var(--cedar);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  margin-bottom: 10px;
}
.interior-editorial__feature-list h3 {
  font-size: 20px;
  letter-spacing: -0.03em;
}
.render-showcase__image {
  background: transparent !important;
  border-radius: 0 !important;
  border-left: 0 !important;
  border-right: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
}
.render-showcase__image img {
  width: 100%;
  max-height: 680px;
  object-fit: contain;
  border-radius: 0 !important;
  background: #f4eee4;
}
.modern-community-hero {
  max-width: 1360px;
  margin: 22px auto 0;
  padding: 0 44px;
}
.modern-community-hero img {
  width: 100%;
  height: auto;
  display: block;
  box-shadow: 0 28px 70px rgba(0,0,0,.14);
}
.community-modern-copy {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 44px;
}
.community-modern-copy p {
  color: var(--muted);
  line-height: 1.8;
}
.interior-strip {
  max-width: 1360px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.interior-strip img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}
.interior-strip img:first-child {
  object-position: 42% center;
}
.interior-strip img:last-child {
  object-position: center center;
}
.modern-layout .layout-showcase-grid {
  align-items: stretch;
}
.layout-interior-band {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: stretch;
  background: #fffdf8;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.layout-interior-band img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}
.layout-interior-band div {
  padding: clamp(32px, 4vw, 58px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.layout-interior-band p:not(.section-kicker) {
  color: var(--muted);
  line-height: 1.78;
}
@media (max-width: 1120px) {
  .modern-hero {
    grid-template-columns: 1fr;
    min-height: 84vh;
  }
  .modern-hero__side {
    display: none;
  }
  .interior-editorial,
  .community-modern-copy,
  .layout-interior-band {
    grid-template-columns: 1fr;
  }
  .interior-editorial__feature-list {
    border-left: 0;
    border-right: 0;
  }
}
@media (max-width: 860px) {
  .modern-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .modern-stats div:nth-child(2) {
    border-right: 0;
  }
  .interior-strip {
    grid-template-columns: 1fr;
  }
  .interior-strip img {
    height: 420px;
  }
}
@media (max-width: 620px) {
  .modern-hero__content {
    padding: 58px 24px 54px;
  }
  .modern-stats div {
    padding: 22px 18px;
  }
  .interior-editorial__image,
  .layout-interior-band img {
    min-height: 380px;
    height: 380px;
  }
}


/* ===== Clean original-image update ===== */
.modern-hero__media img,
.modern-hero__side img,
.interior-editorial__image img,
.layout-interior-band img,
.modern-community-hero img,
.render-showcase__image img,
.hero-banner__image {
  filter: none !important;
  image-rendering: auto;
}
.modern-hero__media img {
  object-position: 52% center;
}
.modern-hero__side img {
  object-position: 38% center;
}
.modern-hero__shade {
  background:
    linear-gradient(90deg, rgba(14,15,11,.90) 0%, rgba(14,15,11,.72) 34%, rgba(14,15,11,.18) 58%, rgba(14,15,11,.10) 100%),
    linear-gradient(180deg, rgba(14,15,11,.08), rgba(14,15,11,.50)) !important;
}
.render-showcase__image {
  max-width: 1320px !important;
}
.render-showcase__image img {
  width: 100%;
  height: auto;
  max-height: none !important;
  object-fit: contain !important;
  background: transparent !important;
}
.modern-community-hero img {
  object-fit: contain;
  background: transparent;
}
.hero-banner-location .hero-banner__image {
  object-position: center center !important;
}
.location-bottom-split {
  display: none !important;
}
.interior-strip {
  display: none !important;
}
@media (max-width: 1120px) {
  .modern-hero__side {
    display: none;
  }
}


/* ===== Remove low-quality interior screenshots update ===== */
.modern-hero,
.interior-editorial,
.interior-strip,
.layout-interior-band {
  display: none !important;
}
.building-hero {
  position: relative;
  min-height: 88vh;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding-top: 78px;
  background: #151814;
}
.building-hero > img {
  position: absolute;
  inset: 78px 0 0 0;
  width: 100%;
  height: calc(100% - 78px);
  object-fit: cover;
  object-position: center center;
}
.building-hero__overlay {
  position: absolute;
  inset: 78px 0 0 0;
  background:
    linear-gradient(90deg, rgba(12,14,11,.78) 0%, rgba(12,14,11,.48) 38%, rgba(12,14,11,.12) 72%),
    linear-gradient(180deg, rgba(12,14,11,.08), rgba(12,14,11,.54));
}
.building-hero__content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 180px 44px 72px max(44px, 7vw);
  color: #fff;
}
.building-hero__content h1 {
  font-size: clamp(46px, 7.2vw, 92px);
  line-height: .94;
  letter-spacing: -0.065em;
  text-shadow: 0 12px 36px rgba(0,0,0,.30);
}
.building-hero__content p:not(.section-kicker) {
  max-width: 560px;
  margin: 24px 0 0;
  color: rgba(255,255,255,.88);
  line-height: 1.72;
  font-size: clamp(17px, 2vw, 21px);
}
.feature-grid-overview {
  display: grid !important;
}
.render-showcase__image img,
.modern-community-hero img {
  filter: none !important;
}
@media (max-width: 760px) {
  .building-hero {
    min-height: 82vh;
  }
  .building-hero__content {
    padding: 150px 24px 48px;
  }
}


/* ===== Nav/footer cleanup update ===== */
.footer-text-link {
  appearance: none;
  border: 0;
  background: transparent;
  color: inherit;
  padding: 0;
  margin: 0;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  text-decoration: none;
}
.footer-text-link:hover,
.site-footer .footer-actions a:hover {
  color: var(--gold);
}
.site-footer .footer-actions {
  gap: 18px 24px;
}


/* ===== Copy/legal refinement update ===== */
.compact-legal-hero h1 {
  font-size: clamp(30px, 4vw, 48px) !important;
  line-height: 1.05;
  letter-spacing: -0.045em;
  max-width: 760px;
}
.compact-legal-hero p:not(.section-kicker) {
  max-width: 760px;
  font-size: 16px;
}


/* ===== Logo visibility + Coming 2027 update ===== */
.site-header .brand-sign-logo.final-logo {
  filter: none !important;
  opacity: 1 !important;
}
.coming-year-badge {
  margin: 0 0 18px;
  font-size: clamp(44px, 7vw, 88px);
  line-height: .92;
  letter-spacing: -0.06em;
  font-weight: 800;
  color: #fff;
  text-shadow: 0 12px 36px rgba(0,0,0,.38);
}
.building-hero__content .section-kicker {
  margin-bottom: 10px;
}
@media (max-width: 760px) {
  .coming-year-badge {
    font-size: clamp(40px, 12vw, 66px);
  }
}


/* ===== Standalone Coming 2027 update ===== */
.coming-year-badge {
  display: none !important;
}
.coming-standalone-badge {
  position: absolute;
  z-index: 3;
  right: clamp(24px, 6vw, 86px);
  bottom: clamp(34px, 7vw, 88px);
  padding: clamp(16px, 2.2vw, 24px) clamp(20px, 3vw, 34px);
  border: 1px solid rgba(255,255,255,.34);
  background: rgba(16, 18, 15, .58);
  color: #fff;
  backdrop-filter: blur(12px);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: clamp(30px, 5vw, 68px);
  line-height: .95;
  font-weight: 800;
  box-shadow: 0 24px 70px rgba(0,0,0,.22);
}
@media (max-width: 900px) {
  .coming-standalone-badge {
    left: 24px;
    right: auto;
    bottom: 24px;
    font-size: clamp(28px, 9vw, 50px);
  }
  .building-hero__content {
    padding-bottom: 150px;
  }
}


/* ===== Move Coming 2027 badge to top middle ===== */
.coming-standalone-badge {
  top: calc(78px + clamp(22px, 4vw, 48px)) !important;
  left: 50% !important;
  right: auto !important;
  bottom: auto !important;
  transform: translateX(-50%);
  text-align: center;
  white-space: nowrap;
}
@media (max-width: 900px) {
  .coming-standalone-badge {
    top: calc(78px + 22px) !important;
    left: 50% !important;
    right: auto !important;
    bottom: auto !important;
    transform: translateX(-50%);
  }
  .building-hero__content {
    padding-bottom: 72px;
    padding-top: 210px;
  }
}
@media (max-width: 560px) {
  .coming-standalone-badge {
    font-size: clamp(24px, 8vw, 42px);
    white-space: normal;
    width: calc(100% - 40px);
  }
}


/* ===== Mobile footer centering + remove hamburger menu ===== */
.menu-toggle {
  display: none !important;
}

@media (max-width: 900px) {
  .site-header {
    min-height: auto !important;
    padding: 14px 18px !important;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
  }

  .site-header.is-scrolled,
  .site-header.solid {
    min-height: auto !important;
  }

  .brand {
    justify-content: center;
  }

  .nav {
    position: static !important;
    inset: auto !important;
    transform: none !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    visibility: visible !important;
    height: auto !important;
    width: 100% !important;
    background: transparent !important;
    backdrop-filter: none !important;
    display: flex !important;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px 16px;
    padding: 0 !important;
  }

  .nav a {
    font-size: 10px !important;
    letter-spacing: .08em !important;
  }

  .nav-button {
    min-height: 34px !important;
    padding: 8px 12px !important;
    font-size: 10px !important;
    letter-spacing: .08em !important;
  }

  body.menu-open {
    overflow: auto !important;
  }

  .building-hero {
    padding-top: 118px;
  }

  .building-hero > img,
  .building-hero__overlay {
    inset: 118px 0 0 0;
    height: calc(100% - 118px);
  }

  .coming-standalone-badge {
    top: calc(118px + 18px) !important;
  }
}

@media (max-width: 760px) {
  .site-footer {
    text-align: center;
    align-items: center;
  }

  .site-footer > div:first-child {
    width: 100%;
    text-align: center;
  }

  .site-footer .footer-actions {
    width: 100%;
    justify-content: center !important;
    align-items: center;
    text-align: center;
    gap: 14px 20px;
  }

  .site-footer .footer-actions a,
  .footer-text-link {
    text-align: center;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 12px 14px !important;
    gap: 8px;
  }

  .brand-sign-logo.final-logo {
    height: 38px !important;
    max-width: 165px !important;
  }

  .nav {
    gap: 8px 12px;
  }

  .nav a,
  .nav-button {
    font-size: 9px !important;
  }

  .building-hero {
    padding-top: 126px;
  }

  .building-hero > img,
  .building-hero__overlay {
    inset: 126px 0 0 0;
    height: calc(100% - 126px);
  }

  .coming-standalone-badge {
    top: calc(126px + 14px) !important;
  }
}


/* ===== Restore mobile hamburger dropdown ===== */
@media (max-width: 900px) {
  .site-header {
    min-height: 70px !important;
    padding: 0 18px !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    gap: 12px !important;
  }

  .brand {
    justify-content: flex-start !important;
  }

  .menu-toggle {
    display: block !important;
    border-color: rgba(23,27,24,.22) !important;
    background: rgba(23,27,24,.06) !important;
  }

  .menu-toggle span {
    background: var(--charcoal) !important;
  }

  .nav {
    position: fixed !important;
    top: 70px !important;
    left: 14px !important;
    right: 14px !important;
    width: auto !important;
    height: auto !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    gap: 0 !important;
    padding: 12px !important;
    background: rgba(255,253,248,.98) !important;
    border: 1px solid rgba(35,37,34,.12) !important;
    border-radius: 22px !important;
    box-shadow: 0 24px 70px rgba(0,0,0,.18) !important;
    backdrop-filter: blur(18px) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transform: translateY(-10px) !important;
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease !important;
    z-index: 80 !important;
  }

  body.menu-open .nav {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateY(0) !important;
  }

  .nav a,
  .nav-button {
    width: 100% !important;
    min-height: 44px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 12px 14px !important;
    border-radius: 14px !important;
    font-size: 12px !important;
    letter-spacing: .10em !important;
    color: var(--charcoal) !important;
    background: transparent !important;
    border: 0 !important;
  }

  .nav a:hover,
  .nav-button:hover {
    background: rgba(149,102,59,.10) !important;
    color: var(--cedar) !important;
  }

  .nav-button {
    font-weight: 800 !important;
  }

  body.menu-open {
    overflow: hidden !important;
  }

  .building-hero {
    padding-top: 70px !important;
  }

  .building-hero > img,
  .building-hero__overlay {
    inset: 70px 0 0 0 !important;
    height: calc(100% - 70px) !important;
  }

  .coming-standalone-badge {
    top: calc(70px + 22px) !important;
  }
}

@media (max-width: 560px) {
  .site-header {
    min-height: 66px !important;
    padding: 0 14px !important;
  }

  .brand-sign-logo.final-logo {
    height: 38px !important;
    max-width: 165px !important;
  }

  .nav {
    top: 66px !important;
    left: 10px !important;
    right: 10px !important;
  }

  .building-hero {
    padding-top: 66px !important;
  }

  .building-hero > img,
  .building-hero__overlay {
    inset: 66px 0 0 0 !important;
    height: calc(100% - 66px) !important;
  }

  .coming-standalone-badge {
    top: calc(66px + 18px) !important;
  }
}


/* ===== Footer Join Interest List size match ===== */
.site-footer .footer-actions a,
.site-footer .footer-text-link {
  font-size: 13px !important;
  line-height: 1.2 !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: .08em !important;
}

.site-footer .footer-text-link {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

@media (max-width: 760px) {
  .site-footer .footer-actions a,
  .site-footer .footer-text-link {
    font-size: 12px !important;
    line-height: 1.2 !important;
  }
}


/* ===== Force footer links to match on desktop and mobile ===== */
.site-footer .footer-actions,
.site-footer .footer-actions a,
.site-footer .footer-actions button,
.site-footer .footer-text-link {
  font-size: 13px !important;
  line-height: 1.2 !important;
}

.site-footer .footer-actions a,
.site-footer .footer-actions button,
.site-footer .footer-text-link {
  font-family: inherit !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: .08em !important;
  color: inherit !important;
  text-decoration: none !important;
}

.site-footer .footer-text-link {
  appearance: none !important;
  border: 0 !important;
  background: transparent !important;
  padding: 0 !important;
  margin: 0 !important;
  height: auto !important;
  min-height: 0 !important;
  box-shadow: none !important;
  cursor: pointer !important;
}

@media (max-width: 760px) {
  .site-footer .footer-actions,
  .site-footer .footer-actions a,
  .site-footer .footer-actions button,
  .site-footer .footer-text-link {
    font-size: 12px !important;
  }
}


/* ===== Center logo on mobile header ===== */
@media (max-width: 900px) {
  .site-header {
    position: fixed !important;
    min-height: 70px !important;
    padding: 0 18px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
  }

  .site-header .brand {
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
    margin: 0 !important;
    justify-content: center !important;
    z-index: 61 !important;
  }

  .site-header .menu-toggle {
    margin-left: auto !important;
    position: relative !important;
    z-index: 62 !important;
  }

  .nav {
    top: 70px !important;
  }
}

@media (max-width: 560px) {
  .site-header {
    min-height: 66px !important;
    padding: 0 14px !important;
  }

  .site-header .brand-sign-logo.final-logo {
    height: 38px !important;
    max-width: 165px !important;
  }

  .nav {
    top: 66px !important;
  }
}


/* ===== Mobile logo centered cleanly ===== */
@media (max-width: 900px) {
  .site-header {
    position: fixed !important;
    min-height: 70px !important;
    padding: 0 16px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .site-header .brand {
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
    margin: 0 !important;
    z-index: 61 !important;
  }

  .site-header .menu-toggle {
    position: absolute !important;
    right: 16px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    margin: 0 !important;
    z-index: 62 !important;
  }

  .nav {
    top: 70px !important;
  }
}

@media (max-width: 560px) {
  .site-header {
    min-height: 66px !important;
    padding: 0 14px !important;
  }

  .site-header .brand-sign-logo.final-logo {
    height: 38px !important;
    max-width: 165px !important;
  }

  .site-header .menu-toggle {
    right: 14px !important;
  }

  .nav {
    top: 66px !important;
  }
}
