:root {
  color-scheme: light;
  --orange: #f06b22;
  --green: #004b3f;
  --blue: #174ea6;
  --ink: #141414;
  --muted: #64666d;
  --paper: #f5f1ea;
  --white: #ffffff;
  --line: rgba(20, 20, 20, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    linear-gradient(90deg, rgba(0, 75, 63, 0.1), transparent 32%),
    var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

a {
  color: inherit;
  font-weight: 800;
}

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

.hero {
  min-height: calc(100vh - 120px);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 34px;
  align-items: center;
}

.hero__copy {
  padding: 30px 0;
}

.eyebrow {
  width: fit-content;
  margin: 0 0 18px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

h1 {
  max-width: 10ch;
  margin: 0;
  font-size: clamp(3.4rem, 7rem, 7rem);
  line-height: 0.9;
  font-weight: 900;
}

.answer {
  margin: 28px 0 0;
  color: var(--orange);
  font-size: clamp(6rem, 9rem, 9rem);
  line-height: 0.8;
  font-weight: 950;
}

.subhead {
  max-width: 540px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 700;
}

.image-grid {
  display: grid;
  grid-template-columns: minmax(230px, 1fr) minmax(180px, 0.72fr);
  gap: 18px;
  align-items: stretch;
}

figure {
  margin: 0;
}

.miami-card,
.duke-card {
  overflow: hidden;
  border: 1px solid rgba(20, 20, 20, 0.15);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 24px 60px rgba(20, 20, 20, 0.16);
}

.miami-card {
  min-height: 620px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.2), transparent 42%),
    var(--orange);
  color: var(--white);
}

.miami-card__photo {
  width: min(74%, 330px);
  aspect-ratio: 1 / 1;
  margin: 28px auto 0;
  overflow: hidden;
  background: #b9b9b9;
}

.miami-card__photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top center;
}

.miami-card figcaption {
  padding: 42px 32px 34px;
}

.number {
  display: grid;
  width: 62px;
  height: 62px;
  margin: 0 auto 26px;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  color: var(--orange);
  font-size: 1.2rem;
  font-weight: 900;
}

.miami-card strong {
  display: block;
  text-align: center;
  font-size: 2.6rem;
  line-height: 1;
}

dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 28px;
  margin: 34px 0 0;
}

dt {
  margin: 0 0 8px;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

dd {
  margin: 0;
  font-size: 1.18rem;
  font-weight: 900;
}

.duke-card {
  align-self: center;
  background:
    linear-gradient(180deg, #f4f6ff, #ffffff 58%),
    var(--white);
}

.duke-card img {
  width: 100%;
  aspect-ratio: 2 / 3;
  display: block;
  object-fit: cover;
  object-position: top center;
}

.duke-card figcaption {
  padding: 15px 16px 18px;
  color: var(--blue);
  font-weight: 900;
  text-align: center;
}

.proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 22px 0;
}

.proof div {
  min-height: 112px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
}

.proof span {
  display: block;
  color: var(--green);
  font-size: 2.2rem;
  line-height: 1;
  font-weight: 950;
}

.proof strong {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.85rem;
  text-transform: uppercase;
}

footer {
  padding: 18px 0 6px;
  color: var(--muted);
  font-size: 0.92rem;
  text-align: center;
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  h1 {
    max-width: 12ch;
    font-size: 4.4rem;
  }

  .answer {
    font-size: 6.4rem;
  }
}

@media (max-width: 640px) {
  .page {
    width: min(100% - 28px, 1180px);
    padding-top: 16px;
  }

  h1 {
    font-size: 3.1rem;
  }

  .answer {
    font-size: 4.7rem;
  }

  .image-grid,
  .proof {
    grid-template-columns: 1fr;
  }

  .miami-card {
    min-height: auto;
  }

  .miami-card figcaption {
    padding: 28px 22px;
  }

  .miami-card strong {
    font-size: 2.1rem;
  }

  dl {
    grid-template-columns: 1fr;
  }
}
