/* ============================================================================
 * about.css — page-specific styling for /o-nas and /about.
 *
 * Self-contained editorial magazine-feature aesthetic. Loaded only by the
 * About template via $extraCss in header.php. Does NOT modify style.css.
 *
 * Authored 2026-06-06 at user request. Override of the project's normal
 * "no CSS" rule, scoped to this one page.
 * ============================================================================ */

.about-page {
  --about-serif: 'Playfair Display', 'Iowan Old Style', 'Apple Garamond', Garamond, Georgia, 'Times New Roman', serif;
  --about-body:  'Charter', 'Iowan Old Style', 'Iowan Old Style BT', Palatino, Georgia, 'Times New Roman', serif;
  --about-ink:    #1a1612;
  --about-ink-2:  #3a342d;
  --about-mute:   #7a7268;
  --about-rule:   #e8e0d3;
  --about-paper:  #fbf7ef;
  --about-accent: #8a1f1c;

  background: var(--about-paper);
  color: var(--about-ink);
  font-family: var(--about-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.about-page .about-container {
  max-width: 700px;
  margin: 0 auto;
  padding: 80px 28px 100px;
  background: transparent;
}

/* -------- HERO -------- */

.about-page .about-hero {
  text-align: center;
  padding: 0 0 68px;
  margin: 0 0 64px;
  border-bottom: 1px solid var(--about-rule);
  position: relative;
}

.about-page .about-eyebrow {
  font-family: var(--about-body);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 12px;
  font-weight: 700;
  color: var(--about-accent);
  margin: 0 0 32px;
}

.about-page .about-headline {
  font-family: var(--about-serif);
  font-size: clamp(42px, 7.5vw, 72px);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -0.018em;
  margin: 0 0 36px;
  color: var(--about-ink);
}

.about-page .about-deck {
  font-family: var(--about-body);
  font-size: 21px;
  line-height: 1.5;
  font-style: italic;
  color: var(--about-mute);
  max-width: 540px;
  margin: 0 auto;
}

/* -------- BODY PROSE -------- */

.about-page .about-body p {
  font-family: var(--about-body);
  font-size: 19.5px;
  line-height: 1.78;
  margin: 0 0 28px;
  color: var(--about-ink-2);
  text-align: justify;
  hyphens: auto;
  -webkit-hyphens: auto;
}

.about-page .about-body p strong {
  font-weight: 700;
  color: var(--about-ink);
}

.about-page .about-body p em {
  font-style: italic;
}

/* Lede paragraph with drop cap */
.about-page .about-body .about-lede {
  font-size: 23px;
  line-height: 1.55;
  color: var(--about-ink);
  text-align: left;
  margin-bottom: 36px;
}

.about-page .about-body .about-lede::first-letter {
  font-family: var(--about-serif);
  font-size: 78px;
  font-weight: 800;
  float: left;
  line-height: 0.84;
  margin: 10px 14px 0 -2px;
  color: var(--about-accent);
}

/* Links */
.about-page .about-body a {
  color: var(--about-ink);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  text-decoration-color: var(--about-rule);
  transition: text-decoration-color 120ms ease;
}

.about-page .about-body a:hover {
  text-decoration-color: var(--about-accent);
}

/* -------- FIGURE -------- */

.about-page .about-figure {
  margin: 56px -40px 56px;
  padding: 0;
}

.about-page .about-figure img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--about-rule);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.04);
  background: #fff;
}

.about-page .about-figure figcaption {
  font-family: var(--about-body);
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--about-mute);
  font-style: italic;
  padding: 18px 8px 0;
  text-align: left;
}

.about-page .about-figure figcaption strong {
  font-style: normal;
  font-weight: 700;
  color: var(--about-ink);
}

.about-page .about-figure figcaption em {
  color: var(--about-ink-2);
}

/* -------- CLOSING / PULL QUOTE / SIGNATURE -------- */

.about-page .about-body .about-closing-line {
  font-family: var(--about-serif);
  font-size: clamp(28px, 4vw, 36px);
  line-height: 1.25;
  font-weight: 700;
  font-style: italic;
  text-align: center;
  margin: 64px auto 36px;
  max-width: 560px;
  color: var(--about-ink);
  position: relative;
  text-align: center;
}

.about-page .about-body .about-closing-line::before {
  content: '';
  display: block;
  width: 48px;
  height: 1px;
  background: var(--about-accent);
  margin: 0 auto 28px;
}

.about-page .about-body .about-signature {
  font-family: var(--about-body);
  font-size: 18px;
  line-height: 1.45;
  margin: 56px 0 0;
  text-align: right;
  font-style: italic;
  color: var(--about-ink);
}

.about-page .about-body .about-signature-line {
  font-size: 13.5px;
  color: var(--about-mute);
  display: block;
  margin-top: 4px;
  font-style: normal;
  letter-spacing: 0.04em;
}

/* -------- RESPONSIVE -------- */

@media (max-width: 720px) {
  .about-page .about-container {
    padding: 50px 22px 70px;
  }
  .about-page .about-hero {
    padding-bottom: 44px;
    margin-bottom: 44px;
  }
  .about-page .about-eyebrow {
    font-size: 11px;
    margin-bottom: 24px;
  }
  .about-page .about-headline {
    font-size: clamp(34px, 9vw, 50px);
  }
  .about-page .about-deck {
    font-size: 18px;
  }
  .about-page .about-body p {
    font-size: 18px;
    line-height: 1.72;
    text-align: left;
  }
  .about-page .about-body .about-lede {
    font-size: 20px;
  }
  .about-page .about-body .about-lede::first-letter {
    font-size: 62px;
    margin: 8px 12px 0 0;
  }
  .about-page .about-figure {
    margin: 36px 0 36px;
  }
  .about-page .about-body .about-closing-line {
    font-size: clamp(24px, 6vw, 30px);
    margin: 48px auto 28px;
  }
}

/* -------- PRINT (for the editorial feel: someone might Cmd-P this) -------- */

@media print {
  .about-page { background: #fff; }
  .about-page .about-figure img { box-shadow: none; }
}
