:root {
  --ink: #302014;
  --ink-soft: #6f5d50;
  --earth: #8f684e;
  --earth-dark: #372416;
  --copper: #c9976f;
  --copper-soft: #d9b894;
  --sand: #e8ded2;
  --sand-soft: #f3ede6;
  --warm-white: #fbf7f1;
  --line: rgba(88, 63, 45, 0.18);
  --green: #65745d;
  --shadow: 0 24px 70px rgba(48, 32, 20, 0.16);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--warm-white);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 24px clamp(22px, 5vw, 80px);
  color: #fff;
  transition: background 220ms ease, box-shadow 220ms ease, padding 220ms ease, color 220ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  padding-block: 14px;
  color: var(--ink);
  background: rgba(251, 247, 241, 0.94);
  box-shadow: 0 12px 34px rgba(48, 32, 20, 0.11);
  backdrop-filter: blur(16px);
}

.brand {
  position: relative;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  min-width: 202px;
}

.brand-logo {
  width: 202px;
  height: auto;
}

.brand-logo-dark {
  display: none;
}

.site-header.is-scrolled .brand-logo-light,
.site-header.is-open .brand-logo-light {
  display: none;
}

.site-header.is-scrolled .brand-logo-dark,
.site-header.is-open .brand-logo-dark {
  display: block;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 34px);
  font-size: 13px;
  font-weight: 600;
}

.site-nav a:not(.nav-cta) {
  opacity: 0.92;
}

.site-nav a:hover {
  opacity: 1;
}

.nav-cta,
.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 13px 24px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  transition: transform 160ms ease, background 160ms ease, border 160ms ease, color 160ms ease;
}

.nav-cta,
.button-primary {
  color: #fff;
  background: var(--copper);
}

.button-earth {
  color: #fff;
  background: var(--earth);
}

.button-light {
  color: var(--earth-dark);
  background: #fff;
}

.button-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.06);
}

.button-outline-light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.42);
  background: transparent;
}

.button:hover,
.nav-cta:hover {
  transform: translateY(-1px);
}

.button:active,
.nav-cta:active {
  transform: translateY(0) scale(0.985);
}

.button,
.nav-cta {
  overflow: hidden;
}

.button::after,
.nav-cta::after {
  content: "";
  position: absolute;
  inset: auto auto 50% 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0;
  transform: translate(-50%, 50%) scale(1);
  pointer-events: none;
}

.button.is-pressed::after,
.nav-cta.is-pressed::after {
  animation: press-ripple 520ms ease-out;
}

.nav-toggle {
  position: relative;
  z-index: 60;
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: inherit;
  background: transparent;
}

.nav-toggle span {
  position: absolute;
  left: 12px;
  width: 18px;
  height: 1px;
  background: currentColor;
  transition: transform 180ms ease;
}

.nav-toggle span:first-child {
  top: 17px;
}

.nav-toggle span:last-child {
  top: 25px;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 720px;
  height: 82vh;
  overflow: hidden;
  color: #fff;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1);
  transition: opacity 950ms ease;
}

.hero-image.is-active {
  opacity: 1;
}

.js-ready .hero-image.is-animating {
  animation: hero-image-settle 3300ms ease-out forwards;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(20, 25, 18, 0.72) 0%, rgba(20, 25, 18, 0.42) 38%, rgba(20, 25, 18, 0.12) 74%),
    linear-gradient(180deg, rgba(20, 25, 18, 0.45) 0%, rgba(20, 25, 18, 0.08) 36%, rgba(20, 25, 18, 0.34) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(690px, calc(100% - 44px));
  height: 100%;
  margin-left: clamp(28px, 8vw, 148px);
  padding-top: 64px;
}

.hero .eyebrow,
.hero h1,
.hero-copy,
.hero-actions {
  opacity: 0;
}

.js-ready .hero .eyebrow {
  animation: reveal-up 760ms ease-out 260ms forwards;
}

.js-ready .hero h1 {
  opacity: 1;
}

.hero-title-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(28px);
}

.js-ready .hero-title-word {
  animation: reveal-word 780ms cubic-bezier(0.2, 0.72, 0.2, 1) forwards;
  animation-delay: calc(420ms + (var(--word-index) * 85ms));
}

.js-ready .hero-copy {
  animation: reveal-up 760ms ease-out 980ms forwards;
}

.js-ready .hero-actions {
  animation: reveal-up 760ms ease-out 1120ms forwards;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--copper);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.hero .eyebrow,
.site-footer .eyebrow {
  color: #ead7c3;
}

h1,
h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  max-width: 640px;
  font-size: clamp(54px, 7vw, 94px);
}

.hero h1 {
  max-width: 700px;
  line-height: 1.07;
}

h2 {
  font-size: clamp(42px, 4.6vw, 66px);
}

h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.05;
}

.hero-copy {
  width: min(520px, 100%);
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: 17px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.section {
  padding: clamp(64px, 8vw, 112px) clamp(22px, 7vw, 120px);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(360px, 1.15fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: center;
}

.section-copy p:not(.eyebrow),
.section-heading p {
  max-width: 560px;
  margin: 24px 0 0;
  color: var(--ink-soft);
}

.section-copy h2::after,
.section-heading h2::after {
  content: "";
  display: block;
  width: 58px;
  height: 1px;
  margin-top: 24px;
  background: var(--copper);
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 40px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stats-row div {
  padding: 24px 16px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.stats-row div:last-child {
  border-right: 0;
}

.stats-row strong {
  display: block;
  color: var(--earth);
  font-size: 21px;
  line-height: 1;
}

.stats-row span {
  display: block;
  margin-top: 7px;
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.media-feature {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  background: var(--sand);
  box-shadow: var(--shadow);
}

.media-feature img,
.media-feature video {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.media-feature video {
  display: block;
}

.media-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(24, 18, 12, 0) 42%, rgba(24, 18, 12, 0.6) 100%);
}

.media-feature-video::after {
  content: none;
}

.play-button {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 88px;
  height: 88px;
  border: 4px solid #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.play-button::after {
  content: "";
  position: absolute;
  top: 27px;
  left: 33px;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 23px solid #fff;
}

.media-caption {
  position: absolute;
  z-index: 2;
  left: 36px;
  bottom: 34px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.section-map {
  background: var(--sand-soft);
}

.map-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  grid-template-rows: auto 1fr;
  gap: clamp(34px, 6vw, 72px);
  align-items: stretch;
}

.masterplan-frame {
  grid-column: 1;
  grid-row: 1 / span 2;
}

.map-copy {
  grid-column: 2;
  grid-row: 1;
}

.map-copy .button {
  margin-top: 34px;
}

.map-feature-strip {
  grid-column: 2;
  grid-row: 2;
  align-self: end;
  margin-top: 0;
}

.masterplan-frame {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 28px;
  background: #fff;
  box-shadow: 0 16px 45px rgba(48, 32, 20, 0.08);
}

.masterplan-explorer {
  display: grid;
  flex: 1;
  grid-template-rows: 1fr auto;
  gap: 18px;
}

.masterplan-stage {
  position: relative;
  aspect-ratio: 1672 / 941;
  overflow: hidden;
  background: #fff;
}

.masterplan-view {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 460ms ease, transform 720ms cubic-bezier(0.2, 0.72, 0.2, 1);
}

.masterplan-view.is-active {
  opacity: 1;
  pointer-events: auto;
}

.masterplan-overview {
  transform: scale(1);
}

.masterplan-stage.is-detail .masterplan-overview {
  transform: scale(1.18);
}

.masterplan-detail {
  display: grid;
  place-items: center;
  padding: 0;
  background: #fff;
  transform: scale(0.9);
}

.masterplan-detail.is-active {
  transform: scale(1);
}

.masterplan-coming {
  display: grid;
  place-items: center;
  background: #fff;
}

.coming-soon-panel {
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: 34px;
  color: var(--earth-dark);
  text-align: center;
}

.coming-soon-panel span {
  color: var(--copper);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.coming-soon-panel strong {
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 500;
  line-height: 1;
}

.overview-art {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #fff;
}

.overview-art-image,
.overview-coto-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.overview-art-image {
  object-fit: contain;
}

.overview-coto-overlay {
  z-index: 2;
}

.overview-coto-zone {
  cursor: pointer;
  outline: none;
}

.overview-coto-zone polygon {
  fill: rgba(143, 104, 78, 0.16);
  stroke: rgba(255, 255, 255, 0.94);
  stroke-width: 3;
  vector-effect: non-scaling-stroke;
  transition: fill 180ms ease, stroke 180ms ease, filter 180ms ease;
}

.overview-coto-zone text {
  fill: #fff;
  font-family: var(--sans);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 0;
  paint-order: stroke;
  pointer-events: none;
  stroke: rgba(48, 32, 20, 0.7);
  stroke-width: 6px;
  stroke-linejoin: round;
  text-transform: uppercase;
}

.overview-coto-zone:hover polygon,
.overview-coto-zone:focus-visible polygon,
.overview-coto-zone.is-active polygon {
  fill: rgba(143, 104, 78, 0.56);
  stroke: #fff;
  filter: drop-shadow(0 6px 10px rgba(48, 32, 20, 0.3));
}

.detail-map-shell {
  width: 100%;
}

.masterplan-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.masterplan-controls button {
  min-height: 38px;
  border: 1px solid var(--line);
  padding: 9px 14px;
  color: var(--earth-dark);
  background: #fff;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.masterplan-controls button:hover,
.masterplan-controls button.is-active {
  border-color: var(--earth);
  color: #fff;
  background: var(--earth);
}

.official-masterplan {
  position: relative;
  overflow: hidden;
  background: #fff;
}

.official-masterplan.is-zoomable {
  cursor: grab;
  user-select: none;
}

.official-masterplan.is-zoomable.is-dragging {
  cursor: grabbing;
}

.official-masterplan-image {
  width: 100%;
  max-height: 460px;
  object-fit: contain;
  transform-origin: 0 0;
  will-change: transform;
}

.official-masterplan-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform-origin: 0 0;
  will-change: transform;
}

.official-masterplan-overlay a {
  outline: none;
}

.masterplan-lot {
  cursor: pointer;
  opacity: 0.62;
  stroke: rgba(255, 255, 255, 0.86);
  stroke-width: 2;
  mix-blend-mode: multiply;
  transition: opacity 160ms ease, filter 160ms ease;
}

.masterplan-lot:hover,
.masterplan-lot:focus {
  opacity: 0.88;
  filter: brightness(1.08);
}

.masterplan-lot.is-available {
  fill: #4f7d45;
}

.masterplan-lot.is-hold {
  fill: #d2aa59;
}

.masterplan-lot.is-sold {
  fill: #b45143;
}

.map-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 18px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 600;
}

.map-legend span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.status-dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
}

.status-available {
  background: var(--green);
}

.status-hold {
  background: #d6b370;
}

.status-sold {
  background: #a66c56;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin-top: 38px;
  background: var(--line);
}

.feature-strip div {
  min-height: 86px;
  padding: 18px;
  background: #fff;
}

.feature-strip strong,
.feature-strip span {
  display: block;
}

.feature-strip strong {
  color: var(--earth);
  font-size: 13px;
}

.feature-strip span {
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 13px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(260px, 430px) minmax(280px, 520px);
  gap: clamp(24px, 5vw, 70px);
  align-items: end;
  margin-bottom: 34px;
}

.section-heading p:not(.eyebrow) {
  margin: 0;
}

.section-amenities {
  overflow: hidden;
  background: var(--warm-white);
}

.amenities-heading {
  display: flex;
  gap: 32px;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 42px;
}

.section-amenities .section-heading {
  display: block;
  max-width: 760px;
  margin-bottom: 0;
}

.section-amenities .section-heading p:not(.eyebrow) {
  margin-top: 24px;
}

.amenity-controls {
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
  padding-bottom: 4px;
}

.amenity-controls button {
  display: grid;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(143, 104, 78, 0.48);
  border-radius: 50%;
  color: var(--earth-dark);
  background: transparent;
  font-family: var(--sans);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  place-items: center;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.amenity-controls button:hover,
.amenity-controls button:focus-visible {
  border-color: var(--earth);
  color: #fff;
  background: var(--earth);
}

.amenity-carousel {
  width: calc(100% + clamp(22px, 7vw, 120px) * 2);
  margin-inline: calc(clamp(22px, 7vw, 120px) * -1);
}

.amenity-track {
  display: flex;
  gap: clamp(14px, 2vw, 26px);
  overflow-x: auto;
  padding: 8px max(clamp(22px, 7vw, 120px), calc((100vw - min(68vw, 980px)) / 2)) 28px;
  scroll-behavior: smooth;
  scroll-padding-inline: max(clamp(22px, 7vw, 120px), calc((100vw - min(68vw, 980px)) / 2));
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  overscroll-behavior-inline: contain;
  cursor: grab;
  user-select: none;
}

.amenity-track::-webkit-scrollbar {
  display: none;
}

.amenity-card {
  position: relative;
  flex: 0 0 min(68vw, 980px);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--earth-dark);
  box-shadow: 0 18px 42px rgba(48, 32, 20, 0.13);
  opacity: 0.56;
  scroll-snap-align: center;
  transform: scale(0.94);
  transition: opacity 360ms ease, transform 360ms ease, box-shadow 360ms ease;
}

.amenity-card.is-active {
  box-shadow: 0 28px 68px rgba(48, 32, 20, 0.2);
  opacity: 1;
  transform: scale(1);
}

.amenity-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
  -webkit-user-drag: none;
  user-select: none;
  pointer-events: none;
}

.amenity-card.is-active img {
  transform: scale(1.018);
}

.amenity-card::after {
  content: none;
}

.amenity-caption {
  position: absolute;
  top: clamp(16px, 3vw, 28px);
  right: clamp(16px, 3vw, 28px);
  bottom: auto;
  left: auto;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-end;
  padding: 14px 22px;
  background: rgba(55, 36, 22, 0.62);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-left: 3px solid var(--copper-soft);
  color: #fff;
  text-align: right;
}

.amenity-caption span {
  color: var(--copper-soft);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.22em;
}

.amenity-caption h3 {
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(20px, 2.5vw, 32px);
  font-weight: 500;
  line-height: 1.1;
}

.amenity-progress {
  display: flex;
  gap: 7px;
  justify-content: center;
  min-height: 22px;
  padding-top: 8px;
}

.amenity-progress button {
  width: 28px;
  height: 12px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.amenity-progress button::before {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: rgba(143, 104, 78, 0.3);
  transition: background-color 180ms ease, transform 180ms ease;
}

.amenity-progress button.is-active::before {
  background: var(--earth);
  transform: scaleY(2);
}

.section-location {
  overflow: hidden;
  min-width: 0;
  padding-top: clamp(68px, 8vw, 108px);
  padding-bottom: clamp(68px, 8vw, 108px);
  background: #fff;
}

.location-heading {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(300px, 0.7fr);
  gap: clamp(32px, 8vw, 120px);
  align-items: end;
  min-width: 0;
  margin-bottom: 38px;
}

.section-location h2 {
  max-width: 720px;
  font-size: clamp(44px, 5vw, 70px);
  line-height: 1;
}

.location-heading > p {
  max-width: 520px;
  margin: 0;
  color: var(--ink-soft);
}

.location-map-stage {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  aspect-ratio: 16 / 9;
  background: var(--sand-soft);
  box-shadow: 0 22px 60px rgba(48, 32, 20, 0.12);
  isolation: isolate;
}

.location-map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.location-marker {
  position: absolute;
  z-index: 3;
  top: 19%;
  left: 88.6%;
  width: 10.55%;
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
}

.location-marker img {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(48, 32, 20, 0.2));
}

.location-pulse {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: 88%;
  aspect-ratio: 1;
  border: 2px solid rgba(143, 104, 78, 0.72);
  border-radius: 50%;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.8);
  animation: location-pulse 3.6s ease-out infinite;
}

.location-pulse-two {
  animation-delay: 1.2s;
}

.location-pulse-three {
  animation-delay: 2.4s;
}

.location-distance-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: #fff;
}

.location-distance-strip article {
  display: grid;
  gap: 3px;
  min-width: 0;
  padding: 24px clamp(18px, 2.5vw, 34px);
  border-right: 1px solid var(--line);
}

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

.location-distance-strip strong,
.location-distance-strip span,
.location-distance-strip small {
  display: block;
}

.location-distance-strip strong {
  color: var(--earth);
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}

.location-distance-strip span {
  margin-top: 8px;
  color: var(--earth-dark);
  font-size: 13px;
  font-weight: 800;
}

.location-distance-strip small {
  color: var(--ink-soft);
  font-size: 11px;
  line-height: 1.35;
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: clamp(58px, 8vw, 104px) clamp(22px, 7vw, 120px) 32px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(55, 36, 22, 0.97), rgba(42, 27, 17, 0.99)),
    var(--earth-dark);
}

.footer-inner {
  position: relative;
  z-index: 2;
  width: min(1240px, 100%);
  margin: 0 auto;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(300px, 390px);
  gap: clamp(36px, 7vw, 96px);
  align-items: start;
  padding-bottom: clamp(36px, 5vw, 58px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.footer-copy h2 {
  font-size: clamp(40px, 5vw, 72px);
}

.footer-copy p:not(.eyebrow) {
  max-width: 720px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.footer-form {
  align-self: stretch;
  padding-left: clamp(22px, 4vw, 42px);
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.footer-form > p {
  margin: 0 0 20px;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 500;
  line-height: 1;
}

.footer-contact {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(96px, auto) minmax(260px, 1fr);
  gap: clamp(30px, 5vw, 78px);
  align-items: center;
  padding-top: 30px;
}

.lead-form {
  display: grid;
  gap: 14px;
}

.lead-form label {
  display: grid;
  gap: 7px;
}

.lead-form span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 0;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  padding: 13px 14px;
  outline: none;
}

.lead-form textarea {
  resize: vertical;
}

.footer-place {
  display: grid;
  gap: 8px;
}

.footer-place span,
.contact-list span {
  display: block;
  color: rgba(255, 255, 255, 0.48);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.footer-place strong {
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 500;
  line-height: 1.1;
}

.contact-list {
  display: grid;
  justify-self: end;
  gap: 12px;
  font-style: normal;
  text-align: right;
}

.contact-list p {
  display: grid;
  justify-items: end;
  gap: 7px;
  margin: 0;
}

.contact-list a,
.contact-list strong {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.contact-list a:hover {
  color: #fff;
}

.footer-signature {
  display: grid;
  justify-items: center;
  gap: 10px;
  text-align: center;
}

.footer-signature img {
  width: clamp(84px, 7.7vw, 124px);
  max-height: 130px;
  object-fit: contain;
  opacity: 0.92;
}

.floating-whatsapp {
  position: fixed;
  right: clamp(18px, 3vw, 34px);
  bottom: clamp(18px, 3vw, 34px);
  z-index: 80;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  color: #fff;
  background: #25d366;
  box-shadow: 0 12px 28px rgba(48, 32, 20, 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.floating-whatsapp:hover {
  box-shadow: 0 16px 34px rgba(48, 32, 20, 0.22);
  transform: translateY(-2px);
}

.floating-whatsapp img {
  width: 30px;
  height: 30px;
}

.unit-hero {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  color: #fff;
}

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

.unit-hero img {
  object-fit: cover;
}

.unit-hero-shade {
  background:
    linear-gradient(90deg, rgba(38, 25, 15, 0.78), rgba(38, 25, 15, 0.22)),
    linear-gradient(180deg, rgba(38, 25, 15, 0.32), rgba(38, 25, 15, 0.58));
}

.unit-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: min(760px, calc(100% - 44px));
  min-height: 520px;
  padding: 140px 0 70px;
  margin-left: clamp(22px, 7vw, 120px);
}

.unit-hero h1 {
  font-size: clamp(72px, 10vw, 128px);
}

.back-link {
  width: fit-content;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 700;
}

.unit-status {
  width: fit-content;
  margin-top: 22px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.unit-status.status-available {
  background: rgba(79, 125, 69, 0.78);
}

.unit-status.status-hold {
  background: rgba(210, 170, 89, 0.78);
}

.unit-status.status-sold {
  background: rgba(180, 81, 67, 0.78);
}

.unit-detail {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(320px, 460px);
  gap: clamp(34px, 7vw, 90px);
  align-items: start;
}

.unit-summary p:not(.eyebrow) {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--ink-soft);
  overflow-wrap: anywhere;
}

.unit-summary,
.unit-card,
.plan-card {
  min-width: 0;
}

.unit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.unit-benefit-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 34px;
  max-width: 920px;
}

.unit-context-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(220px, 0.65fr);
  gap: 18px;
  margin-top: 34px;
}

.unit-lot-outline-card,
.unit-context-card {
  min-width: 0;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 14px 38px rgba(48, 32, 20, 0.07);
}

.unit-lot-outline-card {
  overflow: hidden;
}

.unit-lot-outline-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px 8px;
}

.unit-lot-outline-heading span {
  color: var(--earth);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.unit-lot-outline {
  display: block;
  width: 100%;
  aspect-ratio: 1.72 / 1;
  min-height: 235px;
  max-height: 360px;
  overflow: hidden;
  background: #fff;
}

.unit-lot-outline-shape {
  fill: transparent;
  stroke: var(--earth);
  stroke-width: 5;
  vector-effect: non-scaling-stroke;
  stroke-linejoin: round;
  stroke-linecap: round;
}

.unit-lot-outline-label {
  fill: var(--earth-dark);
  font-family: var(--sans);
  font-weight: 800;
  pointer-events: none;
}

.unit-lot-outline-number {
  font-size: 42px;
}

.unit-lot-outline-meters {
  fill: var(--ink-soft);
  font-size: 24px;
  font-weight: 700;
}

.unit-context-card {
  display: grid;
  align-content: center;
  padding: 18px 22px;
}

.unit-context-card div {
  display: grid;
  grid-template-columns: 42px 1fr;
  column-gap: 14px;
  row-gap: 3px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.unit-context-card div:first-child {
  padding-top: 0;
}

.unit-context-card div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.unit-context-icon {
  grid-row: 1 / span 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(143, 104, 78, 0.42);
  border-radius: 50%;
  color: var(--earth);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.unit-context-card span:not(.unit-context-icon) {
  color: var(--earth);
  font-size: 12px;
  font-weight: 800;
}

.unit-context-card strong {
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
}

.button-outline-earth {
  color: var(--earth);
  border-color: var(--earth);
  background: transparent;
}

.unit-card,
.plan-card {
  background: #fff;
  box-shadow: 0 18px 48px rgba(48, 32, 20, 0.11);
}

.unit-card-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 30px;
  color: #fff;
  background: var(--earth-dark);
}

.unit-card-header span {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.unit-card-header strong {
  font-family: var(--serif);
  font-size: 62px;
  font-weight: 500;
  line-height: 0.9;
}

.unit-data {
  margin: 0;
}

.unit-data div {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 30px;
  border-bottom: 1px solid var(--line);
}

.unit-data div:last-child {
  border-bottom: 0;
}

.unit-data dt {
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 700;
}

.unit-data dd {
  margin: 0;
  color: var(--earth-dark);
  font-weight: 800;
  text-align: right;
}

.unit-documents-compact {
  display: grid;
  gap: 12px;
  padding: 22px 30px 28px;
  border-top: 1px solid var(--line);
}

.unit-card > .unit-documents-compact:first-child {
  border-top: 0;
}

.unit-documents-title {
  color: var(--earth);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.unit-documents-list {
  display: grid;
  gap: 10px;
}

.document-card {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 0;
  padding: 11px 12px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.document-card:hover {
  border-color: rgba(143, 104, 78, 0.42);
  box-shadow: 0 12px 30px rgba(48, 32, 20, 0.1);
  transform: translateY(-2px);
}

.document-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: var(--earth-dark);
}

.document-icon img {
  width: 27px;
  height: auto;
}

.document-card strong {
  display: block;
  color: var(--earth-dark);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
}

.document-card small {
  display: block;
  margin-top: 3px;
  color: var(--copper);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.unit-plans {
  background: var(--sand-soft);
}

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

.plan-card {
  padding: 30px;
}

.plan-card span {
  color: var(--copper);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.plan-card h3 {
  margin-top: 18px;
}

.plan-card p {
  margin: 14px 0 26px;
  color: var(--ink-soft);
  overflow-wrap: anywhere;
}

.plan-card strong {
  color: var(--earth-dark);
  font-size: 22px;
}

.plan-data {
  display: grid;
  gap: 0;
  margin: 22px 0 0;
}

.plan-data div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
}

.plan-data div:last-child {
  border-bottom: 0;
}

.plan-data dt {
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 700;
}

.plan-data dd {
  margin: 0;
  color: var(--earth-dark);
  font-size: 13px;
  font-weight: 800;
  text-align: right;
}

.js-ready [data-reveal] {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 760ms ease, transform 760ms cubic-bezier(0.2, 0.72, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.js-ready [data-reveal="fade"] {
  transform: none;
}

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

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

.js-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

@keyframes reveal-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes reveal-word {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-image-settle {
  from {
    transform: scale(1.045);
  }
  to {
    transform: scale(1);
  }
}

@keyframes press-ripple {
  0% {
    opacity: 0.24;
    transform: translate(-50%, 50%) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, 50%) scale(32);
  }
}

@keyframes location-pulse {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
  }
  18% {
    opacity: 0.62;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(2.2);
  }
}

@media (max-width: 1040px) {
  .site-nav {
    gap: 16px;
  }

  .section-grid,
  .map-layout,
  .unit-detail,
  .footer-main,
  .footer-contact,
  .contact-list {
    grid-template-columns: 1fr;
  }

  .map-layout {
    grid-template-rows: auto;
  }

  .footer-form {
    padding-left: 0;
    border-left: 0;
  }

  .footer-contact {
    gap: 28px;
    justify-items: center;
    text-align: center;
  }

  .footer-place,
  .contact-list {
    justify-self: center;
    text-align: center;
  }

  .contact-list p {
    justify-items: center;
  }

  .section-heading {
    grid-template-columns: 1fr;
  }

  .location-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .location-distance-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .location-distance-strip article:nth-child(2) {
    border-right: 0;
  }

  .location-distance-strip article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .unit-context-grid {
    grid-template-columns: 1fr;
  }

  .unit-benefit-row {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .unit-benefit-row article {
    padding: 0 !important;
    border-right: 0 !important;
  }

  .plan-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .site-header {
    padding: 16px 18px;
  }

  .brand,
  .brand-logo {
    width: 180px;
    min-width: 180px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 76px;
    right: 14px;
    left: 14px;
    bottom: auto;
    z-index: 55;
    display: grid;
    gap: 4px;
    padding: 18px;
    color: var(--ink);
    background: rgba(251, 247, 241, 0.98);
    box-shadow: 0 22px 58px rgba(48, 32, 20, 0.18);
    backdrop-filter: blur(16px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px) scale(0.985);
    transform-origin: top right;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 0 4px;
    border-bottom: 1px solid rgba(88, 63, 45, 0.12);
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.1;
  }

  .site-nav .nav-cta {
    margin-top: 12px;
    color: #fff;
    font-family: var(--sans);
    font-size: 13px;
  }

  .hero {
    min-height: 680px;
    height: 92vh;
  }

  .unit-hero,
  .unit-hero-content {
    min-height: 500px;
  }

  .unit-hero-content {
    width: calc(100% - 36px);
    margin: 0 18px;
    padding-bottom: 48px;
  }

  .hero-image {
    object-position: 52% center;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(20, 25, 18, 0.5) 0%, rgba(20, 25, 18, 0.12) 34%, rgba(20, 25, 18, 0.74) 100%),
      linear-gradient(90deg, rgba(20, 25, 18, 0.48), rgba(20, 25, 18, 0.06));
  }

  .hero-content {
    justify-content: flex-end;
    width: calc(100% - 36px);
    margin: 0 18px;
    padding-bottom: 52px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(40px, 11.8vw, 54px);
  }

  .hero h1 {
    line-height: 1.1;
  }

  h2 {
    font-size: clamp(40px, 12vw, 56px);
  }

  .hero-copy {
    width: min(330px, 100%);
    font-size: 15px;
  }

  .unit-documents-compact {
    padding: 18px 20px 22px;
  }

  .unit-context-grid {
    margin-top: 28px;
  }

  .unit-lot-outline {
    aspect-ratio: 1.42 / 1;
    min-height: 220px;
  }

  .section {
    padding: 56px 18px;
  }

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

  .stats-row div:nth-child(2) {
    border-right: 0;
  }

  .stats-row div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .media-feature,
  .media-feature img,
  .media-feature video {
    min-height: 320px;
  }

  .masterplan-frame {
    order: 2;
    grid-column: auto;
    grid-row: auto;
    margin-inline: -18px;
    padding: 18px;
    overflow-x: hidden;
  }

  .map-copy {
    order: 1;
    grid-column: auto;
    grid-row: auto;
  }

  .map-copy .button {
    margin-top: 28px;
  }

  .map-feature-strip {
    order: 3;
    grid-column: auto;
    grid-row: auto;
    margin-top: 0;
  }

  .masterplan-stage {
    min-height: 0;
  }

  .detail-map-shell {
    overflow-x: auto;
  }

  .detail-map-shell .official-masterplan {
    min-width: 0;
  }

  .masterplan-controls button {
    flex: 1 1 calc(50% - 8px);
  }

  .amenities-heading {
    gap: 20px;
    align-items: center;
  }

  .amenity-carousel {
    width: calc(100% + 36px);
    margin-inline: -18px;
  }

  .amenity-track {
    gap: 12px;
    padding-inline: 18px;
    scroll-padding-inline: 18px;
  }

  .amenity-card {
    flex-basis: min(82vw, 680px);
    aspect-ratio: 4 / 3;
  }

  .feature-strip {
    grid-template-columns: 1fr;
  }

  .footer-contact {
    grid-template-areas:
      "place"
      "contact"
      "signature";
  }

  .footer-place {
    grid-area: place;
  }

  .contact-list {
    grid-area: contact;
    order: 2;
  }

  .footer-signature {
    grid-area: signature;
    order: 3;
    margin-top: 8px;
  }

  .location-map-stage {
    margin-inline: 0;
    width: 100%;
    box-shadow: 0 14px 36px rgba(48, 32, 20, 0.12);
  }

  .location-marker {
    width: 10.55%;
  }

  .location-distance-strip {
    width: 100%;
    min-width: 0;
  }

  .location-distance-strip article,
  .location-distance-strip span,
  .location-distance-strip small {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .unit-data div {
    display: grid;
    grid-template-columns: 1fr;
    gap: 7px;
    padding: 18px 20px;
  }

  .unit-data dd {
    text-align: left;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 520px) {
  .brand,
  .brand-logo {
    width: 164px;
    min-width: 164px;
  }

  .button,
  .nav-cta {
    width: 100%;
  }

  .hero-actions {
    width: 100%;
  }

  .section-copy p:not(.eyebrow),
  .section-heading p {
    font-size: 15px;
  }

  .amenities-heading {
    display: block;
    margin-bottom: 26px;
  }

  .amenity-controls {
    margin-top: 22px;
    padding-bottom: 0;
  }

  .amenity-controls button {
    width: 44px;
    height: 44px;
  }

  .amenity-card {
    flex-basis: calc(100vw - 50px);
    aspect-ratio: 4 / 3;
  }

  .amenity-caption {
    top: 12px;
    right: 12px;
    padding: 10px 14px;
    gap: 3px;
  }

  .amenity-caption h3 {
    font-size: clamp(17px, 5.5vw, 24px);
  }

  .location-distance-strip {
    grid-template-columns: 1fr;
  }

  .location-distance-strip article,
  .location-distance-strip article:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .location-distance-strip article:last-child {
    border-bottom: 0;
  }

  .location-distance-strip article {
    grid-template-columns: minmax(62px, 72px) minmax(0, 1fr);
    column-gap: 12px;
    align-items: center;
    width: 100%;
    min-width: 0;
    padding: 16px 14px;
  }

  .location-distance-strip strong {
    grid-row: 1 / span 2;
    font-size: clamp(25px, 8vw, 28px);
  }

  .location-distance-strip span {
    margin-top: 0;
    line-height: 1.25;
  }

  .location-map-stage {
    aspect-ratio: 16 / 9;
  }

  .site-footer {
    padding: 54px 18px;
  }

  .footer-main {
    padding-bottom: 34px;
  }

  .footer-form > p {
    font-size: 26px;
  }

  .footer-signature img {
    width: 86px;
    max-height: 96px;
  }

  .contact-list {
    gap: 20px;
  }

}

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

  [data-reveal],
  .hero .eyebrow,
  .hero h1,
  .hero-copy,
  .hero-actions,
  .hero-title-word {
    opacity: 1 !important;
    transform: none !important;
  }
}
