/* ============================================================
   AGENCY BACKBONE — about.css
   ============================================================ */

.about {
  background-color: var(--bg-primary);
  padding-top: var(--space-0);
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-20);
  align-items: center;
}

/* ── image column ──────────────────────────────────────────── */

.about__images {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
}

.about__golden-gate {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* ── copy column ───────────────────────────────────────────── */

.about__copy .section-label {
  margin-bottom: var(--space-4);
}

.about__copy .section-title {
  margin-bottom: var(--space-6);
}

.about__body {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.about__body p {
  font-size: var(--size-base);
  color: var(--text-secondary);
  line-height: 1.7;
}

.about__body strong {
  color: var(--text-primary);
  font-weight: 500;
}

.about__cta {
  margin-top: var(--space-8);
}