@charset "UTF-8";

:root {
  --bg: #112244;
  --text: #f5f7fa;
  --muted: rgba(245, 247, 250, 0.86);
  --accent: #1f6d3a;
  --accent-hover: #27844a;
  --page-padding: clamp(1.5rem, 8vw, 12.5rem);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100svh;
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(1rem, 0.94rem + 0.25vw, 1.25rem);
  line-height: 1.45;
}

.bgimg {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(9, 23, 47, 0.9), rgba(9, 23, 47, 0.7)),
    var(--hero-image) center / cover no-repeat;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100svh;
  max-width: 78rem;
  padding: clamp(4.5rem, 12vh, 9.5rem) 2rem 2rem var(--page-padding);
}

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

h1 {
  margin-bottom: 0;
  font-size: clamp(60px, 8.9vw, 100px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
}

h1.hero {
  margin: 0 0 0.1em -0.05em;
  font-size: clamp(120px, 17.8vw, 200px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 0.9;
}

.leasing {
  margin: clamp(2rem, 5vh, 3.75rem) 0 0;
}

.leasing a {
  display: inline-block;
  padding: 10px 12px 12px 20px;
  color: #fff;
  background: var(--accent);
  border: 0;
  border-radius: 6px;
  font-size: 1em;
  font-weight: 400;
  letter-spacing: normal;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 160ms ease;
}

.leasing a::after {
  content: " →";
  padding-left: 8px;
  font-size: 1.2em;
}

.leasing a:hover,
.leasing a:focus-visible {
  background: var(--accent-hover);
}

.leasing a:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}

.highlights {
  max-width: 44rem;
  margin-top: clamp(2.75rem, 6vh, 4.75rem);
}

h3 {
  margin: 0 0 1.1rem;
  font-size: 2em;
  font-weight: 300;
  letter-spacing: 0.05em;
  text-transform: none;
}

ul {
  margin: 0;
  padding-left: 1.05rem;
}

li {
  margin-bottom: 0.35rem;
  color: var(--muted);
}

.footer {
  margin-top: auto;
  padding-top: 3rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.72em;
}

.footer p {
  margin-bottom: 0;
}

@media (max-width: 70rem) {
  .wrapper {
    padding: 80px 20px 20px 60px;
  }
}

@media (max-width: 40rem) {
  .wrapper {
    padding-top: 4.5rem;
  }

  .bgimg {
    background:
      linear-gradient(180deg, rgba(9, 23, 47, 0.86), rgba(9, 23, 47, 0.8)),
      var(--hero-image) center / cover no-repeat;
  }
}