/* ============================================================
   REDBLADES ANABAPTIST CHURCH — main.css
   Palette: near-black ground, warm parchment text, deep crimson
   Typography: Cinzel (display) + EB Garamond (body)
   Signature: crimson blade-mark left border on key elements
   ============================================================ */

/* --- TOKENS ------------------------------------------------- */
:root {
  --bg:          #0C0B09;
  --bg-section:  #111009;
  --bg-card:     #161410;
  --text:        #DDD7C8;
  --text-muted:  #8A8070;
  --text-dim:    #5C5448;
  --crimson:     #7C1515;
  --crimson-mid: #9B1A1A;
  --crimson-soft:#B52020;
  --gold:        #B5890A;
  --rule:        #2A1E1E;
  --rule-light:  #3A2A2A;

  --font-display: 'Cinzel', 'Trajan Pro', 'Times New Roman', serif;
  --font-body:    'EB Garamond', 'Garamond', 'Georgia', serif;

  --max-w:     780px;
  --max-w-wide: 1100px;
  --space-xs:  0.4rem;
  --space-sm:  0.75rem;
  --space-md:  1.5rem;
  --space-lg:  3rem;
  --space-xl:  5rem;
  --space-2xl: 8rem;
}

/* --- RESET -------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* --- BASE --------------------------------------------------- */
body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 19px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

/* --- TYPOGRAPHY --------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.25;
  color: var(--text);
}

h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.35rem, 2.8vw, 1.9rem); margin-bottom: var(--space-md); }
h3 { font-size: clamp(1.1rem, 2vw, 1.45rem); margin-bottom: var(--space-sm); }
h4 { font-size: 1.1rem; font-family: var(--font-body); font-weight: 600;
     letter-spacing: 0.02em; }

p { margin-bottom: var(--space-md); }
p:last-child { margin-bottom: 0; }

a {
  color: var(--text);
  text-decoration: underline;
  text-decoration-color: var(--crimson);
  text-underline-offset: 3px;
  transition: color 0.2s, text-decoration-color 0.2s;
}
a:hover { color: var(--crimson-soft); text-decoration-color: transparent; }

strong { font-weight: 600; color: var(--text); }
em { font-style: italic; }

ul, ol {
  margin-left: var(--space-lg);
  margin-bottom: var(--space-md);
}
li { margin-bottom: var(--space-xs); }

/* Eyebrow label */
.eyebrow {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--crimson-soft);
  display: block;
  margin-bottom: var(--space-sm);
}

/* --- LAYOUT ------------------------------------------------- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.container--wide {
  max-width: var(--max-w-wide);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* --- HORIZONTAL RULE --------------------------------------- */
hr {
  border: none;
  border-top: 1px solid var(--rule);
  margin: var(--space-xl) 0;
}

.rule--crimson {
  border-color: var(--crimson);
  opacity: 0.35;
}

/* --- BLADE MARK (signature element) ----------------------- */
/*  A crimson left border applied to pull-quotes, key claims,
    and the hero tagline. References the blade in the name.
    Marks the decisive argument — the one that cannot be refused. */
.blade {
  border-left: 3px solid var(--crimson);
  padding-left: var(--space-md);
  margin-left: 0;
}

.blade--hero {
  border-left: 4px solid var(--crimson);
  padding-left: var(--space-lg);
}

blockquote, .pullquote {
  border-left: 3px solid var(--crimson);
  padding: var(--space-sm) 0 var(--space-sm) var(--space-md);
  margin: var(--space-lg) 0;
  font-style: italic;
  color: var(--text);
  font-size: 1.05em;
}

blockquote p { margin-bottom: 0; }

/* --- SITE HEADER ------------------------------------------- */
.site-header {
  border-bottom: 1px solid var(--rule);
  padding: var(--space-md) 0;
  position: sticky;
  top: 0;
  background: var(--bg);
  z-index: 100;
}

.site-header__inner {
  max-width: var(--max-w-wide);
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-md);
}

.site-logo {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  flex-shrink: 0;
}

.site-logo span {
  color: var(--crimson);
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav a {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text-muted);
  transition: color 0.2s;
}

.site-nav a:hover { color: var(--crimson-soft); }

/* --- HERO -------------------------------------------------- */
.hero {
  padding: var(--space-2xl) 0;
  border-bottom: 1px solid var(--rule);
}

.hero__tagline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.15;
  letter-spacing: 0.04em;
  color: var(--text);
  margin-bottom: var(--space-xl);
  border-left: 4px solid var(--crimson);
  padding-left: var(--space-lg);
}

.hero__tagline em {
  font-style: normal;
  color: var(--crimson-soft);
}

.hero__lede {
  font-size: 1.15rem;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: var(--space-lg);
  max-width: 660px;
}

.hero__cta {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--crimson-soft);
  text-decoration: none;
  border-bottom: 1px solid var(--crimson);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.hero__cta:hover {
  color: var(--text);
  border-color: var(--text);
  text-decoration: none;
}

/* --- SECTIONS ---------------------------------------------- */
.section {
  padding: var(--space-xl) 0;
  border-bottom: 1px solid var(--rule);
}

.section--dark {
  background: var(--bg-section);
}

.section__header {
  margin-bottom: var(--space-xl);
}

/* --- AUDIENCE GRID ----------------------------------------- */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.audience-card {
  padding: var(--space-md);
  border: 1px solid var(--rule-light);
  border-top: 3px solid var(--crimson);
  background: var(--bg-card);
}

.audience-card__label {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--crimson-soft);
  margin-bottom: var(--space-sm);
  display: block;
}

.audience-card h3 {
  font-size: 1rem;
  margin-bottom: var(--space-sm);
}

.audience-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0;
  line-height: 1.6;
}

/* --- SECTION LINK GRID ------------------------------------- */
.section-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1px;
  border: 1px solid var(--rule);
  margin-top: var(--space-lg);
}

.section-link {
  display: block;
  padding: var(--space-md);
  background: var(--bg-card);
  text-decoration: none;
  transition: background 0.2s;
  border-right: 1px solid var(--rule);
}

.section-link:hover {
  background: var(--bg-section);
  text-decoration: none;
}

.section-link__num {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--crimson-soft);
  display: block;
  margin-bottom: var(--space-xs);
}

.section-link__title {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  display: block;
  margin-bottom: var(--space-xs);
}

.section-link__sub {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-style: italic;
}

/* --- ARCHITECTONIC SECTIONS ------------------------------- */
.arch-section {
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--rule);
}

.arch-section:last-child { border-bottom: none; }

.arch-section__header {
  display: flex;
  align-items: baseline;
  gap: var(--space-md);
  margin-bottom: var(--space-sm);
}

.arch-section__num {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--crimson-soft);
  flex-shrink: 0;
  width: 1.5rem;
}

.arch-section__title {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.06em;
  color: var(--text);
}

.arch-section__acronym {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-style: italic;
}

.arch-section__body {
  padding-left: 2.5rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* --- PODCAST EPISODE LIST ---------------------------------- */
.episode-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.episode-item {
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: var(--space-md);
  align-items: start;
}

.episode-item:last-child { border-bottom: none; }

.episode-num {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: var(--crimson-soft);
  padding-top: 0.3rem;
}

.episode-title {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  text-decoration: none;
  display: block;
  margin-bottom: var(--space-xs);
}

.episode-title:hover { color: var(--crimson-soft); text-decoration: none; }

.episode-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.episode-status {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 2px 6px;
  border: 1px solid;
  margin-left: var(--space-sm);
}

.episode-status--recorded { color: var(--gold); border-color: var(--gold); }
.episode-status--forthcoming { color: var(--text-dim); border-color: var(--text-dim); }

/* --- FAQ --------------------------------------------------- */
.faq-cluster {
  margin-bottom: var(--space-xl);
}

.faq-cluster__title {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--crimson-soft);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--rule);
}

.faq-item {
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--rule);
}

.faq-item:last-child { border-bottom: none; }

.faq-q {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: var(--space-sm);
  cursor: pointer;
  display: flex;
  align-items: start;
  gap: var(--space-sm);
}

.faq-q::before {
  content: '—';
  color: var(--crimson);
  flex-shrink: 0;
}

.faq-a {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
  padding-left: calc(var(--space-sm) + 1rem);
}

/* --- CONFESSION PLANKS ------------------------------------- */
.plank {
  padding: var(--space-md) 0 var(--space-md) var(--space-md);
  border-left: 3px solid var(--rule-light);
  margin-bottom: var(--space-md);
}

.plank--active { border-left-color: var(--crimson); }

.plank__num {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--crimson-soft);
  display: block;
  margin-bottom: var(--space-xs);
}

.plank__title {
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: var(--space-sm);
}

/* --- BOOK CARDS -------------------------------------------- */
.book-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.book-card {
  padding: var(--space-lg);
  border: 1px solid var(--rule-light);
  background: var(--bg-card);
  border-top: 3px solid var(--crimson);
}

.book-card__status {
  font-family: var(--font-display);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  display: block;
  margin-bottom: var(--space-sm);
}

.book-card__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: var(--space-sm);
}

.book-card__sub {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: var(--space-md);
}

.book-card__desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 0;
}

/* --- JOIN / EMAIL FORM ------------------------------------- */
.email-form {
  margin-top: var(--space-lg);
  padding: var(--space-lg);
  border: 1px solid var(--rule-light);
  border-left: 4px solid var(--crimson);
  background: var(--bg-card);
}

.email-form h3 {
  font-size: 1rem;
  margin-bottom: var(--space-sm);
}

.email-form p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: var(--space-md);
}

.form-row {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.form-input {
  flex: 1;
  min-width: 200px;
  padding: 0.6rem var(--space-sm);
  background: var(--bg);
  border: 1px solid var(--rule-light);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
}

.form-input:focus {
  outline: none;
  border-color: var(--crimson);
}

.form-input::placeholder { color: var(--text-dim); }

.btn {
  padding: 0.6rem var(--space-md);
  background: var(--crimson);
  color: var(--text);
  border: 1px solid var(--crimson);
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.btn:hover {
  background: transparent;
  color: var(--crimson-soft);
}

/* --- CREEDAL TEXT ------------------------------------------ */
.creed-text {
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.8;
  padding: var(--space-md) 0 var(--space-md) var(--space-md);
  border-left: 3px solid var(--crimson);
  color: var(--text);
}

/* --- SOLAS GRID -------------------------------------------- */
.solas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  margin: var(--space-md) 0;
}

.sola-item {
  padding: var(--space-md);
  background: var(--bg-card);
  text-align: center;
}

.sola-item__latin {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--crimson-soft);
  display: block;
  margin-bottom: var(--space-xs);
}

.sola-item__en {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* --- SITE FOOTER ------------------------------------------- */
.site-footer {
  padding: var(--space-xl) 0;
  border-top: 1px solid var(--rule);
  margin-top: var(--space-xl);
}

.site-footer__inner {
  max-width: var(--max-w-wide);
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-lg);
  align-items: end;
}

.site-footer__copy {
  font-size: 0.8rem;
  color: var(--text-dim);
  line-height: 1.6;
}

.site-footer__links {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: var(--space-xs);
}

.site-footer__links a {
  font-family: var(--font-display);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  text-decoration: none;
}

.site-footer__links a:hover { color: var(--crimson-soft); }

/* --- UTILITY ----------------------------------------------- */
.text-crimson { color: var(--crimson-soft); }
.text-muted   { color: var(--text-muted); }
.text-dim     { color: var(--text-dim); }
.text-small   { font-size: 0.85rem; }
.text-gold    { color: var(--gold); }
.mt-sm  { margin-top: var(--space-sm); }
.mt-md  { margin-top: var(--space-md); }
.mt-lg  { margin-top: var(--space-lg); }
.mt-xl  { margin-top: var(--space-xl); }
.mb-md  { margin-bottom: var(--space-md); }
.mb-lg  { margin-bottom: var(--space-lg); }

/* --- RESPONSIVE -------------------------------------------- */
@media (max-width: 680px) {
  body { font-size: 17px; }

  .site-header__inner {
    flex-direction: column;
    gap: var(--space-sm);
  }

  .site-nav { gap: var(--space-sm); }

  .hero__tagline { padding-left: var(--space-md); }

  .episode-item {
    grid-template-columns: 2.5rem 1fr;
    gap: var(--space-sm);
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .site-footer__links { align-items: flex-start; }

  .form-row { flex-direction: column; }
  .form-input { min-width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; }
  html { scroll-behavior: auto; }
}

/* --- PRINT ------------------------------------------------- */
@media print {
  /* ── Colour reset ──────────────────────────────────────── */
  :root {
    --bg:         #ffffff;
    --bg-section: #ffffff;
    --bg-card:    #f8f6f2;
    --text:       #1a1208;
    --text-muted: #3a3020;
    --text-dim:   #6a6050;
    --crimson:    #7c1515;
    --crimson-soft:#9b1a1a;
    --gold:       #7a5f00;
    --rule:       #ccc8c0;
    --rule-light: #e0dcd4;
  }

  * { box-sizing: border-box; }

  html, body {
    background: #fff !important;
    color: #1a1208 !important;
    font-size: 11pt;
    line-height: 1.6;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  /* ── Hide chrome ───────────────────────────────────────── */
  .site-header,
  .site-footer,
  .email-form,
  .faq-search-wrap,
  .btn,
  .hero__cta,
  .audience-grid,
  .section-links,
  .five-claims,
  .battle-plan,
  .covenant-block,
  .book-grid,
  #faq-search,
  .faq-search-label,
  .faq-search-hint,
  .faq-permalink,
  iframe,
  video,
  audio,
  .episode-status { display: none !important; }

  /* ── Typography ────────────────────────────────────────── */
  h1 { font-size: 20pt; margin-bottom: 8pt; }
  h2 { font-size: 15pt; margin-bottom: 6pt; margin-top: 18pt; }
  h3 { font-size: 12pt; margin-bottom: 4pt; }
  p  { margin-bottom: 7pt; orphans: 3; widows: 3; }

  /* ── Links: show URLs after anchor text ─────────────────── */
  a[href]::after {
    content: " [" attr(href) "]";
    font-size: 8pt;
    color: #6a6050;
    font-style: italic;
    word-break: break-all;
  }
  /* Suppress URL display for fragment anchors and mailto */
  a[href^="#"]::after,
  a[href^="mailto"]::after { content: ""; }

  /* ── Blade-mark → subtle grey left border in print ──────── */
  .blade, .pullquote, blockquote {
    border-left-color: #999 !important;
    padding-left: 12pt;
    background: none !important;
  }

  /* ── Cards and section backgrounds ─────────────────────── */
  .arch-abstract-block,
  .diagnosis,
  .audience-card,
  .book-card,
  .faq-item,
  .plank {
    background: #f8f6f2 !important;
    border-color: #ccc !important;
    box-shadow: none !important;
    break-inside: avoid;
  }

  /* ── FAQ accordion — open all clusters for print ─────────── */
  details.faq-cluster { display: block !important; }
  details.faq-cluster > summary::before { display: none; }
  details.faq-cluster .faq-item { display: block !important; }

  /* ── Page breaks ────────────────────────────────────────── */
  .section { break-before: auto; }
  h2, h3   { break-after: avoid; }
  .arch-section { break-inside: avoid; }
  .faq-cluster  { break-inside: avoid; }

  /* ── Architectonic academic logo — light bg already ──────── */
  .arch-logo-academic { background: none !important; border: 1px solid #ccc; }

  /* ── Max width for print readability ────────────────────── */
  .container { max-width: 100% !important; padding: 0 !important; }

  /* ── Episode list ───────────────────────────────────────── */
  .episode-item { border-bottom-color: #ccc !important; }

  /* ── Eyebrow labels ─────────────────────────────────────── */
  .eyebrow { color: #9b1a1a !important; }
  .motto   { color: #7a5f00 !important; }
}

/* --- LOGO (added after brand asset review) ----------------- */
/*  The shield: Gladius Spiritus, Wahrheit on center blade.
    Gold (--gold) is now structural, not sparing — it mirrors
    the bronze of the heraldic shield. Crimson matches the blades. */

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.site-logo__img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  object-position: center;
  flex-shrink: 0;
  /* slight crop to remove light background around shield */
  border-radius: 2px;
}

.site-logo__wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.site-logo__red {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.12em;
  color: var(--crimson-soft);
}

.site-logo__wordmark > span:first-child {
  display: inline;
}

/* The full "Redblades" word including the non-red part */
.site-logo__wordmark {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: var(--text);
  text-transform: uppercase;
}

.site-logo__sub {
  font-family: var(--font-display);
  font-size: 0.55rem;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
  display: block;
  margin-top: 1px;
}

/* Gold now appears on dividers and section markers,
   reinforcing the shield's bronze presence site-wide */
.section-num-gold {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
}

/* Motto display — Gladius Spiritus / Wahrheit */
.motto {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: var(--space-md);
}

/* Hero logo treatment on large screens */
.hero__logo {
  display: block;
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: var(--space-lg);
  opacity: 0.92;
}

@media (max-width: 680px) {
  .site-logo__wordmark { display: none; }
  .site-logo__img { width: 38px; height: 38px; }
  .hero__logo { width: 80px; height: 80px; }
}

/* --- ARCHITECTONIC — ACADEMIC ENTRY ----------------------- */
/*  Two-mode page: scholarly abstract leads, then the
    eliminative-demonstration content follows for all audiences.
    The academic reads the abstract and downloads the PDF.
    The lay intellectual reads the abstract and scrolls into sections.
    The high-T man skips the abstract and reads the section list. */

.arch-academic-header {
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--rule);
}

.arch-academic-header__logo {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.arch-logo-academic {
  width: 72px;
  height: auto;
  opacity: 0.88;
  /* The line-art logo is on cream — display in a small parchment box */
  background: #F0EBE0;
  padding: 6px;
  border: 1px solid var(--rule-light);
  flex-shrink: 0;
}

.arch-working-paper {
  font-family: var(--font-display);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 2px;
}

/* Abstract block — reads like a journal abstract */
.arch-abstract-block {
  background: var(--bg-card);
  border: 1px solid var(--rule-light);
  border-left: 3px solid var(--crimson);
  padding: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.arch-abstract-block__label {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--crimson-soft);
  margin-bottom: var(--space-sm);
}

.arch-abstract-block__text {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: var(--space-md);
  text-align: justify;
}

.arch-abstract-block__meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.82rem;
  color: var(--text-muted);
  border-top: 1px solid var(--rule);
  padding-top: var(--space-sm);
  margin-bottom: var(--space-md);
}

.arch-abstract-block__actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

/* Pull-quote system — key one-liners from the architectonic */
.pullquote {
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: var(--text);
  border-left: 3px solid var(--crimson);
  padding: var(--space-sm) 0 var(--space-sm) var(--space-md);
  margin: var(--space-xl) 0;
  font-style: normal;
}

.pullquote__attr {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--text-dim);
  font-style: italic;
  margin-top: var(--space-xs);
}

@media (max-width: 680px) {
  .arch-logo-academic { width: 52px; }
  .arch-abstract-block { padding: var(--space-md); }
  .arch-abstract-block__actions { flex-direction: column; }
}

/* --- BATTLE PLAN — high-T action block -------------------- */
/*  Numbered action list, tactical aesthetic.
    Large crimson numbers, direct action text, brief detail.
    Designed to be read and acted on, not studied.           */

.battle-plan {
  margin: var(--space-xl) 0;
  border-top: 2px solid var(--crimson);
  border-bottom: 1px solid var(--rule);
  padding: var(--space-lg) 0;
}

.battle-plan__header {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--crimson-soft);
  margin-bottom: var(--space-lg);
}

.battle-plan__item {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--rule);
  align-items: start;
}

.battle-plan__item:last-child {
  border-bottom: none;
}

.battle-plan__num {
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
  color: var(--crimson);
  padding-top: 2px;
  flex-shrink: 0;
}

.battle-plan__body {}

.battle-plan__action {
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  color: var(--text);
  display: block;
  margin-bottom: var(--space-xs);
}

.battle-plan__detail {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Diagnosis block — names the failure directly */
.diagnosis {
  padding: var(--space-lg);
  border-left: 3px solid var(--crimson);
  background: var(--bg-card);
  margin: var(--space-xl) 0;
}

.diagnosis p {
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: var(--space-sm);
}

.diagnosis p:last-child { margin-bottom: 0; }

/* Covenant promise block */
.covenant-block {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  margin: var(--space-lg) 0;
}

.covenant-item {
  padding: var(--space-md);
  background: var(--bg-card);
  text-align: center;
}

.covenant-item__icon {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--crimson-soft);
  display: block;
  margin-bottom: var(--space-xs);
}

.covenant-item__label {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
}

@media (max-width: 680px) {
  .battle-plan__num { font-size: 1.5rem; }
  .battle-plan__item { grid-template-columns: 2.25rem 1fr; gap: var(--space-sm); }
}

/* --- FIVE CLAIMS section ----------------------------------- */
.five-claims {
  margin-top: var(--space-lg);
  border-top: 1px solid var(--rule);
}

.five-claim {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--rule);
  align-items: start;
}

.five-claim:last-child { border-bottom: none; }

.five-claim__num {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--crimson-soft);
  padding-top: 0.3rem;
}

.five-claim__body {}

.five-claim__text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: var(--space-xs);
}

.five-claim__note {
  font-size: 0.8rem;
  color: var(--text-dim);
  font-style: italic;
  line-height: 1.6;
}

@media (max-width: 680px) {
  .five-claim { grid-template-columns: 1.8rem 1fr; }
}

/* --- FAQ SEARCH -------------------------------------------- */
.faq-search-wrap {
  margin: var(--space-lg) 0 var(--space-md);
  padding: var(--space-md);
  border: 1px solid var(--rule-light);
  border-left: 3px solid var(--crimson);
  background: var(--bg-card);
}

.faq-search-label {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--crimson-soft);
  display: block;
  margin-bottom: var(--space-sm);
}

.faq-search-row {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.faq-search-input {
  flex: 1;
  min-width: 240px;
  padding: 0.6rem var(--space-sm);
  background: var(--bg);
  border: 1px solid var(--rule-light);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  appearance: none;
  -webkit-appearance: none;
}

.faq-search-input:focus {
  outline: none;
  border-color: var(--crimson);
}

.faq-search-input::placeholder { color: var(--text-dim); }

/* Remove browser default search cancel button styling */
.faq-search-input::-webkit-search-cancel-button { display: none; }

.faq-search-count {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  white-space: nowrap;
  min-width: 5rem;
}

.faq-search-hint {
  font-size: 0.78rem;
  color: var(--text-dim);
  margin-top: var(--space-sm);
  margin-bottom: 0;
  line-height: 1.5;
}

kbd {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  border: 1px solid var(--rule-light);
  padding: 1px 4px;
  color: var(--text-muted);
}

/* --- FAQ ACCORDION (details/summary) ----------------------- */
details.faq-cluster {
  border-bottom: 1px solid var(--rule);
  margin-bottom: 0;
}

details.faq-cluster:last-of-type {
  border-bottom: none;
}

details.faq-cluster > summary.faq-cluster__title {
  /* Override the base faq-cluster__title since it's now a summary */
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md) 0;
  user-select: none;
  -webkit-user-select: none;
  border-bottom: none; /* the details border handles this */
}

details.faq-cluster > summary.faq-cluster__title::before {
  content: '▸';
  font-size: 0.6rem;
  color: var(--crimson-soft);
  flex-shrink: 0;
  transition: transform 0.15s;
  display: inline-block;
}

details.faq-cluster[open] > summary.faq-cluster__title::before {
  transform: rotate(90deg);
}

/* Hide the default marker in all browsers */
details.faq-cluster > summary::-webkit-details-marker { display: none; }
details.faq-cluster > summary::marker { display: none; }

details.faq-cluster > summary.faq-cluster__title:hover {
  color: var(--text);
}

/* When open, add a subtle top border under the summary */
details.faq-cluster[open] > summary.faq-cluster__title {
  border-bottom: 1px solid var(--rule);
}

/* FAQ items within open clusters */
details.faq-cluster .faq-item {
  scroll-margin-top: 80px; /* offset for sticky header */
}

/* --- FAQ PERMALINK ----------------------------------------- */
.faq-permalink {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--text-dim);
  text-decoration: none;
  margin-left: var(--space-sm);
  opacity: 0;
  transition: opacity 0.15s, color 0.15s;
  vertical-align: middle;
}

.faq-q:hover .faq-permalink,
.faq-q:focus-within .faq-permalink {
  opacity: 1;
}

.faq-permalink:hover {
  color: var(--crimson-soft);
  text-decoration: none;
}

.faq-permalink--copied {
  color: var(--gold) !important;
  opacity: 1 !important;
}

/* Target highlight — when linking directly to a question */
.faq-item:target {
  background: var(--bg-section);
  border-left: 3px solid var(--gold);
  padding-left: calc(var(--space-md) - 3px);
  transition: background 0.3s;
}

@media (max-width: 680px) {
  .faq-search-input { min-width: 100%; }
  .faq-search-row { flex-direction: column; align-items: stretch; }
}

/* --- GLOSSARY --------------------------------------------- */
.gloss-az {
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
  margin: var(--space-lg) 0 var(--space-md);
}

.gloss-az__link {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  text-decoration: none;
  padding: 4px 8px;
  border: 1px solid var(--rule);
  transition: color 0.15s, border-color 0.15s, background 0.15s;
}

.gloss-az__link:hover {
  color: var(--text);
  border-color: var(--crimson);
  background: var(--bg-card);
  text-decoration: none;
}

/* Letter section header */
.gloss-letter {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  color: var(--crimson);
  border-bottom: 2px solid var(--crimson);
  padding-bottom: var(--space-xs);
  margin: var(--space-xl) 0 var(--space-md);
  scroll-margin-top: 80px;
}

/* Individual entry */
.gloss-entry {
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--rule);
  scroll-margin-top: 80px;
}

.gloss-entry:last-child { border-bottom: none; }

.gloss-entry__head {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-xs);
}

.gloss-entry__term {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.06em;
  color: var(--text);
}

.gloss-entry__acro {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--crimson-soft);
  text-transform: uppercase;
}

.gloss-entry__domain {
  font-size: 0.72rem;
  color: var(--gold);
  font-style: italic;
}

.gloss-entry__attr {
  font-family: var(--font-display);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  border: 1px solid var(--text-dim);
  padding: 1px 5px;
}

.gloss-entry__def {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: var(--space-xs);
}

.gloss-entry__def em {
  font-style: italic;
  color: var(--text);
}

.gloss-entry__link {
  font-family: var(--font-display);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
  text-decoration: none;
}

.gloss-entry__link:hover {
  color: var(--crimson-soft);
  text-decoration: none;
}

@media (max-width: 680px) {
  .gloss-letter { font-size: 1.2rem; }
  .gloss-entry__head { gap: var(--space-xs); }
}

/* --- WORKS ENGAGED bibliography ---------------------------- */
.bib-section {
  margin-bottom: var(--space-xl);
}

.bib-section__header {
  display: flex;
  align-items: baseline;
  gap: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--rule);
  margin-bottom: var(--space-md);
}

.bib-section__num {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--crimson-soft);
  flex-shrink: 0;
}

.bib-section__title {
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  color: var(--text);
}

.bib-entry {
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 4.5rem 1fr;
  gap: var(--space-md);
}

.bib-entry:last-child { border-bottom: none; }

.bib-tag {
  font-family: var(--font-display);
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 2px 5px;
  border: 1px solid;
  align-self: start;
  margin-top: 3px;
  white-space: nowrap;
  text-align: center;
}

.bib-tag--foundation {
  color: var(--gold);
  border-color: var(--gold);
}

.bib-tag--response {
  color: var(--crimson-soft);
  border-color: var(--crimson);
}

.bib-tag--dialogue {
  color: var(--text-muted);
  border-color: var(--rule-light);
}

.bib-entry__body {}

.bib-entry__ref {
  font-size: 0.92rem;
  color: var(--text);
  margin-bottom: 3px;
  line-height: 1.5;
}

.bib-entry__ref em {
  font-style: italic;
}

.bib-entry__note {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.bib-legend {
  display: flex;
  gap: var(--space-lg);
  flex-wrap: wrap;
  margin: var(--space-md) 0 var(--space-xl);
  padding: var(--space-md);
  border: 1px solid var(--rule);
  background: var(--bg-card);
}

.bib-legend__item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.82rem;
  color: var(--text-muted);
}

@media (max-width: 680px) {
  .bib-entry { grid-template-columns: 1fr; gap: var(--space-xs); }
  .bib-tag { display: inline-block; margin-bottom: var(--space-xs); }
}

/* --- STEELMAN CHALLENGES ---------------------------------- */
/*  Adversarial engagement block. Amber left border (not crimson)
    signals a different register: here the objector speaks first.
    Objection voice: italic, muted.
    Response voice: normal, full text colour.                  */

.steelman {
  margin: var(--space-xl) 0;
  border: 1px solid var(--rule-light);
  border-left: 3px solid #7A5C1A;  /* dark amber — adversarial voice */
  background: var(--bg-card);
}

.steelman__header {
  padding: var(--space-sm) var(--space-md);
  border-bottom: 1px solid var(--rule);
  display: flex;
  align-items: baseline;
  gap: var(--space-md);
}

.steelman__title {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

.steelman__domain {
  font-size: 0.72rem;
  color: var(--text-dim);
  font-style: italic;
}

.steelman__objection {
  padding: var(--space-md) var(--space-md) var(--space-sm);
  border-bottom: 1px solid var(--rule);
}

.steelman__objection-label {
  font-family: var(--font-display);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #7A5C1A;
  display: block;
  margin-bottom: var(--space-xs);
}

.steelman__objection-text {
  font-size: 0.92rem;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.72;
}

.steelman__response {
  padding: var(--space-md);
}

.steelman__response-label {
  font-family: var(--font-display);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--crimson-soft);
  display: block;
  margin-bottom: var(--space-xs);
}

.steelman__response-text {
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.72;
}

.steelman__response-text em {
  font-style: italic;
}

.steelman__response-text strong {
  color: var(--text);
  font-weight: 600;
}

/* --- EPISODE FAQ CROSS-LINKS ------------------------------ */
.episode-faq {
  margin-top: var(--space-xl);
  padding: var(--space-md);
  border: 1px solid var(--rule-light);
  border-left: 3px solid var(--gold);
  background: var(--bg-card);
}

.episode-faq__label {
  font-family: var(--font-display);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: var(--space-sm);
}

.episode-faq__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.episode-faq__item a {
  font-size: 0.88rem;
  color: var(--text-muted);
  text-decoration: none;
  display: flex;
  align-items: baseline;
  gap: 6px;
  transition: color 0.15s;
}

.episode-faq__item a::before {
  content: '→';
  color: var(--crimson-soft);
  flex-shrink: 0;
  font-size: 0.8rem;
}

.episode-faq__item a:hover {
  color: var(--text);
  text-decoration: none;
}

/* ============================================================
   MOBILE AUDIT — v11 comprehensive pass
   Target: 375px (iPhone SE) through 680px (tablet breakpoint)
   ============================================================ */

/* --- Podcast header (replaces hardcoded 200px 1fr grid) ---- */
.rubric-header {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: var(--space-xl);
  align-items: start;
  margin-bottom: var(--space-xl);
}

.rubric-header__img {
  width: 100%;
  border: 1px solid var(--rule-light);
  display: block;
}

.rubric-header__title {
  margin-bottom: var(--space-sm);
}

.rubric-header__desc {
  font-size: 1.05rem;
  margin-bottom: var(--space-md);
}

.rubric-header__links {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  align-items: center;
}

/* --- Nav: tighten spacing so 8 items fit in 2 rows ------- */
/* At ≤ 680px: tighter gap + smaller letter-spacing           */
/* At ≤ 420px: hide the lowest-traffic items (in footer too)  */
@media (max-width: 680px) {
  .rubric-header {
    grid-template-columns: 140px 1fr;
    gap: var(--space-md);
  }
}

@media (max-width: 520px) {
  /* Stack podcast header fully on small phones */
  .rubric-header {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  .rubric-header__img {
    max-width: 180px;
  }
}

@media (max-width: 680px) {
  /* Nav: tighten so it wraps in 2 rows not 3 */
  .site-nav {
    gap: 6px;
    row-gap: 4px;
  }
  .site-nav a {
    letter-spacing: 0.1em;
    font-size: 0.6rem;
  }
}

@media (max-width: 420px) {
  /* On very small phones, hide lowest-traffic nav items.
     11-item nav: hide Debates (#8) and About (#11).
     For Orthodox/Catholics/Protestants stay — primary conversion paths. */
  .site-nav li:nth-child(8),   /* Debates */
  .site-nav li:nth-child(11) { /* About   */
    display: none;
  }
  /* Hero: reduce blade-mark indent on small screens */
  .hero__tagline {
    padding-left: var(--space-md);
    border-left-width: 3px;
  }
}

/* --- Steelman: ensure padding doesn't overflow narrow screens */
@media (max-width: 680px) {
  .steelman__objection,
  .steelman__response {
    padding: var(--space-sm);
  }
  .steelman__header {
    padding: var(--space-xs) var(--space-sm);
    flex-direction: column;
    gap: 2px;
  }
}

/* --- Arch academic header: stack on mobile */
@media (max-width: 520px) {
  .arch-academic-header__logo {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-sm);
  }
}

/* --- Episode single: Rumble embed is already %, fine.
       Episode nav buttons: wrap on narrow screens        */
@media (max-width: 520px) {
  .episode-item {
    grid-template-columns: 2rem 1fr;
    gap: var(--space-xs);
  }
  .episode-num { font-size: 0.6rem; }
}

/* --- Books grid: 1 column on phones */
@media (max-width: 520px) {
  .book-card { padding: var(--space-md); }
}

/* --- Glossary: tighten A-Z nav spacing */
@media (max-width: 520px) {
  .gloss-az { gap: 2px; }
  .gloss-az__link { padding: 3px 6px; font-size: 0.65rem; }
  .gloss-entry { padding: var(--space-sm) 0; }
}

/* --- Works Engaged: bib-entry already has mobile breakpoint;
       add tighter gap for narrow screens                 */
@media (max-width: 420px) {
  .bib-entry { gap: var(--space-xs); }
  .bib-section__header { flex-direction: column; gap: 2px; }
}

/* --- Five claims: reduce number size on small screens    */
@media (max-width: 420px) {
  .five-claim__num { font-size: 0.6rem; }
  .five-claim__text { font-size: 0.95rem; }
  .five-claim__note { font-size: 0.75rem; }
}

/* --- Battle plan: tighten on very small phones          */
@media (max-width: 380px) {
  .battle-plan__num { font-size: 1.3rem; }
  .battle-plan__action { font-size: 0.88rem; }
  .battle-plan__detail { font-size: 0.82rem; }
}

/* --- Solas grid: ensure readable on narrow screens      */
@media (max-width: 400px) {
  .solas-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* --- Email form: stack on mobile (already has breakpoint,
       but ensure button doesn't clip)                    */
@media (max-width: 420px) {
  .btn { width: 100%; text-align: center; }
}

/* --- 404 cards: min 140px on very small screens        */
@media (max-width: 420px) {
  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
}

/* --- START HERE grid --------------------------------------- */
.start-here-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.start-here__item {
  padding: var(--space-md);
  border: 1px solid var(--rule);
  background: var(--bg);
}

.start-here__context {
  font-family: var(--font-display);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--crimson-soft);
  display: block;
  margin-bottom: var(--space-xs);
}

.start-here__route {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 0;
}

.start-here__route a {
  color: var(--text);
}

.start-here__route a:hover {
  color: var(--crimson-soft);
}

@media (max-width: 600px) {
  .start-here-grid {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }
}

/* --- DEBATES section -------------------------------------- */
.debate-header {
  padding: var(--space-lg) 0;
  border-bottom: 2px solid var(--crimson);
  margin-bottom: var(--space-xl);
}

.debate-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin: var(--space-md) 0;
  align-items: center;
}

.debate-meta__item {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.debate-meta__item strong {
  color: var(--crimson-soft);
}

.debate-timestamp {
  font-family: var(--font-display);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  color: var(--text-dim);
  text-transform: uppercase;
  display: block;
  margin-top: var(--space-sm);
  padding: var(--space-xs) var(--space-sm);
  border: 1px solid var(--rule);
  display: inline-block;
}

.debate-callout {
  padding: var(--space-lg);
  border: 1px solid var(--gold);
  border-left: 3px solid var(--gold);
  background: var(--bg-card);
  margin: var(--space-xl) 0;
}

.debate-callout__label {
  font-family: var(--font-display);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: var(--space-sm);
}

.debate-callout p { font-size: 0.92rem; color: var(--text-muted); margin-bottom: 0; }

.debate-tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
  margin: var(--space-lg) 0;
}

.debate-tier {
  padding: var(--space-md);
  border: 1px solid var(--rule-light);
  background: var(--bg-card);
  border-top: 2px solid var(--crimson);
}

.debate-tier__label {
  font-family: var(--font-display);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--crimson-soft);
  display: block;
  margin-bottom: var(--space-xs);
}

.debate-tier__count {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--text);
  display: block;
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.debate-tier__desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.debate-card {
  padding: var(--space-lg);
  border: 1px solid var(--rule-light);
  border-top: 3px solid var(--crimson);
  background: var(--bg-card);
  margin-bottom: var(--space-md);
  display: block;
  text-decoration: none;
  transition: background 0.15s;
}

.debate-card:hover { background: var(--bg-section); text-decoration: none; }

.debate-card__resolution {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--crimson-soft);
  display: block;
  margin-bottom: var(--space-xs);
}

.debate-card__title {
  font-size: 1rem;
  color: var(--text);
  margin-bottom: var(--space-xs);
}

.debate-card__opponent {
  font-size: 0.82rem;
  color: var(--text-muted);
}

@media (max-width: 600px) {
  .debate-tier-grid { grid-template-columns: 1fr; }
}

/* --- POLEMIC PAGES ----------------------------------------- */
.polemic-header {
  padding: var(--space-xl) 0 var(--space-lg);
  border-bottom: 2px solid var(--crimson);
  margin-bottom: var(--space-xl);
}

.polemic-audience {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--crimson-soft);
  display: block;
  margin-bottom: var(--space-md);
}

.polemic-concessions {
  padding: var(--space-lg);
  border: 1px solid var(--rule-light);
  border-left: 3px solid var(--gold);
  background: var(--bg-card);
  margin: var(--space-xl) 0;
}

.polemic-concessions__label {
  font-family: var(--font-display);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: var(--space-md);
}

.polemic-concession {
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--rule);
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text);
}

.polemic-concession:last-child { border-bottom: none; }

.polemic-concession strong {
  color: var(--text);
  font-weight: 600;
}

.polemic-field {
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--rule);
}

.polemic-field:last-child { border-bottom: none; }

.polemic-field__head {
  display: flex;
  align-items: baseline;
  gap: var(--space-md);
  margin-bottom: var(--space-sm);
  flex-wrap: wrap;
}

.polemic-field__num {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--crimson-soft);
  flex-shrink: 0;
}

.polemic-field__title {
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  color: var(--text);
}

.polemic-field__verdict {
  font-size: 0.88rem;
  color: var(--gold);
  font-style: italic;
  margin-top: var(--space-xs);
  padding-left: 2.5rem;
}

.polemic-field__body {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.72;
  padding-left: 2.5rem;
}

.polemic-download {
  background: var(--crimson);
  padding: var(--space-xl) var(--space-lg);
  margin: var(--space-xl) 0;
  text-align: center;
}

.polemic-download__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.06em;
  color: var(--text);
  display: block;
  margin-bottom: var(--space-sm);
}

.polemic-download__desc {
  font-size: 0.88rem;
  color: rgba(221,215,200,0.75);
  margin-bottom: var(--space-md);
  line-height: 1.6;
}

.polemic-download__btn {
  display: inline-block;
  background: var(--text);
  color: var(--crimson);
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.75rem 2rem;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}

.polemic-download__btn:hover {
  background: var(--bg);
  color: var(--text);
  text-decoration: none;
}

.polemic-download__note {
  display: block;
  font-size: 0.78rem;
  color: rgba(221,215,200,0.6);
  margin-top: var(--space-sm);
}

.polemic-questions {
  margin: var(--space-xl) 0;
  padding: var(--space-lg);
  border: 1px solid var(--rule-light);
  border-left: 3px solid var(--crimson);
  background: var(--bg-card);
}

.polemic-questions__label {
  font-family: var(--font-display);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--crimson-soft);
  display: block;
  margin-bottom: var(--space-md);
}

.polemic-question {
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--rule);
  font-size: 0.88rem;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.65;
}

.polemic-question:last-child { border-bottom: none; }

.polemic-invitation {
  padding: var(--space-lg);
  border-top: 2px solid var(--crimson);
  margin-top: var(--space-xl);
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-muted);
}

.polemic-invitation p:last-child { margin-bottom: 0; }

/* Free Downloads sidebar block */
.free-downloads {
  padding: var(--space-md);
  border: 1px solid var(--rule-light);
  border-top: 3px solid var(--crimson);
  background: var(--bg-card);
  margin: var(--space-xl) 0;
}

.free-downloads__label {
  font-family: var(--font-display);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--crimson-soft);
  display: block;
  margin-bottom: var(--space-sm);
}

.free-downloads__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.free-downloads__item a {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-decoration: none;
  display: block;
  padding: 4px 0;
  border-bottom: 1px solid var(--rule);
  transition: color 0.15s;
}

.free-downloads__item:last-child a { border-bottom: none; }
.free-downloads__item a:hover { color: var(--crimson-soft); text-decoration: none; }

@media (max-width: 680px) {
  .polemic-field__body { padding-left: 0; }
  .polemic-field__verdict { padding-left: 0; }
  .polemic-download { padding: var(--space-md); }
}
