:root {
  --summit-blue: #4f6877;
  --deep-blue: #17252d;
  --friendly-yellow: #f7d96b;
  --pale-yellow: #fff7d8;
  --yellow-border: #e4cf5f;
  --text: #17252d;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

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

.hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  background: var(--summit-blue);
  color: white;
}

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

.hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background: linear-gradient(90deg, rgba(29, 45, 55, 0.9), rgba(79, 104, 119, 0.62) 52%, rgba(79, 104, 119, 0.2));
}

.site-header,
.hero-content,
.stats,
.section,
.photo-strip,
.amenities,
footer {
  position: relative;
  z-index: 1;
  width: min(100%, 1280px);
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 62vw;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.35;
}

.brand-accent {
  width: 80px;
  height: 32px;
  object-fit: contain;
}

nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  font-weight: 600;
}

nav a {
  text-decoration: none;
}

nav a:hover {
  color: var(--friendly-yellow);
}

.outline-button,
.primary-button,
.secondary-button,
.solid-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 13px 22px;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

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

.outline-button:hover,
.primary-button {
  background: var(--friendly-yellow);
  color: var(--deep-blue);
}

.secondary-button {
  border: 1px solid rgba(255, 255, 255, 0.65);
  color: white;
}

.secondary-button:hover {
  background: white;
  color: var(--summit-blue);
}

.solid-button {
  background: var(--summit-blue);
  color: white;
}

.solid-button:hover {
  background: #3e5664;
}

.hero-content {
  min-height: calc(92vh - 88px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 56px;
  padding-bottom: 80px;
}

.atp-logo {
  width: min(320px, 100%);
  height: auto;
  margin-bottom: 24px;
}

.eyebrow,
.section-label {
  margin: 0;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.eyebrow {
  color: var(--friendly-yellow);
}

.hero h1 {
  max-width: 760px;
  margin: 20px 0 0;
  font-size: clamp(44px, 7vw, 92px);
  line-height: 1.04;
}

.hero-copy {
  max-width: 680px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 20px;
  line-height: 1.6;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: none;
  width: 100%;
  border-bottom: 1px solid #d5c158;
  background: var(--friendly-yellow);
  padding-top: 30px;
  padding-bottom: 30px;
}

.stat {
  width: min(100%, 400px);
  justify-self: center;
}

.stat p {
  margin: 0 0 8px;
  color: var(--summit-blue);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.stat strong {
  display: block;
  font-size: 26px;
}

.section {
  padding-top: 80px;
  padding-bottom: 80px;
}

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

.section-label {
  color: var(--summit-blue);
}

.section h2,
.amenities h2 {
  margin: 16px 0 0;
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1.08;
}

.residence-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.card,
.leasing-card {
  border: 1px solid var(--yellow-border);
  border-radius: 8px;
  background: white;
  box-shadow: 0 18px 50px rgba(27, 37, 45, 0.1);
}

.card {
  padding: 28px;
}

.card-top {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.card h3 {
  margin: 0;
  font-size: 32px;
}

.card-top p {
  margin: 8px 0 0;
  color: var(--summit-blue);
}

.card-top strong {
  color: var(--summit-blue);
  font-size: 28px;
}

.card ul {
  display: grid;
  gap: 14px;
  margin: 30px 0;
  padding-left: 20px;
  color: #35444c;
  line-height: 1.65;
}

.photo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-bottom: 80px;
}

figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--yellow-border);
  border-radius: 8px;
  background: white;
  box-shadow: 0 18px 50px rgba(27, 37, 45, 0.1);
}

figure img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

figcaption {
  padding: 16px 20px;
  color: var(--summit-blue);
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.amenities {
  max-width: none;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 48px;
  background: var(--summit-blue);
  color: white;
  padding-top: 80px;
  padding-bottom: 80px;
}

.amenity-intro,
.amenity-grid {
  width: min(100%, 620px);
}

.amenity-intro {
  justify-self: end;
}

.amenity-grid {
  justify-self: start;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.olive-large {
  width: 112px;
  height: auto;
  margin-bottom: 20px;
  filter: brightness(1.25);
}

.olive-small {
  width: 96px;
  height: auto;
  margin-bottom: 20px;
}

.amenity-intro p:last-child {
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.6;
}

.amenity-grid article {
  min-height: 176px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
}

.amenity-grid h3 {
  margin: 0;
  color: #fff4b2;
  font-size: 18px;
}

.amenity-grid p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  line-height: 1.6;
}

.leasing {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 48px;
}

.leasing p {
  color: #35444c;
  font-size: 18px;
  line-height: 1.6;
}

.leasing-card {
  padding: 32px;
}

footer {
  max-width: none;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 48px;
  background: var(--deep-blue);
  color: white;
  padding-top: 48px;
  padding-bottom: 48px;
}

footer > div {
  width: min(100%, 620px);
}

footer > div:first-child {
  justify-self: end;
}

.footer-title {
  color: var(--friendly-yellow);
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.18em;
}

footer p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.7;
}

.footer-links a {
  display: inline-block;
  margin-right: 22px;
  color: var(--friendly-yellow);
  font-weight: 800;
}

@media (max-width: 850px) {
  nav {
    display: none;
  }

  .site-header {
    align-items: flex-start;
  }

  .outline-button {
    padding: 10px 14px;
    font-size: 12px;
  }

  .hero-copy {
    font-size: 18px;
  }

  .stats,
  .residence-grid,
  .photo-strip,
  .amenities,
  .amenity-grid,
  .leasing,
  footer {
    grid-template-columns: 1fr;
  }

  .stat,
  .amenity-intro,
  .amenity-grid,
  footer > div:first-child,
  footer > div {
    width: 100%;
    justify-self: stretch;
  }

  .card-top {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .site-header,
  .hero-content,
  .section,
  .photo-strip,
  .amenities,
  footer {
    padding-left: 18px;
    padding-right: 18px;
  }

  .brand {
    font-size: 12px;
  }

  .button-row {
    flex-direction: column;
  }

  .primary-button,
  .secondary-button,
  .solid-button {
    width: 100%;
  }
}
