/* ═══════════════════════════════════════════════════════
   VARIABLES & RESET
═══════════════════════════════════════════════════════ */
:root {
  --tinta:       #120E06;
  --tinta-med:   #2A2010;
  --tinta-claro: #3D3018;
  --ambar:       #C8840A;
  --ambar-claro: #E8A82A;
  --chama:       #D4520E;
  --perg:        #F5E6C8;
  --perg-esc:    #DEC89A;
  --ouro:        #C8A028;
  --floresta:    #1E3D1E;
  --aco:         #6B8FA8;
  --dragao:      #8B1F1F;
  --cinza:       #8A7A68;

  /* type colors */
  --ataque:     #C8840A;
  --defesa:     #6B8FA8;
  --cura:       #2E7D32;
  --habilidade: #C8A028;
  --especial:   #D4520E;

  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 12px;
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--tinta);
  color: var(--perg);
  font-family: 'Lora', Georgia, serif;
  font-size: 16px;
  line-height: 1.75;
  overflow-x: hidden;
}

/* ═══════════════════════════════════════════════════════
   SCROLLBAR
═══════════════════════════════════════════════════════ */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--tinta-med); }
::-webkit-scrollbar-thumb { background: var(--ambar); border-radius: 4px; }

/* ═══════════════════════════════════════════════════════
   GRID / PARCHMENT TEXTURE OVERLAY
═══════════════════════════════════════════════════════ */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg,   transparent, transparent 72px, rgba(200,132,10,.025) 72px, rgba(200,132,10,.025) 73px),
    repeating-linear-gradient(90deg,  transparent, transparent 72px, rgba(200,132,10,.025) 72px, rgba(200,132,10,.025) 73px);
  pointer-events: none;
  z-index: 0;
}

/* ═══════════════════════════════════════════════════════
   STICKY NAV
═══════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(18,14,6,.96);
  border-bottom: 1px solid rgba(200,132,10,.35);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 54px;
  backdrop-filter: blur(6px);
}

.nav-logo {
  font-family: 'Cinzel Decorative', serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--perg);
  letter-spacing: .04em;
  white-space: nowrap;
}
.nav-logo span { color: var(--ambar); font-size: .8rem; letter-spacing: .18em; display: inline-block; margin-left: .6rem; }

.nav-links {
  display: flex;
  gap: .2rem;
  list-style: none;
  overflow-x: auto;
  padding: 0 .5rem;
}
.nav-links a {
  font-family: 'Cinzel', serif;
  font-size: .62rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--cinza);
  text-decoration: none;
  padding: .3rem .6rem;
  border-radius: var(--r-sm);
  transition: color .2s, background .2s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--ambar); background: rgba(200,132,10,.1); }

/* ═══════════════════════════════════════════════════════
   COVER
═══════════════════════════════════════════════════════ */
.cover {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 7rem 2rem 4rem;
  position: relative;
  z-index: 1;
  background:
    radial-gradient(ellipse 80% 60% at 50% 20%,  rgba(200,132,10,.12) 0%, transparent 70%),
    radial-gradient(ellipse 50% 80% at 10% 100%, rgba(30,61,30,.3)    0%, transparent 60%),
    radial-gradient(ellipse 50% 70% at 90% 90%,  rgba(139,31,31,.2)   0%, transparent 60%);
}

.cover-eyebrow {
  font-family: 'Cinzel', serif;
  font-size: .7rem;
  letter-spacing: .55em;
  color: var(--ambar);
  text-transform: uppercase;
  margin-bottom: 2.5rem;
  opacity: .85;
}

.cover-title {
  font-family: 'Cinzel Decorative', serif;
  font-weight: 900;
  font-size: clamp(3rem, 9vw, 7rem);
  color: var(--perg);
  line-height: 1;
  letter-spacing: .03em;
  text-shadow: 0 0 80px rgba(200,132,10,.35), 0 6px 30px rgba(0,0,0,.9);
  margin-bottom: .4rem;
}

.cover-subtitle {
  font-family: 'Cinzel Decorative', serif;
  font-weight: 400;
  font-size: clamp(1rem, 3vw, 1.9rem);
  color: var(--ambar-claro);
  letter-spacing: .18em;
  text-shadow: 0 0 40px rgba(232,168,42,.4);
  margin-bottom: 2.5rem;
}

.cover-divider {
  width: 320px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--ambar), transparent);
  margin: 0 auto 2.5rem;
  position: relative;
}
.cover-divider::before {
  content: '⚔';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  background: var(--tinta);
  padding: 0 1rem;
  font-size: 20px;
  color: var(--ambar);
}

.cover-tagline {
  font-family: 'Cinzel', serif;
  font-size: clamp(.85rem, 1.8vw, 1.05rem);
  letter-spacing: .45em;
  color: var(--ambar);
  text-transform: uppercase;
  margin-bottom: 3rem;
}

.cover-lore {
  font-family: 'IM Fell English', serif;
  font-style: italic;
  font-size: clamp(.95rem, 2vw, 1.15rem);
  color: rgba(245,230,200,.8);
  max-width: 620px;
  line-height: 1.9;
  margin: 0 auto 3rem;
}

.cover-badges {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  justify-content: center;
}
.cover-badge {
  font-family: 'Cinzel', serif;
  font-size: .68rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--ambar);
  border: 1px solid rgba(200,132,10,.4);
  padding: .45rem 1.2rem;
}

.cover-scroll {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  font-family: 'Cinzel', serif;
  font-size: .6rem;
  letter-spacing: .3em;
  color: rgba(200,132,10,.5);
  text-transform: uppercase;
  animation: pulse-down 2s infinite;
}
@keyframes pulse-down {
  0%,100% { opacity: .4; transform: translateX(-50%) translateY(0); }
  50%      { opacity: .8; transform: translateX(-50%) translateY(6px); }
}

/* ═══════════════════════════════════════════════════════
   PALETTE ACCENT BAR
═══════════════════════════════════════════════════════ */
.accent-bar {
  height: 6px;
  display: flex;
  position: relative; z-index: 1;
}
.accent-bar div { flex: 1; }

/* ═══════════════════════════════════════════════════════
   PAGE SECTIONS
═══════════════════════════════════════════════════════ */
.page {
  max-width: 960px;
  margin: 0 auto;
  padding: 5rem 2rem;
  position: relative;
  z-index: 1;
}
.page-wide {
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 2rem;
  position: relative;
  z-index: 1;
}
.page-full {
  width: 100%;
  padding: 5rem 2rem;
  position: relative;
  z-index: 1;
}

.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,132,10,.3), transparent);
  max-width: 1100px;
  margin: 0 auto;
  position: relative; z-index: 1;
}

/* ═══════════════════════════════════════════════════════
   TYPOGRAPHY UTILITIES
═══════════════════════════════════════════════════════ */
.eyebrow {
  font-family: 'Cinzel', serif;
  font-size: .68rem;
  letter-spacing: .5em;
  color: var(--chama);
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.eyebrow::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(212,82,14,.3);
}

.h-display {
  font-family: 'Cinzel Decorative', serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  color: var(--perg);
  line-height: 1.2;
  letter-spacing: .03em;
  margin-bottom: 1.8rem;
}

.h-section {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  color: var(--ambar-claro);
  letter-spacing: .15em;
  text-transform: uppercase;
  margin: 2.5rem 0 1rem;
}

.body-text {
  font-size: 1rem;
  color: rgba(245,230,200,.82);
  line-height: 1.9;
  max-width: 720px;
}

.italic-lore {
  font-family: 'IM Fell English', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--ambar-claro);
  line-height: 1.85;
}

/* ═══════════════════════════════════════════════════════
   CALLOUT BOXES
═══════════════════════════════════════════════════════ */
.callout {
  border-left: 3px solid var(--ambar);
  padding: 1.3rem 1.8rem;
  background: rgba(200,132,10,.06);
  margin: 2rem 0;
}
.callout.green  { border-color: var(--cura);   background: rgba(46,125,50,.07); }
.callout.red    { border-color: var(--dragao);  background: rgba(139,31,31,.07); }
.callout.blue   { border-color: var(--aco);     background: rgba(107,143,168,.07); }
.callout.gold   { border-color: var(--ouro);    background: rgba(200,160,40,.07); }
.callout.flame  { border-color: var(--chama);   background: rgba(212,82,14,.07); }

.callout-title {
  font-family: 'Cinzel', serif;
  font-size: .72rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--ambar);
  margin-bottom: .6rem;
}
.callout.green  .callout-title { color: var(--cura); }
.callout.red    .callout-title { color: var(--dragao); }
.callout.blue   .callout-title { color: var(--aco); }
.callout.gold   .callout-title { color: var(--ouro); }
.callout.flame  .callout-title { color: var(--chama); }

.rule-box {
  border: 1px solid rgba(200,132,10,.35);
  padding: 1.5rem 2rem;
  background: rgba(200,132,10,.04);
  position: relative;
  margin: 1.5rem 0;
}
.rule-box::before {
  content: attr(data-label);
  position: absolute;
  top: -10px; left: 1.5rem;
  background: var(--tinta);
  padding: 0 .5rem;
  font-family: 'Cinzel', serif;
  font-size: .6rem;
  letter-spacing: .25em;
  color: var(--ambar);
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════════
   TABLES
═══════════════════════════════════════════════════════ */
.table-wrap { overflow-x: auto; margin: 1.5rem 0; }
table {
  width: 100%;
  border-collapse: collapse;
  font-size: .9rem;
}
thead tr {
  background: var(--tinta-med);
  border-bottom: 1px solid rgba(200,132,10,.4);
}
thead th {
  font-family: 'Cinzel', serif;
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--chama);
  padding: .8rem 1rem;
  text-align: left;
  white-space: nowrap;
}
tbody tr { border-bottom: 1px solid rgba(200,132,10,.08); }
tbody tr:hover { background: rgba(200,132,10,.04); }
tbody td {
  padding: .7rem 1rem;
  color: rgba(245,230,200,.8);
  vertical-align: top;
  line-height: 1.55;
}
tbody td:first-child { color: var(--perg); font-weight: 600; }

/* ═══════════════════════════════════════════════════════
   CARD TYPE BADGES
═══════════════════════════════════════════════════════ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-family: 'Cinzel', serif;
  font-size: .65rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .25rem .7rem;
  border: 1px solid currentColor;
  border-radius: var(--r-sm);
  white-space: nowrap;
}
.badge-ataque     { color: var(--ataque); }
.badge-defesa     { color: var(--defesa); }
.badge-cura       { color: var(--cura); }
.badge-habilidade { color: var(--habilidade); }
.badge-especial   { color: var(--especial); }

/* ═══════════════════════════════════════════════════════
   STEP SEQUENCE
═══════════════════════════════════════════════════════ */
.steps { display: flex; flex-direction: column; gap: 0; margin: 2rem 0; }
.step {
  display: flex;
  gap: 1.5rem;
  padding-bottom: 2rem;
  position: relative;
}
.step:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 26px; top: 52px; bottom: 0;
  width: 1px;
  background: rgba(200,132,10,.2);
}
.step-num {
  width: 52px; height: 52px;
  border: 1px solid var(--ambar);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: 'Cinzel Decorative', serif;
  font-size: 1rem;
  color: var(--ambar);
  font-weight: 700;
  background: var(--tinta);
}
.step-content h4 {
  font-family: 'Cinzel', serif;
  font-size: .85rem;
  font-weight: 700;
  color: var(--ambar-claro);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: .4rem;
  margin-top: .7rem;
}
.step-content p {
  font-size: .95rem;
  color: rgba(245,230,200,.75);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════
   CARD TYPE GRID
═══════════════════════════════════════════════════════ */
.type-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.2rem;
  margin: 2rem 0;
}
.type-card {
  border: 1px solid rgba(255,255,255,.08);
  padding: 1.6rem 1.4rem;
  position: relative;
  background: rgba(255,255,255,.02);
}
.type-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
}
.type-card.atk::before     { background: var(--ataque); }
.type-card.def::before     { background: var(--defesa); }
.type-card.heal::before    { background: var(--cura); }
.type-card.ability::before { background: var(--habilidade); }
.type-card.special::before { background: var(--especial); }

.type-icon { font-size: 1.8rem; margin-bottom: 1rem; display: block; }
.type-name {
  font-family: 'Cinzel', serif;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: .6rem;
}
.type-card.atk     .type-name { color: var(--ataque); }
.type-card.def     .type-name { color: var(--defesa); }
.type-card.heal    .type-name { color: var(--cura); }
.type-card.ability .type-name { color: var(--habilidade); }
.type-card.special .type-name { color: var(--especial); }

.type-body { font-size: .88rem; color: rgba(245,230,200,.7); line-height: 1.65; }
.type-example {
  margin-top: 1rem;
  padding: .8rem 1rem;
  background: rgba(0,0,0,.25);
  border-left: 2px solid rgba(255,255,255,.1);
  font-family: 'IM Fell English', serif;
  font-style: italic;
  font-size: .85rem;
  color: rgba(245,230,200,.6);
  line-height: 1.5;
}

/* ═══════════════════════════════════════════════════════
   CHARACTER / DECK CARDS
═══════════════════════════════════════════════════════ */
.char-sheet {
  border: 1px solid rgba(200,132,10,.25);
  margin: 2.5rem 0;
  position: relative;
  background: rgba(200,132,10,.025);
}
.char-header {
  padding: 2rem 2.5rem 1.5rem;
  border-bottom: 1px solid rgba(200,132,10,.2);
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
}
.char-glyph {
  font-size: 3rem;
  width: 72px; height: 72px;
  border: 1px solid rgba(200,132,10,.4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--tinta-med);
}
.char-title-block { flex: 1; min-width: 200px; }
.char-name {
  font-family: 'Cinzel Decorative', serif;
  font-weight: 700;
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  color: var(--perg);
  line-height: 1.1;
  margin-bottom: .3rem;
}
.char-style-label {
  font-family: 'Cinzel', serif;
  font-size: .7rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--ambar);
  margin-bottom: .6rem;
}
.char-archetype {
  font-size: .9rem;
  color: rgba(245,230,200,.65);
}
.char-difficulty {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-top: .6rem;
}
.diff-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(200,132,10,.4);
}
.diff-dot.filled { background: var(--ambar); border-color: var(--ambar); }
.diff-label {
  font-family: 'Cinzel', serif;
  font-size: .62rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--ambar);
}

.char-body { padding: 2rem 2.5rem; }
.char-passive {
  border: 1px solid rgba(200,132,10,.3);
  padding: 1.2rem 1.5rem;
  margin-bottom: 1.8rem;
  background: rgba(200,132,10,.05);
  position: relative;
}
.char-passive::before {
  content: 'HABILIDADE PASSIVA';
  position: absolute;
  top: -10px; left: 1rem;
  background: var(--tinta);
  padding: 0 .5rem;
  font-family: 'Cinzel', serif;
  font-size: .58rem;
  letter-spacing: .25em;
  color: var(--ouro);
}
.passive-name {
  font-family: 'Cinzel', serif;
  font-size: .9rem;
  font-weight: 700;
  color: var(--ouro);
  letter-spacing: .1em;
  margin-bottom: .4rem;
}
.passive-text { font-size: .92rem; color: rgba(245,230,200,.8); line-height: 1.7; }

.char-lore {
  font-family: 'IM Fell English', serif;
  font-style: italic;
  font-size: .95rem;
  color: rgba(245,230,200,.65);
  line-height: 1.8;
  border-left: 2px solid rgba(200,132,10,.3);
  padding-left: 1.2rem;
  margin-bottom: 1.8rem;
}

.char-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
}

.mini-card {
  border: 1px solid rgba(255,255,255,.07);
  padding: 1rem 1.1rem;
  position: relative;
  background: rgba(255,255,255,.02);
}
.mini-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 3px;
}
.mini-card.atk::before     { background: var(--ataque); }
.mini-card.def::before     { background: var(--defesa); }
.mini-card.heal::before    { background: var(--cura); }
.mini-card.ability::before { background: var(--habilidade); }
.mini-card.special::before { background: var(--especial); }

.mini-card-name {
  font-family: 'Cinzel', serif;
  font-size: .8rem;
  font-weight: 700;
  color: var(--perg);
  margin-bottom: .25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .5rem;
}
.mini-card-qty {
  font-family: 'Cinzel', serif;
  font-size: .62rem;
  color: var(--cinza);
  flex-shrink: 0;
}
.mini-card-effect { font-size: .82rem; color: rgba(245,230,200,.7); line-height: 1.5; }
.mini-card-stats {
  display: flex;
  gap: .6rem;
  margin-top: .4rem;
}
.stat-pill {
  font-family: 'Cinzel', serif;
  font-size: .6rem;
  letter-spacing: .1em;
  padding: 2px 7px;
  border-radius: 2px;
  font-weight: 700;
}
.stat-atk { background: rgba(200,132,10,.2); color: var(--ambar); }
.stat-def { background: rgba(107,143,168,.2); color: var(--aco); }
.stat-heal { background: rgba(46,125,50,.2); color: #5FA05F; }

/* Char header accent line per deck */
.char-sheet.sombras .char-header  { border-left: 4px solid #6B3FA0; }
.char-sheet.druida  .char-header  { border-left: 4px solid var(--floresta); }
.char-sheet.driade  .char-header  { border-left: 4px solid #2E7D32; }
.char-sheet.orvalho .char-header  { border-left: 4px solid var(--aco); }
.char-sheet.juramento .char-header { border-left: 4px solid var(--ambar); }
.char-sheet.tempestade .char-header { border-left: 4px solid var(--chama); }

/* ═══════════════════════════════════════════════════════
   MODES SECTION
═══════════════════════════════════════════════════════ */
.modes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.mode-card {
  border: 1px solid rgba(200,132,10,.2);
  padding: 2rem 1.8rem;
  background: rgba(200,132,10,.025);
  position: relative;
}
.mode-card::before {
  content: '';
  position: absolute;
  top: -1px; left: 2rem;
  width: 2.5rem; height: 3px;
  background: var(--ambar);
}
.mode-icon { font-size: 1.8rem; display: block; margin-bottom: 1rem; }
.mode-name {
  font-family: 'Cinzel', serif;
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--ambar-claro);
  margin-bottom: .4rem;
}
.mode-players {
  font-family: 'Cinzel', serif;
  font-size: .65rem;
  letter-spacing: .2em;
  color: var(--chama);
  text-transform: uppercase;
  margin-bottom: .8rem;
}
.mode-body { font-size: .88rem; color: rgba(245,230,200,.7); line-height: 1.7; }
.mode-rule {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(200,132,10,.15);
  font-size: .84rem;
  color: var(--ambar);
  font-family: 'IM Fell English', serif;
  font-style: italic;
}

/* ═══════════════════════════════════════════════════════
   GLOSSARY
═══════════════════════════════════════════════════════ */
.glossary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: .8rem;
  margin-top: 1.5rem;
}
.glossary-item {
  padding: 1rem 1.2rem;
  border: 1px solid rgba(200,132,10,.12);
  background: rgba(200,132,10,.02);
}
.glossary-term {
  font-family: 'Cinzel', serif;
  font-size: .8rem;
  font-weight: 700;
  color: var(--ambar);
  letter-spacing: .08em;
  margin-bottom: .3rem;
}
.glossary-def { font-size: .85rem; color: rgba(245,230,200,.7); line-height: 1.55; }

/* ═══════════════════════════════════════════════════════
   FAQ
═══════════════════════════════════════════════════════ */
.faq-list { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.faq-item {
  border: 1px solid rgba(200,132,10,.14);
  overflow: hidden;
}
.faq-q {
  padding: 1rem 1.4rem;
  background: rgba(200,132,10,.04);
  font-family: 'Cinzel', serif;
  font-size: .82rem;
  font-weight: 600;
  color: var(--perg);
  letter-spacing: .04em;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}
.faq-q span { color: var(--ambar); font-size: 1rem; transition: transform .3s; }
.faq-a {
  padding: 1rem 1.4rem;
  font-size: .88rem;
  color: rgba(245,230,200,.75);
  line-height: 1.7;
  border-top: 1px solid rgba(200,132,10,.1);
  display: none;
}
.faq-item.open .faq-a { display: block; }
.faq-item.open .faq-q span { transform: rotate(45deg); }

/* ═══════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════ */
.footer {
  text-align: center;
  padding: 4rem 2rem 5rem;
  border-top: 1px solid rgba(200,132,10,.15);
  position: relative; z-index: 1;
}
.footer-logo {
  font-family: 'Cinzel Decorative', serif;
  font-size: 1.5rem;
  color: var(--perg);
  letter-spacing: .08em;
}
.footer-logo span {
  display: block;
  font-size: .8rem;
  color: var(--ambar);
  letter-spacing: .4em;
  text-transform: uppercase;
  margin-top: .3rem;
}
.footer-tagline {
  font-family: 'IM Fell English', serif;
  font-style: italic;
  font-size: .95rem;
  color: rgba(245,230,200,.4);
  margin-top: 1.5rem;
}

/* ═══════════════════════════════════════════════════════
   PRINT STYLES
═══════════════════════════════════════════════════════ */
@media print {
  .nav, .cover-scroll { display: none; }
  body { background: white; color: black; }
  .page, .page-wide { padding: 2rem 1rem; }
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .char-header { flex-direction: column; gap: 1rem; }
  .char-body { padding: 1.5rem; }
  .char-cards-grid { grid-template-columns: 1fr; }
}