/* ============================================================
   Orange in the Blue — About page (template-about.php, Option A)
   Editorial layout with image slots. Shares tokens from style.css.
   ============================================================ */

.about-page { padding: clamp(9.5rem, 16vw, 14rem) var(--gutter) clamp(4rem, 9vw, 7rem); }

/* shared image-slot placeholder (used when no photo is set yet) */
.about-page figure { margin: 0; position: relative; overflow: hidden; border-radius: 8px; box-shadow: inset 0 0 0 1px var(--line); }
.about-page figure img { display: block; width: 100%; height: 100%; object-fit: cover; }
.about-page .slot-ph {
  position: absolute; inset: 0; display: grid; place-items: center;
  background: radial-gradient(90% 70% at 30% 20%, rgb(var(--accent-soft-rgb) / .22), transparent 55%), linear-gradient(160deg, #0e4870, #061d2f);
  color: var(--muted); font-size: .72rem; letter-spacing: .2em; text-transform: uppercase;
}

/* intro: portrait + heading/lead */
.about-top { display: grid; grid-template-columns: 1.45fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: end; }
.about-intro h1 { font-family: var(--display); font-weight: 300; font-size: clamp(2.6rem, 7vw, 4.6rem); line-height: 1.02; letter-spacing: -.015em; margin: .3rem 0 1rem; }
.about-intro h1 em { font-style: italic; color: var(--orange-soft); }
.about-lead { font-family: var(--display); font-weight: 400; font-size: clamp(1.2rem, 2.4vw, 1.7rem); line-height: 1.4; color: var(--ink); max-width: 32ch; }
.about-portrait { aspect-ratio: 4/5; }

/* wide hero photo */
.about-hero { aspect-ratio: 16/7; margin: clamp(2rem, 5vw, 3.4rem) 0 clamp(2.4rem, 5vw, 3.6rem); }

/* opener — centered lead under the hero, with breathing room */
.about-opener { max-width: 60ch; margin: 0 auto clamp(4.5rem, 10vw, 8rem); text-align: center; font-size: clamp(1.2rem, 2.2vw, 1.5rem); line-height: 1.8; color: var(--ink); }

/* alternating photo / text rows (left, right, left…) — text block sized to match its photo */
.about-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: stretch; margin: clamp(4.5rem, 10vw, 7.5rem) 0; }
.about-row.rev .row-text { order: 2; }
.about-row.rev .row-img  { order: 1; }
.row-text { max-width: 52ch; display: flex; flex-direction: column; justify-content: center; }
.row-text h2 { font-family: var(--display); font-weight: 300; font-size: clamp(1.6rem, 3.6vw, 2.3rem); line-height: 1.15; margin-bottom: 1rem; }
.row-text p { color: var(--muted); font-size: 1.05rem; line-height: 1.9; }
.row-img { min-height: 360px; }

/* closing statement — centered, full impact */
.about-close { max-width: 60ch; margin: clamp(4.5rem, 10vw, 8rem) auto 0; text-align: center; }
.about-close h2 { font-family: var(--display); font-weight: 300; font-size: clamp(1.8rem, 4.2vw, 2.6rem); line-height: 1.15; margin-bottom: 1rem; }
.about-close p { color: var(--muted); font-size: 1.1rem; line-height: 1.9; }

@media (max-width: 820px) {
  .about-top { grid-template-columns: 1fr; align-items: start; }
  .about-portrait { max-width: 340px; }
  .about-row { grid-template-columns: 1fr; gap: 1.4rem; margin: 3rem 0; }
  .about-row.rev .row-text, .about-row.rev .row-img { order: 0; } /* text first on mobile */
  .row-img { aspect-ratio: 16/10; min-height: 0; }
  .about-opener { text-align: left; }
}
