.about-section {
  padding: 10rem 2rem;
  max-width: 1280px;
  margin: 0 auto;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.about-h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.02em;
  color: var(--frost);
}

.about-h2 em {
  font-style: italic;
  color: var(--gold);
}

.divider {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 2rem 0;
}

.about-body {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--frost-faint);
}

.about-box {
  background: var(--surface);
  border: 1px solid var(--edge);
  border-top: 2px solid var(--gold);
  padding: 2rem;
  margin-top: 2.5rem;
}

.about-box-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--frost);
  margin-bottom: .75rem;
}

.about-box-body {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--frost-faint);
}