/* ============================================================
   APEX EAI — Final direction: "The Confluence"
   Aquifer's deep-water theme in the logo's own navy/steel/teal,
   with the Poster's bold separations, framed artwork, and
   vibrancy. Gold rides along as the accent that ties the
   WPA artwork to the dark water.
   Type: Newsreader (display) · Figtree (body) · JetBrains Mono
   ============================================================ */

:root {
  --abyss: #041020;
  --navy: #062038;
  --navy-2: #093054;
  --logo-navy: #003060;
  --panel: rgba(120, 168, 192, 0.07);
  --panel-line: rgba(120, 168, 192, 0.24);
  --steel: #78a8c0;
  --aqua: #54c8dc;
  --gold: #e0a32e;
  --text: #eaf3f9;
  --text-dim: #a3bdd1;
  --font-display: "Newsreader", Georgia, serif;
  --font-body: "Figtree", "Segoe UI", Arial, sans-serif;
  --font-mono: "JetBrains Mono", "SF Mono", Menlo, monospace;
  --maxw: 1220px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--abyss);
  color: var(--text);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--aqua); text-decoration: none; }
a:hover { text-decoration: underline; }
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  text-decoration: none;
}

img { max-width: 100%; height: auto; display: block; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(24px, 5vw, 56px); }

/* ---------- header with grouped nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(4, 16, 32, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--panel-line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 15px;
  padding-bottom: 13px;
}
.logo {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  isolation: isolate;
}
/* soft gaussian halo so the navy mark reads on dark water without a hard plate */
.logo::before {
  content: "";
  position: absolute;
  inset: -6px -10px;
  z-index: -1;
  background: radial-gradient(
    ellipse at 50% 50%,
    rgba(226, 240, 248, 0.95) 0%,
    rgba(214, 234, 245, 0.82) 38%,
    rgba(150, 200, 224, 0.35) 66%,
    rgba(84, 200, 220, 0) 82%
  );
  filter: blur(9px);
  transition: opacity 0.25s ease;
  opacity: 0.95;
}
.logo:hover::before { opacity: 1; }
.logo img { height: 36px; width: auto; display: block; }

.nav { display: flex; gap: clamp(6px, 1.2vw, 14px); align-items: center; }
.nav > a, .nav-group > button {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dim);
  padding: 8px 10px;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 8px;
}
.nav > a:hover, .nav-group > button:hover { color: var(--text); background: var(--panel); text-decoration: none; }
.nav > a[aria-current="page"] { color: var(--aqua); }

.nav-group { position: relative; }
.nav-group > button .caret {
  display: inline-block;
  margin-left: 6px;
  font-size: 10px;
  transition: transform 0.15s ease;
}
.nav-group.open > button .caret { transform: rotate(180deg); }
.nav-group.open > button { color: var(--text); background: var(--panel); }
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 240px;
  background: var(--navy);
  border: 1px solid var(--panel-line);
  border-top: 2px solid var(--gold);
  border-radius: 10px;
  padding: 8px;
  display: none;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5);
}
.nav-group.open .dropdown { display: block; }
.dropdown a {
  display: block;
  padding: 10px 12px;
  border-radius: 7px;
  color: var(--text-dim);
  font-size: 14.5px;
}
.dropdown a:hover { background: var(--panel); color: var(--text); text-decoration: none; }
.dropdown a[aria-current="page"] { color: var(--aqua); }
.dropdown a .d-note { display: block; font-size: 12px; color: var(--steel); opacity: 0.75; }

.nav .nav-cta {
  background: var(--gold);
  color: #241a05;
  font-weight: 700;
  padding: 9px 16px;
  border-radius: 999px;
  margin-left: 6px;
}
.nav .nav-cta:hover { background: #f0b845; color: #241a05; text-decoration: none; }
.nav .nav-cta .dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #1c8f43;
  margin-right: 7px;
  vertical-align: 1px;
}

.menu-btn {
  display: none;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: none;
  border: 1px solid var(--panel-line);
  border-radius: 8px;
  padding: 9px 15px;
  cursor: pointer;
  color: var(--text);
}
@media (max-width: 960px) {
  .menu-btn { display: block; }
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--abyss);
    border-bottom: 1px solid var(--panel-line);
    padding: 10px 24px 20px;
    gap: 0;
  }
  .nav.open { display: flex; }
  .nav > a, .nav-group > button { width: 100%; text-align: left; padding: 12px 6px; border-radius: 0; border-bottom: 1px solid rgba(120,168,192,0.1); }
  .dropdown {
    position: static;
    display: none;
    border: none;
    border-left: 2px solid var(--gold);
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    padding: 0 0 6px 12px;
  }
  .nav-group.open .dropdown { display: block; }
  .nav .nav-cta { margin: 14px 0 0; text-align: center; border-radius: 10px; }
}

/* ---------- depth gauge (kept from the Aquifer) ---------- */
.depth-gauge {
  position: fixed;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  height: 54vh;
  width: 44px;
  z-index: 40;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  pointer-events: none;
}
.depth-track {
  position: relative;
  flex: 1;
  width: 10px;
  border-right: 1px solid var(--panel-line);
  background: repeating-linear-gradient(to bottom, transparent 0, transparent calc(10% - 1px), var(--panel-line) calc(10% - 1px), var(--panel-line) 10%);
}
.depth-marker {
  position: absolute;
  right: -5px;
  top: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px rgba(224, 163, 46, 0.7);
}
.depth-readout {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-top: 10px;
  white-space: nowrap;
}
@media (max-width: 900px) { .depth-gauge { display: none; } }

/* ---------- sections with poster-grade separation ---------- */
section { position: relative; padding: clamp(64px, 8.5vw, 120px) 0; }
.sec-navy { background: linear-gradient(to bottom, var(--abyss), var(--navy)); }
.sec-navy-2 { background: linear-gradient(to bottom, var(--navy), var(--navy-2)); }
.sec-navy-3 { background: linear-gradient(to bottom, var(--navy-2), var(--navy)); }
.sec-navy-4 { background: linear-gradient(to bottom, var(--navy), var(--abyss)); }

/* gold seam divider — the poster's hard separation, underwater */
.seam-divider {
  height: 3px;
  background: linear-gradient(to right, transparent, var(--gold) 18%, var(--gold) 82%, transparent);
  opacity: 0.75;
}

.sec-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}
.sec-label::after {
  content: "";
  flex: 1;
  max-width: 170px;
  height: 1px;
  background: linear-gradient(to right, var(--gold), transparent);
  opacity: 0.6;
}
.sec-label .note { color: var(--text-dim); letter-spacing: 0.08em; }

/* ---------- type ---------- */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(44px, 6.2vw, 88px); font-optical-sizing: auto; }
h2 { font-size: clamp(30px, 4vw, 52px); }
h3 { font-size: clamp(20px, 2.2vw, 26px); }
h1 em, h2 em { font-style: italic; color: var(--aqua); }
.lede { font-size: clamp(17px, 1.5vw, 20px); color: var(--text-dim); max-width: 62ch; }

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}
.btn-primary { background: var(--gold); color: #241a05; box-shadow: 0 0 26px rgba(224, 163, 46, 0.25); }
.btn-primary:hover { background: #f0b845; text-decoration: none; transform: translateY(-1px); }
.btn-aqua { background: var(--aqua); color: #04222a; box-shadow: 0 0 24px rgba(84, 200, 220, 0.22); }
.btn-aqua:hover { background: #79d8e8; color: #04222a; text-decoration: none; transform: translateY(-1px); }
.btn-ghost { border-color: var(--panel-line); color: var(--text); }
.btn-ghost:hover { border-color: var(--steel); text-decoration: none; background: var(--panel); }
.btn-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }

/* ---------- hero ---------- */
.hero {
  min-height: 86vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--abyss);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/light-rays.jpg") center top / cover no-repeat;
  opacity: 0.5;
  mix-blend-mode: screen;
  pointer-events: none;
}
.hero-inner { position: relative; max-width: 860px; }
.hero .kicker {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--aqua);
  margin-bottom: 26px;
}
.hero .lede { margin-top: 28px; }
.hero .sub { margin-top: 18px; color: var(--steel); font-size: 15.5px; max-width: 58ch; }
.scroll-cue {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-dim);
}
@media (prefers-reduced-motion: no-preference) {
  .scroll-cue { animation: bob 2.6s ease-in-out infinite; }
  @keyframes bob { 0%, 100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 8px); } }
}

/* ---------- marquee band (poster energy, navy dress) ---------- */
.band {
  background: var(--logo-navy);
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  padding: 13px 0;
  overflow: hidden;
  white-space: nowrap;
}
.band .band-inner {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--steel);
}
.band .gold { color: var(--gold); }
@media (prefers-reduced-motion: no-preference) {
  .band .band-inner { animation: marquee 30s linear infinite; }
  @keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
}

/* ---------- panels & grids ---------- */
.panel {
  background: var(--panel);
  border: 1px solid var(--panel-line);
  border-radius: 14px;
  padding: clamp(22px, 3vw, 36px);
}
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
@media (max-width: 1020px) { .grid-4 { grid-template-columns: 1fr 1fr; } .grid-3 { grid-template-columns: 1fr; } }
@media (max-width: 640px) { .grid-2, .grid-4 { grid-template-columns: 1fr; } }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 72px); align-items: center; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } }

/* ---------- framed art cards (the Poster's visuals, underwater) ---------- */
.art-card {
  background: var(--navy);
  border: 1px solid var(--panel-line);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  box-shadow: 7px 7px 0 rgba(224, 163, 46, 0.12);
}
.art-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 10px 10px 0 rgba(224, 163, 46, 0.2);
  border-color: rgba(224, 163, 46, 0.5);
  text-decoration: none;
}
.art-card .art { border-bottom: 2px solid var(--gold); }
.art-card .art img { width: 100%; display: block; }
.art-card .a-body { padding: 20px 20px 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.art-card h3 { font-size: clamp(20px, 1.9vw, 24px); }
.art-card p { font-size: 14.5px; color: var(--text-dim); flex: 1; }
.art-card .motto { font-family: var(--font-display); font-style: italic; color: var(--aqua); font-size: 15.5px; }
.art-card .go { font-size: 14px; font-weight: 600; color: var(--text); }
.art-card .go::after { content: " →"; color: var(--gold); }

/* ---------- trusted-by band ---------- */
.trust-grid { display: grid; grid-template-columns: 1.35fr 1fr 1fr; gap: 22px; align-items: stretch; }
.trust-grid.two { grid-template-columns: 1.15fr 1fr; }
@media (max-width: 960px) { .trust-grid { grid-template-columns: 1fr; } }
.trust {
  background: var(--panel);
  border: 1px solid var(--panel-line);
  border-radius: 14px;
  padding: 24px 26px;
}
.trust.featured { border-color: rgba(224, 163, 46, 0.45); background: linear-gradient(135deg, rgba(224, 163, 46, 0.09), var(--panel) 55%); }
.trust .t-kind {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.trust h3 { font-size: 19px; font-family: var(--font-body); font-weight: 700; letter-spacing: 0; line-height: 1.3; }
.trust p { font-size: 14.5px; color: var(--text-dim); margin-top: 8px; }

/* ---------- lists ---------- */
.drop-list { list-style: none; display: flex; flex-direction: column; gap: 13px; margin-top: 24px; }
.drop-list li { position: relative; padding-left: 30px; color: var(--text-dim); font-size: 16px; }
.drop-list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  background: var(--aqua);
}
.drop-list li strong { color: var(--text); }

.seam {
  border-left: 2px solid var(--gold);
  padding: 16px 24px;
  background: linear-gradient(to right, rgba(224, 163, 46, 0.09), transparent);
  font-family: var(--font-display);
  font-size: clamp(19px, 2vw, 24px);
  font-style: italic;
  color: var(--text);
}

/* ---------- core sample ---------- */
.core-sample {
  font-family: var(--font-mono);
  font-size: 12.5px;
  line-height: 1.8;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--panel-line);
  border-radius: 14px;
  overflow: hidden;
}
.core-sample .cs-head {
  padding: 10px 18px;
  border-bottom: 1px solid var(--panel-line);
  color: var(--text-dim);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
}
.core-sample pre { padding: 18px 22px; overflow-x: auto; color: var(--text-dim); }
.core-sample .bad { color: #e08b74; }
.core-sample .good { color: var(--aqua); }
.core-sample .dim { color: #557089; }

/* ---------- ChatDoq full-width showcase ---------- */
.shot-wide {
  border: 1px solid var(--panel-line);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.45);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.55), 0 0 60px rgba(84, 200, 220, 0.08);
}
.shot-wide .shot-head {
  display: flex;
  justify-content: space-between;
  padding: 12px 18px;
  border-bottom: 1px solid var(--panel-line);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.shot-wide .shot-head .live { color: #4fd483; }
.shot-wide img { width: 100%; display: block; }

/* ---------- stats ---------- */
.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 900px) { .stat-row { grid-template-columns: 1fr 1fr; } }
.stat {
  background: var(--panel);
  border: 1px solid var(--panel-line);
  border-radius: 12px;
  padding: 18px 20px;
}
.stat .n { font-family: var(--font-display); font-size: clamp(32px, 3.4vw, 48px); color: var(--aqua); line-height: 1.05; }
.stat .l { color: var(--text-dim); font-size: 14px; margin-top: 6px; }

/* ---------- events ---------- */
.event {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 24px;
  padding: 26px 0;
  border-bottom: 1px solid var(--panel-line);
}
@media (max-width: 700px) { .event { grid-template-columns: 1fr; gap: 8px; } }
.event .when { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); }
.event .host {
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--steel);
  margin-bottom: 6px;
}
.event h3 { font-size: clamp(19px, 1.8vw, 23px); }
.event p { color: var(--text-dim); font-size: 15.5px; margin-top: 6px; }

/* ---------- team ---------- */
.person { overflow: hidden; padding: 0; background: var(--panel); border: 1px solid var(--panel-line); border-radius: 14px; }
.person img {
  width: 104px;
  height: 104px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 2px solid var(--gold);
  margin: 24px 0 0 24px;
}
.person .p-body { padding: 14px 24px 26px; }
.person .role { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin: 6px 0 12px; }
.person ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.person li { font-size: 13.5px; color: var(--text-dim); padding-left: 16px; position: relative; }
.person li::before { content: "·"; position: absolute; left: 2px; color: var(--aqua); }

/* ---------- bedrock CTA ---------- */
.bedrock { background: linear-gradient(to bottom, var(--abyss) 0%, #020a14 100%); text-align: center; padding-bottom: clamp(90px, 12vw, 150px); }
.bedrock::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.bedrock h2 { max-width: 22ch; margin: 0 auto; }
.bedrock .lede { margin: 26px auto 0; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 30px; }
.chips span {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  border: 1px solid var(--panel-line);
  border-radius: 999px;
  color: var(--steel);
  padding: 8px 16px;
}
.bedrock .btn-row { justify-content: center; }

/* ---------- cta band (subpages) ---------- */
.cta-band { background: linear-gradient(to bottom, var(--navy), var(--abyss)); border-top: 2px solid var(--gold); }
.cta-band .wrap { display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap; }
.cta-band h2 { font-size: clamp(26px, 3vw, 40px); }
.cta-band p { color: var(--text-dim); margin-top: 8px; max-width: 52ch; }

/* ---------- footer ---------- */
.site-footer {
  border-top: 1px solid var(--panel-line);
  background: #020b16;
  padding: 52px 0 42px;
  font-size: 14px;
  color: var(--text-dim);
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  font-weight: 500;
}
.site-footer ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.site-footer a { color: var(--text-dim); }
.site-footer a:hover { color: var(--text); }
.footer-logo-wrap {
  position: relative;
  display: inline-flex;
  padding: 8px 16px;
  margin-bottom: 18px;
  isolation: isolate;
}
.footer-logo-wrap::before {
  content: "";
  position: absolute;
  inset: -6px -10px;
  z-index: -1;
  background: radial-gradient(
    ellipse at 50% 50%,
    rgba(226, 240, 248, 0.92) 0%,
    rgba(214, 234, 245, 0.78) 38%,
    rgba(150, 200, 224, 0.3) 66%,
    rgba(84, 200, 220, 0) 82%
  );
  filter: blur(9px);
}
.footer-logo { height: 34px; width: auto; display: block; }
.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(120, 168, 192, 0.12);
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.04em;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

/* ---------- page hero (subpages) ---------- */
.page-hero { padding-top: clamp(70px, 9vw, 116px); background: linear-gradient(to bottom, var(--abyss), var(--navy)); }
.page-hero h1 { font-size: clamp(38px, 5vw, 68px); max-width: 22ch; }
.page-hero .lede { margin-top: 24px; }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .art-card, .btn { transition: none; }
  .band .band-inner { animation: none; }
}

/* ---------- production refinements ---------- */
.person { display: flex; flex-direction: column; }
.person h3 { font-size: 21px; }
@media (min-width: 620px) {
  .person { flex-direction: row; align-items: flex-start; }
  .person img { flex: none; margin: 26px 0 26px 26px; }
  .person .p-body { padding: 26px 26px 26px 18px; }
}
@media (max-width: 619px) {
  .person img { margin: 22px 0 0 22px; }
}
/* keep long event titles readable */
.event h3 { line-height: 1.18; }
.event p { max-width: 68ch; }
/* print */
@media print {
  body { background: #fff; color: #111; }
  .site-header, .depth-gauge, .band, .scroll-cue, .cta-band { display: none; }
  .hero::before { display: none; }
  section { padding: 24px 0; }
}
