/* ==========================================================================
   about.css — about page
   Narrow reading column. Instrument Sans display, Inter body, Fira Code
   overlines. White cards with hairline borders + 16px radius + 4px orange
   left rule for callouts.
   ========================================================================== */

.about-page {
  max-width: 760px;
  margin: 0 auto;
  padding: var(--space-16) var(--space-4) var(--space-12);
  font-family: var(--font-primary);
  font-size: var(--text-base);
  line-height: 1.6;
  color: rgba(38, 38, 38, 0.82);
  letter-spacing: -0.02em;
}
.about-page > .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-5);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: var(--font-normal);
  text-transform: uppercase;
  letter-spacing: 0.17em;
  color: var(--oath-gray-700);
  line-height: 1.2;
}
.about-page > .eyebrow::before {
  content: '';
  width: 0.5rem;
  height: 0.5rem;
  border-radius: var(--radius-full);
  background: var(--ink-navy);
  box-shadow: 0 0 0 2px var(--ink-navy-tint);
}
.about-page h1 {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 1.9rem + 3.6vw, 4.5rem);
  font-weight: var(--font-medium);
  letter-spacing: -0.04em;
  line-height: 1.0;
  margin-bottom: var(--space-7);
  color: var(--oath-charcoal);
  max-width: 18ch;
  text-wrap: balance;
}
.about-page > p:first-of-type {
  font-family: var(--font-primary);
  font-size: var(--text-md);
  line-height: 1.5;
  color: rgba(38, 38, 38, 0.82);
  letter-spacing: -0.02em;
  margin-bottom: var(--space-10);
  padding-bottom: var(--space-8);
  border-bottom: 1px solid var(--oath-gray-300);
  font-weight: var(--font-normal);
}
.about-page > p:first-of-type::first-letter {
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
  color: inherit;
  padding: 0;
  float: none;
}
.about-page h2 {
  font-family: var(--font-display);
  font-size: clamp(1.875rem, 1.4rem + 1.8vw, 2.5rem);
  font-weight: var(--font-medium);
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-top: var(--space-12);
  margin-bottom: var(--space-4);
  color: var(--oath-charcoal);
  padding-top: var(--space-4);
  position: relative;
  text-wrap: balance;
}
.about-page h2::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 36px;
  height: 2px;
  background: var(--ink-navy);
}
.about-page h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: var(--font-medium);
  letter-spacing: -0.04em;
  line-height: 1.2;
  margin-top: var(--space-7);
  margin-bottom: var(--space-3);
  color: var(--oath-charcoal);
}
.about-page p, .about-page li {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  line-height: 1.6;
  letter-spacing: -0.02em;
}
.about-page ul, .about-page ol {
  padding-left: var(--space-5);
  margin-bottom: var(--space-5);
}
.about-page li {
  margin-bottom: var(--space-3);
  padding-left: var(--space-2);
}
.about-page strong {
  color: var(--oath-charcoal);
  font-weight: var(--font-medium);
}
.about-page a {
  color: var(--oath-charcoal);
  border-bottom-color: var(--oath-gray-300);
}
.about-page a:hover {
  color: var(--ink-navy);
  border-bottom-color: var(--ink-navy);
}

/* ============================================================
   Callout cards — white, hairline border, 16px radius, 4px orange rule
   ============================================================ */
.about-callout {
  background-color: var(--oath-white);
  border: 1px solid var(--oath-gray-300);
  border-radius: var(--radius-lg);
  padding: var(--space-7);
  margin: var(--space-6) 0;
  box-shadow: none;
  position: relative;
  overflow: hidden;
}
.about-callout::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: 4px;
  background: var(--ink-navy);
}
.about-callout .label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.17em;
  color: var(--oath-gray-700);
  font-weight: var(--font-normal);
  margin-bottom: var(--space-3);
  display: block;
  line-height: 1.2;
}
.about-callout p,
.about-callout .about-address {
  margin-bottom: var(--space-2);
  font-family: var(--font-primary);
  font-style: normal;
  letter-spacing: -0.02em;
  display: block;
}
.about-callout p:last-child { margin-bottom: 0; }
.about-callout a {
  color: var(--oath-charcoal);
  font-weight: var(--font-medium);
  border-bottom-color: var(--oath-gray-300);
}
.about-callout a:hover {
  color: var(--ink-navy);
  border-bottom-color: var(--ink-navy);
}

.relationship-card {
  background-color: var(--oath-white);
  border: 1px solid var(--oath-gray-300);
  border-radius: var(--radius-lg);
  padding: var(--space-6) var(--space-7);
  margin: var(--space-6) 0;
  box-shadow: none;
  position: relative;
  overflow: hidden;
}
.relationship-card::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: 4px;
  background: var(--ink-navy);
}
