/* about.html styles — externalized July 15/16, 2026 from an inline <style>
   block, as part of a pre-launch CSP hardening pass (see _headers). No rules
   changed in this move, this is the same CSS that was previously inline. */
:root {
  /* Theme locked July 9, 2026 — "Super, Natural North Van" (see theme-preview.html) */
  --evergreen: #17362b;
  --pine: #2f5d4a;
  --glacier: #2c7f94;
  --glacier-dark: #1f6376;
  --lake: #24586e;
  --pale-pine: #9fc7bd;
  --ice: #eceee6;
  --snow: #f8f6f1;
  --white: #ffffff;
  --ink: #2b3a36;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Newsreader', Georgia, serif;
  --font-ui: 'Public Sans', 'Helvetica Neue', Arial, sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--snow);
  line-height: 1.6;
  text-wrap: pretty;
}
header {
  background: var(--evergreen);
  color: var(--white);
  padding: 1rem 2rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: .75rem;
}
.wordmark { font-family: var(--font-display); font-size: 1.35rem; letter-spacing: .5px; color: inherit; text-decoration: none; }
.wordmark span { color: var(--pale-pine); }
nav a {
  color: var(--ice); text-decoration: none; margin-left: 1.25rem;
  font-family: var(--font-ui); font-size: .95rem;
}
nav a.active { color: var(--white); border-bottom: 2px solid var(--glacier); padding-bottom: 2px; }

/* Mobile hamburger menu (added July 13, 2026) */
.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  width: 34px; height: 30px; padding: 0;
  flex-direction: column; justify-content: center; align-items: flex-end; gap: 5px;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ice); border-radius: 2px; }
@media (max-width: 720px) {
  .nav-toggle { display: flex; }
  nav { display: none; width: 100%; flex-direction: column; gap: .15rem; margin-top: .25rem; }
  nav.open { display: flex; }
  nav a { margin-left: 0; padding: .65rem 0; }
}

main { max-width: 820px; margin: 0 auto; padding: 3rem 1.5rem 4rem; }

h1 { font-family: var(--font-display); color: var(--evergreen); font-size: 2.4rem; font-weight: 500; margin-bottom: 1.25rem; }
.opening { font-size: 1.16rem; max-width: 46rem; margin-bottom: 2.5rem; }

/* Photo treatment: tints imperfect phone photos into the palette */
figure {
  margin: 0 0 2.5rem;
  max-width: 640px;
}
.top-row { display: flex; gap: 2.25rem; align-items: flex-start; flex-wrap: wrap; margin-bottom: 2.5rem; }
.top-row .opening { flex: 1 1 340px; margin-bottom: 0; }
.portrait { flex: 0 1 280px; margin: 0; }
.portrait .photo-frame { aspect-ratio: 3 / 4; }
.photo-row { display: flex; gap: 1.25rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.photo-row figure { flex: 1 1 280px; margin: 0; max-width: none; }
.photo-frame {
  position: relative; border-radius: 6px; overflow: hidden;
  aspect-ratio: 3 / 2;
}
.photo-frame img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: saturate(.82) contrast(1.04);
}
.photo-frame::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(44,127,148,.16), rgba(23,54,43,.10));
  pointer-events: none;
}
figcaption {
  font-size: .85rem; margin-top: .5rem; opacity: .8;
  font-family: var(--font-ui);
}

h2 { font-family: var(--font-display); color: var(--pine); font-size: 1.4rem; font-weight: 500; margin-bottom: .5rem; }
.lead-in { margin-bottom: 1.5rem; }

.record { list-style: none; margin-bottom: 2.5rem; }
.record li {
  padding: .85rem 0 .85rem 1.6rem;
  border-bottom: 1px solid var(--ice);
  position: relative;
}
.record li::before {
  content: "·"; position: absolute; left: 0; color: var(--glacier);
  font-weight: bold;
}
.record .role { color: var(--evergreen); }
.record .now {
  font-family: var(--font-ui); font-size: .75rem;
  background: var(--ice); color: var(--pine);
  border-radius: 3px; padding: .1rem .45rem; margin-left: .4rem;
  vertical-align: middle;
}

/* Strata callout */
.strata {
  background: var(--evergreen);
  color: var(--ice);
  border-left: 6px solid var(--glacier);
  border-radius: 6px;
  padding: 2rem 2.25rem;
  margin-bottom: 2.5rem;
}
.strata blockquote { font-size: 1.15rem; font-style: italic; margin-bottom: .75rem; }
.strata cite {
  display: block; font-style: normal; font-size: .85rem;
  font-family: var(--font-ui);
  color: var(--pale-pine); margin-bottom: 1.25rem;
}
.strata p { border-top: 1px solid rgba(255,255,255,.15); padding-top: 1.25rem; }
.strata strong { color: var(--white); }

/* Endorsements slot: ships hidden. Remove display:none and add entries when
   quotes arrive. Layout works with one entry or many. */
.endorsements { display: none; margin-bottom: 2.5rem; }
.endorsements .quote-card {
  background: var(--white); border: 1px solid var(--ice); border-radius: 6px;
  padding: 1.25rem 1.5rem; margin-bottom: 1rem;
}
.endorsements .who {
  font-family: var(--font-ui); font-size: .85rem;
  color: var(--pine); margin-top: .5rem;
}

.closing {
  background: var(--white); border: 1px solid var(--ice); border-radius: 6px;
  padding: 1.5rem 1.75rem; font-size: 1.08rem;
}
.closing a { color: var(--glacier); }

footer {
  background: var(--evergreen); color: var(--ice);
  text-align: center; padding: 2rem 1.5rem; font-size: .9rem;
  margin-top: 3rem;
}

/* Footer social links (added July 13, 2026) */
.social-links { margin-top: 1rem; display: flex; justify-content: center; gap: 1rem; }
.social-links a { color: var(--pale-pine); display: inline-flex; transition: color .15s; }
.social-links a:hover { color: var(--white); }
/* YouTube slot: hidden until the channel exists. Once live, remove this rule
   and set the real href on the .yt-slot link below. */
.social-links .yt-slot { display: none; }
