/* ==========================================================================
   Adapt Practice — About page stylesheet

   Page-specific components for about.html only.
   This file must be loaded after adapt-practice.css.
   ========================================================================== */

/* ─────────────────────────────────────────────────────────────────────────
   Hero illustration
   ───────────────────────────────────────────────────────────────────────── */
.about-hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.about-hero__visual .hero-diagram {
  display: block;
  width: 100%;
  height: auto;
  max-width: 640px;
}

/* ─────────────────────────────────────────────────────────────────────────
   Who we are — intro layout
   ───────────────────────────────────────────────────────────────────────── */
.about-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 3rem;
  align-items: start;
}

.about-intro__lead {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.6;
  max-width: 560px;
}

.about-intro__supporting {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-left: 1.75rem;
  border-left: 3px solid var(--teal);
}

.about-intro__supporting p {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ─────────────────────────────────────────────────────────────────────────
   Experience — figure + credentials panel
   ───────────────────────────────────────────────────────────────────────── */
.about-experience__intro {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 720px;
  margin-bottom: 2.5rem;
}

.experience-highlight__figure {
  display: block;
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1;
}

.about-experience__figure-block {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.about-experience__figure-caption {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 360px;
}

/* ─────────────────────────────────────────────────────────────────────────
   Delivery model — Design / Prepare / Deliver
   ───────────────────────────────────────────────────────────────────────── */
.about-delivery__intro p {
  font-size: 1.02rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 760px;
  margin-bottom: 1rem;
}
.about-delivery__intro p:last-child { margin-bottom: 0; }

/* Wrapper spacing only — the process itself is the shared canonical
   .connected-process component in adapt-practice.css (also used by
   Services' Understand / Equip / Embed). */
.about-delivery__process {
  margin-top: 2.5rem;
}

/* ─────────────────────────────────────────────────────────────────────────
   Founder section
   ───────────────────────────────────────────────────────────────────────── */
.about-founder__monogram {
  width: 100%;
  max-width: 240px;
  aspect-ratio: 1 / 1;
  display: block;
  margin: 0 auto;
  border-radius: var(--radius-md);
}

/* ─────────────────────────────────────────────────────────────────────────
   Who we work with — intro line above the tags
   ───────────────────────────────────────────────────────────────────────── */
.about-audiences__intro {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 720px;
  margin-bottom: 0.5rem;
}

/* ─────────────────────────────────────────────────────────────────────────
   Responsive rules
   ───────────────────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .about-hero__visual { margin-top: 1rem; }
  .about-hero__visual .hero-diagram { max-width: 560px; margin-inline: auto; }

  .about-intro { grid-template-columns: 1fr; gap: 2rem; }
  .about-intro__supporting { border-left: none; padding-left: 0; border-top: 3px solid var(--teal); padding-top: 1.5rem; }
}

@media (max-width: 640px) {
  .about-hero__visual { margin-top: 0.5rem; }
  .about-hero__visual .hero-diagram { width: 100%; max-width: 420px; }

  .about-founder__monogram { max-width: 200px; }
}

@media (max-width: 480px) {
  .about-hero__visual { margin-top: 0.25rem; }
  .about-hero__visual .hero-diagram { max-width: 350px; }
}
