:root {
  --ivory: #f7f0e4;
  --cream: #fffaf0;
  --warm: #e7dcc8;
  --sand: #d8c6a7;
  --charcoal: #20201d;
  --muted: #6b665d;
  --green: #253f21;
  --green-deep: #142511;
  --gold: #b79b5f;
  --gold-soft: rgba(183, 155, 95, 0.34);
  --line: rgba(32, 32, 29, 0.14);
  --glass: rgba(255, 250, 240, 0.9);
  --shadow: 0 28px 80px rgba(20, 20, 16, 0.18);
  --soft-shadow: 0 14px 42px rgba(32, 32, 29, 0.08);
  --serif: "Cormorant Garamond", "Canela", Georgia, "Times New Roman", serif;
  --sans: "Avenir Next", "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--charcoal);
  background: var(--ivory);
  font-family: var(--sans);
  line-height: 1.5;
  overflow-x: hidden;
}

body::selection {
  background: var(--gold);
  color: #fff;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(18px, 4vw, 58px);
  color: #fff;
  background: linear-gradient(180deg, rgba(10, 13, 8, 0.7), rgba(10, 13, 8, 0));
  transition: background 260ms ease, box-shadow 260ms ease, color 260ms ease, padding 260ms ease;
}

.site-header.is-scrolled {
  padding-block: 12px;
  color: var(--charcoal);
  background: rgba(255, 250, 240, 0.96);
  border-bottom: 1px solid rgba(32, 32, 29, 0.1);
  box-shadow: 0 10px 34px rgba(32, 32, 29, 0.08);
  backdrop-filter: blur(18px);
}

.brand-mark {
  position: relative;
  display: block;
  width: clamp(124px, 14vw, 190px);
  height: 42px;
}

.logo {
  position: absolute;
  inset: 50% auto auto 0;
  width: 100%;
  height: auto;
  transform: translateY(-50%);
  transition: opacity 220ms ease;
}

.logo-dark,
.site-header.is-scrolled .logo-light {
  opacity: 0;
}

.site-header.is-scrolled .logo-dark {
  opacity: 1;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.desktop-nav a,
.header-cta,
.text-cta,
.secondary-button {
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, transform 180ms ease,
    box-shadow 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: var(--gold);
}

.header-cta {
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  padding: 11px 18px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-header.is-scrolled .header-cta {
  border-color: var(--gold);
  background: var(--green);
  color: #fff;
}

.header-cta:hover,
.header-cta:focus-visible {
  background: #fff;
  color: var(--charcoal);
  box-shadow: 0 12px 32px rgba(183, 155, 95, 0.22);
}

.site-header.is-scrolled .header-cta:hover,
.site-header.is-scrolled .header-cta:focus-visible {
  background: var(--green-deep);
  color: #fff;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
  background: #0e120a;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateY(var(--hero-parallax, 0)) scale(var(--hero-scale, 1.06));
  animation: heroLoadScale 2600ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
  will-change: transform;
}

.hero-grain {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.16;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 42px 42px;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.12), transparent 28%),
    linear-gradient(90deg, rgba(8, 12, 7, 0.82), rgba(8, 12, 7, 0.36) 52%, rgba(8, 12, 7, 0.76)),
    linear-gradient(0deg, rgba(8, 12, 7, 0.54), rgba(8, 12, 7, 0.06));
}

.hero-content {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 430px);
  gap: clamp(34px, 6vw, 92px);
  align-items: center;
  padding: 112px clamp(20px, 5vw, 76px) 58px;
}

.eyebrow,
.form-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 860px;
  font-size: clamp(46px, 7vw, 96px);
}

h2 {
  font-size: clamp(32px, 4.6vw, 64px);
}

.hero-subtitle {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(17px, 2vw, 22px);
}

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

.hero-primary,
.hero-secondary {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 20px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.hero-primary {
  border: 1px solid var(--gold);
  background: rgba(255, 250, 240, 0.94);
  color: var(--charcoal);
}

.hero-secondary {
  border: 1px solid rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  backdrop-filter: blur(12px);
}

.hero-primary:hover,
.hero-primary:focus-visible,
.hero-secondary:hover,
.hero-secondary:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.24), 0 0 0 4px rgba(183, 155, 95, 0.12);
}

.hero-badges {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, max-content));
  gap: 10px;
  margin-top: 34px;
}

.hero-badges span {
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.94);
  font-size: 13px;
  backdrop-filter: blur(10px);
}

.lead-panel {
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 8px;
  padding: 32px;
  background:
    linear-gradient(145deg, rgba(255, 250, 240, 0.98), rgba(255, 255, 255, 0.9)),
    rgba(255, 250, 240, 0.96);
  color: var(--charcoal);
  box-shadow: 0 34px 90px rgba(5, 8, 4, 0.32);
  backdrop-filter: blur(22px);
}

.lead-panel::before {
  content: "";
  display: block;
  width: 56px;
  height: 1px;
  margin-bottom: 18px;
  background: var(--gold);
}

.lead-panel h2 {
  font-size: 31px;
}

.lead-form {
  display: grid;
  gap: 15px;
  margin-top: 24px;
}

.field {
  display: grid;
  gap: 7px;
}

label {
  font-size: 13px;
  font-weight: 800;
  color: #34332e;
}

input {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(32, 32, 29, 0.18);
  border-radius: 8px;
  padding: 14px 15px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--charcoal);
  font: inherit;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

input:hover {
  border-color: rgba(32, 32, 29, 0.32);
}

input:focus {
  border-color: var(--gold);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(183, 155, 95, 0.18);
}

.field.invalid input {
  border-color: #9d2f25;
}

.field.valid input {
  border-color: rgba(37, 63, 33, 0.42);
}

.error-message {
  min-height: 16px;
  color: #9d2f25;
  font-size: 12px;
}

.primary-button,
.secondary-button {
  border-radius: 8px;
  cursor: pointer;
  font: 800 13px/1 var(--sans);
  letter-spacing: 0.09em;
  text-align: center;
  text-transform: uppercase;
}

.primary-button {
  width: 100%;
  border: 0;
  padding: 16px 18px;
  background: var(--green);
  color: #fff;
}

.primary-button:hover,
.primary-button:focus-visible {
  background: var(--green-deep);
  box-shadow: 0 14px 34px rgba(37, 63, 33, 0.3), 0 0 0 4px rgba(183, 155, 95, 0.12);
  transform: translateY(-1px);
}

.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 28px;
  border: 1px solid var(--gold);
  padding: 14px 18px;
  background: var(--green);
  color: #fff;
}

.secondary-button:hover,
.secondary-button:focus-visible {
  background: var(--green-deep);
  box-shadow: 0 14px 34px rgba(37, 63, 33, 0.22);
  transform: translateY(-1px);
}

.form-note,
.success-message {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.success-message {
  min-height: 18px;
  color: var(--green);
  font-weight: 800;
}

.project-highlights {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  width: min(1180px, calc(100% - 40px));
  margin: -54px auto 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.9);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.builder-intro {
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.96), rgba(247, 240, 228, 0.98)),
    var(--cream);
  text-align: center;
}

.builder-intro-inner {
  width: min(980px, 100%);
  margin: 0 auto;
}

.builder-intro h2 {
  color: #0b7a2a;
}

.builder-subtitle {
  margin: 14px 0 28px;
  color: #202542;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
}

.builder-intro-inner p:last-child {
  max-width: 920px;
  margin: 0 auto;
  color: #283042;
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.75;
}

.highlight-card {
  position: relative;
  min-height: 124px;
  padding: 22px 20px;
  background: rgba(255, 250, 240, 0.92);
  overflow: hidden;
  transition: transform 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.highlight-card::after {
  content: "";
  position: absolute;
  inset: auto 20px 16px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform: scaleX(0.28);
  transform-origin: left;
  transition: transform 260ms ease;
}

.highlight-card:hover {
  background: #fffdf7;
  box-shadow: inset 0 0 0 1px rgba(183, 155, 95, 0.18);
}

.highlight-card:hover::after {
  transform: scaleX(1);
}

.highlight-card span {
  display: block;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.highlight-card strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 500;
  line-height: 1.12;
}

.section-pad {
  padding: clamp(78px, 10vw, 140px) clamp(20px, 5vw, 76px);
}

.image-story,
.amenities,
.plots-section,
.floor-plans,
.location-section {
  position: relative;
}

.image-story {
  margin-top: -18px;
  padding-top: clamp(96px, 12vw, 160px);
}

.image-story {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  gap: clamp(34px, 6vw, 96px);
  align-items: center;
  background: var(--ivory);
}

.story-media {
  position: relative;
}

.story-media::after {
  content: "";
  position: absolute;
  right: -24px;
  bottom: -24px;
  width: 52%;
  height: 45%;
  border: 1px solid var(--gold-soft);
  z-index: -1;
}

.story-media img,
.plot-plan-card,
.amenity-card,
.strip-item,
.map-placeholder,
.floor-plan-card {
  border-radius: 8px;
}

.story-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.story-copy p,
.plots-copy p,
.location-copy p,
.clubhouse-copy p,
.final-content p {
  color: var(--muted);
}

.story-copy p,
.plots-copy p,
.location-copy p {
  max-width: 540px;
  margin: 22px 0 0;
  font-size: 17px;
}

.mini-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 26px 0;
  list-style: none;
}

.mini-list li {
  position: relative;
  padding-left: 22px;
  color: #34332e;
}

.mini-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.text-cta {
  display: inline-block;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 4px;
  color: var(--green);
  font-weight: 800;
}

.text-cta:hover,
.text-cta:focus-visible {
  color: var(--gold);
}

.cinematic-strip {
  position: relative;
  z-index: 1;
  margin-top: -28px;
  padding: clamp(70px, 9vw, 128px) clamp(16px, 4vw, 56px);
  background: var(--cream);
  color: var(--charcoal);
}

.strip-heading {
  width: min(930px, 100%);
  margin: 0 auto clamp(32px, 5vw, 58px);
  text-align: center;
}

.gallery-master {
  width: min(1180px, 100%);
  margin: 0 auto 18px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.gallery-master img {
  width: 100%;
  aspect-ratio: 16 / 5;
  object-fit: cover;
}

.strip-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  grid-auto-rows: minmax(230px, 28vw);
  gap: 14px;
}

.strip-item {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--soft-shadow);
}

.strip-item.large {
  grid-row: span 2;
}

.strip-item.wide {
  grid-column: span 2;
}

.strip-item img,
.amenity-card img,
.floor-plan-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms ease, filter 650ms ease;
}

.strip-item:hover img,
.amenity-card:hover img,
.plot-plan-card:hover img {
  filter: saturate(1.04);
  transform: scale(1.045);
}

.section-heading {
  max-width: 760px;
  margin-bottom: clamp(30px, 5vw, 58px);
}

.section-heading p:not(.eyebrow) {
  max-width: 620px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.amenities {
  margin-top: -1px;
  background: var(--cream);
}

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

.amenity-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--soft-shadow);
}

.amenity-card img {
  aspect-ratio: 16 / 10;
}

.amenity-card span {
  display: block;
  padding: 16px 18px 18px;
  font-family: var(--serif);
  font-size: 21px;
}

.final-cta {
  position: relative;
  min-height: 700px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}

.final-cta > img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 110%;
  object-fit: cover;
  transform: translateY(var(--parallax, 0));
  transition: transform 120ms linear;
}

.final-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(9, 12, 8, 0.72), rgba(9, 12, 8, 0.1)),
    linear-gradient(0deg, rgba(9, 12, 8, 0.82), rgba(9, 12, 8, 0.16));
}

.final-content {
  max-width: 790px;
  padding: clamp(38px, 6vw, 82px);
}

.final-content p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.clubhouse-showcase {
  position: relative;
  z-index: 1;
  display: block;
  padding: clamp(72px, 9vw, 128px) clamp(20px, 5vw, 76px);
  overflow: hidden;
  background: var(--ivory);
  color: var(--charcoal);
}

.clubhouse-copy {
  max-width: 780px;
  margin: 0 auto clamp(32px, 4vw, 50px);
  padding: 0;
  text-align: center;
}

.clubhouse-copy h2 {
  color: #0b7a2a;
}

.clubhouse-logo-title {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 18px 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(18, 45, 21, 0.98), rgba(31, 66, 37, 0.94));
  border: 1px solid rgba(183, 155, 95, 0.26);
  box-shadow: 0 18px 42px rgba(19, 38, 20, 0.16);
}

.clubhouse-logo-title img {
  width: min(420px, 76vw);
  height: auto;
  display: block;
}

.clubhouse-copy p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.clubhouse-hero {
  width: min(1180px, 100%);
  margin: 0 auto 24px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.clubhouse-hero img {
  width: 100%;
  aspect-ratio: 16 / 5;
  object-fit: cover;
}

.clubhouse-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.clubhouse-grid figure {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--soft-shadow);
}

.clubhouse-grid img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.clubhouse-disclaimer {
  width: min(1180px, 100%);
  margin: 26px auto 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.plots-section {
  margin-top: -1px;
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: center;
  background:
    linear-gradient(90deg, rgba(255, 250, 240, 0.92), rgba(247, 240, 228, 0.96)),
    var(--ivory);
}

.plot-plan-card {
  position: relative;
  overflow: hidden;
  padding: 16px;
  background: #fffaf0;
  border: 1px solid rgba(183, 155, 95, 0.34);
  box-shadow: var(--shadow);
}

.plot-plan-card::before {
  content: "Plotted Development";
  position: absolute;
  top: 28px;
  left: 28px;
  z-index: 2;
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(37, 63, 33, 0.88);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.plot-plan-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 650ms ease;
}

.location-section {
  margin-top: -1px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: stretch;
  padding: clamp(76px, 10vw, 132px) clamp(20px, 5vw, 76px);
  background:
    linear-gradient(90deg, rgba(255, 250, 240, 0.98), rgba(247, 240, 228, 0.94)),
    var(--cream);
  color: var(--charcoal);
}

.location-copy p {
  color: var(--muted);
}

.appreciation-note {
  position: relative;
  padding-left: 18px;
}

.appreciation-note::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 2px;
  height: calc(100% - 0.7em);
  background: var(--gold);
}

.location-list {
  display: grid;
  gap: 24px;
  margin-top: 36px;
}

.location-list article {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

.location-list span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(11, 122, 42, 0.28);
  border-radius: 999px;
  color: #0b7a2a;
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1;
}

.location-list h3,
.invest-card h3 {
  margin: 0;
  color: #071a10;
  font-family: var(--sans);
  font-size: clamp(18px, 1.5vw, 22px);
  font-weight: 900;
  line-height: 1.25;
}

.location-list p {
  margin: 6px 0 0;
  color: #223044;
  font-size: 15px;
}

.location-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.location-points span {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 10px 13px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
}

.location-advantage-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.location-advantage-grid article {
  position: relative;
  min-height: 178px;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.045)),
    rgba(255, 255, 255, 0.06);
  overflow: hidden;
  transition: background 240ms ease, transform 240ms ease;
}

.location-advantage-grid article::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform: scaleX(0.22);
  transform-origin: left;
  transition: transform 260ms ease;
}

.location-advantage-grid article:hover {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.06)),
    rgba(255, 255, 255, 0.08);
}

.location-advantage-grid article:hover::after {
  transform: scaleX(1);
}

.location-advantage-grid span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  margin-bottom: 16px;
  place-items: center;
  border: 1px solid rgba(183, 155, 95, 0.5);
  border-radius: 999px;
  color: var(--sand);
  font-family: var(--serif);
  font-size: 18px;
}

.location-advantage-grid h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 500;
  line-height: 1.08;
}

.location-advantage-grid p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.floor-plans {
  margin-top: -1px;
  background:
    linear-gradient(135deg, rgba(232, 248, 236, 0.82), rgba(255, 250, 240, 0.94)),
    #eff8ef;
}

.floor-plans .section-heading {
  margin-inline: auto;
  text-align: center;
}

.floor-plans .section-heading h2 {
  color: #0b7a2a;
}

.floor-plan-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
}

.floor-plan-card {
  position: relative;
  overflow: hidden;
  padding: clamp(18px, 2vw, 28px);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(11, 122, 42, 0.2);
  box-shadow: 0 22px 60px rgba(37, 63, 33, 0.08);
}

.floor-plan-card img {
  width: 100%;
  height: 340px;
  object-fit: contain;
  background: #fff;
  border: 1px solid rgba(32, 32, 29, 0.08);
  border-radius: 6px;
}

.floor-plan-card > div {
  position: relative;
  z-index: 1;
  padding: 20px 0 0;
  background: transparent;
}

.floor-plan-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.floor-plan-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(24px, 2vw, 32px);
  font-weight: 500;
  line-height: 1.02;
}

.floor-plan-card p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.invest-card {
  align-self: end;
  border: 1px solid rgba(11, 122, 42, 0.18);
  border-radius: 16px;
  padding: clamp(28px, 4vw, 48px);
  background:
    linear-gradient(145deg, rgba(232, 248, 236, 0.96), rgba(255, 250, 240, 0.9)),
    #eff8ef;
  box-shadow: 0 28px 80px rgba(32, 32, 29, 0.12);
}

.invest-card h3 {
  color: #0b7a2a;
  font-size: clamp(26px, 2.5vw, 36px);
}

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

.invest-card ul {
  display: grid;
  gap: 18px;
  padding: 0;
  margin: 28px 0 30px;
  list-style: none;
}

.invest-card li {
  position: relative;
  padding-left: 46px;
  color: #223044;
  font-size: 16px;
}

.invest-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -5px;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  background: #19a24b;
  color: #fff;
  font-weight: 900;
}

.floor-plan-card a {
  display: inline-block;
  margin-top: 20px;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 4px;
  color: var(--green);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.final-cta {
  min-height: 760px;
}

.final-content {
  width: min(980px, calc(100% - 40px));
}

.compact-form {
  grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(180px, auto);
  align-items: end;
  margin-top: 30px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 8px;
  background: var(--glass);
  color: var(--charcoal);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.compact-form .form-note,
.compact-form .success-message {
  grid-column: 1 / -1;
}

button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.floating-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 45;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 132px;
  border-radius: 999px;
  padding: 14px 18px;
  background: #1f7d3b;
  color: #fff;
  font-weight: 900;
  letter-spacing: 0.04em;
  box-shadow: 0 18px 44px rgba(8, 12, 7, 0.24);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  background: #17652f;
  box-shadow: 0 22px 50px rgba(8, 12, 7, 0.3), 0 0 0 4px rgba(183, 155, 95, 0.12);
  transform: translateY(-2px);
}

.mobile-action-bar {
  position: fixed;
  left: 10px;
  right: 10px;
  bottom: 10px;
  z-index: 60;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  width: auto;
  max-width: calc(100vw - 20px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.96);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
}

.mobile-action-bar a {
  display: grid;
  min-height: 54px;
  place-items: center;
  border-right: 1px solid rgba(32, 32, 29, 0.12);
  color: var(--green);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.mobile-action-bar a:last-child {
  border-right: 0;
  background: var(--green);
  color: #fff;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 760ms ease, transform 760ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-reveal,
.hero-form-reveal {
  opacity: 0;
  transform: translateY(24px);
  animation: premiumFadeUp 1100ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-form-reveal {
  animation-delay: 220ms;
}

.image-reveal {
  clip-path: inset(12% 0 12% 0);
  opacity: 0;
  transform: translateY(26px);
  transition: clip-path 1100ms cubic-bezier(0.16, 1, 0.3, 1), opacity 900ms ease, transform 900ms ease;
}

.image-reveal img {
  transform: scale(1.08);
}

.image-reveal.is-visible {
  clip-path: inset(0 0 0 0);
  opacity: 1;
  transform: translateY(0);
}

.image-reveal.is-visible img {
  transform: scale(1);
}

.image-reveal.is-visible:hover img,
.strip-item.image-reveal.is-visible:hover img,
.amenity-card.image-reveal.is-visible:hover img,
.plot-plan-card.image-reveal.is-visible:hover img,
.floor-plan-card.image-reveal.is-visible:hover img {
  filter: saturate(1.04);
  transform: scale(1.045);
}

@keyframes premiumFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroLoadScale {
  to {
    transform: translateY(var(--hero-parallax, 0)) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

@media (max-width: 1120px) {
  .project-highlights {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

  .hero-content {
    grid-template-columns: 1fr;
    align-content: center;
    padding-top: 102px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .lead-panel {
    max-width: 560px;
  }

  .image-story,
  .plots-section,
  .location-section {
    grid-template-columns: 1fr;
  }

  .story-media::after {
    right: 18px;
    bottom: -18px;
  }

  .strip-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 260px;
  }

  .strip-item.large,
  .strip-item.wide {
    grid-column: span 2;
    grid-row: auto;
  }

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

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

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

  .compact-form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: 76px;
  }

  .site-header {
    padding: 14px 18px;
  }

  .header-cta {
    display: none;
  }

  .brand-mark {
    width: 132px;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    min-height: auto;
    padding: 96px 18px 38px;
  }

  .hero-bg {
    object-position: 48% center;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 34px;
  }

  .hero-subtitle {
    max-width: 100%;
    font-size: 16px;
  }

  .hero-badges {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 24px;
  }

  .hero-badges span {
    width: fit-content;
    max-width: 100%;
    font-size: 12px;
  }

  .lead-panel {
    width: 100%;
    padding: 22px;
  }

  .project-highlights {
    grid-template-columns: 1fr;
    width: calc(100% - 28px);
    margin-top: -18px;
  }

  .highlight-card {
    min-height: auto;
    padding: 18px;
  }

  .section-pad,
  .cinematic-strip,
  .location-section {
    padding: 60px 18px;
  }

  .image-story {
    gap: 34px;
  }

  .story-media img,
  .plot-plan-card img {
    aspect-ratio: 3 / 4;
  }

  .strip-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 250px;
    gap: 10px;
  }

  .gallery-master img,
  .clubhouse-hero img {
    aspect-ratio: 16 / 9;
  }

  .strip-item.large,
  .strip-item.wide {
    grid-column: auto;
  }

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

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

  .floor-plan-grid,
  .location-advantage-grid {
    grid-template-columns: 1fr;
  }

  .floor-plan-card img {
    height: 260px;
  }

  .clubhouse-showcase,
  .final-cta {
    min-height: auto;
  }

  .clubhouse-copy,
  .final-content {
    width: 100%;
    padding: 36px 18px;
  }

  .clubhouse-copy {
    padding: 0;
  }

  .location-list article {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 14px;
  }

  .map-placeholder {
    min-height: 260px;
  }

  .floating-whatsapp {
    display: none;
  }

  .mobile-action-bar {
    display: grid;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 31px;
  }

  .lead-panel h2 {
    font-size: 27px;
  }

  .primary-button,
  .secondary-button {
    font-size: 12px;
  }

  .mobile-action-bar a {
    font-size: 10px;
    letter-spacing: 0;
  }
}

/* Corrected section treatments: keep Avila's premium dark green location mood. */
.location-section {
  background:
    radial-gradient(circle at 82% 18%, rgba(183, 155, 95, 0.12), transparent 28%),
    linear-gradient(135deg, var(--green), var(--green-deep));
  color: #fff;
}

.location-copy p,
.location-list p,
.invest-card p {
  color: rgba(255, 255, 255, 0.76);
}

.location-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.location-list article {
  position: relative;
  display: block;
  min-height: 210px;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.045)),
    rgba(255, 255, 255, 0.06);
  overflow: hidden;
  transition: background 240ms ease;
}

.location-list article::after,
.invest-card::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform: scaleX(0.22);
  transform-origin: left;
  transition: transform 260ms ease;
}

.location-list article:hover {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.06)),
    rgba(255, 255, 255, 0.08);
}

.location-list article:hover::after,
.invest-card:hover::after {
  transform: scaleX(1);
}

.location-list span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  margin-bottom: 16px;
  place-items: center;
  border: 1px solid rgba(183, 155, 95, 0.5);
  border-radius: 999px;
  color: var(--sand);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1;
}

.location-list h3,
.invest-card h3 {
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(23px, 2vw, 30px);
  font-weight: 500;
  line-height: 1.08;
}

.location-list p {
  margin: 12px 0 0;
  font-size: 14px;
}

.invest-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.055)),
    rgba(255, 255, 255, 0.07);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.18);
}

.invest-card li {
  color: rgba(255, 255, 255, 0.86);
}

.invest-card li::before {
  content: "";
  top: -2px;
  width: 26px;
  height: 26px;
  background: var(--gold);
  box-shadow: inset 0 0 0 8px rgba(20, 37, 17, 0.9);
}

.floor-plans {
  background:
    linear-gradient(135deg, rgba(232, 248, 236, 0.62), rgba(255, 250, 240, 0.96)),
    var(--ivory);
}

.floor-plan-card {
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.96), rgba(255, 255, 255, 0.9)),
    #fff;
  border: 1px solid rgba(183, 155, 95, 0.24);
  box-shadow: var(--soft-shadow);
}

.floor-plan-card img {
  object-fit: contain;
}

.floor-plan-card.image-reveal.is-visible:hover img {
  filter: none;
  transform: scale(1);
}

[data-lightbox] {
  cursor: zoom-in;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(18px, 4vw, 46px);
  background: rgba(7, 10, 6, 0.88);
  backdrop-filter: blur(12px);
}

.lightbox.is-open {
  display: flex;
}

.lightbox__image {
  max-width: min(1120px, 92vw);
  max-height: 84vh;
  border-radius: 8px;
  object-fit: contain;
  background: #fffaf0;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.44);
}

.lightbox__button {
  position: absolute;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.12);
  color: #fff;
  cursor: pointer;
  font: 700 24px/1 var(--sans);
  transition: background 180ms ease, transform 180ms ease;
}

.lightbox__button:hover,
.lightbox__button:focus-visible {
  background: rgba(255, 250, 240, 0.24);
  transform: translateY(-1px);
}

.lightbox__close {
  top: 22px;
  right: 22px;
}

.lightbox__prev {
  left: 22px;
}

.lightbox__next {
  right: 22px;
}

.lightbox__caption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 18px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  text-align: center;
  font-size: 13px;
}

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

@media (max-width: 760px) {
  .location-list {
    grid-template-columns: 1fr;
  }

  .location-list article {
    min-height: auto;
  }

  .lightbox {
    padding: 14px;
  }

  .lightbox__button {
    width: 38px;
    height: 38px;
    font-size: 20px;
  }

  .lightbox__prev {
    left: 12px;
  }

  .lightbox__next {
    right: 12px;
  }
}
