:root {
  --ink: #151515;
  --paper: #f1efe9;
  --cream: #fbf8f0;
  --red: #ef3f2f;
  --soft-red: #ff8075;
  --acid: #d6ff39;
  --blue: #5a78ff;
  --gold: #ffbd2e;
  --line: rgba(21, 21, 21, .18);
  --muted: #6e6b65;
  --radius: 22px;
  --shell: min(1280px, calc(100vw - 56px));
}

html[data-palette="midnight"] {
  --ink: #101c2b;
  --paper: #f3ecdd;
  --cream: #fcf7ec;
  --red: #c74634;
  --soft-red: #dd6c5c;
  --acid: #e1b955;
  --blue: #4169e1;
  --gold: #e1b955;
  --line: rgba(16, 28, 43, .2);
  --muted: #68635b;
}

html[data-palette="modern"] {
  --ink: #101c2b;
  --paper: #f3ecdd;
  --cream: #fcf7ec;
  --red: #c74634;
  --soft-red: #d96b5b;
  --acid: #5a78ff;
  --blue: #5a78ff;
  --gold: #5a78ff;
  --line: rgba(16, 28, 43, .2);
  --muted: #68635b;
}

html[data-palette="persian"] {
  --ink: #143937;
  --paper: #ede4d3;
  --cream: #f8f1e6;
  --red: #b33a2e;
  --soft-red: #c9695d;
  --acid: #d4a849;
  --blue: #2f7d78;
  --gold: #d4a849;
  --line: rgba(20, 57, 55, .2);
  --muted: #665f55;
}

html[data-palette="civic"] {
  --ink: #14213d;
  --paper: #f3f1eb;
  --cream: #fcfaf5;
  --red: #b85f3c;
  --soft-red: #d18568;
  --acid: #e0b94e;
  --blue: #3157d5;
  --gold: #e0b94e;
  --line: rgba(20, 33, 61, .2);
  --muted: #626675;
}

html[data-palette="nocturne"] {
  color-scheme: dark;
  --ink: #f4f0e7;
  --paper: #121620;
  --cream: #1c2230;
  --red: #ff5a47;
  --soft-red: #ff887b;
  --acid: #d5f34a;
  --blue: #6e87ff;
  --gold: #d5f34a;
  --line: rgba(244, 240, 231, .2);
  --muted: #abb0be;
}

html[data-palette="clinical"] {
  --ink: #0a0a0a;
  --paper: #ffffff;
  --cream: #ffffff;
  --red: #d92d20;
  --soft-red: #d92d20;
  --acid: #d92d20;
  --blue: #0a0a0a;
  --gold: #d92d20;
  --line: rgba(10, 10, 10, .2);
  --muted: #5f5f5f;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.skip-link { position: fixed; top: -80px; left: 16px; z-index: 100; padding: 12px 16px; color: white; background: var(--ink); transition: top .2s; }
.skip-link:focus { top: 16px; }
.section-shell { width: var(--shell); margin-inline: auto; }
.eyebrow { margin: 0 0 16px; font-size: .72rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow-light { color: var(--acid); }

.site-header { width: var(--shell); min-height: 84px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 24px; border-bottom: 1px solid var(--line); position: relative; z-index: 20; }
.site-header-solid { background: var(--paper); }
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; font-size: .82rem; letter-spacing: .12em; }
.brand b { font-weight: 900; }
.brand-mark { width: 33px; aspect-ratio: 1; display: grid; place-items: center; border-radius: 50%; color: var(--cream); background: var(--ink); font-weight: 900; letter-spacing: -.08em; }
.site-nav { display: flex; align-items: center; gap: clamp(14px, 1.7vw, 29px); font-size: .74rem; font-weight: 700; }
.site-nav a { text-decoration: none; position: relative; }
.site-nav a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -6px; height: 2px; background: var(--red); transition: right .2s ease; }
.site-nav a:hover::after, .site-nav a:focus-visible::after, .site-nav a.current::after { right: 0; }
.nav-cta { padding: 11px 17px; border: 1px solid var(--ink); border-radius: 999px; transition: .2s; }
.nav-cta:hover, .nav-cta:focus-visible { color: white; background: var(--ink); }
.menu-toggle { display: none; border: 0; background: none; font-weight: 800; }

.hero { min-height: 690px; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 5vw; padding-block: 64px 76px; }
.hero h1, .library-intro h1, .about-title h1 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(4rem, 7.25vw, 7.5rem); font-weight: 400; line-height: .85; letter-spacing: -.065em; }
.hero h1 em, .library-intro h1 em, .about-title h1 em { color: var(--red); font-weight: 400; }
.hero-deck { max-width: 650px; margin: 32px 0; font-size: clamp(1.05rem, 1.5vw, 1.35rem); line-height: 1.52; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.button { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; gap: 25px; padding: 0 22px; border: 1px solid var(--ink); border-radius: 999px; text-decoration: none; font-size: .78rem; font-weight: 800; cursor: pointer; transition: transform .18s, background .18s, color .18s; }
.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button-primary { color: white; background: var(--ink); }
.button-primary:hover, .button-primary:focus-visible { color: var(--ink); background: var(--acid); }
.button-quiet { background: transparent; }
.button-quiet:hover, .button-quiet:focus-visible { background: var(--cream); }
.button-light { color: var(--ink); background: var(--acid); border-color: var(--acid); }
.button-light:hover, .button-light:focus-visible { color: white; background: transparent; }

.hero-art { min-height: 520px; position: relative; display: grid; place-items: center; overflow: hidden; background: var(--ink); border-radius: 160px 20px 160px 20px; color: white; }
.hero-art::before { content: ""; position: absolute; inset: 18px; border: 1px solid rgba(255,255,255,.22); border-radius: 146px 14px 146px 14px; }
.hero-art-inner { z-index: 2; width: 82%; text-align: center; }
.artifact-label { display: block; margin-bottom: 34px; color: var(--acid); font-size: .67rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.topic-orbit { width: min(390px, 86%); aspect-ratio: 1; margin: auto; display: grid; place-items: center; position: relative; border: 1px dashed rgba(255,255,255,.35); border-radius: 50%; animation: breathe 7s ease-in-out infinite; }
.topic-orbit::before { content: ""; position: absolute; inset: 17%; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; }
.topic-orbit strong { font-family: Georgia, serif; font-size: clamp(1.8rem, 3vw, 3.2rem); line-height: .82; z-index: 2; }
.topic-orbit span { position: absolute; padding: 6px 9px; background: var(--ink); font-size: .58rem; font-weight: 900; letter-spacing: .12em; }
.topic-orbit span:nth-child(1) { top: -12px; }
.topic-orbit span:nth-child(2) { right: -30px; top: 28%; }
.topic-orbit span:nth-child(3) { right: 2%; bottom: 8%; color: var(--acid); }
.topic-orbit span:nth-child(4) { left: -13px; bottom: 19%; }
.topic-orbit span:nth-child(5) { left: -31px; top: 20%; color: var(--soft-red); }
.hero-art-inner > p { margin: 32px 0 0; color: rgba(255,255,255,.65); font-size: .76rem; }
.orb { position: absolute; border-radius: 50%; filter: blur(2px); opacity: .75; }
.orb-one { width: 140px; height: 140px; right: -40px; top: 30px; background: var(--blue); }
.orb-two { width: 90px; height: 90px; left: 8%; bottom: 3%; background: var(--red); }
@keyframes breathe { 50% { transform: scale(1.025); } }

.ideas { padding-block: 110px 130px; border-top: 1px solid var(--line); }
.section-heading { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: end; margin-bottom: 48px; }
.section-heading h2, .booking-band h2, .bio-copy h2, .inquiry-section h2 { margin: 0; font-family: Georgia, serif; font-size: clamp(2.6rem, 4.5vw, 5rem); font-weight: 400; letter-spacing: -.045em; line-height: .95; }
.section-heading > p { max-width: 550px; margin: 0 0 4px; color: var(--muted); font-size: 1.05rem; line-height: 1.6; }
.format-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.intellectual-map-grid { grid-template-columns: repeat(2, 1fr); }
.format-card { min-height: 310px; padding: 24px; display: flex; flex-direction: column; text-decoration: none; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.24); transition: transform .2s, background .2s, border-color .2s; }
.format-card:hover, .format-card:focus-visible { transform: translateY(-5px); background: var(--cream); border-color: var(--ink); }
.format-featured { grid-column: span 2; color: white; background: var(--red); border-color: var(--red); }
.format-featured:hover, .format-featured:focus-visible { color: var(--ink); background: var(--acid); border-color: var(--acid); }
.format-number { align-self: flex-end; font: 400 2rem/1 Georgia, serif; }
.format-type { margin-top: 16px; font-size: .65rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; opacity: .66; }
.format-card h3 { margin: auto 0 12px; font: 400 clamp(1.8rem, 2.7vw, 3rem)/.98 Georgia, serif; }
.format-card p { max-width: 410px; margin: 0 0 20px; font-size: .85rem; line-height: 1.5; opacity: .75; }
.card-link { font-size: .72rem; font-weight: 900; }

.booking-band { padding-block: 100px; color: white; background: var(--ink); }
.booking-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 8vw; align-items: end; }
.booking-copy > p { max-width: 500px; margin: 0 0 24px; color: rgba(255,255,255,.7); line-height: 1.55; }
.location-note { display: block; margin-top: 24px; font-size: .65rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }

.engagement-band { padding-block: 100px 115px; }
.engagement-heading { display: grid; grid-template-columns: .65fr 1.35fr; gap: 44px; align-items: end; margin-bottom: 38px; }
.engagement-heading h2 { margin: 0; font: 400 clamp(2.8rem, 5vw, 5.2rem)/.92 Georgia, serif; letter-spacing: -.045em; }
.engagement-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.engagement-card { min-width: 0; min-height: 285px; padding: 24px; display: flex; flex-direction: column; background: rgba(255,255,255,.22); }
.engagement-card + .engagement-card { border-left: 1px solid var(--line); }
.engagement-card > span { color: var(--red); font: 400 1.7rem/1 Georgia, serif; }
.engagement-card h3 { margin: auto 0 12px; font: 400 clamp(1.8rem, 2.4vw, 2.6rem)/1 Georgia, serif; }
.engagement-card p { margin: 0 0 22px; color: var(--muted); font-size: .82rem; line-height: 1.55; }
.engagement-card a { font-size: .72rem; font-weight: 900; overflow-wrap: anywhere; }
.engagement-card a:hover, .engagement-card a:focus-visible { color: var(--red); }
.engagement-links { display: flex; flex-wrap: wrap; gap: 8px 14px; }

.site-footer { width: var(--shell); margin-inline: auto; padding-block: 45px 38px; display: grid; grid-template-columns: 1fr auto; gap: 10px 40px; align-items: center; }
.footer-brand { font-size: .85rem; letter-spacing: .13em; }
.site-footer > p { margin: 0; color: var(--muted); font-size: .72rem; }
.social-links { grid-column: 2; grid-row: 1 / span 2; display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px 20px; max-width: 38rem; font-size: .72rem; font-weight: 800; }
.social-links a:hover { color: var(--red); }
.social-links .donate-link { margin-block: -8px; padding: 8px 14px; color: var(--paper); background: var(--ink); border: 1px solid var(--ink); border-radius: 999px; }
.social-links .donate-link:hover, .social-links .donate-link:focus-visible { color: white; background: var(--red); border-color: var(--red); }
.site-footer .prototype-note { grid-column: 1 / -1; margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line); font-size: .62rem; letter-spacing: .04em; }

html[data-palette="nocturne"] .hero-art,
html[data-palette="nocturne"] .topic-orbit span,
html[data-palette="nocturne"] .booking-band,
html[data-palette="nocturne"] .inquiry-section,
html[data-palette="nocturne"] .skip-link { background: #090b10; color: #f4f0e7; }
html[data-palette="nocturne"] .button-primary,
html[data-palette="nocturne"] .filter-chip.active { background: #f4f0e7; color: #121620; border-color: #f4f0e7; }
html[data-palette="nocturne"] .button-primary:hover,
html[data-palette="nocturne"] .button-primary:focus-visible { background: var(--acid); color: #121620; }
html[data-palette="nocturne"] .nav-cta:hover,
html[data-palette="nocturne"] .nav-cta:focus-visible { background: #f4f0e7; color: #121620; }
html[data-palette="nocturne"] .button-light { color: #121620; }
html[data-palette="nocturne"] .format-card { background: rgba(255,255,255,.025); }
html[data-palette="nocturne"] .format-card:hover,
html[data-palette="nocturne"] .format-card:focus-visible { background: var(--cream); }
html[data-palette="nocturne"] .content-card { background: rgba(255,255,255,.025); }
html[data-palette="nocturne"] .content-card.featured { color: #121620; background: var(--acid); }
html[data-palette="nocturne"] .content-card.featured p { color: #353a40; }

html[data-palette="clinical"] .format-featured,
html[data-palette="clinical"] .content-card.featured {
  color: var(--ink);
  background: var(--paper);
  border-color: var(--ink);
  box-shadow: inset 0 5px 0 var(--red);
}
html[data-palette="clinical"] .format-featured:hover,
html[data-palette="clinical"] .format-featured:focus-visible {
  color: var(--paper);
  background: var(--ink);
  border-color: var(--ink);
}
html[data-palette="clinical"] .button-primary:hover,
html[data-palette="clinical"] .button-primary:focus-visible,
html[data-palette="clinical"] .button-light,
html[data-palette="clinical"] .visual-west { color: #ffffff; }
html[data-palette="clinical"] .artifact-label,
html[data-palette="clinical"] .eyebrow-light,
html[data-palette="clinical"] .topic-orbit span:nth-child(3),
html[data-palette="clinical"] .topic-orbit span:nth-child(5) { color: #ffffff; }
html[data-palette="clinical"] .orb-one {
  background: #ffffff;
  border: 1px solid rgba(255,255,255,.65);
}
html[data-palette="clinical"] .content-card.featured p { color: var(--muted); }

/* Topics: four connected pathways into one macro story */
.topics-page { padding-bottom: 120px; }
.topics-intro { padding-block: 92px 80px; }
.topics-intro-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(50px, 8vw, 120px); align-items: end; }
.topics-intro h1 { margin: 0; font: 400 clamp(4rem, 7vw, 7.5rem)/.86 Georgia, "Times New Roman", serif; letter-spacing: -.065em; }
.topics-intro h1 em { color: var(--red); font-weight: 400; }
.topics-intro-grid > div { max-width: 540px; padding-bottom: 8px; }
.topics-intro-grid p { margin: 0; color: var(--muted); font-size: 1.05rem; line-height: 1.65; }
.topics-intro-grid .topics-intro-note { margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--line); font-size: .8rem; }
.topic-paths { display: grid; gap: 14px; }
.topic-path { min-height: 510px; padding: 36px; display: grid; grid-template-columns: 150px minmax(0, 1fr) 260px; gap: clamp(30px, 5vw, 78px); align-items: stretch; position: relative; overflow: hidden; scroll-margin-top: 96px; border: 1px solid var(--line); border-radius: 26px; background: color-mix(in srgb, var(--cream) 76%, transparent); }
.topic-path::after { content: ""; width: 320px; aspect-ratio: 1; position: absolute; right: -145px; top: -155px; border: 1px solid var(--line); border-radius: 50%; box-shadow: 0 0 0 46px color-mix(in srgb, var(--red) 6%, transparent), 0 0 0 92px color-mix(in srgb, var(--blue) 5%, transparent); pointer-events: none; }
.topic-path-index { display: flex; flex-direction: column; justify-content: space-between; z-index: 1; }
.topic-path-index span { font: 400 clamp(3rem, 5vw, 5.4rem)/1 Georgia, serif; color: var(--red); }
.topic-path-index small { font-size: .62rem; font-weight: 900; letter-spacing: .12em; line-height: 1.4; text-transform: uppercase; }
.topic-path-copy { max-width: 690px; display: flex; flex-direction: column; z-index: 1; }
.topic-path-copy h2 { margin: 0 0 24px; font: 400 clamp(2.7rem, 5vw, 5.3rem)/.91 Georgia, serif; letter-spacing: -.055em; }
.topic-path-copy > p { max-width: 650px; margin: 0; color: var(--muted); font-size: 1rem; line-height: 1.65; }
.topic-keywords { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 7px; }
.topic-keywords span { padding: 7px 10px; border: 1px solid var(--line); border-radius: 999px; font-size: .63rem; font-weight: 800; }
.topic-path-actions { margin-top: auto; padding-top: 34px; display: flex; flex-wrap: wrap; gap: 10px; }
.topic-path-actions .button { text-decoration: none; }
.topic-path-next { min-height: 100%; padding: 24px; align-self: stretch; display: flex; flex-direction: column; justify-content: flex-end; position: relative; z-index: 1; color: var(--ink); border: 1px solid var(--line); border-radius: 18px; text-decoration: none; transition: transform .2s, border-color .2s, background .2s; }
.topic-path-next:hover, .topic-path-next:focus-visible { transform: translateY(-4px); border-color: var(--ink); background: var(--paper); }
.topic-path-next span { margin-bottom: 10px; color: var(--muted); font-size: .6rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.topic-path-next strong { max-width: 180px; font: 400 1.65rem/1.02 Georgia, serif; }
.topic-path-next b { margin-top: 20px; color: var(--red); font-size: 1.4rem; }
.story-spine { margin-top: 18px; padding: 52px; display: grid; grid-template-columns: 1.35fr .65fr; gap: 8vw; align-items: end; color: white; background: var(--ink); border-radius: 26px; }
.story-spine h2 { margin: 12px 0 0; font: 400 clamp(2.2rem, 4vw, 4.4rem)/1 Georgia, serif; letter-spacing: -.045em; }
.story-spine h2 span { color: var(--red); }
.story-spine > p { margin: 0; color: rgba(255,255,255,.7); font-size: .9rem; line-height: 1.65; }
html[data-palette="nocturne"] .story-spine { color: #f4f0e7; background: #090b10; }
html[data-palette="nocturne"] .topic-path { background: rgba(255,255,255,.025); }
html[data-palette="clinical"] .story-spine { color: #ffffff; }

.library-page { padding-block: 80px 120px; }
.library-intro { display: grid; grid-template-columns: 1.2fr .8fr; gap: 70px; align-items: end; margin-bottom: 72px; }
.library-intro .eyebrow { grid-column: 1 / -1; margin-bottom: -36px; }
.library-intro h1 { font-size: clamp(3.5rem, 6.5vw, 7rem); }
.library-intro > p:last-child { margin: 0 0 8px; color: var(--muted); font-size: 1.08rem; line-height: 1.55; }
.library-controls { padding: 28px; margin-bottom: 36px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--cream); }
.search-wrap { display: grid; grid-template-columns: 180px 1fr; align-items: center; gap: 20px; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.search-wrap label, .filter-label { font-size: .68rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.search-field { display: flex; align-items: center; gap: 12px; padding: 0 14px; background: var(--paper); border-radius: 12px; }
.search-field input { width: 100%; height: 46px; border: 0; outline: 0; background: transparent; }
.filter-group { display: grid; grid-template-columns: 180px 1fr; gap: 20px; align-items: center; padding-top: 18px; }
.chip-row { display: flex; flex-wrap: wrap; gap: 8px; }
.filter-chip { padding: 9px 13px; border: 1px solid var(--line); border-radius: 999px; background: transparent; font-size: .68rem; font-weight: 800; cursor: pointer; transition: .15s; }
.filter-chip:hover, .filter-chip:focus-visible { border-color: var(--ink); }
.filter-chip.active { color: white; background: var(--ink); border-color: var(--ink); }
.library-select-wrap { position: relative; }
.library-select-wrap::after { content: "↓"; position: absolute; right: 15px; top: 50%; transform: translateY(-50%); color: var(--muted); pointer-events: none; }
.library-select-wrap select { width: min(100%, 390px); min-height: 44px; padding: 10px 42px 10px 14px; color: var(--ink); background: var(--paper); border: 1px solid var(--line); border-radius: 12px; font: inherit; font-size: .76rem; appearance: none; cursor: pointer; }
.library-select-wrap select:hover, .library-select-wrap select:focus-visible { border-color: var(--ink); outline: none; }
.results-row { margin-top: 24px; padding-top: 18px; display: flex; justify-content: space-between; border-top: 1px solid var(--line); }
.results-row p { margin: 0; color: var(--muted); font-size: .72rem; }
.text-button { padding: 0; border: 0; border-bottom: 1px solid currentColor; background: transparent; font-size: .72rem; font-weight: 900; cursor: pointer; }
.content-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 13px; }
.content-card { min-height: 360px; padding: 25px; display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.2); }
.content-card.featured { grid-column: span 2; background: var(--acid); }
.content-card[hidden] { display: none; }
.content-meta { display: flex; justify-content: space-between; gap: 10px; padding-bottom: 15px; font-size: .58rem; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; border-bottom: 1px solid var(--line); }
.content-card h2 { margin: auto 0 15px; font: 400 clamp(1.55rem, 2.2vw, 2.55rem)/1 Georgia, serif; letter-spacing: -.03em; }
.content-card p { margin: 0 0 20px; color: var(--muted); font-size: .82rem; line-height: 1.52; }
.card-open { width: max-content; padding: 0 0 4px; color: inherit; border: 0; border-bottom: 1px solid currentColor; background: transparent; font-size: .69rem; font-weight: 900; text-decoration: none; cursor: pointer; }
.article-record { min-height: 330px; }
.article-record h2 { font-size: clamp(1.45rem, 2vw, 2.25rem); }
.article-record .content-meta span:first-child { color: var(--red); }
.content-card.featured.article-record .content-meta span:first-child { color: inherit; }
.content-visual { min-height: 160px; margin: -13px -13px 20px; padding: 18px; display: flex; justify-content: space-between; align-items: flex-end; overflow: hidden; border-radius: 14px; color: white; position: relative; }
.content-visual::before { content: ""; width: 180px; aspect-ratio: 1; position: absolute; right: -40px; top: -50px; border: 1px solid currentColor; border-radius: 50%; box-shadow: 0 0 0 28px rgba(255,255,255,.12), 0 0 0 55px rgba(255,255,255,.08); }
.content-visual span { font-size: .58rem; font-weight: 900; letter-spacing: .12em; }
.content-visual b { z-index: 1; font-size: 1rem; line-height: .9; text-align: right; }
.visual-jerusalem { background: var(--blue); }
.visual-ideology { background: var(--red); }
.visual-west { color: #121620; background: var(--gold); }
.no-results { padding: 80px 30px; text-align: center; }
.no-results h2 { font: 400 2.4rem Georgia, serif; }

.content-dialog { width: min(600px, calc(100vw - 36px)); padding: 42px; border: 0; border-radius: var(--radius); color: var(--ink); background: var(--cream); box-shadow: 0 30px 100px rgba(0,0,0,.4); }
.content-dialog::backdrop { background: rgba(12,12,12,.76); backdrop-filter: blur(5px); }
.content-dialog h2 { margin: 12px 0 20px; font: 400 clamp(2rem, 4.5vw, 3.6rem)/.98 Georgia, serif; letter-spacing: -.04em; }
.content-dialog > p { color: var(--muted); line-height: 1.6; }
.dialog-close { position: absolute; right: 18px; top: 14px; border: 0; background: transparent; font-size: 2rem; cursor: pointer; }
.dialog-status { margin-block: 26px; padding-block: 15px; display: flex; justify-content: space-between; border-block: 1px solid var(--line); font-size: .72rem; }
.dialog-status span { color: var(--muted); text-transform: uppercase; letter-spacing: .1em; }
.prototype-copy { font-size: .78rem; }
.dialog-actions { display: flex; flex-wrap: wrap; gap: 9px; }
.dialog-actions .button { text-decoration: none; }
.content-dialog .button-light { border-color: var(--line); }

/* Internal article reader */
.reading-progress { height: 3px; position: fixed; inset: 0 0 auto; z-index: 100; background: transparent; pointer-events: none; }
.reading-progress span { width: 0; height: 100%; display: block; background: var(--red); }
.article-page { padding-block: 54px 120px; }
.article-back { display: inline-flex; gap: 9px; align-items: center; margin-bottom: 68px; color: var(--muted); font-size: .72rem; font-weight: 900; text-decoration: none; text-transform: uppercase; letter-spacing: .08em; }
.article-back:hover, .article-back:focus-visible { color: var(--ink); }
.article-header { max-width: 1100px; }
.article-header h1 { max-width: 1060px; margin: 22px 0 28px; font: 400 clamp(3.5rem, 7vw, 7.6rem)/.88 Georgia, serif; letter-spacing: -.065em; }
.article-deck { max-width: 790px; margin: 0; color: var(--muted); font: 400 clamp(1.25rem, 2vw, 1.75rem)/1.4 Georgia, serif; }
.article-byline { margin-top: 46px; padding-block: 17px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; border-block: 1px solid var(--line); }
.article-byline div { display: grid; gap: 5px; }
.article-byline span { color: var(--muted); font-size: .62rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.article-byline strong { font-size: .74rem; }
.article-hero { margin: 46px 0 85px; }
.article-hero img { width: 100%; aspect-ratio: 16 / 9; display: block; object-fit: cover; border-radius: 24px; }
.article-hero figcaption { margin-top: 11px; color: var(--muted); font-size: .68rem; }
.article-reading-layout { display: grid; grid-template-columns: minmax(0, 760px) minmax(240px, 300px); gap: clamp(60px, 9vw, 150px); justify-content: center; align-items: start; }
.article-body { min-width: 0; }
.article-edition-label { margin: 0 0 26px; color: var(--red); font-size: .68rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.article-body p { margin: 0 0 1.55em; color: color-mix(in srgb, var(--ink) 82%, transparent); font: 400 1.06rem/1.82 ui-serif, Georgia, serif; }
.article-body .article-intro { margin-bottom: 2em; color: var(--ink); font-size: clamp(1.25rem, 2vw, 1.55rem); line-height: 1.62; }
.article-body h2 { margin: 2.15em 0 .7em; font: 400 clamp(2rem, 3.5vw, 3.35rem)/1 Georgia, serif; letter-spacing: -.045em; }
.article-end-mark { width: 58px; aspect-ratio: 1; margin-top: 60px; display: grid; place-items: center; color: white; background: var(--red); border-radius: 50%; font-size: .72rem; font-weight: 900; }
.article-sidebar { position: sticky; top: 105px; display: grid; gap: 20px; }
.article-note, .article-keypoints { padding: 24px; border: 1px solid var(--line); border-radius: 16px; background: var(--cream); }
.article-note > span, .article-keypoints > span { display: block; margin-bottom: 14px; color: var(--red); font-size: .62rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.article-note p { margin: 0; color: var(--muted); font-size: .79rem; line-height: 1.62; }
.article-keypoints { display: grid; }
.article-keypoints a { padding-block: 10px; color: var(--ink); border-top: 1px solid var(--line); font-size: .76rem; font-weight: 800; text-decoration: none; }
.article-keypoints a:hover, .article-keypoints a:focus-visible { color: var(--red); }
.article-source-button { width: 100%; text-align: center; text-decoration: none; }
.article-footer-nav { margin-top: 110px; display: grid; grid-template-columns: repeat(2, 1fr); border-block: 1px solid var(--line); }
.article-footer-nav a { min-height: 130px; padding: 28px; display: flex; flex-direction: column; justify-content: center; color: var(--ink); text-decoration: none; transition: background .2s; }
.article-footer-nav a + a { border-left: 1px solid var(--line); }
.article-footer-nav a:hover, .article-footer-nav a:focus-visible { background: var(--cream); }
.article-footer-nav span { margin-bottom: 8px; color: var(--muted); font-size: .62rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.article-footer-nav strong { font: 400 clamp(1.35rem, 2vw, 2rem)/1 Georgia, serif; }

/* Editorial article catalogue */
.articles-masthead { padding-block: 92px 78px; display: grid; grid-template-columns: 1.2fr .8fr; gap: 8vw; align-items: end; }
.articles-masthead h1 { margin: 0; font: 400 clamp(4rem, 7.4vw, 8rem)/.84 Georgia, serif; letter-spacing: -.065em; }
.articles-masthead h1 em { color: var(--red); font-weight: 400; }
.articles-masthead-side > p { max-width: 520px; margin: 0 0 34px; color: var(--muted); font-size: 1.04rem; line-height: 1.62; }
.archive-stats { display: grid; grid-template-columns: repeat(3, 1fr); border-block: 1px solid var(--line); }
.archive-stats > div { min-width: 0; padding-block: 16px; display: grid; gap: 5px; }
.archive-stats strong { font: 400 1.65rem/1 Georgia, serif; }
.archive-stats span { color: var(--muted); font-size: .75rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }

.featured-article { min-height: 560px; margin-bottom: 118px; display: grid; grid-template-columns: 1.18fr .82fr; color: var(--paper); background: var(--ink); border-radius: 26px; overflow: hidden; }
.featured-article-image { min-height: 560px; display: block; position: relative; overflow: hidden; }
.featured-article-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,.58)); }
.featured-article-image img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; filter: saturate(.82) contrast(1.06); transition: transform .45s ease; }
.featured-article-image:hover img, .featured-article-image:focus-visible img { transform: scale(1.025); }
.featured-article-image span { position: absolute; left: 30px; bottom: 28px; z-index: 1; color: white; font-size: .75rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.featured-article-copy { padding: clamp(32px, 4.5vw, 62px); display: flex; flex-direction: column; }
.featured-article-copy .editorial-meta { color: color-mix(in srgb, var(--paper) 68%, transparent); border-color: color-mix(in srgb, var(--paper) 24%, transparent); }
.featured-article-copy .eyebrow { margin-top: auto; color: var(--acid); }
.featured-article-copy h2 { margin: 0 0 22px; font: 400 clamp(2.45rem, 4.2vw, 4.7rem)/.9 Georgia, serif; letter-spacing: -.05em; }
.featured-article-copy h2 a { text-decoration: none; }
.featured-article-copy > p:not(.eyebrow) { max-width: 520px; margin: 0 0 30px; color: color-mix(in srgb, var(--paper) 72%, transparent); line-height: 1.58; }
.featured-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 15px 22px; }
.featured-actions .button-primary { color: var(--ink); background: var(--acid); border-color: var(--acid); }
.featured-actions .button-primary:hover, .featured-actions .button-primary:focus-visible { color: var(--paper); background: transparent; }
.original-inline { color: inherit; font-size: .68rem; font-weight: 900; text-underline-offset: 4px; }

.essential-essays { margin-bottom: 118px; }
.essential-heading { margin-bottom: 34px; display: grid; grid-template-columns: 1fr minmax(280px, 460px); gap: 50px; align-items: end; }
.essential-heading h2 { margin: 0; font: 400 clamp(3rem, 5.6vw, 6rem)/.88 Georgia, serif; letter-spacing: -.055em; }
.essential-heading > p { margin: 0 0 5px; color: var(--muted); font-size: .95rem; line-height: 1.58; }
.essential-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.essential-card { --essential-accent: var(--ink); min-width: 0; display: flex; flex-direction: column; position: relative; background: var(--cream); border: 1px solid var(--line); border-radius: 20px; overflow: hidden; transition: transform .22s ease, border-color .22s ease; }
.essential-card::before { content: ""; height: 4px; position: absolute; inset: 0 0 auto; z-index: 2; background: var(--essential-accent); }
.essential-card:hover { transform: translateY(-4px); border-color: var(--essential-accent); }
.essential-biblical { --essential-accent: var(--blue); }
.essential-civilizations { --essential-accent: var(--red); }
.essential-world { --essential-accent: var(--ink); }
.essential-powers { --essential-accent: var(--gold); }
.essential-image { aspect-ratio: 16 / 9; display: block; position: relative; overflow: hidden; background: var(--ink); }
.essential-image img { width: 100%; height: 100%; display: block; object-fit: cover; filter: saturate(.84) contrast(1.04); transition: transform .45s ease; }
.essential-image:hover img, .essential-image:focus-visible img { transform: scale(1.035); }
.essential-card-copy { min-height: 305px; padding: 22px; display: flex; flex-direction: column; }
.essential-meta { padding-bottom: 12px; display: flex; justify-content: space-between; gap: 12px; color: var(--muted); border-bottom: 1px solid var(--line); font-size: .66rem; font-weight: 900; letter-spacing: .06em; text-transform: uppercase; }
.essential-meta-empty { min-height: 28px; }
.essential-card h3 { margin: 22px 0 14px; font: 400 clamp(1.55rem, 2.15vw, 2.3rem)/.98 Georgia, serif; letter-spacing: -.035em; }
.essential-card h3 a { text-decoration: none; }
.essential-card-copy > p { margin: 0 0 19px; color: var(--muted); font-size: .84rem; line-height: 1.52; }
.essential-card .editorial-card-actions { margin-top: auto; }

.article-archive { padding-bottom: 130px; }
.archive-heading { margin-bottom: 34px; display: flex; justify-content: space-between; gap: 40px; align-items: end; }
.archive-heading h2 { margin: 0; font: 400 clamp(2.8rem, 5vw, 5.6rem)/.9 Georgia, serif; letter-spacing: -.05em; }
.archive-heading > p { margin: 0 0 5px; color: var(--muted); font-size: .75rem; font-weight: 800; }
.article-controls { margin-bottom: 28px; padding: 20px; display: grid; grid-template-columns: minmax(220px, .8fr) minmax(480px, 1.7fr) minmax(190px, .65fr); gap: 18px; align-items: end; background: var(--cream); border: 1px solid var(--line); border-radius: 18px; }
.article-search, .article-publication-filter { display: grid; gap: 8px; }
.article-search label, .article-publication-filter label, .article-paths > span { color: var(--muted); font-size: .75rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.article-search input, .article-publication-filter select { width: 100%; min-height: 44px; padding: 9px 12px; color: var(--ink); background: var(--paper); border: 1px solid var(--line); border-radius: 10px; outline: 0; }
.article-search input:focus, .article-publication-filter select:focus { border-color: var(--ink); }
.article-paths { min-width: 0; display: grid; gap: 8px; }
.article-paths > div { display: flex; gap: 6px; overflow-x: auto; scrollbar-width: none; }
.article-paths .filter-chip { flex: 0 0 auto; }

.editorial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.editorial-card { min-width: 0; display: flex; flex-direction: column; background: var(--cream); border: 1px solid var(--line); border-radius: 20px; overflow: hidden; transition: transform .22s ease, border-color .22s ease; }
.editorial-card:hover { transform: translateY(-4px); border-color: var(--ink); }
.editorial-card[hidden] { display: none; }
.editorial-cover { min-height: 205px; padding: 19px; display: grid; grid-template-columns: 1fr auto; grid-template-rows: auto 1fr auto; color: white; position: relative; overflow: hidden; text-decoration: none; }
.editorial-cover::before { content: ""; width: 185px; aspect-ratio: 1; position: absolute; right: -34px; bottom: -65px; border: 1px solid currentColor; border-radius: 50%; box-shadow: 0 0 0 30px color-mix(in srgb, currentColor 12%, transparent), 0 0 0 62px color-mix(in srgb, currentColor 7%, transparent); }
.editorial-cover::after { content: ""; width: 64%; height: 1px; position: absolute; left: 19px; top: 52%; background: currentColor; opacity: .45; transform: rotate(-9deg); transform-origin: left; }
.cover-number { font: 400 2rem/1 Georgia, serif; }
.cover-path { z-index: 1; max-width: 165px; grid-column: 1; grid-row: 3; font-size: .75rem; font-weight: 900; letter-spacing: .08em; line-height: 1.35; text-transform: uppercase; }
.editorial-cover > strong { z-index: 1; grid-column: 2; grid-row: 3; align-self: end; font-size: 1rem; letter-spacing: -.06em; }
.editorial-cover-photo { padding: 0; background: var(--ink); }
.editorial-cover-photo::before { display: none; }
.editorial-cover-photo::after { display: none; }
.editorial-cover-photo img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; transition: transform .35s ease, filter .35s ease; }
.editorial-card:hover .editorial-cover-photo img { transform: scale(1.025); filter: saturate(1.05); }
.cover-biblical { background: color-mix(in srgb, var(--blue) 86%, #000); }
.cover-civilizations { background: color-mix(in srgb, var(--red) 86%, #000); }
.cover-world { color: var(--paper); background: var(--ink); }
.cover-powers { color: var(--ink); background: var(--acid); }
.editorial-card-copy { min-height: 350px; padding: 22px; display: flex; flex-direction: column; }
.editorial-meta { padding-bottom: 13px; display: flex; justify-content: space-between; gap: 12px; color: var(--muted); border-bottom: 1px solid var(--line); font-size: .75rem; font-weight: 900; letter-spacing: .05em; text-transform: uppercase; }
.editorial-meta span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.editorial-card h2 { margin: auto 0 14px; font: 400 clamp(1.55rem, 2.2vw, 2.35rem)/.98 Georgia, serif; letter-spacing: -.035em; }
.editorial-card h2 a { text-decoration: none; }
.editorial-card-copy > p { margin: 0 0 22px; color: var(--muted); font-size: .86rem; line-height: 1.52; }
.editorial-card-actions { padding-top: 14px; display: flex; align-items: end; justify-content: space-between; gap: 16px; border-top: 1px solid var(--line); }
.read-link { flex: 0 0 auto; font-size: .75rem; font-weight: 900; text-decoration: none; }
.read-link:hover, .read-link:focus-visible { color: var(--red); }
.original-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 4px 9px; }
.original-links a { color: var(--muted); font-size: .75rem; font-weight: 800; text-underline-offset: 3px; }
.article-no-results { padding: 90px 30px; text-align: center; border-block: 1px solid var(--line); }
.article-no-results h2, .reader-not-found h1 { margin: 0 0 28px; font: 400 clamp(2.5rem, 5vw, 5rem)/.94 Georgia, serif; letter-spacing: -.045em; }

.article-cover-hero { min-height: 440px; margin: 46px 0 85px; padding: clamp(28px, 5vw, 68px); display: grid; grid-template-columns: 1fr auto; grid-template-rows: auto 1fr auto; position: relative; overflow: hidden; border-radius: 24px; }
.article-cover-hero::before { content: ""; width: min(48vw, 610px); aspect-ratio: 1; position: absolute; right: -7%; bottom: -55%; border: 1px solid currentColor; border-radius: 50%; box-shadow: 0 0 0 60px color-mix(in srgb, currentColor 10%, transparent), 0 0 0 120px color-mix(in srgb, currentColor 6%, transparent); }
.article-cover-hero::after { content: ""; width: 72%; height: 1px; position: absolute; left: 8%; top: 54%; background: currentColor; opacity: .48; transform: rotate(-8deg); transform-origin: left; }
.article-cover-hero > span { font-size: .75rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.article-cover-hero > strong { z-index: 1; grid-column: 1; grid-row: 3; font: 400 clamp(6rem, 14vw, 13rem)/.72 Georgia, serif; letter-spacing: -.08em; }
.article-cover-hero > b { z-index: 1; grid-column: 2; grid-row: 3; align-self: end; font-size: clamp(1rem, 2vw, 1.7rem); line-height: .78; text-align: right; }
.article-image-hero { margin: 46px 0 85px; position: relative; overflow: hidden; background: var(--ink); border-radius: 24px; }
.article-image-hero img { width: 100%; aspect-ratio: 16 / 9; display: block; object-fit: cover; }
.article-body ol { margin: 8px 0 30px; padding-left: 1.35em; }
.article-body li { margin-bottom: 10px; line-height: 1.7; }
.article-keypoints strong, .article-keypoints em { display: block; color: var(--ink); font-size: .8rem; font-style: normal; line-height: 1.45; }
.article-keypoints em + em { margin-top: 4px; }
.article-publications { display: grid; gap: 9px; }
.article-publications > span { color: var(--red); font-size: .62rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.article-publications .button + .button { margin-top: 1px; }
.related-articles { margin-top: 115px; padding-top: 54px; border-top: 1px solid var(--line); }
.related-heading { margin-bottom: 28px; display: flex; justify-content: space-between; gap: 40px; align-items: end; }
.related-heading h2 { margin: 0; font: 400 clamp(2.7rem, 5vw, 5rem)/.9 Georgia, serif; letter-spacing: -.045em; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); border-radius: 18px; overflow: hidden; }
.related-grid > a { min-height: 220px; padding: 24px; display: flex; flex-direction: column; color: var(--ink); text-decoration: none; background: var(--cream); }
.related-grid > a + a { border-left: 1px solid var(--line); }
.related-grid > a:hover, .related-grid > a:focus-visible { background: var(--paper); }
.related-grid span, .related-grid small { color: var(--muted); font-size: .75rem; font-weight: 900; letter-spacing: .07em; text-transform: uppercase; }
.related-grid strong { margin: auto 0 22px; font: 400 clamp(1.35rem, 2vw, 2rem)/1 Georgia, serif; }
.reader-not-found { min-height: 65vh; display: flex; flex-direction: column; align-items: start; justify-content: center; }

.about-hero { padding-block: 90px 100px; display: grid; grid-template-columns: 1.3fr .7fr; gap: 70px; align-items: end; }
.about-title h1 { font-size: clamp(3.4rem, 6.2vw, 6.8rem); }
.about-statement { padding-left: 28px; border-left: 2px solid var(--red); }
.about-statement p { margin: 0 0 18px; font-size: 1rem; line-height: 1.65; }
.about-grid { padding-block: 0 120px; display: grid; grid-template-columns: .85fr 1.15fr; gap: 8vw; align-items: center; }
.portrait-placeholder { min-height: 600px; padding: 30px; display: flex; flex-direction: column; justify-content: space-between; color: white; background: var(--blue); border-radius: 18px 130px 18px 18px; overflow: hidden; position: relative; }
.portrait-placeholder::before, .portrait-placeholder::after { content: ""; position: absolute; border-radius: 50%; border: 1px solid rgba(255,255,255,.5); }
.portrait-placeholder::before { width: 460px; height: 460px; left: -180px; top: 70px; box-shadow: 0 0 0 55px rgba(255,255,255,.1), 0 0 0 110px rgba(255,255,255,.06); }
.portrait-placeholder::after { width: 180px; height: 180px; right: -40px; bottom: 50px; background: var(--red); border: 0; }
.portrait-placeholder span { z-index: 1; align-self: flex-end; font: 400 clamp(2.5rem, 5vw, 5.5rem)/.8 Georgia, serif; text-align: right; }
.portrait-placeholder small { z-index: 1; width: max-content; padding: 7px 9px; color: var(--ink); background: var(--acid); font-size: .58rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.bio-copy > p { color: var(--muted); font-size: 1rem; line-height: 1.68; }
.principles { margin-top: 34px; border-top: 1px solid var(--line); }
.principles > div { display: grid; grid-template-columns: 50px 1fr; gap: 15px; padding-block: 14px; border-bottom: 1px solid var(--line); }
.principles span { font: 400 1.25rem Georgia, serif; color: var(--red); }
.principles p { margin: 0; font-size: .82rem; line-height: 1.45; }
.support-band { padding-block: 80px; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 8vw, 120px); align-items: end; border-top: 1px solid var(--line); }
.support-band h2 { max-width: 520px; margin: 0; font: 400 clamp(2.2rem, 4.5vw, 4.7rem)/.95 Georgia, serif; }
.support-copy p { max-width: 560px; margin: 0 0 28px; color: var(--muted); font-size: 1.05rem; line-height: 1.65; }
.inquiry-section { padding-block: 100px; color: white; background: var(--ink); }
.inquiry-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 9vw; }
.inquiry-grid > div > p:not(.eyebrow) { max-width: 480px; color: rgba(255,255,255,.68); line-height: 1.6; }
.inquiry-grid .inquiry-contact { margin-top: 22px; color: white; font-weight: 700; }
.inquiry-contact a { color: var(--acid); }
.topic-list { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 28px; }
.topic-list span { padding: 8px 11px; border: 1px solid rgba(255,255,255,.28); border-radius: 999px; font-size: .62rem; }
.inquiry-form { display: grid; gap: 17px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.inquiry-form label { display: grid; gap: 7px; color: rgba(255,255,255,.72); font-size: .65rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.inquiry-form input, .inquiry-form select, .inquiry-form textarea { width: 100%; padding: 13px 0; color: white; background: transparent; border: 0; border-bottom: 1px solid rgba(255,255,255,.38); border-radius: 0; outline: 0; resize: vertical; }
.inquiry-form input:focus, .inquiry-form select:focus, .inquiry-form textarea:focus { border-color: var(--acid); }
.inquiry-form option { color: var(--ink); }
.inquiry-form .button { justify-self: start; margin-top: 8px; }
.form-note { margin: -4px 0 0; color: rgba(255,255,255,.45); font-size: .65rem; }

.thank-you-main { min-height: 68vh; padding-block: 100px 120px; display: grid; place-items: center; }
.thank-you-card { width: min(760px, 100%); padding: clamp(34px, 6vw, 70px); color: white; background: var(--ink); border-radius: 28px; }
.thank-you-card h1 { max-width: 620px; margin: 0 0 24px; font: 400 clamp(3.2rem, 7vw, 6rem)/.88 Georgia, serif; letter-spacing: -.05em; }
.thank-you-card p:not(.eyebrow) { max-width: 570px; color: rgba(255,255,255,.72); font-size: 1.05rem; line-height: 1.65; }
.thank-you-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.thank-you-card .button-quiet { color: white; border-color: rgba(255,255,255,.42); }
.thank-you-card .button-quiet:hover, .thank-you-card .button-quiet:focus-visible { color: var(--ink); background: white; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  :root { --shell: min(100% - 34px, 760px); }
  .menu-toggle { display: block; }
  .site-nav { display: none; position: absolute; left: 0; right: 0; top: 72px; padding: 22px; flex-direction: column; align-items: stretch; gap: 0; background: var(--cream); border: 1px solid var(--line); border-radius: 16px; box-shadow: 0 18px 50px rgba(0,0,0,.15); }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 12px 8px; }
  .nav-cta { margin-top: 8px; text-align: center; }
  .hero, .library-intro, .about-hero, .about-grid, .inquiry-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 70px; }
  .hero-art { min-height: 500px; }
  .section-heading { grid-template-columns: 1fr; }
  .format-grid, .content-grid { grid-template-columns: repeat(2, 1fr); }
  .format-featured, .content-card.featured { grid-column: span 2; }
  .booking-grid { grid-template-columns: 1fr; }
  .library-intro .eyebrow { grid-column: auto; margin-bottom: -35px; }
  .portrait-placeholder { min-height: 500px; }
  .article-byline { grid-template-columns: repeat(2, 1fr); }
  .article-reading-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; grid-template-columns: repeat(2, 1fr); }
  .article-source-button { grid-column: 1 / -1; }
  .articles-masthead, .featured-article { grid-template-columns: 1fr; }
  .essential-heading { grid-template-columns: 1fr; gap: 22px; }
  .essential-grid { grid-template-columns: repeat(2, 1fr); }
  .articles-masthead { gap: 40px; }
  .topics-intro-grid { grid-template-columns: 1fr; gap: 34px; }
  .topic-path { grid-template-columns: 110px minmax(0, 1fr); }
  .topic-path-next { min-height: 180px; grid-column: 1 / -1; }
  .topic-path-next strong { max-width: none; }
  .story-spine { grid-template-columns: 1fr; gap: 30px; }
  .featured-article-image { min-height: 470px; }
  .featured-article-copy { min-height: 500px; }
  .article-controls { grid-template-columns: 1fr 1fr; }
  .article-paths { grid-column: 1 / -1; grid-row: 2; }
  .editorial-grid { grid-template-columns: repeat(2, 1fr); }
  .article-publications { grid-column: 1 / -1; }
  .engagement-grid { grid-template-columns: repeat(2, 1fr); }
  .engagement-card:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }
  .engagement-card:nth-child(4) { border-top: 1px solid var(--line); }
}

@media (max-width: 620px) {
  :root { --shell: calc(100% - 28px); }
  .site-header { min-height: 72px; }
  .hero { min-height: auto; padding-block: 62px; }
  .hero h1, .library-intro h1, .about-title h1 { font-size: clamp(3.1rem, 15.5vw, 5.4rem); }
  .hero-art { min-height: 420px; border-radius: 110px 16px 110px 16px; }
  .topic-orbit { width: 78%; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .format-grid, .content-grid { grid-template-columns: 1fr; }
  .format-featured, .content-card.featured { grid-column: auto; }
  .format-card { min-height: 280px; }
  .section-heading { gap: 20px; }
  .ideas { padding-block: 80px; }
  .booking-band, .inquiry-section { padding-block: 76px; }
  .engagement-band { padding-block: 76px 88px; }
  .engagement-heading { grid-template-columns: 1fr; gap: 14px; }
  .engagement-grid { grid-template-columns: 1fr; }
  .engagement-card { min-height: 240px; }
  .engagement-card + .engagement-card { border-left: 0; border-top: 1px solid var(--line); }
  .site-footer { grid-template-columns: 1fr; }
  .social-links { grid-column: 1; grid-row: auto; flex-direction: column; align-items: flex-start; gap: 10px; max-width: none; margin-top: 18px; }
  .social-links .donate-link { margin-block: 4px 0; }
  .site-footer .prototype-note { grid-column: 1; }
  .support-band { grid-template-columns: 1fr; }
  .topics-page { padding-bottom: 80px; }
  .topics-intro { padding-block: 58px 54px; }
  .topics-intro h1 { font-size: clamp(3.5rem, 17vw, 5.5rem); }
  .topic-path { min-height: 0; padding: 25px 22px; grid-template-columns: 1fr; gap: 28px; border-radius: 20px; }
  .topic-path-index { min-height: 70px; flex-direction: row; align-items: flex-start; }
  .topic-path-index span { font-size: 3rem; }
  .topic-path-index small { max-width: 150px; text-align: right; }
  .topic-path-copy h2 { font-size: clamp(2.7rem, 13vw, 4rem); }
  .topic-path-actions { align-items: stretch; flex-direction: column; }
  .topic-path-actions .button { width: 100%; justify-content: center; }
  .topic-path-next { min-height: 150px; grid-column: auto; }
  .story-spine { padding: 34px 24px; border-radius: 20px; }
  .library-page { padding-top: 55px; }
  .library-intro { gap: 25px; margin-bottom: 55px; }
  .library-intro .eyebrow { margin-bottom: 0; }
  .library-controls { padding: 20px; }
  .search-wrap, .filter-group { grid-template-columns: 1fr; gap: 10px; }
  .content-card { min-height: 330px; }
  .content-dialog { padding: 34px 24px; }
  .article-page { padding-block: 38px 80px; }
  .article-back { margin-bottom: 45px; }
  .article-header h1 { font-size: clamp(3.05rem, 14.5vw, 5.2rem); }
  .article-byline { grid-template-columns: 1fr; gap: 16px; }
  .article-hero { margin: 36px -14px 60px; }
  .article-hero img { min-height: 330px; aspect-ratio: auto; border-radius: 0; object-position: 51% center; }
  .article-hero figcaption { padding-inline: 14px; }
  .article-sidebar { grid-template-columns: 1fr; }
  .article-source-button { grid-column: auto; }
  .article-footer-nav { margin-top: 75px; grid-template-columns: 1fr; }
  .article-footer-nav a + a { border-left: 0; border-top: 1px solid var(--line); }
  .articles-masthead { padding-block: 62px; }
  .articles-masthead h1 { font-size: clamp(3.3rem, 16.5vw, 5.4rem); }
  .archive-stats span { font-size: .68rem; }
  .featured-article { margin-inline: 14px; margin-bottom: 82px; }
  .featured-article-image { min-height: 330px; }
  .featured-article-copy { min-height: 440px; padding: 30px 24px; }
  .featured-article-copy h2 { font-size: clamp(2.4rem, 11.5vw, 3.6rem); }
  .essential-essays { margin-bottom: 82px; }
  .essential-grid { grid-template-columns: 1fr; }
  .essential-card-copy { min-height: 280px; }
  .archive-heading { align-items: start; flex-direction: column; gap: 15px; }
  .article-controls { grid-template-columns: 1fr; padding: 14px; }
  .article-paths { grid-column: 1; grid-row: auto; }
  .article-publication-filter { grid-column: 1; }
  .editorial-grid { grid-template-columns: 1fr; }
  .editorial-card-copy { min-height: 310px; }
  .article-cover-hero { min-height: 330px; margin: 36px -14px 60px; border-radius: 0; }
  .article-image-hero { margin: 36px -14px 60px; border-radius: 0; }
  .article-cover-hero > strong { font-size: clamp(5rem, 29vw, 8rem); }
  .article-publications { grid-column: auto; }
  .related-articles { margin-top: 80px; }
  .related-heading { align-items: start; flex-direction: column; gap: 12px; }
  .related-grid { grid-template-columns: 1fr; }
  .related-grid > a + a { border-left: 0; border-top: 1px solid var(--line); }
  .about-hero { gap: 35px; padding-block: 65px; }
  .about-statement { padding-left: 18px; }
  .about-grid { gap: 60px; padding-bottom: 80px; }
  .portrait-placeholder { min-height: 440px; }
  .field-row { grid-template-columns: 1fr; }
}

/* Private Watch & Listen catalogue study */
.visually-hidden { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.media-page { padding-block: 78px 120px; }
.media-intro { display: grid; grid-template-columns: 1fr .75fr; gap: 70px; align-items: end; margin-bottom: 48px; }
.media-intro h1 { margin: 0; font: 400 clamp(4.5rem, 8vw, 8.5rem)/.78 Georgia, serif; letter-spacing: -.065em; }
.media-intro h1 em { color: var(--red); font-weight: 400; }
.media-intro-copy > p { max-width: 550px; margin: 0 0 21px; color: var(--muted); font-size: 1.08rem; line-height: 1.6; }
.media-intro-link { padding: 0 0 5px; color: var(--ink); background: transparent; border: 0; border-bottom: 1px solid var(--line); font-size: .72rem; font-weight: 900; text-align: left; cursor: pointer; }
.media-intro-link:hover, .media-intro-link:focus-visible { border-color: var(--ink); }
.media-feature { margin-bottom: 110px; color: var(--paper); background: var(--ink); border-radius: 26px; overflow: hidden; }
.featured-media-open { width: 100%; min-height: 470px; display: grid; grid-template-columns: 1.25fr .75fr; padding: 0; color: inherit; background: transparent; border: 0; text-align: left; cursor: pointer; }
.feature-visual { min-height: 470px; display: grid; place-items: center; position: relative; overflow: hidden; background: var(--blue); }
.feature-visual::before { content: ""; position: absolute; inset: 22px; z-index: 2; border: 1px solid rgba(255,255,255,.35); border-radius: 18px; pointer-events: none; }
.feature-visual::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(5,7,11,.08), rgba(5,7,11,.14) 45%, rgba(5,7,11,.76)); }
.feature-visual > img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; filter: saturate(.82) contrast(1.06); }
.feature-word { position: absolute; left: 42px; bottom: 75px; z-index: 3; font-size: .62rem; font-weight: 900; letter-spacing: .16em; }
.feature-duration { position: absolute; left: 42px; bottom: 37px; z-index: 3; font-size: .65rem; font-weight: 900; letter-spacing: .1em; }
.feature-play, .media-play { display: grid; place-items: center; border-radius: 50%; }
.feature-play { width: 72px; aspect-ratio: 1; position: absolute; right: 37px; bottom: 28px; z-index: 2; color: var(--ink); background: var(--acid); font-size: 1.1rem; }
.feature-copy { padding: 42px; display: flex; flex-direction: column; }
.media-kicker, .media-meta { font-size: .62rem; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
.media-kicker { color: var(--acid); }
.feature-copy > strong { margin: auto 0 20px; font: 400 clamp(2.2rem, 3.5vw, 4rem)/.95 Georgia, serif; letter-spacing: -.04em; }
.feature-description { max-width: 420px; color: color-mix(in srgb, currentColor 68%, transparent); font-size: .84rem; line-height: 1.55; }
.feature-action { margin-top: 30px; padding-top: 17px; display: flex; justify-content: space-between; border-top: 1px solid color-mix(in srgb, currentColor 25%, transparent); font-size: .7rem; font-weight: 900; }

.media-start { margin-bottom: 112px; }
.media-start-heading { margin-bottom: 30px; display: grid; grid-template-columns: 1fr .58fr; gap: 56px; align-items: end; }
.media-start-heading h2 { margin: 0; font: 400 clamp(2.9rem, 5.2vw, 5.6rem)/.9 Georgia, serif; letter-spacing: -.055em; }
.media-start-heading > p { max-width: 420px; margin: 0 0 6px; color: var(--muted); line-height: 1.6; }
.media-doorways { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 13px; }
.media-doorway { min-height: 268px; padding: 0; display: grid; grid-template-columns: .92fr 1.08fr; color: var(--ink); background: var(--cream); border: 1px solid var(--line); border-radius: 20px; overflow: hidden; text-align: left; cursor: pointer; transition: transform .2s ease, border-color .2s ease; }
.media-doorway:hover, .media-doorway:focus-visible { transform: translateY(-4px); border-color: var(--ink); }
.doorway-visual { min-height: 268px; position: relative; overflow: hidden; background: #090b10; }
.doorway-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.02) 40%, rgba(0,0,0,.6)); }
.doorway-visual img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; transition: transform .35s ease, filter .35s ease; }
.media-doorway:hover .doorway-visual img { transform: scale(1.025); filter: saturate(1.08); }
.doorway-format { position: absolute; left: 14px; top: 14px; z-index: 1; padding: 5px 7px; color: white; background: rgba(0,0,0,.75); border-radius: 5px; font-size: .53rem; font-weight: 900; letter-spacing: .05em; text-transform: uppercase; }
.doorway-play { width: 38px; aspect-ratio: 1; position: absolute; right: 14px; bottom: 14px; z-index: 1; display: grid; place-items: center; color: #121620; background: var(--acid); border-radius: 50%; font-size: .65rem; }
.doorway-copy { padding: 23px; display: flex; flex-direction: column; }
.doorway-copy > span { color: var(--red); font-size: .59rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.doorway-copy strong { margin: auto 0 12px; font: 400 clamp(1.45rem, 2.2vw, 2.35rem)/.96 Georgia, serif; letter-spacing: -.035em; }
.doorway-copy small { color: var(--muted); font-size: .72rem; line-height: 1.48; }

.media-library-heading { display: grid; grid-template-columns: 1fr .65fr; gap: 60px; align-items: end; margin-bottom: 38px; }
.media-library-heading h2 { margin: 0; font: 400 clamp(2.8rem, 5vw, 5.3rem)/.92 Georgia, serif; letter-spacing: -.05em; }
.media-library-heading > p { max-width: 420px; margin: 0 0 5px; color: var(--muted); line-height: 1.6; }
.media-controls { display: grid; grid-template-columns: minmax(250px, 1fr) auto auto; gap: 14px 22px; align-items: center; margin-bottom: 28px; padding: 20px; background: var(--cream); border: 1px solid var(--line); border-radius: 18px; }
.media-search { min-width: 260px; }
.media-format-row { grid-column: 1 / 3; display: flex; flex-wrap: wrap; gap: 7px; }
.media-format-chip { padding: 9px 13px; color: var(--ink); background: transparent; border: 1px solid var(--line); border-radius: 999px; font-size: .66rem; font-weight: 900; cursor: pointer; }
.media-format-chip.active { color: var(--paper); background: var(--ink); border-color: var(--ink); }
.media-topic-select { display: flex; align-items: center; gap: 8px; color: var(--muted); font-size: .62rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.media-topic-select select { max-width: 200px; padding: 10px 28px 10px 11px; color: var(--ink); background: var(--paper); border: 1px solid var(--line); border-radius: 10px; }
.view-switch { display: inline-flex; justify-self: end; padding: 3px; border: 1px solid var(--line); border-radius: 10px; }
.view-switch button { min-height: 36px; padding: 0 11px; color: var(--muted); background: transparent; border: 0; border-radius: 7px; font-size: .65rem; font-weight: 900; cursor: pointer; }
.view-switch button.active { color: var(--paper); background: var(--ink); }
.media-result-count { justify-self: end; margin: 0; color: var(--muted); font-size: .66rem; }

.media-catalogue.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 13px; }
.media-card { min-width: 0; }
.media-card[hidden] { display: none; }
.media-card-open { width: 100%; height: 100%; padding: 0; display: flex; flex-direction: column; color: var(--ink); background: var(--cream); border: 1px solid var(--line); border-radius: 18px; overflow: hidden; text-align: left; cursor: pointer; transition: transform .2s, border-color .2s; }
.media-card-open:hover, .media-card-open:focus-visible { transform: translateY(-4px); border-color: var(--ink); }
.media-thumb { width: 100%; aspect-ratio: 16 / 9; padding: 18px; display: flex; align-items: flex-end; position: relative; overflow: hidden; color: white; background: var(--blue); }
.media-thumb::before { content: ""; width: 185px; aspect-ratio: 1; position: absolute; right: -55px; top: -55px; border: 1px solid currentColor; border-radius: 50%; box-shadow: 0 0 0 30px rgba(255,255,255,.1), 0 0 0 62px rgba(255,255,255,.06); }
.media-thumb.has-image { padding: 0; background: #090b10; }
.media-thumb.has-image::before { width: auto; inset: 0; z-index: 1; border: 0; border-radius: 0; background: linear-gradient(180deg, rgba(0,0,0,.02) 40%, rgba(0,0,0,.52)); box-shadow: none; }
.media-thumb.has-image img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; transition: transform .35s ease, filter .35s ease; }
.media-card-open:hover .media-thumb.has-image img { transform: scale(1.025); filter: saturate(1.08); }
.media-thumb.short-image img { object-position: center; }
.media-symbol { z-index: 1; font: 900 clamp(.85rem, 1.3vw, 1.25rem)/.9 ui-sans-serif, sans-serif; letter-spacing: -.03em; }
.media-play { width: 35px; aspect-ratio: 1; position: absolute; right: 14px; bottom: 13px; z-index: 2; color: #121620; background: var(--acid); font-size: .65rem; }
.media-duration { position: absolute; left: 16px; top: 14px; z-index: 1; padding: 5px 7px; color: white; background: rgba(0,0,0,.72); border-radius: 5px; font-size: .55rem; font-weight: 900; }
.thumb-audio, .thumb-persia { background: var(--red); }
.platform-spotify { background: #173f31; }
.platform-apple { background: linear-gradient(135deg, #7d3bb0, #d24e72); }
.thumb-rumble { align-items: center; color: var(--paper); background: linear-gradient(135deg, var(--red), var(--ink)); }
.thumb-current { align-items: center; color: var(--paper); background: linear-gradient(135deg, var(--blue), var(--ink)); }
.thumb-current .platform-label { top: 17px; bottom: auto; }
.thumb-current .media-symbol { max-width: 78%; font: 400 clamp(1.25rem, 2vw, 2.05rem)/.92 Georgia, serif; letter-spacing: -.035em; }
.thumb-rumble .platform-label { top: 17px; bottom: auto; }
.thumb-rumble .media-symbol { max-width: 78%; font: 400 clamp(1.25rem, 2vw, 2.05rem)/.92 Georgia, serif; letter-spacing: -.035em; }
.platform-label { position: absolute; left: 18px; bottom: 16px; z-index: 1; font-size: .7rem; font-weight: 900; letter-spacing: .14em; }
.platform-label + .waveform { margin-left: auto; margin-right: 52px; opacity: .72; }
.thumb-ideology, .thumb-israel { background: var(--blue); }
.thumb-short { color: #121620; background: var(--gold); }
.thumb-powers, .thumb-macro { color: var(--paper); background: var(--ink); }
.thumb-persia { background: var(--red); }
.waveform { z-index: 1; height: 62%; display: flex; align-items: center; gap: 5px; }
.waveform i { width: 4px; height: 32%; display: block; background: currentColor; border-radius: 3px; }
.waveform i:nth-child(2), .waveform i:nth-child(6) { height: 65%; }
.waveform i:nth-child(3), .waveform i:nth-child(7) { height: 90%; }
.waveform i:nth-child(4), .waveform i:nth-child(8) { height: 48%; }
.waveform i:nth-child(5) { height: 100%; }
.short-frame { z-index: 1; padding: 12px 16px; border: 2px solid currentColor; font-weight: 900; line-height: .8; }
.orbit-small { width: 130px; aspect-ratio: 1; position: absolute; right: 23%; top: 14%; border: 1px dashed currentColor; border-radius: 50%; }
.media-card-copy { min-height: 190px; padding: 20px; display: flex; flex-direction: column; }
.media-meta { color: var(--red); }
.media-card-copy strong { margin: auto 0 11px; font: 400 clamp(1.35rem, 2vw, 2rem)/1 Georgia, serif; letter-spacing: -.025em; }
.media-card-copy > span:last-child { color: var(--muted); font-size: .75rem; line-height: 1.48; }

.media-catalogue.list { display: grid; grid-template-columns: 1fr; gap: 8px; }
.media-catalogue.list .media-card-open { min-height: 150px; display: grid; grid-template-columns: 240px 1fr; }
.media-catalogue.list .media-thumb { height: 100%; aspect-ratio: auto; }
.media-catalogue.list .media-card-copy { min-height: 0; padding: 23px 28px; }
.media-catalogue.list .media-card-copy strong { margin: auto 0 8px; font-size: clamp(1.3rem, 2.2vw, 2rem); }
.media-no-results { border-top: 1px solid var(--line); }

.media-dialog { width: min(1060px, calc(100vw - 36px)); max-height: calc(100dvh - 24px); padding: 0; display: none; grid-template-columns: 1.12fr .88fr; color: var(--ink); background: var(--cream); border: 0; border-radius: 22px; overflow: hidden; box-shadow: 0 30px 100px rgba(0,0,0,.45); }
.media-dialog[open] { display: grid; }
.media-dialog::backdrop { background: rgba(8,8,8,.78); backdrop-filter: blur(5px); }
.embed-player { min-height: 540px; display: grid; place-items: center; background: #090b10; }
.embed-player iframe { width: 100%; height: 100%; min-height: 540px; display: block; border: 0; background: #090b10; }
.embed-player.rumble > div { width: 100%; }
.embed-player.spotify, .embed-player.apple { min-height: 400px; padding: 38px; align-self: center; }
.embed-player.spotify iframe { min-height: 352px; max-height: 352px; border-radius: 14px; }
.embed-player.apple iframe { min-height: 450px; max-height: 450px; border-radius: 14px; }
.media-dialog-copy { padding: 45px; display: flex; flex-direction: column; }
.media-dialog-copy h2 { margin: 0 0 19px; font: 400 clamp(2.2rem, 4vw, 4rem)/.93 Georgia, serif; letter-spacing: -.045em; }
.media-dialog-copy > p:not(.eyebrow) { color: var(--muted); line-height: 1.55; }
.media-detail-meta { margin-block: 22px; padding-block: 13px; display: flex; justify-content: space-between; border-block: 1px solid var(--line); font-size: .68rem; font-weight: 900; }
.media-dialog-actions { margin-top: auto; display: flex; gap: 9px; flex-wrap: wrap; }
.media-dialog-actions .button { text-decoration: none; }

.coast-archive { margin-top: 88px; padding: 34px; display: grid; grid-template-columns: 150px 1fr; gap: 34px; color: var(--ink); background: var(--cream); border: 1px solid var(--line); border-radius: 22px; }
.coast-mark { width: 150px; aspect-ratio: 1; display: grid; place-content: center; position: relative; color: var(--paper); background: var(--ink); border-radius: 50%; text-align: center; }
.coast-mark::before, .coast-mark::after { content: ""; position: absolute; border: 1px solid color-mix(in srgb, var(--paper) 32%, transparent); border-radius: 50%; }
.coast-mark::before { inset: 13px; }
.coast-mark::after { inset: 24px; }
.coast-mark span, .coast-mark small { position: relative; z-index: 1; }
.coast-mark span { font: 400 2rem/.9 Georgia, serif; letter-spacing: -.06em; }
.coast-mark small { margin-top: 4px; font-size: .58rem; font-weight: 900; letter-spacing: .18em; }
.coast-copy { max-width: 800px; }
.coast-copy .eyebrow { margin-bottom: 12px; }
.coast-copy h2 { margin: 0; font: 400 clamp(2.2rem, 4vw, 4.2rem)/.94 Georgia, serif; letter-spacing: -.045em; }
.coast-copy > p:not(.eyebrow):not(.coast-note):not(.coast-meta) { max-width: 720px; margin: 20px 0; color: var(--muted); font-size: 1rem; line-height: 1.58; }
.coast-meta { margin: 8px 0 0; color: var(--red); font-size: .7rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.coast-actions { display: flex; align-items: center; gap: 10px; font-size: .75rem; font-weight: 900; }
.coast-actions a, .coast-toggle { color: var(--ink); text-decoration: underline; text-decoration-color: color-mix(in srgb, currentColor 32%, transparent); text-underline-offset: 4px; }
.coast-toggle { padding: 0; background: transparent; border: 0; font: inherit; cursor: pointer; }
.coast-actions a:hover, .coast-toggle:hover { text-decoration-color: currentColor; }
.coast-note { margin: 14px 0 0; color: var(--muted); font-size: .68rem; font-style: italic; }
.coast-appearances { grid-column: 1 / -1; margin-top: 4px; border-top: 1px solid var(--line); }
.coast-appearances[hidden] { display: none; }
.coast-appearances article { min-height: 96px; padding: 18px 4px; display: grid; grid-template-columns: 125px minmax(0, 1fr) auto; gap: 24px; align-items: center; border-bottom: 1px solid var(--line); }
.coast-appearances time { color: var(--muted); font-size: .67rem; font-weight: 900; letter-spacing: .05em; text-transform: uppercase; }
.coast-appearances h3 { margin: 0 0 4px; font: 400 1.35rem/1 Georgia, serif; }
.coast-appearances p { margin: 0; color: var(--muted); font-size: .75rem; line-height: 1.45; }
.coast-appearances a { color: var(--ink); font-size: .68rem; font-weight: 900; text-decoration: none; white-space: nowrap; }
.coast-appearances .collection-media-open { padding: 9px 0; color: var(--ink); background: transparent; border: 0; font-size: .68rem; font-weight: 900; text-decoration: none; white-space: nowrap; cursor: pointer; }
.coast-appearances a:hover, .coast-appearances a:focus-visible,
.coast-appearances .collection-media-open:hover, .coast-appearances .collection-media-open:focus-visible { text-decoration: underline; text-underline-offset: 4px; }
.series-archive { position: relative; overflow: hidden; }
.series-archive::after { content: ""; width: 320px; aspect-ratio: 1; position: absolute; right: -165px; top: -175px; border: 1px solid color-mix(in srgb, var(--ink) 11%, transparent); border-radius: 50%; box-shadow: 0 0 0 42px color-mix(in srgb, var(--ink) 4%, transparent), 0 0 0 86px color-mix(in srgb, var(--ink) 2%, transparent); pointer-events: none; }
.series-mark { color: #121620; background: var(--acid); }
.series-archive .coast-appearances article { grid-template-columns: 112px minmax(0, 1fr) auto; }
.series-art { width: 112px; aspect-ratio: 16 / 10; display: grid; place-content: center; position: relative; overflow: hidden; color: white; background: var(--ink); border-radius: 10px; text-align: center; }
.series-art img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; }
.series-art.has-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,.68)); }
.series-art > span { position: absolute; left: 8px; bottom: 7px; z-index: 1; font-size: .49rem; font-weight: 900; letter-spacing: .12em; }
.series-art > strong { font: 400 1.3rem/.82 Georgia, serif; letter-spacing: -.04em; }
.series-art.audio-spotify { background: linear-gradient(135deg, #173f31, #0a1712); }
.series-art.audio-apple { background: linear-gradient(135deg, #7d3bb0, #d24e72); }
.series-episode { margin-bottom: 7px !important; color: var(--red) !important; font-size: .56rem !important; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }
.series-archive + .coast-archive { margin-top: 22px; }

html[data-palette="nocturne"] .media-feature,
html[data-palette="nocturne"] .thumb-powers,
html[data-palette="nocturne"] .thumb-macro { color: #f4f0e7; background: #090b10; }
html[data-palette="nocturne"] .feature-play,
html[data-palette="nocturne"] .media-play { color: #121620; }
html[data-palette="clinical"] .media-feature,
html[data-palette="clinical"] .thumb-powers,
html[data-palette="clinical"] .thumb-macro { color: #ffffff; background: #0a0a0a; }
html[data-palette="nocturne"] .coast-mark { color: #f4f0e7; background: #090b10; }
html[data-palette="clinical"] .coast-mark { color: #ffffff; background: #0a0a0a; }

@media (max-width: 980px) {
  .media-intro, .media-start-heading, .media-library-heading { grid-template-columns: 1fr; gap: 24px; }
  .featured-media-open { grid-template-columns: 1fr; }
  .feature-copy { min-height: 360px; }
  .media-doorway { grid-template-columns: 1fr; }
  .doorway-visual { min-height: 210px; }
  .doorway-copy { min-height: 220px; }
  .media-catalogue.grid { grid-template-columns: repeat(2, 1fr); }
  .media-controls { grid-template-columns: 1fr auto; }
  .media-format-row { grid-column: 1 / -1; grid-row: 2; }
  .media-topic-select { grid-column: 1; grid-row: 3; }
  .view-switch { grid-column: 2; grid-row: 1; }
  .media-result-count { grid-column: 2; grid-row: 3; }
  .media-dialog[open] { grid-template-columns: 1fr; overflow-y: auto; }
  .embed-player, .embed-player iframe { min-height: min(56vw, 520px); }
  .embed-player.spotify, .embed-player.apple { padding: 28px; }
  .coast-archive { grid-template-columns: 112px 1fr; }
  .coast-mark { width: 112px; }
}

@media (max-width: 620px) {
  .media-page { padding-top: 55px; }
  .media-intro h1 { font-size: clamp(4rem, 20vw, 6rem); }
  .media-start { margin-bottom: 82px; }
  .media-doorways { grid-template-columns: 1fr; }
  .media-doorway { grid-template-columns: 42% 1fr; min-height: 220px; }
  .doorway-visual { min-height: 220px; }
  .doorway-copy { min-height: 220px; padding: 19px; }
  .doorway-copy strong { font-size: clamp(1.35rem, 7vw, 1.9rem); }
  .media-feature { margin-bottom: 80px; }
  .feature-visual { min-height: 330px; }
  .feature-word { left: 30px; bottom: 68px; font-size: .54rem; }
  .feature-copy { min-height: 320px; padding: 30px; }
  .media-controls { grid-template-columns: 1fr auto; padding: 14px; }
  .media-search { min-width: 0; }
  .media-format-row { flex-wrap: nowrap; margin-inline: -14px; padding-inline: 14px; overflow-x: auto; scrollbar-width: none; }
  .media-format-chip { flex: 0 0 auto; }
  .media-topic-select { grid-column: 1 / -1; }
  .media-topic-select select { max-width: none; flex: 1; }
  .media-result-count { grid-column: 1 / -1; justify-self: start; }
  .view-switch span { display: none; }
  .media-catalogue.grid { grid-template-columns: 1fr; }
  .media-catalogue.list .media-card-open { min-height: 125px; grid-template-columns: 118px 1fr; }
  .media-catalogue.list .media-card-copy { padding: 14px; }
  .media-catalogue.list .media-card-copy strong { font-size: 1.03rem; }
  .media-catalogue.list .media-card-copy > span:last-child { display: none; }
  .media-catalogue.list .media-meta { font-size: .5rem; }
  .media-catalogue.list .media-play { display: none; }
  .media-dialog-copy { padding: 30px 24px; }
  .embed-player, .embed-player iframe { min-height: 56vw; }
  .embed-player.spotify, .embed-player.apple { min-height: 260px; padding: 16px; }
  .embed-player.spotify iframe { min-height: 232px; max-height: 232px; }
  .embed-player.apple iframe { min-height: 310px; max-height: 310px; }
  .coast-archive { margin-top: 64px; padding: 24px; grid-template-columns: 1fr; gap: 24px; }
  .coast-mark { width: 92px; }
  .coast-mark span { font-size: 1.45rem; }
  .coast-copy h2 { font-size: clamp(2.35rem, 13vw, 3.4rem); }
  .coast-actions { align-items: flex-start; flex-wrap: wrap; }
  .coast-appearances { grid-column: 1; }
  .coast-appearances article { grid-template-columns: 1fr; gap: 8px; align-items: start; }
  .coast-appearances a { margin-top: 4px; }
  .series-archive .coast-appearances article { grid-template-columns: 82px minmax(0, 1fr); gap: 14px; }
  .series-art { width: 82px; }
  .series-archive .coast-appearances .collection-media-open { grid-column: 2; justify-self: start; }
}

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

/* Documentary: an origin point carried into the present */
.documentary-note {
  margin-bottom: 120px;
  padding-block: 28px;
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr) auto;
  gap: 30px;
  align-items: center;
  border-block: 1px solid var(--line);
}
.documentary-note-year { color: var(--red); font: 400 clamp(2.7rem, 4vw, 4.4rem)/1 Georgia, serif; letter-spacing: -.05em; }
.documentary-note-copy .eyebrow { margin-bottom: 8px; }
.documentary-note-copy h2 { margin: 0 0 8px; font: 400 clamp(1.65rem, 2.6vw, 2.7rem)/1 Georgia, serif; letter-spacing: -.035em; }
.documentary-note-copy h2 em { font-weight: 400; }
.documentary-note-copy > p:last-child { max-width: 710px; margin: 0; color: var(--muted); font-size: .82rem; line-height: 1.55; }
.documentary-note-link { padding-bottom: 5px; border-bottom: 1px solid currentColor; font-size: .72rem; font-weight: 900; text-decoration: none; white-space: nowrap; }
.documentary-note-link:hover, .documentary-note-link:focus-visible { color: var(--red); }

.documentary-page { overflow: hidden; }
.documentary-hero {
  min-height: 610px;
  padding-block: 80px 64px;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 7vw;
  align-items: end;
}
.documentary-title h1 { margin: 0; font: 400 clamp(4.7rem, 9vw, 9.4rem)/.75 Georgia, serif; letter-spacing: -.075em; }
.documentary-title h1 em { color: var(--red); font-weight: 400; }
.documentary-intro { padding-bottom: 10px; }
.documentary-lead { max-width: 590px; margin: 0 0 42px; font: 400 clamp(1.45rem, 2.4vw, 2.3rem)/1.25 Georgia, serif; letter-spacing: -.025em; }
.documentary-meta { display: flex; flex-wrap: wrap; gap: 8px; }
.documentary-meta span { padding: 8px 11px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); font-size: .64rem; font-weight: 900; letter-spacing: .07em; text-transform: uppercase; }

.documentary-screen { margin-bottom: 118px; }
.documentary-player { aspect-ratio: 16 / 9; overflow: hidden; background: #090b10; border-radius: 24px 24px 0 0; }
.documentary-player iframe { width: 100%; height: 100%; display: block; border: 0; }
.documentary-watchbar { min-height: 76px; padding: 20px 28px; display: flex; justify-content: space-between; align-items: center; gap: 24px; color: var(--paper); background: var(--ink); border-radius: 0 0 24px 24px; font-size: .7rem; font-weight: 900; }
.documentary-watchbar a { text-decoration: none; }
.documentary-watchbar a:hover, .documentary-watchbar a:focus-visible { color: var(--acid); }
.documentary-watch-actions { display: flex; gap: 20px; align-items: center; }
.documentary-watch-actions .documentary-donate { padding: 9px 14px; color: var(--ink); background: var(--acid); border-radius: 999px; }
.documentary-watch-actions .documentary-donate:hover, .documentary-watch-actions .documentary-donate:focus-visible { color: white; background: var(--red); }

.documentary-framing { padding-bottom: 120px; display: grid; grid-template-columns: .82fr 1.18fr; gap: 9vw; align-items: start; }
.documentary-framing h2, .documentary-archive-heading h2, .documentary-question h2, .documentary-forward h2 { margin: 0; font: 400 clamp(2.8rem, 5vw, 5.2rem)/.92 Georgia, serif; letter-spacing: -.05em; }
.documentary-framing-copy { padding-top: 2px; }
.documentary-framing-copy p { max-width: 740px; margin: 0 0 24px; color: var(--muted); font-size: clamp(1rem, 1.4vw, 1.14rem); line-height: 1.72; }
.documentary-framing-copy em { color: var(--ink); }

.documentary-archive-preview { padding-bottom: 122px; }
.documentary-archive-heading { margin-bottom: 34px; display: grid; grid-template-columns: .82fr 1.18fr; gap: 9vw; align-items: end; }
.documentary-archive-heading > div:last-child { padding-bottom: 5px; }
.documentary-archive-heading > div:last-child p { max-width: 720px; margin: 0 0 20px; color: var(--muted); font-size: 1rem; line-height: 1.66; }
.documentary-archive-heading a { padding-bottom: 5px; color: var(--ink); border-bottom: 1px solid var(--line); font-size: .74rem; font-weight: 900; text-decoration: none; }
.documentary-archive-heading a:hover, .documentary-archive-heading a:focus-visible { border-color: var(--ink); }
.documentary-archive-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.documentary-archive-grid a { min-width: 0; padding: 10px 10px 17px; color: var(--ink); background: var(--cream); border: 1px solid var(--line); border-radius: 15px; text-decoration: none; transition: transform .2s ease, border-color .2s ease; }
.documentary-archive-grid a:hover, .documentary-archive-grid a:focus-visible { transform: translateY(-4px); border-color: var(--ink); }
.documentary-archive-grid a > span { aspect-ratio: 4 / 3; display: block; position: relative; overflow: hidden; background: #111; border-radius: 9px; }
.documentary-archive-grid img { width: 100%; height: 100%; display: block; object-fit: contain; transition: transform .3s ease; }
.documentary-archive-grid a:hover img { transform: scale(1.025); }
.documentary-archive-grid i { position: absolute; left: 9px; top: 9px; padding: 5px 6px; color: white; background: rgba(0,0,0,.75); border-radius: 4px; font-size: .54rem; font-style: normal; font-weight: 900; }
.documentary-archive-grid strong { margin-top: 14px; display: block; font: 400 clamp(1.15rem, 1.8vw, 1.7rem)/1 Georgia, serif; }

.documentary-question { padding-block: 110px; color: var(--paper); background: var(--ink); }
.documentary-question-inner { display: grid; grid-template-columns: 1.15fr .85fr; gap: 4vw 9vw; align-items: end; }
.documentary-question .eyebrow { grid-column: 1 / -1; }
.documentary-question h2 { max-width: 820px; }
.documentary-question-inner > p:not(.eyebrow) { max-width: 520px; margin: 0 0 8px; color: color-mix(in srgb, currentColor 68%, transparent); font-size: 1rem; line-height: 1.62; }
.documentary-thread { grid-column: 1 / -1; margin-top: 58px; display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid color-mix(in srgb, currentColor 28%, transparent); border-radius: 16px; overflow: hidden; }
.documentary-thread span { min-height: 82px; padding: 18px; display: grid; place-items: center; position: relative; text-align: center; font-size: .68rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.documentary-thread span + span { border-left: 1px solid color-mix(in srgb, currentColor 28%, transparent); }
.documentary-thread span:not(:last-child)::after { content: "→"; position: absolute; right: -10px; z-index: 1; padding: 2px 5px; color: var(--acid); background: var(--ink); }

.documentary-forward { padding-block: 120px 140px; }
.documentary-forward-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); border-radius: 20px; overflow: hidden; }
.documentary-forward-grid > * { min-height: 330px; padding: 27px; display: flex; flex-direction: column; color: var(--ink); background: var(--cream); text-decoration: none; }
.documentary-forward-grid > * + * { border-left: 1px solid var(--line); }
.documentary-forward-grid > a { transition: background .2s; }
.documentary-forward-grid > a:hover, .documentary-forward-grid > a:focus-visible { background: var(--paper); }
.documentary-forward-grid span { color: var(--red); font-size: .64rem; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
.documentary-forward-grid strong { margin: auto 0 18px; font: 400 clamp(1.5rem, 2.4vw, 2.45rem)/1 Georgia, serif; letter-spacing: -.03em; }
.documentary-forward-grid p { margin: 0 0 24px; color: var(--muted); font-size: .8rem; line-height: 1.52; }
.documentary-forward-grid b { font-size: .69rem; }
.documentary-forward-grid > div b { color: var(--muted); }

html[data-palette="nocturne"] .documentary-watchbar,
html[data-palette="nocturne"] .documentary-question { color: #f4f0e7; background: #090b10; }
html[data-palette="nocturne"] .documentary-thread span:not(:last-child)::after { background: #090b10; }
html[data-palette="clinical"] .documentary-watchbar,
html[data-palette="clinical"] .documentary-question { color: #ffffff; background: #0a0a0a; }
html[data-palette="clinical"] .documentary-thread span:not(:last-child)::after { color: #ffffff; background: #0a0a0a; }

/* Abduction archive: documentary evidence presented as an editorial collection */
.archive-page { overflow: hidden; }
.archive-hero { min-height: 590px; padding-block: 72px 90px; display: grid; grid-template-columns: 1.05fr .95fr; gap: 7vw; align-items: end; }
.archive-back { margin-bottom: 52px; display: inline-block; color: var(--muted); font-size: .7rem; font-weight: 900; text-decoration: none; }
.archive-back:hover, .archive-back:focus-visible { color: var(--ink); }
.archive-hero h1 { margin: 0; font: 400 clamp(4.8rem, 8.6vw, 9rem)/.78 Georgia, serif; letter-spacing: -.07em; }
.archive-hero h1 em { color: var(--red); font-weight: 400; }
.archive-hero-copy { padding-bottom: 7px; }
.archive-lead { max-width: 650px; margin: 0 0 35px; font: 400 clamp(1.45rem, 2.35vw, 2.25rem)/1.24 Georgia, serif; letter-spacing: -.025em; }
.archive-hero-copy > p:last-child { max-width: 620px; margin: 0; color: var(--muted); font-size: 1rem; line-height: 1.7; }
.archive-hero-copy em { color: var(--ink); }

.archive-gallery { padding-bottom: 125px; }
.archive-gallery-heading { margin-bottom: 28px; padding-top: 30px; display: grid; grid-template-columns: 1fr .62fr; gap: 55px; align-items: end; border-top: 1px solid var(--line); }
.archive-gallery-heading h2 { margin: 0; font: 400 clamp(2.8rem, 5vw, 5.4rem)/.92 Georgia, serif; letter-spacing: -.05em; }
.archive-gallery-heading > p { max-width: 430px; margin: 0 0 6px; color: var(--muted); font-size: 1rem; line-height: 1.62; }
.archive-filters { margin-bottom: 28px; display: flex; flex-wrap: wrap; gap: 8px; }
.archive-filters button { padding: 10px 13px; color: var(--ink); background: transparent; border: 1px solid var(--line); border-radius: 999px; font-size: .7rem; font-weight: 900; cursor: pointer; }
.archive-filters button span { margin-left: 5px; color: var(--muted); }
.archive-filters button.active { color: var(--paper); background: var(--ink); border-color: var(--ink); }
.archive-filters button.active span { color: color-mix(in srgb, currentColor 68%, transparent); }
.archive-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.archive-item { min-width: 0; padding: 10px; display: flex; flex-direction: column; color: var(--ink); background: var(--cream); border: 1px solid var(--line); border-radius: 17px; overflow: hidden; text-align: left; cursor: zoom-in; transition: transform .2s ease, border-color .2s ease; }
.archive-item[hidden] { display: none; }
.archive-item:hover, .archive-item:focus-visible { transform: translateY(-4px); border-color: var(--ink); }
.archive-image-frame { width: 100%; aspect-ratio: 4 / 3; display: block; position: relative; overflow: hidden; background: #111; border-radius: 10px; }
.archive-image-frame img { width: 100%; height: 100%; display: block; object-fit: contain; transition: transform .32s ease; }
.archive-item:hover .archive-image-frame img { transform: scale(1.025); }
.archive-image-frame i { position: absolute; left: 9px; top: 9px; padding: 5px 6px; color: white; background: rgba(0,0,0,.75); border-radius: 4px; font-size: .54rem; font-style: normal; font-weight: 900; }
.archive-item-copy { min-height: 112px; padding: 16px 10px 8px; display: flex; flex-direction: column; }
.archive-item-copy small { color: var(--red); font-size: .61rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.archive-item-copy strong { margin-top: auto; font: 400 clamp(1.25rem, 2vw, 1.85rem)/1 Georgia, serif; letter-spacing: -.025em; }

.archive-interpretation { padding-block: 115px; color: var(--paper); background: var(--ink); }
.archive-interpretation-inner { display: grid; grid-template-columns: .86fr 1.14fr; gap: 8vw; align-items: start; }
.archive-interpretation h2 { margin: 0; font: 400 clamp(2.8rem, 5vw, 5.2rem)/.92 Georgia, serif; letter-spacing: -.05em; }
.archive-interpretation-copy p { max-width: 760px; margin: 0 0 24px; color: color-mix(in srgb, currentColor 72%, transparent); font-size: 1rem; line-height: 1.72; }
.archive-interpretation-copy .archive-editorial-note { margin-top: 34px; padding-top: 18px; color: var(--acid); border-top: 1px solid color-mix(in srgb, currentColor 24%, transparent); font-size: .76rem; font-weight: 900; }

.archive-dialog { width: min(1180px, calc(100vw - 28px)); max-height: calc(100dvh - 28px); padding: 0; display: none; grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr); color: var(--ink); background: var(--cream); border: 0; border-radius: 20px; overflow: hidden; box-shadow: 0 30px 100px rgba(0,0,0,.48); }
.archive-dialog[open] { display: grid; }
.archive-dialog::backdrop { background: rgba(7,7,7,.86); backdrop-filter: blur(5px); }
.archive-dialog-close { width: 42px; height: 42px; position: absolute; right: 15px; top: 15px; z-index: 3; display: grid; place-items: center; color: white; background: rgba(0,0,0,.72); border: 1px solid rgba(255,255,255,.25); border-radius: 50%; font-size: 1.3rem; cursor: pointer; }
.archive-dialog-image { min-height: min(78dvh, 780px); padding: 24px; display: grid; place-items: center; background: #0b0b0b; }
.archive-dialog-image img { width: 100%; height: 100%; max-height: min(76dvh, 760px); display: block; object-fit: contain; }
.archive-dialog-copy { padding: 58px 42px 42px; display: flex; flex-direction: column; justify-content: center; }
.archive-dialog-copy h2 { margin: 0 0 22px; font: 400 clamp(2.2rem, 4vw, 4rem)/.94 Georgia, serif; letter-spacing: -.045em; }
.archive-dialog-copy > p:last-child { margin: 0; color: var(--muted); font-size: 1rem; line-height: 1.65; }

html[data-palette="nocturne"] .archive-interpretation { color: #f4f0e7; background: #090b10; }
html[data-palette="clinical"] .archive-interpretation { color: #ffffff; background: #0a0a0a; }

@media (max-width: 980px) {
  .documentary-note { grid-template-columns: 90px 1fr; }
  .documentary-note-link { grid-column: 2; width: max-content; }
  .documentary-hero, .documentary-framing, .documentary-archive-heading, .documentary-question-inner { grid-template-columns: 1fr; gap: 34px; }
  .documentary-hero { min-height: auto; }
  .documentary-archive-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .documentary-question .eyebrow, .documentary-thread { grid-column: 1; }
  .documentary-thread { grid-template-columns: repeat(2, 1fr); }
  .documentary-thread span:nth-child(3) { border-left: 0; border-top: 1px solid color-mix(in srgb, currentColor 28%, transparent); }
  .documentary-thread span:nth-child(4) { border-top: 1px solid color-mix(in srgb, currentColor 28%, transparent); }
  .documentary-forward-grid { grid-template-columns: 1fr; }
  .documentary-forward-grid > * { min-height: 260px; }
  .documentary-forward-grid > * + * { border-left: 0; border-top: 1px solid var(--line); }
  .archive-hero, .archive-gallery-heading, .archive-interpretation-inner { grid-template-columns: 1fr; gap: 34px; }
  .archive-hero { min-height: auto; }
  .archive-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .archive-dialog[open] { grid-template-columns: 1fr; overflow-y: auto; }
  .archive-dialog-image { min-height: min(62vw, 560px); }
  .archive-dialog-image img { max-height: min(58vw, 520px); }
}

@media (max-width: 620px) {
  .documentary-note { margin-bottom: 80px; grid-template-columns: 1fr; gap: 17px; }
  .documentary-note-link { grid-column: 1; }
  .documentary-hero { padding-block: 62px 48px; }
  .documentary-title h1 { font-size: clamp(4.2rem, 22vw, 6.4rem); }
  .documentary-lead { margin-bottom: 28px; }
  .documentary-screen { width: 100%; margin-bottom: 82px; }
  .documentary-player, .documentary-watchbar { border-radius: 0; }
  .documentary-watchbar { align-items: flex-start; flex-direction: column; }
  .documentary-watch-actions { align-items: flex-start; flex-direction: column; }
  .documentary-framing { padding-bottom: 82px; }
  .documentary-archive-preview { padding-bottom: 82px; }
  .documentary-archive-grid { grid-template-columns: 1fr; }
  .documentary-question { padding-block: 82px; }
  .documentary-thread { margin-top: 36px; grid-template-columns: 1fr; }
  .documentary-thread span + span, .documentary-thread span:nth-child(3), .documentary-thread span:nth-child(4) { border-left: 0; border-top: 1px solid color-mix(in srgb, currentColor 28%, transparent); }
  .documentary-thread span:not(:last-child)::after { content: "↓"; right: auto; bottom: -10px; }
  .documentary-forward { padding-block: 82px 100px; }
  .archive-hero { padding-block: 55px 70px; }
  .archive-back { margin-bottom: 38px; }
  .archive-hero h1 { font-size: clamp(4.15rem, 21vw, 6.2rem); }
  .archive-gallery { padding-bottom: 85px; }
  .archive-filters { flex-wrap: nowrap; margin-inline: -20px; padding-inline: 20px; overflow-x: auto; scrollbar-width: none; }
  .archive-filters button { flex: 0 0 auto; }
  .archive-grid { grid-template-columns: 1fr; }
  .archive-interpretation { padding-block: 82px; }
  .archive-dialog { width: calc(100vw - 18px); max-height: calc(100dvh - 18px); }
  .archive-dialog-image { min-height: 56vw; padding: 12px; }
  .archive-dialog-image img { max-height: 60dvh; }
  .archive-dialog-copy { padding: 34px 24px; }
}
