/* =============================================================================
   pages.css — styles for the ABOUT and NOW pages only.
   Loaded after site.css, on /about/ and /now/ only. Reuses shared foundation
   classes wherever possible (.section, .section--alt, .eyebrow, .display-*,
   .body-l, .tile, .chip, .btn, .link-more, .statement/.statement__text/
   .statement__word, .contact__row/.contact__email/.contact__copy-btn/
   .contact__links) and only adds what's genuinely new: the About hero
   layout + headshot placeholder, the story chapter sequence with its
   scroll-filled progress rail, the "looking for" highlight tile, and the
   Now page's status blocks.
============================================================================= */

/* ---- ABOUT: hero + headshot placeholder ---- */
.about-hero {
  padding-top: clamp(132px, 17vw, 188px);
  padding-bottom: clamp(56px, 7vw, 88px);
}
.about-hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 6vw, 64px);
  align-items: center;
}
@media (min-width: 900px) {
  .about-hero__grid { grid-template-columns: 1.3fr 0.9fr; gap: clamp(48px, 6vw, 80px); }
}
.about-hero__intro { margin-top: 20px; }

.about-headshot { max-width: 320px; margin: 0 auto; }
@media (min-width: 900px) { .about-headshot { margin: 0; max-width: none; } }
.about-headshot__frame {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-card);
  border: 1px solid var(--line);
  background: linear-gradient(160deg, color-mix(in srgb, var(--blue) 22%, var(--bg-alt)), color-mix(in srgb, var(--blue) 6%, var(--bg-alt)));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.about-headshot__frame img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-card); }
.about-headshot__mono {
  font-size: clamp(56px, 9vw, 88px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--blue);
}
.about-headshot__caption {
  margin-top: 14px;
  font-size: 14px;
  color: var(--ink-3);
  text-align: center;
}

/* ---- ABOUT: story chapters + scroll-filled progress rail ---- */
.chapters {
  display: flex;
  gap: clamp(24px, 4vw, 48px);
}
.chapters__rail {
  position: relative;
  width: 2px;
  flex: none;
  border-radius: 1px;
  background: var(--line-strong);
}
.chapters__rail-fill {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border-radius: 1px;
  background: var(--blue);
  transform: scaleY(1);
  transform-origin: top;
}
html.gsap-ready .chapters__rail-fill { transform: scaleY(0); }

.chapters__list {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(48px, 7vw, 80px);
}
.chapter__years { color: var(--accent-text, var(--link)); }
.chapter__title { margin: 6px 0 14px; }
.chapter__text { max-width: 62ch; }

@media (prefers-reduced-motion: reduce) {
  .chapters__rail-fill { transform: scaleY(1) !important; }
}

/* ---- ABOUT: "what I'm looking for" highlight tile ---- */
.tile--looking-for {
  border-left: 3px solid var(--blue);
  border-radius: 0 var(--radius-card) var(--radius-card) 0;
  max-width: 62ch;
}
.tile--looking-for .body-l { margin-top: 12px; }

/* ---- ABOUT: closing statement CTAs ---- */
.about-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
  margin-top: clamp(40px, 5vw, 56px);
}

/* ---- NOW: hero + status blocks ---- */
.now-hero {
  padding-top: clamp(132px, 17vw, 188px);
  padding-bottom: clamp(48px, 6vw, 72px);
}
.now-hero__updated { margin-top: 14px; }
.now-hero__chip { margin-top: 24px; }

.now__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(16px, 2vw, 24px);
}
@media (min-width: 860px) {
  .now__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.now__grid .body { margin-top: 12px; }
.now__contact-row { margin-top: 16px; }
.now__contact-email { font-size: clamp(17px, 1.8vw, 20px); }
.now__note { margin-top: clamp(40px, 5vw, 56px); }
