/* ==========================================================================
   WVU RAIL — site stylesheet
   Hand-written; replaces the previous HTML5UP theme bundle.

   Contents
     01. Fonts
     02. Design tokens
     03. Reset & base
     04. Typography
     05. Layout primitives
     06. Buttons & links
     07. Site header / navigation
     08. Hero
     09. Statement + facts
     10. Projects
     11. People
     12. Join / contact
     13. Footer
     14. Page headers & prose pages
     15. Legacy theme-class compatibility (DSPIRA pages, apps)
     16. Motion & responsive
   ========================================================================== */

/* 01. Fonts ---------------------------------------------------------------- */

@font-face {
   font-family: "Instrument Serif";
   src: url("../fonts/instrument-serif-400.woff2") format("woff2");
   font-weight: 400;
   font-style: normal;
   font-display: swap;
}
@font-face {
   font-family: "Instrument Serif";
   src: url("../fonts/instrument-serif-400-italic.woff2") format("woff2");
   font-weight: 400;
   font-style: italic;
   font-display: swap;
}
@font-face {
   font-family: "Inter";
   src: url("../fonts/inter-var.woff2") format("woff2-variations");
   font-weight: 100 900;
   font-style: normal;
   font-display: swap;
}
@font-face {
   font-family: "JetBrains Mono";
   src: url("../fonts/jetbrains-mono-var.woff2") format("woff2-variations");
   font-weight: 100 800;
   font-style: normal;
   font-display: swap;
}

/* 02. Design tokens -------------------------------------------------------- */

:root {
   /* Surfaces — a deep, blue-shifted night rather than flat black */
   --ink-900: #04070e;
   --ink-850: #070b15;
   --ink-800: #0a101d;
   --ink-700: #0e1626;
   --ink-600: #142033;
   --ink-500: #1d2c42;

   /* Ink on dark */
   --paper: #f2f0eb;
   --paper-2: #a9b2c3;
   --paper-3: #7b8698;   /* >= 4.5:1 on every surface below */
   --paper-4: #737e91;   /* faintest text still passing AA */

   /* WVU Old Gold + Blue */
   --gold: #eaaa00;
   --gold-2: #ffc746;
   --gold-dim: rgba(234, 170, 0, 0.16);
   --wvu-blue: #002855;

   --line: rgba(255, 255, 255, 0.09);
   --line-2: rgba(255, 255, 255, 0.16);

   /* Type */
   --font-display: "Instrument Serif", "Iowan Old Style", Georgia, serif;
   --font-sans: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
   --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

   /* Rhythm */
   --gutter: clamp(1.25rem, 4vw, 3rem);
   --measure: 68ch;
   --radius: 14px;
   --radius-sm: 8px;

   --section-y: clamp(5rem, 11vh + 3rem, 9rem);

   --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
   --shadow: 0 1px 2px rgba(0, 0, 0, 0.4), 0 12px 32px -12px rgba(0, 0, 0, 0.7);
   --shadow-lift: 0 2px 4px rgba(0, 0, 0, 0.4), 0 28px 60px -20px rgba(0, 0, 0, 0.8);
}

/* 03. Reset & base --------------------------------------------------------- */

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

html {
   -webkit-text-size-adjust: 100%;
   scroll-behavior: smooth;
   scroll-padding-top: 9.5rem;
}

body {
   margin: 0;
   background: var(--ink-900);
   color: var(--paper);
   font-family: var(--font-sans);
   font-size: 1.0625rem;
   line-height: 1.65;
   font-weight: 380;
   letter-spacing: -0.003em;
   -webkit-font-smoothing: antialiased;
   -moz-osx-font-smoothing: grayscale;
   text-rendering: optimizeLegibility;
   overflow-x: hidden;
}

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

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

::selection {
   background: var(--gold);
   color: #14100a;
}

/* :focus first so browsers without :focus-visible still show a ring; the
   :focus-visible pair then narrows it to keyboard users where supported. */
:focus {
   outline: 2px solid var(--gold-2);
   outline-offset: 3px;
   border-radius: 3px;
}
:focus:not(:focus-visible) { outline: none; }
:focus-visible {
   outline: 2px solid var(--gold-2);
   outline-offset: 3px;
   border-radius: 3px;
}

.skip-link {
   position: absolute;
   left: 1rem;
   top: -100px;
   z-index: 200;
   background: var(--gold);
   color: #14100a;
   padding: 0.7rem 1.1rem;
   border-radius: var(--radius-sm);
   font: 600 0.875rem/1 var(--font-sans);
   text-decoration: none;
   transition: top 0.18s var(--ease);
}
.skip-link:focus { top: 1rem; }

.visually-hidden {
   position: absolute;
   width: 1px; height: 1px;
   margin: -1px; padding: 0;
   overflow: hidden;
   clip: rect(0 0 0 0);
   white-space: nowrap;
   border: 0;
}

/* 04. Typography ----------------------------------------------------------- */

h1, h2, h3, h4 {
   font-family: var(--font-display);
   font-weight: 400;
   line-height: 1.04;
   letter-spacing: -0.018em;
   margin: 0 0 0.5em;
   text-wrap: balance;
}

h1 { font-size: clamp(2.75rem, 6.4vw, 5.25rem); }
h2 { font-size: clamp(2.1rem, 4.4vw, 3.4rem); }
h3 { font-size: clamp(1.4rem, 2vw, 1.75rem); line-height: 1.16; }
h4 { font-size: 1.2rem; }

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

a {
   color: var(--gold);
   text-decoration-color: rgba(234, 170, 0, 0.35);
   text-underline-offset: 0.22em;
   text-decoration-thickness: 1px;
   transition: color 0.16s var(--ease), text-decoration-color 0.16s var(--ease);
}
a:hover { color: var(--gold-2); text-decoration-color: currentColor; }

strong, b { font-weight: 600; color: #fff; }

/* Small uppercase mono label with a leading rule — used to open every section */
.eyebrow {
   display: flex;
   align-items: center;
   gap: 0.85rem;
   font-family: var(--font-mono);
   font-size: 0.72rem;
   font-weight: 500;
   letter-spacing: 0.16em;
   text-transform: uppercase;
   color: var(--gold);
   margin: 0 0 1.4rem;
}
.eyebrow::before {
   content: "";
   width: 2rem;
   height: 1px;
   background: currentColor;
   opacity: 0.6;
   flex: none;
}
.eyebrow--center { justify-content: center; }
.eyebrow--plain::before { display: none; }

.lead {
   font-size: clamp(1.15rem, 1.6vw, 1.35rem);
   line-height: 1.55;
   color: var(--paper-2);
   max-width: 58ch;
}

.mono {
   font-family: var(--font-mono);
   font-size: 0.8rem;
   letter-spacing: 0.04em;
   color: var(--paper-3);
}

/* 05. Layout primitives ---------------------------------------------------- */

.container {
   width: 100%;
   max-width: 1220px;
   margin-inline: auto;
   padding-inline: var(--gutter);
}
.container--narrow { max-width: 860px; }

.section {
   padding-block: var(--section-y);
   position: relative;
}
.section--tint { background: var(--ink-850); }
.section--line { border-top: 1px solid var(--line); }

.section-head {
   display: grid;
   grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
   gap: clamp(1.5rem, 5vw, 4.5rem);
   align-items: end;
   margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.section-head > :last-child { margin-bottom: 0; }
.section-head h2 { margin-bottom: 0; }
.section-head > p { color: var(--paper-2); margin-bottom: 0; }

/* 06. Buttons -------------------------------------------------------------- */

.btn,
.button {
   --btn-bg: transparent;
   --btn-fg: var(--paper);
   --btn-bd: var(--line-2);
   display: inline-flex;
   align-items: center;
   gap: 0.6rem;
   padding: 0.82rem 1.4rem;
   border: 1px solid var(--btn-bd);
   border-radius: 100px;
   background: var(--btn-bg);
   color: var(--btn-fg);
   font-family: var(--font-sans);
   font-size: 0.9rem;
   font-weight: 500;
   letter-spacing: 0.005em;
   line-height: 1;
   text-decoration: none;
   cursor: pointer;
   transition: background 0.18s var(--ease), border-color 0.18s var(--ease),
      color 0.18s var(--ease), transform 0.18s var(--ease);
}
.btn:hover,
.button:hover {
   --btn-bd: var(--gold);
   color: var(--paper);
   transform: translateY(-1px);
}
.btn svg,
.button svg { flex: none; transition: transform 0.18s var(--ease); }
.btn:hover svg,
.button:hover svg { transform: translateX(3px); }

.btn--primary,
.button.special {
   --btn-bg: var(--gold);
   --btn-fg: #16110a;
   --btn-bd: var(--gold);
   font-weight: 600;
}
.btn--primary:hover,
.button.special:hover {
   --btn-bg: var(--gold-2);
   --btn-bd: var(--gold-2);
   color: #16110a;
}

.btn-row {
   display: flex;
   flex-wrap: wrap;
   gap: 0.75rem;
   margin-top: 2rem;
}

/* Quiet inline "more" link with an arrow */
.arrow-link {
   display: inline-flex;
   align-items: center;
   gap: 0.45rem;
   font-family: var(--font-mono);
   font-size: 0.78rem;
   font-weight: 500;
   letter-spacing: 0.09em;
   text-transform: uppercase;
   text-decoration: none;
   color: var(--gold);
}
.arrow-link svg { transition: transform 0.2s var(--ease); }
.arrow-link:hover svg { transform: translateX(4px); }

/* 07. Site header ---------------------------------------------------------- */

.site-header {
   position: fixed;
   inset: 0 0 auto 0;
   z-index: 100;
   transition: background 0.3s var(--ease), border-color 0.3s var(--ease),
      backdrop-filter 0.3s var(--ease);
   border-bottom: 1px solid transparent;
}
.site-header.is-stuck {
   background: rgba(4, 7, 14, 0.78);
   backdrop-filter: saturate(160%) blur(14px);
   -webkit-backdrop-filter: saturate(160%) blur(14px);
   border-bottom-color: var(--line);
}

.site-header .container {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 1.5rem;
   height: 74px;
}

.brand {
   display: inline-flex;
   align-items: baseline;
   gap: 0.5rem;
   text-decoration: none;
   color: var(--paper);
   font-family: var(--font-display);
   font-size: 1.3rem;
   letter-spacing: 0.01em;
   white-space: nowrap;
}
.brand:hover { color: var(--paper); }
.brand .brand-wvu { color: var(--paper-3); transition: color 0.2s var(--ease); }
.brand:hover .brand-wvu { color: var(--gold); }
.brand .brand-wave {
   color: var(--gold);
   font-size: 1.05em;
   transform: translateY(-0.06em);
   display: inline-block;
}

.site-nav { display: flex; align-items: center; gap: 0.35rem; }
.site-nav a {
   position: relative;
   padding: 0.5rem 0.9rem;
   font-size: 0.9rem;
   font-weight: 450;
   color: var(--paper-2);
   text-decoration: none;
   border-radius: 6px;
   transition: color 0.16s var(--ease);
}
.site-nav a::after {
   content: "";
   position: absolute;
   left: 0.9rem;
   right: 0.9rem;
   bottom: 0.15rem;
   height: 1px;
   background: var(--gold);
   transform: scaleX(0);
   transform-origin: left;
   transition: transform 0.22s var(--ease);
}
.site-nav a:hover { color: var(--paper); }
.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after { transform: scaleX(1); }
.site-nav a[aria-current="page"] { color: var(--paper); }
.site-nav a.btn {
   margin-left: 0.6rem;
   padding: 0.62rem 1.1rem;
   color: var(--btn-fg);
}
.site-nav a.btn::after { display: none; }
.site-nav a.btn:hover { color: var(--btn-fg); }

.nav-toggle {
   display: none;
   width: 42px; height: 42px;
   align-items: center;
   justify-content: center;
   border: 1px solid var(--line-2);
   border-radius: 8px;
   background: transparent;
   color: var(--paper);
   cursor: pointer;
}
.nav-toggle span {
   position: relative;
   display: block;
   width: 17px; height: 1.5px;
   background: currentColor;
   transition: background 0.2s var(--ease);
}
.nav-toggle span::before,
.nav-toggle span::after {
   content: "";
   position: absolute;
   left: 0;
   width: 17px; height: 1.5px;
   background: currentColor;
   transition: transform 0.24s var(--ease);
}
.nav-toggle span::before { top: -5.5px; }
.nav-toggle span::after { top: 5.5px; }
[data-nav-open] .nav-toggle span { background: transparent; }
[data-nav-open] .nav-toggle span::before { transform: translateY(5.5px) rotate(45deg); }
[data-nav-open] .nav-toggle span::after { transform: translateY(-5.5px) rotate(-45deg); }

/* 08. Hero ----------------------------------------------------------------- */

.hero {
   position: relative;
   min-height: 100vh;        /* fallback for browsers without svh */
   min-height: 100svh;
   display: flex;
   align-items: center;
   overflow: hidden;
   padding-block: 8rem 5rem;
   isolation: isolate;
}

.hero-bg {
   position: absolute;
   inset: 0;
   z-index: -2;
   overflow: hidden;
   background: radial-gradient(120% 90% at 50% 8%, #0d1b30 0%, #060b16 45%, var(--ink-900) 100%);
}
/* The dish-panel photograph, desaturated and dimmed into a geometric texture */
.hero-bg img {
   position: absolute;
   inset: 0;
   width: 100%;
   height: 100%;
   object-fit: cover;
   object-position: 50% 62%;
   opacity: 0.2;
   filter: grayscale(1) contrast(1.35) brightness(0.72);
   mix-blend-mode: luminosity;
   transform: scale(1.06);
}
.hero-bg::after {
   content: "";
   position: absolute;
   inset: 0;
   background:
      radial-gradient(70% 55% at 50% 100%, rgba(234, 170, 0, 0.12), transparent 70%),
      linear-gradient(to bottom, rgba(4, 7, 14, 0.55) 0%, rgba(4, 7, 14, 0.2) 38%, rgba(4, 7, 14, 0.9) 88%, var(--ink-900) 100%);
}

/* Starfield + signal trace */
#sky {
   position: absolute;
   inset: 0;
   z-index: -1;
   width: 100%;
   height: 100%;
   pointer-events: none;
}

.hero-inner { position: relative; width: 100%; }

.hero h1 {
   font-size: clamp(2.9rem, 7vw, 6rem);
   line-height: 1;
   letter-spacing: -0.025em;
   margin: 0 0 1.6rem;
   max-width: 18ch;
   text-wrap: balance;
}
.hero h1 em {
   font-style: italic;
   color: var(--gold);
}
.hero .lead { max-width: 54ch; font-size: clamp(1.1rem, 1.5vw, 1.3rem); }

.hero-meta {
   display: flex;
   flex-wrap: wrap;
   align-items: center;
   gap: 0.55rem 1.4rem;
   margin-top: 3rem;
   padding-top: 1.5rem;
   border-top: 1px solid var(--line);
   font-family: var(--font-mono);
   font-size: 0.72rem;
   letter-spacing: 0.12em;
   text-transform: uppercase;
   color: var(--paper-3);
}
.hero-meta a { color: var(--paper-2); text-decoration: none; }
.hero-meta a:hover { color: var(--gold); }
.hero-meta .dot { color: var(--paper-4); }

.scroll-cue {
   position: absolute;
   left: 50%;
   bottom: 1.75rem;
   transform: translateX(-50%);
   display: flex;
   flex-direction: column;
   align-items: center;
   gap: 0.6rem;
   font-family: var(--font-mono);
   font-size: 0.62rem;
   letter-spacing: 0.2em;
   text-transform: uppercase;
   color: var(--paper-3);
   text-decoration: none;
}
.scroll-cue:hover { color: var(--gold); }
.scroll-cue .rule {
   width: 1px;
   height: 42px;
   background: linear-gradient(to bottom, var(--line-2), transparent);
   position: relative;
   overflow: hidden;
}
.scroll-cue .rule::after {
   content: "";
   position: absolute;
   inset: 0 auto auto 0;
   width: 1px;
   height: 14px;
   background: var(--gold);
   animation: cue 2.4s var(--ease) infinite;
}
@keyframes cue {
   0% { transform: translateY(-16px); opacity: 0; }
   35% { opacity: 1; }
   100% { transform: translateY(44px); opacity: 0; }
}

/* 09. Statement + facts ---------------------------------------------------- */

.statement {
   display: grid;
   grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
   gap: clamp(2rem, 6vw, 5rem);
   align-items: start;
}
.statement-side > :first-child { margin-top: 0; }
.statement-lead {
   font-family: var(--font-display);
   font-size: clamp(1.6rem, 2.9vw, 2.35rem);
   line-height: 1.24;
   letter-spacing: -0.015em;
   color: var(--paper);
   margin: 0;
   text-wrap: pretty;
}
.statement-lead em { font-style: italic; color: var(--gold); }
.statement-body { color: var(--paper-2); }
.statement-body p + p { margin-top: 1.1em; }

/* Award / highlight note */
.note {
   margin-top: 2rem;
   padding: 1.4rem 1.5rem;
   border: 1px solid var(--line);
   border-left: 2px solid var(--gold);
   border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
   background: linear-gradient(90deg, var(--gold-dim), transparent 65%);
   color: var(--paper-2);
   font-size: 0.98rem;
}
.note .note-label {
   display: block;
   font-family: var(--font-mono);
   font-size: 0.68rem;
   letter-spacing: 0.16em;
   text-transform: uppercase;
   color: var(--gold);
   margin-bottom: 0.5rem;
}

/* Where we build — a compact stat/fact strip */
.facts {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
   gap: 1px;
   margin-top: clamp(3rem, 6vw, 4.5rem);
   background: var(--line);
   border: 1px solid var(--line);
   border-radius: var(--radius);
   overflow: hidden;
}
.fact {
   background: var(--ink-850);
   padding: 1.6rem 1.5rem;
}
.fact dt {
   font-family: var(--font-mono);
   font-size: 0.68rem;
   letter-spacing: 0.15em;
   text-transform: uppercase;
   color: var(--paper-3);
   margin-bottom: 0.7rem;
}
.fact dd {
   margin: 0;
   font-family: var(--font-display);
   font-size: 1.6rem;
   line-height: 1.15;
   color: var(--paper);
}
.fact dd small {
   display: block;
   font-family: var(--font-sans);
   font-size: 0.82rem;
   color: var(--paper-3);
   margin-top: 0.35rem;
   letter-spacing: 0;
}

/* --- Where we work -------------------------------------------------------- */

.sites {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
   gap: 1px;
   background: var(--line);
   border: 1px solid var(--line);
   border-radius: var(--radius);
   overflow: hidden;
}
.site {
   background: var(--ink-850);
   padding: 1.75rem 1.6rem 1.9rem;
   display: flex;
   flex-direction: column;
}
.site-region {
   font-family: var(--font-mono);
   font-size: 0.66rem;
   letter-spacing: 0.16em;
   text-transform: uppercase;
   color: var(--gold);
   margin: 0 0 0.55rem;
}
.site-place {
   font-size: 1.55rem;
   line-height: 1.1;
   margin: 0 0 1.25rem;
   padding-bottom: 1.25rem;
   border-bottom: 1px solid var(--line);
   color: var(--paper);
}
.site-list { list-style: none; margin: 0; padding: 0; }
.site-list li + li { margin-top: 1rem; }
.site-name {
   display: inline-flex;
   align-items: center;
   gap: 0.4rem;
   font-size: 0.95rem;
   font-weight: 500;
   color: var(--paper);
   text-decoration: none;
}
a.site-name svg { opacity: 0; transition: opacity 0.18s var(--ease); }
a.site-name:hover { color: var(--gold); }
a.site-name:hover svg { opacity: 1; }
.site-note {
   display: block;
   margin-top: 0.15rem;
   font-size: 0.85rem;
   line-height: 1.5;
   color: var(--paper-3);
}

/* 10. Science education --------------------------------------------------- */

.ed-grid {
   display: grid;
   grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
   gap: clamp(2rem, 5vw, 4rem);
   align-items: start;
}
.ed-media {
   position: relative;
   border-radius: var(--radius);
   overflow: hidden;
   border: 1px solid var(--line);
   background: var(--ink-700);
}
.ed-media img {
   width: 100%;
   aspect-ratio: 4 / 5;
   object-fit: cover;
   filter: saturate(0.92) brightness(0.95);
}

.ed-points {
   counter-reset: ed;
   list-style: none;
   margin: 0 0 2rem;
   padding: 0;
   border-top: 1px solid var(--line);
}
.ed-points li {
   counter-increment: ed;
   position: relative;
   padding: 1.4rem 0 1.4rem 3rem;
   border-bottom: 1px solid var(--line);
}
.ed-points li::before {
   content: counter(ed, decimal-leading-zero);
   position: absolute;
   left: 0;
   top: 1.55rem;
   font-family: var(--font-mono);
   font-size: 0.72rem;
   letter-spacing: 0.1em;
   color: var(--gold);
}
.ed-points h3 { font-size: 1.25rem; margin: 0 0 0.35rem; }
.ed-points p { margin: 0; font-size: 0.94rem; line-height: 1.6; color: var(--paper-2); }

.ed-archive {
   display: flex;
   flex-wrap: wrap;
   align-items: center;
   gap: 0.5rem 0.9rem;
   margin: 1.75rem 0 0;
   padding-top: 1.5rem;
   border-top: 1px solid var(--line);
   font-family: var(--font-mono);
   font-size: 0.72rem;
   letter-spacing: 0.12em;
   text-transform: uppercase;
}
.ed-archive span { color: var(--paper-3); }
.ed-archive a { color: var(--paper-2); text-decoration: none; }
.ed-archive a:hover { color: var(--gold); }

/* 11. People --------------------------------------------------------------- */

.people-block + .people-block { margin-top: clamp(3rem, 6vw, 4.5rem); }

.people-block-title {
   display: flex;
   align-items: baseline;
   gap: 1rem;
   margin: 0 0 1.75rem;
   font-family: var(--font-mono);
   font-size: 0.74rem;
   font-weight: 500;
   letter-spacing: 0.16em;
   text-transform: uppercase;
   color: var(--paper-3);
}
.people-block-title::after {
   content: "";
   flex: 1;
   height: 1px;
   background: var(--line);
}
.people-block-title .count { color: var(--paper-4); }

/* Lead researcher gets a wider, two-column card */
.person-lead {
   display: grid;
   grid-template-columns: 260px minmax(0, 1fr);
   gap: clamp(1.5rem, 4vw, 3rem);
   align-items: start;
   padding: clamp(1.5rem, 3vw, 2.25rem);
   background: var(--ink-800);
   border: 1px solid var(--line);
   border-radius: var(--radius);
}
.person-lead .portrait { aspect-ratio: 4 / 5; }
.person-lead h3 { margin: 0 0 0.6rem; font-size: clamp(1.6rem, 2.4vw, 2.1rem); }

.people-grid {
   display: grid;
   grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
   gap: clamp(1.25rem, 2.4vw, 1.75rem);
}

.person {
   display: flex;
   flex-direction: column;
   gap: 1rem;
   padding: 1.25rem;
   background: var(--ink-800);
   border: 1px solid var(--line);
   border-radius: var(--radius);
   transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}
.person:hover { border-color: var(--line-2); background: var(--ink-700); }
.person h3 { margin: 0 0 0.3rem; font-size: 1.3rem; }

.portrait {
   position: relative;
   aspect-ratio: 1 / 1;
   border-radius: var(--radius-sm);
   overflow: hidden;
   background:
      linear-gradient(140deg, var(--ink-600), var(--ink-700));
}
.portrait img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   object-position: 50% 22%;
   filter: saturate(0.9);
}
/* Placeholder used when someone has no photo yet */
.portrait--empty {
   display: grid;
   place-items: center;
   color: var(--ink-500);
}
.portrait--empty svg { width: 34%; height: auto; opacity: 0.55; }

.person-roles {
   margin: 0;
   padding: 0;
   list-style: none;
   font-size: 0.86rem;
   line-height: 1.45;
   color: var(--gold);
}
.person-roles li + li { margin-top: 0.15rem; color: var(--paper-3); }

.person-bio {
   margin: 0.85rem 0 0;
   font-size: 0.92rem;
   line-height: 1.62;
   color: var(--paper-2);
}
.person-link {
   display: inline-flex;
   align-items: center;
   gap: 0.4rem;
   margin-top: 1rem;
   font-family: var(--font-mono);
   font-size: 0.7rem;
   letter-spacing: 0.11em;
   text-transform: uppercase;
   text-decoration: none;
}

/* Open call-for-students card */
.person--open {
   border-style: dashed;
   border-color: var(--line-2);
   background: linear-gradient(160deg, var(--gold-dim), transparent 60%), var(--ink-850);
   justify-content: center;
   text-align: left;
}
.person--open h3 { color: var(--gold); }

/* Alumni: a dense, readable list of theses */
.alumni-list {
   border-top: 1px solid var(--line);
}
.alumni-row {
   display: grid;
   grid-template-columns: minmax(170px, 0.85fr) 10.5rem minmax(0, 2.3fr);
   gap: 1rem 1.5rem;
   align-items: baseline;
   padding: 1.15rem 0.25rem;
   border-bottom: 1px solid var(--line);
   transition: background 0.2s var(--ease);
}
.alumni-row:hover { background: rgba(255, 255, 255, 0.018); }
.alumni-name {
   font-family: var(--font-display);
   font-size: 1.2rem;
   line-height: 1.2;
   color: var(--paper);
}
.alumni-degree {
   font-family: var(--font-mono);
   font-size: 0.68rem;
   letter-spacing: 0.11em;
   text-transform: uppercase;
   color: var(--paper-3);
   white-space: nowrap;
}
.alumni-title {
   font-size: 0.95rem;
   line-height: 1.55;
   color: var(--paper-2);
}
.alumni-title a {
   text-decoration: none;
   color: var(--paper-2);
   background-image: linear-gradient(var(--gold), var(--gold));
   background-size: 0% 1px;
   background-repeat: no-repeat;
   background-position: 0 100%;
   transition: background-size 0.3s var(--ease), color 0.2s var(--ease);
}
.alumni-title a:hover { color: var(--gold); background-size: 100% 1px; }

/* --- Publications --------------------------------------------------------- */

/* Sticky type filter under the page head — a 69-entry page needs a way in */
.pub-toc {
   position: sticky;
   top: 74px;
   z-index: 40;
   background: rgba(4, 7, 14, 0.9);
   -webkit-backdrop-filter: saturate(160%) blur(12px);
   backdrop-filter: saturate(160%) blur(12px);
   border-bottom: 1px solid var(--line);
}
.pub-toc nav {
   display: flex;
   flex-wrap: wrap;
   gap: 0.35rem 0.5rem;
   padding-block: 0.85rem;
}
.pub-toc a {
   display: inline-flex;
   align-items: baseline;
   gap: 0.45rem;
   padding: 0.4rem 0.85rem;
   border: 1px solid var(--line);
   border-radius: 100px;
   font-family: var(--font-mono);
   font-size: 0.68rem;
   letter-spacing: 0.09em;
   text-transform: uppercase;
   color: var(--paper-2);
   text-decoration: none;
   transition: color 0.18s var(--ease), border-color 0.18s var(--ease);
}
.pub-toc a span { color: var(--paper-4); }
.pub-toc a:hover { color: var(--gold); border-color: var(--gold); }
.pub-toc a:hover span { color: var(--gold); }

.pub-band-note {
   margin-top: 1.5rem;
   font-size: 0.85rem;
   color: var(--paper-3);
}

.pub-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.pub {
   display: grid;
   grid-template-columns: minmax(0, 1fr) auto;
   gap: 1rem 2rem;
   align-items: start;
   padding: 1.5rem 0.25rem;
   border-bottom: 1px solid var(--line);
   transition: background 0.2s var(--ease);
}
.pub:hover { background: rgba(255, 255, 255, 0.018); }
.pub-title {
   font-size: 1.2rem;
   line-height: 1.25;
   margin: 0 0 0.5rem;
   color: var(--paper);
}
.pub-title a {
   color: inherit;
   text-decoration: none;
   background-image: linear-gradient(var(--gold), var(--gold));
   background-size: 0% 1px;
   background-repeat: no-repeat;
   background-position: 0 100%;
   transition: background-size 0.3s var(--ease), color 0.2s var(--ease);
}
.pub-title a:hover { color: var(--gold); background-size: 100% 1px; }
.pub-authors { margin: 0 0 0.3rem; font-size: 0.92rem; color: var(--paper-2); }
.pub-venue { margin: 0; font-size: 0.88rem; color: var(--paper-3); }
.pub-venue em { font-style: italic; }
.pub-note { margin: 0.5rem 0 0; font-size: 0.88rem; color: var(--paper-3); }

/* Cover stories read as their own inset panel. Deliberately NOT a full-height
   left rule: two adjacent covers would merge into one continuous bar and look
   like a single container rather than two flagged papers. */
.pub--cover {
   position: relative;
   margin: 0.5rem 0;
   padding: 1.4rem 1.5rem;
   border: 1px solid rgba(234, 170, 0, 0.28);
   border-radius: var(--radius);
   background:
      linear-gradient(135deg, rgba(234, 170, 0, 0.11), rgba(234, 170, 0, 0.02) 60%),
      var(--ink-800);
}
.pub--cover + .pub--cover { margin-top: 0.75rem; }
/* The list's own separator would double up with the panel border */
.pub--cover { border-bottom: 1px solid rgba(234, 170, 0, 0.28); }
.pub--cover:hover { background:
      linear-gradient(135deg, rgba(234, 170, 0, 0.15), rgba(234, 170, 0, 0.03) 60%),
      var(--ink-700); }
.pub-cover {
   display: flex;
   flex-wrap: wrap;
   align-items: baseline;
   gap: 0.5rem 0.75rem;
   margin: 0 0 0.6rem;
}
.pub-cover-badge {
   display: inline-flex;
   align-items: center;
   gap: 0.4rem;
   padding: 0.24rem 0.7rem;
   border-radius: 100px;
   background: var(--gold);
   color: #16110a;
   font-family: var(--font-mono);
   font-size: 0.64rem;
   font-weight: 600;
   letter-spacing: 0.12em;
   text-transform: uppercase;
}
.pub-cover-note {
   font-family: var(--font-mono);
   font-size: 0.68rem;
   letter-spacing: 0.04em;
   color: var(--paper-3);
}

.pub-people { display: flex; flex-wrap: wrap; gap: 0.4rem; margin: 0.75rem 0 0; }
.pub-tag {
   display: inline-block;
   padding: 0.2rem 0.55rem;
   border: 1px solid var(--line);
   border-radius: 100px;
   background: var(--ink-800);
   font-family: var(--font-mono);
   font-size: 0.66rem;
   letter-spacing: 0.05em;
   color: var(--paper-3);
}
.pub-tag--preprint {
   border-color: rgba(234, 170, 0, 0.4);
   color: var(--gold);
   background: var(--gold-dim);
   margin-left: 0.4rem;
}

.pub-links { display: flex; gap: 0.5rem; list-style: none; margin: 0; padding: 0; }
.pub-links a {
   display: inline-block;
   padding: 0.32rem 0.7rem;
   border: 1px solid var(--line-2);
   border-radius: 100px;
   font-family: var(--font-mono);
   font-size: 0.66rem;
   letter-spacing: 0.1em;
   text-transform: uppercase;
   color: var(--paper-3);
   text-decoration: none;
   transition: color 0.18s var(--ease), border-color 0.18s var(--ease);
}
.pub-links a:hover { color: var(--gold); border-color: var(--gold); }

.empty-note {
   max-width: 58ch;
   padding: 2rem 2.25rem;
   border: 1px dashed var(--line-2);
   border-radius: var(--radius);
   background: linear-gradient(160deg, var(--gold-dim), transparent 60%), var(--ink-850);
   color: var(--paper-2);
}

@media (max-width: 700px) {
   .pub { grid-template-columns: 1fr; gap: 0.9rem; }
   .pub--cover { padding-left: 1rem; }
}

/* 12. Join / contact ------------------------------------------------------- */

.join {
   position: relative;
   overflow: hidden;
   border-top: 1px solid var(--line);
   background:
      radial-gradient(90% 130% at 12% 0%, rgba(234, 170, 0, 0.09), transparent 60%),
      var(--ink-850);
}
.join-grid {
   display: grid;
   grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
   gap: clamp(2rem, 6vw, 5rem);
   align-items: start;
}
.join h2 { margin-bottom: 1rem; }

.contact-list {
   margin: 0;
   padding: 0;
   list-style: none;
   border-top: 1px solid var(--line);
}
.contact-list > li {
   display: grid;
   grid-template-columns: 110px minmax(0, 1fr);
   gap: 1rem;
   align-items: baseline;
   padding: 1rem 0;
   border-bottom: 1px solid var(--line);
}
.contact-list .k {
   font-family: var(--font-mono);
   font-size: 0.68rem;
   letter-spacing: 0.15em;
   text-transform: uppercase;
   color: var(--paper-3);
}
.contact-list .v { color: var(--paper); font-size: 0.98rem; }
.contact-list .v a { text-decoration: none; }

/* 13. Footer --------------------------------------------------------------- */

.site-footer {
   border-top: 1px solid var(--line);
   background: var(--ink-900);
   padding-block: clamp(3rem, 6vw, 4.5rem) 2rem;
   font-size: 0.9rem;
}
.footer-grid {
   display: grid;
   grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr));
   gap: clamp(2rem, 4vw, 3.5rem);
   padding-bottom: 2.5rem;
}
.footer-brand .brand { font-size: 1.45rem; }
.footer-brand p {
   margin-top: 1rem;
   max-width: 34ch;
   color: var(--paper-3);
   font-size: 0.9rem;
   line-height: 1.6;
}
.footer-col h4,
.footer-heading {
   font-family: var(--font-mono);
   font-size: 0.68rem;
   font-weight: 500;
   letter-spacing: 0.16em;
   text-transform: uppercase;
   color: var(--paper-3);
   margin: 0 0 1rem;
   letter-spacing: 0.16em;
}
.footer-col ul { margin: 0; padding: 0; list-style: none; }
.footer-col li + li { margin-top: 0.55rem; }
.footer-col li { color: var(--paper-3); font-size: 0.92rem; line-height: 1.5; }
.footer-col a {
   color: var(--paper-2);
   text-decoration: none;
   font-size: 0.92rem;
}
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
   display: flex;
   flex-wrap: wrap;
   align-items: center;
   justify-content: space-between;
   gap: 1rem;
   padding-top: 1.75rem;
   border-top: 1px solid var(--line);
   font-family: var(--font-mono);
   font-size: 0.7rem;
   letter-spacing: 0.08em;
   color: var(--paper-3);
}
.social {
   display: flex;
   gap: 0.5rem;
   list-style: none;
   margin: 0;
   padding: 0;
}
.social a {
   display: grid;
   place-items: center;
   width: 38px; height: 38px;
   border: 1px solid var(--line);
   border-radius: 50%;
   color: var(--paper-2);
   transition: color 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.social a:hover { color: var(--gold); border-color: var(--gold); transform: translateY(-2px); }
.social svg { width: 17px; height: 17px; }

/* 14. Page headers & prose ------------------------------------------------- */

.page-head {
   position: relative;
   padding-block: clamp(8rem, 16vh, 11rem) clamp(2.5rem, 5vw, 4rem);
   border-bottom: 1px solid var(--line);
   background:
      radial-gradient(80% 120% at 50% 0%, #0c1729 0%, var(--ink-900) 70%);
}
.page-head h1 { margin-bottom: 0.5rem; }
.page-head .lead { margin-top: 1.25rem; }

.prose { max-width: var(--measure); }
.prose h2 { margin-top: 2.5em; }
.prose h3 { margin-top: 2em; }
.prose > :first-child { margin-top: 0; }
.prose ul, .prose ol { padding-left: 1.25em; color: var(--paper-2); }
.prose li { margin-bottom: 0.5em; }
.prose li::marker { color: var(--gold); }
.prose blockquote {
   margin: 2rem 0;
   padding-left: 1.5rem;
   border-left: 2px solid var(--gold);
   color: var(--paper-2);
   font-style: italic;
}
.prose code, code {
   font-family: var(--font-mono);
   font-size: 0.88em;
   background: var(--ink-700);
   padding: 0.15em 0.4em;
   border-radius: 4px;
   color: var(--gold-2);
}
.prose pre {
   background: var(--ink-800);
   border: 1px solid var(--line);
   border-radius: var(--radius-sm);
   padding: 1.1rem 1.25rem;
   overflow-x: auto;
}
.prose pre code { background: none; padding: 0; color: var(--paper-2); }
.prose img { border-radius: var(--radius-sm); margin-block: 2rem; }
.prose table {
   width: 100%;
   border-collapse: collapse;
   margin-block: 2rem;
   font-size: 0.94rem;
}
.prose th, .prose td {
   text-align: left;
   padding: 0.7rem 0.85rem;
   border-bottom: 1px solid var(--line);
}
.prose th { color: var(--paper); font-weight: 600; }
.prose td { color: var(--paper-2); }

/* 15. Legacy theme-class compatibility ------------------------------------ */
/* The DSPIRA archive pages and the small apps were written against the old
   HTML5UP theme. These rules give those class names a sane modern rendering so
   the pages keep working without being rewritten. */

.wrapper {
   display: block;
   padding-block: var(--section-y);
}
/* Legacy full-width pages start flush against the fixed header — clear it. */
main > .banner:first-child,
main > .spotlight:first-child,
main > .wrapper:first-child { padding-top: calc(74px + clamp(2.5rem, 7vh, 5rem)); }
.wrapper > .inner,
.inner {
   width: 100%;
   max-width: 1100px;
   margin-inline: auto;
   padding-inline: var(--gutter);
}
.wrapper.style2, .wrapper.invert { background: var(--ink-850); }
.wrapper.align-center, .align-center { text-align: center; }

.wrapper p, .inner p { color: var(--paper-2); }
.wrapper h2, .wrapper h3, .inner h2, .inner h3 { color: var(--paper); }

p.major, .major {
   font-size: 1.15rem;
   line-height: 1.62;
   color: var(--paper-2);
}

ul.actions {
   display: flex;
   flex-wrap: wrap;
   gap: 0.75rem;
   list-style: none;
   margin: 1.5rem 0;
   padding: 0;
}
ul.actions.vertical { flex-direction: column; align-items: flex-start; }
ul.actions li { margin: 0; }
.button.big { padding: 0.95rem 1.7rem; font-size: 0.95rem; }

.image { display: block; }
.image img { border-radius: var(--radius-sm); }
.image.fit { display: block; width: 100%; margin-block: 1.75rem; }
.image.fit img { width: 100%; }
.image.left { float: left; max-width: 42%; margin: 0.35rem 1.75rem 1rem 0; }
.image.right { float: right; max-width: 42%; margin: 0.35rem 0 1rem 1.75rem; }

/* Legacy banner/spotlight sections */
.banner, .spotlight {
   display: grid;
   grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
   align-items: center;
   gap: clamp(2rem, 5vw, 4rem);
   max-width: 1180px;
   margin-inline: auto;
   padding: clamp(3rem, 8vh, 6rem) var(--gutter);
}
.banner > .content > :last-child,
.spotlight > .content > :last-child { margin-bottom: 0; }
.banner.orient-right > .image,
.spotlight.orient-right > .image { order: 2; }
.banner.orient-left > .image,
.spotlight.orient-left > .image { order: -1; }
.banner > .image img,
.spotlight > .image img {
   width: 100%;
   border-radius: var(--radius);
   aspect-ratio: 4 / 3;
   object-fit: cover;
}
.banner h3, .banner h4 { margin-bottom: 0.4rem; }
.banner .banner-sub { margin: 0 0 1rem; }
.banner header h4, .banner .banner-sub { color: var(--gold); font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; }

/* Legacy gallery */
.gallery {
   display: grid;
   grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
   gap: 1rem;
   margin-block: 2rem;
}
.gallery article { margin: 0; }
.gallery .image {
   display: block;
   overflow: hidden;
   border-radius: var(--radius-sm);
   background: var(--ink-700);
}
.gallery .image img {
   width: 100%;
   aspect-ratio: 4 / 3;
   object-fit: cover;
   border-radius: 0;
   transition: transform 0.5s var(--ease), opacity 0.3s var(--ease);
}
.gallery .image:hover img { transform: scale(1.05); opacity: 0.88; }
.gallery .caption { margin-top: 0.6rem; font-size: 0.85rem; color: var(--paper-3); }
.gallery .caption h3 { font-size: 1rem; margin: 0 0 0.2rem; }
.gallery .caption p { margin: 0; font-size: 0.85rem; }
.gallery .modal { display: none; }

/* Minimal lightbox (replaces the theme's jQuery implementation) */
.lb {
   position: fixed;
   inset: 0;
   z-index: 300;
   display: grid;
   place-items: center;
   padding: 3vmin;
   background: rgba(4, 7, 14, 0.94);
   -webkit-backdrop-filter: blur(6px);
   backdrop-filter: blur(6px);
   opacity: 0;
   visibility: hidden;      /* also removes the close button from the tab order */
   pointer-events: none;
   transition: opacity 0.25s var(--ease), visibility 0.25s;
}
.lb.is-open { opacity: 1; visibility: visible; pointer-events: auto; }
.lb img {
   max-width: 100%;
   max-height: 92vh;
   border-radius: var(--radius-sm);
   box-shadow: var(--shadow-lift);
}
.lb-close {
   position: absolute;
   top: 1.25rem; right: 1.25rem;
   width: 44px; height: 44px;
   display: grid; place-items: center;
   border: 1px solid var(--line-2);
   border-radius: 50%;
   background: transparent;
   color: var(--paper);
   font-size: 1.2rem;
   cursor: pointer;
}
.lb-close:hover { border-color: var(--gold); color: var(--gold); }

/* Monospace readout used by the sidereal-time / coordinate apps */
.clock {
   font-family: var(--font-mono);
   font-size: 1.02rem;
   line-height: 1.9;
   padding: 1.5rem 1.6rem;
   background: var(--ink-800);
   border: 1px solid var(--line);
   border-radius: var(--radius);
   color: var(--paper);
   overflow-x: auto;
}
.clock .big { font-size: 2.1rem; color: var(--gold); }

/* Form controls (used by the sidereal-time / coordinate tools) */
input[type="text"],
input[type="number"],
select {
   font: inherit;
   font-family: var(--font-mono);
   font-size: 0.95rem;
   color: var(--paper);
   background: var(--ink-800);
   border: 1px solid var(--line-2);
   border-radius: var(--radius-sm);
   padding: 0.55rem 0.7rem;
   min-width: 6.5rem;
   transition: border-color 0.18s var(--ease);
}
input[type="text"]:focus,
select:focus { border-color: var(--gold); }
select { cursor: pointer; }
label {
   display: inline-flex;
   align-items: center;
   gap: 0.6rem;
   font-size: 0.94rem;
   color: var(--paper-2);
}
button:not(.btn):not(.button):not(.nav-toggle):not(.lb-close) {
   font: 500 0.9rem/1 var(--font-sans);
   color: #16110a;
   background: var(--gold);
   border: 1px solid var(--gold);
   border-radius: 100px;
   padding: 0.72rem 1.3rem;
   cursor: pointer;
   transition: background 0.18s var(--ease);
}
button:not(.btn):not(.button):not(.nav-toggle):not(.lb-close):hover { background: var(--gold-2); }

.coord-form {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
   gap: 0.9rem 1.5rem;
   align-items: center;
   padding: 1.5rem 1.6rem;
   background: var(--ink-800);
   border: 1px solid var(--line);
   border-radius: var(--radius);
   margin-block: 1.5rem;
}
.coord-form p { margin: 0; }
.coord-form button { grid-column: 1 / -1; justify-self: start; }

/* Fade-in on scroll. Implemented as an animation rather than a transition so it
   never overwrites a component's own `transition` shorthand (project cards keep
   their hover timing). `.js` is set by site.js, so with JavaScript off or broken
   nothing is ever hidden. */
.js .reveal { opacity: 0; }
.js .reveal.is-in {
   animation: reveal 0.7s var(--ease) both;
   animation-delay: var(--reveal-delay, 0ms);
}
@keyframes reveal {
   from { opacity: 0; transform: translateY(18px); }
   to   { opacity: 1; transform: none; }
}

/* 16. Responsive & motion -------------------------------------------------- */

@media (max-width: 900px) {
   .section-head { grid-template-columns: 1fr; align-items: start; gap: 1.25rem; }
   .ed-grid { grid-template-columns: 1fr; }
   .ed-media img { aspect-ratio: 16 / 9; }
   .statement,
   .join-grid { grid-template-columns: 1fr; }
   .person-lead { grid-template-columns: 1fr; }
   .person-lead .portrait { max-width: 260px; aspect-ratio: 1 / 1; }
   .footer-grid { grid-template-columns: repeat(3, 1fr); }
   .footer-brand { grid-column: 1 / -1; }
   .alumni-row { grid-template-columns: 1fr; gap: 0.3rem; padding: 1.1rem 0.25rem; }
   .alumni-degree { order: -1; }
   .banner, .spotlight { grid-template-columns: 1fr; }
   .banner.orient-right > .image,
   .spotlight.orient-right > .image,
   .banner.orient-left > .image,
   .spotlight.orient-left > .image { order: -1; }
}

@media (max-width: 760px) {
   .footer-grid { grid-template-columns: 1fr 1fr; }
   .pub-toc { position: static; }
   .nav-toggle { display: inline-flex; }
   .site-nav {
      position: fixed;
      inset: 74px 0 auto 0;
      flex-direction: column;
      align-items: stretch;
      gap: 0;
      padding: 0.75rem var(--gutter) 1.5rem;
      background: rgba(4, 7, 14, 0.97);
      -webkit-backdrop-filter: blur(14px);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid var(--line);
      transform: translateY(-8px);
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.22s var(--ease), transform 0.22s var(--ease), visibility 0.22s;
   }
   [data-nav-open] .site-nav { opacity: 1; transform: none; visibility: visible; }
   .site-nav a { padding: 0.85rem 0; font-size: 1.05rem; border-bottom: 1px solid var(--line); }
   .site-nav a::after { display: none; }
   .site-nav .btn { margin: 1rem 0 0; justify-content: center; }
   .hero { padding-block: 7rem 6rem; }
   .contact-list > li { grid-template-columns: 1fr; gap: 0.25rem; }
   .facts { grid-template-columns: 1fr 1fr; }
   .image.left, .image.right { float: none; max-width: 100%; margin: 1.5rem 0; }
}

@media (max-width: 560px) {
   .eyebrow { font-size: 0.66rem; letter-spacing: 0.11em; }
   .eyebrow::before { width: 1.25rem; }
   .hero-meta { gap: 0.4rem 1rem; }
}

@media (max-width: 460px) {
   .facts { grid-template-columns: 1fr; }
   .people-grid { grid-template-columns: 1fr; }
   .btn-row .btn { width: 100%; justify-content: center; }
}

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

@media print {
   body { background: #fff; color: #111; }
   .site-header, .scroll-cue, #sky, .hero-bg, .btn-row, .social { display: none; }
   /* Reveals never fire for content below the fold when printing */
   .js .reveal, .js .reveal.is-in { opacity: 1 !important; animation: none !important; transform: none !important; }
   .section, .join, .page-head { background: none !important; padding-block: 1.5rem; }
   .project, .person, .person-lead, .note, .facts, .fact, .clock, .coord-form {
      background: none !important; border-color: #bbb !important;
   }
   h1, h2, h3, h4, .alumni-name, .contact-list .v { color: #111; }
   p, li, .lead, .project-blurb, .person-bio, .alumni-title { color: #333; }
   .project-blurb { -webkit-line-clamp: unset; line-clamp: unset; display: block; }
   a { color: #111; }
   a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 0.8em; color: #666; }
}
