:root {
  --ink: #17313a;
  --muted: #587178;
  --blue: #198cc0;
  --blue-dark: #127ba8;
  --lime: #bde848;
  --aqua: #bff0e9;
  --line: #d9ece7;
  --wash: #fbfcfa;
  --soft: #f4fbf9;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

a:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 3px;
}

.container {
  width: min(100% - 32px, 1180px);
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  border-bottom: 1px solid rgb(255 255 255 / 55%);
  background: rgb(255 255 255 / 92%);
  backdrop-filter: blur(12px);
}

.topbar {
  display: none;
  background: var(--ink);
  color: white;
}

.topbar-inner {
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 12px;
  font-weight: 700;
}

.topbar p {
  margin: 0;
}

.topbar-links {
  display: flex;
  gap: 24px;
}

.topbar a {
  color: var(--aqua);
}

.nav {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 6px;
  object-fit: contain;
}

.brand strong {
  display: block;
  color: #19275f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  font-style: italic;
  line-height: 1;
}

.brand em {
  display: block;
  color: #467688;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
  text-transform: uppercase;
}

.nav nav {
  display: none;
  align-items: center;
  gap: 24px;
  color: #315560;
  font-size: 14px;
  font-weight: 800;
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  padding: 0 22px;
  font-weight: 800;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.button-blue {
  background: var(--blue);
  color: white;
  box-shadow: 0 2px 8px rgb(20 90 110 / 18%);
}

.button-blue:hover {
  background: var(--blue-dark);
}

.button-lime {
  background: var(--lime);
  color: var(--ink);
  box-shadow: 0 8px 24px rgb(56 80 40 / 20%);
}

.button-lime:hover {
  background: #a9d63b;
}

.button-glass,
.button-outline-light {
  border: 1px solid rgb(255 255 255 / 70%);
  color: white;
}

.button-glass {
  background: rgb(255 255 255 / 12%);
  backdrop-filter: blur(6px);
}

.button-glass:hover,
.button-outline-light:hover {
  background: rgb(255 255 255 / 12%);
}

.button-outline-blue {
  border: 1px solid var(--blue);
  color: var(--blue);
}

.button-outline-blue:hover {
  background: #eff8f4;
}

.button-outline-dark {
  border: 1px solid var(--line);
  color: #315560;
}

.button-outline-dark:hover {
  background: var(--soft);
}

.hero {
  position: relative;
  min-height: 78svh;
  padding-top: 80px;
  display: flex;
  align-items: end;
  overflow: hidden;
}

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

.hero > img {
  object-fit: cover;
  object-position: 58% center;
}

.hero-overlay {
  background: linear-gradient(180deg, rgb(12 33 39 / 68%), rgb(12 33 39 / 52%));
}

.hero-content {
  position: relative;
  padding-bottom: 32px;
  color: white;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--aqua);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow.blue {
  color: #1789a4;
}

.eyebrow.lime {
  color: var(--lime);
}

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

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(40px, 9vw, 74px);
  line-height: 1.04;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(34px, 5vw, 50px);
  line-height: 1.08;
}

h3 {
  margin-bottom: 14px;
  font-size: 22px;
}

.hero-copy {
  max-width: 670px;
  color: rgb(255 255 255 / 90%);
  font-size: 17px;
  line-height: 1.75;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 28px;
}

.chips span {
  border: 1px solid rgb(255 255 255 / 35%);
  border-radius: 6px;
  background: rgb(255 255 255 / 12%);
  padding: 10px 14px;
  color: rgb(255 255 255 / 92%);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

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

.brand-strip {
  background: var(--ink);
  color: white;
}

.brand-strip-inner {
  display: grid;
  gap: 18px;
  padding-block: 24px;
}

.brand-strip p,
.final-cta p {
  color: rgb(255 255 255 / 78%);
  line-height: 1.7;
}

.brand-strip-inner div,
.side-actions,
.final-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.section {
  padding-block: 72px;
}

.section.compact {
  padding-block: 32px;
}

.white {
  background: white;
}

.home-grid,
.trust-grid,
.feature-grid,
.photo-section,
.location-grid,
.final-grid {
  display: grid;
  gap: 32px;
}

.stats,
.trust-cards {
  display: grid;
  gap: 12px;
}

.stats article,
.trust-cards article,
.leasing-card,
.lifestyle-grid article,
.feature-list p,
.community-grid article {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--soft);
}

.stats article,
.trust-cards article {
  padding: 18px;
}

.stats strong,
.trust-cards strong {
  display: block;
  color: var(--blue);
  font-size: 32px;
}

.stats span,
.trust-cards span,
.leasing-card p,
.section p {
  color: var(--muted);
  line-height: 1.7;
}

.leasing-card {
  background: var(--wash);
  padding: 22px;
}

.leasing-card .label {
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.leasing-card h2 {
  margin-bottom: 8px;
  font-size: 28px;
}

.section-title {
  max-width: 760px;
}

.lifestyle-grid,
.photo-grid,
.community-grid,
.nearby {
  display: grid;
  gap: 18px;
}

.lifestyle-grid {
  margin-top: 32px;
}

.lifestyle-grid article {
  background: white;
  padding: 24px;
}

.feature-grid {
  margin-top: 48px;
}

.feature-grid > img {
  width: 100%;
  aspect-ratio: 5 / 4;
  border-radius: 6px;
  object-fit: cover;
}

.feature-list {
  display: grid;
  gap: 12px;
}

.feature-list p {
  margin: 0;
  background: white;
  padding: 22px;
  color: #24434b;
  font-weight: 800;
}

.feature-list p::before {
  content: "";
  display: block;
  width: 42px;
  height: 4px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: var(--lime);
}

.photo-section h2 {
  max-width: 520px;
}

.side-actions {
  margin-top: 24px;
}

figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--wash);
}

figure img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

figcaption {
  padding: 16px;
  color: #315560;
  font-size: 14px;
  font-weight: 900;
}

.community-grid article {
  padding: 26px;
}

.community-grid a {
  color: var(--blue);
  font-weight: 900;
}

.location {
  background: #eff8f4;
}

.nearby {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: start;
}

.nearby span {
  border: 1px solid #cfe5df;
  border-radius: 6px;
  background: white;
  padding: 14px 16px;
  color: #315560;
  font-weight: 800;
}

.final-cta {
  background: var(--ink);
  padding-block: 64px;
  color: white;
}

.final-actions {
  align-self: start;
}

footer {
  background: white;
  padding-block: 28px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: var(--muted);
  font-size: 14px;
}

.footer-inner p {
  margin: 0;
}

.footer-inner div {
  display: flex;
  gap: 18px;
  color: #315560;
  font-weight: 800;
}

@media (min-width: 640px) {
  .hero-actions,
  .brand-strip-inner div,
  .side-actions {
    flex-direction: row;
  }

  .stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .trust-cards,
  .lifestyle-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .photo-grid,
  .community-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .topbar {
    display: block;
  }

  .nav nav {
    display: flex;
  }

  .mobile-apply {
    display: none;
  }

  .hero {
    min-height: 84svh;
    padding-top: 116px;
  }

  .hero > img {
    object-position: center;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgb(12 33 39 / 78%), rgb(12 33 39 / 44%) 46%, rgb(12 33 39 / 10%));
  }

  .hero-content {
    padding-bottom: 64px;
  }

  .brand-strip-inner,
  .home-grid,
  .trust-grid,
  .feature-grid,
  .photo-section,
  .location-grid {
    grid-template-columns: 1fr 1fr;
  }

  .home-grid {
    grid-template-columns: 1.15fr .85fr;
  }

  .feature-grid {
    grid-template-columns: .9fr 1.1fr;
  }

  .photo-section {
    grid-template-columns: .85fr 1.15fr;
    align-items: end;
  }

  .final-grid {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .final-actions {
    min-width: 245px;
  }

  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

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

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

  h1 {
    font-size: 39px;
  }

  h2 {
    font-size: 34px;
  }
}
