/* ── About page ── */
.about-main {
  padding: 9rem 0 6rem;
}
.about-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 5rem;
  align-items: start;
}
.about-photo-wrap {
  position: sticky;
  top: 90px;
}
.about-photo {
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 8px 40px rgba(26,39,68,0.12);
  display: block;
}

.about-h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 0.6rem;
}
.about-location {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--sans);
  font-size: 0.875rem;
  color: var(--mute);
  margin-bottom: 2rem;
}

.about-body {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 2rem;
}
.about-body p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--soft);
}

.about-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.about-divider {
  height: 1px;
  background: var(--rule);
  margin-bottom: 2.5rem;
}

.about-stats {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.stat__number {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1;
}
.stat__label {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--mute);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .about-photo-wrap { position: static; max-width: 320px; }
  .about-stats { gap: 2rem; }
}
@media (max-width: 600px) {
  .about-main { padding: 7rem 0 4rem; }
  .stat__number { font-size: 1.6rem; }
}
