:root {
  --green-950: #082817;
  --green-900: #10371f;
  --green-800: #184a28;
  --green-700: #2f651c;
  --green-500: #77a632;
  --gold: #f0c855;
  --cream: #f7f7ef;
  --paper: #ffffff;
  --ink: #111c15;
  --muted: #5f6a62;
  --line: #d9dfd3;
  --shadow: 0 20px 50px rgba(8, 40, 23, 0.18);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

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

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

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 4px 20px rgba(8, 40, 23, 0.08);
  backdrop-filter: blur(12px);
}

.nav {
  min-height: 86px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 230px;
  color: var(--green-900);
}

.brand__mark {
  color: var(--green-700);
  font-size: 34px;
  line-height: 1;
  font-weight: 800;
}

.brand strong {
  display: block;
  font-size: 28px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0;
}

.brand small {
  display: block;
  color: #6f7a70;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.nav__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex: 1;
  font-size: 14px;
  font-weight: 700;
}

.nav__links a {
  padding: 10px 0;
  border-bottom: 2px solid transparent;
}

.nav__links a:hover,
.nav__links a.is-active {
  color: var(--green-700);
  border-color: var(--green-500);
}

.call-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green-700), #4e841e);
  color: #fff;
  font-weight: 800;
  white-space: nowrap;
}

.nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 6px;
  padding: 10px;
}

.nav__toggle span {
  display: block;
  height: 2px;
  background: var(--green-900);
  margin: 5px 0;
}

.hero {
  position: relative;
  min-height: 700px;
  overflow: hidden;
  color: #fff;
  background: var(--green-950);
}

.hero__media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 40, 23, 0.98) 0%, rgba(8, 40, 23, 0.9) 34%, rgba(8, 40, 23, 0.38) 70%, rgba(8, 40, 23, 0.18) 100%),
    url("../images/site-road-3-web.jpg") center/cover;
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 64px;
  align-items: center;
  padding: 80px 0 86px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.08;
  letter-spacing: 0;
}

.hero h1 span {
  color: #8abd37;
}

.location-badge {
  display: inline-flex;
  margin: 30px 0;
  padding: 12px 22px;
  border: 2px solid #80a937;
  border-radius: 999px;
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
}

.price-panel {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, 1fr);
  max-width: 660px;
  border: 1px solid rgba(240, 200, 85, 0.62);
  border-radius: 12px;
  background: rgba(8, 40, 23, 0.65);
  overflow: hidden;
}

.price-panel > div {
  min-height: 120px;
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(240, 200, 85, 0.42);
  font-weight: 800;
  text-align: center;
}

.price-panel > div:last-child {
  border-right: 0;
}

.price-panel strong {
  display: block;
  color: var(--gold);
  font-size: 44px;
  line-height: 1;
}

.price-panel small {
  font-weight: 800;
  text-transform: uppercase;
}

.feature-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 42px;
  max-width: 740px;
}

.feature-row span {
  min-width: 132px;
  padding: 10px 12px;
  border-left: 1px solid rgba(240, 200, 85, 0.46);
  color: #fbfff7;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 12px;
  line-height: 1.35;
  opacity: 0.9;
}

.lead-card {
  position: relative;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  box-shadow: var(--shadow);
  padding: 28px;
}

.lead-card h2 {
  margin: 0;
  color: var(--green-700);
  text-align: center;
  text-transform: uppercase;
}

.lead-card p {
  margin: 4px 0 18px;
  text-align: center;
  font-weight: 800;
}

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

.lead-form label span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid #d6d9d2;
  border-radius: 6px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

.lead-form textarea {
  resize: vertical;
}

.lead-form button,
.btn-link,
.cta-band a {
  border: 0;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--green-700), #52821f);
  color: #fff;
  min-height: 52px;
  padding: 0 24px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.lead-form button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.form-note {
  display: block;
  color: var(--muted);
  text-align: center;
  font-size: 12px;
}

.form-note code {
  color: var(--green-700);
}

.section {
  padding: 72px 0;
}

.section--soft {
  background: #fff;
}

.section--split {
  background: linear-gradient(180deg, #fffffb, #f5f7ee);
}

.split-grid,
.contact-grid,
.location-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: 58px;
  align-items: center;
}

.section h2 {
  margin: 0 0 16px;
  color: var(--green-900);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1;
  text-transform: uppercase;
}

.check-list,
.amenity-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 12px;
}

.check-list li,
.amenity-list li {
  position: relative;
  padding-left: 34px;
  font-weight: 800;
}

.check-list li::before,
.amenity-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green-700);
  color: #fff;
  font-size: 13px;
}

.offer-card {
  min-height: 360px;
  padding: 36px;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(47, 101, 28, 0.94), rgba(118, 148, 47, 0.92)),
    url("../images/site-road-2-web.jpg") center/cover;
  color: #fff7dc;
  text-align: center;
  display: grid;
  align-content: center;
  box-shadow: var(--shadow);
}

.offer-card span {
  justify-self: start;
  background: var(--gold);
  color: var(--green-900);
  padding: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.offer-card h3,
.offer-card p {
  margin: 8px 0;
  text-transform: uppercase;
}

.offer-card strong {
  font-size: clamp(64px, 9vw, 110px);
  line-height: 1;
}

.offer-card small,
.offer-card b {
  display: block;
  font-size: 22px;
  text-transform: uppercase;
}

.offer-card b {
  color: var(--gold);
  margin-top: 12px;
}

.plot-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 28px;
  align-items: stretch;
}

.plot-map {
  position: relative;
  min-height: 440px;
  border: 1px solid #d8c998;
  border-radius: 12px;
  overflow: hidden;
  background:
    radial-gradient(circle at 12px 12px, #8dc63f 0 6px, transparent 7px) 0 0 / 48px 48px,
    #f8f0de;
}

.plot-map--image {
  display: grid;
  place-items: center;
  padding: 12px;
  background: #f4f4f0;
}

.plot-map--image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8px;
}

.road {
  position: absolute;
  z-index: 2;
  background: #d7d7d7;
  color: #535353;
  border: 2px solid #aaa;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  text-align: center;
}

.road--main {
  left: -3%;
  right: -3%;
  bottom: 42px;
  height: 60px;
  transform: rotate(3deg);
  padding-top: 20px;
}

.road--side {
  width: 70px;
  top: 30px;
  bottom: 88px;
  left: 48%;
  transform: rotate(-18deg);
  writing-mode: vertical-rl;
  padding: 18px 0;
}

.plots {
  position: absolute;
  inset: 56px 80px 120px 70px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  transform: rotate(-8deg);
}

.plots span {
  border: 2px solid #d36d9d;
  background: rgba(255, 227, 112, 0.72);
  min-height: 42px;
}

.amenity-list {
  margin: 0;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
}

.section-kicker--center {
  text-align: center;
  color: var(--green-900);
}

.amenity-cards {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 14px;
}

.amenity-cards article {
  min-height: 112px;
  padding: 18px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--green-900);
  font-weight: 900;
}

.location-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.location-points span {
  padding: 22px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line);
  font-weight: 800;
}

.gallery-strip,
.gallery-page {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery-strip img,
.gallery-page img {
  height: 210px;
  object-fit: cover;
  border-radius: 8px;
}

.gallery-page img {
  height: 285px;
}

.center-action {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.btn-link {
  display: inline-flex;
  align-items: center;
}

.cta-band {
  background:
    linear-gradient(90deg, rgba(8, 40, 23, 0.98), rgba(47, 101, 28, 0.9)),
    url("../images/site-road-1-web.jpg") center/cover;
  color: #fff;
}

.cta-band__inner {
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-band small,
.cta-band strong {
  display: block;
  text-transform: uppercase;
}

.cta-band small {
  font-size: 20px;
  font-weight: 800;
}

.cta-band strong {
  color: #ffe9a3;
  font-size: clamp(30px, 4vw, 48px);
}

.cta-band a {
  min-width: 260px;
  background: #fff;
  color: var(--green-900);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.page-hero {
  min-height: 380px;
  display: grid;
  align-items: center;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(8, 40, 23, 0.95), rgba(8, 40, 23, 0.42)),
    url("../images/site-road-2-web.jpg") center/cover;
}

.page-hero--gallery {
  background:
    linear-gradient(90deg, rgba(8, 40, 23, 0.92), rgba(8, 40, 23, 0.36)),
    url("../images/site-road-1-web.jpg") center/cover;
}

.page-hero p {
  max-width: 620px;
  font-size: 18px;
}

.contact-info {
  align-self: stretch;
}

.contact-info a {
  display: block;
  width: fit-content;
  margin-top: 12px;
  color: var(--green-700);
  font-weight: 900;
}

.map-card {
  min-height: 240px;
  margin-top: 28px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.85), rgba(237,241,232,0.88)),
    radial-gradient(circle at 35% 35%, #9ebe6d, transparent 30%),
    radial-gradient(circle at 72% 70%, #f0c855, transparent 25%);
  display: grid;
  place-content: center;
  text-align: center;
  color: var(--green-900);
}

.map-card span {
  display: block;
  font-weight: 900;
  font-size: 28px;
}

.lead-card--contact h2,
.lead-card--contact p {
  text-align: left;
}

.floating-lead {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  display: grid;
  justify-items: end;
  gap: 10px;
  pointer-events: none;
}

.floating-lead .lead-card {
  width: min(340px, calc(100vw - 36px));
  padding: 22px;
  transform: translateY(18px);
  opacity: 0;
  visibility: hidden;
  transition: 0.22s ease;
  pointer-events: auto;
}

.floating-lead.is-open .lead-card {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.floating-lead__tab {
  min-height: 48px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  background: var(--gold);
  color: var(--green-900);
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: var(--shadow);
  cursor: pointer;
  pointer-events: auto;
}

.floating-lead__close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 50%;
  background: #edf1e8;
  color: var(--green-900);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.site-footer {
  background: var(--green-950);
  color: #fff;
}

.footer-grid {
  min-height: 92px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: center;
  text-align: center;
  text-transform: uppercase;
  font-weight: 900;
  background: #f8f9f5;
  color: var(--green-900);
}

.footer-bottom {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: #eaf0e6;
  font-size: 14px;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 60;
  transform: translateX(-50%) translateY(20px);
  max-width: calc(100vw - 40px);
  padding: 14px 18px;
  border-radius: 8px;
  background: var(--green-950);
  color: #fff;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transition: 0.22s ease;
}

.toast.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

@media (max-width: 1050px) {
  .nav {
    min-height: 76px;
  }

  .nav__toggle {
    display: block;
    margin-left: auto;
  }

  .nav__links {
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border-radius: 12px;
    background: #fff;
    box-shadow: var(--shadow);
  }

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

  .call-pill {
    display: none;
  }

  .hero__grid,
  .split-grid,
  .contact-grid,
  .location-grid,
  .plot-grid {
    grid-template-columns: 1fr;
  }

  .lead-card--hero {
    max-width: 520px;
  }

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

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

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .footer-bottom,
  .cta-band__inner {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 14px 0;
  }

  .brand {
    min-width: 0;
  }

  .brand strong {
    font-size: 22px;
  }

  .hero {
    min-height: auto;
  }

  .hero__grid {
    padding: 42px 0 54px;
    gap: 26px;
  }

  .hero h1 {
    font-size: clamp(34px, 10vw, 48px);
  }

  .location-badge {
    font-size: 15px;
    border-radius: 12px;
  }

  .price-panel {
    grid-template-columns: 1fr 1fr;
  }

  .price-panel > div {
    border-bottom: 1px solid rgba(240, 200, 85, 0.42);
  }

  .feature-row span {
    width: calc(33.333% - 8px);
    min-width: 0;
    padding: 8px 8px 8px 10px;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
  }

  .section {
    padding: 50px 0;
  }

  .plots {
    inset: 52px 38px 118px 36px;
    grid-template-columns: repeat(4, 1fr);
  }

  .road--side {
    left: 58%;
  }

  .location-points,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .amenity-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .amenity-cards article {
    min-height: 92px;
    padding: 14px 10px;
    font-size: 13px;
  }

  .gallery-strip,
  .gallery-page {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .gallery-strip img,
  .gallery-page img {
    height: 132px;
    border-radius: 6px;
  }

  .gallery-page img {
    height: 148px;
  }

  .cta-band a {
    width: 100%;
  }

  .floating-lead {
    left: 14px;
    right: 14px;
    justify-items: stretch;
  }

  .floating-lead .lead-card {
    width: 100%;
  }

  .floating-lead__tab {
    justify-self: end;
  }
}
