/* ArthaBase about page. Depends on tokens + atlas kit in style.css. */

/* ════ HERO ═══════════════════════════════════════════════════ */
.about-hero {
  padding-top: clamp(7rem, 14vw, 11rem);
  padding-bottom: clamp(2rem, 5vw, 4rem);
}
.about-hero-title {
  margin-top: 1.25rem;
  font-size: clamp(2.5rem, 6.5vw, 5rem);
}
.about-hero-lead {
  margin-top: 1.375rem;
  max-width: 42rem;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--color-text-secondary);
}

/* ════ STORY ══════════════════════════════════════════════════ */
.about-story-layout {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
}
@media (max-width: 860px) {
  .about-story-layout { grid-template-columns: 1fr; }
}
.about-story-heading {
  margin-top: 1rem;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  position: sticky;
  top: 7rem;
}
.about-story-right p {
  font-size: 1.0312rem;
  line-height: 1.7;
  color: var(--color-text-secondary);
  max-width: 58ch;
}
.about-story-right p + p { margin-top: 1.25rem; }
.about-story-right strong { color: var(--color-text); }

.about-pull-quote {
  margin: 2rem 0;
  padding: 1.5rem 0 1.5rem 1.75rem;
  border-left: 2px solid var(--color-terracotta);
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.4vw, 1.625rem);
  font-weight: 600;
  line-height: 1.4;
  color: var(--color-text);
}

/* ════ WHAT WE ARE ════════════════════════════════════════════ */
.about-what { background-color: var(--color-bg); }
.about-what-inner { max-width: 52rem; }
.about-what-copy { margin-top: 1.5rem; }
.about-what-copy p {
  font-size: 1.0312rem;
  line-height: 1.7;
  color: var(--color-text-secondary);
  max-width: 58ch;
}
.about-what-copy p + p { margin-top: 1.25rem; }
.about-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin-top: 2rem;
}

/* ════ APPROACH ═══════════════════════════════════════════════ */
.about-believe-inner { max-width: 52rem; }
.about-believe-copy { margin-top: 1.5rem; }
.about-believe-copy p {
  font-size: 1.0312rem;
  line-height: 1.7;
  color: var(--color-text-secondary);
  max-width: 58ch;
}
.about-believe-copy p + p { margin-top: 1.25rem; }

/* ════ CONTACT ═══════════════════════════════════════════════ */
.about-form-section { background-color: var(--color-bg); }
.about-form-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
}
@media (max-width: 860px) {
  .about-form-grid { grid-template-columns: 1fr; }
}
.about-form-trust { margin-top: 1.5rem; display: inline-block; }

.about-form-card,
.about-contact-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  box-shadow: var(--shadow-md);
}
.about-contact-label {
  margin-bottom: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.about-contact-email {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--color-accent);
  text-decoration: none;
}
.about-contact-email:hover { text-decoration: underline; }
.about-contact-note {
  margin-top: 1.25rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--color-text-muted);
}
.about-contact-note a {
  color: var(--color-text);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
