.page--about {
  display: grid;
  grid-template-rows: auto 1fr auto;
  height: 100dvh;
  overflow: hidden;
  position: relative;
}

.page--about .page__body {
  display: grid;
  align-items: center;
  min-height: 0;
  padding: clamp(0.7rem, 1.8vh, 1.35rem) 0 clamp(0.25rem, 0.9vh, 0.65rem);
}

.page--about .site-footer {
  margin-top: 0;
}

.page--about .site-footer__inner {
  padding: 0.9rem 0 1.15rem;
}

.about-intro {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: clamp(0.8rem, 1.8vh, 1.15rem);
  min-height: 0;
}

.about-intro__figure {
  width: min(20rem, 100%);
  margin: 0;
}

.about-intro__image {
  display: block;
  width: 100%;
  height: auto;
}

.about-intro__panel {
  width: min(100%, 64rem);
  padding: clamp(1.15rem, 2.6vw, 1.85rem);
  border: 1px solid rgba(220, 239, 225, 0.92);
  border-radius: calc(var(--radius-panel) + 4px);
  background:
    radial-gradient(circle at 14% 16%, rgba(223, 245, 228, 0.42), rgba(223, 245, 228, 0) 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 251, 247, 0.94));
  box-shadow: var(--shadow-soft);
}

.about-intro__sections {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(16rem, 0.9fr);
  gap: clamp(1rem, 2.2vw, 1.85rem);
  align-items: start;
}

.about-intro__section {
  display: grid;
  gap: 0.9rem;
  min-width: 0;
}

.about-intro__section-title {
  margin: 0;
  color: var(--brand-green-deep);
  font-size: 1.02rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-align: left;
}

.about-intro__copy {
  display: grid;
  gap: 0.82rem;
}

.about-intro__paragraph {
  margin: 0;
  color: var(--brand-muted);
  font-size: 0.95rem;
  line-height: 1.72;
}

.about-intro__contact-list {
  display: grid;
  gap: 0.78rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-intro__contact-card {
  display: grid;
  gap: 0.45rem;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(220, 239, 225, 0.92);
  border-radius: var(--radius-card);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 251, 247, 0.94)),
    rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 32px rgba(84, 196, 94, 0.08);
}

.about-intro__contact-label {
  margin: 0;
  color: var(--brand-green-deep);
  font-size: 0.82rem;
  font-weight: 800;
}

.about-intro__contact-link {
  color: var(--brand-ink);
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.6;
  word-break: break-word;
}

@media (max-width: 959px) {
  .page--about {
    height: auto;
    min-height: 100dvh;
    overflow: visible;
  }

  .page--about .page__body {
    padding: 1.4rem 0 0.6rem;
  }

  .about-intro {
    gap: 1.1rem;
  }

  .about-intro__figure {
    width: min(17rem, 100%);
  }

  .about-intro__sections {
    grid-template-columns: 1fr;
  }
}
