:root {
  --ink: #162321;
  --muted: #61716d;
  --paper: #f6f8f5;
  --white: #ffffff;
  --line: #dce5dd;
  --green: #0f6b4f;
  --green-deep: #073d35;
  --mint: #dff3e7;
  --gold: #c9932d;
  --coral: #d86241;
  --blue: #255f8d;
  --charcoal: #1f2829;
  --shadow: 0 24px 80px rgba(7, 38, 34, 0.18);
  --radius: 8px;
  --header-height: 74px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 0 clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(220, 229, 221, 0.72);
  backdrop-filter: blur(16px);
  transition:
    box-shadow 180ms ease,
    background 180ms ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 12px 40px rgba(7, 38, 34, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1;
}

.brand small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.brand-logo {
  display: block;
  width: auto;
  height: 48px;
  max-width: 230px;
  border-radius: 6px;
  box-shadow: 0 6px 18px rgba(7, 38, 34, 0.16);
}

.footer-brand .brand-logo {
  box-shadow: none;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 3vw, 34px);
  color: #29423d;
  font-size: 0.94rem;
  font-weight: 700;
}

.main-nav a {
  position: relative;
  padding: 8px 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-actions,
.hero-actions,
.panel-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.button,
.icon-button,
.filter-chip {
  border: 0;
  cursor: pointer;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.button:hover,
.icon-button:hover,
.filter-chip:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--coral);
  color: var(--white);
  box-shadow: 0 14px 34px rgba(216, 98, 65, 0.26);
}

.button-dark {
  background: var(--green-deep);
  color: var(--white);
}

.button-ghost {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.12);
}

.button-soft {
  color: var(--green-deep);
  background: var(--mint);
}

.icon-button {
  display: inline-grid;
  grid-template-columns: 18px auto;
  place-items: center;
  gap: 4px;
  min-width: 46px;
  height: 46px;
  padding: 0 12px;
  border-radius: 8px;
  background: #eef4ef;
  color: var(--green-deep);
  font-weight: 800;
}

.icon-button.light {
  background: var(--white);
  border: 1px solid var(--line);
}

.hero {
  position: relative;
  min-height: 86svh;
  display: grid;
  align-items: center;
  padding: calc(var(--header-height) + 38px) clamp(18px, 5vw, 72px) 52px;
  overflow: hidden;
  isolation: isolate;
}

.hero > img,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero > img {
  object-fit: cover;
  z-index: -3;
}

.hero-overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(3, 28, 24, 0.82) 0%, rgba(3, 28, 24, 0.54) 36%, rgba(3, 28, 24, 0.08) 78%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.hero-content {
  max-width: 720px;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero .eyebrow {
  color: #f0c06e;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(3.2rem, 8vw, 6.8rem);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4.2vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(1.18rem, 1.8vw, 1.55rem);
  line-height: 1.14;
}

p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-copy {
  max-width: 630px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 2vw, 1.26rem);
}

.hero-status {
  position: absolute;
  right: clamp(18px, 5vw, 72px);
  bottom: 34px;
  width: min(320px, calc(100% - 36px));
  padding: 18px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.hero-status span,
.hero-status strong,
.hero-status small {
  display: block;
}

.hero-status span {
  color: var(--coral);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero-status strong {
  margin: 8px 0 4px;
  font-size: 1.45rem;
}

.hero-status small {
  color: var(--muted);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.trust-strip article {
  min-height: 94px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px clamp(16px, 3vw, 38px);
  border-right: 1px solid var(--line);
  color: var(--green-deep);
  font-weight: 900;
}

.trust-strip article:last-child {
  border-right: 0;
}

.section {
  padding: clamp(72px, 9vw, 124px) clamp(18px, 5vw, 72px);
}

.section-heading {
  max-width: 930px;
  margin-bottom: 34px;
}

.split-heading {
  max-width: none;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 28px;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: start;
}

.intro-copy {
  padding-top: 24px;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 30px;
}

.metric-row span {
  min-height: 94px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--muted);
}

.metric-row strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 1.7rem;
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
  background: var(--white);
}

.feature-media img,
.home-card img {
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: 8px;
}

.feature-copy {
  max-width: 720px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.check-list span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--green-deep);
  font-weight: 800;
}

.check-list svg {
  color: var(--coral);
}

.proof-section {
  background: #f1f5f0;
}

.readiness-score {
  min-width: min(100%, 270px);
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 46px rgba(7, 38, 34, 0.08);
}

.readiness-score span,
.readiness-score strong,
.readiness-score small {
  display: block;
}

.readiness-score span {
  color: var(--coral);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.readiness-score strong {
  margin: 7px 0;
  color: var(--green-deep);
  font-size: 2.3rem;
  line-height: 1;
}

.readiness-score small {
  color: var(--muted);
  line-height: 1.5;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.proof-grid article {
  min-height: 286px;
  padding: 24px;
  background: var(--white);
}

.proof-step {
  display: inline-flex;
  margin-bottom: 44px;
  color: var(--coral);
  font-weight: 900;
}

.proof-grid strong {
  display: inline-flex;
  margin-top: 16px;
  color: var(--green-deep);
  font-size: 0.85rem;
}

.filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-chip {
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--white);
  color: var(--green-deep);
  border: 1px solid var(--line);
  font-weight: 800;
}

.filter-chip.active {
  background: var(--green-deep);
  color: var(--white);
  border-color: var(--green-deep);
}

.plan-workspace {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 410px);
  gap: 22px;
  align-items: stretch;
}

.masterplan {
  position: relative;
  min-height: 590px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(45deg, rgba(15, 107, 79, 0.06) 25%, transparent 25%, transparent 50%, rgba(15, 107, 79, 0.06) 50%, rgba(15, 107, 79, 0.06) 75%, transparent 75%),
    #edf5ed;
  background-size: 36px 36px;
  box-shadow: inset 0 0 0 12px rgba(255, 255, 255, 0.52);
}

.advanced-plan {
  min-height: 660px;
  background:
    radial-gradient(circle at 22% 28%, rgba(255, 255, 255, 0.96) 0 3px, transparent 4px),
    radial-gradient(circle at 70% 23%, rgba(255, 255, 255, 0.96) 0 3px, transparent 4px),
    linear-gradient(135deg, #dcefd8 0%, #eff6ef 48%, #d7e6d8 100%);
  background-size: 36px 36px, 44px 44px, auto;
}

.plan-water {
  position: absolute;
  right: -4%;
  top: -9%;
  display: grid;
  place-items: end center;
  width: 32%;
  height: 122%;
  padding-bottom: 48px;
  transform: rotate(8deg);
  border-left: 12px solid rgba(37, 95, 141, 0.18);
  background: linear-gradient(180deg, rgba(37, 95, 141, 0.18), rgba(37, 95, 141, 0.07));
  color: rgba(37, 95, 141, 0.8);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.plan-road {
  position: absolute;
  z-index: 2;
  border-radius: 999px;
  background: #b7c2ba;
  border: 9px solid rgba(255, 255, 255, 0.92);
  box-shadow: 0 0 0 1px rgba(7, 38, 34, 0.12);
}

.primary-road {
  left: 5%;
  top: 45%;
  width: 86%;
  height: 58px;
  transform: rotate(-4deg);
}

.resident-loop {
  left: 12%;
  top: 10%;
  width: 66%;
  height: 52%;
  background: transparent;
  border: 46px solid rgba(255, 255, 255, 0.88);
  box-shadow: inset 0 0 0 16px #b7c2ba;
}

.public-spine {
  left: 47%;
  top: 45%;
  width: 60px;
  height: 49%;
}

.service-road {
  left: 67%;
  top: 68%;
  width: 25%;
  height: 44px;
  transform: rotate(-14deg);
}

.plan-zone,
.plan-gate {
  position: absolute;
  z-index: 4;
  border-radius: 8px;
  border: 1px solid rgba(7, 38, 34, 0.16);
  box-shadow: 0 16px 32px rgba(7, 38, 34, 0.1);
}

.plan-zone {
  left: var(--x);
  top: var(--y);
  width: var(--w);
  height: var(--h);
  display: flex;
  flex-direction: column;
  justify-content: end;
  gap: 4px;
  padding: 14px;
  color: var(--green-deep);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(4px);
}

.plan-zone svg {
  width: 22px;
  height: 22px;
  margin-bottom: auto;
}

.plan-zone strong,
.plan-zone span {
  position: relative;
  z-index: 1;
}

.plan-zone strong {
  font-size: clamp(0.82rem, 1.2vw, 1rem);
}

.plan-zone span {
  color: #526863;
  font-size: 0.72rem;
  font-weight: 800;
}

.zone-residential,
.zone-premium {
  background: rgba(255, 255, 255, 0.7);
  border-style: dashed;
}

.zone-school {
  background: rgba(223, 243, 231, 0.92);
}

.zone-retail {
  background: rgba(255, 242, 214, 0.94);
}

.zone-health {
  background: rgba(220, 236, 247, 0.94);
}

.zone-maintenance {
  background: rgba(232, 239, 234, 0.94);
}

.plan-gate {
  left: var(--x);
  top: var(--y);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  padding: 0 10px;
  background: var(--green-deep);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 900;
}

.plan-legend {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 7;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding: 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  box-shadow: 0 14px 34px rgba(7, 38, 34, 0.1);
}

.plan-legend span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--green-deep);
  font-size: 0.77rem;
  font-weight: 900;
}

.key {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 3px;
}

.key.available {
  background: #dcf2e4;
}

.key.reserved {
  background: #fff0ce;
}

.key.civic {
  background: #dcecf7;
}

.key.resident {
  background: var(--green-deep);
}

.road {
  position: absolute;
  background: #bfc9bd;
  border: 7px solid #eef4ef;
  box-shadow: 0 0 0 1px rgba(22, 35, 33, 0.12);
}

.road-main {
  left: 4%;
  top: 46%;
  width: 92%;
  height: 62px;
  transform: rotate(-8deg);
  border-radius: 999px;
}

.road-loop {
  left: 19%;
  top: 14%;
  width: 56%;
  height: 66%;
  border-radius: 50%;
  background: transparent;
  border: 58px solid #eef4ef;
  box-shadow: inset 0 0 0 18px #bfc9bd;
}

.road-spur {
  left: 68%;
  top: 34%;
  width: 210px;
  height: 48px;
  transform: rotate(34deg);
  border-radius: 999px;
}

.green {
  position: absolute;
  display: grid;
  place-items: center;
  gap: 4px;
  color: #164a35;
  font-size: 0.78rem;
  font-weight: 900;
  text-align: center;
  border-radius: 8px;
  background: #b7d9ab;
  border: 1px solid rgba(15, 107, 79, 0.18);
}

.green-central {
  left: 39%;
  top: 36%;
  width: 148px;
  height: 112px;
}

.green-gate {
  left: 5%;
  top: 68%;
  width: 140px;
  height: 92px;
  background: #d7e6d7;
}

.plot {
  position: absolute;
  z-index: 6;
  left: var(--x);
  top: var(--y);
  display: grid;
  place-items: center;
  width: 84px;
  aspect-ratio: 1.18;
  border-radius: 8px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  background: var(--white);
  color: var(--green-deep);
  box-shadow: 0 16px 34px rgba(7, 38, 34, 0.12);
  font-size: 0.95rem;
  font-weight: 900;
  transition:
    transform 170ms ease,
    opacity 170ms ease,
    outline-color 170ms ease;
}

.plot.available {
  background: #f9fff9;
}

.plot.reserved {
  background: #fff2d6;
  color: #7d5311;
}

.plot.sold {
  background: #e7ece8;
  color: #6b746f;
}

.plot.premium::after {
  content: "";
  position: absolute;
  top: 7px;
  right: 7px;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--gold);
}

.plot.active,
.plot:focus-visible {
  outline: 4px solid rgba(216, 98, 65, 0.38);
  transform: translateY(-3px) scale(1.04);
}

.plot.is-hidden {
  opacity: 0.2;
  pointer-events: none;
}

.plot-panel,
.booking-form,
.reservation-panel,
.drawer-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.plot-panel {
  padding: 24px;
}

.panel-topline,
.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 18px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.status-pill.available {
  color: #0c684e;
  background: #dcf2e4;
}

.status-pill.reserved {
  color: #80560f;
  background: #fff0ce;
}

.status-pill.sold {
  color: #5f6b66;
  background: #e8efea;
}

.plot-panel h3 {
  margin-top: 18px;
  font-size: 2rem;
}

.plot-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 24px 0;
}

.plot-facts div {
  min-height: 82px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdfb;
}

.plot-facts dt {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
}

.plot-facts dd {
  margin: 8px 0 0;
  color: var(--ink);
  font-size: 1.04rem;
  font-weight: 900;
}

.calculator-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1.14fr);
  gap: clamp(30px, 6vw, 86px);
  align-items: start;
  background: var(--white);
}

.calculator-copy {
  max-width: 650px;
}

.calculator-note {
  display: flex;
  align-items: start;
  gap: 10px;
  margin-top: 26px;
  padding: 16px;
  border: 1px solid #f2d7cb;
  border-radius: 8px;
  background: #fff5ef;
  color: #7b3d29;
  font-weight: 800;
  line-height: 1.55;
}

.calculator-card {
  display: grid;
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdfb;
  box-shadow: var(--shadow);
}

.calculator-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 20px;
}

.calculator-header h3 {
  margin: 0;
  font-size: 2rem;
}

.calculator-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 0;
}

.calculator-results div {
  min-height: 96px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.calculator-results dt {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 900;
}

.calculator-results dd {
  margin: 9px 0 0;
  color: var(--green-deep);
  font-size: clamp(1.08rem, 1.8vw, 1.35rem);
  font-weight: 900;
}

input[type="range"] {
  padding: 0;
  accent-color: var(--coral);
}

.range-readout {
  color: var(--muted);
  font-size: 0.88rem;
}

.range-readout strong {
  color: var(--green-deep);
}

.home-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.7fr) minmax(280px, 0.7fr);
  gap: 20px;
}

.home-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
}

.home-card:first-child {
  grid-row: span 2;
}

.home-card.landscape {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 0.9fr 1fr;
}

.home-card.landscape img {
  min-height: 320px;
  border-radius: 0;
}

.home-card.compact {
  min-height: 324px;
}

.home-card.dark {
  background: var(--charcoal);
  color: var(--white);
}

.home-card.dark p,
.home-card.dark li {
  color: rgba(255, 255, 255, 0.76);
}

.home-body {
  padding: 24px;
}

.home-tag {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 10px;
  border-radius: 999px;
  background: #ffe8df;
  color: #a54228;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.home-tag.green {
  background: #ddf3e4;
  color: var(--green);
}

.home-tag.amber {
  background: #fff1d2;
  color: #885d15;
}

.home-tag.blue {
  background: #dcecf7;
  color: var(--blue);
}

.civic-preview {
  background: #f1f5f0;
}

.civic-grid,
.page-card-grid,
.opportunity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.civic-grid article,
.page-card,
.opportunity-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.civic-grid img,
.page-card img {
  height: 260px;
  object-fit: cover;
}

.civic-grid article > div,
.page-card-body,
.opportunity-card {
  display: grid;
  gap: 12px;
  padding: 22px;
}

.page-card h2,
.page-card h3 {
  clear: both;
  display: block;
  margin: 0 0 6px;
  font-size: clamp(1.42rem, 2.2vw, 2rem);
  line-height: 1.1;
}

.page-card .home-tag,
.civic-grid .home-tag {
  display: flex;
  width: max-content;
  margin-bottom: 0;
}

.route-concierge {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 0.66fr);
  gap: 16px;
  margin-top: 18px;
}

.route-tabs {
  display: flex;
  align-content: start;
  align-items: start;
  flex-wrap: wrap;
  gap: 8px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.route-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 42px rgba(7, 38, 34, 0.08);
}

.route-checks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 22px;
}

.route-checks span {
  display: flex;
  align-items: start;
  gap: 8px;
  min-height: 76px;
  padding: 12px;
  border-radius: 8px;
  background: #f5faf5;
  color: var(--green-deep);
  font-size: 0.84rem;
  font-weight: 800;
  line-height: 1.4;
}

.page-hero {
  min-height: 62svh;
  display: grid;
  align-items: end;
  padding: calc(var(--header-height) + 76px) clamp(18px, 5vw, 72px) 72px;
  background: var(--green-deep);
  color: var(--white);
}

.page-hero.image-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.page-hero.image-hero img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero.image-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(3, 28, 24, 0.86), rgba(3, 28, 24, 0.44), rgba(3, 28, 24, 0.12));
}

.page-hero-content {
  min-width: 0;
  max-width: 900px;
}

.page-hero h1 {
  max-width: 1050px;
  font-size: clamp(3.1rem, 6.2vw, 5.4rem);
}

.page-hero p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.14rem;
}

.page-shell {
  display: grid;
  grid-template-columns: minmax(240px, 0.28fr) minmax(0, 0.72fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
}

.page-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.page-sidebar a {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 10px;
  border-radius: 8px;
  color: var(--green-deep);
  font-weight: 900;
}

.page-sidebar a:hover {
  background: var(--mint);
}

.content-stack {
  display: grid;
  gap: 22px;
}

.content-panel,
.document-panel {
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.content-panel.dark-panel {
  background: var(--green-deep);
  color: var(--white);
}

.content-panel.dark-panel p,
.content-panel.dark-panel li {
  color: rgba(255, 255, 255, 0.78);
}

.two-column {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.number-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.number-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: start;
}

.number-list span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: var(--mint);
  color: var(--green-deep);
  font-weight: 900;
}

.security-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.security-flow article {
  min-height: 240px;
  padding: 24px;
  background: var(--white);
}

.security-flow svg,
.opportunity-card svg,
.document-panel svg {
  width: 28px;
  height: 28px;
  margin-bottom: 24px;
  color: var(--coral);
}

.opportunity-card {
  min-height: 310px;
}

.opportunity-card strong {
  display: block;
  margin-top: 16px;
  color: var(--green-deep);
}

.document-panel h2 {
  font-size: clamp(1.6rem, 3vw, 2.5rem);
}

.document-panel ul {
  line-height: 1.9;
  color: var(--muted);
}

.sticky-actions {
  position: fixed;
  left: 50%;
  bottom: 14px;
  z-index: 30;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  width: min(420px, calc(100% - 28px));
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 8px;
  background: rgba(7, 61, 53, 0.94);
  box-shadow: 0 16px 52px rgba(3, 28, 24, 0.24);
  transform: translateX(-50%);
  backdrop-filter: blur(14px);
}

.sticky-actions a,
.sticky-actions button {
  display: grid;
  place-items: center;
  gap: 3px;
  min-height: 58px;
  border: 0;
  background: transparent;
  color: var(--white);
  font-size: 0.74rem;
  font-weight: 900;
}

.floorplan-mini {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  margin: 22px 0;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7faf7;
}

.room {
  display: grid;
  place-items: center;
  min-height: 48px;
  padding: 6px;
  border: 1px solid #bdcabc;
  background: var(--white);
  color: var(--green-deep);
  font-size: 0.72rem;
  font-weight: 900;
}

.room.wide {
  grid-column: span 2;
}

.spec-list {
  margin: 22px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.9;
}

.journey {
  background: var(--green-deep);
  color: var(--white);
}

.journey p {
  color: rgba(255, 255, 255, 0.74);
}

.journey-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.18);
}

.journey-steps article {
  min-height: 260px;
  padding: 26px;
  background: #0a493f;
}

.journey-steps span {
  display: inline-flex;
  margin-bottom: 44px;
  color: #f0c06e;
  font-weight: 900;
}

.diaspora-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1.14fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: start;
}

.diaspora-copy {
  position: sticky;
  top: calc(var(--header-height) + 28px);
}

.service-grid,
.vault-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.service-grid article,
.vault-grid article {
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.service-grid svg,
.vault-grid svg {
  width: 26px;
  height: 26px;
  margin-bottom: 28px;
  color: var(--coral);
}

.vault-section {
  background: var(--white);
}

.vault-grid article {
  background: #fbfdfb;
}

.booking-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1.18fr);
  gap: clamp(30px, 6vw, 86px);
  background: #eaf1ec;
}

.contact-stack {
  display: grid;
  gap: 12px;
  margin-top: 32px;
}

.contact-stack a,
.contact-stack span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--green-deep);
  font-weight: 800;
}

.booking-form,
.reservation-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 24px;
}

label {
  display: grid;
  gap: 8px;
  color: #304843;
  font-size: 0.82rem;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #cbd8cf;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  padding: 0 12px;
}

textarea {
  min-height: 120px;
  padding-top: 12px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus,
button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(216, 98, 65, 0.32);
  outline-offset: 2px;
}

.wide-field {
  grid-column: 1 / -1;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 24px;
  margin: 0;
  color: var(--green-deep);
  font-weight: 800;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 980px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  overflow: hidden;
}

summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--ink);
  font-weight: 900;
}

details p {
  margin: 0;
  padding: 0 22px 22px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  padding: 34px clamp(18px, 5vw, 72px);
  background: var(--charcoal);
  color: var(--white);
}

.site-footer p,
.site-footer small {
  color: rgba(255, 255, 255, 0.72);
}

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-weight: 800;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green-deep);
  font-weight: 900;
}

.drawer,
.reservation-modal {
  position: fixed;
  inset: 0;
  z-index: 40;
}

.drawer[hidden],
.reservation-modal[hidden] {
  display: none;
}

.drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 25, 22, 0.48);
}

.drawer-panel {
  position: absolute;
  right: 18px;
  top: 18px;
  bottom: 18px;
  width: min(440px, calc(100vw - 36px));
  padding: 24px;
  overflow-y: auto;
}

.drawer-header h2 {
  margin-bottom: 0;
  font-size: 1.8rem;
}

.drawer-content {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.drawer-card {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdfb;
}

.drawer-card strong {
  display: block;
  margin-bottom: 6px;
}

.drawer-card small {
  display: block;
  color: var(--muted);
  line-height: 1.5;
}

.reservation-panel {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(920px, calc(100vw - 36px));
  max-height: calc(100svh - 36px);
  padding: 24px;
  overflow-y: auto;
  transform: translate(-50%, -50%);
}

.reservation-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 20px;
  margin-top: 26px;
}

.reservation-summary {
  padding: 20px;
  border-radius: 8px;
  background: #f4f8f4;
  border: 1px solid var(--line);
}

.reservation-form {
  padding: 0;
  border: 0;
  box-shadow: none;
}

.compact-facts {
  grid-template-columns: 1fr;
  margin-bottom: 0;
}

@media (max-width: 1080px) {
  .main-nav {
    display: none;
  }

  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .hero-status {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 34px;
  }

  .trust-strip,
  .journey-steps,
  .proof-grid,
  .security-flow {
    grid-template-columns: repeat(2, 1fr);
  }

  .intro-grid,
  .feature-band,
  .plan-workspace,
  .diaspora-section,
  .booking-section,
  .calculator-section,
  .page-shell {
    grid-template-columns: 1fr;
  }

  .diaspora-copy {
    position: static;
  }

  .page-sidebar {
    position: static;
  }

  .home-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-card:first-child {
    grid-row: auto;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding-inline: 14px;
  }

  .brand small,
  .header-actions .button {
    display: none;
  }

  .hero {
    min-height: 88svh;
    padding-inline: 18px;
  }

  .hero .eyebrow {
    max-width: 34ch;
    font-size: 0.68rem;
    line-height: 1.6;
    overflow-wrap: break-word;
  }

  .hero-content {
    max-width: 100%;
    min-width: 0;
  }

  .hero-copy {
    width: min(100%, 310px);
    max-width: 100%;
    font-size: 1rem;
    line-height: 1.6;
    overflow-wrap: break-word;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: min(100%, 320px);
  }

  .hero-actions .button {
    width: 100%;
  }

  h1 {
    font-size: clamp(2.45rem, 13vw, 3.45rem);
  }

  h2 {
    font-size: clamp(1.9rem, 10vw, 3rem);
  }

  .section {
    padding-inline: 18px;
  }

  .page-card-body {
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .page-card-body .home-tag,
  .page-card-body h2,
  .page-card-body h3,
  .page-card-body p {
    grid-column: 1 / -1;
  }

  .page-card-body .home-tag {
    display: none !important;
  }

  .page-card-body h2,
  .page-card-body h3 {
    display: block !important;
    margin: 0 0 6px !important;
    font-size: 1.55rem !important;
    line-height: 1.12 !important;
  }

  .trust-strip,
  .metric-row,
  .journey-steps,
  .service-grid,
  .vault-grid,
  .home-grid,
  .booking-form,
  .reservation-grid,
  .reservation-form,
  .proof-grid,
  .calculator-results,
  .civic-grid,
  .page-card-grid,
  .opportunity-grid,
  .route-concierge,
  .route-checks,
  .two-column,
  .security-flow {
    grid-template-columns: 1fr;
  }

  .trust-strip article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .split-heading {
    display: block;
  }

  .filter-bar {
    margin-top: 20px;
  }

  .masterplan {
    min-height: 620px;
  }

  .plot {
    width: 58px;
    font-size: 0.8rem;
  }

  .plan-zone {
    padding: 9px;
  }

  .plan-zone span {
    display: none;
  }

  .plan-gate {
    max-width: 96px;
    font-size: 0.62rem;
  }

  .green-central {
    width: 122px;
    height: 94px;
  }

  .home-card.landscape {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .home-card img,
  .feature-media img,
  .home-card.landscape img {
    min-height: 280px;
  }

  .plot-facts {
    grid-template-columns: 1fr;
  }

  .site-footer {
    display: grid;
  }

  .page-hero {
    min-height: 58svh;
    padding-inline: 18px;
  }

  .page-hero h1 {
    font-size: clamp(2.25rem, 11vw, 3.35rem);
    line-height: 1;
  }

  .page-hero p:not(.eyebrow) {
    width: min(100%, 330px);
    font-size: 1rem;
    line-height: 1.6;
    overflow-wrap: break-word;
  }

  .sticky-actions {
    display: grid;
  }

  body {
    padding-bottom: 76px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

/* ============================================================
   HIGH-END MOTION & EFFECTS LAYER
   Progressive enhancement: only active when JS adds `.anim-ready`
   to <html> (which it skips when the user prefers reduced motion,
   so all content stays visible and static as a fallback).
   ============================================================ */

/* --- Scroll progress bar --- */
.scroll-progress {
  position: fixed;
  inset: 0 0 auto 0;
  height: 3px;
  z-index: 60;
  transform: scaleX(0);
  transform-origin: 0 50%;
  background: linear-gradient(90deg, var(--green), var(--gold), var(--coral));
  box-shadow: 0 0 12px rgba(201, 147, 45, 0.4);
  will-change: transform;
}

/* --- Scroll reveal --- */
.anim-ready [data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.8s cubic-bezier(0.16, 0.84, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 0.84, 0.3, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.anim-ready [data-reveal="left"] {
  transform: translateX(-44px);
}

.anim-ready [data-reveal="right"] {
  transform: translateX(44px);
}

.anim-ready [data-reveal="zoom"] {
  transform: scale(0.93);
}

.anim-ready [data-reveal].in-view {
  opacity: 1;
  transform: none;
}

/* --- Cinematic hero --- */
.anim-ready .hero > img {
  animation: heroKenburns 26s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes heroKenburns {
  from {
    transform: scale(1) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.09) translate3d(-1.6%, -1.2%, 0);
  }
}

.anim-ready .hero-content > * {
  opacity: 0;
  animation: heroRise 0.95s cubic-bezier(0.16, 0.84, 0.3, 1) forwards;
}

.anim-ready .hero-content > .eyebrow {
  animation-delay: 0.15s;
}
.anim-ready .hero-content > h1 {
  animation-delay: 0.3s;
}
.anim-ready .hero-content > .hero-copy {
  animation-delay: 0.45s;
}
.anim-ready .hero-content > .hero-actions {
  animation-delay: 0.6s;
}

.anim-ready .hero-status {
  opacity: 0;
  animation: heroRise 0.95s cubic-bezier(0.16, 0.84, 0.3, 1) 0.8s forwards;
}

@keyframes heroRise {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* --- Button sheen sweep --- */
.button {
  position: relative;
  overflow: hidden;
}

.button::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 55%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.38), transparent);
  transform: skewX(-18deg);
  pointer-events: none;
}

.button:hover::after {
  animation: buttonSheen 0.9s ease;
}

@keyframes buttonSheen {
  to {
    left: 135%;
  }
}

.button:hover {
  box-shadow: 0 18px 42px rgba(7, 38, 34, 0.22);
}

.button-primary:hover {
  box-shadow: 0 20px 46px rgba(216, 98, 65, 0.4);
}

/* --- Card depth & image zoom on hover --- */
.home-card,
.civic-grid article,
.proof-grid article,
.service-grid article,
.vault-grid article,
.opportunity-card,
.page-card,
.content-panel {
  transition:
    transform 0.45s cubic-bezier(0.16, 0.84, 0.3, 1),
    box-shadow 0.45s ease,
    border-color 0.45s ease;
}

.home-card:hover,
.civic-grid article:hover,
.service-grid article:hover,
.vault-grid article:hover,
.opportunity-card:hover,
.page-card:hover,
.content-panel:hover {
  transform: translateY(-7px);
  box-shadow: 0 32px 64px rgba(7, 38, 34, 0.16);
  border-color: rgba(15, 107, 79, 0.35);
}

.feature-media {
  overflow: hidden;
  border-radius: 8px;
}

.home-card img,
.civic-grid img,
.page-card img,
.feature-media img {
  transition: transform 0.9s cubic-bezier(0.16, 0.84, 0.3, 1);
}

.home-card:hover img,
.civic-grid article:hover img,
.page-card:hover img,
.feature-band:hover .feature-media img {
  transform: scale(1.06);
}

/* --- Top accent bar on stepped cards --- */
.proof-grid article,
.journey-steps article {
  position: relative;
  overflow: hidden;
}

.proof-grid article::before,
.journey-steps article::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 3px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.16, 0.84, 0.3, 1);
}

.journey-steps article::before {
  background: #f0c06e;
}

.proof-grid article:hover,
.journey-steps article:hover {
  transform: translateY(-5px);
}

.proof-grid article:hover::before,
.journey-steps article:hover::before {
  transform: scaleX(1);
}

.journey-steps article {
  transition:
    transform 0.45s cubic-bezier(0.16, 0.84, 0.3, 1),
    background 0.4s ease;
}

.journey-steps article:hover {
  background: #0c5a4d;
}

/* --- Icon micro-interactions --- */
.trust-strip article {
  transition: background 0.3s ease;
}

.trust-strip article:hover {
  background: #f3f8f3;
}

.trust-strip svg,
.service-grid svg,
.vault-grid svg {
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.trust-strip article:hover svg,
.service-grid article:hover svg,
.vault-grid article:hover svg {
  transform: translateY(-3px) scale(1.14);
}

.brand-logo {
  transition:
    transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.4s ease;
}

.brand:hover .brand-logo {
  transform: translateY(-1px) scale(1.03);
  box-shadow: 0 10px 26px rgba(7, 38, 34, 0.26);
}

.text-link i,
.page-sidebar a i {
  transition: transform 0.3s ease;
}

.text-link:hover i {
  transform: translate(3px, -3px);
}

/* --- Live plot map --- */
.anim-ready .plot.available:not(.active):not(.is-hidden) {
  animation: plotPulse 3s ease-in-out infinite;
}

@keyframes plotPulse {
  0%,
  100% {
    box-shadow: 0 16px 34px rgba(7, 38, 34, 0.12), 0 0 0 0 rgba(15, 107, 79, 0);
  }
  50% {
    box-shadow: 0 16px 34px rgba(7, 38, 34, 0.12), 0 0 0 7px rgba(15, 107, 79, 0.1);
  }
}

.plot:not(.active):hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 24px 44px rgba(7, 38, 34, 0.22);
  z-index: 7;
}

/* --- Filter chips & sidebar polish --- */
.filter-chip {
  transition:
    transform 0.18s ease,
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}

.page-sidebar a {
  transition:
    background 0.25s ease,
    padding-left 0.25s ease;
}

.page-sidebar a:hover {
  padding-left: 16px;
}

/* --- FAQ open animation --- */
details[open] summary ~ * {
  animation: faqReveal 0.4s cubic-bezier(0.16, 0.84, 0.3, 1);
}

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

/* ============================================================
   PREMIUM COMPONENTS — Zenn & Glory
   Stats band, amenities, testimonials, Welcome-Home CTA,
   gold accents, map tooltip, responsive logo.
   ============================================================ */

/* --- Brand logo responsive --- */
@media (max-width: 760px) {
  .brand-logo {
    height: 38px;
    max-width: 180px;
  }
}

/* --- Gold-accent eyebrow variant --- */
.eyebrow.gold {
  color: var(--gold);
}

/* --- Stats band --- */
.stats-band {
  background:
    radial-gradient(circle at 12% 18%, rgba(201, 147, 45, 0.16), transparent 50%),
    var(--green-deep);
  color: var(--white);
}

.stats-band .section-heading h2,
.stats-band .section-heading p {
  color: var(--white);
}

.stats-band .section-heading .eyebrow {
  color: #f0c06e;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.16);
}

.stat {
  padding: clamp(28px, 4vw, 40px) 22px;
  text-align: center;
  background: #0a493f;
}

.stat-num {
  display: block;
  font-size: clamp(2.4rem, 5vw, 3.7rem);
  line-height: 1;
  font-weight: 900;
  background: linear-gradient(180deg, #f6d68d 0%, #c9932d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat span {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  font-weight: 800;
}

/* --- Amenities grid --- */
.amenity-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.amenity {
  display: grid;
  align-content: start;
  gap: 6px;
  min-height: 168px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  transition:
    transform 0.45s cubic-bezier(0.16, 0.84, 0.3, 1),
    box-shadow 0.45s ease,
    border-color 0.45s ease;
}

.amenity:hover {
  transform: translateY(-7px);
  box-shadow: 0 28px 56px rgba(7, 38, 34, 0.14);
  border-color: rgba(201, 147, 45, 0.55);
}

.amenity svg {
  width: 30px;
  height: 30px;
  margin-bottom: 8px;
  color: var(--gold);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.amenity:hover svg {
  transform: translateY(-3px) scale(1.12);
}

.amenity strong {
  font-size: 1.04rem;
  color: var(--ink);
}

.amenity span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

/* --- Testimonials --- */
.testimonials {
  background: #f1f5f0;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 46px rgba(7, 38, 34, 0.06);
  transition:
    transform 0.45s cubic-bezier(0.16, 0.84, 0.3, 1),
    box-shadow 0.45s ease;
}

.testimonial-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 32px 64px rgba(7, 38, 34, 0.15);
}

.stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 3px;
}

.testimonial-card blockquote {
  flex: 1;
  margin: 0;
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.6;
  font-weight: 600;
}

.testimonial-card footer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tst-avatar {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green), var(--green-deep));
  color: #f0c06e;
  font-weight: 900;
  flex: 0 0 auto;
}

.testimonial-card cite {
  font-style: normal;
  line-height: 1.3;
}

.testimonial-card cite strong {
  display: block;
  color: var(--ink);
}

.testimonial-card cite span {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
}

.tst-note {
  grid-column: 1 / -1;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.8rem;
}

/* --- Welcome-Home CTA band --- */
.cta-band {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(64px, 9vw, 124px) clamp(18px, 5vw, 72px);
  text-align: center;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 16%, rgba(201, 147, 45, 0.28), transparent 52%),
    var(--green-deep);
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: url("assets/hero-estate.png");
  background-size: cover;
  background-position: center;
  opacity: 0.12;
}

.cta-band-inner {
  max-width: 780px;
  margin: 0 auto;
}

.cta-band .eyebrow {
  color: #f0c06e;
}

.cta-band h2 {
  color: var(--white);
}

.cta-band p {
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.12rem;
}

.cta-band .hero-actions {
  justify-content: center;
  margin-top: 28px;
}

.cta-band .button-gold {
  background: linear-gradient(135deg, #f4cd80, #c9932d);
  color: #21303a;
  box-shadow: 0 16px 38px rgba(201, 147, 45, 0.4);
}

/* --- Map plot tooltip --- */
.plot-tooltip {
  position: fixed;
  z-index: 70;
  min-width: 168px;
  padding: 12px 14px;
  border-radius: 8px;
  background: rgba(7, 38, 34, 0.97);
  color: var(--white);
  box-shadow: 0 22px 50px rgba(3, 28, 24, 0.4);
  font-size: 0.8rem;
  pointer-events: none;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 0.18s ease,
    transform 0.18s ease;
}

.plot-tooltip.show {
  opacity: 1;
  transform: none;
}

.plot-tooltip strong {
  display: block;
  margin-bottom: 6px;
  color: #f0c06e;
  font-size: 0.98rem;
}

.pt-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 2px 0;
}

.pt-row span:first-child {
  color: rgba(255, 255, 255, 0.6);
}

.pt-row span:last-child {
  font-weight: 800;
}

/* --- Responsive for new components --- */
@media (max-width: 1080px) {
  .stats-grid,
  .amenity-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .amenity-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}
