:root {
  --evergreen: #123d2a;
  --deep: #082618;
  --cream: #fff8ea;
  --paper: #f7f0e3;
  --yellow: #ffd400;
  --lime: #8ef06b;
  --muted: #70836f;
  --ink: #18241d;
  --line: rgba(18, 61, 42, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 5vw, 64px);
  color: var(--cream);
  background: rgba(8, 38, 24, 0.94);
  border-bottom: 3px solid var(--yellow);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 50px;
  height: 38px;
  place-items: center;
  color: var(--deep);
  background: var(--yellow);
  font-size: 14px;
  font-weight: 900;
}

nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 14px;
  font-weight: 700;
}

.nav-cta {
  color: var(--deep);
  background: var(--yellow);
  padding: 10px 14px;
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100vh - 73px);
  grid-template-columns: minmax(0, 920px);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  padding: 56px clamp(18px, 5vw, 64px);
  color: var(--cream);
  background:
    linear-gradient(rgba(8, 38, 24, 0.34), rgba(8, 38, 24, 0.8)),
    radial-gradient(circle at 88% 12%, rgba(142, 240, 107, 0.25), transparent 34%),
    linear-gradient(135deg, #0a2e1d, #145233 62%, #071f14);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 190px;
  pointer-events: none;
  background:
    linear-gradient(150deg, transparent 0 22%, rgba(255, 212, 0, 0.22) 22.4% 23.7%, transparent 24%),
    linear-gradient(12deg, #0b2c1c 0 42%, transparent 42.4%),
    linear-gradient(166deg, transparent 0 61%, #0f3724 61.3%);
  opacity: 0.75;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 820px;
  margin-bottom: 24px;
  font-size: clamp(46px, 7vw, 92px);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  color: var(--evergreen);
  font-size: clamp(30px, 4.5vw, 54px);
  line-height: 1.02;
}

h3 {
  margin-bottom: 10px;
  color: var(--evergreen);
  font-size: 22px;
}

.lead {
  max-width: 680px;
  margin-bottom: 32px;
  color: rgba(255, 248, 234, 0.86);
  font-size: 20px;
  line-height: 1.5;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  font-weight: 900;
}

.button.primary {
  color: var(--deep);
  background: var(--yellow);
}

.button.secondary {
  color: var(--cream);
  border: 2px solid rgba(255, 248, 234, 0.5);
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--yellow);
}

.stats div {
  padding: 24px clamp(16px, 3vw, 40px);
  border-right: 2px solid rgba(8, 38, 24, 0.22);
}

.stats strong,
.stats span {
  display: block;
}

.stats strong {
  color: var(--deep);
  font-size: clamp(30px, 5vw, 56px);
  line-height: 1;
}

.stats span {
  margin-top: 6px;
  color: #38502d;
  font-weight: 800;
}

.split-section,
.pricing-section,
.terms,
.resident-section,
.contact-section {
  padding: 72px clamp(18px, 5vw, 64px);
}

.split-section {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  background: var(--cream);
}

.copy-block {
  font-size: 19px;
  line-height: 1.6;
}

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

.features article {
  padding: 42px clamp(18px, 4vw, 46px);
  background: #fffaf0;
}

.features p,
.terms p,
.resident-card p {
  color: #425547;
  line-height: 1.55;
}

.pricing-section {
  background: #f3eadb;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 28px;
}

.pricing-list {
  display: grid;
  gap: 14px;
  max-width: 980px;
}

.price-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  padding: 24px 28px;
  background: var(--cream);
  border-left: 9px solid var(--evergreen);
  box-shadow: 0 1px 0 rgba(18, 61, 42, 0.12);
}

.price-row.featured {
  color: var(--cream);
  background: var(--evergreen);
  border-color: var(--yellow);
}

.price-row.featured h3,
.price-row.featured strong {
  color: var(--yellow);
}

.price-row.featured p,
.price-row.featured .spots {
  color: rgba(255, 248, 234, 0.84);
}

.spots {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.price-row h3 {
  margin: 8px 0 8px;
  color: var(--evergreen);
  font-size: 28px;
}

.price-row p {
  max-width: 660px;
  margin-bottom: 0;
  color: #425547;
  line-height: 1.5;
}

.price-row strong {
  color: var(--evergreen);
  font-size: clamp(42px, 7vw, 70px);
  font-weight: 900;
  line-height: 1;
}

.terms {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  color: var(--cream);
  background: var(--deep);
}

.terms h2 {
  color: var(--yellow);
}

.terms p,
.terms li {
  color: rgba(255, 248, 234, 0.84);
  font-size: 18px;
  line-height: 1.6;
}

.terms ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
}

.resident-section {
  background:
    linear-gradient(135deg, rgba(255, 248, 234, 0.92), rgba(255, 248, 234, 0.74)),
    linear-gradient(20deg, transparent 0 52%, rgba(18, 61, 42, 0.12) 52.5%),
    var(--cream);
}

.resident-card {
  max-width: 780px;
}

.contact-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--yellow);
}

.contact-section h2 {
  margin: 0;
  color: var(--deep);
}

.contact-section .eyebrow {
  color: #38502d;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 22px clamp(18px, 5vw, 64px);
  color: rgba(255, 248, 234, 0.72);
  background: var(--deep);
  font-size: 14px;
}

footer p {
  margin: 0;
}

@media (max-width: 980px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    width: 100%;
    flex-wrap: wrap;
  }

  .hero,
  .split-section,
  .terms {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .hero {
    padding-top: 36px;
  }

  h1 {
    font-size: 42px;
  }

  nav {
    gap: 12px;
  }

  .stats,
  .features,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .price-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .contact-section,
  footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
