/* ── TOKENS ────────────────────────────────────────────── */
:root {
  /* Dungeon palette — drawn from the TSR box art */
  --dungeon:       #0c0c16;   /* deep cave black-blue */
  --dungeon-mid:   #13131f;   /* stone walls */
  --dungeon-lit:   #1c1c30;   /* torchlit stone */
  --dungeon-warm:  #1e1610;   /* warm stone near fire */

  --parchment:     #e8d5a0;   /* aged text */
  --parchment-dim: #b89e6a;   /* faded parchment */

  --gold:          #c9a227;   /* treasure gold */
  --gold-bright:   #f0d060;   /* bright gold highlight */
  --gold-dim:      #6b5510;   /* dark gold for borders */

  --red:           #c41a00;   /* dragon red — title color */
  --red-bright:    #e83010;   /* brighter red */
  --red-dim:       #7a1000;   /* dark red */

  --steel:         #7a8fa8;   /* knight armor blue-grey */
  --stone:         #3a3a50;   /* stone grey */

  --font-display: 'Cinzel Decorative', 'Palatino Linotype', serif;
  --font-heading: 'Cinzel', 'Palatino Linotype', serif;
  --font-body:    'EB Garamond', 'Palatino Linotype', serif;

  --max-width: 1060px;
  --nav-height: 46px;

  /* Gold border shorthand */
  --border-gold: 1px solid var(--gold-dim);
}

/* ── RESET ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-height) + 8px);
}

body {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--parchment);
  background-color: var(--dungeon);
  /* Subtle stone texture */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
}

a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-bright); text-decoration: underline; }

em { font-style: italic; color: inherit; }

/* ── UTILITIES ─────────────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: clamp(1rem, 5vw, 2.5rem);
}

/* ── MASTHEAD ──────────────────────────────────────────── */
.masthead {
  background: var(--dungeon-mid);
  border-bottom: 2px solid var(--gold-dim);
  position: relative;
  overflow: hidden;
}

/* Stone gradient overlay at the top */
.masthead::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(12, 10, 30, 0.7) 0%,
    rgba(20, 16, 10, 0.3) 60%,
    transparent 100%);
  pointer-events: none;
}

/* ── Corner banner — "Basic Set" diagonal ──────────────── */
.masthead-corner-banner {
  position: absolute;
  top: 0;
  left: 0;
  width: 120px;
  height: 120px;
  overflow: hidden;
  z-index: 10;
}

.masthead-corner-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 0;
  border-style: solid;
  border-width: 120px 120px 0 0;
  border-color: var(--gold) transparent transparent transparent;
}

.masthead-corner-banner span {
  position: absolute;
  top: 14px;
  left: 4px;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--dungeon);
  transform: rotate(-45deg);
  transform-origin: center center;
  text-align: center;
  line-height: 1.3;
  white-space: nowrap;
  text-transform: uppercase;
}

/* ── Top info bar ──────────────────────────────────────── */
.masthead-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.45rem clamp(1rem, 5vw, 2.5rem) 0.45rem 140px;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--parchment-dim);
  border-bottom: 1px solid var(--gold-dim);
  position: relative;
  z-index: 2;
}

.topbar-center { letter-spacing: 0.15em; }

/* ── Big title ─────────────────────────────────────────── */
.masthead-title-wrap {
  text-align: center;
  padding: 2.5rem clamp(1rem, 5vw, 2.5rem) 1.5rem;
  position: relative;
  z-index: 2;
}

.masthead-ornament {
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  color: var(--gold-dim);
  margin: 0.5rem 0;
  user-select: none;
}

.masthead-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 7vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.04em;

  /* The red + gold shadow from the box art */
  color: var(--red);
  text-shadow:
    2px 2px 0px var(--red-dim),
    -1px -1px 0px #000,
     0   3px 8px rgba(0,0,0,0.8),
     0   0  20px rgba(180, 30, 0, 0.3);

  margin: 0.4rem 0;
}

.masthead-sub {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--parchment-dim);
  margin-top: 0.5rem;
}

.masthead-tagline {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--parchment-dim);
  font-style: italic;
  margin-top: 0.75rem;
  max-width: 580px;
  margin-inline: auto;
}

/* ── Nav strip ─────────────────────────────────────────── */
.masthead-nav {
  background: rgba(0,0,0,0.4);
  border-top: 1px solid var(--gold-dim);
  padding: 0.65rem clamp(1rem, 5vw, 2.5rem);
  position: relative;
  z-index: 2;
}

.masthead-nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem 1.5rem;
  flex-wrap: wrap;
}

.masthead-nav a {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--parchment-dim);
  text-decoration: none;
  transition: color 0.15s;
}
.masthead-nav a:hover { color: var(--gold-bright); text-decoration: none; }

.nav-sep { color: var(--gold-dim); font-size: 0.55rem; pointer-events: none; }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--gold-dim);
  color: var(--parchment-dim);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.75rem;
  cursor: pointer;
  transition: color 0.15s, border-color 0.15s;
}
.nav-toggle:hover { color: var(--gold-bright); border-color: var(--gold); }

/* ── SECTION DIVIDER ───────────────────────────────────── */
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  color: var(--gold-dim);
  font-size: 0.7rem;
}

.divider-line {
  display: block;
  flex: 1;
  max-width: 340px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
}

/* ── SECTIONS ──────────────────────────────────────────── */
.section { padding: 4rem 0; }

.section--alt { background: var(--dungeon-warm); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  text-align: center;
  color: var(--gold);
  text-shadow: 0 0 20px rgba(201, 162, 39, 0.3), 1px 1px 3px rgba(0,0,0,0.8);
  margin-bottom: 0.4rem;
  padding-bottom: 1rem;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
}

.section-subtitle {
  text-align: center;
  font-size: 0.95rem;
  color: var(--parchment-dim);
  font-style: italic;
  margin-bottom: 2.5rem;
  margin-top: 0.5rem;
}

/* ── CARD SHARED ───────────────────────────────────────── */
.card-inner {
  height: 100%;
}

.card-rule {
  border: none;
  border-top: 1px solid var(--gold-dim);
  margin: 0.75rem 0;
}

/* ── ABOUT ─────────────────────────────────────────────── */
.about-grid {
  max-width: 720px;
  margin-inline: auto;
}

.about-text p {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--parchment);
}

.about-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 2rem;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--gold-dim);
}

.meta-item { display: flex; flex-direction: column; gap: 0.1rem; }

.meta-label {
  font-family: var(--font-heading);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dim);
}

.meta-value {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--parchment);
}

/* Sidebar */
.about-sidebar {
  border: 1px solid var(--gold-dim);
  padding: 1.5rem;
  background: rgba(0,0,0,0.25);
  position: relative;
  /* Inner inset frame */
  box-shadow: inset 0 0 0 4px rgba(0,0,0,0.4), inset 0 0 0 5px var(--gold-dim);
}

.about-sidebar h3 {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  margin-bottom: 1rem;
}

.issue-list { list-style: none; }

.issue-list li {
  border-bottom: 1px solid rgba(107,85,16,0.4);
}
.issue-list li:last-child { border-bottom: none; }

.issue-list a {
  display: block;
  font-size: 0.875rem;
  padding: 0.45rem 0;
  color: var(--parchment-dim);
  text-decoration: none;
  transition: color 0.15s, padding-left 0.15s;
}
.issue-list a:hover { color: var(--gold-bright); padding-left: 0.3rem; }

.sidebar-stamp {
  display: block;
  border: 2px solid var(--red);
  color: var(--red);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
  padding: 0.4rem 0.5rem;
  margin-top: 1.25rem;
  transform: rotate(-3deg);
  line-height: 1.4;
  text-shadow: 0 0 8px rgba(196,26,0,0.4);
  box-shadow: 0 0 6px rgba(196,26,0,0.15), inset 0 0 6px rgba(196,26,0,0.05);
}

/* ── SESSIONS ──────────────────────────────────────────── */
.sessions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 400px));
  justify-content: center;
  gap: 1.5rem;
}

.session-card {
  border: 1px solid var(--gold-dim);
  padding: 1.5rem;
  background: rgba(0,0,0,0.3);
  box-shadow:
    inset 0 0 0 4px rgba(0,0,0,0.4),
    inset 0 0 0 5px var(--gold-dim),
    0 4px 20px rgba(0,0,0,0.4);
  transition: box-shadow 0.2s, transform 0.2s;
}

.session-card:hover {
  box-shadow:
    inset 0 0 0 4px rgba(0,0,0,0.4),
    inset 0 0 0 5px var(--gold-dim),
    0 6px 30px rgba(0,0,0,0.6),
    0 0 20px rgba(201,162,39,0.08);
  transform: translateY(-2px);
}

.session-card--featured {
  grid-column: span 2;
  background: rgba(30,22,16,0.6);
}

.session-card--back { opacity: 0.7; }

.session-meta {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.6rem;
  flex-wrap: wrap;
}

.issue-badge {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.issue-badge--zero { color: var(--stone); }

.session-meta time {
  font-size: 0.8rem;
  color: var(--parchment-dim);
  font-style: italic;
}

.session-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  letter-spacing: 0.03em;
  line-height: 1.3;
  color: var(--parchment);
}
.session-card h3 a { color: var(--parchment); text-decoration: none; }
.session-card h3 a:hover { color: var(--gold-bright); }

.session-card p {
  font-size: 0.95rem;
  color: var(--parchment-dim);
  margin-bottom: 1rem;
}

.session-link {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: var(--gold);
  text-decoration: none;
  transition: color 0.15s;
}
.session-link:hover { color: var(--gold-bright); }

/* ── CHARACTERS ────────────────────────────────────────── */
.characters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 260px));
  gap: 1.5rem;
  justify-content: center;
}

.character-card {
  border: 1px solid var(--gold-dim);
  padding: 1.5rem;
  background: rgba(0,0,0,0.3);
  box-shadow:
    inset 0 0 0 4px rgba(0,0,0,0.4),
    inset 0 0 0 5px var(--gold-dim),
    0 4px 20px rgba(0,0,0,0.4);
  text-align: center;
}

.character-avatar {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  color: var(--gold-dim);
  display: block;
}

.character-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--parchment);
  margin-bottom: 0.25rem;
}

.character-class {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 0.5rem;
}

.character-card p:last-child {
  font-size: 0.9rem;
  color: var(--parchment-dim);
  text-align: left;
  line-height: 1.65;
}

/* ── LORE ──────────────────────────────────────────────── */
.lore-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(295px, 1fr));
  gap: 1.5rem;
}

.lore-entry {
  border: 1px solid var(--gold-dim);
  padding: 1.5rem;
  background: rgba(0,0,0,0.3);
  box-shadow:
    inset 0 0 0 4px rgba(0,0,0,0.4),
    inset 0 0 0 5px var(--gold-dim),
    0 4px 20px rgba(0,0,0,0.4);
}

.lore-tag {
  font-family: var(--font-heading);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.3rem;
}

.lore-entry h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  color: var(--parchment);
  margin-bottom: 0.6rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--gold-dim);
}

.lore-entry p:last-child {
  font-size: 0.95rem;
  color: var(--parchment-dim);
  line-height: 1.7;
}

/* ── FOOTER ────────────────────────────────────────────── */
.site-footer {
  background: var(--dungeon-mid);
  border-top: 2px solid var(--gold-dim);
  padding: 2.5rem 0;
  text-align: center;
}

.footer-ornament {
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  color: var(--gold-dim);
  margin: 0.75rem 0;
}

.footer-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
  text-shadow: 0 0 16px rgba(201,162,39,0.3);
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.site-footer p {
  font-size: 0.9rem;
  line-height: 2;
  color: var(--parchment-dim);
}

.footer-sub {
  font-size: 0.8rem;
  color: var(--stone);
}

/* ── SESSION PAGE ──────────────────────────────────────── */

.issue-banner {
  background: var(--dungeon-mid);
  border-bottom: 1px solid var(--gold-dim);
  padding: 0.6rem 0;
}

.issue-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.back-link {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--parchment-dim);
  text-decoration: none;
  transition: color 0.15s;
}
.back-link:hover { color: var(--gold-bright); text-decoration: none; }

.issue-ident {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
}

.issue-title-section {
  background: var(--dungeon-mid);
  padding: 2.5rem 0 2rem;
  text-align: center;
  border-bottom: 2px solid var(--gold-dim);
}

.issue-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--parchment);
  text-shadow: 1px 1px 0 var(--dungeon), 0 2px 12px rgba(0,0,0,0.8);
  margin-bottom: 0.4rem;
}

.issue-subtitle {
  font-size: 1rem;
  color: var(--parchment-dim);
  margin-top: 0.3rem;
  margin-bottom: 1.25rem;
}

.issue-rule {
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
  margin: 0 auto;
}

/* Chapters */
.chapter { padding: 3.5rem 0; }
.chapter--alt { background: var(--dungeon-warm); }

.chapter .container { max-width: 820px; }

.chapter-title {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  text-shadow: 0 0 16px rgba(201,162,39,0.25);
  margin-bottom: 1.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--gold-dim);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.chapter-num {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  color: var(--parchment-dim);
  text-transform: uppercase;
  font-weight: 400;
}

.chapter-intro {
  color: var(--parchment-dim);
  font-style: italic;
  margin-bottom: 2rem;
  font-size: 1rem;
}

.chapter p {
  margin-bottom: 1rem;
  font-size: 1rem;
  color: var(--parchment);
  line-height: 1.8;
}

/* NPC entrance / description blocks */
.npc-entrance {
  margin: 1.5rem 0;
  padding: 0.75rem 1.25rem;
  border-left: 2px solid var(--gold-dim);
}

.npc-entrance p { margin-bottom: 0.6rem; color: var(--parchment-dim); }
.npc-entrance p:last-child { margin-bottom: 0; }

.npc-speech {
  font-style: italic;
  color: var(--parchment) !important;
}

/* NPC conversation blocks */
.npc-dialogue {
  margin: 1rem 0;
  padding: 1rem 1.25rem;
  background: rgba(0,0,0,0.2);
  border-left: 3px solid var(--gold-dim);
}

.npc-dialogue p {
  margin-bottom: 0.65rem;
  font-size: 0.95rem;
  color: var(--parchment-dim);
  line-height: 1.75;
}
.npc-dialogue p:last-child { margin-bottom: 0; }

.npc-line {
  font-style: italic;
  color: var(--parchment);
}

/* Game mechanic callout boxes */
.game-callout {
  margin: 2rem 0;
  padding: 1.25rem 1.5rem;
  background: rgba(196,26,0,0.06);
  border: 1px solid var(--red-dim);
}

.game-callout--minor {
  background: rgba(0,0,0,0.2);
  border-color: var(--stone);
}

.game-callout-label {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.75rem;
}

.game-callout--minor .game-callout-label { color: var(--steel); }

.game-callout p {
  font-size: 0.95rem;
  color: var(--parchment-dim);
  margin-bottom: 0.5rem;
}
.game-callout p:last-child { margin-bottom: 0; }

.roll-table {
  list-style: none;
  margin: 0.75rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.roll-table li {
  font-size: 0.9rem;
  color: var(--parchment-dim);
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(107,85,16,0.2);
  display: flex;
  gap: 1rem;
  align-items: baseline;
}
.roll-table li:last-child { border-bottom: none; }

.roll-range {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: var(--gold);
  white-space: nowrap;
  min-width: 80px;
  flex-shrink: 0;
}

.roll-range--nat20 { color: var(--gold-bright); }

.redacted { color: var(--stone); font-style: italic; }

.roll-result {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: var(--parchment-dim);
  padding-top: 0.5rem;
  border-top: 1px solid var(--gold-dim);
}
.roll-result strong { color: var(--gold); }

.riddle-text {
  font-style: italic;
  font-size: 1.05rem;
  color: var(--parchment);
  text-align: center;
  margin: 0.75rem 0;
}

.riddle-answer {
  font-size: 0.9rem;
  color: var(--parchment-dim);
  margin-top: 0.5rem;
}
.riddle-answer strong { color: var(--parchment); }

/* NPC encounter blocks */
.encounter-block {
  margin: 2.5rem 0;
  border: 1px solid var(--gold-dim);
  padding: 1.5rem;
  background: rgba(0,0,0,0.2);
  box-shadow:
    inset 0 0 0 4px rgba(0,0,0,0.3),
    inset 0 0 0 5px var(--gold-dim);
}

.encounter-block--notable {
  background: rgba(30,22,16,0.5);
  border-color: var(--gold);
}

.encounter-block--mysterious {
  background: rgba(12,10,30,0.6);
  border-color: var(--stone);
  box-shadow:
    inset 0 0 0 4px rgba(0,0,0,0.4),
    inset 0 0 0 5px var(--stone),
    0 0 24px rgba(58,58,80,0.12);
}

.encounter-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--gold-dim);
}

.encounter-block--mysterious .encounter-title {
  color: var(--steel);
  border-color: var(--stone);
}

.encounter-block p {
  font-size: 0.95rem;
  color: var(--parchment-dim);
  margin-bottom: 0.75rem;
  line-height: 1.75;
}
.encounter-block p:last-child { margin-bottom: 0; }

.party-decision {
  margin-top: 1rem;
  text-align: center;
  color: var(--parchment-dim);
  font-size: 0.9rem;
}

/* Drinks grid */
.drinks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
  margin: 2rem 0;
}

.drink-card {
  border: 1px solid var(--gold-dim);
  padding: 1.25rem;
  background: rgba(0,0,0,0.3);
  box-shadow:
    inset 0 0 0 4px rgba(0,0,0,0.4),
    inset 0 0 0 5px var(--gold-dim),
    0 4px 16px rgba(0,0,0,0.35);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.drink-card--bard {
  border-color: var(--gold);
  background: rgba(30,22,16,0.45);
}

.drink-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.drink-icon {
  font-size: 1.3rem;
  color: var(--gold-dim);
  line-height: 1;
}

.drink-name {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  color: var(--parchment);
}

.drink-desc {
  font-size: 0.88rem;
  color: var(--parchment-dim);
  font-style: italic;
  line-height: 1.65;
}

.drink-effect { flex: 1; }

.drink-effect p {
  font-size: 0.88rem;
  color: var(--parchment-dim);
  line-height: 1.7;
  margin: 0;
}

.drink-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.25rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--gold-dim);
}

.drink-class {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

.drink-player {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--parchment-dim);
}

/* Scene break */
.scene-break {
  text-align: center;
  padding: 1.75rem 0 1rem;
}

.scene-break-ornament {
  font-size: 0.85rem;
  color: var(--gold-dim);
  letter-spacing: 0.12em;
}

.session-end-note {
  text-align: center;
  color: var(--parchment-dim);
  font-size: 0.95rem;
  margin: 1.5rem 0;
}

/* Issue navigation bar */
.issue-nav {
  background: var(--dungeon-mid);
  border-top: 1px solid var(--gold-dim);
  border-bottom: 2px solid var(--gold-dim);
  padding: 1rem 0;
}

.issue-nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.issue-nav-placeholder { flex: 1; }

.issue-nav-home,
.issue-nav-next {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--parchment-dim);
  text-decoration: none;
  transition: color 0.15s;
  flex: 1;
}

.issue-nav-home { text-align: center; color: var(--gold-dim); }
.issue-nav-next { text-align: right; }

.issue-nav-home:hover,
.issue-nav-next:hover { color: var(--gold-bright); text-decoration: none; }

/* ── RESPONSIVE ────────────────────────────────────────── */
@media (max-width: 768px) {
  .masthead-nav ul {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
  }
  .masthead-nav ul.is-open { display: flex; }
  .nav-sep { display: none; }
  .nav-toggle { display: block; margin: 0 auto; }

  .about-grid { grid-template-columns: 1fr; }
  .about-sidebar { order: -1; }

  .session-card--featured { grid-column: span 1; }

  .masthead-topbar { padding-left: clamp(1rem, 5vw, 2.5rem); }
  .masthead-corner-banner { display: none; }
}

@media (max-width: 480px) {
  .sessions-grid,
  .characters-grid,
  .lore-grid { grid-template-columns: 1fr; }

  .topbar-center { display: none; }
}
