:root {
  --ink: #121417;
  --muted: #5f6764;
  --paper: #f7f5ef;
  --white: #ffffff;
  --green: #0d332b;
  --green-dark: #08261f;
  --sand: #dcc79b;
  --line: rgba(13, 51, 43, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
}

a {
  color: inherit;
}

.site-container {
  width: min(100% - 80px, 1400px);
  margin-inline: auto;
}

.site-header {
  background: var(--paper);
  border-bottom: 1px solid rgba(18, 20, 23, 0.08);
}

.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  font-size: 1.1rem;
  line-height: 1;
  font-weight: 800;
  text-decoration: none;
  color: var(--green-dark);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.9rem;
  font-weight: 700;
}

.site-nav a {
  text-decoration: none;
  color: var(--ink);
}

.nav-button {
  border: 1px solid var(--green-dark);
  border-radius: 999px;
  padding: 9px 16px;
}

.hero {
  background-image:
      linear-gradient(
          90deg,
          rgba(0,0,0,.55) 0%,
          rgba(0,0,0,.30) 35%,
          rgba(0,0,0,.10) 60%,
          rgba(0,0,0,0) 100%
      ),
      url('/images/hero/flexpark-homepage-hero-final.webp');

  background-size: cover;
  background-position: center center;
}

.hero-content {
  max-width: 560px;
  margin-left: -40px;
  text-align: left;
}

.hero-inner {
  min-height: 660px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-block: 96px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--sand);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  line-height: 1.2;
  font-weight: 800;
}

.eyebrow.dark {
  color: var(--green);
}

.hero h1 {
  margin: 0;
  max-width: 560px;
  color: #ffffff;
  font-size: clamp(3rem, 4vw, 4.65rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.hero-copy {
  max-width: 620px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.hero--home-v2 {
  position: relative;
}

.hero-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 0;
  border: 0;
  background: none;
  color: var(--white);
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: transform 0.35s ease, filter 0.35s ease;
}

.hero-play-button__circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 92px;
  height: 92px;
  border: 1.5px solid rgba(255, 255, 255, 0.88);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow:
    0 10px 36px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  transition: box-shadow 0.35s ease, background 0.35s ease;
}

.hero-play-button__icon {
  width: 28px;
  height: 28px;
  margin-left: 4px;
  color: var(--white);
}

.hero-play-button__label {
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.hero-play-button:hover {
  transform: translate(-50%, -50%) scale(1.06);
  filter: drop-shadow(0 0 18px rgba(255, 255, 255, 0.35));
}

.hero-play-button:hover .hero-play-button__circle {
  background: rgba(255, 255, 255, 0.16);
  box-shadow:
    0 0 28px rgba(255, 255, 255, 0.32),
    0 0 52px rgba(220, 199, 155, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.38);
}

.hero-play-button:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.75);
  outline-offset: 6px;
}

.button-primary,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 0.98rem;
  font-weight: 800;
  text-decoration: none;
}

.button-primary {
  background: var(--sand);
  color: var(--green-dark);
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: var(--white);
}

.featured-developments {
  background: var(--white);
  padding: 90px 0;
}

.section-intro {
  max-width: 820px;
  margin-bottom: 42px;
}

.section-intro h2 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.development-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.development-card {
  min-height: 320px;
  padding: 40px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 22px;
}

.card-eyebrow {
  margin: 0 0 16px;
  color: var(--sand);
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.75rem;
  font-weight: 800;
}

.development-card h3 {
  margin: 0 0 24px;
  font-size: 2rem;
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.development-card ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}

.development-card a {
  display: inline-block;
  margin-top: 28px;
  color: var(--green-dark);
  font-weight: 800;
  text-decoration: none;
}

.site-footer {
  background: var(--green-dark);
  color: rgba(255, 255, 255, 0.72);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  padding-block: 90px 70px;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--white);
  font-size: 1.9rem;
  font-weight: 800;
  text-decoration: none;
}

.footer-brand p {
  max-width: 360px;
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
}

.footer-column h2 {
  margin: 0 0 18px;
  color: var(--sand);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.footer-column a {
  display: block;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  text-decoration: none;
}

.footer-bottom {
  padding-block: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.88rem;
}

.footer-bottom p {
  margin: 0;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-block: 56px 44px;
  }
}
.property-page-hero {
  min-height: 78vh;
  display: flex;
  align-items: center;
  padding: 120px 0;
  background: var(--paper);
}

.property-page-hero-inner {
  max-width: 700px;
  margin-left: 0;
}

.property-page-eyebrow {
  display: block;
  margin-bottom: 22px;
  color: var(--sand);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.property-page-hero {
  min-height: 72vh;
  display: flex;
  align-items: center;
  padding: 120px 0;
  background:
      linear-gradient(
          rgba(248,246,241,.68),
          rgba(248,246,241,.68)
      ),
      url('/images/cypresswood/hero.png');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}

.property-page-location {
  margin: 0 0 24px;
  color: var(--green-dark);
  font-size: 1.15rem;
  font-weight: 700;
}

.property-page-description {
  max-width: 520px;
  margin: 0 0 36px;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.75;
}

.property-page-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.property-primary-button,
.property-secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 800;
  text-decoration: none;
}

.property-primary-button {
  background: var(--green-dark);
  color: var(--white);
}

.property-secondary-button {
  border: 1px solid var(--green-dark);
  color: var(--green-dark);
}
.property-split-hero {
  padding: 64px 0 48px;
  background: var(--paper);
}

.property-split-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 72px;
  align-items: center;
}

.property-split-copy {
  max-width: 620px;
}

.property-split-copy h1 {
  margin: 0 0 28px;
  color: var(--ink);
  font-size: clamp(3.8rem, 6vw, 6.5rem);
  line-height: 0.92;
  letter-spacing: -0.07em;
}

.property-split-image img {
  width: 100%;
  display: block;
  border-radius: 28px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.16);
}

@media (max-width: 900px) {
  .property-split-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.property-facts-bar {
  background: var(--green-dark);
  color: var(--white);
  padding: 34px 0;
}

.property-facts-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
}

.property-fact {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  padding-left: 22px;
}

.property-fact span {
  display: block;
  margin-bottom: 8px;
  color: var(--sand);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.property-fact strong {
  display: block;
  color: var(--white);
  font-size: 1.05rem;
  line-height: 1.3;
}

@media (max-width: 900px) {
  .property-facts-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.siteplan-section {
  padding: 120px 0;
  background: #ffffff;
}

.section-heading {
  max-width: 900px;
  margin-bottom: 60px;
}

.section-heading span {
  display: block;
  margin-bottom: 16px;
  color: var(--sand);
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.section-heading h2 {
  margin: 0 0 24px;
  font-size: clamp(2.5rem,5vw,4.5rem);
  line-height: 1;
  letter-spacing: -.05em;
}

.section-heading {
  max-width: 1100px;
}

.siteplan-image img {
  width: 100%;
  display: block;
  border-radius: 24px;
}
.siteplan-image {
  margin-top: 70px;
}
.configurations-section {
  padding: 110px 0;
  background: var(--paper);
}

.configuration-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.configuration-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
}

.configuration-card img {
  width: 100%;
  height: 360px;
  object-fit: contain;
  display: block;
  padding: 32px;
  background: #fff;
}

.configuration-content {
  padding: 28px;
}

.configuration-content span {
  display: block;
  margin-bottom: 10px;
  color: var(--sand);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.configuration-content h3 {
  margin: 0 0 12px;
  font-size: 1.55rem;
  line-height: 1.15;
}

.configuration-content p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

@media (max-width: 900px) {
  .configuration-grid {
      grid-template-columns: 1fr;
  }
}
.configuration-card img {
  cursor: pointer;
  transition: transform .25s ease;
}

.configuration-card img:hover {
  transform: scale(1.02);
}

.why-property-section {
  padding: 110px 0;
  background: var(--green-dark);
  color: var(--white);
}

.why-property-section .section-heading p {
  color: rgba(255,255,255,.72);
}

.why-property-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.14);
  margin-top: 56px;
}

.why-property-item {
  background: var(--green-dark);
  padding: 36px;
}

.why-property-item span {
  display: block;
  margin-bottom: 28px;
  color: var(--sand);
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .14em;
}

.why-property-item h3 {
  margin: 0 0 16px;
  color: var(--white);
  font-size: 1.45rem;
}

.why-property-item p {
  margin: 0;
  color: rgba(255,255,255,.72);
  line-height: 1.65;
}

@media (max-width: 900px) {
  .why-property-grid {
      grid-template-columns: 1fr;
  }
}

.plan-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.88);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  padding: 60px;
}

.plan-modal-image {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 12px;
  background: white;
}

.plan-modal-close {
  position: absolute;
  top: 30px;
  right: 40px;
  color: white;
  font-size: 48px;
  cursor: pointer;
  line-height: 1;
}
.why-property-section {
  padding: 110px 0;
  background: var(--green-dark);
  color: var(--white);
}

.why-property-section .section-heading h2 {
  color: var(--white);
}

.why-property-section .section-heading p {
  color: rgba(255, 255, 255, 0.72);
}

.why-property-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.14);
  margin-top: 56px;
}

.why-property-item {
  background: var(--green-dark);
  padding: 36px;
}

.why-property-item span {
  display: block;
  margin-bottom: 28px;
  color: var(--sand);
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .14em;
}

.why-property-item h3 {
  margin: 0 0 16px;
  color: var(--white);
  font-size: 1.45rem;
}

.why-property-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
}

@media (max-width: 900px) {
  .why-property-grid {
      grid-template-columns: 1fr;
  }
}
.why-property-section {
  border-top: 1px solid rgba(255,255,255,.12);
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.site-footer {
  margin-top: 0;
}
.leasing-cta-section {
  padding: 80px 0;
  background: var(--paper);
}

.leasing-cta-card {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.leasing-cta-card span {
  display: block;
  margin-bottom: 18px;
  color: var(--sand);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .8rem;
  font-weight: 800;
}

.leasing-cta-card h2 {
  margin: 0 auto 24px;
  max-width: 900px;
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 1.05;
}

.leasing-cta-card p {
  max-width: 760px;
  margin: 0 auto 40px;
  color: var(--muted);
  font-size: 1.15rem;
  line-height: 1.8;
}

.leasing-cta-actions {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

@media (max-width: 900px) {

  .leasing-cta-section {
      padding: 80px 0;
  }

  .leasing-cta-card h2 {
    margin: 0 auto 24px;
    max-width: 700px;
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.1;
    letter-spacing: -0.03em;
}

}
.development-card-image {
  padding: 0;
  overflow: hidden;
}

.development-card-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.development-card-content {
  padding: 40px;
}

.development-card-image h3 {
  margin-bottom: 22px;
}

.development-card-image a {
  margin-top: 28px;
}
.development-location {
  margin: -10px 0 26px;
  color: var(--muted);
  font-weight: 600;
}

.development-button {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  height: 56px;

  background: var(--green-dark);
  color: #ffffff !important;

  border-radius: 999px;

  text-decoration: none !important;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1;

  margin-top: 28px;

  transition: all .25s ease;
}

.development-button:hover {
  color: #ffffff !important;
  transform: translateY(-2px);
}
.leasing-form-card {
  text-align: left;
}

.leasing-form-intro {
  max-width: 760px;
  margin: 0 auto 44px;
  text-align: center;
}

.leasing-form-intro span {
  display: block;
  margin-bottom: 16px;
  color: var(--sand);
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.leasing-form-intro h2 {
  margin: 0 0 18px;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.leasing-form-intro p {
  margin: 0 auto;
  max-width: 650px;
  color: var(--muted);
  line-height: 1.75;
}

.leasing-form {
  max-width: 820px;
  margin: 0 auto;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field-full {
  grid-column: 1 / -1;
}

.form-field label {
  color: var(--green-dark);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.form-field input,
.form-field select {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

.form-field input:focus,
.form-field select:focus {
  outline: 2px solid rgba(8, 38, 31, .18);
  border-color: var(--green-dark);
}

.leasing-submit-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 28px;
  min-height: 56px;
  padding: 0 28px;
  border: 0;
  border-radius: 999px;
  background: var(--green-dark);
  color: var(--white);
  font-weight: 800;
  cursor: pointer;
}

@media (max-width: 900px) {
  .form-grid {
      grid-template-columns: 1fr;
  }
}
.hero--home-v2 {
  position: relative;
}

.hero-play-button {
  position: absolute;
  top: 28%;
  left: 68%;
  transform: translate(-50%, -50%);
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background: transparent;
  border: 0;
  color: #fff;
  cursor: pointer;
}

.hero-play-button__circle {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.85);
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
  0 0 30px rgba(255,255,255,.15),
  0 0 60px rgba(255,255,255,.10);
}

.hero-play-button__icon {
  top: 18%;
  left: 40%;
  margin-left: 5px;
}

.hero-play-button__label {
  margin-top: 2px;
  margin-left: 18px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: .04em;
}

.hero-play-button__circle {
  width: 78px;
  height: 78px;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
}

.video-modal.is-open {
  display: flex;
}

.video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.85);
}

.video-modal__content {
  position: relative;
  width: min(92vw, 1200px);
  z-index: 2;
}

.video-modal__content video {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 30px 80px rgba(0,0,0,.5);
}

.video-modal__close {
  position: absolute;
  top: -50px;
  right: 0;
  background: transparent;
  border: 0;
  color: white;
  font-size: 42px;
  cursor: pointer;
}

.hero--home-v2 .hero-inner {
  margin-left: 125px;
}
/* Strategic Positioning Section */

.strategic-positioning {
  background: #f3f0ea;
  padding: 128px 0 136px;
}

.strategic-positioning-inner {
  max-width: 1240px;
}

.strategic-positioning .section-intro {
  max-width: 760px;
  margin-bottom: 56px;
}

.strategic-positioning .eyebrow {
  margin-bottom: 18px;
  color: #c7a56a;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.strategic-positioning h2 {
  max-width: 820px;
  margin: 0 0 24px;
  color: #111315;
  font-size: clamp(2.6rem, 4vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.06em;
}

.strategic-positioning .section-intro > p:not(.eyebrow) {
  max-width: 760px;
  color: #3e403c;
  font-size: 1.08rem;
  line-height: 1.65;
}

.positioning-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.positioning-card {
  min-height: 240px;
  padding: 40px 36px;
  background: #fcfcfb;
  border: 1px solid rgba(30, 34, 30, 0.08);
  box-shadow: 0 24px 60px rgba(20, 20, 18, 0.06);
}

.positioning-card h3 {
  margin: 0 0 20px;
  color: #121412;
  font-size: 1.35rem;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.positioning-card p {
  margin: 0;
  color: #555852;
  font-size: 1.0625rem;
  line-height: 1.72;
}

@media (max-width: 900px) {
  .strategic-positioning {
      padding: 96px 0 104px;
  }

  .positioning-grid {
      grid-template-columns: 1fr;
  }

  .positioning-card {
      min-height: auto;
  }
}
/* Strategic Positioning - V2 */

.strategic-positioning-header {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 64px;
}

.strategic-positioning-heading .eyebrow {
  margin-bottom: 20px;
}

.strategic-positioning h2 {
  max-width: 820px;
  margin: 0 0 24px;
  color: #111315;
  font-size: clamp(2.6rem, 4vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.06em;
}


.strategic-positioning-copy {
  padding-bottom: 12px;
}

.strategic-positioning-copy p {
  margin: 0;
  max-width: 540px;
  color: #3e403c;
  font-size: 1.125rem;
  line-height: 1.75;
}

@media (max-width: 900px) {
  .strategic-positioning-header {
      grid-template-columns: 1fr;
      gap: 32px;
      margin-bottom: 48px;
  }

  .strategic-positioning-copy {
      padding-bottom: 0;
  }
}
/* Mission Vision Purpose */

.mission-vision-purpose {
  background: #1b211d;
  padding: 132px 0;
}

.mvp-intro {
  max-width: 840px;
  margin-bottom: 72px;
}

.mvp-intro .eyebrow {
  margin-bottom: 18px;
  color: #c7a56a;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.mvp-intro h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.mvp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
}

.mvp-item {
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.mvp-label {
  display: block;
  margin-bottom: 22px;
  color: #c7a56a;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.mvp-item p {
  margin: 0;
  color: rgba(255,255,255,0.88);
  font-size: 1.125rem;
  line-height: 1.75;
}

@media (max-width: 900px) {
  .mvp-grid {
      grid-template-columns: 1fr;
      gap: 40px;
  }

  .mission-vision-purpose {
      padding: 96px 0;
  }

  .mvp-intro {
      margin-bottom: 56px;
  }
}
/* Building Solutions */

.building-solutions {
  background: #f6f3ee;
  padding: 132px 0;
}

.solutions-header {
  max-width: 840px;
  margin-bottom: 80px;
}

.solutions-header .eyebrow {
  margin-bottom: 18px;
  color: #c7a56a;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.solutions-header h2 {
  margin: 0 0 24px;
  color: #111315;
  font-size: clamp(2.5rem, 4vw, 4.25rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.solutions-header p {
  margin: 0;
  color: #4d514b;
  font-size: 1.125rem;
  line-height: 1.78;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.solution-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  padding: 48px 44px;
  border: 1px solid rgba(20, 24, 20, 0.08);
  min-height: 340px;
}

.solution-type {
  display: block;
  margin-bottom: 20px;
  color: #c7a56a;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.solution-card h3 {
  margin: 0 0 22px;
  color: #111315;
  font-size: 1.75rem;
  line-height: 1.18;
  letter-spacing: -0.03em;
}

.solution-card p {
  margin: 0;
  color: #4d514b;
  font-size: 1.0625rem;
  line-height: 1.78;
}

.solution-card.featured {
  border-color: rgba(199, 165, 106, 0.35);
  box-shadow: 0 24px 60px rgba(18, 22, 18, 0.08);
}

@media (max-width: 900px) {
  .solutions-grid {
      grid-template-columns: 1fr;
  }

  .building-solutions {
      padding: 96px 0;
  }

  .solution-card {
      min-height: auto;
      padding: 40px 32px;
  }
}
/* Building Solutions - Corrected Header Layout */

.solutions-header {
  max-width: 760px;
  display: block;
  margin-bottom: 70px;
}

.solutions-heading h2 {
  margin: 0 0 24px;
  max-width: 760px;
}

.solutions-copy {
  padding-bottom: 0;
}

.solutions-copy p {
  margin: 0;
  max-width: 760px;
  color: #4d514b;
  font-size: 1.08rem;
  line-height: 1.75;
}
.presentation-gallery {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.presentation-slide {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin: 0;
}

.presentation-slide img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

/* Presentation Video */

.presentation-video-slide {
  position: relative;
}

.presentation-video-slide img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

.presentation-video-button {
  all: unset;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 3px solid rgba(255,255,255,.9);
  background: rgba(0,0,0,.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  font-size: 42px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
}

.presentation-video-button span {
  margin-left: 6px;
}

.presentation-video-image-button {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  line-height: 0;
}

.presentation-video-image-button img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

.hero--presentation {
  position: relative;
}

.hero--presentation .hero-inner {
  margin-left: 125px;
}

.presentation-hero-play-button {
  position: absolute;
  top: 19%;
  left: 67.5%;
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: transform 0.35s ease, filter 0.35s ease;
}

.presentation-hero-play-button__circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.85);
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow:
    0 0 30px rgba(255, 255, 255, 0.15),
    0 0 60px rgba(255, 255, 255, 0.1);
  transition: box-shadow 0.35s ease, background 0.35s ease;
}

.presentation-hero-play-button__icon {
  margin-left: 5px;
  font-size: 1.75rem;
  line-height: 1;
}

.presentation-hero-play-button__label {
  margin-top: 2px;
  margin-left: 18px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.presentation-hero-play-button:hover {
  transform: translate(-50%, -50%) scale(1.06);
  filter: drop-shadow(0 0 18px rgba(255, 255, 255, 0.35));
}

.presentation-hero-play-button:hover .presentation-hero-play-button__circle {
  background: rgba(255, 255, 255, 0.16);
  box-shadow:
    0 0 28px rgba(255, 255, 255, 0.32),
    0 0 52px rgba(220, 199, 155, 0.22);
}

.presentation-hero-play-button:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.75);
  outline-offset: 6px;
}

.presentation-video-modal {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.presentation-video-modal.is-open {
  display: flex;
}

.presentation-video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
}

.presentation-video-modal__content {
  position: relative;
  width: min(92vw, 1200px);
  max-height: calc(100vh - 32px);
  z-index: 2;
  padding-top: 48px;
}

.presentation-video-modal__content video {
  display: block;
  width: 100%;
  max-height: calc(100vh - 96px);
  border-radius: 12px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.presentation-video-modal__close {
  position: absolute;
  top: 0;
  right: 0;
  min-width: 44px;
  min-height: 44px;
  padding: 0;
  background: transparent;
  border: 0;
  color: white;
  font-size: 42px;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 900px) {
  .hero--presentation .hero-inner {
    margin-left: 0;
  }

  .presentation-hero-play-button {
    top: 38%;
    left: 72%;
  }

  .presentation-hero-play-button__circle {
    width: 78px;
    height: 78px;
  }

  .presentation-hero-play-button__label {
    margin-left: 0;
    font-size: 0.78rem;
  }

  .presentation-video-button {
    width: 88px;
    height: 88px;
    font-size: 34px;
  }

  .presentation-video-modal {
    padding: 12px;
  }

  .presentation-video-modal__content {
    width: 100%;
    padding-top: 44px;
  }

  .presentation-video-modal__content video {
    max-height: calc(100vh - 72px);
  }

  .presentation-video-modal__close {
    top: 4px;
    right: 4px;
    font-size: 36px;
  }
}

@media (max-width: 600px) {
  .presentation-hero-play-button {
    top: 32%;
    left: 50%;
  }

  .presentation-hero-play-button__label {
    margin-left: 0;
  }
}

.presentation-v2-gallery {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.presentation-v2-slide {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #121417;
}

.presentation-v2-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

@media (max-width: 900px) {
  .presentation-v2-slide {
    aspect-ratio: auto;
  }

  .presentation-v2-image {
    width: 100%;
    height: auto;
    object-fit: initial;
  }
}

/* HomeV2 — Current Developments */

.current-developments {
  background: var(--white);
  padding: 132px 0;
}

.developments-header {
  max-width: 840px;
  margin-bottom: 80px;
}

.developments-header .eyebrow {
  margin-bottom: 20px;
  color: #c7a56a;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.developments-header h2 {
  margin: 0 0 28px;
  max-width: 820px;
  color: #111315;
  font-size: clamp(2.5rem, 4vw, 4.25rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.developments-header p {
  margin: 0;
  max-width: 820px;
  color: #4d514b;
  font-size: 1.125rem;
  line-height: 1.78;
}

.development-showcase {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 72px;
  align-items: center;
  margin-bottom: 104px;
}

.development-showcase:last-child {
  margin-bottom: 0;
}

.development-showcase.reverse .development-image {
  order: 2;
}

.development-showcase.reverse .development-content {
  order: 1;
}

.development-image img,
.home-v2-image-zoom-trigger img {
  display: block;
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(18, 20, 23, 0.08);
}

.home-v2-image-zoom-trigger {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  line-height: 0;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.home-v2-image-zoom-trigger:hover img,
.home-v2-image-zoom-trigger:focus-visible img {
  box-shadow: 0 18px 48px rgba(18, 20, 23, 0.14);
}

.home-v2-image-zoom-trigger:focus-visible {
  outline: 2px solid rgba(13, 51, 43, 0.35);
  outline-offset: 4px;
  border-radius: 18px;
}

.development-content {
  max-width: 560px;
}

.development-content .development-location {
  display: block;
  margin: 0 0 18px;
  color: #c7a56a;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.development-content h3 {
  margin: 0 0 24px;
  color: #111315;
  font-size: clamp(2rem, 3vw, 2.6rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.development-content p {
  margin: 0 0 32px;
  color: #4d514b;
  font-size: 1.125rem;
  line-height: 1.78;
}

.development-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(18, 20, 23, 0.1);
}

.development-stats span {
  display: block;
  margin-bottom: 8px;
  color: #8a8f88;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.development-stats strong {
  display: block;
  color: #111315;
  font-size: 1rem;
  line-height: 1.45;
}

.development-link {
  display: inline-block;
  color: var(--green-dark);
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 900px) {
  .current-developments {
    padding: 96px 0;
  }

  .developments-header {
    margin-bottom: 56px;
  }

  .development-showcase,
  .development-showcase.reverse {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 80px;
  }

  .development-showcase.reverse .development-image,
  .development-showcase.reverse .development-content {
    order: initial;
  }

  .development-content {
    max-width: none;
  }

  .development-stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* HomeV2 — Featured Developments & Footer polish */

.page-home-v2 .hero-copy {
  font-size: 1.125rem;
  line-height: 1.68;
}

.page-home-v2 .featured-developments {
  padding: 120px 0 128px;
}

.page-home-v2 .section-intro {
  max-width: 860px;
  margin-bottom: 56px;
}

.page-home-v2 .section-intro h2 {
  max-width: 820px;
  margin-bottom: 0;
}

.page-home-v2 .development-grid {
  gap: 36px;
}

.page-home-v2 .development-card-image {
  min-height: auto;
}

.page-home-v2 .development-card-content {
  padding: 48px 44px 52px;
}

.page-home-v2 .development-card-image h3 {
  margin-bottom: 16px;
  font-size: 2.05rem;
  line-height: 1.12;
}

.page-home-v2 .development-card-content .development-location {
  margin: 0 0 28px;
  font-size: 1rem;
  line-height: 1.5;
}

.page-home-v2 .development-card ul {
  font-size: 1.0625rem;
  line-height: 1.85;
}

.page-home-v2 .development-card-content .card-eyebrow {
  margin-bottom: 18px;
}

.page-home-v2 .development-button {
  margin-top: 32px;
  min-height: 56px;
  padding: 0 28px;
  font-size: 1rem;
}

.page-home-v2 .site-footer .footer-grid {
  gap: 64px;
  padding-block: 100px 76px;
}

.page-home-v2 .site-footer .footer-brand p {
  max-width: 400px;
  font-size: 1.05rem;
  line-height: 1.72;
}

.page-home-v2 .site-footer .footer-column h2 {
  margin-bottom: 22px;
  font-size: 0.82rem;
}

.page-home-v2 .site-footer .footer-column a {
  margin-bottom: 14px;
  font-size: 1rem;
  line-height: 1.5;
}

.page-home-v2 .site-footer .footer-bottom {
  padding-block: 36px;
}

.page-home-v2 .site-footer .footer-bottom p {
  font-size: 0.92rem;
}

@media (max-width: 900px) {
  .page-home-v2 .featured-developments {
    padding: 96px 0 104px;
  }

  .page-home-v2 .development-card-content {
    padding: 40px 32px 44px;
  }

  .page-home-v2 .site-footer .footer-grid {
    gap: 40px;
    padding-block: 72px 56px;
  }
}

/* HomeV2 — Image Lightbox */

.home-v2-image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100001;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.home-v2-image-lightbox.is-open {
  display: flex;
  opacity: 1;
}

.home-v2-image-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.86);
}

.home-v2-image-lightbox__dialog {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(92vw, 1400px);
  max-height: calc(100vh - 48px);
  padding-top: 48px;
}

.home-v2-image-lightbox__image {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: calc(100vh - 96px);
  height: auto;
  border-radius: 12px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

.home-v2-image-lightbox__close {
  position: absolute;
  top: 0;
  right: 0;
  min-width: 44px;
  min-height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #ffffff;
  font-size: 42px;
  line-height: 1;
  cursor: pointer;
}

.home-v2-image-lightbox__close:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.75);
  outline-offset: 4px;
}

@media (max-width: 900px) {
  .home-v2-image-lightbox {
    padding: 16px;
  }

  .home-v2-image-lightbox__dialog {
    width: 100%;
    padding-top: 44px;
  }

  .home-v2-image-lightbox__image {
    max-height: calc(100vh - 72px);
  }

  .home-v2-image-lightbox__close {
    top: 4px;
    right: 4px;
    font-size: 36px;
  }
}