:root {
  --green: #003f2c;
  --green-2: #062f25;
  --green-3: #005f40;
  --gold: #d99f24;
  --gold-2: #f2be39;
  --ink: #071c16;
  --muted: #53625c;
  --line: #dfe5e1;
  --paper: #ffffff;
  --soft: #f5f7f3;
  --shadow: 0 16px 45px rgba(0, 42, 28, 0.16);
  font-family: Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: #fbfcfa;
  font-size: 14px;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
img { display: block; max-width: 100%; }

.topbar {
  min-height: 34px;
  padding: 0 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: #002d21;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}
.topbar__left, .topbar__right { display: flex; align-items: center; gap: 15px; min-width: 0; }
.topbar__left {
  flex: 1 1 auto;
}
.topbar__right {
  flex: 0 0 auto;
  justify-content: flex-end;
  gap: 14px;
  white-space: nowrap;
}
.topbar__right a {
  color: #fff;
  white-space: nowrap;
}
.topbar__right strong {
  white-space: nowrap;
}
.topbar__right .social-icon {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 50%;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
}
.topbar-ticker {
  overflow: hidden;
  white-space: nowrap;
}
.ticker-track {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  min-width: max-content;
  animation: ticker-scroll 32s linear infinite;
}
.ticker-track span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.ticker-track span::before {
  content: "•";
  color: var(--gold-2);
  font-size: 15px;
  line-height: 1;
}
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.wa-dot {
  padding: 3px 9px;
  border-radius: 999px;
  background: #0cad59;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 82px;
  padding: 9px 34px;
  display: flex;
  align-items: center;
  gap: 18px;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid #eef1ed;
  box-shadow: 0 8px 24px rgba(0, 45, 32, .055);
}
.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 0 0 250px;
  min-width: 250px;
  width: 250px;
  height: 78px;
  overflow: hidden;
  color: var(--green);
}
.brand img {
  width: 232px;
  height: 72px;
  display: block;
  object-fit: contain;
  object-position: center center;
  mix-blend-mode: normal;
  border-radius: 3px;
}
.brand-slogan {
  display: none;
  width: 100%;
  margin-top: -2px;
  color: #a6781d;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.2px;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}
.main-nav {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(9px, 1.15vw, 18px);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  min-width: 0;
  height: 100%;
}
.main-nav a { position: relative; padding: 29px 0 25px; white-space: nowrap; }
.main-nav a.active { color: var(--gold); }
.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 15px;
  height: 2px;
  background: var(--gold);
}
.live-badge {
  display: inline-grid;
  place-items: center;
  min-width: 35px;
  height: 19px;
  padding: 0 7px;
  border-radius: 4px;
  color: #fff;
  background: #f01818;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}
.book-visit {
  flex: 0 0 auto;
  min-height: 46px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  background: var(--gold-2);
  color: #111;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}
.nav-toggle { display: none; }

.hero {
  position: relative;
  min-height: 505px;
  display: grid;
  grid-template-columns: minmax(430px, 40%) 1fr;
  overflow: hidden;
  background: #f6faf8;
}
.hero::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0 auto 0 0;
  width: min(42%, 620px);
  background: linear-gradient(90deg, #fff 0 86%, rgba(255,255,255,.92) 92%, rgba(255,255,255,0));
  pointer-events: none;
}
.hero__content {
  position: relative;
  z-index: 2;
  width: min(100%, 590px);
  padding: 54px 30px 38px 42px;
}
.eyebrow {
  margin: 0 0 11px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}
.eyebrow::before { content: "⌑ "; color: var(--gold); }
h1 {
  margin: 0;
  color: var(--green-2);
  font-size: clamp(43px, 4.7vw, 61px);
  line-height: .94;
  letter-spacing: 0;
}
h1 span { color: var(--gold); }
.hero__copy {
  max-width: 385px;
  margin: 17px 0 21px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.34;
}
.hero-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(150px, 1fr));
  gap: 14px 18px;
  max-width: 430px;
  margin-bottom: 21px;
}
.hero-points span {
  display: grid;
  grid-template-columns: 34px auto;
  column-gap: 9px;
  align-items: center;
  min-width: 92px;
  color: #162620;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
}
.hero-points span::before {
  content: "⌂";
  grid-row: span 2;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-size: 18px;
}
.hero-points b { display: block; font-size: 12px; }
.hero-actions { display: flex; gap: 18px; flex-wrap: wrap; }
.btn {
  min-height: 52px;
  padding: 0 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  border: 0;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}
.btn--green { background: var(--green); color: #fff; }
.btn--gold { background: var(--gold-2); color: #0a160f; }
.btn--full { width: 100%; min-height: 45px; margin-top: 12px; }
.hero__media {
  position: absolute;
  inset: 0 0 0 40%;
  overflow: hidden;
}
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.08), rgba(255,255,255,0) 18%),
    linear-gradient(180deg, rgba(0,0,0,0), rgba(0,40,28,.2));
  pointer-events: none;
}
.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 50%;
  opacity: 0;
  filter: saturate(1.08) contrast(1.04);
  transition: opacity .9s ease;
}
.hero-slide.active {
  opacity: 1;
}
.hero-slide-dots {
  position: absolute;
  z-index: 2;
  right: 105px;
  bottom: 24px;
  display: flex;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(0, 48, 34, .55);
  backdrop-filter: blur(6px);
}
.hero-slide-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  cursor: pointer;
}
.hero-slide-dots button.active {
  width: 24px;
  background: var(--gold-2);
}
.site-sign {
  position: absolute;
  right: 155px;
  bottom: 44px;
  padding: 13px 23px;
  background: rgba(36, 24, 12, .58);
  color: #f3d991;
  border: 1px solid rgba(242,190,57,.7);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  line-height: .92;
  text-align: center;
  box-shadow: 0 12px 35px rgba(0,0,0,.35);
}
.site-sign span { font-size: 15px; letter-spacing: 4px; }
.availability-card {
  position: absolute;
  z-index: 3;
  right: 68px;
  top: 28px;
  width: 210px;
  padding: 22px 19px 18px;
  border-radius: 9px;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(0,63,44,.08);
  box-shadow: 0 18px 48px rgba(0, 42, 28, .18);
}
.card-title {
  display: flex;
  justify-content: space-between;
  gap: 7px;
  color: #061c15;
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
}
.big-number {
  display: block;
  margin-top: 8px;
  font-size: 44px;
  line-height: 1;
}
.muted {
  display: block;
  color: #172720;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}
.meter-row { margin-top: 18px; font-size: 12px; font-weight: 900; text-transform: uppercase; }
.meter {
  display: block;
  height: 9px;
  margin-top: 8px;
  overflow: hidden;
  border-radius: 99px;
  background: #e6e9e4;
}
.meter i { display: block; height: 100%; border-radius: inherit; background: #83bf22; }
.meter--pale i { background: #9cab84; }
.meter--light i { background: #a6ca67; }

.float-actions {
  position: fixed;
  right: 0;
  top: 215px;
  z-index: 40;
  width: 76px;
  overflow: hidden;
  border-radius: 10px 0 0 10px;
  box-shadow: var(--shadow);
}
.float-actions a {
  min-height: 74px;
  padding: 8px 6px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 4px;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
}
.float-actions__icon {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 50%;
  color: #fff;
  font-size: 16px;
  line-height: 1;
}
.float-actions__whatsapp { background: #0c9f51; }
.float-actions__call { background: var(--gold); }
.float-actions__visit { background: #003225; }

.mortgage-band {
  margin: -1px 38px 0;
  min-height: 180px;
  display: grid;
  grid-template-columns: 240px 1.1fr 250px 210px 1fr;
  align-items: stretch;
  background: var(--green);
  color: #fff;
  border-radius: 0 0 8px 8px;
  overflow: hidden;
}
.family-crop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 42% 45%;
}
.mortgage-copy { padding: 30px 25px 24px; }
.mortgage-copy span {
  display: block;
  margin-bottom: 11px;
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
}
.mortgage-copy h2 {
  margin: 0;
  font-size: 35px;
  line-height: .98;
  text-transform: uppercase;
}
.mortgage-copy b { color: var(--gold-2); }
.price-box {
  align-self: center;
  padding: 21px 20px 19px;
  border: 1px solid var(--gold);
  border-radius: 8px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}
.price-box span {
  display: block;
}
.price-box__amount {
  display: grid;
  margin-top: 7px;
  white-space: nowrap;
}
.price-box strong {
  display: block;
  color: var(--gold-2);
  font-size: 36px;
  line-height: 1;
}
.price-box small {
  display: block;
  color: #fff;
  font-size: 17px;
  line-height: 1;
  text-align: right;
}
.rate-box { align-self: center; padding: 18px 19px; text-align: center; text-transform: uppercase; }
.rate-box strong { display: block; font-size: 50px; line-height: .9; }
.rate-box span { display: block; font-size: 19px; font-weight: 900; }
.rate-box b { display: inline-block; margin-top: 9px; padding: 8px 21px; background: var(--gold); color: #162018; border-radius: 3px; }
.mortgage-band ul {
  margin: 0;
  padding: 27px 24px 20px 5px;
  list-style: none;
  font-weight: 800;
  line-height: 1.85;
}
.mortgage-band li::before { content: "✓ "; color: var(--gold-2); }
.mortgage-actions {
  grid-column: 3 / 5;
  align-self: end;
  display: flex;
  gap: 9px;
  margin: 0 12px 14px;
}
.mortgage-actions button, .feature-card button, .feature-card a {
  min-height: 35px;
  padding: 0 19px;
  border: 1px solid var(--gold);
  border-radius: 4px;
  background: var(--gold-2);
  color: #061c15;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}
.mortgage-actions button:first-child { background: #fff; border-color: #fff; }
.btn--outline {
  border: 1px solid var(--green);
  background: #fff;
  color: var(--green);
}

.inventory-strip {
  margin: 10px 38px 9px;
  display: grid;
  grid-template-columns: 190px repeat(7, 1fr);
  border: 1px solid #e8ece8;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 39, 27, .06);
}
.inventory-live {
  padding: 18px 17px;
  background: var(--green);
  color: #fff;
}
.inventory-live strong { display: inline-block; margin-top: 15px; font-size: 42px; line-height: 1; }
.inventory-live > span { display: block; font-size: 19px; font-weight: 900; text-transform: uppercase; }
.inventory-live small { display: block; margin-top: 12px; font-weight: 800; }
.unit-stat {
  min-height: 165px;
  padding: 17px 12px 13px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-left: 1px solid #e6ebe7;
  transition: background .2s ease, transform .2s ease;
}
.unit-stat:hover {
  background: #fbfcfa;
  transform: translateY(-1px);
}
.unit-stat::before {
  content: "▥";
  color: #152920;
  font-size: 31px;
  line-height: 1;
}
.unit-stat b { text-transform: uppercase; font-size: 13px; }
.unit-stat small { margin-top: 2px; font-size: 11px; font-weight: 700; text-transform: uppercase; }
.unit-stat strong { margin-top: 8px; font-size: 31px; line-height: 1; }
.unit-stat span { font-size: 12px; font-weight: 900; text-transform: uppercase; }
.unit-stat em { margin-top: 6px; color: var(--gold); font-style: normal; font-weight: 900; text-transform: uppercase; }

.feature-grid {
  margin: 0 38px;
  display: grid;
  grid-template-columns: 1.07fr .95fr 1fr .98fr .78fr;
  gap: 11px;
}
.feature-card {
  min-height: 235px;
  position: relative;
  overflow: hidden;
  padding: 22px;
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  background: var(--green);
  color: #fff;
  box-shadow: 0 10px 26px rgba(0, 45, 32, .13);
}
.feature-card h3 {
  margin: 0 0 10px;
  font-size: 19px;
  line-height: 1.1;
  text-transform: uppercase;
}
.feature-card p { margin: 0 0 14px; font-weight: 700; line-height: 1.45; }
.feature-card--image img, .progress img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .72;
}
.feature-card--image img { object-position: 54% 50%; }
.feature-card--image::after, .progress::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,42,28,.22), rgba(0,42,28,.76));
}
.feature-card--image > div, .progress > *:not(img) { position: relative; z-index: 1; }
.feature-card--image > div,
.developer > div {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.feature-card--image a,
.diaspora a,
.progress a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  color: #fff;
  background: rgba(0,63,44,.85);
}
.calc-card {
  background:
    linear-gradient(90deg, rgba(0, 50, 37, .96) 0 48%, rgba(0, 50, 37, .42) 100%),
    url("./assets/investment-calculator-bg.png") center right / cover no-repeat,
    var(--green);
}
.calc-card button {
  align-self: flex-start;
  margin-top: auto;
}
.calculator-visual {
  display: none;
}
.calculator-visual span { display: none; }
.diaspora {
  background:
    linear-gradient(90deg, rgba(0, 50, 37, .96) 0 48%, rgba(0, 50, 37, .46) 100%),
    url("./assets/diaspora-investor-bg.png") center right / cover no-repeat,
    var(--green);
}
.diaspora ul { margin: 14px 0 14px; padding: 0; list-style: none; line-height: 1.65; font-weight: 800; }
.diaspora li::before { content: "✓ "; color: var(--gold-2); }
.diaspora a {
  align-self: flex-start;
  background: var(--gold-2);
  color: #061c15;
  border-color: var(--gold-2);
}
.developer {
  color: var(--ink);
  background: linear-gradient(110deg, #fff 0 55%, #e8ece6 56%);
}
.developer img {
  position: absolute;
  right: -18px;
  bottom: 0;
  width: 46%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 18%;
}
.developer h3, .developer p, .developer strong, .developer small, .developer a, .developer button {
  position: relative;
  z-index: 1;
}
.developer > div {
  position: relative;
  z-index: 1;
  max-width: 58%;
}
.developer strong, .developer small { display: block; }
.developer a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  background: #11a35c;
  border-color: #11a35c;
  color: #fff;
}
.developer button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  background: #fff;
}
.progress { padding-right: 14px; }
.progress img {
  object-position: 48% 54%;
  filter: saturate(1.08) contrast(1.04);
}
.progress::after {
  background: linear-gradient(180deg, rgba(0,42,28,.12), rgba(0,42,28,.82));
}
.progress button {
  position: relative;
  z-index: 1;
  width: 54px;
  min-width: 54px;
  height: 54px;
  min-height: 54px;
  display: grid;
  place-items: center;
  margin: 16px auto;
  padding: 0;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.9);
  background: rgba(255,255,255,.92);
  color: transparent;
  font-size: 0;
  box-shadow: 0 14px 32px rgba(0,0,0,.24), inset 0 0 0 6px rgba(0,63,44,.08);
}
.progress button {
  position: absolute;
  left: 50%;
  top: 52%;
  transform: translate(-50%, -50%);
  margin: 0;
}
.progress button::before {
  content: "";
  position: absolute;
  left: 52%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid var(--green);
}
.progress button:hover {
  background: var(--gold-2);
  border-color: rgba(255,255,255,.95);
}
.feature-card.progress > button {
  min-width: 54px;
  width: 54px;
  padding: 0;
}
.feature-card > a,
.feature-card > button,
.feature-card--image a,
.developer a,
.developer button {
  min-width: 118px;
}

.plan-explorer {
  position: relative;
  margin: 11px 38px 0;
  padding: clamp(20px, 3vw, 34px);
  border-radius: 8px;
  background:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(135deg, rgba(0, 46, 34, .96), rgba(0, 82, 61, .9)),
    var(--green);
  background-size: 34px 34px, 34px 34px, auto, auto;
  color: #fff;
  overflow: hidden;
  user-select: none;
}
.plan-explorer::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(242,190,57,.24);
  border-radius: inherit;
  pointer-events: none;
}
.plan-explorer__intro {
  position: relative;
  z-index: 1;
  max-width: 850px;
}
.plan-explorer__intro h2 {
  margin: 14px 0 8px;
  font-size: clamp(28px, 3.4vw, 46px);
  line-height: 1.02;
}
.plan-explorer__intro p {
  margin: 0 0 22px;
  color: rgba(255,255,255,.82);
  font-weight: 700;
}
.plan-explorer__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}
.plan-explorer__stats span {
  min-height: 40px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 999px;
  background: rgba(0,25,18,.28);
  color: rgba(255,255,255,.78);
  font-size: 12px;
  font-weight: 800;
}
.plan-explorer__stats b {
  color: var(--gold-2);
  font-size: 14px;
}
.plan-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 250px minmax(360px, 1fr) 255px;
  gap: 16px;
  align-items: stretch;
}
.plan-controls,
.plan-insights,
.plan-viewer-card {
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 8px;
  background: rgba(0, 30, 23, .72);
  backdrop-filter: blur(8px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, .18);
}
.plan-controls {
  padding: 17px;
}
.plan-controls__heading {
  margin-bottom: 14px;
  padding-bottom: 13px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.plan-controls__heading b,
.plan-controls__heading span,
.plan-legend strong,
.plan-legend span {
  display: block;
}
.plan-controls__heading b {
  color: #fff;
  font-size: 18px;
}
.plan-controls__heading span,
.plan-legend span {
  color: rgba(255,255,255,.72);
  font-size: 12px;
  font-weight: 760;
}
.plan-tab {
  width: 100%;
  min-height: 76px;
  margin-top: 9px;
  padding: 12px;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 4px 10px;
  align-items: center;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 7px;
  background:
    linear-gradient(120deg, rgba(255,255,255,.1), rgba(255,255,255,.035)),
    rgba(255,255,255,.06);
  color: #fff;
  text-align: left;
  cursor: pointer;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.plan-tab:hover {
  transform: translateX(3px);
  border-color: rgba(242,190,57,.58);
}
.plan-tab span {
  grid-row: span 2;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  background: rgba(242,190,57,.16);
  color: var(--gold-2);
  font-weight: 900;
}
.plan-tab b,
.plan-tab small {
  display: block;
}
.plan-tab small {
  color: rgba(255,255,255,.7);
  font-size: 11px;
  font-weight: 760;
}
.plan-tab.active {
  border-color: var(--gold-2);
  background:
    linear-gradient(120deg, rgba(242,190,57,.26), rgba(255,255,255,.06)),
    rgba(242,190,57,.14);
  box-shadow: inset 3px 0 0 var(--gold-2);
}
.plan-legend {
  margin-top: 14px;
  padding: 14px;
  border-radius: 7px;
  background: rgba(255,255,255,.08);
}
.plan-legend strong {
  margin-bottom: 9px;
  color: var(--gold-2);
}
.plan-legend span {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 8px;
  align-items: center;
  min-height: 26px;
}
.plan-legend i {
  width: 18px;
  height: 4px;
  border-radius: 999px;
  background: var(--gold-2);
}
.plan-legend span:nth-of-type(2) i {
  background: #8fc7ff;
}
.plan-legend span:nth-of-type(3) i {
  background: #8fdfb5;
}
.plan-viewer-card {
  overflow: hidden;
  background: #f8faf7;
  color: var(--ink);
}
.plan-viewer-toolbar {
  min-height: 68px;
  padding: 15px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid rgba(0,63,44,.1);
  background: #fff;
}
.plan-viewer-toolbar span,
.plan-viewer-toolbar strong {
  display: block;
}
.plan-viewer-toolbar span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}
.plan-viewer-toolbar strong {
  font-size: 16px;
  line-height: 1.2;
}
.plan-viewer-tools {
  display: inline-flex;
  padding: 3px;
  border-radius: 999px;
  background: #edf2ee;
}
.plan-tool {
  min-height: 32px;
  padding: 0 13px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}
.plan-tool.active {
  background: var(--green);
  color: #fff;
}
.plan-viewer {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background:
    linear-gradient(45deg, #f2f5f1 25%, transparent 25% 75%, #f2f5f1 75%),
    linear-gradient(45deg, #f2f5f1 25%, transparent 25% 75%, #f2f5f1 75%);
  background-color: #fff;
  background-position: 0 0, 12px 12px;
  background-size: 24px 24px;
}
.plan-viewer::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 14px;
  border: 1px dashed rgba(0,63,44,.18);
  border-radius: 6px;
  pointer-events: none;
}
.plan-viewer::after {
  content: "View only";
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(0,63,44,.9);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  pointer-events: none;
}
.plan-viewer iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.plan-stack {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 28px;
  background:
    linear-gradient(rgba(0,63,44,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,63,44,.06) 1px, transparent 1px),
    #f8faf7;
  background-size: 26px 26px, 26px 26px, auto;
}
.plan-viewer[data-view-mode="stack"] iframe {
  opacity: 0;
  pointer-events: none;
}
.plan-viewer[data-view-mode="stack"] .plan-stack {
  display: flex;
}
.plan-stack button {
  width: min(22%, 135px);
  aspect-ratio: 1 / 1.2;
  transform: skewY(-8deg);
  border: 1px solid rgba(0,63,44,.16);
  border-radius: 7px;
  background: linear-gradient(160deg, #fff, #e8efe9);
  color: var(--green);
  box-shadow: 0 22px 36px rgba(0,63,44,.18);
  cursor: pointer;
}
.plan-stack span,
.plan-stack b {
  display: block;
  transform: skewY(8deg);
}
.plan-stack span {
  color: var(--gold);
  font-size: 34px;
  font-weight: 900;
}
.plan-insights {
  padding: 19px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.02)),
    rgba(0, 30, 23, .72);
}
.plan-insights h3 {
  margin: 18px 0 10px;
  font-size: 22px;
}
.plan-insights p {
  color: rgba(255,255,255,.78);
  font-weight: 700;
}
.plan-metrics {
  display: grid;
  gap: 10px;
  margin: 18px 0;
}
.plan-metrics span {
  min-height: 70px;
  padding: 12px;
  display: grid;
  align-content: center;
  border-radius: 7px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.72);
  font-size: 12px;
  font-weight: 760;
}
.plan-metrics b {
  display: block;
  color: #fff;
  font-size: 19px;
}
.plan-insights button {
  width: 100%;
  min-height: 42px;
  border: 0;
  border-radius: 5px;
  background: var(--gold-2);
  color: #061c15;
  font-weight: 900;
  cursor: pointer;
}

.diaspora-hub {
  margin: 13px 38px 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 28px rgba(0, 45, 32, .08);
}
.diaspora-hero {
  display: grid;
  grid-template-columns: minmax(360px, .8fr) 1.2fr;
  min-height: 382px;
  background: linear-gradient(90deg, #fff 0 44%, #f3f7f2);
}
.diaspora-copy {
  padding: 34px 30px 30px;
  align-self: center;
}
.section-pill {
  display: inline-flex;
  align-items: center;
  min-height: 33px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}
.section-pill::before {
  content: "◎";
  margin-right: 8px;
  color: var(--gold-2);
}
.diaspora-copy h2 {
  margin: 18px 0 10px;
  color: var(--green);
  font-size: clamp(34px, 4.1vw, 58px);
  line-height: 1;
  letter-spacing: 0;
}
.diaspora-copy p {
  max-width: 540px;
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}
.diaspora-proof {
  margin: 24px 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(88px, 1fr));
  gap: 12px;
}
.diaspora-proof span {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 8px;
  align-items: center;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.15;
}
.diaspora-proof span::before {
  content: "✓";
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid var(--green);
  border-radius: 50%;
  color: var(--green);
}
.diaspora-proof b { display: block; }
.diaspora-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.diaspora-visual {
  position: relative;
  min-height: 382px;
  overflow: hidden;
}
.diaspora-visual::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 1;
  width: 18%;
  background: linear-gradient(90deg, #fff, rgba(255,255,255,0));
}
.diaspora-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 64% 50%;
}
.process-section {
  padding: 16px 20px 22px;
  background: #fbfcfa;
}
.section-heading--compact h2 { font-size: 18px; }
.section-heading--compact p {
  margin: -6px 0 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.process-grid article {
  position: relative;
  min-height: 150px;
  padding: 24px 13px 14px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  text-align: center;
}
.process-grid article:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--green);
  font-weight: 900;
}
.process-grid span {
  position: absolute;
  top: -10px;
  left: 50%;
  width: 24px;
  height: 24px;
  transform: translateX(-50%);
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}
.process-grid b { display: block; font-size: 13px; line-height: 1.2; }
.process-grid p { margin: 10px 0 0; color: var(--muted); font-size: 12px; line-height: 1.35; }
.trust-section {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 18px;
  padding: 0 20px 22px;
}
.trust-section h3 {
  margin: 0 0 12px;
  color: var(--green);
  text-align: center;
  text-transform: uppercase;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.trust-grid span {
  min-height: 62px;
  display: grid;
  place-items: center;
  padding: 10px;
  border-radius: 7px;
  background: #f4f7f1;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  text-align: center;
}
.trust-grid span::before {
  content: "⌑";
  display: block;
  color: var(--gold);
  font-size: 18px;
}
.trust-section aside {
  padding: 24px;
  border-radius: 8px;
  background: var(--green);
  color: #fff;
  align-self: stretch;
}
.trust-section aside b {
  display: block;
  font-size: 18px;
  line-height: 1.25;
}
.trust-section aside span {
  display: block;
  margin: 12px 0;
  color: var(--gold-2);
  letter-spacing: 2px;
}
.trust-section aside p { margin: 0; font-weight: 800; line-height: 1.4; }

.virtual-experience {
  margin: 13px 38px 0;
}
.virtual-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr) minmax(260px, .8fr);
  gap: 12px;
}
.virtual-grid article {
  min-height: 226px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 7px 18px rgba(0, 36, 25, .06);
}
.virtual-grid img {
  width: 100%;
  height: 132px;
  object-fit: cover;
  object-position: 55% 60%;
  border-radius: 5px;
}
.virtual-grid b {
  display: block;
  margin-top: 11px;
  color: var(--green);
  font-size: 14px;
  text-transform: uppercase;
}
.virtual-grid p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
}
.virtual-booking {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.virtual-booking h3 {
  margin: 0 0 10px;
  color: var(--green);
  font-size: 17px;
  text-transform: uppercase;
}
.virtual-booking button,
.virtual-booking a {
  min-height: 39px;
  margin-top: 10px;
  display: grid;
  place-items: center;
  border: 1px solid var(--green);
  border-radius: 5px;
  background: var(--green);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.virtual-booking a {
  background: #fff;
  color: var(--green);
}

.investment-returns {
  margin: 13px 38px 0;
  display: grid;
  grid-template-columns: 1fr 1.05fr .82fr;
  gap: 12px;
  align-items: stretch;
}
.returns-copy,
.returns-table,
.management-list {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 7px 18px rgba(0, 36, 25, .06);
}
.returns-copy {
  background:
    linear-gradient(90deg, rgba(255,255,255,.96), rgba(255,255,255,.88)),
    url("./assets/living-r6.png") center / cover;
}
.returns-copy h2 {
  margin: 16px 0 8px;
  color: var(--green);
  font-size: 28px;
  text-transform: uppercase;
}
.returns-copy p {
  margin: 0 0 18px;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.45;
}
.returns-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin-bottom: 16px;
}
.returns-metrics span {
  min-height: 66px;
  padding: 10px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: rgba(0, 63, 44, .08);
  color: var(--green);
  font-size: 11px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}
.returns-metrics b {
  display: block;
  color: var(--gold);
  font-size: 17px;
  line-height: 1;
}
.returns-table {
  display: grid;
  align-content: center;
  padding: 18px;
}
.returns-table div {
  display: grid;
  grid-template-columns: 1.4fr .8fr .8fr;
  gap: 8px;
  min-height: 34px;
  align-items: center;
  border-bottom: 1px solid #edf1ed;
  font-size: 12px;
}
.returns-table div:first-child {
  color: var(--green);
  font-size: 11px;
  text-transform: uppercase;
}
.returns-table div:last-child { border-bottom: 0; }
.returns-table span {
  font-weight: 800;
}
.management-list {
  background: #f6f8f4;
}
.management-list h3 {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 17px;
  text-transform: uppercase;
}
.management-list ul {
  margin: 0;
  padding: 0;
  list-style: none;
  font-weight: 900;
  line-height: 1.8;
}
.management-list li::before {
  content: "✓ ";
  color: var(--gold);
}

.connector {
  margin: 13px 38px 0;
  min-height: 88px;
  padding: 12px 24px;
  display: grid;
  grid-template-columns: 90px 1.6fr 1fr 260px;
  align-items: center;
  gap: 18px;
  border-radius: 8px;
  background: linear-gradient(90deg, #f0bd3b, #f8d678 67%, #efb42a);
  color: #1b180c;
  box-shadow: 0 10px 24px rgba(141, 96, 0, .16);
}
.connector-icon {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  border: 3px solid #4c3705;
  border-radius: 50%;
  font-size: 42px;
}
.connector h2 { margin: 0; font-size: 21px; text-transform: uppercase; }
.connector p { margin: 7px 0 0; font-size: 16px; font-weight: 700; }
.connector ul { margin: 0; padding: 0; list-style: none; font-weight: 800; line-height: 1.6; }
.connector li::before { content: "✓ "; }
.connector strong { padding-left: 18px; border-left: 1px solid rgba(0,0,0,.22); }
.connector span { font-size: 22px; }

.homes {
  position: relative;
  padding: 15px 36px 9px;
  overflow: hidden;
}
.section-heading { text-align: center; }
.section-heading h2 { margin: 0; font-size: 22px; text-transform: uppercase; }
.section-heading span {
  display: block;
  width: 92px;
  height: 16px;
  margin: 4px auto 10px;
  border-top: 2px solid var(--gold);
}
.home-rail {
  width: 100%;
  min-width: 0;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(218px, 22vw, 286px);
  gap: 16px;
  padding: 2px 4px 12px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-padding-left: 4px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.home-rail::-webkit-scrollbar { display: none; }
.home-card {
  min-width: 155px;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  padding: 9px 9px 12px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 5px 16px rgba(0, 36, 25, .06);
  transition: transform .2s ease, box-shadow .2s ease;
}
.home-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 11px 24px rgba(0, 36, 25, .1);
}
.home-card img {
  width: 100%;
  aspect-ratio: 1.72 / 1;
  object-fit: cover;
  object-position: 55% 75%;
  border-radius: 5px;
}
.home-card:nth-child(2n) img { object-position: 43% 70%; }
.home-card b, .home-card strong, .home-card em, .home-card span, .home-card small { display: block; }
.home-card b { margin-top: 9px; font-size: 13px; }
.home-card small { font-size: 11px; font-weight: 800; text-transform: uppercase; }
.home-card strong { margin-top: 4px; font-size: 18px; }
.home-card span { margin-top: 4px; color: #514418; font-size: 11px; font-weight: 700; }
.home-card span::before { content: "⊙ "; color: var(--gold); }
.home-card em { margin-top: 9px; font-size: 11px; font-style: normal; font-weight: 900; text-transform: uppercase; }
.rail-btn {
  position: absolute;
  top: 51%;
  z-index: 2;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: #1b2b24;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,.12);
}
.rail-btn--left { left: 5px; }
.rail-btn--right { right: 5px; }

.proof-strip {
  margin: 0 38px;
  min-height: 56px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: center;
  border-radius: 8px;
  background: var(--green);
  color: #fff;
  overflow: hidden;
}
.proof-strip span {
  min-height: 56px;
  padding: 8px 12px;
  display: grid;
  place-items: center;
  border-left: 1px solid rgba(255,255,255,.16);
  font-size: 12px;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}
.proof-strip b { display: block; color: var(--gold-2); font-size: 23px; line-height: 1; }

.content-columns {
  margin: 10px 38px;
  display: grid;
  grid-template-columns: 1.35fr 1fr 1.05fr;
  align-items: stretch;
  gap: 12px;
}
.content-columns > * {
  min-width: 0;
}
.testimonials, .blog, .faq {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 6px 18px rgba(0, 36, 25, .05);
}
.testimonials {
  min-height: 275px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.content-columns h3 {
  margin: 0 0 16px;
  font-size: 15px;
  text-transform: uppercase;
}
.panel-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.panel-heading h3 { margin-bottom: 12px; }
.slider-dots {
  display: flex;
  align-items: center;
  gap: 6px;
}
.slider-dots button {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #c9d2cd;
  cursor: pointer;
}
.slider-dots button.active {
  width: 18px;
  border-radius: 999px;
  background: var(--gold);
}
.testimonial-slider {
  overflow: hidden;
  min-height: 112px;
  width: 100%;
  min-width: 0;
}
.testimonial-track {
  width: 100%;
  max-width: 100%;
  display: flex;
  gap: 18px;
  transition: transform .55s ease;
  will-change: transform;
}
.testimonial-track article {
  min-width: 0;
  flex: 0 0 calc(50% - 9px);
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 11px;
  align-items: start;
}
.testimonial-track p { margin: 0; font-size: 12px; font-weight: 700; line-height: 1.45; }
.testimonial-track b, .testimonial-track span { grid-column: 2; font-size: 12px; }
.testimonial-track span { color: var(--gold); letter-spacing: 2px; }
.avatar {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-weight: 900;
}
.avatar--gold { background: var(--gold); color: #111; }
.financing-partners {
  margin-top: auto;
  padding-top: 17px;
  border-top: 1px solid var(--line);
}
.financing-partners h3 {
  margin-bottom: 12px;
}
.partner-logos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.partner-logos a {
  min-height: 74px;
  display: grid;
  place-items: center;
  border: 1px solid #e7ece7;
  border-radius: 7px;
  background: linear-gradient(180deg, #fff, #f8faf7);
}
.partner-logos img {
  max-width: 130px;
  max-height: 56px;
  object-fit: contain;
}
.blog h3 { display: flex; justify-content: space-between; gap: 12px; }
.blog h3 a,
.blog h3 button {
  border: 0;
  background: transparent;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  text-transform: none;
  cursor: pointer;
}
.blog article {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 12px;
  margin-bottom: 14px;
}
.blog img {
  width: 92px;
  height: 70px;
  object-fit: cover;
  object-position: 50% 50%;
  border-radius: 4px;
}
.blog small, .blog b, .blog a, .blog p { display: block; }
.blog small { color: #69766f; font-size: 10px; text-transform: uppercase; }
.blog b { font-size: 12px; line-height: 1.2; }
.blog p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
}
.blog article a,
.blog article button {
  display: block;
  margin-top: 3px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--green);
  font-size: 11px;
  font-weight: 900;
  cursor: pointer;
}
.faq button {
  width: 100%;
  min-height: 37px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  font-size: 13px;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}
.faq button::after { content: "+"; font-size: 20px; }
.faq button.open::after { content: "-"; }
.faq-answer {
  padding: 9px 0 13px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}
.resource-link {
  min-height: 38px;
  margin-top: 12px;
  display: grid;
  place-items: center;
  border-radius: 5px;
  background: var(--green);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.ready {
  margin: 11px 38px 0;
  min-height: 70px;
  padding: 12px 22px;
  display: grid;
  grid-template-columns: 1fr 300px 240px 240px;
  align-items: center;
  gap: 18px;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(90deg, #f1bd3a, #f7ce64);
}
.ready h2 { margin: 0; font-size: 18px; text-transform: uppercase; }
.ready p { margin: 4px 0 0; font-weight: 700; }
.ready a, .ready button {
  min-height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(0,0,0,.22);
  border-radius: 6px;
  background: rgba(255,255,255,.9);
  color: #071c16;
  font-weight: 900;
  text-transform: uppercase;
}
.ready a span { display: block; font-size: 11px; text-transform: none; }
.ready .ready__whatsapp { background: var(--green); color: #fff; }
.ready button { background: transparent; cursor: pointer; }

.footer {
  padding: 22px 38px 26px;
  display: grid;
  grid-template-columns: 1.5fr .7fr .8fr 1.15fr 1.35fr;
  gap: 28px;
  background: #002d21;
  color: #fff;
}
.brand--footer { min-width: 0; color: #fff; }
.brand--footer {
  width: 230px;
  height: auto;
  min-height: 0;
  flex: 0 0 auto;
  overflow: visible;
  margin-bottom: 8px;
}
.brand--footer img {
  width: 215px;
  height: 86px;
  object-fit: contain;
  object-position: left center;
  mix-blend-mode: normal;
  border-radius: 4px;
}
.footer p { margin: 9px 0; color: rgba(255,255,255,.78); line-height: 1.45; }
.footer h4 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
}
.footer a, .footer button {
  display: block;
  margin: 7px 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255,255,255,.8);
  font-size: 13px;
  text-align: left;
  cursor: pointer;
}
.newsletter label { display: block; margin-bottom: 6px; color: rgba(255,255,255,.82); font-size: 12px; font-weight: 800; }
.newsletter div { display: grid; grid-template-columns: 1fr 118px; gap: 7px; }
.newsletter input {
  min-width: 0;
  height: 39px;
  padding: 0 12px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 3px;
}
.newsletter button {
  border: 0;
  border-radius: 3px;
  background: var(--gold-2);
  color: #101710;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.footer > div,
.footer > form {
  min-width: 0;
}

.modal {
  width: min(520px, calc(100vw - 30px));
  border: 0;
  border-radius: 10px;
  padding: 0;
  box-shadow: 0 30px 90px rgba(0,0,0,.35);
}
.modal::backdrop { background: rgba(0, 25, 17, .62); }
.modal__close {
  position: absolute;
  right: 10px;
  top: 8px;
  z-index: 1;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 50%;
  background: #eef3ef;
  font-size: 24px;
  cursor: pointer;
}
.modal__body { padding: 28px; }
.modal h2 { margin: 0 0 12px; color: var(--green); text-transform: uppercase; }
.modal p { margin: 0 0 16px; color: var(--muted); line-height: 1.45; }
.modal label { display: block; margin: 12px 0 5px; font-weight: 900; }
.modal input, .modal select {
  width: 100%;
  height: 43px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 5px;
}
.modal .btn { width: 100%; margin-top: 16px; }
.result-box {
  margin-top: 15px;
  padding: 13px;
  border-radius: 6px;
  background: #eef7ef;
  color: var(--green);
  font-weight: 900;
}
.modal-link {
  min-height: 40px;
  margin-top: 12px;
  display: grid;
  place-items: center;
  border: 1px solid var(--green);
  border-radius: 5px;
  color: var(--green);
  font-weight: 900;
  text-transform: uppercase;
}
.booking-modal {
  margin: -28px;
  padding: 0 0 24px;
  background: linear-gradient(180deg, #ffffff, #f7faf6);
}
.booking-modal__hero {
  padding: 30px 28px 24px;
  border-radius: 10px 10px 0 0;
  background:
    linear-gradient(135deg, rgba(0, 64, 45, .95), rgba(5, 92, 66, .9)),
    url("./assets/vista2-r5.png") center / cover;
  color: #fff;
}
.booking-modal__hero span {
  display: inline-flex;
  min-height: 28px;
  padding: 0 10px;
  align-items: center;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 999px;
  background: rgba(0, 20, 14, .3);
  color: var(--gold-2);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}
.booking-modal__hero h2 {
  margin: 12px 0 8px;
  color: #fff;
  font-size: 34px;
  line-height: .95;
}
.booking-modal__hero p {
  max-width: 430px;
  margin: 0;
  color: rgba(255,255,255,.86);
  font-weight: 700;
}
.booking-section {
  margin: 16px 18px 0;
  padding: 16px;
  border: 1px solid #dfe7df;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(0, 36, 25, .045);
}
.booking-section h3 {
  margin: 0 0 10px;
  color: var(--green);
  font-size: 15px;
  text-transform: uppercase;
}
.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 12px;
}
.booking-grid label {
  margin: 0;
}
.booking-grid label:nth-of-type(3),
.booking-grid input:nth-of-type(3) {
  grid-column: 1 / -1;
}
.booking-modal label {
  color: #1d3b31;
  font-size: 12px;
  text-transform: uppercase;
}
.booking-modal input,
.booking-modal select {
  height: 46px;
  background: #fbfcfa;
  font-weight: 700;
}
.booking-hint {
  margin: 8px 0 0;
  color: #68776f;
  font-size: 12px;
  font-weight: 700;
}
.booking-choice-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.booking-choice-group label {
  min-height: 44px;
  margin: 0;
  padding: 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid #dfe7df;
  border-radius: 999px;
  background: #f8faf7;
  cursor: pointer;
}
.booking-choice-group input {
  width: 14px;
  height: 14px;
  padding: 0;
  accent-color: var(--green);
}
.booking-choice-group span {
  font-size: 12px;
  font-weight: 900;
}
.booking-submit {
  width: calc(100% - 36px);
  margin: 18px 18px 0;
}
.booking-modal .result-box {
  margin-left: 18px;
  margin-right: 18px;
}

/* Professional polish pass */
.mortgage-band,
.inventory-strip,
.feature-grid,
.virtual-experience,
.investment-returns,
.connector,
.proof-strip,
.content-columns,
.ready,
.footer {
  max-width: 1480px;
}
.mortgage-band,
.inventory-strip,
.feature-card,
.connector,
.home-card,
.testimonials,
.blog,
.faq,
.ready,
.virtual-grid article,
.returns-copy,
.returns-table,
.management-list {
  border-radius: 6px;
}
.feature-card,
.home-card,
.testimonials,
.blog,
.faq,
.virtual-grid article,
.returns-copy,
.returns-table,
.management-list {
  box-shadow: 0 8px 22px rgba(0, 36, 25, .055);
}
.feature-card {
  min-height: 245px;
}
.feature-card h3,
.content-columns h3,
.management-list h3,
.virtual-booking h3 {
  letter-spacing: .2px;
}
.homes {
  margin-top: 8px;
  background: #fff;
}
.section-heading h2 {
  color: var(--green);
  letter-spacing: .3px;
}
.home-card img {
  height: auto;
  aspect-ratio: 1.62 / 1;
}
.proof-strip {
  box-shadow: 0 9px 20px rgba(0, 45, 32, .13);
}
.content-columns {
  align-items: start;
}
.ready {
  box-shadow: 0 12px 28px rgba(141, 96, 0, .16);
}
.footer {
  margin: 0 auto;
}

.diaspora-page {
  background: #fff;
}
.diaspora-page main {
  padding-bottom: 0;
}
.diaspora-hub--page {
  margin: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
.diaspora-hub--page .diaspora-hero {
  min-height: 470px;
}
.diaspora-hub--page .diaspora-copy {
  padding-left: clamp(28px, 4vw, 70px);
}
.diaspora-hub--page .diaspora-visual {
  min-height: 470px;
}
.process-section--page,
.trust-section--page,
.diaspora-virtual,
.diaspora-returns,
.diaspora-ready {
  max-width: 1480px;
  margin-left: auto;
  margin-right: auto;
}
.process-section--page {
  padding: 25px 38px 26px;
  background: #fff;
}
.trust-section--page {
  padding: 0 38px 24px;
}
.diaspora-virtual,
.diaspora-returns {
  margin-top: 16px;
}
.diaspora-ready {
  margin-top: 16px;
}

.diaspora-exact-page {
  margin: 0;
  min-height: 100vh;
  background: #f8f8f4;
}
.diaspora-exact {
  position: relative;
  width: min(100vw, 1536px);
  margin: 0 auto;
  aspect-ratio: 1536 / 866;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 16px 45px rgba(0, 45, 32, .08);
}
.diaspora-exact img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.hotspot {
  position: absolute;
  z-index: 5;
  display: block;
  border-radius: 4px;
}
.hotspot:focus-visible {
  outline: 3px solid rgba(217, 159, 36, .8);
  outline-offset: 2px;
  background: rgba(217, 159, 36, .1);
}
.nav-home { left: 22.8%; top: 3.2%; width: 3.9%; height: 3.1%; }
.nav-apartments { left: 27.7%; top: 3.2%; width: 6.8%; height: 3.1%; }
.nav-investment { left: 35.7%; top: 3.2%; width: 6.9%; height: 3.1%; }
.nav-masterplan { left: 44.5%; top: 3.2%; width: 7.2%; height: 3.1%; }
.nav-availability { left: 52.2%; top: 3.2%; width: 7.4%; height: 3.1%; }
.nav-diaspora { left: 57.7%; top: 2.7%; width: 7.7%; height: 4.7%; }
.nav-faq { left: 66.0%; top: 3.2%; width: 3.4%; height: 3.1%; }
.nav-contact { left: 69.6%; top: 3.2%; width: 5.6%; height: 3.1%; }
.nav-book { left: 86.8%; top: 1.9%; width: 10.5%; height: 4.7%; }
.hero-whatsapp { left: 3.2%; top: 42.7%; width: 13.7%; height: 4.2%; }
.hero-meeting { left: 18.4%; top: 42.7%; width: 12.6%; height: 4.2%; }
.video-project { left: 3.0%; top: 72.1%; width: 10.4%; height: 14.2%; }
.video-unit { left: 14.1%; top: 72.1%; width: 9.8%; height: 14.2%; }
.video-site { left: 25.1%; top: 72.1%; width: 8.8%; height: 14.2%; }
.virtual-book { left: 35.8%; top: 79.2%; width: 12.8%; height: 3.3%; }
.virtual-whatsapp { left: 35.8%; top: 83.4%; width: 12.8%; height: 3.0%; }
.bottom-whatsapp { left: 72.5%; top: 91.8%; width: 10.2%; height: 5.0%; }
.bottom-meeting { left: 83.5%; top: 91.8%; width: 12.0%; height: 5.0%; }

@media (max-width: 760px) {
  .diaspora-exact {
    width: 1536px;
    max-width: none;
    margin: 0;
  }
  .diaspora-exact-page {
    overflow-x: auto;
  }
}

/* Header refinement and code-built Diaspora page */
.site-header {
  min-height: 82px;
  padding: 10px clamp(16px, 2.3vw, 36px);
  gap: clamp(10px, 1.15vw, 20px);
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid rgba(0, 63, 44, .1);
  box-shadow: 0 16px 42px rgba(0, 38, 26, .08);
  backdrop-filter: blur(18px);
}
.brand {
  flex: 0 0 212px;
  min-width: 212px;
  width: 212px;
  height: 72px;
  align-items: center;
}
.brand img {
  width: 204px;
  height: 68px;
  object-position: center center;
}
.brand-slogan {
  width: 180px;
  margin-top: -5px;
  color: #a47617;
  font-size: 7px;
  letter-spacing: .85px;
}
.main-nav {
  height: 48px;
  min-width: 0;
  padding: 4px;
  justify-content: center;
  gap: 2px;
  border: 1px solid rgba(0, 63, 44, .11);
  border-radius: 999px;
  background: rgba(246, 250, 248, .86);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8);
  color: #243c34;
  font-size: 10.4px;
  font-weight: 900;
  letter-spacing: .01em;
  text-transform: none;
}
.main-nav a {
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0 clamp(6px, .58vw, 10px);
  border-radius: 999px;
  transition: color .18s ease, background .18s ease, box-shadow .18s ease, transform .18s ease;
}
.main-nav a:hover {
  color: var(--green);
  background: #fff;
  box-shadow: 0 8px 22px rgba(0, 45, 32, .08);
}
.main-nav a:focus-visible,
.book-visit:focus-visible,
.nav-toggle:focus-visible {
  outline: 3px solid rgba(217, 159, 36, .35);
  outline-offset: 3px;
}
.main-nav a.active {
  color: #fff;
  background: var(--green);
  box-shadow: 0 10px 24px rgba(0, 63, 44, .18);
}
.main-nav a.active::after {
  display: none;
}
.book-visit {
  min-height: 46px;
  padding: 0 15px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f6c64b 0%, var(--gold) 100%);
  box-shadow: 0 12px 28px rgba(217, 159, 36, .22);
  transition: transform .18s ease, box-shadow .18s ease;
}
.book-visit:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(217, 159, 36, .28);
}
.main-nav .live-badge {
  min-width: auto;
  height: 16px;
  padding: 0 6px;
  border-radius: 999px;
  background: #df3124;
  font-size: 8.5px;
  letter-spacing: .04em;
}

.diaspora-redesign {
  background: #fff;
}
.diaspora-redesign .topbar {
  display: none;
}
.diaspora-header {
  position: sticky;
  top: 0;
}
.diaspora-header .book-visit {
  background: var(--green);
  color: #fff;
  box-shadow: 0 12px 28px rgba(0, 63, 44, .2);
}
.diaspora-main {
  width: min(100%, 1536px);
  margin: 0 auto;
  background: #fff;
}
.diaspora-hero-pro {
  min-height: 350px;
  display: grid;
  grid-template-columns: minmax(420px, 37%) 1fr;
  overflow: hidden;
  border-bottom: 1px solid #edf1ed;
  background: #fff;
}
.diaspora-hero-copy {
  position: relative;
  z-index: 2;
  padding: 28px 0 20px clamp(32px, 4vw, 54px);
  background: linear-gradient(90deg, #fff 0 80%, rgba(255,255,255,.92) 90%, rgba(255,255,255,0));
}
.diaspora-pill {
  display: inline-flex;
  align-items: center;
  min-height: 31px;
  padding: 0 15px;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}
.diaspora-hero-copy h1 {
  margin: 18px 0 10px;
  color: var(--green);
  font-size: clamp(40px, 4.5vw, 58px);
  line-height: 1.02;
}
.diaspora-hero-copy p {
  max-width: 430px;
  margin: 0;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.45;
}
.diaspora-benefits {
  max-width: 455px;
  margin: 22px 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.diaspora-benefits span {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 7px;
  align-items: center;
  font-size: 10.5px;
  font-weight: 900;
  line-height: 1.1;
}
.diaspora-benefits i {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid var(--green);
  border-radius: 50%;
  color: var(--green);
  font-style: normal;
}
.diaspora-benefits b {
  display: block;
  font-size: 11.5px;
}
.diaspora-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.diaspora-hero-actions .btn {
  min-height: 43px;
  padding: 0 20px;
  font-size: 11.5px;
}
.diaspora-hero-image {
  min-height: 350px;
  overflow: hidden;
}
.diaspora-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% 0;
}
.diaspora-process,
.diaspora-trust-row,
.diaspora-two-column,
.diaspora-returns-band,
.diaspora-testimonials,
.diaspora-final-cta {
  margin: 0 clamp(24px, 3vw, 48px);
}
.diaspora-section-title {
  padding: 12px 0 14px;
  text-align: center;
}
.diaspora-section-title h2,
.diaspora-trust-panel h2,
.diaspora-testimonials h2 {
  margin: 0;
  color: var(--green);
  font-size: 18px;
  line-height: 1.15;
  text-transform: uppercase;
}
.diaspora-section-title p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}
.diaspora-process .process-grid {
  grid-template-columns: repeat(6, 1fr);
}
.diaspora-process .process-grid article {
  min-height: 126px;
  padding: 23px 11px 12px;
}
.diaspora-trust-row {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1fr 250px;
  gap: 18px;
  align-items: stretch;
}
.diaspora-trust-panel {
  padding: 14px 18px;
  border-radius: 7px;
  background: #f7f8f5;
}
.diaspora-trust-panel h2 {
  margin-bottom: 13px;
  text-align: center;
}
.diaspora-trust-panel .trust-grid {
  grid-template-columns: repeat(6, 1fr);
}
.diaspora-safe-card {
  padding: 24px 22px;
  border-radius: 7px;
  background: var(--green);
  color: #fff;
}
.diaspora-safe-card strong {
  display: block;
  font-size: 16px;
  line-height: 1.35;
}
.diaspora-safe-card span {
  display: block;
  margin: 12px 0;
  color: var(--gold-2);
  letter-spacing: 2px;
}
.diaspora-safe-card p {
  margin: 0;
  font-weight: 800;
}
.diaspora-two-column {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 18px;
}
.diaspora-section-title--left {
  padding-top: 0;
}
.diaspora-virtual-grid {
  grid-template-columns: repeat(3, 1fr);
}
.diaspora-book-card {
  align-self: end;
  min-height: 188px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  text-align: center;
}
.diaspora-book-card h3 {
  margin: 0 0 9px;
  color: var(--green);
  font-size: 15px;
  text-transform: uppercase;
}
.diaspora-book-card p {
  margin: 0 0 14px;
  color: var(--muted);
  font-weight: 800;
}
.diaspora-book-card a {
  min-height: 38px;
  margin-top: 9px;
  display: grid;
  place-items: center;
  border: 1px solid var(--green);
  border-radius: 5px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.diaspora-book-card a:first-of-type {
  background: var(--green);
  color: #fff;
}
.diaspora-returns-band {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr 1.1fr .86fr;
  gap: 14px;
}
.diaspora-testimonials {
  margin-top: 18px;
}
.diaspora-testimonials h2 {
  margin-bottom: 12px;
  text-align: center;
}
.diaspora-testimonials > div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.diaspora-testimonials article {
  min-height: 106px;
  padding: 16px;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(0,36,25,.05);
}
.diaspora-testimonials p {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
}
.diaspora-testimonials b,
.diaspora-testimonials span {
  grid-column: 2;
  font-size: 12px;
}
.diaspora-testimonials span {
  color: var(--gold);
  font-weight: 900;
}
.diaspora-final-cta {
  margin-top: 18px;
  margin-bottom: 0;
  min-height: 82px;
  padding: 14px 28px;
  display: grid;
  grid-template-columns: 1fr 260px 280px;
  align-items: center;
  gap: 16px;
  border-radius: 7px 7px 0 0;
  background: #f7faf5;
}
.diaspora-final-cta h2 {
  margin: 0;
  color: var(--green);
  font-size: 25px;
}
.diaspora-final-cta p {
  margin: 3px 0 0;
  font-weight: 800;
}
.diaspora-final-cta a {
  min-height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid var(--green);
  border-radius: 5px;
  background: var(--green);
  color: #fff;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}
.diaspora-final-cta a:last-child {
  background: #fff;
  color: var(--green);
}
.diaspora-final-cta span {
  font-size: 11px;
}

@media (max-width: 1260px) {
  .brand {
    flex-basis: 190px;
    min-width: 190px;
    width: 190px;
  }
  .brand img {
    width: 184px;
  }
  .main-nav {
    font-size: 9.8px;
  }
  .diaspora-process .process-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .diaspora-process .process-grid article:nth-child(3)::after {
    display: none;
  }
  .diaspora-trust-panel .trust-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .diaspora-hero-pro,
  .diaspora-two-column,
  .diaspora-returns-band,
  .diaspora-final-cta,
  .diaspora-trust-row {
    grid-template-columns: 1fr;
  }
  .diaspora-hero-copy {
    padding: 28px 20px;
  }
  .diaspora-hero-image {
    min-height: 300px;
  }
  .diaspora-benefits,
  .diaspora-virtual-grid,
  .diaspora-testimonials > div {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .diaspora-process .process-grid,
  .diaspora-trust-panel .trust-grid,
  .diaspora-benefits,
  .diaspora-virtual-grid,
  .diaspora-testimonials > div {
    grid-template-columns: 1fr;
  }
  .diaspora-hero-copy h1 {
    font-size: 36px;
  }
}

@media (max-width: 1180px) {
  .topbar { padding: 0 20px; }
  .topbar__right a[href^="mailto"] { display: none; }
  .topbar__right { gap: 10px; }
  .site-header { padding: 8px 18px; gap: 12px; }
  .brand { flex-basis: 196px; min-width: 196px; width: 196px; height: 72px; }
  .brand img { width: 190px; height: 68px; }
  .brand-slogan { font-size: 8.5px; letter-spacing: .8px; }
  .main-nav { font-size: 10px; }
  .book-visit { padding-left: 12px; padding-right: 12px; font-size: 11px; }
  .hero { grid-template-columns: minmax(390px, 43%) 1fr; }
  .hero::before { width: min(45%, 560px); }
  .hero__media { left: 43%; }
  .hero-points { grid-template-columns: repeat(2, minmax(130px, 1fr)); }
  .availability-card { right: 26px; }
  .mortgage-band, .inventory-strip, .feature-grid, .diaspora-hub, .virtual-experience, .investment-returns, .connector, .proof-strip, .content-columns, .ready { margin-left: 20px; margin-right: 20px; }
  .mortgage-band { grid-template-columns: 190px 1fr 220px 190px; }
  .mortgage-band ul { grid-column: 1 / -1; padding: 0 24px 16px; display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; line-height: 1.25; }
  .feature-grid { grid-template-columns: repeat(3, 1fr); }
  .plan-explorer { margin-left: 20px; margin-right: 20px; }
  .plan-shell { grid-template-columns: 210px 1fr; }
  .plan-insights { grid-column: 1 / -1; }
  .plan-metrics { grid-template-columns: repeat(2, 1fr); }
  .diaspora-hero { grid-template-columns: 1fr; }
  .diaspora-visual { min-height: 320px; }
  .diaspora-visual::before { display: none; }
  .process-grid { grid-template-columns: repeat(3, 1fr); }
  .process-grid article:nth-child(3)::after { display: none; }
  .trust-section { grid-template-columns: 1fr; }
  .virtual-grid { grid-template-columns: repeat(2, 1fr); }
  .investment-returns { grid-template-columns: 1fr 1fr; }
  .management-list { grid-column: 1 / -1; }
  .progress { grid-column: span 1; }
  .inventory-strip { overflow-x: auto; grid-template-columns: 185px repeat(7, 155px); }
  .connector { grid-template-columns: 70px 1fr; }
  .connector ul, .connector strong { grid-column: 2; }
  .ready { grid-template-columns: 1fr 230px; }
  .footer { grid-template-columns: 1.4fr repeat(2, .8fr); }
}

@media (max-width: 1120px) {
  .topbar { display: none; }
  .site-header {
    position: sticky;
    height: auto;
    min-height: 76px;
    flex-wrap: wrap;
    padding: 10px 16px;
    gap: 10px 14px;
  }
  .nav-toggle {
    position: absolute;
    top: 20px;
    right: 16px;
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 42px;
    border: 1px solid rgba(0, 63, 44, .14);
    border-radius: 999px;
    background: #fff;
    color: var(--green);
    box-shadow: 0 8px 22px rgba(0, 45, 32, .08);
    cursor: pointer;
  }
  .nav-toggle span {
    position: absolute;
    left: 13px;
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform .18s ease, opacity .18s ease;
  }
  .nav-toggle span:nth-child(1) { top: 14px; }
  .nav-toggle span:nth-child(2) { top: 20px; }
  .nav-toggle span:nth-child(3) { top: 26px; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .book-visit {
    order: 5;
    width: 100%;
    min-height: 44px;
    padding: 0 14px;
    text-align: center;
  }
  .brand {
    min-width: 196px;
    width: 196px;
    height: 76px;
    flex: 0 0 196px;
    margin-left: auto;
    margin-right: auto;
    order: 1;
  }
  .brand img { width: 190px; height: 72px; }
  .brand-slogan { font-size: 8.8px; letter-spacing: .9px; }
  .nav-toggle { order: 2; }
  .main-nav {
    order: 4;
    width: 100%;
    height: auto;
    display: none;
    grid-template-columns: 1fr 1fr;
    justify-content: stretch;
    gap: 8px;
    padding: 10px;
    border-radius: 16px;
  }
  .main-nav.open { display: grid; }
  .main-nav a {
    height: 40px;
    padding: 0 10px;
    background: #fff;
    border: 1px solid rgba(0, 63, 44, .08);
  }
  .main-nav a.active::after { bottom: 2px; }
  .hero {
    display: block;
    min-height: 0;
    background: #fff;
  }
  .hero::before { display: none; }
  .hero__media {
    position: relative;
    inset: auto;
    height: 320px;
  }
  .hero__media::after {
    background: linear-gradient(180deg, rgba(0,0,0,0), rgba(0, 43, 31, .16));
  }
  .hero-slide { object-position: 50% 50%; }
  .hero-slide-dots {
    right: 18px;
    bottom: 16px;
  }
  .hero__content { padding: 30px 20px 20px; }
  .hero__copy { font-size: 16px; }
  .site-sign { right: 20px; bottom: 18px; }
  .availability-card {
    position: relative;
    right: auto;
    top: auto;
    width: auto;
    margin: -32px 20px 16px;
  }
  .float-actions { display: none; }
  .mortgage-band {
    grid-template-columns: 1fr;
    border-radius: 8px;
  }
  .family-crop { height: 160px; }
  .price-box, .rate-box { margin: 0 20px 15px; }
  .mortgage-actions { grid-column: auto; margin: 0 20px 20px; }
  .mortgage-band ul { grid-column: auto; grid-template-columns: 1fr; padding: 0 22px 15px; }
  .plan-shell { grid-template-columns: 1fr; }
  .plan-viewer { min-height: 470px; }
  .plan-viewer-toolbar { align-items: flex-start; flex-direction: column; }
  .plan-stack { flex-wrap: wrap; }
  .plan-stack button { width: min(42%, 150px); }
  .feature-grid, .content-columns { grid-template-columns: 1fr; }
  .diaspora-proof { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid article::after { display: none; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .virtual-grid { grid-template-columns: 1fr; }
  .investment-returns { grid-template-columns: 1fr; }
  .returns-metrics { grid-template-columns: 1fr; }
  .connector { grid-template-columns: 1fr; text-align: center; }
  .connector-icon { margin: auto; }
  .connector ul, .connector strong { grid-column: auto; border-left: 0; padding-left: 0; }
  .proof-strip { grid-template-columns: repeat(2, 1fr); }
  .testimonial-track article { flex: 0 0 100%; }
  .partner-logos { grid-template-columns: 1fr 1fr; }
  .ready { grid-template-columns: 1fr; }
  .footer {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .footer > div,
  .footer > form {
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255,255,255,.1);
  }
  .footer > *:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }
  .footer-brand,
  .newsletter {
    max-width: 100%;
  }
  .newsletter div {
    grid-template-columns: minmax(0, 1fr) 118px;
  }
}

@media (max-width: 560px) {
  .site-header { padding: 10px 14px; }
  .site-header .brand { min-width: 188px; width: 188px; height: 74px; flex: 0 0 188px; }
  .site-header .brand img { width: 182px; height: 70px; }
  .brand-slogan { font-size: 8.4px; letter-spacing: .75px; }
  h1 { font-size: 42px; }
  .hero__content { padding-top: 28px; }
  .hero-points { grid-template-columns: 1fr 1fr; gap: 12px; }
  .hero-actions .btn { width: 100%; }
  .mortgage-band, .inventory-strip, .feature-grid, .diaspora-hub, .virtual-experience, .investment-returns, .connector, .proof-strip, .content-columns, .ready { margin-left: 12px; margin-right: 12px; }
  .plan-explorer { margin-left: 12px; margin-right: 12px; padding: 18px; }
  .plan-viewer { min-height: 390px; }
  .plan-metrics { grid-template-columns: 1fr; }
  .homes { padding-left: 12px; padding-right: 12px; }
  .home-rail { grid-auto-columns: 72%; }
  .proof-strip { grid-template-columns: 1fr; }
  .panel-heading { align-items: flex-start; }
  .partner-logos img { max-width: 104px; }
  .diaspora-copy { padding: 26px 18px; }
  .diaspora-copy h2 { font-size: 35px; }
  .process-grid, .trust-grid { grid-template-columns: 1fr; }
  .returns-table {
    overflow-x: auto;
  }
  .returns-table div {
    min-width: 420px;
  }
  .footer {
    padding-left: 18px;
    padding-right: 18px;
    padding-top: 24px;
    padding-bottom: 24px;
    gap: 16px;
  }
  .footer-brand,
  .footer > div,
  .footer > form {
    text-align: left;
  }
  .footer-brand {
    display: block;
    overflow: hidden;
  }
  .brand--footer {
    display: block;
    width: 180px;
    min-width: 0;
    max-width: 180px;
    height: auto;
    min-height: 0;
    flex: none;
    margin: 0 0 10px;
    overflow: hidden;
    align-items: flex-start;
  }
  .brand--footer img {
    width: 180px;
    max-width: 100%;
    height: auto;
    min-height: 0;
  }
  .footer h4 {
    margin-bottom: 8px;
  }
  .footer a,
  .footer button {
    margin: 8px 0;
    line-height: 1.5;
  }
  .newsletter div {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .newsletter input,
  .newsletter button {
    width: 100%;
    height: 42px;
  }
}

/* Modern typography system */
:root {
  --font-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, Helvetica, sans-serif;
  --type-xs: 11px;
  --type-sm: 12px;
  --type-md: 14px;
  --type-lg: 16px;
  --type-xl: 20px;
  --type-2xl: clamp(24px, 2.1vw, 34px);
  --type-3xl: clamp(34px, 4.2vw, 58px);
  --type-hero: clamp(42px, 4.55vw, 58px);
}

html,
body,
button,
input,
select,
textarea {
  font-family: var(--font-sans);
}

body {
  font-size: var(--type-md);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
h4,
.hero__copy,
.btn,
.book-visit,
.main-nav,
.topbar,
.section-pill,
.eyebrow,
.card-title,
.live-badge {
  font-family: var(--font-sans);
}

h1,
.diaspora-copy h2,
.diaspora-hero-copy h1 {
  font-size: var(--type-hero);
  font-weight: 800;
  line-height: .98;
  letter-spacing: 0;
}

.diaspora-hero-copy h1 {
  font-size: clamp(40px, 4.4vw, 58px);
}

h2,
.section-heading h2,
.returns-copy h2,
.connector h2,
.ready h2,
.diaspora-section-title h2,
.diaspora-trust-panel h2,
.diaspora-testimonials h2,
.diaspora-final-cta h2,
.mortgage-copy h2 {
  font-size: var(--type-2xl);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
}

h3,
.feature-card h3,
.content-columns h3,
.management-list h3,
.virtual-booking h3,
.diaspora-book-card h3,
.blog b {
  font-size: var(--type-xl);
  font-weight: 750;
  line-height: 1.18;
  letter-spacing: 0;
}

p,
li,
.feature-card p,
.returns-copy p,
.connector p,
.footer p,
.modal p,
.diaspora-copy p,
.diaspora-hero-copy p,
.diaspora-safe-card p,
.diaspora-testimonials p {
  font-size: var(--type-lg);
  font-weight: 500;
  line-height: 1.6;
}

.topbar,
.main-nav,
.book-visit,
.btn,
.mortgage-actions button,
.feature-card button,
.feature-card a,
.ready a,
.diaspora-book-card a,
.diaspora-final-cta a,
.faq button,
.modal label {
  font-size: var(--type-sm);
  font-weight: 760;
  letter-spacing: .01em;
}

.eyebrow,
.section-pill,
.card-title,
.inventory-live > span,
.unit-stat b,
.unit-stat span,
.unit-stat em,
.home-card small,
.home-card em,
.content-columns h3,
.footer h4,
.newsletter label,
.diaspora-pill,
.diaspora-book-card a,
.diaspora-final-cta a,
.returns-table b {
  font-size: var(--type-sm);
  font-weight: 760;
  letter-spacing: .045em;
}

.brand-slogan {
  font-family: var(--font-sans);
  font-weight: 760;
}

.hero__copy {
  font-size: clamp(17px, 1.45vw, 20px);
  font-weight: 560;
  line-height: 1.46;
}

.hero-points span,
.diaspora-proof span,
.process-grid p,
.virtual-grid p,
.returns-table div,
.testimonial-track p,
.testimonial-track b,
.testimonial-track span,
.blog small,
.faq-answer,
.footer a,
.diaspora-benefits span,
.diaspora-section-title p,
.diaspora-testimonials b,
.diaspora-testimonials span,
.diaspora-final-cta span {
  font-size: var(--type-sm);
  line-height: 1.45;
}

.hero-points b,
.diaspora-proof b,
.process-grid b,
.virtual-grid b,
.unit-stat small,
.home-card b,
.home-card strong {
  font-weight: 760;
  letter-spacing: 0;
}

.virtual-grid b,
.process-grid b,
.trust-grid span,
.home-card b,
.blog b {
  font-size: 15px;
  line-height: 1.22;
}

.virtual-grid p,
.process-grid p,
.home-card span,
.blog small,
.faq-answer {
  color: var(--muted);
}

.availability-card .big-number,
.inventory-live strong,
.unit-stat strong,
.price-box strong,
.rate-box strong,
.calculator-visual,
.connector-icon {
  font-family: var(--font-sans);
  font-weight: 800;
  letter-spacing: 0;
}

.feature-card h3,
.returns-copy h2,
.management-list h3,
.section-heading h2,
.ready h2,
.footer h4,
.diaspora-section-title h2,
.diaspora-trust-panel h2,
.diaspora-testimonials h2,
.diaspora-book-card h3 {
  text-transform: none;
}

.btn,
.book-visit,
.mortgage-actions button,
.feature-card button,
.feature-card a,
.ready a,
.diaspora-book-card a,
.diaspora-final-cta a {
  text-transform: none;
}

@media (max-width: 760px) {
  :root {
    --type-lg: 15px;
    --type-xl: 18px;
    --type-2xl: 25px;
    --type-hero: clamp(38px, 10.2vw, 46px);
  }

  h1,
  .diaspora-copy h2,
  .diaspora-hero-copy h1 {
    line-height: 1.02;
  }

  .hero__copy,
  p,
  li,
  .feature-card p,
  .returns-copy p,
  .connector p,
  .diaspora-copy p,
  .diaspora-hero-copy p {
    line-height: 1.55;
  }
}

/* Blog page */
.blog-page {
  background: #f6f8f4;
  color: #061f17;
}
.blog-header {
  position: sticky;
  top: 0;
  box-shadow: 0 8px 22px rgba(0, 36, 25, .08);
}
.blog-hero {
  position: relative;
  max-width: 1480px;
  margin: 26px auto 18px;
  padding: 34px 38px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: end;
  overflow: hidden;
  border-radius: 8px;
  color: #fff;
}
.blog-hero::before {
  content: "";
  position: absolute;
  inset: -26px;
  background: url("./assets/blog-syokimau.png") center / cover no-repeat;
  filter: blur(18px);
  transform: scale(1.08);
}
.blog-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(0, 74, 52, .94), rgba(0, 58, 43, .82));
}
.blog-hero > * {
  position: relative;
  z-index: 1;
}
.blog-hero h1 {
  max-width: 850px;
  margin: 8px 0 10px;
  color: #fff;
  font-size: clamp(34px, 4vw, 64px);
  line-height: .98;
  text-transform: uppercase;
}
.blog-hero .eyebrow {
  color: #fff;
}
.blog-hero p {
  max-width: 720px;
  margin: 0;
  color: #fff;
  font-size: 17px;
  line-height: 1.5;
}
.blog-hero__actions {
  display: grid;
  gap: 10px;
}
.blog-hero__actions a,
.blog-cta {
  min-height: 42px;
  padding: 12px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  background: var(--gold);
  color: #071f16;
  font-weight: 900;
  text-transform: uppercase;
}
.blog-index {
  max-width: 1480px;
  margin: 0 auto 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.blog-index a {
  min-height: 230px;
  display: grid;
  grid-template-rows: 1fr auto auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(0, 36, 25, .055);
}
.blog-index img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}
.blog-index span,
.blog-index strong {
  margin: 0 14px;
}
.blog-index span {
  margin-top: 12px;
  color: var(--gold-dark);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}
.blog-index strong {
  margin-top: 4px;
  margin-bottom: 16px;
  font-size: 18px;
  line-height: 1.2;
}
.blog-post {
  max-width: 1180px;
  margin: 0 auto 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(0, 36, 25, .07);
}
.blog-post__banner {
  width: 100%;
  max-height: 520px;
  display: block;
  object-fit: cover;
}
.blog-post__body {
  max-width: 880px;
  margin: 0 auto;
  padding: 34px 34px 42px;
}
.blog-post h2 {
  margin: 8px 0 16px;
  color: var(--green);
  font-size: clamp(30px, 3.5vw, 52px);
  line-height: 1;
  text-transform: uppercase;
}
.blog-post h3 {
  margin: 28px 0 8px;
  color: #0b3b2c;
  font-size: 22px;
}
.blog-post p {
  margin: 0 0 13px;
  color: #25362f;
  font-size: 16px;
  line-height: 1.72;
}
.blog-post .blog-lead {
  padding-left: 18px;
  border-left: 4px solid var(--gold);
  color: #0f2e24;
  font-size: 19px;
  font-weight: 700;
}
.blog-cta {
  margin-top: 14px;
}
.blog-footer {
  margin-top: 28px;
}

@media (max-width: 900px) {
  .blog-hero,
  .blog-index {
    margin-left: 14px;
    margin-right: 14px;
  }
  .blog-hero {
    grid-template-columns: 1fr;
    padding: 26px 20px;
  }
  .blog-index {
    grid-template-columns: 1fr;
  }
  .blog-post {
    margin-left: 14px;
    margin-right: 14px;
  }
  .blog-post__body {
    padding: 26px 18px 32px;
  }
}

@media print {
  .plan-explorer {
    display: none !important;
  }
}

/* Inventory and social refinement */
.topbar__right .social-icon {
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-color: rgba(255, 255, 255, .68);
  font-size: 12px;
  text-decoration: none;
  transform: translateY(0);
}
.topbar__right .social-icon:hover,
.topbar__right .social-icon:focus-visible {
  background: #fff;
  color: var(--green);
}

.inventory-strip {
  grid-template-columns: minmax(220px, .95fr) repeat(7, minmax(132px, 1fr));
  align-items: stretch;
  border-color: rgba(0, 63, 44, .12);
  box-shadow: 0 18px 40px rgba(0, 39, 27, .09);
}
.inventory-live {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    radial-gradient(circle at 14% 18%, rgba(255,255,255,.13), transparent 28%),
    linear-gradient(140deg, #006b48 0%, #003f2c 55%, #00281d 100%);
}
.inventory-live .card-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.inventory-live strong {
  font-size: clamp(42px, 4.5vw, 64px);
}
.unit-stat {
  min-height: 214px;
  padding: 20px 13px 18px;
  gap: 4px;
  background: linear-gradient(180deg, #fff 0%, #fbfcfb 100%);
}
.unit-stat::before {
  content: none;
}
.unit-stat:hover {
  background: #fff;
  box-shadow: inset 0 -3px 0 var(--gold), 0 14px 28px rgba(0, 39, 27, .08);
}
.unit-stat__icon {
  width: 76px;
  height: 62px;
  margin: 0 auto 10px;
  display: block;
  overflow: hidden;
  border-radius: 6px;
  border: 1px solid rgba(0, 63, 44, .12);
  background: #f5f8f2;
  box-shadow: 0 10px 18px rgba(0, 39, 27, .08);
}
.unit-stat__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.unit-stat b {
  font-size: 14px;
  line-height: 1.15;
}
.unit-stat small {
  min-height: 17px;
  font-size: 12px;
}
.unit-stat strong {
  margin-top: 9px;
  color: #001f17;
  font-size: clamp(32px, 3vw, 45px);
  text-shadow: 0 8px 13px rgba(0, 63, 44, .1);
}
.unit-stat span:not(.unit-stat__icon) {
  font-size: 13px;
}
.unit-stat em {
  margin-top: 8px;
  color: #d49300;
  font-size: 13px;
  line-height: 1.2;
}
.inventory-strip--art {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: auto;
  border: 0;
  overflow: visible;
  background: transparent;
  box-shadow: none;
}
.inventory-art {
  margin: 0;
  width: 100%;
  display: block;
  line-height: 0;
  aspect-ratio: 2024 / 446;
  overflow: hidden;
  border: 1px solid rgba(0, 63, 44, .1);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(0, 39, 27, .09);
}
.inventory-art img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 54%;
}
.inventory-mobile-list {
  display: none;
}

@media (max-width: 1180px) {
  .inventory-strip:not(.inventory-strip--art) {
    overflow: visible;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .inventory-live {
    grid-column: 1 / -1;
    min-height: 168px;
  }
  .unit-stat {
    border-top: 1px solid #e6ebe7;
  }
}

@media (max-width: 760px) {
  .inventory-strip:not(.inventory-strip--art) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .inventory-strip--art {
    display: flex;
  }
  .inventory-art {
    aspect-ratio: auto;
    height: clamp(190px, 52vw, 220px);
    overflow-x: auto;
    overflow-y: hidden;
  }
  .inventory-art img {
    width: 940px;
    max-width: none;
    height: 100%;
    min-height: 0;
    object-fit: cover;
  }
  .inventory-mobile-list {
    margin-top: 12px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: hidden;
    border: 1px solid rgba(0, 63, 44, .12);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 12px 28px rgba(0, 39, 27, .07);
  }
  .inventory-live {
    padding: 22px;
  }
  .unit-stat {
    min-height: 205px;
    padding: 18px 10px 16px;
  }
  .unit-stat__icon {
    width: 68px;
    height: 56px;
  }
}

@media (max-width: 440px) {
  .inventory-strip:not(.inventory-strip--art) {
    grid-template-columns: 1fr;
  }
  .inventory-mobile-list {
    grid-template-columns: 1fr;
  }
  .inventory-art img {
    width: 860px;
  }
  .unit-stat {
    min-height: auto;
    display: grid;
    grid-template-columns: 76px 1fr auto;
    grid-template-areas:
      "icon title count"
      "icon size units"
      "icon price price";
    align-items: center;
    justify-items: start;
    column-gap: 14px;
    text-align: left;
  }
  .unit-stat__icon {
    grid-area: icon;
    margin: 0;
  }
  .unit-stat b {
    grid-area: title;
  }
  .unit-stat small {
    grid-area: size;
    min-height: 0;
  }
  .unit-stat strong {
    grid-area: count;
    margin: 0;
    justify-self: end;
    font-size: 34px;
  }
  .unit-stat span:not(.unit-stat__icon) {
    grid-area: units;
    justify-self: end;
  }
  .unit-stat em {
    grid-area: price;
  }
}

/* Gallery page */
.gallery-page {
  background: #f5f7f3;
  color: #061f17;
}
.gallery-hero {
  position: relative;
  max-width: 1480px;
  min-height: 590px;
  margin: 26px auto 18px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--green);
}
.gallery-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 52%;
}
.gallery-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 50, 37, .88), rgba(0, 50, 37, .34) 48%, rgba(0, 0, 0, .04));
}
.gallery-hero__copy {
  position: relative;
  z-index: 1;
  width: min(690px, 100%);
  min-height: 590px;
  padding: 46px 42px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
}
.gallery-hero__copy .eyebrow,
.gallery-hero__copy h1,
.gallery-hero__copy p {
  color: #fff;
}
.gallery-hero__copy h1 {
  margin: 10px 0 14px;
  font-size: clamp(42px, 5vw, 76px);
  line-height: .95;
  text-transform: uppercase;
}
.gallery-hero__copy p {
  margin: 0;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 650;
}
.gallery-tags {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.gallery-tags span {
  min-height: 34px;
  padding: 0 13px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  background: rgba(0, 30, 22, .34);
  font-size: 12px;
  font-weight: 900;
}
.gallery-showcase {
  max-width: 1480px;
  margin: 0 auto 18px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 16px;
}
.gallery-feature {
  position: relative;
  min-height: 290px;
  overflow: hidden;
  border-radius: 8px;
  background: #061f17;
  box-shadow: 0 10px 26px rgba(0, 36, 25, .08);
}
.gallery-feature--large {
  grid-row: span 2;
  min-height: 596px;
}
.gallery-feature img,
.gallery-wall img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .45s ease, filter .45s ease;
}
.gallery-feature:hover img,
.gallery-wall figure:hover img {
  transform: scale(1.035);
  filter: saturate(1.05);
}
.gallery-feature div {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 14px 16px;
  border-radius: 6px;
  background: rgba(0, 50, 37, .86);
  color: #fff;
}
.gallery-feature span,
.gallery-wall figcaption span {
  display: block;
  color: var(--gold-2);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}
.gallery-feature strong {
  display: block;
  margin-top: 4px;
  font-size: 22px;
  line-height: 1.12;
}
.gallery-wall {
  max-width: 1480px;
  margin: 0 auto 22px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 260px;
  gap: 16px;
}
.gallery-wall figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(0, 36, 25, .055);
}
.gallery-wall .gallery-card--wide {
  grid-column: span 2;
}
.gallery-wall .gallery-card--tall {
  grid-row: span 2;
}
.gallery-wall figcaption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 12px 13px;
  border-radius: 6px;
  background: rgba(255,255,255,.91);
  color: #10271f;
}
.gallery-wall figcaption b {
  display: block;
  margin-bottom: 3px;
  font-size: 15px;
}
.gallery-wall figcaption span {
  color: #51645b;
  line-height: 1.35;
  text-transform: none;
}
.gallery-cta {
  max-width: 1480px;
  margin: 0 auto 30px;
  padding: 28px 32px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, #003f2c, #076247);
  color: #fff;
}
.gallery-cta h2 {
  margin: 8px 0;
  color: #fff;
  font-size: clamp(28px, 3vw, 44px);
}
.gallery-cta p {
  max-width: 720px;
  margin: 0;
  color: rgba(255,255,255,.82);
  font-weight: 650;
}
.gallery-cta a {
  min-height: 46px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  background: var(--gold);
  color: #10271f;
  font-weight: 900;
}

@media (max-width: 980px) {
  .gallery-hero,
  .gallery-showcase,
  .gallery-wall,
  .gallery-cta {
    margin-left: 14px;
    margin-right: 14px;
  }
  .gallery-showcase,
  .gallery-cta {
    grid-template-columns: 1fr;
  }
  .gallery-feature--large {
    min-height: 420px;
  }
  .gallery-wall {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  .gallery-hero,
  .gallery-hero__copy {
    min-height: 520px;
  }
  .gallery-hero__copy {
    padding: 30px 20px;
  }
  .gallery-wall {
    grid-template-columns: 1fr;
    grid-auto-rows: 265px;
  }
  .gallery-wall .gallery-card--wide,
  .gallery-wall .gallery-card--tall {
    grid-column: auto;
    grid-row: auto;
  }
}

/* Contact page */
.contact-page {
  background: #f5f7f3;
  color: #061f17;
}
.contact-hero {
  position: relative;
  max-width: 1480px;
  min-height: 520px;
  margin: 26px auto 18px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--green);
}
.contact-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 48% 54%;
}
.contact-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 50, 37, .92), rgba(0, 50, 37, .54) 52%, rgba(0, 0, 0, .1));
}
.contact-hero__copy {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  min-height: 520px;
  padding: 46px 42px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.contact-hero__copy .eyebrow,
.contact-hero__copy h1,
.contact-hero__copy p {
  color: #fff;
}
.contact-hero__copy h1 {
  margin: 10px 0 14px;
  font-size: clamp(42px, 5vw, 78px);
  line-height: .95;
  text-transform: uppercase;
}
.contact-hero__copy p {
  max-width: 650px;
  margin: 0;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 650;
}
.contact-grid {
  max-width: 1480px;
  margin: 0 auto 18px;
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 18px;
}
.contact-panel,
.contact-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(0, 36, 25, .07);
}
.contact-panel {
  padding: 28px;
}
.contact-panel h2,
.contact-form h2 {
  margin: 10px 0 18px;
  color: var(--green);
  font-size: clamp(26px, 2.6vw, 40px);
  line-height: 1.02;
}
.contact-methods {
  display: grid;
  gap: 12px;
}
.contact-methods a,
.contact-methods div {
  min-height: 78px;
  padding: 15px 16px;
  display: grid;
  align-content: center;
  gap: 5px;
  border-radius: 7px;
  background: #f7f9f5;
  border: 1px solid var(--line);
}
.contact-methods b,
.contact-hours strong {
  color: #0b3b2c;
  font-size: 14px;
  text-transform: uppercase;
}
.contact-methods span,
.contact-hours span {
  color: var(--muted);
  font-weight: 700;
  line-height: 1.35;
}
.contact-hours {
  margin-top: 16px;
  padding: 18px;
  display: grid;
  gap: 5px;
  border-radius: 7px;
  background: linear-gradient(135deg, #003f2c, #076247);
  color: #fff;
}
.contact-hours strong,
.contact-hours span,
.contact-hours b {
  color: #fff;
}
.contact-form {
  padding: 28px;
}
.contact-form__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.contact-form__row {
  margin-bottom: 14px;
  display: grid;
  gap: 7px;
}
.contact-form label {
  color: #183a2f;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 13px;
  border: 1px solid #d8dfd8;
  border-radius: 6px;
  background: #fbfcfa;
  color: #0c261d;
  font: inherit;
  font-weight: 650;
}
.contact-form textarea {
  resize: vertical;
}
.contact-form button {
  width: 100%;
  min-height: 48px;
  border: 0;
  border-radius: 6px;
  background: var(--gold);
  color: #10271f;
  font-weight: 900;
  cursor: pointer;
}
.contact-form__note {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}
.contact-strip {
  max-width: 1480px;
  margin: 0 auto 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border-radius: 8px;
  background: var(--green);
  color: #fff;
}
.contact-strip span {
  min-height: 82px;
  padding: 18px;
  display: grid;
  align-content: center;
  gap: 5px;
  border-right: 1px solid rgba(255,255,255,.12);
  font-weight: 700;
}
.contact-strip b {
  color: var(--gold-2);
  font-size: 16px;
}

.thank-you-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    linear-gradient(120deg, rgba(0, 63, 44, .9), rgba(0, 63, 44, .72)),
    url("./assets/vista2-hero.png") center / cover no-repeat;
}
.thank-you {
  width: min(680px, 100%);
  padding: clamp(28px, 5vw, 54px);
  border-radius: 8px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 28px 80px rgba(0, 25, 17, .28);
  text-align: center;
}
.thank-you img {
  width: 190px;
  height: 104px;
  object-fit: contain;
  margin: 0 auto 14px;
}
.thank-you h1 {
  margin: 12px 0;
  color: var(--green);
  font-size: clamp(40px, 7vw, 72px);
}
.thank-you p {
  margin: 0 auto 22px;
  max-width: 520px;
  color: #405a51;
  font-size: 17px;
}
.thank-you__actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.thank-you__actions .btn {
  min-height: 46px;
}

.admin-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at top, rgba(213, 167, 52, .18), transparent 28%),
    linear-gradient(160deg, #edf7f0 0%, #dcefe4 48%, #f7fbf8 100%);
}
.admin-shell {
  width: min(1320px, calc(100% - 32px));
  margin: 0 auto;
  padding: 42px 0 54px;
}
.admin-login,
.admin-dashboard {
  border-radius: 8px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 20px 56px rgba(0, 45, 32, .14);
}
.admin-login {
  width: min(520px, 100%);
  margin: 0 auto;
  padding: 34px;
}
.admin-login img {
  width: 200px;
  height: 90px;
  margin-bottom: 10px;
  object-fit: contain;
}
.admin-login h1,
.admin-dashboard h1 {
  margin: 10px 0 8px;
  color: var(--green);
}
.admin-login p,
.admin-dashboard p {
  color: #4c635a;
}
.admin-login label {
  display: block;
  margin: 14px 0 6px;
  font-weight: 800;
  color: var(--green);
}
.admin-login input,
.admin-toolbar input,
.admin-toolbar select {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid rgba(0, 63, 44, .14);
  border-radius: 6px;
  background: #fff;
}
.admin-login .btn {
  width: 100%;
  margin-top: 16px;
}
.admin-dashboard {
  padding: 28px;
}
.admin-topbar,
.admin-toolbar,
.admin-actions,
.admin-metrics {
  display: flex;
  gap: 12px;
}
.admin-topbar,
.admin-toolbar {
  align-items: end;
  justify-content: space-between;
}
.admin-actions {
  flex-wrap: wrap;
}
.admin-metrics {
  margin: 24px 0 16px;
  flex-wrap: wrap;
}
.admin-metrics article {
  min-width: 170px;
  padding: 18px 16px;
  border-radius: 6px;
  background: linear-gradient(160deg, #f2f8f4 0%, #ffffff 100%);
  border: 1px solid rgba(0, 63, 44, .08);
}
.admin-metrics span {
  display: block;
  color: #5e746b;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.admin-metrics strong {
  display: block;
  margin-top: 8px;
  color: var(--green);
  font-size: 34px;
  line-height: 1;
}
.admin-toolbar {
  margin-bottom: 18px;
}
.admin-toolbar input {
  flex: 1 1 380px;
}
.admin-toolbar select {
  flex: 0 0 220px;
}
.admin-table-wrap {
  overflow: auto;
  border: 1px solid rgba(0, 63, 44, .08);
  border-radius: 6px;
}
.admin-table {
  width: 100%;
  min-width: 980px;
  border-collapse: collapse;
  background: #fff;
}
.admin-table th,
.admin-table td {
  padding: 13px 14px;
  border-bottom: 1px solid rgba(0, 63, 44, .08);
  text-align: left;
  vertical-align: top;
}
.admin-table th {
  position: sticky;
  top: 0;
  background: #f4f8f5;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.admin-table td {
  color: #29453c;
  font-size: 14px;
  line-height: 1.45;
}

@media (max-width: 900px) {
  .contact-hero,
  .contact-grid,
  .contact-strip {
    margin-left: 14px;
    margin-right: 14px;
  }
  .contact-grid,
  .contact-strip {
    grid-template-columns: 1fr;
  }
  .contact-form__split {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .admin-topbar,
  .admin-toolbar {
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
  }
  .admin-dashboard {
    padding: 20px 16px;
  }
}

@media (max-width: 620px) {
  .contact-hero,
  .contact-hero__copy {
    min-height: 500px;
  }
  .contact-hero__copy,
  .contact-panel,
  .contact-form {
    padding: 24px 18px;
  }
  .booking-grid,
  .booking-choice-group {
    grid-template-columns: 1fr;
  }
  .booking-grid label:nth-of-type(3),
  .booking-grid input:nth-of-type(3) {
    grid-column: auto;
  }
  .thank-you__actions {
    grid-template-columns: 1fr;
  }
}
