.about-hero {
  padding: max(150px, calc(env(safe-area-inset-top) + 134px)) 0 92px;
  background: linear-gradient(155deg, #06101e 0%, #09182b 64%, #0c2037 100%);
}

.about-hero-grid {
  display: grid;
  align-items: center;
  gap: 48px;
}

.about-hero-copy h1 {
  max-width: 820px;
  color: #f8fbff;
  font-family: var(--serif);
  font-size: clamp(2.85rem, 9vw, 5.6rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.about-hero-copy > p:last-child {
  max-width: 640px;
  margin: 28px 0 0;
  color: var(--white-muted);
  font-size: clamp(1rem, 3.5vw, 1.16rem);
  line-height: 1.7;
}

.about-portrait {
  max-width: 420px;
  margin: 0;
}

.about-portrait img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  border-radius: 20px;
  object-fit: cover;
  object-position: center 44%;
}

.about-portrait figcaption {
  margin-top: 12px;
  color: rgba(233, 240, 249, 0.48);
  font-size: 0.76rem;
}

.about-story {
  padding: 96px 0 104px;
  background: var(--cream-50);
}

.about-story-grid {
  display: grid;
  gap: 42px;
}

.about-story h2,
.about-facts h2 {
  max-width: 720px;
  font-family: var(--serif);
  font-size: clamp(2.5rem, 7vw, 4.6rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1;
}

.about-prose {
  max-width: 720px;
}

.about-prose p {
  margin: 0;
  color: #43566e;
  font-size: clamp(1rem, 2vw, 1.12rem);
  line-height: 1.8;
}

.about-prose p + p {
  margin-top: 24px;
}

.about-facts {
  padding: 20px 0 96px;
  background: var(--cream-50);
}

.about-facts-card {
  display: grid;
  gap: 46px;
  padding: 42px 26px;
  border-radius: 28px;
  color: white;
  background:
    radial-gradient(circle at 90% 10%, rgba(143, 193, 250, 0.24), transparent 34%),
    linear-gradient(145deg, #075fd8, #043b99);
  box-shadow: 0 28px 72px rgba(7, 78, 181, 0.24);
}

.about-facts dl {
  margin: 0;
}

.about-facts dl > div {
  display: grid;
  gap: 8px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.about-facts dt {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-facts dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}

.about-facts a {
  color: white;
  font-weight: 600;
  text-underline-offset: 4px;
}

@media (min-width: 820px) {
  .about-hero-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.58fr);
    gap: 86px;
  }

  .about-portrait {
    justify-self: end;
  }

  .about-story-grid {
    grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
    align-items: start;
    gap: 90px;
  }

  .about-facts-card {
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
    align-items: start;
    gap: 80px;
    padding: 58px;
  }
}
