/* ═══════════════════════════════════════════════
   THE CRIMSON CHALICE — Main Stylesheet
   The Blood Chalice
   ═══════════════════════════════════════════════ */

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

:root {
  --gold:        #c9a84c;
  --gold-dim:    #8a6c2a;
  --ink:         #0d0a08;
  --parchment:   #f0e6c8;
  --parchment2:  #e8d8a8;
  --blood:       #6b1a1a;
  --mist:        rgba(180,160,100,0.07);
  --shadow:      rgba(0,0,0,0.8);
}

html { scroll-behavior: smooth; }

body {
  background-color: var(--ink);
  color: var(--parchment);
  font-family: 'Spectral', serif;
  overflow-x: hidden;
  cursor: default;
}

/* ─── ANIMATIONS ─── */
@keyframes flicker {
  0%,100% { opacity: 1; }
  92%      { opacity: 1; }
  93%      { opacity: 0.82; }
  94%      { opacity: 1; }
  96%      { opacity: 0.88; }
  97%      { opacity: 1; }
}
@keyframes float-up {
  0%   { transform: translateY(0) scale(1);    opacity: 0.6; }
  100% { transform: translateY(-80px) scale(0.3); opacity: 0; }
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes shimmer {
  0%,100% { text-shadow: 0 0 8px #c9a84c88, 0 0 24px #c9a84c44; }
  50%      { text-shadow: 0 0 16px #c9a84cbb, 0 0 40px #c9a84c66; }
}
@keyframes pageFloat {
  0%,100% { transform: rotate(-0.5deg); }
  50%      { transform: rotate(0.5deg); }
}
@keyframes vignettePulse {
  0%,100% { opacity: 0.85; }
  50%      { opacity: 0.75; }
}
@keyframes fogDrift {
  from { transform: translateX(0); }
  to   { transform: translateX(25%); }
}

/* ─── CANDLE ANIMATIONS ─── */
@keyframes flameOuter {
  0%,100% { transform: translateX(-50%) scaleX(1)    scaleY(1)    rotate(0deg); }
  20%      { transform: translateX(-53%) scaleX(0.88) scaleY(1.05) rotate(-2deg); }
  40%      { transform: translateX(-47%) scaleX(1.12) scaleY(0.96) rotate(2.5deg); }
  60%      { transform: translateX(-51%) scaleX(0.94) scaleY(1.03) rotate(-1deg); }
  80%      { transform: translateX(-49%) scaleX(1.06) scaleY(0.98) rotate(1.5deg); }
}
@keyframes flameMid {
  0%,100% { transform: translateX(-50%) scaleX(1)    scaleY(1)    rotate(0deg); }
  25%      { transform: translateX(-54%) scaleX(0.86) scaleY(1.07) rotate(-3deg); }
  50%      { transform: translateX(-46%) scaleX(1.14) scaleY(0.94) rotate(3deg); }
  75%      { transform: translateX(-52%) scaleX(0.92) scaleY(1.04) rotate(-1.5deg); }
}
@keyframes flameCore {
  0%,100% { transform: translateX(-50%) scaleY(1)    rotate(0deg);    opacity: 0.95; }
  30%      { transform: translateX(-53%) scaleY(1.1)  rotate(-1.5deg); opacity: 1; }
  65%      { transform: translateX(-47%) scaleY(0.92) rotate(2deg);    opacity: 0.85; }
}
@keyframes flameGlow {
  0%,100% { opacity: 0.65; transform: translateX(-50%) scale(1); }
  40%      { opacity: 0.85; transform: translateX(-52%) scale(1.08); }
  70%      { opacity: 0.7;  transform: translateX(-48%) scale(0.94); }
}
@keyframes glowPulse {
  0%,100% { opacity: 0.5; transform: scaleX(1); }
  50%      { opacity: 0.8; transform: scaleX(1.15); }
}

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 40px;
  background: linear-gradient(to bottom, rgba(5,3,2,0.95), transparent);
  backdrop-filter: blur(2px);
}
.nav-logo {
  font-family: 'Grenze Gotisch', serif;
  font-size: 1.4rem;
  color: var(--gold);
  text-decoration: none;
}
.nav-links { display: flex; gap: 28px; }
.nav-links a {
  font-family: 'Cinzel', serif;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--parchment2);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold) !important;
  border: 1px solid var(--gold-dim);
  padding: 6px 16px;
  transition: border-color 0.2s, background 0.2s !important;
}
.nav-cta:hover { background: rgba(201,168,76,0.1) !important; border-color: var(--gold) !important; }

/* ─── HERO ─── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 40px 20px;
}
#hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%,  rgba(100,60,10,0.45) 0%, transparent 65%),
    radial-gradient(ellipse at 20% 80%, rgba(80,20,20,0.3)   0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(80,20,20,0.3)   0%, transparent 50%);
  z-index: 0;
}
#hero::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, transparent 40%, rgba(0,0,0,0.85) 100%);
  z-index: 1;
  animation: vignettePulse 6s ease-in-out infinite;
}
.hero-content { position: relative; z-index: 2; animation: fadeIn 1.8s ease both; }

.eyebrow {
  font-family: 'Cinzel', serif;
  letter-spacing: 0.35em;
  font-size: 0.7rem;
  color: var(--gold-dim);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.book-title {
  font-family: 'Grenze Gotisch', serif;
  font-size: clamp(2.8rem, 8vw, 6rem);
  color: var(--gold);
  line-height: 1.1;
  animation: shimmer 4s ease-in-out infinite;
  margin-bottom: 10px;
}
.subtitle {
  font-family: 'Cinzel', serif;
  font-size: clamp(0.75rem, 2vw, 0.95rem);
  letter-spacing: 0.25em;
  color: var(--parchment2);
  text-transform: uppercase;
  margin-bottom: 30px;
}
.tagline {
  font-family: 'Spectral', serif;
  font-style: italic;
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: var(--parchment2);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

/* ─── DIVIDER ─── */
.divider {
  display: flex; align-items: center; gap: 12px;
  justify-content: center; margin: 20px auto;
  max-width: 360px;
}
.divider-line { flex: 1; height: 1px; background: linear-gradient(to right, transparent, var(--gold-dim), transparent); }
.divider-glyph { color: var(--gold); font-size: 1.1rem; }
.ornament {
  text-align: center;
  font-size: 1.2rem;
  color: var(--gold-dim);
  letter-spacing: 0.5em;
  margin: 10px 0 30px;
}

/* ─── BUTTONS ─── */
.cta-btn {
  display: inline-block;
  font-family: 'Cinzel', serif;
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  background: linear-gradient(135deg, #d4a84b, #a07030, #d4a84b);
  background-size: 200% 200%;
  border: 1px solid var(--gold);
  padding: 14px 36px;
  text-decoration: none;
  transition: background-position 0.5s, box-shadow 0.3s;
  box-shadow: 0 0 24px rgba(201,168,76,0.25);
  cursor: pointer;
}
.cta-btn:hover {
  background-position: right center;
  box-shadow: 0 0 40px rgba(201,168,76,0.5);
}
.price-note {
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--gold-dim);
  margin-top: 12px;
}

/* ─── CANDLES ─── */
.candle-row {
  display: flex; gap: 70px;
  justify-content: center; align-items: flex-end;
  margin-top: 50px; position: relative; z-index: 2;
}
.candle { display: flex; flex-direction: column; align-items: center; position: relative; }
.candle-body {
  width: 24px;
  background: linear-gradient(to right,
    #a89060 0%, #d4be96 18%, #ede0c0 40%,
    #f5eace 50%, #e8d4aa 68%, #c8aa78 85%, #a88850 100%);
  border-radius: 2px 2px 1px 1px;
  position: relative;
  box-shadow: inset -4px 0 8px rgba(0,0,0,0.22), 3px 4px 12px rgba(0,0,0,0.5);
}
.wax-pool {
  position: absolute; top: -5px; left: 50%; transform: translateX(-50%);
  width: 30px; height: 10px;
  background: radial-gradient(ellipse at 50% 60%, #f8ecca, #e8d49a 70%, #c8aa70 100%);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(255,210,100,0.35);
}
.wax-drip {
  position: absolute;
  width: 6px;
  background: linear-gradient(to bottom, #ede0c0, #d4c090);
  border-radius: 0 0 5px 5px;
  opacity: 0.85;
}
.wick {
  width: 2px; height: 11px;
  background: linear-gradient(to bottom, #1a0e06 0%, #3a2414 60%, #2a1810 100%);
  position: absolute; top: -15px; left: 50%;
  transform: translateX(-50%) rotate(2deg);
  border-radius: 1px; z-index: 3;
}
.flame-container {
  position: absolute;
  bottom: 100%; left: 50%; transform: translateX(-50%);
  width: 44px; height: 58px;
  pointer-events: none;
}
.flame-glow {
  position: absolute;
  bottom: 0; left: 50%; transform: translateX(-50%);
  width: 42px; height: 56px;
  background: radial-gradient(ellipse at 50% 85%,
    rgba(255,130,10,0.55) 0%, rgba(255,80,0,0.2) 45%, transparent 72%);
  filter: blur(9px);
  border-radius: 50% 50% 30% 30%;
  animation: flameGlow 2s ease-in-out infinite;
}
.flame-outer {
  position: absolute;
  bottom: 4px; left: 50%;
  transform-origin: 50% 100%;
  transform: translateX(-50%);
  width: 18px; height: 38px;
  background: linear-gradient(to top,
    #e84800 0%, #ff7010 25%, #ffaa30 60%, rgba(255,220,80,0.2) 100%);
  filter: blur(3px);
  border-radius: 50% 50% 30% 30% / 60% 60% 30% 30%;
  animation: flameOuter 1.9s ease-in-out infinite;
}
.flame-mid {
  position: absolute;
  bottom: 6px; left: 50%;
  transform-origin: 50% 100%;
  transform: translateX(-50%);
  width: 11px; height: 28px;
  background: linear-gradient(to top, #ff9000, #ffcc40 55%, #fff090 100%);
  filter: blur(1.8px);
  border-radius: 50% 50% 25% 25% / 60% 60% 25% 25%;
  animation: flameMid 1.6s ease-in-out infinite;
}
.flame-core {
  position: absolute;
  bottom: 8px; left: 50%;
  transform-origin: 50% 100%;
  transform: translateX(-50%);
  width: 5px; height: 16px;
  background: linear-gradient(to top, #fff5c0, #ffffff);
  filter: blur(0.6px);
  border-radius: 50% 50% 20% 20%;
  animation: flameCore 1.35s ease-in-out infinite;
}
.glow-pool {
  width: 64px; height: 16px;
  background: radial-gradient(ellipse,
    rgba(255,180,50,0.22) 0%, rgba(255,140,20,0.08) 55%, transparent 80%);
  filter: blur(3px);
  margin-top: 5px;
  animation: glowPulse 2.2s ease-in-out infinite;
}

/* ─── FOG ─── */
.fog-container {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 160px; overflow: hidden; pointer-events: none; z-index: 1;
}
.fog {
  position: absolute; bottom: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(40,30,15,0.5) 0%, transparent 70%);
  width: 200%; height: 100%;
  left: -50%;
  animation: fogDrift 20s linear infinite;
}

/* ─── SECTIONS ─── */
.section {
  max-width: 780px; margin: 0 auto;
  padding: 80px 30px;
  text-align: center;
  animation: fadeIn 1s ease both;
}
.section-label {
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 20px;
}
.section h2 {
  font-family: 'Grenze Gotisch', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--gold);
  margin-bottom: 24px;
}
.section p {
  font-family: 'Spectral', serif;
  font-size: 1.05rem;
  line-height: 1.95;
  color: var(--parchment2);
  margin-bottom: 18px;
}

/* ─── CHAPTER CARDS ─── */
.chapter-row {
  display: flex; gap: 20px; flex-wrap: wrap;
  justify-content: center; padding: 10px 20px 60px;
}
.chapter-card {
  width: 200px;
  background: rgba(20,14,8,0.9);
  border: 1px solid var(--gold-dim);
  padding: 22px 18px;
  text-align: center;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
  display: block;
}
.chapter-card::before {
  content: '';
  position: absolute; inset: 4px;
  border: 1px solid rgba(201,168,76,0.15);
  pointer-events: none;
}
.chapter-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.6), 0 0 20px rgba(201,168,76,0.1);
}
.chapter-num {
  font-family: 'Cinzel', serif;
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  color: var(--gold-dim);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.chapter-title {
  font-family: 'Spectral', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--parchment);
  line-height: 1.4;
  margin-bottom: 14px;
}
.chapter-status {
  font-family: 'Cinzel', serif;
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 10px;
}
.status-available { color: var(--gold); border: 1px solid var(--gold-dim); }
.status-locked    { color: #555; border: 1px solid #333; }
.lock-icon { display: block; font-size: 1rem; margin-bottom: 6px; opacity: 0.4; }

/* ─── BOOK PAGE ─── */
#reading {
  padding: 60px 20px;
  background: linear-gradient(to bottom, var(--ink), #110c06, var(--ink));
}
.reading-inner { max-width: 680px; margin: 0 auto; }
.reading-label {
  text-align: center;
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 30px;
}
.book-page {
  background: radial-gradient(ellipse at 30% 20%, #f5e8c8, #e8d4a0 40%, #d4bc82 100%);
  border: 1px solid #b8a070;
  box-shadow:
    inset 0 0 60px rgba(120,80,20,0.25),
    inset -8px 0 20px rgba(80,50,10,0.2),
    8px 12px 40px rgba(0,0,0,0.7),
    -2px 4px 20px rgba(0,0,0,0.4);
  padding: 60px 55px;
  position: relative;
  animation: none;
  clip-path: polygon(
    0% 0.3%, 1% 0%, 99% 0.2%, 100% 0.5%,
    99.8% 99%, 100% 100%, 0.5% 99.8%, 0% 99.5%
  );
}
.book-page::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 85% 15%, rgba(120,80,20,0.12) 0%, transparent 30%),
    radial-gradient(circle at 10% 75%, rgba(100,60,20,0.1)  0%, transparent 25%),
    radial-gradient(circle at 60% 90%, rgba(140,90,30,0.08) 0%, transparent 20%);
  pointer-events: none;
}
.book-page::after {
  content: '';
  position: absolute; top: 0; left: 0; bottom: 0;
  width: 35px;
  background: linear-gradient(to right, rgba(80,50,20,0.35), transparent);
  pointer-events: none;
}
.page-chapter-label {
  text-align: center;
  font-family: 'Cinzel', serif;
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #8a6020;
  margin-bottom: 6px;
}
.page-title {
  text-align: center;
  font-family: 'Grenze Gotisch', serif;
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  color: #3d2008;
  margin-bottom: 6px;
  text-shadow: 1px 1px 0 rgba(200,160,80,0.3);
}
.page-subtitle {
  text-align: center;
  font-family: 'Spectral', serif;
  font-style: italic;
  font-size: 0.85rem;
  color: #7a5520;
  margin-bottom: 24px;
}
.page-divider {
  text-align: center; color: #8a6020; font-size: 1rem;
  margin-bottom: 24px; letter-spacing: 0.3em;
}
.page-text {
  font-family: 'Spectral', serif;
  font-size: 1.15rem;
  line-height: 2;
  color: #1c0e04;
  text-align: justify;
  hyphens: auto;
}
.page-text p { margin-bottom: 1.2em; }
.page-text p:first-child::first-letter {
  font-family: 'Grenze Gotisch', serif;
  font-size: 4.2em;
  float: left;
  line-height: 0.7;
  margin: 6px 8px 0 0;
  color: var(--blood);
  text-shadow: 2px 2px 0 rgba(0,0,0,0.15);
}
.page-footer {
  text-align: center;
  margin-top: 30px;
  font-family: 'Cinzel', serif;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: #9a7530;
}
.page-number {
  font-family: 'Spectral', serif;
  font-style: italic;
  font-size: 0.8rem;
  color: #8a6530;
  text-align: center;
  margin-top: 10px;
}

/* ─── SUBSCRIBE SECTION ─── */
#subscribe {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(to bottom, var(--ink), #0a0704);
  position: relative;
}
#subscribe::before {
  content: '';
  position: absolute; top: 0; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-dim), transparent);
}
.price-box {
  display: inline-block;
  border: 1px solid var(--gold-dim);
  padding: 40px 55px;
  position: relative;
  margin: 30px 0;
  background: rgba(20,12,4,0.8);
}
.price-box::before {
  content: '';
  position: absolute; inset: 5px;
  border: 1px solid rgba(201,168,76,0.12);
  pointer-events: none;
}
.price-amount {
  font-family: 'Grenze Gotisch', serif;
  font-size: clamp(2.5rem, 6vw, 3.8rem);
  color: var(--gold);
  display: block;
  animation: shimmer 4s ease-in-out infinite;
}
.price-desc {
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  color: var(--gold-dim);
  text-transform: uppercase;
  display: block;
  margin-top: 4px;
  margin-bottom: 24px;
}
.perks {
  list-style: none;
  font-family: 'Spectral', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--parchment2);
  line-height: 2;
  margin-bottom: 28px;
}
.perks li::before { content: '✦  '; color: var(--gold-dim); font-style: normal; }

/* ─── FORMS & MODALS ─── */
.modal-overlay {
  display: none;
  position: fixed; inset: 0; z-index: 500;
  background: rgba(0,0,0,0.85);
  align-items: center; justify-content: center;
  backdrop-filter: blur(4px);
}
.modal-overlay.open { display: flex; }
.modal {
  background: #0d0906;
  border: 1px solid var(--gold-dim);
  padding: 48px 44px;
  max-width: 400px; width: 90%;
  position: relative;
  animation: fadeIn 0.4s ease;
}
.modal::before {
  content: '';
  position: absolute; inset: 5px;
  border: 1px solid rgba(201,168,76,0.1);
  pointer-events: none;
}
.modal-close {
  position: absolute; top: 16px; right: 18px;
  background: none; border: none; color: var(--gold-dim);
  font-size: 1.1rem; cursor: pointer;
  font-family: 'Cinzel', serif;
}
.modal h3 {
  font-family: 'Grenze Gotisch', serif;
  font-size: 1.8rem;
  color: var(--gold);
  text-align: center;
  margin-bottom: 6px;
}
.modal-subtitle {
  text-align: center;
  font-family: 'Spectral', serif;
  font-style: italic;
  font-size: 0.85rem;
  color: var(--gold-dim);
  margin-bottom: 28px;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 7px;
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid #3a2810;
  border-bottom-color: var(--gold-dim);
  padding: 10px 14px;
  color: var(--parchment);
  font-family: 'Spectral', serif;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--gold); }
.form-group input::placeholder { color: rgba(200,170,100,0.3); }
.form-group textarea { resize: vertical; min-height: 200px; }
.form-submit {
  width: 100%;
  padding: 12px;
  background: linear-gradient(135deg, #c9a84c, #8a6020);
  border: none;
  color: var(--ink);
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.2s;
  margin-top: 8px;
}
.form-submit:hover { opacity: 0.85; }
.form-alt {
  text-align: center;
  margin-top: 18px;
  font-family: 'Spectral', serif;
  font-size: 0.8rem;
  color: #6a5530;
}
.form-alt a { color: var(--gold-dim); text-decoration: none; }
.form-alt a:hover { color: var(--gold); }

/* ─── ALERT / FLASH MESSAGES ─── */
.alert {
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  padding: 12px 18px;
  margin-bottom: 18px;
  border: 1px solid;
  text-align: center;
}
.alert-error   { color: #c04040; border-color: #6b1a1a; background: rgba(107,26,26,0.15); }
.alert-success { color: var(--gold); border-color: var(--gold-dim); background: rgba(201,168,76,0.08); }

/* ─── ADMIN PANEL ─── */
.admin-wrapper {
  max-width: 960px; margin: 100px auto 60px;
  padding: 0 30px;
}
.admin-header {
  font-family: 'Grenze Gotisch', serif;
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 8px;
}
.admin-sub {
  font-family: 'Cinzel', serif;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  color: var(--gold-dim);
  text-transform: uppercase;
  margin-bottom: 40px;
}
.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Spectral', serif;
  font-size: 0.92rem;
}
.admin-table th {
  font-family: 'Cinzel', serif;
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dim);
  border-bottom: 1px solid #2a1e0e;
  padding: 10px 14px;
  text-align: left;
}
.admin-table td {
  padding: 12px 14px;
  border-bottom: 1px solid #1a1208;
  color: var(--parchment2);
  vertical-align: top;
}
.admin-table tr:hover td { background: rgba(201,168,76,0.03); }
.admin-stat-row {
  display: flex; gap: 20px; flex-wrap: wrap; margin-bottom: 40px;
}
.admin-stat {
  flex: 1; min-width: 160px;
  border: 1px solid var(--gold-dim);
  padding: 24px 20px;
  text-align: center;
  background: rgba(20,12,4,0.6);
}
.admin-stat-num {
  font-family: 'Grenze Gotisch', serif;
  font-size: 2.4rem;
  color: var(--gold);
  display: block;
}
.admin-stat-label {
  font-family: 'Cinzel', serif;
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dim);
}
.btn-sm {
  font-family: 'Cinzel', serif;
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border: 1px solid var(--gold-dim);
  color: var(--gold-dim);
  background: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
  margin-right: 4px;
}
.btn-sm:hover { color: var(--gold); border-color: var(--gold); }
.btn-sm.danger { border-color: #6b1a1a; color: #c04040; }
.btn-sm.danger:hover { background: rgba(107,26,26,0.2); }

/* ─── MEMBERSHIP PAGE ─── */
.membership-box {
  max-width: 580px; margin: 120px auto 60px;
  border: 1px solid var(--gold-dim);
  padding: 50px 45px;
  background: rgba(20,12,4,0.8);
  position: relative;
}
.membership-box::before {
  content: '';
  position: absolute; inset: 5px;
  border: 1px solid rgba(201,168,76,0.1);
  pointer-events: none;
}

/* ─── FOOTER ─── */
footer {
  padding: 40px 30px;
  text-align: center;
  border-top: 1px solid #1a1208;
}
.footer-logo {
  font-family: 'Grenze Gotisch', serif;
  font-size: 1.6rem;
  color: var(--gold-dim);
  margin-bottom: 10px;
}
footer p {
  font-family: 'Cinzel', serif;
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  color: #3a2c18;
  text-transform: uppercase;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 600px) {
  nav { padding: 12px 20px; }
  .nav-links { display: none; }
  .book-page { padding: 36px 24px; }
  .admin-wrapper { margin-top: 80px; }
  .price-box { padding: 30px 24px; }
}
