/* ============================================================
   ABOUT.CSS — About page styles
   v2.0 — "05 Webpage About" redesign
   Blocks: Banner + statement · Jerome's Journey · Leadership ·
   Vision · Coherence Book Series · Books by the Founders · Close
   ============================================================ */

/* Shared pieces — .page-banner, .feature-visual, .diamond-list,
   .visually-hidden and the divider live in global.css. */

/* ============================================================
   SECTION 1 — Banner + statement
   ============================================================ */

.about-hero {
  /* Clears the fixed nav so the banner never sits behind it. */
  padding-block: calc(72px + var(--space-lg)) var(--space-lg);
  text-align: center;
}

.about-hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: var(--space-xl);
}

.about-hero h1 {
  font-size: var(--text-4xl);
  max-width: 22ch;
}

/* The four conditions the client set under the headline. Left-aligned
   inside a centered block so the diamonds line up. */
.about-conditions {
  display: inline-block;
  text-align: left;
  margin-top: var(--space-xl);
  max-width: 46ch;
}

.about-conditions li {
  color: var(--color-text-secondary);
}

/* The last bullet is the turn — Field Harmonix answering the three
   above it — so it carries the page's accent. */
.about-conditions li:last-child {
  color: var(--color-text-primary);
  font-weight: 500;
  margin-bottom: 0;
}

/* The divider closes each block, so the sections below the hero sit
   tighter than the global default. */
.about-journey,
.about-leadership,
.about-vision,
.about-books,
.about-founders-books {
  padding-block: var(--space-xl);
}

/* ============================================================
   SECTION 3 — Leadership
   ============================================================ */

.about-leadership h2 {
  margin-bottom: var(--space-xl);
}

.about-leader {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: var(--space-xl);
  align-items: start;
  max-width: var(--max-width);
  margin: 0 auto var(--space-2xl);
  padding: var(--space-xl);
  background: var(--color-surface);
  border-radius: var(--border-radius-lg);
  border: 1px solid rgba(184, 150, 12, 0.15);
}

.about-leader:last-of-type {
  margin-bottom: var(--space-lg);
}

.about-leader--reverse {
  grid-template-columns: 1fr 320px;
}

.about-leader--reverse .about-leader-portrait {
  order: 2;
}

.about-leader-portrait {
  width: 100%;
}

/* The two supplied headshots have different native aspect ratios —
   Jerome's is 4:5, James's is landscape — so both are cropped to a
   common 3:4 frame and the pair reads as one set. */
.about-leader-portrait img {
  width: 100%;
  border-radius: var(--border-radius);
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center;
}

.about-leader-portrait figcaption {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  font-style: italic;
  margin-top: var(--space-sm);
  text-align: center;
}

.about-leader-bio h3 {
  font-size: var(--text-2xl);
  color: var(--color-accent-gold);
  margin-bottom: var(--space-xs);
}

/* Title line under the name — the client supplies one per founder. */
.about-leader-role {
  font-family: var(--font-body);
  font-size: var(--text-sm) !important;
  font-weight: 600;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--color-text-primary) !important;
  margin-bottom: var(--space-lg) !important;
  line-height: var(--leading-snug);
}

.about-leader-bio p {
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-md);
  max-width: none;
}

.about-leader-bio p:last-child {
  margin-bottom: 0;
}

/* ============================================================
   SECTION 4 — Vision
   ============================================================ */

.about-vision {
  background: var(--color-surface-alpha);
}

.about-vision-kicker {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--color-accent-gold);
  margin-bottom: var(--space-lg);
}

.about-vision-line {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  line-height: var(--leading-snug);
  color: var(--color-text-primary);
  max-width: 24ch;
  margin-inline: auto;
}

/* ============================================================
   SECTIONS 5 + 6 — Book grids
   ============================================================ */

/* The Coherence Series has a "By Jerome Conlon" subtitle, so its
   heading sits tight; Books by the Founders has none. */
.about-books h2 {
  margin-bottom: var(--space-sm);
}

.about-founders-books h2 {
  margin-bottom: var(--space-xl);
}

.about-books .small-caps {
  display: block;
  margin-bottom: var(--space-xl);
}

.about-books-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--space-lg);
  max-width: var(--max-width);
  margin: 0 auto var(--space-xl);
}

.about-books-grid--five {
  grid-template-columns: repeat(5, 1fr);
}

.about-book {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-sm);
  color: var(--color-text-primary);
  transition: transform var(--transition-fast);
}

.about-book:hover {
  transform: translateY(-4px);
  color: var(--color-text-primary);
}

.about-book img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: contain;
  border-radius: var(--border-radius);
  background: var(--color-surface);
  padding: var(--space-xs);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
}

.about-book:hover img {
  box-shadow: 0 8px 24px rgba(184, 150, 12, 0.25);
}

.about-book-title {
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: var(--tracking-normal);
  line-height: var(--leading-snug);
  margin-top: var(--space-sm);
}

.about-book-author {
  font-size: var(--text-xs);
  color: var(--color-text-secondary);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
}

.about-books-link {
  margin-top: var(--space-md);
}

.about-books-link a,
.about-books-links a {
  color: var(--color-accent-gold);
  font-size: var(--text-base);
  letter-spacing: var(--tracking-wide);
}

.about-books-links {
  display: flex;
  justify-content: center;
  gap: var(--space-xl);
  flex-wrap: wrap;
  margin-top: var(--space-lg);
}

/* ============================================================
   SECTION 7 — Closing statement
   ============================================================ */

.about-closing {
  padding-block: var(--space-xl) var(--space-3xl);
}

.about-closing-line {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-style: italic;
  line-height: var(--leading-snug);
  color: var(--color-gold-bright);
  max-width: 26ch;
  margin: 0 auto var(--space-xl);
}

.about-closing-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 960px) {
  .about-leader,
  .about-leader--reverse {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .about-leader--reverse .about-leader-portrait {
    order: 0;
  }

  .about-leader-portrait {
    max-width: 280px;
    margin-inline: auto;
  }

  .about-books-grid,
  .about-books-grid--five {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .about-hero {
    padding-block: calc(64px + var(--space-md)) var(--space-xl);
  }

  .about-hero-content {
    margin-top: var(--space-xl);
  }

  .about-hero h1 {
    font-size: var(--text-3xl);
  }

  .about-leader {
    padding: var(--space-lg);
  }
}

@media (max-width: 560px) {
  .about-books-grid,
  .about-books-grid--five {
    grid-template-columns: repeat(2, 1fr);
  }
}
