/* ── Only Small Actors · profile.css ── */

/* ── PROFILE HERO (split layout: portrait left, text right) ── */
.profile-hero {
  border-bottom: 1px solid var(--rule);
  padding: 40px 0 48px;
  background: var(--bg);
}
.profile-hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: minmax(0, 380px) minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}

/* Left column — the 3:4 portrait */
.profile-hero-portrait { min-width: 0; }
.hero-portrait-frame {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--bg-alt);
  border: 1px solid var(--rule);
}
.hero-portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
.hero-portrait-disclosure {
  position: absolute;
  right: 0; bottom: 0;
  font-family: var(--display);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  background: var(--brand);
  padding: 5px 10px;
  line-height: 1;
}
.hero-portrait-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  background: repeating-linear-gradient(45deg, var(--bg-alt), var(--bg-alt) 14px, var(--bg) 14px, var(--bg) 28px);
}
.hero-portrait-empty-label {
  font-family: var(--display);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  line-height: 1.6;
}

/* Right column — all the text */
.profile-hero-text { min-width: 0; }

.profile-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}
.profile-breadcrumb a { color: var(--muted); transition: color 0.15s; }
.profile-breadcrumb a:hover { color: var(--brand); }
.profile-breadcrumb .bc-current { color: var(--ink); }
.profile-breadcrumb .bc-sep { color: var(--faint); }

.profile-eyebrow {
  font-family: var(--display);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 14px;
  display: inline-block;
  padding-bottom: 4px;
  border-bottom: 2px solid var(--brand);
}

/* IN MEMORIAM badge (replaces eyebrow when deceased) */
.memorial-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 14px;
  padding: 6px 12px;
  border: 2px solid var(--ink);
  background: var(--bg);
}
.memorial-dot {
  width: 8px; height: 8px;
  background: var(--ink);
  border-radius: 50%;
}

.profile-name {
  font-family: var(--display);
  font-weight: 900;
  font-size: 64px;
  line-height: 0.98;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 18px;
}

.profile-dek {
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.5;
  color: var(--text);
  margin-bottom: 24px;
  max-width: 58ch;
}

.profile-screen-time {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}
.pst-num {
  font-family: var(--display);
  font-weight: 900;
  font-size: 34px;
  color: var(--brand);
  line-height: 1;
  letter-spacing: -0.01em;
}
.pst-label {
  font-family: var(--display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.pst-divider {
  color: var(--faint);
  font-size: 14px;
}
.pst-ts {
  font-family: var(--display);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.profile-byline {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  padding-top: 16px;
  border-top: 1px solid var(--rule);
}
.profile-byline strong { color: var(--ink); font-weight: 600; }

/* ── INLINE SCENE GRAB (renders between article sections at author-specified positions) ── */
.inline-scene-grab {
  margin: 40px auto 44px;
  width: 75%;
  max-width: 780px;
}
.inline-scene-grab img {
  width: 100%;
  display: block;
  border: 1px solid var(--rule);
  background: #1a1a1a;
}
.inline-scene-caption {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  margin-top: 12px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
}
.inline-scene-caption em {
  color: var(--text);
  max-width: 62ch;
}
.inline-scene-ts {
  font-family: var(--display);
  font-style: normal;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
  flex-shrink: 0;
}

/* ── LEGACY: .profile-scene-slot (kept in case any older profiles reference it) ── */
.profile-scene-slot {
  border-bottom: 1px solid var(--rule);
  padding: 32px 0 28px;
  background: var(--bg);
}
.profile-scene-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}
.profile-scene-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  background: #1a1a1a;
  border: 1px solid var(--rule);
}
.profile-scene-caption {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  margin-top: 12px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text);
}
.profile-scene-ts {
  font-family: var(--display);
  font-style: normal;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
  flex-shrink: 0;
}

/* ── BODY GRID ── */
.profile-body {
  max-width: var(--max);
  margin: 0 auto;
  padding: 40px 24px 48px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 56px;
}

.profile-main { min-width: 0; }
.profile-sidebar { min-width: 0; }

/* ── ARTICLE SECTIONS ── */
.article-section { margin-bottom: 44px; }
.article-section-label {
  font-family: var(--display);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 10px;
  border-left: 3px solid var(--brand);
  padding-left: 10px;
}
.article-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: 28px;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 18px;
}
.article-body {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.65;
  color: var(--text);
}
.article-body p { margin-bottom: 18px; }
.article-body p:last-child { margin-bottom: 0; }

/* Drop cap on first paragraph of first article section */
.article-section:first-of-type .article-body > p:first-child::first-letter {
  font-family: var(--display);
  font-weight: 900;
  font-size: 72px;
  line-height: 0.85;
  float: left;
  padding: 6px 10px 0 0;
  color: var(--brand);
}

.pull-quote {
  border-left: 4px solid var(--brand);
  margin: 32px 0;
  padding: 14px 24px;
  background: var(--brand-dim);
}
.pull-quote-text {
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  color: var(--ink);
  line-height: 1.4;
  margin: 0;
}

/* ============================================================
   NEW MODULE: VERDICT CARD
   ============================================================ */
.verdict-card {
  margin-bottom: 44px;
  padding: 22px 24px 26px;
  background: var(--bg-alt);
  border: 1px solid var(--rule);
  border-top: 4px solid var(--brand);
}
.verdict-label {
  font-family: var(--display);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 16px;
}
.verdict-grid {
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 32px;
  align-items: center;
}
.verdict-stat {
  text-align: center;
  min-width: 80px;
}
.verdict-stat-num {
  font-family: var(--display);
  font-weight: 900;
  font-size: 48px;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.02em;
}
.verdict-stat-den {
  font-size: 22px;
  color: var(--muted);
  font-weight: 700;
}
.verdict-stat-label {
  font-family: var(--display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
}
.verdict-qa {
  border-left: 2px solid var(--rule);
  padding-left: 24px;
}
.verdict-q {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  line-height: 1.4;
  color: var(--muted);
  margin-bottom: 6px;
}
.verdict-a {
  font-family: var(--display);
  font-weight: 800;
  font-size: 22px;
  line-height: 1.15;
  color: var(--brand);
}

/* ============================================================
   NEW MODULE: SCENE BREAKDOWN
   ============================================================ */
.scene-breakdown {
  margin-bottom: 44px;
  padding: 20px 0 0;
  border-top: 1px solid var(--rule);
}
.scene-list {
  list-style: none;
  counter-reset: scene;
  margin: 0;
  padding: 0;
}
.scene-item {
  counter-increment: scene;
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 24px;
  padding: 16px 0;
  border-bottom: 1px solid var(--rule);
  position: relative;
}
.scene-item::before {
  content: counter(scene, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 20px;
  font-family: var(--display);
  font-weight: 900;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--faint);
}
.scene-item:last-child { border-bottom: none; }
.scene-time {
  padding-left: 32px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.scene-timestamp {
  font-family: var(--display);
  font-weight: 900;
  font-size: 20px;
  color: var(--brand);
  line-height: 1;
  letter-spacing: 0.02em;
}
.scene-duration {
  font-family: var(--display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.scene-desc {
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.5;
  color: var(--text);
}

/* ============================================================
   NEW MODULE: QUOTES (interior monologue)
   ============================================================ */
.quotes-block {
  margin-bottom: 44px;
  padding: 28px 0 0;
  border-top: 1px solid var(--rule);
}
.quotes-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.thought-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  line-height: 1.4;
  color: var(--ink);
  padding: 18px 24px;
  background: var(--bg-alt);
  border: 1px solid var(--rule);
  position: relative;
  margin: 0;
}
.thought-open,
.thought-close {
  color: var(--brand);
  font-weight: 700;
  font-style: normal;
}

/* ============================================================
   NEW MODULE: WHERE ARE THEY NOW
   ============================================================ */
.where-now {
  margin-bottom: 44px;
  padding: 28px 0 0;
  border-top: 1px solid var(--rule);
}
.where-now-text {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.65;
  color: var(--text);
  padding-left: 20px;
  border-left: 3px solid var(--brand);
}

/* ============================================================
   NEW MODULE: TRIVIA
   ============================================================ */
.trivia-block {
  margin-bottom: 44px;
  padding: 28px 0 0;
  border-top: 1px solid var(--rule);
}
.trivia-list {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: trivia;
}
.trivia-list li {
  counter-increment: trivia;
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.55;
  color: var(--text);
  padding: 14px 0 14px 48px;
  border-bottom: 1px dashed var(--rule);
  position: relative;
}
.trivia-list li::before {
  content: "№ " counter(trivia);
  position: absolute;
  left: 0;
  top: 14px;
  font-family: var(--display);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--brand);
}
.trivia-list li:last-child { border-bottom: none; }

/* ============================================================
   NEW MODULE: FILMOGRAPHY
   ============================================================ */
.filmography-block {
  margin-bottom: 44px;
  padding: 28px 0 0;
  border-top: 1px solid var(--rule);
}
.filmography-intro {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 16px;
}
.filmography-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.filmography-item {
  border-bottom: 1px solid var(--rule);
}
.filmography-item:last-child { border-bottom: none; }

.filmography-link,
.filmography-stub {
  display: grid;
  grid-template-columns: 40% 1fr auto;
  gap: 16px;
  align-items: baseline;
  padding: 16px 0;
  transition: padding 0.15s;
}
.filmography-link { cursor: pointer; }
.filmography-link:hover { padding-left: 8px; }
.filmography-role {
  font-family: var(--display);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1.2;
}
.filmography-link:hover .filmography-role { color: var(--brand-ink); }
.filmography-show {
  font-family: var(--serif);
  font-size: 16px;
  color: var(--text);
}
.filmography-show em { font-style: italic; }
.filmography-arrow {
  font-family: var(--display);
  font-weight: 700;
  font-size: 16px;
  color: var(--faint);
  transition: color 0.15s, transform 0.15s;
}
.filmography-link:hover .filmography-arrow {
  color: var(--brand);
  transform: translateX(4px);
}
.filmography-forthcoming {
  font-family: var(--display);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--faint);
  font-style: normal;
}
.filmography-stub {
  opacity: 0.65;
}
.filmography-stub .filmography-role {
  color: var(--muted);
}

/* ============================================================
   NEW MODULE: OBITUARY
   ============================================================ */
.obituary-block {
  margin: 44px 0;
  padding: 36px 32px;
  background: var(--bg-alt);
  border: 1px solid var(--ink);
  position: relative;
}
.obituary-block::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 8px;
  background: var(--ink);
}
.obit-header {
  text-align: center;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 22px;
}
.obit-eyebrow {
  font-family: var(--display);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 10px;
  display: block;
}
.obit-name {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 32px;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 8px;
}
.obit-circumstance {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--muted);
}
.obit-body {
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 20px;
  text-align: justify;
}
.obit-survived {
  font-family: var(--serif);
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
  padding-top: 16px;
  border-top: 1px solid var(--rule);
  font-style: italic;
}
.obit-survived-label {
  font-family: var(--display);
  font-style: normal;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  margin-right: 8px;
}

/* In-content ad */
.ad-in-content {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--rule);
  text-align: center;
}

/* ============================================================
   SIDEBAR
   ============================================================ */
.sidebar-section {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--rule);
}
.sidebar-section:last-child { border-bottom: none; }

.sidebar-label {
  font-family: var(--display);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--ink);
}

.case-file {
  background: var(--bg-alt);
  border: 1px solid var(--rule);
  border-top: 4px solid var(--brand);
  padding: 20px 22px;
  margin-bottom: 28px;
}
.case-file .sidebar-label {
  margin-bottom: 12px;
  padding-bottom: 6px;
  border-bottom-color: var(--rule);
}
.file-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 9px 0;
  border-bottom: 1px solid var(--rule);
  gap: 14px;
}
.file-row:last-child { border-bottom: none; }
.file-key {
  font-family: var(--display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  flex-shrink: 0;
}
.file-val {
  font-family: var(--serif);
  font-size: 14px;
  color: var(--ink);
  text-align: right;
  line-height: 1.3;
}
.file-val-red { color: var(--brand); font-weight: 700; }

/* ============================================================
   SIDEBAR: COMPOSITE THEORY
   ============================================================ */
.theory-sidebar {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--rule);
}
.theory-card {
  border: 1px solid var(--ink);
  padding: 18px 20px;
  background: var(--bg);
  margin-bottom: 12px;
}
.theory-card:last-child { margin-bottom: 0; }
.theory-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: 16px;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 10px;
}
.theory-claim {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  line-height: 1.45;
  color: var(--text);
  margin-bottom: 14px;
}
.theory-linked-label {
  font-family: var(--display);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.theory-linked-list {
  list-style: none;
  margin: 0 0 12px;
  padding: 0;
}
.theory-linked-list li {
  padding: 7px 0;
  border-top: 1px solid var(--rule);
}
.theory-link {
  display: block;
  transition: padding 0.15s;
}
.theory-link:hover { padding-left: 6px; }
.theory-link strong {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
  transition: color 0.15s;
  display: block;
}
.theory-link:hover strong { color: var(--brand-ink); }
.theory-show {
  font-family: var(--display);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 2px;
  display: block;
}
.theory-confidence {
  font-family: var(--display);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  padding-top: 10px;
  border-top: 1px dashed var(--rule);
}
.confidence-high { color: var(--brand); }
.confidence-medium { color: #c47800; }
.confidence-low { color: var(--muted); }

/* Scene grab */
.scene-capture {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--rule);
}
.scene-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  background: #1a1a1a;
}
.scene-img-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #2a2a2a, #0f0f0f);
}
.scene-caption {
  margin-top: 10px;
  font-family: var(--sans);
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}

.ad-sidebar-rect {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--rule);
  text-align: center;
}
.ad-sidebar-rect .ad-placeholder {
  width: 300px;
  height: 250px;
  line-height: 250px;
}

.sidebar-tags-wrap {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--rule);
}
.sidebar-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.sidebar-tag {
  font-family: var(--display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 10px;
  border: 1px solid var(--rule);
  color: var(--text);
  transition: all 0.15s;
}
.sidebar-tag:hover {
  border-color: var(--brand);
  color: var(--brand);
}

.sidebar-disclaimer {
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  line-height: 1.55;
  color: var(--muted);
  margin-top: 14px;
}

.related-card {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--rule);
  transition: padding 0.15s;
}
.related-card:last-child { border-bottom: none; }
.related-card:hover { padding-left: 6px; }
.related-thumb {
  width: 56px;
  height: 56px;
  background: #1a1a1a;
  overflow: hidden;
  flex-shrink: 0;
}
.related-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
}
.related-info { min-width: 0; }
.related-credit {
  font-family: var(--display);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.related-name {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 3px;
  transition: color 0.15s;
}
.related-card:hover .related-name { color: var(--brand-ink); }
.related-time {
  font-family: var(--display);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .profile-hero-inner {
    grid-template-columns: minmax(0, 320px) minmax(0, 1fr);
    gap: 40px;
  }
  .profile-name { font-size: 54px; }
  .profile-body {
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 40px;
  }
  .verdict-grid { grid-template-columns: auto auto; gap: 24px; }
  .verdict-qa {
    grid-column: 1 / -1;
    border-left: none;
    border-top: 1px solid var(--rule);
    padding-left: 0;
    padding-top: 16px;
    margin-top: 4px;
  }
}
@media (max-width: 860px) {
  /* Stack the hero — portrait on top, text below — on tablets and phones */
  .profile-hero-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .profile-hero-portrait {
    max-width: 420px;
    margin: 0 auto;
    width: 100%;
  }
  .profile-body { grid-template-columns: 1fr; gap: 40px; }
  .profile-sidebar { border-top: 2px solid var(--ink); padding-top: 28px; }
  .inline-scene-grab { width: 90%; }
}
@media (max-width: 640px) {
  .profile-hero { padding: 24px 0 32px; }
  .profile-hero-inner,
  .profile-scene-inner,
  .profile-body { padding-left: 16px; padding-right: 16px; }
  .profile-name { font-size: 40px; }
  .profile-dek { font-size: 17px; }
  .profile-hero-portrait { max-width: 100%; }
  .profile-scene-caption,
  .inline-scene-caption {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  .inline-scene-grab { width: 100%; margin: 28px 0 32px; }
  .article-body { font-size: 17px; }
  .article-title { font-size: 22px; }
  .article-section:first-of-type .article-body > p:first-child::first-letter {
    font-size: 56px;
  }
  .verdict-card { padding: 18px 18px 22px; }
  .verdict-grid { grid-template-columns: 1fr 1fr; }
  .verdict-stat-num { font-size: 38px; }
  .scene-item { grid-template-columns: 100px 1fr; gap: 16px; }
  .scene-time { padding-left: 24px; }
  .scene-timestamp { font-size: 17px; }
  .filmography-link, .filmography-stub {
    grid-template-columns: 1fr auto;
    row-gap: 4px;
  }
  .filmography-show { grid-column: 1 / -1; }
  .obituary-block { padding: 28px 20px; }
  .obit-name { font-size: 26px; }
}
