:root {
  --bg: #ffffff;
  --ink: #0a0a0a;
  --mute: #8a8a8a;
  --rule: #e6e6e6;
  --sans: "Geist", "Helvetica Neue", Arial, sans-serif;
  --mono: "Geist Mono", ui-monospace, monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--ink);
  font: 400 15px/1.5 var(--sans);
  letter-spacing: -.005em;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
.wrap { max-width: 1040px; margin: 0 auto; padding: 0 40px; }

.top {
  display: flex; justify-content: space-between;
  padding-top: 28px; font-size: 13px; color: var(--mute);
}
.top a { color: var(--ink); }
.top a:hover, .mail:hover { text-decoration: underline; text-underline-offset: 4px; }

/* intro */
.intro { padding: 18vh 0 120px; }
h1 {
  font-weight: 500;
  font-size: clamp(56px, 11vw, 132px);
  line-height: .92;
  letter-spacing: -.055em;
}
.role { margin-top: 36px; font-size: 15px; font-weight: 500; }
.lede { margin-top: 4px; font-size: 15px; color: var(--mute); max-width: 44ch; }
.stats { list-style: none; display: flex; gap: 32px; margin-top: 40px; font-size: 13px; color: var(--mute); }
.stats b { font-family: var(--mono); font-weight: 400; color: var(--ink); margin-right: 4px; }

/* field photos */
.field { margin-bottom: 112px; }
.field h2 { border-bottom: 0; }
.reel {
  display: flex; gap: 16px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  margin-right: calc(50% - 50vw);
  padding-right: 40px; padding-bottom: 12px;
  scrollbar-width: thin; scrollbar-color: var(--rule) transparent;
}
.reel figure { flex: 0 0 440px; scroll-snap-align: start; }
.reel img {
  display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover;
  background: #f2f2f2;
}
.reel figcaption {
  display: flex; justify-content: space-between; gap: 16px;
  margin-top: 10px; font-size: 13px; color: var(--mute);
}
.reel figcaption span { font-family: var(--mono); }

/* future generations + call to action */
.longview, .cta { margin-bottom: 112px; }
.longview .statement { max-width: 30ch; }
.statement {
  font-size: clamp(24px, 3.2vw, 36px); font-weight: 500;
  line-height: 1.18; letter-spacing: -.03em;
  max-width: 26ch; padding: 32px 0 40px;
}
.actions { display: flex; flex-wrap: wrap; gap: 10px; }
.btn {
  font: 500 14px/1 var(--sans); color: var(--ink); background: none; cursor: pointer;
  border: 1px solid var(--ink); border-radius: 999px; padding: 14px 22px;
  transition: background .15s, color .15s;
}
.btn:hover, .btn.solid { background: var(--ink); color: var(--bg); }
.btn.solid:hover { background: #333; }
.btn:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; }

/* index rows */
.index { margin-bottom: 96px; }
h2 {
  font-size: 12px; font-weight: 500; text-transform: uppercase; letter-spacing: .08em;
  color: var(--mute); padding-bottom: 12px; border-bottom: 1px solid var(--ink);
}
summary, .line {
  display: grid;
  grid-template-columns: 5fr 6fr 56px 20px;
  gap: 24px; align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid var(--rule);
}
.line { grid-template-columns: 5fr 6fr 56px 20px; }
summary { cursor: pointer; list-style: none; transition: padding .2s ease; }
summary::-webkit-details-marker { display: none; }
summary::after {
  content: "+"; font-family: var(--mono); color: var(--mute); text-align: right;
}
details[open] summary::after { content: "−"; }
summary:hover { padding-left: 8px; }
summary:hover::after, details[open] summary::after { color: var(--ink); }
summary:focus-visible { outline: 1px solid var(--ink); outline-offset: 2px; }
.r { font-weight: 500; }
.o { color: var(--mute); }
summary:hover .o, details[open] .o { color: var(--ink); }
.y { font-family: var(--mono); font-size: 13px; color: var(--mute); text-align: right; }

.more {
  padding: 14px 0 22px calc((100% - 148px) * 5 / 11 + 24px);
  font-size: 14px; color: var(--ink); max-width: 100%;
  border-bottom: 1px solid var(--rule);
}
.more { animation: in .25s ease; }
@keyframes in { from { opacity: 0; transform: translateY(-4px); } }

/* footer */
.foot {
  display: flex; justify-content: space-between; align-items: baseline;
  padding-top: 40px; padding-bottom: 48px; border-top: 1px solid var(--ink);
  font-size: 13px; color: var(--mute);
}
.mail { font-size: clamp(20px, 3vw, 32px); font-weight: 500; letter-spacing: -.03em; color: var(--ink); }

@media (prefers-reduced-motion: reduce) {
  summary { transition: none; }
  .more { animation: none; }
}

@media (max-width: 720px) {
  .wrap { padding: 0 16px; }
  .intro { padding: 96px 0 80px; }
  .stats { gap: 20px; flex-wrap: wrap; }
  .index, .field { margin-bottom: 64px; }
  .reel { padding-right: 16px; gap: 12px; }
  .reel figure { flex-basis: 82%; }
  summary, .line { grid-template-columns: 1fr 44px 16px; gap: 2px 12px; }
  .r { grid-column: 1; }
  .o { grid-column: 1; grid-row: 2; font-size: 14px; }
  .y { grid-column: 2; grid-row: 1; }
  summary::after { grid-column: 3; grid-row: 1; }
  .line { grid-template-columns: 1fr 44px; }
  .more { padding-left: 0; }
  summary:hover { padding-left: 0; }
  .foot { flex-direction: column; gap: 16px; }
}

@media (max-width: 720px) {
  .statement { padding: 24px 0 32px; }
  .btn { flex: 1 1 100%; text-align: center; }
}

/* expanded rows with numbers and photos */
.more.rich { display: grid; gap: 22px; padding-bottom: 32px; }
.more.rich p { max-width: 62ch; }
.kpis { list-style: none; display: flex; flex-wrap: wrap; gap: 12px 36px; }
.kpis li { font-size: 12px; color: var(--mute); max-width: 17ch; line-height: 1.35; }
.kpis b {
  display: block; font-weight: 500; font-size: 30px; line-height: 1.05;
  letter-spacing: -.04em; color: var(--ink); margin-bottom: 4px;
}
.shots { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 10px; }
.shots img { display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; background: #f2f2f2; }
.shots figcaption { font-size: 12px; color: var(--mute); margin-top: 6px; }
@media (max-width: 720px) {
  .kpis { gap: 14px 24px; }
  .kpis li { flex: 0 0 calc(50% - 12px); }
  .shots { grid-template-columns: 1fr 1fr; }
}

.more.rich {
  padding-left: 0;
  grid-template-columns: 5fr 6fr; column-gap: 48px; align-items: start;
}
.more.rich > p, .more.rich > .kpis { grid-column: 1; }
.more.rich > .shots { grid-column: 2; grid-row: 1 / span 2; }
.more.rich:not(:has(.shots)) { grid-template-columns: 1fr; padding-left: calc((100% - 148px) * 5 / 11 + 24px); }
.kpis { gap: 16px 28px; }
.kpis li { flex: 0 0 calc(50% - 14px); max-width: none; }
@media (max-width: 720px) {
  .more.rich, .more.rich:not(:has(.shots)) { grid-template-columns: 1fr; padding-left: 0; }
  .more.rich > .shots { grid-column: 1; grid-row: auto; }
}
.more.rich:has(.shots) { grid-template-rows: auto 1fr; }
.more.rich > .kpis { align-self: start; }
@media (max-width: 720px) { .more.rich:has(.shots) { grid-template-rows: none; } }

/* media */
.note { font-size: 14px; color: var(--mute); padding: 14px 0; border-bottom: 1px solid var(--rule); }
.line.link { transition: padding .2s ease; }
.line.link::after { content: "↗"; font-family: var(--mono); color: var(--mute); text-align: right; }
.line.link:hover { padding-left: 8px; }
.line.link:hover .o, .line.link:hover::after { color: var(--ink); }
.line.link:focus-visible { outline: 1px solid var(--ink); outline-offset: 2px; }
.social { display: flex; gap: 20px; }
.social a:hover { color: var(--ink); }
@media (max-width: 720px) {
  .line.link { grid-template-columns: 1fr 56px 16px; }
  .line.link::after { grid-column: 3; grid-row: 1; }
  .line.link:hover { padding-left: 0; }
}

/* the redraft: "win it" gets struck, "keep it." is written in */
.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.edit del, .edit ins { text-decoration: none; }
.edit del { position: relative; color: var(--ink); animation: fade .5s ease 1.8s forwards; }
.edit del::after {
  content: ""; position: absolute; left: -2px; right: -2px; top: 55%;
  height: 1.5px; background: var(--ink);
  transform: scaleX(0); transform-origin: left;
  animation: strike .45s cubic-bezier(.6, 0, .2, 1) 1.2s forwards;
}
.edit ins {
  display: inline-block;
  color: var(--ink); font-weight: 500;
  clip-path: inset(0 100% 0 0);
  animation: write .7s steps(8, end) 2.1s forwards;
}
@keyframes strike { to { transform: scaleX(1); } }
@keyframes fade { to { color: var(--mute); } }
@keyframes write { to { clip-path: inset(0 0 0 0); } }
@media (prefers-reduced-motion: reduce) {
  .edit del, .edit del::after, .edit ins { animation: none; }
  .edit del { color: var(--mute); }
  .edit del::after { transform: scaleX(1); }
  .edit ins { clip-path: none; }
}

/* hero line carries the redraft, so give it room */
.lede {
  margin-top: 14px; max-width: 34ch;
  font-size: clamp(20px, 2.3vw, 27px); line-height: 1.32; letter-spacing: -.02em;
  color: var(--ink);
}
.role { color: var(--mute); font-weight: 400; font-size: 14px; }
.edit del::after { height: 2px; }

/* scribble strike instead of a straight rule */
.edit del::after { content: none; }
.scribble {
  position: absolute; left: -4px; right: -4px; top: 18%;
  width: calc(100% + 8px); height: 70%; overflow: visible; pointer-events: none;
}
.scribble path {
  fill: none; stroke: var(--ink); stroke-width: 1.6;
  stroke-linecap: round; stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
  stroke-dasharray: 1; stroke-dashoffset: 1;
  animation: scrib .75s cubic-bezier(.5, 0, .3, 1) 1.2s forwards;
}
@keyframes scrib { to { stroke-dashoffset: 0; } }
@media (prefers-reduced-motion: reduce) {
  .scribble path { animation: none; stroke-dashoffset: 0; }
}
.edit del { margin: 0 .14em; }
.edit ins { margin-left: .06em; }
.edit { white-space: nowrap; }
.lede { max-width: 36ch; }

/* featured-on wall: outlet names set as type, no logos or symbols */
.media { margin-bottom: 112px; }
.wall {
  list-style: none; display: flex; flex-wrap: wrap; align-items: baseline;
  gap: 6px 40px; padding: 40px 0 44px; border-bottom: 1px solid var(--rule);
}
.wall li { font-weight: 600; letter-spacing: -.045em; line-height: 1; color: var(--ink); transition: color .25s ease; }
.wall .t1 { font-size: clamp(40px, 6vw, 72px); }
.wall .t2 { font-size: clamp(26px, 3.4vw, 40px); font-weight: 500; }
.wall .t3 { font-size: clamp(18px, 2vw, 24px); font-weight: 500; color: var(--mute); }
.wall:hover li { color: #cfcfcf; }
.wall li:hover { color: var(--ink); }
.coverage > summary { grid-template-columns: 5fr 6fr 56px 20px; }
.coverage .list { padding-bottom: 8px; }
.line.link::after { content: none; }
.line.link { grid-template-columns: 5fr 6fr 56px 20px; }
@media (max-width: 720px) {
  .wall { gap: 4px 22px; padding: 28px 0 32px; }
  .coverage > summary { grid-template-columns: 1fr 16px; }
  .coverage > summary .y { display: none; }
  .coverage > summary::after { grid-column: 2; }
  .line.link { grid-template-columns: 1fr 56px; }
}

/* hover preview of the coverage itself */
.wall a { color: inherit; }
.wall a[href] { cursor: pointer; }
.peek {
  position: fixed; left: 0; top: 0; z-index: 50; width: 300px;
  pointer-events: none; opacity: 0;
  transition: opacity .2s ease;
}
.peek.on { opacity: 1; }
.peek img {
  display: block; width: 100%; aspect-ratio: 16 / 10; object-fit: cover;
  background: #f2f2f2; box-shadow: 0 18px 40px rgba(0,0,0,.18);
  transform: scale(.96); transition: transform .25s ease;
}
.peek.on img { transform: scale(1); }
.peek p {
  margin-top: 8px; font-size: 12px; line-height: 1.35; color: var(--ink);
  background: var(--bg); display: inline-block; padding: 3px 6px 3px 0;
}
@media (prefers-reduced-motion: reduce) { .peek, .peek img { transition: none; } }

/* highlighter sweep on the long view */
.hl {
  color: inherit; padding: 0 .08em; margin: 0 -.04em;
  background-image: linear-gradient(100deg, rgba(255,226,64,.0) 0, rgba(255,226,64,.85) .4em, rgba(255,222,50,.9) calc(100% - .4em), rgba(255,226,64,.0) 100%);
  background-repeat: no-repeat; background-position: 0 72%;
  background-size: 100% .62em;
  -webkit-box-decoration-break: clone; box-decoration-break: clone;
  border-radius: .1em;
}
.js .hl { background-size: 0 .62em; transition: background-size .7s cubic-bezier(.6, 0, .2, 1); }
.js .lit .hl { background-size: 100% .62em; }
.js .lit .hl:nth-of-type(2) { transition-delay: .45s; }
.js .lit .hl:nth-of-type(3) { transition-delay: .9s; }
@media (prefers-reduced-motion: reduce) { .js .hl { transition: none; } }
.hl {
  background-image: linear-gradient(100deg, rgba(255,221,87,.55) 0, rgba(255,221,87,.8) 12%, rgba(255,214,70,.85) 88%, rgba(255,221,87,.5) 100%);
  background-position: 0 92%;
  background-size: 100% .42em;
}
.js .hl { background-size: 0 .42em; }
.js .lit .hl { background-size: 100% .42em; }
.hl { background-color: transparent; }
.hl { background-position: 0 82%; background-size: 100% .58em; }
.js .hl { background-size: 0 .58em; }
.js .lit .hl { background-size: 100% .58em; }

/* seminars: syllabus panels */
.syllabus { grid-template-columns: 5fr 6fr !important; padding-left: 0 !important; grid-template-rows: auto auto 1fr; }
.syllabus > p:first-child, .syllabus > .kpis, .syllabus > .reads { grid-column: 1; }
.syllabus > .weeks { grid-column: 2; grid-row: 1 / span 3; }
.weeks { list-style: none; border-top: 1px solid var(--rule); }
.weeks li { display: grid; grid-template-columns: 36px 1fr; padding: 9px 0; border-bottom: 1px solid var(--rule); font-size: 14px; }
.weeks span { font-family: var(--mono); font-size: 12px; color: var(--mute); padding-top: 2px; }
.reads { font-size: 13px; color: var(--mute); line-height: 1.55; }
.reads span { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: .08em; color: var(--ink); margin-bottom: 4px; }
.syllabus .kpis li { flex: 0 0 auto; }
.syllabus .kpis b { font-size: 22px; }
@media (max-width: 720px) {
  .syllabus { grid-template-columns: 1fr !important; grid-template-rows: none; }
  .syllabus > * { grid-column: 1 !important; grid-row: auto !important; }
}
.teach summary { grid-template-columns: 5fr 6fr 96px 20px; }
@media (max-width: 720px) { .teach summary { grid-template-columns: 1fr 84px 16px; } }

/* syllabus v2: weekly readings + assessment */
.syllabus > .grading { grid-column: 1; }
.syllabus > .weeks { grid-row: 1 / span 4; }
.syllabus { grid-template-rows: auto auto auto 1fr; }
.weeks li div { line-height: 1.4; }
.weeks small { display: block; font-size: 12.5px; color: var(--mute); margin-top: 3px; line-height: 1.45; }
.grading h5 { font-size: 11px; font-weight: 500; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 6px; }
.grading ul { list-style: none; border-top: 1px solid var(--rule); }
.grading li { display: flex; justify-content: space-between; font-size: 14px; padding: 8px 0; border-bottom: 1px solid var(--rule); }
.grading b { font-family: var(--mono); font-weight: 400; }
.y { white-space: nowrap; }
@media (max-width: 720px) { .teach summary { grid-template-columns: 1fr auto 16px; } }

/* ===== inverted: white on black =====
   To go back to black on white, delete this block. */
:root {
  --bg: #0b0b0b;
  --ink: #f4f4f1;
  --mute: #8d8d8a;
  --rule: #262626;
  color-scheme: dark;
}
.reel img, .shots img, .peek img { background: #1a1a1a; }
.wall:hover li { color: #3a3a3a; }
.wall li:hover { color: var(--ink); }
.btn.solid:hover { background: #d6d6d3; }
.peek img { box-shadow: 0 18px 40px rgba(0,0,0,.6); }
.hl {
  background-image: linear-gradient(100deg, rgba(255,206,64,.28) 0, rgba(255,206,64,.42) 12%, rgba(255,200,50,.45) 88%, rgba(255,206,64,.26) 100%);
}
.hl { background-image: linear-gradient(100deg, rgba(255,210,60,.38) 0, rgba(255,210,60,.55) 12%, rgba(255,204,48,.58) 88%, rgba(255,210,60,.36) 100%); }
.index:has(#h-writing) summary { grid-template-columns: 5fr 6fr 96px 20px; }
@media (max-width: 720px) { .index:has(#h-writing) summary { grid-template-columns: 1fr auto 16px; } }
.more.rich > .links { grid-column: 1 / -1; display: flex; flex-wrap: wrap; gap: 8px 22px; font-size: 13px; }
.links a { color: var(--ink); text-decoration: underline; text-decoration-color: var(--rule); text-underline-offset: 4px; }
.links a:hover { text-decoration-color: var(--ink); }
.more.rich:has(.shots) > .links { grid-row: 3; }

/* 1) stop the inserted "keep it." from clipping its last glyph */
@keyframes write { to { clip-path: inset(-.3em -.4em -.3em 0); } }
.edit ins { padding-right: .06em; }
@media (prefers-reduced-motion: reduce) { .edit ins { clip-path: none; } }

/* 6) hand-drawn underlines on the descriptor */
.role .u {
  color: var(--ink);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 8' preserveAspectRatio='none'%3E%3Cpath d='M1 5.5 C 20 3, 38 6.5, 55 4.5 S 85 3, 99 5' fill='none' stroke='%23f4f4f1' stroke-width='1.4' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: 0 100%;
  background-size: 100% .42em; padding-bottom: .22em;
}
.js .role .u { background-size: 0 .42em; animation: underline .6s cubic-bezier(.6,0,.2,1) forwards; }
.js .role .u:nth-child(1) { animation-delay: 3s; }
.js .role .u:nth-child(2) { animation-delay: 3.35s; }
.js .role .u:nth-child(3) { animation-delay: 3.7s; }
@keyframes underline { to { background-size: 100% .42em; } }
@media (prefers-reduced-motion: reduce) { .js .role .u { animation: none; background-size: 100% .42em; } }

/* 2) parliamentary networks */
.networks { margin-bottom: 112px; }
.networks .statement { max-width: 30ch; }
.nets { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--ink); }
.net {
  display: flex; flex-direction: column; gap: 6px; min-height: 190px;
  padding: 22px 24px 26px 0; border-bottom: 1px solid var(--rule);
  transition: background .2s ease, padding .2s ease;
}
.net:not(:nth-child(3n+1)) { padding-left: 24px; border-left: 1px solid var(--rule); }
.net .n { font-family: var(--mono); font-size: 12px; color: var(--mute); }
.net b { font-size: clamp(34px, 4.4vw, 52px); font-weight: 500; letter-spacing: -.045em; line-height: 1; margin-top: 18px; }
.net .nm { font-size: 14px; font-weight: 500; }
.net .rg { font-size: 13px; color: var(--mute); margin-top: auto; }
a.net:hover b { text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 6px; }
.networks .note { border-bottom: 0; }
@media (max-width: 900px) {
  .nets { grid-template-columns: 1fr 1fr; }
  .net:not(:nth-child(3n+1)) { padding-left: 0; border-left: 0; }
  .net:nth-child(even) { padding-left: 20px; border-left: 1px solid var(--rule); }
}
@media (max-width: 720px) {
  .networks { margin-bottom: 64px; }
  .net { min-height: 150px; padding-right: 12px; }
  .net:nth-child(even) { padding-left: 14px; }
}

/* 8) dissertation cases */
.diss .cases span { font-size: 11px; letter-spacing: .06em; }
.net .url { font-family: var(--mono); font-size: 12px; color: var(--mute); }
a.net:hover .url { color: var(--ink); }
.diss .cases span { font-size: 11px; }

/* networks as an expandable row */
.networks { margin-bottom: 96px; }
.networks .more.netpanel { padding: 8px 0 28px; }
.netpanel .statement { font-size: clamp(20px, 2.4vw, 28px); padding: 16px 0 28px; max-width: 32ch; }
.networks summary .y { font-size: 15px; color: var(--ink); }
.net .mem { font-size: 13px; color: var(--mute); margin-top: 8px; }
.net .mem em { font-style: normal; font-family: var(--mono); font-size: 20px; color: var(--ink); margin-right: 4px; }
.netpanel .note { border-bottom: 0; }
@media (max-width: 720px) { .networks { margin-bottom: 64px; } }

/* networks: the statement itself opens the grid */
.networks summary.bigsum {
  display: grid; grid-template-columns: 1fr 20px; grid-template-rows: auto auto;
  gap: 14px 24px; padding: 28px 0 30px; align-items: start;
}
.bigsum .statement { grid-column: 1; padding: 0; max-width: 30ch; font-size: clamp(24px, 3.2vw, 36px); }
.bigsum .hint { grid-column: 1; grid-row: 2; font-family: var(--mono); font-size: 12px; color: var(--mute); }
.bigsum::after { grid-column: 2; grid-row: 1; font-size: 22px; padding-top: 6px; }
.networks summary.bigsum:hover { padding-left: 0; }
.networks summary.bigsum:hover .hint { color: var(--ink); }
.networks .more.netpanel { padding-top: 0; }
.networks h2 + details > summary.bigsum { border-bottom: 0; }
details[open] > .bigsum { border-bottom: 1px solid var(--rule); }
@media (max-width: 720px) { .networks summary.bigsum { grid-template-columns: 1fr 16px; } }
.convenings > p:nth-of-type(2) { grid-column: 1; }
.more.rich.convenings { grid-template-rows: auto auto auto 1fr auto; }
.convenings > .shots { grid-row: 1 / span 4; }
.convenings > .links { grid-row: 5; }
@media (max-width: 720px) { .more.rich.convenings { grid-template-rows: none; } .convenings > .shots, .convenings > .links { grid-row: auto; } }
@media (max-width: 720px) { .more.rich > .links, .more.rich:has(.shots) > .links { grid-row: auto; } }
.more a.inline { color: var(--ink); text-decoration: underline; text-decoration-color: var(--rule); text-underline-offset: 4px; white-space: nowrap; }

/* forum panel: two paragraphs + 6 shots */
.more.rich.forum { grid-template-rows: auto auto auto 1fr auto; }
.forum > p:nth-of-type(2) { grid-column: 1; }
.forum > .shots { grid-row: 1 / span 4; grid-template-columns: 1fr 1fr; }
.forum > .links { grid-row: 5; }
@media (max-width: 720px) { .more.rich.forum { grid-template-rows: none; } .forum > .shots, .forum > .links { grid-row: auto; } }

/* hover card on "political communication" */
.role { position: relative; }
.tip { position: relative; cursor: help; outline: none; }
.tipcard {
  position: absolute; left: 0; top: calc(100% + 14px); z-index: 30;
  width: min(420px, calc(100vw - 32px));
  display: grid; gap: 14px; padding: 18px 20px 20px;
  background: #161616; border: 1px solid #2c2c2c; border-radius: 4px;
  box-shadow: 0 24px 50px rgba(0,0,0,.55);
  font-size: 13.5px; line-height: 1.5; font-weight: 400; color: var(--mute); letter-spacing: 0;
  opacity: 0; visibility: hidden; transform: translateY(-4px);
  transition: opacity .18s ease, transform .18s ease, visibility 0s linear .18s;
}
.tipcard .tc b { display: block; color: var(--ink); font-weight: 500; font-size: 12px; text-transform: uppercase; letter-spacing: .07em; margin-bottom: 4px; }
.tip:hover .tipcard, .tip:focus .tipcard, .tip:focus-within .tipcard {
  opacity: 1; visibility: visible; transform: none; transition: opacity .18s ease, transform .18s ease;
}
@media (max-width: 720px) { .tipcard { left: auto; right: -8px; } .tip { position: static; } .role { position: relative; } .tipcard { left: 0; right: auto; } }
@media (prefers-reduced-motion: reduce) { .tipcard { transition: none; } }

/* burgundy accent, used only on hover moments */
:root { --accent: #c7384f; --accent-soft: rgba(199, 56, 79, .14); }

/* 4) tighter gap between the top bar and the name */
.intro { padding-top: 8vh; }
@media (max-width: 720px) { .intro { padding-top: 48px; } }

/* 6) secondary text turns burgundy on hover */
summary:hover .o, .line.link:hover .o, a.net:hover .url { color: var(--accent); }
details[open] > summary .o { color: var(--ink); }
details[open] > summary:hover .o { color: var(--accent); }

/* 3) colour on the political communication card */
.tip.u { transition: color .2s ease; }
.tip:hover, .tip:focus { color: var(--accent); }
.tipcard { border-top: 3px solid var(--accent); background: linear-gradient(180deg, #1c1113 0%, #151515 38%); }
.tipcard .tc b { color: var(--accent); }
.tipcard .tc { padding-left: 12px; border-left: 1px solid #3a2328; }

/* 2, 5) hover pops on YIF and NAAIS */
.pop {
  position: fixed; z-index: 60; pointer-events: none; width: 320px;
  padding: 18px 20px 20px; border-radius: 6px;
  background: var(--accent); color: #fff;
  box-shadow: 0 24px 60px rgba(0,0,0,.55);
  opacity: 0; transform: translateY(8px) scale(.94) rotate(-1.5deg);
  transition: opacity .22s ease, transform .35s cubic-bezier(.2, 1.4, .4, 1);
}
.pop.on { opacity: 1; transform: none; }
.pop-tag { display: block; font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: .1em; opacity: .8; margin-bottom: 8px; }
.pop-num { display: block; font-size: 40px; font-weight: 600; letter-spacing: -.04em; line-height: 1; font-variant-numeric: tabular-nums; }
.pop-txt { display: block; margin-top: 8px; font-size: 14px; line-height: 1.35; }
/* ticket variant: perforated stub */
.pop.ticket {
  background: #f4efe6; color: #151515; width: 300px; border-radius: 4px;
  transform: translateY(8px) scale(.94) rotate(2deg);
  -webkit-mask: radial-gradient(circle 9px at 0 50%, transparent 98%, #000) left / 51% 100% no-repeat,
                radial-gradient(circle 9px at 100% 50%, transparent 98%, #000) right / 51% 100% no-repeat;
          mask: radial-gradient(circle 9px at 0 50%, transparent 98%, #000) left / 51% 100% no-repeat,
                radial-gradient(circle 9px at 100% 50%, transparent 98%, #000) right / 51% 100% no-repeat;
}
.pop.ticket.on { transform: rotate(-2deg); }
.pop.ticket .pop-tag { color: var(--accent); opacity: 1; padding-bottom: 8px; border-bottom: 1px dashed #b9b2a6; }
.pop.ticket .pop-num { font-family: var(--mono); font-size: 46px; color: var(--accent); margin-top: 4px; }
@media (prefers-reduced-motion: reduce) { .pop, .pop.ticket { transition: opacity .15s; transform: none; } }

/* maroon replaces burgundy */
:root { --accent: #b03a4b; --maroon: #6b1423; --maroon-deep: #3d0b14; }
.pop { background: var(--maroon); }
.tipcard { border-top-color: var(--maroon); background: linear-gradient(180deg, #22090f 0%, #151515 42%); }
.tipcard .tc { border-left-color: #43161f; }
.tipcard .tc b { color: #d56a79; }

/* dots variant (NAAIS): same card as Meta, 100 campus dots fill as it counts */
.pop.dots { background: var(--maroon); color: #fff; width: 320px; border-radius: 6px; -webkit-mask: none; mask: none; transform: translateY(8px) scale(.94) rotate(-1.5deg); }
.pop.dots.on { transform: none; }
.pop.dots .pop-tag { color: #fff; opacity: .8; padding-bottom: 0; border-bottom: 0; }
.pop.dots .pop-num { font-family: var(--sans); font-size: 40px; color: #fff; margin-top: 0; }
.pop-dots { display: none; }
.pop.dots .pop-dots { display: grid; grid-template-columns: repeat(20, 1fr); gap: 4px; margin-top: 14px; }
.pop-dots i { aspect-ratio: 1; border-radius: 50%; background: rgba(255,255,255,.18); transition: background .15s, transform .15s; }
.pop-dots i.lit { background: #fff; transform: scale(1.08); }

/* click any photo to enlarge */
.reel img, .shots img { cursor: zoom-in; transition: opacity .2s ease; }
.reel img:hover, .shots img:hover { opacity: .88; }
.reel img:focus-visible, .shots img:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; }
.lb {
  border: 0; padding: 0; background: transparent; max-width: 92vw; max-height: 92vh; margin: auto;
  color: var(--ink); overflow: visible;
}
.lb::backdrop { background: rgba(0,0,0,.88); }
.lb img { display: block; max-width: 92vw; max-height: 82vh; width: auto; height: auto; object-fit: contain; cursor: zoom-out; }
.lb p { margin-top: 12px; font-size: 14px; color: var(--mute); max-width: 70ch; }
.lb button {
  position: absolute; top: -14px; right: -14px; width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid #333; background: #111; color: var(--ink); font-size: 20px; line-height: 1; cursor: pointer;
}
.lb[open] { animation: lbin .22s ease; }
@keyframes lbin { from { opacity: 0; transform: scale(.97); } }
@media (prefers-reduced-motion: reduce) { .lb[open] { animation: none; } }
/* portrait photos in panels keep faces in frame */
.shots img[src*="capitol"], .shots img[src*="fio-launch"] { object-position: center 30%; }
.reel img[src*="field-crowd"] { object-position: center 20%; }
.lb::backdrop { background: rgba(6,6,6,.95); backdrop-filter: blur(4px); }
.reel img[src*="fio-launch"] { object-position: center 22%; }
.reel figure.tall { flex-basis: 300px; }
.reel figure.tall img { aspect-ratio: 3 / 4; height: auto; object-position: center 30%; }
.reel figure { align-self: flex-start; }
.reel figcaption .t { font-weight: 400; }
@media (max-width: 720px) { .reel figure.tall { flex-basis: 58%; } }

/* handwritten nudge pointing at the first + */
.index:has(#h-ground) { position: relative; }
.nudge {
  position: absolute; right: 26px; top: -46px; z-index: 4;
  display: flex; align-items: flex-start; gap: 2px; pointer-events: none;
  color: #d56a79;
}
.nudge-txt {
  font-family: "Caveat", cursive; font-weight: 600; font-size: 21px; line-height: 1.02;
  text-align: right; transform: rotate(-3deg); margin-top: -2px;
  opacity: 0; transition: opacity .5s ease .9s;
}
.nudge-arrow { width: 64px; height: 58px; margin-top: 8px; overflow: visible; }
.nudge-arrow path {
  fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round;
  stroke-dasharray: 1; stroke-dashoffset: 1;
}
.nudge.show .nudge-txt { opacity: 1; }
.nudge.show .nudge-arrow path { animation: nudge-draw .7s cubic-bezier(.5,0,.3,1) .2s forwards; }
.nudge.show .nudge-arrow .head { animation-delay: .8s; animation-duration: .25s; }
.nudge.show { animation: nudge-bob 2.6s ease-in-out 2s infinite; }
.nudge.gone { opacity: 0; transition: opacity .35s ease; animation: none; }
@keyframes nudge-draw { to { stroke-dashoffset: 0; } }
@keyframes nudge-bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(3px); } }
@media (max-width: 720px) {
  .nudge { right: 4px; top: -44px; }
  .nudge-txt { font-size: 18px; }
  .nudge-arrow { width: 48px; height: 50px; }
}
@media (prefers-reduced-motion: reduce) {
  .nudge-txt { transition: none; }
  .nudge.show .nudge-arrow path { animation: none; stroke-dashoffset: 0; }
  .nudge.show { animation: none; }
}
.nudge { right: 2px; top: -52px; }
.nudge-txt { font-size: 25px; margin-top: 0; }
.nudge-arrow { width: 44px; height: 96px; margin-top: 4px; }
@media (max-width: 720px) { .nudge { right: -2px; top: -50px; } .nudge-txt { font-size: 21px; } .nudge-arrow { width: 38px; height: 96px; } }
.nudge-arrow { height: 112px; } @media (max-width: 720px) { .nudge-arrow { height: 112px; } }
.edit del::before { content: "win it"; }
.coverage .grp { font-size: 11px; font-weight: 500; text-transform: uppercase; letter-spacing: .08em; color: var(--mute); padding: 22px 0 8px; }
.topics { font-size: 12px; line-height: 1.7; color: #5f5f5c; padding-top: 28px; padding-bottom: 20px; }
.topics span { text-transform: uppercase; letter-spacing: .08em; font-size: 11px; margin-right: 8px; color: var(--mute); }
.topics { max-width: 1040px; font-size: 12px; color: #6f6f6c; padding-top: 32px; padding-bottom: 22px; border-top: 1px solid var(--rule); }
.topics span { display: block; margin: 0 0 6px; }
.topics-in { font-size: 14px; line-height: 1.7; color: var(--mute); padding: 4px 0 18px; max-width: 80ch; }
