/*
 * Twin Cities Malibu site styles
 * Ported from docs/prototype/. Editorial Aviation aesthetic.
 * Type system: Oswald (display) + Fraunces (variable serif body).
 * Palette: Beacon red, Cockpit navy, Bone cream, with flare/ember/fog/mute.
 */

:root {
  --beacon: #ee3a24;
  --flare:  #da2610;
  --ember:  #ff5842;
  --navy:   #263c5a;
  --ink:    #1a304e;
  --cream:  #fffce9;
  --fog:    #c0c6cc;
  --mute:   #5b6472;
  --white:  #ffffff;

  --display: 'Fraunces', 'Iowan Old Style', Georgia, serif;
  --sans:    'Oswald', 'Trade Gothic', 'Helvetica Neue', sans-serif;

  --measure: 62ch;
  --page-x:  clamp(1.5rem, 5vw, 4rem);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--display);
  font-size: 19px;
  font-variation-settings: 'opsz' 14, 'SOFT' 50, 'WONK' 0;
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Paper-grain background — signature editorial touch */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.16  0 0 0 0 0.19  0 0 0 0 0.24  0 0 0 0.06 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

.wrap { position: relative; z-index: 1; }

/* ─── Header ──────────────────────────────────────────── */

.header {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 2rem;
  padding: 1.75rem var(--page-x) 1.25rem;
  border-bottom: 1px solid rgba(38, 60, 90, 0.14);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  color: inherit;
}

.brand img {
  width: 56px;
  height: auto;
  display: block;
}

.brand-text {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1.1;
}

.brand-text small {
  display: block;
  font-weight: 300;
  letter-spacing: 0.22em;
  font-size: 0.7rem;
  color: var(--mute);
  margin-top: 0.15rem;
}

.nav {
  justify-self: end;
  display: flex;
  gap: 2.5rem;
  align-items: center;
  font-family: var(--sans);
  font-size: 0.84rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav a {
  color: var(--ink);
  text-decoration: none;
  position: relative;
  padding: 0.4rem 0;
  transition: color 180ms ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--beacon);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 280ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.nav a:hover { color: var(--beacon); }
.nav a:hover::after { transform: scaleX(1); }

@media (max-width: 760px) {
  .nav { gap: 1.25rem; font-size: 0.74rem; flex-wrap: wrap; }
}

/* ─── Hero ────────────────────────────────────────────── */

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(2.5rem, 7vw, 6rem);
  align-items: center;
  padding: clamp(4rem, 11vw, 9rem) var(--page-x) clamp(5rem, 13vw, 10rem);
  max-width: 1280px;
  margin: 0 auto;
}

.hero-text { min-width: 0; }

.hero-photo {
  margin: 0;
  position: relative;
}

.hero-photo img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 32px 56px rgba(38, 60, 90, 0.22));
}

.hero-photo figcaption {
  margin-top: 0.9rem;
  font-family: var(--display);
  font-style: italic;
  font-variation-settings: 'opsz' 14, 'WONK' 0;
  font-size: 0.85rem;
  color: var(--mute);
  line-height: 1.5;
}

@media (max-width: 880px) {
  .hero { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-photo { order: -1; }
}

.section-banner {
  margin: 0 auto clamp(3rem, 7vw, 5rem);
  max-width: 1280px;
  padding: 0 var(--page-x);
}

.section-banner img {
  width: 100%;
  height: auto;
  display: block;
}

.section-banner figcaption {
  margin-top: 0.9rem;
  font-family: var(--display);
  font-style: italic;
  font-variation-settings: 'opsz' 14, 'WONK' 0;
  font-size: 0.85rem;
  color: var(--mute);
  line-height: 1.5;
  text-align: right;
}

.eyebrow {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--beacon);
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  margin: 0 0 1.75rem;
}

.eyebrow::before {
  content: "";
  width: 2.5rem;
  height: 2px;
  background: var(--beacon);
  display: block;
}

.hero h1 {
  font-family: var(--display);
  font-variation-settings: 'opsz' 96, 'SOFT' 30, 'WONK' 1;
  font-weight: 500;
  font-size: clamp(2.125rem, 5.2vw, 4.5rem);
  line-height: 1.03;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0 0 1.75rem;
  max-width: 22ch;
}

.hero h1 em {
  font-style: italic;
  font-variation-settings: 'opsz' 96, 'WONK' 1;
  color: var(--beacon);
}

.hero .lead {
  max-width: 70ch;
  font-size: clamp(1.05rem, 1.4vw, 1.225rem);
  line-height: 1.6;
  color: var(--navy);
  margin: 0 0 2.5rem;
}

.cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  padding: 1.1rem 1.6rem 1rem;
  border: 1.5px solid var(--ink);
  background: transparent;
  transition: all 220ms cubic-bezier(0.2, 0.7, 0.2, 1);
  position: relative;
}

.cta:hover {
  background: var(--beacon);
  border-color: var(--beacon);
  color: var(--cream);
}

.cta .arrow {
  display: inline-block;
  transition: transform 220ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.cta:hover .arrow {
  transform: translateX(0.35rem);
}

/* ─── Pennant divider (decorative) ────────────────────── */

.pennant-divider {
  display: flex;
  justify-content: center;
  padding: 0 var(--page-x);
}

.pennant-divider svg {
  width: clamp(140px, 18vw, 220px);
  height: auto;
  color: var(--beacon);
  opacity: 0.5;
}

/* ─── Pull-quote section ──────────────────────────────── */

.pullquote {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(4rem, 10vw, 8rem) var(--page-x);
  position: relative;
  overflow: hidden;
}

.pullquote-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.pullquote-statement {
  margin: 0;
  font-family: var(--display);
  font-variation-settings: 'opsz' 96, 'SOFT' 50, 'WONK' 1;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.75rem, 4.3vw, 3.5rem);
  line-height: 1.18;
  letter-spacing: -0.012em;
  max-width: 32ch;
  color: var(--cream);
}

.pullquote-statement .figure {
  color: var(--flare);
  font-style: italic;
  font-variation-settings: 'opsz' 96, 'WONK' 1;
}

/* ─── Editorial sections ──────────────────────────────── */

.section {
  padding: clamp(5rem, 12vw, 9rem) var(--page-x);
  max-width: 1280px;
  margin: 0 auto;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

@media (max-width: 880px) {
  .section-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

.section-number {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--mute);
  margin: 0 0 0.5rem;
}

.section-number strong {
  color: var(--beacon);
  font-weight: 500;
  margin-right: 0.8rem;
}

.section h2 {
  font-family: var(--display);
  font-variation-settings: 'opsz' 72, 'SOFT' 40, 'WONK' 1;
  font-weight: 400;
  font-size: clamp(2rem, 4.6vw, 3.75rem);
  line-height: 1.04;
  letter-spacing: -0.014em;
  color: var(--ink);
  margin: 0 0 2rem;
  max-width: 14ch;
}

.section .prose {
  font-size: 1.05rem;
  line-height: 1.72;
  color: var(--navy);
  max-width: var(--measure);
}

.section .prose p { margin: 0 0 1.2rem; }

.section .prose p:first-of-type::first-letter {
  font-family: var(--display);
  font-variation-settings: 'opsz' 144, 'wght' 600, 'WONK' 1;
  font-size: 4.2em;
  float: left;
  line-height: 0.85;
  margin: 0.08em 0.12em 0 -0.04em;
  color: var(--flare);
}

.section .prose a,
.hero .lead a {
  color: inherit;
  text-decoration: none;
  background-image: linear-gradient(var(--beacon), var(--beacon));
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 100% 1px;
  padding-bottom: 1px;
  transition: background-size 220ms ease, color 220ms ease;
}

.section .prose a:hover,
.hero .lead a:hover {
  background-size: 100% 2px;
  color: var(--beacon);
}

/* ─── Sidebar — facts/list ────────────────────────────── */

.sidebar {
  border-left: 2px solid var(--beacon);
  padding: 0.4rem 0 0.4rem 1.5rem;
  font-family: var(--sans);
}

.sidebar-label {
  font-size: 0.76rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--mute);
  margin: 0 0 1.2rem;
  font-weight: 400;
}

.sidebar dl {
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem 0;
}

.sidebar dt {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0;
}

.sidebar dd {
  font-family: var(--display);
  font-style: italic;
  font-variation-settings: 'opsz' 14, 'WONK' 0;
  font-size: 1rem;
  color: var(--navy);
  margin: 0.15rem 0 0;
  line-height: 1.5;
}

/* aircraft list */

.aircraft {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem 2rem;
  font-family: var(--sans);
  font-weight: 400;
  letter-spacing: 0.06em;
}

.aircraft li {
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
  font-size: 0.95rem;
  color: var(--navy);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(38, 60, 90, 0.1);
}

.aircraft li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--beacon);
  display: inline-block;
  flex: 0 0 6px;
  transform: rotate(45deg);
  position: relative;
  top: -1px;
}

.aircraft li.piston::before { background: var(--navy); }

/* ─── Partner card (PC-12 / ATM affiliation) ──────────── */

.partner-card {
  border: 1px solid rgba(38, 60, 90, 0.18);
  border-top: 3px solid var(--beacon);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  background: rgba(255, 255, 255, 0.4);
  align-self: start;
}

.partner-card__label {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--mute);
  margin: 0 0 0.85rem;
}

.partner-card__name {
  font-family: var(--display);
  font-variation-settings: 'opsz' 36, 'wght' 500, 'WONK' 1;
  font-size: clamp(1.45rem, 2.4vw, 1.85rem);
  line-height: 1.08;
  letter-spacing: -0.012em;
  color: var(--ink);
  margin: 0 0 0.9rem;
}

.partner-card__logo {
  display: block;
  margin: 0 0 1.4rem;
  text-decoration: none;
  line-height: 0;
}

.partner-card__logo img {
  display: block;
  max-width: 180px;
  width: 100%;
  height: auto;
  transition: opacity 200ms ease, transform 240ms ease;
}

.partner-card__logo:hover img {
  opacity: 0.85;
  transform: translateY(-1px);
}

.partner-card__service {
  font-family: var(--display);
  font-style: italic;
  font-variation-settings: 'opsz' 14, 'WONK' 0;
  font-size: 1rem;
  color: var(--navy);
  margin: 0 0 1.75rem;
  line-height: 1.5;
}

.partner-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--sans);
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 0.3rem;
  transition: gap 220ms ease, color 200ms, border-color 200ms;
}

.partner-card__link:hover {
  gap: 1rem;
  color: var(--beacon);
  border-color: var(--beacon);
}

/* ─── Specialty section (asymmetric) ──────────────────── */

.specialty {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(5rem, 12vw, 9rem) var(--page-x);
  position: relative;
}

.specialty-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr minmax(0, 1.4fr);
  gap: clamp(3rem, 6vw, 6rem);
  align-items: end;
}

@media (max-width: 880px) {
  .specialty-grid { grid-template-columns: 1fr; }
}

.specialty .section-number { color: var(--fog); }
.specialty .section-number strong { color: var(--ember); }

.specialty h2 {
  font-family: var(--display);
  font-variation-settings: 'opsz' 72, 'SOFT' 30, 'WONK' 1;
  font-weight: 400;
  font-size: clamp(2rem, 4.6vw, 3.5rem);
  line-height: 1.04;
  color: var(--cream);
  margin: 0 0 1.5rem;
  max-width: 16ch;
}

.specialty .prose {
  color: var(--fog);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 54ch;
}

.specialty .prose strong {
  color: var(--cream);
  font-weight: 500;
  font-style: italic;
  font-variation-settings: 'opsz' 14, 'WONK' 0;
}

.specialty .link {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 2rem;
  font-family: var(--sans);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ember);
  text-decoration: none;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--ember);
  transition: gap 240ms ease;
}

.specialty .link:hover { gap: 1.2rem; }

/* ─── CTA section ─────────────────────────────────────── */

.bigcta {
  padding: clamp(5rem, 13vw, 10rem) var(--page-x);
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.bigcta h2 {
  font-family: var(--display);
  font-variation-settings: 'opsz' 144, 'SOFT' 40, 'WONK' 1;
  font-weight: 500;
  font-size: clamp(2.5rem, 6.6vw, 5.5rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 1.5rem;
}

.bigcta h2 em {
  font-style: italic;
  color: var(--beacon);
}

.bigcta-rule {
  width: 4rem;
  height: 1px;
  background: var(--beacon);
  margin: 2rem auto;
}

.bigcta-actions {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.bigcta-actions a {
  font-family: var(--sans);
  text-decoration: none;
  color: var(--ink);
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 0.25rem;
  transition: color 200ms, border-color 200ms;
}

.bigcta-actions a:hover { color: var(--beacon); border-color: var(--beacon); }

.bigcta-actions a strong {
  display: block;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.74rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 0.4rem;
  border: none;
}

/* ─── Beyond training (homepage coda → 8 Blade Aero) ─── */

.adjacent {
  padding: 0 var(--page-x) clamp(5rem, 12vw, 9rem);
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
}

.adjacent::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: rgba(38, 60, 90, 0.16);
  margin-bottom: clamp(3rem, 7vw, 5rem);
}

.adjacent-eyebrow {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.74rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--beacon);
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  margin: 0 0 2rem;
}

.adjacent-eyebrow::before {
  content: "";
  width: 2.5rem;
  height: 2px;
  background: var(--beacon);
  display: block;
}

.adjacent-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}

@media (max-width: 880px) {
  .adjacent-grid { grid-template-columns: 1fr; gap: 2rem; }
}

.adjacent h2 {
  font-family: var(--display);
  font-variation-settings: 'opsz' 72, 'SOFT' 40, 'WONK' 1;
  font-weight: 400;
  font-size: clamp(1.6rem, 3.2vw, 2.625rem);
  line-height: 1.12;
  letter-spacing: -0.012em;
  color: var(--ink);
  margin: 0;
  max-width: 22ch;
}

.adjacent h2 em { font-style: italic; color: var(--beacon); }

.adjacent-prose {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--navy);
  max-width: 50ch;
}

.adjacent-prose p { margin: 0 0 1.5rem; }

.adjacent-prose a {
  color: inherit;
  text-decoration: none;
  background-image: linear-gradient(var(--beacon), var(--beacon));
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 100% 1px;
  padding-bottom: 1px;
  transition: background-size 220ms ease, color 220ms ease;
}

.adjacent-prose a:hover { background-size: 100% 2px; color: var(--beacon); }

.adjacent-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.5rem;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  padding-bottom: 0.4rem;
  border-bottom: 1.5px solid var(--ink);
  transition: gap 240ms ease, color 200ms, border-color 200ms;
}

.adjacent-link:hover {
  gap: 1.2rem;
  color: var(--beacon);
  border-color: var(--beacon);
}

/* ─── Footer ──────────────────────────────────────────── */

.footer {
  background: var(--ink);
  color: var(--fog);
  padding: clamp(3rem, 6vw, 5rem) var(--page-x) 2rem;
  font-family: var(--sans);
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
}

@media (max-width: 880px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 520px) {
  .footer-inner { grid-template-columns: 1fr; }
}

.footer h4 {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cream);
  margin: 0 0 1.2rem;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer a {
  color: var(--fog);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 180ms ease;
}

.footer a:hover { color: var(--beacon); }

.footer .brand-block .brand-text {
  color: var(--cream);
}

.footer .brand-block .brand-text small {
  color: var(--fog);
}

.footer .brand-block .tagline {
  font-family: var(--display);
  font-style: italic;
  font-variation-settings: 'opsz' 14, 'WONK' 0;
  color: var(--fog);
  margin-top: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.5;
  max-width: 32ch;
}

.footer .sister-label {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cream);
  margin: 1.5rem 0 0.6rem;
  font-weight: 500;
}

.footer .cross-link {
  display: block;
  padding: 0.7rem 0;
  font-size: 0.88rem;
  border-top: 1px solid rgba(255, 252, 233, 0.18);
  color: var(--ember);
  font-style: italic;
  font-family: var(--display);
  font-variation-settings: 'opsz' 14, 'WONK' 0;
  transition: color 200ms ease, padding-left 240ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.footer .cross-link:last-of-type {
  border-bottom: 1px solid rgba(255, 252, 233, 0.18);
}

.footer .cross-link:hover {
  color: var(--beacon);
  padding-left: 0.4rem;
}

.footer-bottom {
  max-width: 1280px;
  margin: 4rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 252, 233, 0.12);
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
  flex-wrap: wrap;
  gap: 1rem;
}

/* ─── Entrance animation ──────────────────────────────── */

[data-reveal] {
  opacity: 0;
  transition: opacity 600ms ease-out;
}

[data-reveal].in {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ─── About page additions ─── */

/* ─── About hero (mirror of homepage: photo LEFT, text RIGHT) ─── */

.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(2.5rem, 7vw, 6rem);
  align-items: center;
  padding: clamp(4rem, 10vw, 8rem) var(--page-x) clamp(4rem, 10vw, 8rem);
  max-width: 1280px;
  margin: 0 auto;
}

.about-hero-photo {
  margin: 0;
  position: relative;
}

.about-hero-photo img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 20px 36px rgba(38, 60, 90, 0.14));
}

.about-hero-photo figcaption {
  margin-top: 0.9rem;
  font-family: var(--display);
  font-style: italic;
  font-variation-settings: 'opsz' 14, 'WONK' 0;
  font-size: 0.85rem;
  color: var(--mute);
  line-height: 1.5;
}

.about-hero-text { min-width: 0; }

.eyebrow {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--beacon);
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  margin: 0 0 1.75rem;
}

.eyebrow::before {
  content: "";
  width: 2.5rem;
  height: 2px;
  background: var(--beacon);
  display: block;
}

.about-hero h1 {
  font-family: var(--display);
  font-variation-settings: 'opsz' 72, 'SOFT' 40, 'WONK' 1;
  font-weight: 500;
  font-size: clamp(1.875rem, 3.8vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: -0.012em;
  color: var(--ink);
  margin: 0 0 1.5rem;
}

.about-hero .lead {
  max-width: 50ch;
  font-size: clamp(1.05rem, 1.4vw, 1.225rem);
  line-height: 1.6;
  color: var(--navy);
  margin: 0;
}

@media (max-width: 880px) {
  .about-hero { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ─── Bio body (long-form prose + sidebar) ─── */

.bio {
  padding: clamp(4rem, 10vw, 8rem) var(--page-x);
  max-width: 1280px;
  margin: 0 auto;
}

.bio-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

@media (max-width: 880px) {
  .bio-grid { grid-template-columns: 1fr; gap: 3rem; }
}

.bio-prose {
  font-size: 1.075rem;
  line-height: 1.72;
  color: var(--navy);
  max-width: var(--measure);
}

.bio-prose p { margin: 0 0 1.5rem; }

.bio-prose p:first-of-type::first-letter {
  font-family: var(--display);
  font-variation-settings: 'opsz' 144, 'wght' 600, 'WONK' 1;
  font-size: 4.2em;
  float: left;
  line-height: 0.85;
  margin: 0.08em 0.12em 0 -0.04em;
  color: var(--flare);
}

.bio-prose p > strong:first-child {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.74rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--beacon);
  margin-right: 0.6rem;
  display: inline-block;
  padding: 0.1rem 0;
}

.bio-prose a {
  color: inherit;
  text-decoration: none;
  background-image: linear-gradient(var(--beacon), var(--beacon));
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 100% 1px;
  padding-bottom: 1px;
  transition: background-size 220ms ease, color 220ms ease;
}

.bio-prose a:hover { background-size: 100% 2px; color: var(--beacon); }

/* ─── Sidebar — quick facts ─── */

.bio-sidebar {
  border-left: 2px solid var(--beacon);
  padding: 0.4rem 0 0.4rem 1.5rem;
  position: sticky;
  top: 2rem;
}

.bio-sidebar-label {
  font-family: var(--sans);
  font-size: 0.74rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--mute);
  margin: 0 0 1.4rem;
  font-weight: 400;
}

.bio-sidebar dl {
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem 0;
}

.bio-sidebar dt {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0;
}

.bio-sidebar dd {
  font-family: var(--display);
  font-style: italic;
  font-variation-settings: 'opsz' 14, 'WONK' 0;
  font-size: 1rem;
  color: var(--navy);
  margin: 0.15rem 0 0;
  line-height: 1.5;
}

@media (max-width: 880px) {
  .bio-sidebar { position: static; }
}

/* ─── Get in touch (smaller CTA than home) ─── */

.touch {
  padding: clamp(4rem, 10vw, 8rem) var(--page-x);
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.touch h2 {
  font-family: var(--display);
  font-variation-settings: 'opsz' 96, 'SOFT' 40, 'WONK' 1;
  font-weight: 500;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: -0.018em;
  color: var(--ink);
  margin: 0 0 1.25rem;
}

.touch h2 em { font-style: italic; color: var(--beacon); }

.touch-rule {
  width: 4rem;
  height: 1px;
  background: var(--beacon);
  margin: 1.75rem auto;
}

.touch-lead {
  font-family: var(--display);
  font-style: italic;
  font-variation-settings: 'opsz' 14, 'WONK' 0;
  font-size: 1.05rem;
  color: var(--navy);
  max-width: 50ch;
  margin: 0 auto;
}

.touch-actions {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  font-family: var(--sans);
}

.touch-actions a {
  text-decoration: none;
  color: var(--ink);
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 0.25rem;
  transition: color 200ms, border-color 200ms;
}

.touch-actions a:hover { color: var(--beacon); border-color: var(--beacon); }

.touch-actions a strong {
  display: block;
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 0.4rem;
  border: none;
}
