.about-page {
  background: var(--bone);
}

.about-intro {
  padding: 5rem 0;
  background: var(--parchment);
}

.about-intro-grid,
.about-section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.95fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.about-intro h2,
.about-section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.about-intro p,
.about-section p {
  max-width: 58ch;
  color: rgba(43, 36, 32, 0.86);
  line-height: 1.8;
}

.about-intro a,
.about-section a {
  color: var(--rust);
  text-decoration: none;
  border-bottom: 1px solid rgba(156, 59, 43, 0.35);
}

.about-intro a:hover,
.about-section a:hover {
  border-color: currentColor;
}

.about-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 14px 28px rgba(43, 36, 32, 0.13);
}

.about-section {
  padding: 5rem 0;
}

.about-section--deep {
  color: var(--parchment);
  background: var(--charcoal-soft);
}

.about-section--deep p {
  color: var(--bone) !important;
}

.about-section--deep a {
  color: var(--ochre-light);
}

.about-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.about-fact {
  padding: 1.4rem;
  border-left: 3px solid var(--ochre);
  background: rgba(255, 255, 255, 0.35);
}

.about-section--deep .about-fact {
  background: rgba(239, 231, 216, 0.08);
}

.about-fact strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--rust);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-section--deep .about-fact strong { color: var(--ochre-light); }
.about-fact span { font-family: var(--font-display); font-size: 1.2rem; }

.about-actions {
  margin-top: 1.5rem;
}

@media (max-width: 800px) {
  .about-intro,
  .about-section { padding: 3.5rem 0; }

  .about-intro-grid,
  .about-section-grid { grid-template-columns: 1fr; }

  .about-section-grid .about-image { order: -1; }
  .about-facts { grid-template-columns: 1fr; }
}
