/* =============================================
   ABOUT PAGE — Minimal Hero
   Just enough dark space for the h1 to breathe
============================================= */
.page-hero {
  background: var(--near-black);
  padding: calc(72px + 3rem) 0 3rem;
}

.page-hero-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--content-pad);
}

/* h1 inherits global size */
.page-title { color: #fff; }

/* =============================================
   ABOUT PAGE — Prose sections
   Full-width, single column, h2 as heading
============================================= */
.about-content {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--content-pad);
}

.prose-section {
  padding: 4rem 0;
  border-bottom: 1px solid var(--border);
  max-width: 720px;
}

.prose-section:first-of-type {
  border-top: 1px solid var(--border);
}

/* h2 — section heading, display font, strong presence */
.prose-heading {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin-bottom: 1.5rem;
}

.prose-body p {
  font-size: var(--text-base);
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 1.25rem;
}
.prose-body p:last-child { margin-bottom: 0; }

/* Credential tags */
.cred-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.cred-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: var(--text-sm);
  font-weight: 600;
  padding: 0.35rem 0.875rem;
  border-radius: 100px;
  letter-spacing: 0.02em;
}

/* Icon inside chip — Phosphor icon font */
.cred-tag i {
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  color: currentColor;
}

.cred-tag--sage    { background: var(--sage-light);       color: var(--sage-dark); }
.cred-tag--indigo  { background: var(--indigo-light);     color: var(--indigo); }
.cred-tag--terra   { background: var(--terracotta-light); color: #9A5040; } /* darkened from #A05A4A: 4.95:1 on #F5EAE7 */
.cred-tag--neutral { background: rgba(28,28,28,0.07);     color: var(--text-primary); }



/* =============================================
   ABOUT PAGE — CTA Strip
============================================= */
.cta-strip {
  background: var(--near-black);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.cta-blob {
  position: absolute;
  bottom: -60px; right: -60px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: var(--sage);
  opacity: 0.07;
  pointer-events: none;
}

.cta-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--content-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  position: relative;
  z-index: 1;
}

/* h2 — CTA heading */
.cta-headline { color: #fff; }
.cta-headline em { font-style: italic; color: var(--sage); }

.cta-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* =============================================
   ABOUT — Responsive
============================================= */
@media (max-width: 768px) {
  .page-hero { padding: calc(72px + 2rem) 0 2.5rem; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .prose-section { padding: 3rem 0; }
}

@media (max-width: 360px) {
  .page-hero { padding: calc(72px + 1.5rem) 0 2rem; }
  .cred-tag { font-size: 0.6875rem; padding: 0.3rem 0.625rem; }
}
