/* ─── About page ────────────────────────────────────────────────────── */
/* Standalone scrolling page on paper stock — the homepage locks scroll and
   snaps sections, so this page opts out of both. */

body.about-page {
  overflow: auto;
  background: var(--paper);
  color: var(--ink);
}

.a-main {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 7vw 120px;
}

/* ─── Hero ──────────────────────────────────────────────────────────── */
.a-hero {
  padding: 22vh 0 96px;
}

.a-eyebrow {
  font-size: clamp(13px, 1vw, 15px);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #0000FF;
  margin-bottom: 20px;
}

.a-title {
  display: flex;
  flex-direction: column;
  font-size: clamp(48px, 7vw, 104px);
  font-weight: 900;
  line-height: 0.94;
  letter-spacing: -0.035em;
  margin-bottom: 40px;
}

.a-title .line {
  display: block;
}

.a-title .line--accent {
  -webkit-text-stroke: 2px var(--ink);
  color: transparent;
}

.a-hero-row {
  display: flex;
  align-items: flex-start;
  gap: 56px;
}

.a-lede {
  font-size: clamp(18px, 1.7vw, 23px);
  line-height: 1.55;
  color: #444;
  max-width: 620px;
}

/* Source photo is 541×415, so cap the display size well under that to keep
   it sharp on 2x displays. */
.a-portrait {
  flex: 0 0 240px;
  margin-left: auto;
}

.a-portrait img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: 50% 38%;
  border-radius: 4px;
}

/* ─── Sections ──────────────────────────────────────────────────────── */
.a-section {
  padding: 72px 0;
  border-top: 1px solid rgba(10, 10, 10, 0.12);
}

.a-section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 36px;
}

.a-prose p {
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.75;
  color: #444;
  max-width: 700px;
  margin-bottom: 26px;
}

.a-prose p:last-child {
  margin-bottom: 0;
}

.a-prose strong {
  font-weight: 700;
  color: var(--ink);
}

/* ─── Pull quote ────────────────────────────────────────────────────── */
.a-quote {
  font-size: clamp(26px, 3.4vw, 46px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--ink);
  max-width: 900px;
  padding-left: 28px;
  border-left: 4px solid #0000FF;
}

.a-quote-attr {
  margin: 22px 0 40px 32px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--mid);
  max-width: 560px;
}

/* ─── Timeline ──────────────────────────────────────────────────────── */
.a-timeline {
  list-style: none;
}

.a-tl-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(10, 10, 10, 0.08);
}

.a-tl-item:last-child {
  border-bottom: none;
}

.a-tl-year {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--mid);
  padding-top: 4px;
}

.a-tl-item--current .a-tl-year {
  color: #0000FF;
}

.a-tl-body h3 {
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.a-tl-body p {
  font-size: 16px;
  line-height: 1.65;
  color: #555;
  max-width: 600px;
}

.a-inline-link {
  display: inline-block;
  margin-top: 14px;
  font-size: 14px;
  font-weight: 600;
  color: #0000FF;
  border-bottom: 1px solid rgba(0, 0, 255, 0.3);
  padding-bottom: 2px;
  transition: border-color 0.2s var(--easing);
}

.a-inline-link:hover {
  border-bottom-color: #0000FF;
}

/* ─── Facts ─────────────────────────────────────────────────────────── */
.a-facts {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.a-fact {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(10, 10, 10, 0.08);
}

.a-fact:last-child {
  border-bottom: none;
}

.a-fact-key {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mid);
  padding-top: 5px;
}

.a-fact-value {
  font-size: clamp(17px, 1.5vw, 21px);
  font-weight: 600;
  letter-spacing: -0.01em;
}

/* ─── Obsession ─────────────────────────────────────────────────────── */
.a-obsession {
  font-size: clamp(30px, 4.6vw, 62px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  max-width: 900px;
}

.a-obsession-sub {
  margin-top: 20px;
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.7;
  color: var(--mid);
  max-width: 520px;
}

/* ─── Footer ────────────────────────────────────────────────────────── */
.a-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 72px;
  border-top: 1px solid rgba(10, 10, 10, 0.12);
}

/* ─── Responsive ────────────────────────────────────────────────────── */
@media (max-width: 700px) {
  .a-hero {
    padding: 18vh 0 64px;
  }

  .a-title .line--accent {
    -webkit-text-stroke-width: 1.5px;
  }

  .a-hero-row {
    flex-direction: column-reverse;
    gap: 32px;
  }

  .a-portrait {
    flex: 0 0 auto;
    width: 180px;
    margin-left: 0;
  }

  .a-tl-item,
  .a-fact {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .a-tl-year,
  .a-fact-key {
    padding-top: 0;
  }
}
