/* ==========================================================================
   PNWAAA — Pacific Northwest Aerial Applicators Alliance
   site.css   |   single stylesheet, no build step required
   --------------------------------------------------------------------------
   Contents
     01  Tokens
     02  Reset & base
     03  Typography
     04  Layout primitives
     05  Buttons & links
     06  Masthead / navigation
     07  Hero
     08  Flight strip (key facts)
     09  Cards & grids
     10  State map
     11  Schedule
     12  Registration / pay cards
     13  Accordion (FAQ)
     14  Directory (board members)
     15  Logo wall
     16  Prose blocks
     17  Callouts & notices
     18  Footer
     19  Utilities
     20  Print
   ========================================================================== */

/* -------------------------------------------------------------- 01 Tokens */
:root {
  /* Ink — night sky over the Palouse */
  --ink:        #0c1a26;
  --ink-900:    #10222f;
  --ink-800:    #16303f;
  --ink-700:    #1e4055;
  --ink-600:    #2b5670;

  /* Sky — lifted from the alliance wordmark */
  --sky:        #25668a;
  --sky-500:    #3d90bd;
  --sky-400:    #62a9cf;
  --sky-200:    #a9d3e9;
  --sky-100:    #d9ecf6;

  /* Wheat — harvest gold, the Air Tractor yellow dialled back */
  --wheat:      #e8a33d;
  --wheat-600:  #c8801a;
  --wheat-700:  #8a540b;
  --wheat-100:  #f8e9cd;

  /* Rust — deadlines, alerts, the odd emphatic thing */
  --rust:       #a6432a;

  /* Paper */
  --paper:      #faf7f0;
  --paper-2:    #f2ede2;
  --paper-3:    #e5dccc;
  --paper-4:    #d4c8b2;

  /* Text — muted/sky/wheat-700 are tuned to clear WCAG AA (4.5:1) on every
     surface they appear on: paper, paper-2, white, wheat-100, sky-100. */
  /* Text */
  --text:       #17222c;
  --text-2:     #3c4c59;
  --muted:      #55616b;
  --on-dark:    #eaf1f5;
  --on-dark-2:  #a7bccb;

  /* Lines */
  --line:       #ded4c2;
  --line-soft:  #eae2d4;
  --line-dark:  rgba(169, 211, 233, .18);

  /* Type */
  --display: "Archivo", "Archivo Expanded", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --body:    "Public Sans", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --mono:    ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace;

  /* Space */
  --gut:     clamp(1.15rem, 4vw, 2.5rem);
  --sec:     clamp(3.5rem, 8vw, 6.5rem);
  --maxw:    1200px;
  --maxw-nar: 780px;

  /* Radius & shadow */
  --r-sm: 4px;
  --r:    8px;
  --r-lg: 14px;
  --shadow-1: 0 1px 2px rgba(12, 26, 38, .06), 0 2px 8px rgba(12, 26, 38, .05);
  --shadow-2: 0 2px 4px rgba(12, 26, 38, .06), 0 10px 28px rgba(12, 26, 38, .09);
  --shadow-3: 0 4px 10px rgba(12, 26, 38, .10), 0 24px 56px rgba(12, 26, 38, .16);

  /* Sectional-chart hairline grid, reused as a background */
  --chart-grid:
    linear-gradient(to right,  var(--line-dark) 1px, transparent 1px),
    linear-gradient(to bottom, var(--line-dark) 1px, transparent 1px);
}

/* --------------------------------------------------------- 02 Reset & base */
*, *::before, *::after { box-sizing: border-box; }

html {
  /* The off-canvas nav rests outside the viewport; clipping at the root stops
     it adding a horizontal scrollbar. `clip` (not `hidden`) so the sticky
     masthead and in-page anchors keep working. */
  overflow-x: clip;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 6.5rem;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: var(--body);
  font-size: 1.0625rem;
  line-height: 1.65;
  font-feature-settings: "kern" 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-wrap: break-word;
}

img, svg, video { max-width: 100%; height: auto; display: block; }
img { border: 0; }

hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 2.5rem 0;
}

table { border-collapse: collapse; width: 100%; }

::selection { background: var(--wheat-100); color: var(--ink); }

:where(a, button, input, select, textarea, summary, [tabindex]):focus-visible {
  outline: 3px solid var(--sky);
  outline-offset: 2px;
  border-radius: 2px;
}

.skip {
  position: absolute;
  left: 0; top: 0;
  transform: translateY(-120%);
  z-index: 999;
  background: var(--ink);
  color: #fff;
  padding: .8rem 1.25rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 0 0 var(--r) 0;
  transition: transform .18s ease;
}
.skip:focus { transform: translateY(0); }

.vh {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap; border: 0;
}

/* ---------------------------------------------------------- 03 Typography */
h1, h2, h3, h4, h5 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.022em;
  margin: 0 0 .6em;
  color: var(--ink);
  /* balance keeps a heading's lines even and prevents a one-word last line */
  text-wrap: balance;
}

/* Archivo carries a width axis — a slightly narrowed cut reads like
   airfield signage and keeps long headlines on fewer lines. */
.display,
h1, h2 {
  font-variation-settings: "wdth" 92;
}

h1, .h1 { font-size: clamp(2.35rem, 6.2vw, 4.25rem); font-weight: 800; }
h2, .h2 { font-size: clamp(1.85rem, 4.2vw, 2.9rem);  font-weight: 700; }
h3, .h3 { font-size: clamp(1.3rem, 2.4vw, 1.65rem);  font-weight: 700; letter-spacing: -.015em; }
h4, .h4 { font-size: 1.075rem; font-weight: 700; letter-spacing: -.005em; }

p { margin: 0 0 1.15em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

.lede {
  font-size: clamp(1.1rem, 1.9vw, 1.3rem);
  line-height: 1.55;
  color: var(--text-2);
  text-wrap: pretty;
}

.eyebrow {
  font-family: var(--mono);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--wheat-700);
  margin: 0 0 1rem;
  display: flex;
  align-items: center;
  gap: .7rem;
}
.eyebrow::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}
.eyebrow--center { justify-content: center; }
.eyebrow--center::after, .eyebrow--center::before {
  content: "";
  width: 2.5rem; flex: 0 0 2.5rem;
  height: 1px; background: var(--line);
}
.on-ink .eyebrow { color: var(--wheat); }
.on-ink .eyebrow::after, .on-ink .eyebrow::before { background: var(--line-dark); }

.mono { font-family: var(--mono); font-size: .9em; letter-spacing: -.01em; }

/* ---- Pill --------------------------------------------------------------
   Replaces the old rule-line eyebrow. One capsule; each fact is a segment
   with its own icon, divided by hairlines. Sits on paper by default and
   switches to a glass treatment over photography / ink.
   ---------------------------------------------------------------------- */
.pill {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: stretch;
  margin: 0 0 1.15rem;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(12,26,38,.05), inset 0 1px 0 rgba(255,255,255,.6);
  overflow: hidden;
}

/* A pill directly above a heading is that heading's label — keep them
   visually attached. Beats .prose's generous sibling spacing. */
.pill + h1, .pill + h2, .pill + h3,
.prose > .pill + h1, .prose > .pill + h2, .prose > .pill + h3 {
  margin-top: 0;
}

.pill__seg {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem 1rem;
  font-family: var(--mono);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
  line-height: 1;
  color: var(--text-2);
  white-space: nowrap;
  border-left: 1px solid var(--line-soft);
}
.pill__seg:first-child { border-left: 0; padding-left: 1.05rem; }
.pill__seg:last-child  { padding-right: 1.05rem; }

.pill__ico {
  width: 1.05rem;
  height: 1.05rem;
  flex: 0 0 auto;
  color: var(--wheat-700);
}

/* Single-segment pills read as a label, so they sit a little tighter. */
.pill--solo .pill__seg { padding-inline: 1rem; }

/* On ink / on photography — frosted glass */
.on-ink .pill,
.hero--photo .pill,
.banner-cta .pill,
.card--ink .pill {
  background: rgba(255,255,255,.09);
  border-color: rgba(255,255,255,.22);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.14);
  backdrop-filter: saturate(160%) blur(10px);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
}
.on-ink .pill__seg,
.hero--photo .pill__seg,
.banner-cta .pill__seg,
.card--ink .pill__seg {
  color: #eaf1f5;
  border-left-color: rgba(255,255,255,.18);
}
.on-ink .pill__ico,
.hero--photo .pill__ico,
.banner-cta .pill__ico,
.card--ink .pill__ico { color: var(--wheat); }

/* Centred variant for centred section heads */
.pill--center { align-self: center; }
.section-head.center .pill { margin-inline: auto; }

@media (max-width: 30rem) {
  /* Tighter so three segments fit one line on a 390px phone; when a pill
     still has to wrap, soften the radius so broken corners don't show. */
  .pill { border-radius: 1.1rem; }
  .pill__seg { padding: .42rem .6rem; font-size: .6rem; letter-spacing: .07em; gap: .35rem; }
  .pill__seg:first-child { padding-left: .75rem; }
  .pill__seg:last-child { padding-right: .75rem; }
  .pill__ico { width: .9rem; height: .9rem; }
}

.section-head { max-width: 62ch; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head.center { margin-inline: auto; text-align: center; }

/* --------------------------------------------------- 04 Layout primitives */
.wrap {
  width: min(100% - (var(--gut) * 2), var(--maxw));
  margin-inline: auto;
}
.wrap--narrow { width: min(100% - (var(--gut) * 2), var(--maxw-nar)); }

.section { padding-block: var(--sec); }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }

.on-ink {
  background: var(--ink);
  color: var(--on-dark);
}
.on-ink h1, .on-ink h2, .on-ink h3, .on-ink h4 { color: #fff; }
.on-ink .lede { color: var(--on-dark-2); }
.on-ink a { color: var(--sky-200); }

.on-paper-2 { background: var(--paper-2); }

.rule-top { border-top: 1px solid var(--line); }

.cols {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
}
/* Grid/flex children default to min-width:auto, which lets a wide child blow
   the track out past the container. Reset it everywhere we lay things out. */
.cols > *, .grid > *, .states > *, .pay-grid > *, .logowall > *,
.resources__grid > *, .footer__top > *, .herobar__in > *, .slot > * { min-width: 0; }
@media (min-width: 62rem) {
  .cols--split   { grid-template-columns: 1.05fr .95fr; align-items: start; }
  .cols--aside   { grid-template-columns: minmax(0,1fr) 20rem; }
  .cols--aside-l { grid-template-columns: 20rem minmax(0,1fr); }
}

/* ------------------------------------------------------ 05 Buttons & links */
a { color: var(--sky); text-underline-offset: .18em; text-decoration-thickness: .07em; }
a:hover { color: var(--ink-700); }

.btn {
  --btn-bg: var(--wheat);
  --btn-fg: var(--ink);
  --btn-bd: var(--wheat);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: .82rem 1.5rem;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1.5px solid var(--btn-bd);
  border-radius: var(--r);
  font-family: var(--display);
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .005em;
  text-decoration: none;
  cursor: pointer;
  transition: transform .14s ease, box-shadow .14s ease, background-color .14s ease, color .14s ease, border-color .14s ease;
  box-shadow: 0 1px 0 rgba(12,26,38,.10);
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-2);
  color: var(--btn-fg);
}
.btn:active { transform: translateY(0); box-shadow: none; }

.btn--ghost  { --btn-bg: transparent; --btn-fg: var(--ink); --btn-bd: var(--paper-4); }
.btn--ghost:hover { --btn-bg: var(--paper-2); --btn-bd: var(--ink); }

.btn--dark   { --btn-bg: var(--ink); --btn-fg: #fff; --btn-bd: var(--ink); }
.btn--onink  { --btn-bg: transparent; --btn-fg: #fff; --btn-bd: rgba(255,255,255,.35); }
.btn--onink:hover { --btn-bg: rgba(255,255,255,.08); --btn-bd: #fff; }

.btn--sm { padding: .55rem 1rem; font-size: .85rem; border-radius: var(--r-sm); }
.btn--lg { padding: 1rem 1.9rem; font-size: 1.05rem; }
.btn--block { display: flex; width: 100%; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  align-items: center;
}

/* Inline link with a small trailing glyph */
.link-arrow {
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1.5px solid var(--sky-200);
  padding-bottom: 1px;
  transition: border-color .15s ease, color .15s ease;
}
.link-arrow::after { content: " \2192"; }
.link-arrow:hover { border-color: var(--wheat); }
/* A link-arrow that is the only thing in its paragraph is a call to action,
   not an inline link, so it gets a thumb-sized hit area. */
.card__foot .link-arrow,
p > .link-arrow:only-child {
  display: inline-flex;
  align-items: center;
  min-height: 2.5rem;
}

/* Phone and email in a facts strip are standalone values people tap. */
.strip__v > a:only-child {
  display: inline-flex;
  align-items: center;
  min-height: 2.5rem;
}

/* Downloadable document link */
.doc-link {
  display: flex;
  align-items: center;
  gap: .9rem;
  padding: .9rem 1.05rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  text-decoration: none;
  color: var(--text);
  transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}
.doc-link:hover {
  border-color: var(--paper-4);
  box-shadow: var(--shadow-1);
  transform: translateY(-1px);
  color: var(--text);
}
.doc-link__icon {
  flex: 0 0 auto;
  width: 2.2rem; height: 2.2rem;
  display: grid; place-items: center;
  border-radius: var(--r-sm);
  background: var(--rust);
  color: #fff;
  font-family: var(--mono);
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .04em;
}
.doc-link__icon--doc { background: var(--ink-700); }
.doc-link__wrap { display: block; min-width: 0; }
.doc-link__t { display: block; font-weight: 600; line-height: 1.3; }
.doc-link__m { display: block; font-size: .82rem; color: var(--muted); line-height: 1.35; }
.doc-list { display: grid; gap: .55rem; }

/* ------------------------------------------- 06 Masthead / navigation */
.topbar {
  background: var(--ink);
  color: var(--on-dark-2);
  font-family: var(--mono);
  font-size: .76rem;
  letter-spacing: .02em;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.topbar__in {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: .4rem 1.5rem;
  padding-block: .5rem;
}
.topbar a { color: var(--sky-200); text-decoration: none; }
.topbar a:hover { color: #fff; text-decoration: underline; }
.topbar__now { display: flex; align-items: center; gap: .55rem; }
.topbar__dot {
  width: .45rem; height: .45rem;
  border-radius: 50%;
  background: var(--wheat);
  box-shadow: 0 0 0 3px rgba(232,163,61,.2);
}
@media (max-width: 42rem) {
  .topbar__meta { display: none; }
  .topbar__in { justify-content: center; }
}

.masthead {
  position: sticky;
  top: 0;
  z-index: 60;
  /* NOTE: no backdrop-filter here. A filter, backdrop-filter or transform on
     this element would make it the containing block for the position:fixed
     nav drawer inside it, trapping the drawer in the header's own box instead
     of the viewport. Solid background instead of frosted for that reason. */
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .2s ease;
}
.masthead.is-stuck { box-shadow: var(--shadow-1); }

.masthead__in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: .7rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: .8rem;
  text-decoration: none;
  color: var(--ink);
  flex: 0 1 auto;
  min-width: 0;
}
.brand__mark {
  width: 3.15rem;
  color: var(--ink);
  flex: 0 0 auto;
  transition: transform .3s cubic-bezier(.2,.8,.3,1);
}
.brand:hover .brand__mark { transform: translateX(3px) rotate(-2deg); }
.brand__txt { display: grid; gap: .12rem; min-width: 0; }
.brand__name {
  font-family: var(--display);
  font-weight: 800;
  font-variation-settings: "wdth" 88;
  font-size: 1.02rem;
  line-height: 1.08;
  letter-spacing: -.02em;
  text-transform: uppercase;
}
.brand__sub {
  font-family: var(--mono);
  font-size: .63rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--wheat-700);
}
@media (max-width: 34rem) {
  .brand__name { font-size: .86rem; }
  .brand__mark { width: 2.5rem; }
  .masthead__in { gap: .75rem; }
}
@media (max-width: 26rem) {
  .brand__name { font-size: .78rem; }
  .brand__mark { width: 2.1rem; }
  .brand__sub  { font-size: .56rem; }
  .nav-toggle__label { display: none; }
  .nav-toggle { padding: .55rem; }
}

.nav { display: flex; align-items: center; gap: .15rem; }
.nav__head, .nav__link--home { display: none; }
.nav__link {
  position: relative;
  padding: .55rem .72rem;
  font-family: var(--display);
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .01em;
  color: var(--text-2);
  text-decoration: none;
  border-radius: var(--r-sm);
  white-space: nowrap;
  transition: color .15s ease, background-color .15s ease;
}
.nav__link:hover { color: var(--ink); background: var(--paper-2); }
.nav__link[aria-current="page"] { color: var(--ink); }
.nav__link[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: .72rem; right: .72rem; bottom: .18rem;
  height: 2px;
  background: var(--wheat);
  border-radius: 2px;
}
.nav__cta { margin-left: .6rem; }

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  min-height: 2.75rem;   /* 44px — Apple HIG / WCAG 2.5.8 minimum */
  min-width: 2.75rem;
  padding: .55rem .8rem;
  background: transparent;
  border: 1.5px solid var(--paper-4);
  border-radius: var(--r-sm);
  font-family: var(--display);
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--ink);
  cursor: pointer;
}
.nav-toggle__bars { display: grid; gap: 3px; width: 1rem; }
.nav-toggle__bars i { display: block; height: 2px; background: currentColor; border-radius: 2px; }

@media (max-width: 68rem) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(22rem, 86vw);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 5.75rem 1.5rem 2rem;
    background: var(--paper);
    border-left: 1px solid var(--line);
    box-shadow: var(--shadow-3);
    /* The panel always sits INSIDE the viewport; clip-path does the reveal, so
       it can never add a horizontal scrollbar the way an off-canvas
       translateX(100%) does. */
    clip-path: inset(0 0 0 100%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: clip-path .3s cubic-bezier(.3,.8,.3,1), opacity .22s ease,
                visibility 0s linear .3s;
    overflow-y: auto;
    z-index: 70;
  }
  .nav.is-open {
    clip-path: inset(0 0 0 0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: clip-path .3s cubic-bezier(.3,.8,.3,1), opacity .22s ease,
                visibility 0s linear 0s;
  }
  .nav__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4.25rem;
    padding: 0 1rem 0 1.5rem;
    border-bottom: 1px solid var(--line-soft);
    background: var(--paper-2);
  }
  .nav__head-title {
    font-family: var(--mono);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--muted);
  }
  .nav-close {
    width: 2.75rem; height: 2.75rem;
    display: grid; place-items: center;
    padding: 0;
    background: none;
    border: 1.5px solid var(--paper-4);
    border-radius: 50%;
    color: var(--ink);
    cursor: pointer;
  }
  .nav-close:hover { background: #fff; border-color: var(--ink); }
  .nav-close svg { width: 1.05rem; height: 1.05rem; }
  .nav__link--home { display: block; }
  .nav__link {
    font-size: 1.05rem;
    padding: .85rem .4rem;
    border-bottom: 1px solid var(--line-soft);
    border-radius: 0;
  }
  .nav__link[aria-current="page"]::after { left: .4rem; right: auto; width: 1.6rem; bottom: .45rem; }
  .nav__cta { margin: 1.25rem 0 0; }
  .nav-scrim {
    position: fixed; inset: 0;
    background: rgba(12,26,38,.55);
    opacity: 0; pointer-events: none;
    transition: opacity .25s ease;
    /* Below .masthead (z-index 60). The drawer lives inside the masthead, so
       its own z-index is scoped to that stacking context — a scrim above 60
       would paint over the drawer and grey it out. */
    z-index: 55;
  }
  .nav-scrim.is-open { opacity: 1; pointer-events: auto; }
}

/* ------------------------------------------------------------- 07 Hero */

/* ---- Full-bleed photographic hero -------------------------------------- */
.hero--photo {
  position: relative;
  min-height: min(86vh, 46rem);
  display: flex;
  align-items: center;
  background: var(--ink);
  color: #fff;
  isolation: isolate;
  overflow: hidden;
}
.hero--photo > .hero__pic {
  position: absolute;
  /* Top overdraw gives the parallax room to slide without exposing a gap. */
  inset: -14% 0 0 0;
  /* -4: the photo is the BASE layer. The video sits at -3 (one layer above),
     the legibility scrim ::before at -2, content above that. At an equal
     z-index the photo would paint over the video, because it comes later in
     the markup — which is exactly the bug this ordering fixes. */
  z-index: -4;
}
/* Optional video layer. The <picture> underneath is always present, so the
   hero is never blank — the video simply covers it once it can play. */
.hero__video {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% 62%;
  opacity: 0;
  transition: opacity .7s ease;
}
.hero__video.is-playing { opacity: 1; }

.hero--photo > .hero__pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% 62%;
  /* Ken Burns: a very slow push toward the subject and back. The origin sits
     on the aircraft (same point as object-position), so the plane stays
     pinned while the landscape breathes around it. 50s per leg keeps the
     turnarounds subliminal; .hero--photo's overflow:hidden crops the excess. */
  transform-origin: 60% 62%;
  animation: hero-drift 26s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes hero-drift {
  from { transform: scale(1) translate(0, 0); }
  to   { transform: scale(1.13) translate(1%, -0.6%); }
}
@media (prefers-reduced-motion: reduce) {
  .hero--photo > .hero__pic img { animation: none; }
}
/* Legibility: a heavy bottom-left wedge plus a light top scrim for the nav */
.hero--photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(to top,   rgba(6,15,24,.92) 0%, rgba(6,15,24,.62) 28%, rgba(6,15,24,.10) 62%, rgba(6,15,24,0) 82%),
    linear-gradient(to right, rgba(6,15,24,.90) 0%, rgba(6,15,24,.82) 20%, rgba(6,15,24,.55) 36%, rgba(6,15,24,.16) 54%, rgba(6,15,24,0) 70%),
    linear-gradient(to bottom, rgba(6,15,24,.42) 0%, rgba(6,15,24,.06) 24%, rgba(6,15,24,0) 42%);
}
.hero--photo > .wrap { position: relative; }
.hero--photo .hero__body {
  /* .wrap sets the gutter, so this block starts on the same line as the
     masthead brand. max-width only limits the measure — it must not sit on
     .wrap itself or margin-inline:auto would centre the text. */
  max-width: 34rem;
  padding-block: clamp(4rem, 9vw, 6rem);
}
@media (min-width: 90rem) { .hero--photo .hero__body { max-width: 38rem; } }
@media (max-width: 34rem) {
  .hero--photo { min-height: min(78vh, 42rem); }
  .hero--photo .hero__body { padding-block: clamp(3.25rem, 14vw, 5rem) 2rem; }
  .hero--photo .btn-row { flex-direction: column; align-items: stretch; }
  .hero--photo .btn-row .btn { width: 100%; }
}
.hero--photo h1 {
  font-size: clamp(2.5rem, 5.6vw, 4.3rem);
  font-weight: 800;
  line-height: .95;
  letter-spacing: -.035em;
  color: #fff;
  margin-bottom: .38em;
  text-shadow: 0 2px 30px rgba(0,0,0,.45);
}
.hero--photo h1 em { font-style: normal; color: var(--wheat); }
.hero--photo .hero__lede {
  text-wrap: pretty;
  color: #d3e0e9;
  max-width: 42ch;
  text-shadow: 0 1px 16px rgba(0,0,0,.5);
}
.hero--photo .eyebrow {
  color: #f6c877;
  font-weight: 700;
  text-shadow: 0 1px 3px rgba(0,0,0,.85), 0 2px 14px rgba(0,0,0,.6);
}
.hero--photo .eyebrow::after { background: rgba(255,255,255,.32); }

/* Hero content enters with a soft rise, one element after the next. The
   global reduced-motion block collapses these to instant. */
@keyframes hero-in {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: none; }
}
.hero__body > * { animation: hero-in .85s cubic-bezier(.2,.7,.3,1) backwards; }
.hero__body > :nth-child(1) { animation-delay: .05s; }
.hero__body > :nth-child(2) { animation-delay: .17s; }
.hero__body > :nth-child(3) { animation-delay: .29s; }
.hero__body > :nth-child(4) { animation-delay: .41s; }

/* Pages that open with a dark intro band instead of a photo hero get the
   same staggered entrance. */
.section--tight.on-ink > .wrap > * { animation: hero-in .85s cubic-bezier(.2,.7,.3,1) backwards; }
.section--tight.on-ink > .wrap > :nth-child(1) { animation-delay: .05s; }
.section--tight.on-ink > .wrap > :nth-child(2) { animation-delay: .17s; }
.section--tight.on-ink > .wrap > :nth-child(3) { animation-delay: .29s; }

/* ---- Facts bar pinned under the hero ---------------------------------- */
.herobar {
  position: relative;
  z-index: 2;
  background: rgba(8, 19, 30, .82);
  backdrop-filter: saturate(150%) blur(14px);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  border-top: 1px solid rgba(169,211,233,.16);
  color: var(--on-dark);
}
.herobar__in {
  display: grid;
  gap: 0;
  grid-template-columns: 1fr;
}
@media (min-width: 48rem) { .herobar__in { grid-template-columns: repeat(3, 1fr) auto; } }
.herobar__cell {
  padding: 1.15rem 0;
  display: grid;
  gap: .22rem;
  align-content: center;
  border-bottom: 1px solid rgba(169,211,233,.12);
}
.herobar__cell:last-child { border-bottom: 0; }
@media (min-width: 48rem) {
  .herobar__cell { padding: 1.35rem 1.75rem; border-bottom: 0; border-left: 1px solid rgba(169,211,233,.12); }
  .herobar__cell:first-child { padding-left: 0; border-left: 0; }
  .herobar__cell--cta { padding-right: 0; }
}
.herobar__k {
  font-family: var(--mono);
  font-size: .64rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--wheat);
}
.herobar__v {
  font-family: var(--display);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 700;
  letter-spacing: -.018em;
  line-height: 1.2;
  color: #fff;
}
.herobar__m { font-size: .82rem; color: var(--on-dark-2); line-height: 1.35; }
.herobar__cell--cta { display: flex; align-items: center; }

/* ---- Compact photographic hero for interior pages ---------------------- */
.hero--sub { min-height: min(58vh, 30rem); }
.hero--sub h1 { font-size: clamp(2.3rem, 5.6vw, 4rem); }
.hero--sub .hero__body { padding-block: clamp(3rem, 7vw, 4.5rem); }


.hero {
  position: relative;
  background: var(--ink);
  color: var(--on-dark);
  overflow: hidden;
  isolation: isolate;
}
.hero::before {          /* sectional-chart hairline grid */
  content: "";
  position: absolute; inset: 0;
  background-image: var(--chart-grid);
  background-size: 46px 46px;
  mask-image: radial-gradient(120% 90% at 72% 18%, #000 0%, transparent 72%);
  -webkit-mask-image: radial-gradient(120% 90% at 72% 18%, #000 0%, transparent 72%);
  z-index: -2;
}
.hero::after {           /* warm horizon wash */
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(70% 50% at 78% 8%,  rgba(46,125,168,.42), transparent 62%),
    radial-gradient(60% 55% at 12% 96%, rgba(232,163,61,.14), transparent 60%);
  z-index: -2;
}
.hero__mark {            /* oversized brand ink-mark, watermarked */
  position: absolute;
  right: -6%;
  top: 46%;
  width: min(60rem, 78%);
  color: #fff;
  opacity: .055;
  transform: rotate(-6deg);
  pointer-events: none;
  z-index: -1;
}
.hero__in {
  padding-block: clamp(3.5rem, 9vw, 7rem) clamp(3rem, 7vw, 5rem);
  display: grid;
  gap: clamp(2.5rem, 5vw, 4rem);
}
@media (min-width: 64rem) {
  .hero__in { grid-template-columns: 1.15fr .85fr; align-items: center; }
}
.hero h1 {
  font-size: clamp(2.6rem, 6.6vw, 4.8rem);
  font-weight: 800;
  line-height: .98;
  letter-spacing: -.03em;
  color: #fff;
  margin-bottom: .45em;
}
.hero h1 em {
  font-style: normal;
  color: var(--wheat);
}
.hero__lede {
  font-size: clamp(1.08rem, 1.7vw, 1.3rem);
  line-height: 1.55;
  color: var(--on-dark-2);
  max-width: 46ch;
  margin-bottom: 2rem;
}
.hero__states {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 1.75rem;
}
.state-chip {
  font-family: var(--mono);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .34rem .7rem;
  border: 1px solid var(--line-dark);
  border-radius: 100px;
  color: var(--sky-200);
  background: rgba(169,211,233,.05);
}

/* Small framed photo, sized to the legacy assets so nothing is upscaled */
.plate {
  position: relative;
  background: var(--paper);
  padding: .7rem .7rem 2.6rem;
  border-radius: 3px;
  box-shadow: var(--shadow-3);
  rotate: -1.6deg;
  max-width: 22rem;
}
.plate img { border-radius: 1px; width: 100%; }
.plate figcaption {
  position: absolute;
  left: .95rem; right: .95rem; bottom: .8rem;
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.4;
}

/* ---------------------------------------------- 08 Flight strip (facts) */
.strip {
  background: var(--paper);
  color: var(--text);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-3);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.06);
}
.strip__head {
  background: var(--ink-800);
  color: #fff;
  padding: .8rem 1.4rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: .25rem 1rem;
  min-width: 0;
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.strip__head span:last-child { color: var(--wheat); }
.strip__body { padding: 1.6rem 1.4rem 1.4rem; }
.strip__row {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: .5rem 1rem;
  padding: .85rem 0;
  border-bottom: 1px dashed var(--line);
  align-items: baseline;
}
.strip__row:last-of-type { border-bottom: 0; }
.strip__k {
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}
.strip__v { font-weight: 600; line-height: 1.4; }
.strip__v small { display: block; font-weight: 400; color: var(--text-2); font-size: .86rem; }
.strip__v--big {
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.1;
}
.strip__foot { padding: 0 1.4rem 1.4rem; }

/* --------------------------------------------------- 09 Cards & grids */
.grid {
  display: grid;
  gap: clamp(1.1rem, 2.2vw, 1.6rem);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 17rem), 1fr));
}
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 21rem), 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 13.5rem), 1fr)); }

/* ---- Shared card surface ------------------------------------------------
   .card, .person and .pay are one system: same paper, hairline, radius, gold
   top rule and lift on hover. Change it here and every card follows.
   ---------------------------------------------------------------------- */
.card, .person, .pay {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
/* The gold rule sits inside the radius so it never clips square. */
.card::before, .person::before {
  content: "";
  position: absolute;
  left: var(--r-lg); right: var(--r-lg); top: -1px;
  height: 3px;
  background: var(--wheat);
  border-radius: 0 0 3px 3px;
}
.card:hover, .person:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-2);
  border-color: var(--paper-4);
}

.card {
  padding: clamp(1.3rem, 2.4vw, 1.85rem);
  display: flex;
  flex-direction: column;
  gap: .55rem;
}
.card__foot { margin-top: auto; padding-top: .55rem; }
.card h3 { margin-bottom: .1rem; }
.card p { color: var(--text-2); font-size: .97rem; text-wrap: pretty; }

.card--link a::after {           /* full-card click target */
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
}

/* One label style for every card's kicker, whether it's a number, a state or
   a board role. */
.card__num, .person__role {
  font-family: var(--mono);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--wheat-700);
}

.card__icon {
  width: 2.6rem; height: 2.6rem;
  display: grid; place-items: center;
  border-radius: var(--r);
  background: var(--sky-100);
  color: var(--ink-700);
  margin-bottom: .5rem;
}
.card__icon svg { width: 1.4rem; height: 1.4rem; }

.card--ink {
  background: var(--ink-900);
  border-color: transparent;
  color: var(--on-dark);
}
.card--ink::before { background: var(--sky-400); }
.card--ink:hover { border-color: transparent; }
.card--ink h3 { color: #fff; }
.card--ink p { color: var(--on-dark-2); }


/* ------------------------------------------------------- 10 State map */
.statemap { width: 100%; height: auto; }
.statemap__land {
  fill: #17303f;
  stroke: var(--sky-400);
  stroke-width: 1.8;
  stroke-opacity: .65;
  stroke-linejoin: round;
  transition: fill .3s ease;
}
.statemap__label {
  font-family: var(--display);
  font-weight: 800;
  font-size: 19px;
  letter-spacing: .08em;
  fill: var(--sky-200);
  text-anchor: middle;
  pointer-events: none;
}
.statemap g { cursor: default; }
.statemap g:hover .statemap__land { fill: var(--ink-600); stroke-opacity: 1; }
.statemap g:hover .statemap__label { fill: var(--wheat); }

.states {
  display: grid;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}
@media (min-width: 60rem) { .states { grid-template-columns: 1.25fr 1fr; } }

.state-list { display: grid; gap: .1rem; }
.state-list__item {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: .85rem 0;
  border-bottom: 1px solid var(--line-dark);
}
.state-list__ab {
  font-family: var(--display);
  font-size: 1.6rem;
  font-weight: 800;
  font-variation-settings: "wdth" 85;
  color: var(--wheat);
  min-width: 2.6rem;
  letter-spacing: -.01em;
}
.state-list__name { font-weight: 600; color: #fff; }
.state-list__meta { font-family: var(--mono); font-size: .78rem; color: var(--on-dark-2); margin-left: auto; }

/* --------------------------------------------------------- 11 Schedule */
.daytabs {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--line);
  padding-bottom: 1rem;
}
.daytab {
  display: grid;
  gap: .1rem;
  padding: .7rem 1.15rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  text-decoration: none;
  color: var(--text);
  transition: border-color .15s ease, background-color .15s ease, transform .15s ease;
}
.daytab:hover { border-color: var(--paper-4); box-shadow: var(--shadow-1); transform: translateY(-2px); color: var(--text); }
.daytab__d {
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--wheat-700);
}
.daytab__n { font-family: var(--display); font-weight: 700; font-size: 1.02rem; }

.day { margin-bottom: clamp(2.5rem, 5vw, 3.5rem); scroll-margin-top: 7rem; }
.day__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: .35rem 1rem;
  padding-bottom: .75rem;
  margin-bottom: .25rem;
  border-bottom: 2px solid var(--ink);
}
.day__date {
  font-family: var(--display);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 800;
  letter-spacing: -.02em;
}
.day__dow {
  font-family: var(--mono);
  font-size: .74rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
}

.slot {
  display: grid;
  grid-template-columns: 10.5rem minmax(0, 1fr);
  gap: .35rem 1.5rem;
  padding: 1.05rem .35rem;
  border-bottom: 1px solid var(--line-soft);
  align-items: start;
  transition: background-color .15s ease;
}
.slot:hover { background: var(--paper-2); }
.slot__time {
  font-family: var(--mono);
  font-size: .84rem;
  font-weight: 500;
  color: var(--ink-700);
  letter-spacing: -.02em;
  padding-top: .12rem;
  font-variant-numeric: tabular-nums;
}
.slot__title { display: block; font-weight: 600; line-height: 1.4; }
.slot__where {
  display: inline-flex;
  align-items: center;
  align-items: center;
  gap: .35rem;
  margin-top: .3rem;
  font-family: var(--mono);
  font-size: .74rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--muted);
}
.slot__where::before {
  content: "";
  width: .3rem; height: .3rem;
  border-radius: 50%;
  background: var(--paper-4);
}
.slot--key {
  background: var(--wheat-100);
  border-radius: var(--r);
  border-bottom-color: transparent;
  padding-inline: .9rem;
}
.slot--key:hover { background: #f8e4be; }
.slot--key .slot__title { font-weight: 700; }
.slot--key .slot__time { color: var(--wheat-700); font-weight: 600; }

.tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: .64rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .18rem .45rem;
  border-radius: 3px;
  background: var(--ink);
  color: #fff;
  margin-left: .5rem;
  vertical-align: 2px;
}
.tag--sky  { background: var(--sky); }
.tag--rust { background: var(--rust); }

@media (max-width: 44rem) {
  .slot { grid-template-columns: 1fr; gap: .2rem; }
  .slot__time { padding-top: 0; }
}

/* ------------------------------------------- 12 Registration / pay cards */
.pay-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 20rem), 1fr));
}
.pay {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.pay:hover { box-shadow: var(--shadow-2); border-color: var(--paper-4); }
.pay--feature { border-color: var(--ink); box-shadow: var(--shadow-2); }
.pay__head {
  padding: 1.1rem 1.35rem;
  background: var(--paper-2);
  border-bottom: 1px solid var(--line);
}
.pay--feature .pay__head { background: var(--ink); color: #fff; border-bottom-color: transparent; }
.pay--feature .pay__head h3 { color: #fff; }
.pay__head h3 { margin: 0 0 .15rem; font-size: 1.15rem; }
.pay__head p { margin: 0; font-size: .88rem; color: var(--text-2); }
.pay--feature .pay__head p { color: var(--on-dark-2); }
.pay__body {
  padding: 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}
.pay__price {
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1;
}
.pay__price small { font-family: var(--body); font-size: .85rem; font-weight: 500; color: var(--muted); letter-spacing: 0; }
.pay__rates { display: grid; gap: .4rem; margin: 0; padding: 0; list-style: none; }
.pay__rates li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: .45rem 0;
  border-bottom: 1px dotted var(--line);
  font-size: .95rem;
}
.pay__rates li:last-child { border-bottom: 0; }
.pay__rates b { font-family: var(--mono); font-weight: 600; font-size: .92rem; }
.pay__form { margin-top: auto; display: grid; gap: .7rem; }

.field { display: grid; gap: .3rem; }
.field > label {
  font-family: var(--mono);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}
.field input[type="text"],
.field select {
  width: 100%;
  padding: .68rem .8rem;
  font-family: var(--body);
  font-size: .97rem;
  color: var(--text);
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  transition: border-color .15s ease, background-color .15s ease;
}
.field input[type="text"]:hover,
.field select:hover { border-color: var(--paper-4); }
.field input[type="text"]:focus,
.field select:focus { background: #fff; border-color: var(--sky); }
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%236a7885' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .8rem center;
  background-size: .7rem;
  padding-right: 2.2rem;
}

.paypal-note {
  display: flex;
  align-items: center;
  gap: .45rem;
  font-size: .78rem;
  color: var(--muted);
  font-family: var(--mono);
  letter-spacing: .02em;
}
.paypal-note svg { width: .9rem; height: .9rem; flex: 0 0 auto; }

.cart-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.4rem;
  background: var(--ink);
  color: var(--on-dark);
  border-radius: var(--r-lg);
}
.cart-bar p { margin: 0; font-size: .93rem; color: var(--on-dark-2); max-width: 52ch; }
.cart-bar strong { color: #fff; }

/* ------------------------------------------------------- 13 Accordion */
.acc { border-top: 1px solid var(--line); }
.acc__item { border-bottom: 1px solid var(--line); }
.acc__q {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.35rem .25rem;
  background: none;
  border: 0;
  text-align: left;
  font-family: var(--display);
  font-size: clamp(1.02rem, 1.7vw, 1.18rem);
  font-weight: 700;
  letter-spacing: -.012em;
  color: var(--ink);
  cursor: pointer;
  line-height: 1.35;
}
.acc__q:hover { color: var(--ink-700); }
.acc__ico {
  flex: 0 0 auto;
  width: 1.5rem; height: 1.5rem;
  margin-left: auto;
  margin-top: .1rem;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1.5px solid var(--paper-4);
  position: relative;
  transition: background-color .2s ease, border-color .2s ease, transform .25s ease;
}
.acc__ico::before, .acc__ico::after {
  content: "";
  position: absolute;
  background: var(--ink);
  border-radius: 2px;
  transition: opacity .2s ease, background-color .2s ease;
}
.acc__ico::before { width: .68rem; height: 1.6px; }
.acc__ico::after  { width: 1.6px; height: .68rem; }
.acc__q[aria-expanded="true"] .acc__ico {
  background: var(--ink);
  border-color: var(--ink);
  transform: rotate(180deg);
}
.acc__q[aria-expanded="true"] .acc__ico::before { background: #fff; }
.acc__q[aria-expanded="true"] .acc__ico::after  { opacity: 0; }

.acc__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .3s cubic-bezier(.3,.8,.3,1);
}
.acc__a[data-open="true"] { grid-template-rows: 1fr; }
.acc__a > div { overflow: hidden; }
.acc__a p:first-child { padding-top: .1rem; }
.acc__a .inner { padding: 0 3rem 1.6rem .25rem; color: var(--text-2); max-width: 72ch; }

/* --------------------------------------------------------- 14 Directory */
.person {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  padding: 1.5rem 1.4rem 1.35rem;
}
/* Officers are distinguished by a warm wash, not a different frame. */
.person--officer { background: linear-gradient(180deg, var(--wheat-100) 0%, #fff 46%); }
.person__role {
  font-family: var(--mono);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--wheat-700);
}
.person__name {
  font-family: var(--display);
  font-size: 1.22rem;
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.15;
  margin: 0;
}
.person__where { font-size: .9rem; color: var(--text-2); line-height: 1.45; }
.person__links {
  display: grid;
  gap: .3rem;
  margin-top: .45rem;
  padding-top: .7rem;
  border-top: 1px dashed var(--line);
  font-size: .88rem;
}
/* Standalone rows, not inline links — sized for a thumb, since calling or
   emailing a director from a phone is the main thing this page is for. */
.person__links a {
  display: flex;
  align-items: center;
  gap: .55rem;
  min-height: 2.5rem;
  padding: .3rem .4rem;
  margin-inline: -.4rem;
  border-radius: var(--r-sm);
  text-decoration: none;
  word-break: break-word;
}
.person__links a:hover { text-decoration: underline; background: var(--paper-2); }
.person__links svg { width: .85rem; height: .85rem; flex: 0 0 auto; opacity: .55; }

.state-band {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: clamp(2.5rem, 5vw, 3.5rem) 0 1.5rem;
}
.state-band__ab {
  font-family: var(--display);
  font-size: clamp(1.6rem, 3.4vw, 2.2rem);
  font-weight: 800;
  font-variation-settings: "wdth" 85;
  letter-spacing: -.02em;
  color: var(--ink);
}
.state-band__ln { flex: 1; height: 1px; background: var(--line); }
.state-band__n {
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
}

/* -------------------------------------------------------- 15 Logo wall */
/* Cleaned, single-tone, transparent logo files sit on a uniform grid — every
   cell the same height, every mark the same optical weight. */
.logowall {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(10.5rem, 1fr));
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.logowall__cell {
  background: #fff;
  aspect-ratio: 11 / 6;
  display: grid;
  place-items: center;
  padding: 1.15rem 1.35rem;
  min-width: 0;
  transition: background-color .25s ease;
}
.logowall__cell:hover { background: var(--paper); }
.logowall__cell img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: .62;
  transition: opacity .25s ease, transform .25s ease;
}
.logowall__cell:hover img { opacity: 1; transform: scale(1.04); }

@media (max-width: 34rem) {
  .logowall { grid-template-columns: repeat(auto-fill, minmax(8rem, 1fr)); }
  .logowall__cell { padding: .8rem .9rem; }
}

/* ---- Collage (home, "the work") ----------------------------------------
   Two overlapping photo plates and a stat card, composed to fill the column
   that a single small photo used to rattle around in.
   ---------------------------------------------------------------------- */
.collage {
  position: relative;
  min-height: 34rem;
}
.collage .plate { position: absolute; max-width: none; margin: 0; }
.collage__a { width: 60%; left: 0; top: 0; rotate: -2.5deg; z-index: 1; }
.collage__b { width: 46%; right: 0; top: 22%; rotate: 2.2deg; z-index: 2; }
.collage__stat {
  position: absolute;
  /* Sits left of plate B so it never covers B's caption. */
  left: 0;
  bottom: 0;
  width: 50%;
  z-index: 3;
  gap: .35rem;
  box-shadow: var(--shadow-3);
}
.collage__num {
  font-family: var(--display);
  font-variation-settings: "wdth" 88;
  font-size: clamp(2.6rem, 4vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1;
  color: var(--wheat);
}
.collage__stat p { font-size: .95rem; line-height: 1.5; }
.collage__stat strong { color: #fff; }
.collage__src {
  font-family: var(--mono);
  font-size: .64rem !important;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--on-dark-2);
}
@media (max-width: 61.99rem) {
  .collage { min-height: 0; display: grid; gap: 1.25rem; justify-items: center; }
  .collage .plate { position: static; width: min(24rem, 92%); }
  .collage__stat { position: static; width: min(24rem, 92%); }
}

/* ------------------------------------------------------ 16 Prose blocks */
.prose { max-width: 72ch; }
.prose > * + * { margin-top: 1.15em; }
.prose h2 { margin-top: 2.2em; }
.prose h3 { margin-top: 1.8em; }
.prose h2:first-child, .prose h3:first-child { margin-top: 0; }
.prose ul, .prose ol { padding-left: 1.35rem; margin-block: 0; }
.prose li + li { margin-top: .45em; }
.prose li::marker { color: var(--wheat-600); }
.prose blockquote {
  margin: 2rem 0;
  padding: .3rem 0 .3rem 1.5rem;
  border-left: 3px solid var(--wheat);
  font-size: 1.1rem;
  line-height: 1.55;
  color: var(--text-2);
}
.prose blockquote cite {
  display: block;
  margin-top: .7rem;
  font-family: var(--mono);
  font-size: .78rem;
  font-style: normal;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
}
.prose figure { margin: 2rem 0; }
.prose figcaption {
  margin-top: .6rem;
  font-family: var(--mono);
  font-size: .76rem;
  letter-spacing: .04em;
  color: var(--muted);
}

.float-r {
  float: right;
  margin: .25rem 0 1.25rem 1.75rem;
  max-width: 45%;
  border-radius: var(--r);
  box-shadow: var(--shadow-1);
}
@media (max-width: 40rem) {
  .float-r { float: none; margin: 0 0 1.5rem; max-width: 100%; }
}

.link-list { list-style: none; padding: 0; margin: 0; display: grid; gap: .1rem; }
.link-list li { border-bottom: 1px solid var(--line-soft); }
.link-list a {
  display: flex;
  align-items: center;
  gap: .7rem;
  padding: .75rem .25rem;
  text-decoration: none;
  font-weight: 500;
  color: var(--text);
  transition: padding-left .18s ease, color .18s ease;
}
.link-list a:hover { padding-left: .7rem; color: var(--sky); }
.link-list a::before {
  content: "";
  width: .35rem; height: .35rem;
  flex: 0 0 auto;
  background: var(--wheat);
  border-radius: 50%;
}
.link-list a[target="_blank"]::after {
  content: "\2197";
  margin-left: auto;
  color: var(--muted);
  font-size: .85em;
}

/* ------------------------------------------------ 17 Callouts & notices */
.note {
  display: flex;
  gap: 1rem;
  padding: 1.15rem 1.35rem;
  background: var(--sky-100);
  border: 1px solid var(--sky-200);
  border-radius: var(--r);
  font-size: .97rem;
  line-height: 1.55;
}
.note--warn  { background: var(--wheat-100); border-color: #eccf97; }
.note--quiet { background: var(--paper-2); border-color: var(--line); }
.note__ico { flex: 0 0 auto; width: 1.35rem; height: 1.35rem; margin-top: .1rem; color: var(--ink-700); }
.note p { margin: 0; }
.note p + p { margin-top: .6rem; }
.note strong { color: var(--ink); }

.banner-cta {
  position: relative;
  background: var(--ink);
  color: var(--on-dark);
  border-radius: var(--r-lg);
  padding: clamp(2rem, 5vw, 3.25rem);
  overflow: hidden;
  isolation: isolate;
}
.banner-cta::before {
  content: "";
  position: absolute; inset: 0;
  background-image: var(--chart-grid);
  background-size: 34px 34px;
  mask-image: radial-gradient(90% 120% at 88% 10%, #000, transparent 70%);
  -webkit-mask-image: radial-gradient(90% 120% at 88% 10%, #000, transparent 70%);
  z-index: -1;
}
.banner-cta h2 { color: #fff; margin-bottom: .35em; }
.banner-cta p { color: var(--on-dark-2); max-width: 54ch; }

/* ------------------------------------------------------------ 18 Footer */
.footer {
  background: var(--ink);
  color: var(--on-dark-2);
  font-size: .93rem;
  border-top: 4px solid var(--wheat);
}
.footer a { color: var(--on-dark-2); text-decoration: none; }
.footer a:hover { color: #fff; text-decoration: underline; }

.footer__top {
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
  padding-block: clamp(3rem, 6vw, 4.5rem) 2.5rem;
}
@media (min-width: 56rem)  { .footer__top { grid-template-columns: 1.4fr 1fr 1fr; } }

.footer__brand { max-width: 34ch; }
.footer__mark { width: 5.5rem; color: #fff; opacity: .9; margin-bottom: 1rem; }
.footer__name {
  font-family: var(--display);
  font-weight: 800;
  font-variation-settings: "wdth" 90;
  font-size: 1.15rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: -.015em;
  line-height: 1.15;
  margin: 0 0 .5rem;
}
.footer__tag {
  font-family: var(--mono);
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--wheat);
  margin-bottom: 1rem;
}

.footer__h {
  font-family: var(--mono);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 1rem;
  padding-bottom: .6rem;
  border-bottom: 1px solid var(--line-dark);
  letter-spacing: .18em;
}
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .5rem; }

/* Resource directory — the old left-hand link rail, given room to breathe */
.resources {
  padding-block: clamp(2.5rem, 5vw, 3.5rem);
  border-top: 1px solid var(--line-dark);
}
.resources__grid {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.25rem);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (min-width: 34rem) { .resources__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 60rem) { .resources__grid { grid-template-columns: repeat(6, minmax(0, 1fr)); } }
.resources ul { gap: .42rem; }
.resources a {
  font-size: .87rem;
  line-height: 1.4;
  display: inline-block;
  padding-block: .2rem;
}
@media (max-width: 48rem) {
  .footer ul { gap: .15rem; }
  .footer li > a, .resources a { display: block; min-height: 2.4rem; padding-block: .55rem; }
}

.footer__bar {
  border-top: 1px solid var(--line-dark);
  padding-block: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: .6rem 2rem;
  align-items: center;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: .74rem;
  letter-spacing: .03em;
  color: #7f95a6;
}
.footer__bar a { color: #7f95a6; }

/* ---- Back to top -------------------------------------------------------
   Appears once the page has been scrolled a screen or so. Hidden entirely
   until then, so it never sits over content on a short page.
   ---------------------------------------------------------------------- */
.totop {
  position: fixed;
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  z-index: 55;
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  padding: 0;
  background: var(--ink);
  color: #fff;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: var(--shadow-2);
  opacity: 0;
  transform: translateY(.6rem);
  transition: opacity .25s ease, transform .25s ease, background-color .2s ease;
}
.totop[hidden] { display: none; }
.totop.is-in { opacity: 1; transform: none; }
.totop:hover { background: var(--ink-700); }
.totop:active { transform: translateY(1px); }
.totop svg { width: 1.15rem; height: 1.15rem; }

@media print { .totop { display: none !important; } }

/* --------------------------------------------------------- 19 Utilities */
.center     { text-align: center; }
.mt-0  { margin-top: 0 !important; }
.mt-1  { margin-top: .75rem; }
.mt-2  { margin-top: 1.5rem; }
.mt-3  { margin-top: 2.25rem; }
.mt-4  { margin-top: 3rem; }
.mb-0  { margin-bottom: 0 !important; }
.mb-2  { margin-bottom: 1.5rem; }
.mb-3  { margin-bottom: 2.25rem; }
.muted { color: var(--muted); }
.small { font-size: .88rem; }
.nowrap { white-space: nowrap; }

/* Entrance animation — opt-in, respects reduced motion */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .6s cubic-bezier(.2,.7,.3,1), transform .6s cubic-bezier(.2,.7,.3,1);
}
.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ------------------------------------------------------------- 20 Print */
@media print {
  .topbar, .masthead, .nav-toggle, .nav-scrim, .footer__top, .resources,
  .banner-cta, .btn, .hero__mark { display: none !important; }
  body { background: #fff; color: #000; font-size: 11pt; }
  .hero, .on-ink, .card--ink { background: #fff !important; color: #000 !important; }
  .hero h1, .on-ink h1, .on-ink h2, .on-ink h3 { color: #000 !important; }
  .section { padding-block: 1rem; }
  .slot { break-inside: avoid; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 9pt; color: #555; }
}
