/* ═══════════════════════════════════════════════════════
   MOSKITO — saga.css
═══════════════════════════════════════════════════════ */

/* ── PAGE HERO ── */
#saga-hero {
  background: var(--void);
  padding-top: 140px;
  padding-bottom: 80px;
  position: relative;
}
#saga-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(122,12,12,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.saga-hero-inner {
  position: relative; z-index: 1;
  max-width: var(--inner-max);
  margin: 0 auto;
  padding: 0 var(--inner-pad);
}
.saga-hero-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 900;
  letter-spacing: 0.04em;
  color: var(--parchment);
  line-height: 1.15;
  margin-bottom: 20px;
  max-width: 800px;
}
.saga-hero-sub {
  font-size: clamp(17px, 1.3vw, 20px);
  font-style: italic;
  font-weight: 300;
  color: var(--ash);
  line-height: 1.7;
  max-width: 520px;
}

/* ── VOLUME SECTIONS ── */
.volume-section {
  position: relative;
  min-height: 80vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.vol-section-alt { direction: rtl; }
.vol-section-alt > * { direction: ltr; }

/* Cover column — full-bleed art */
.vol-cover-col {
  position: relative;
  overflow: hidden;
}
.vol-cover {
  position: absolute; inset: 0;
  background-image: var(--cover-img);
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position: center center;
  transform: scale(1.04);
  transition: transform 0.6s ease;
}
.vol-section-alt .vol-cover {
  background-position: center center;
}
.volume-section:hover .vol-cover {
  transform: scale(1.0);
}
.vol-cover-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right,
    transparent 0%,
    rgba(6,7,9,0.3) 60%,
    rgba(6,7,9,0.9) 100%
  );
}
.vol-section-alt .vol-cover-overlay {
  background: linear-gradient(to left,
    transparent 0%,
    rgba(6,7,9,0.3) 60%,
    rgba(6,7,9,0.9) 100%
  );
}

/* Vol III placeholder */
.vol-cover-placeholder-col {
  background: var(--dusk);
  display: flex;
  align-items: center;
  justify-content: center;
}
.vol-cover-placeholder-frame {
  position: absolute; inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--iron);
  z-index: 1;
}
.vol-cover-placeholder-frame p {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ash);
  text-align: center;
  line-height: 1.7;
}
.vol-cover-placeholder-frame p span {
  display: block;
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--gold-dim);
  margin-top: 8px;
}

/* Content column */
.vol-content-col {
  background: var(--abyss);
  display: flex;
  align-items: center;
}
.vol-section-alt .vol-content-col {
  background: var(--shadow);
}
.vol-inner {
  padding-top: clamp(60px, 8vw, 100px);
  padding-bottom: clamp(60px, 8vw, 100px);
}
.vol-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--parchment);
  margin-bottom: 28px;
  line-height: 1.0;
}

/* Weighted closing line — same treatment as the Blackrobe reflection closings.
   Specificity must beat .body-copy p (which also targets this element). */
.body-copy p.vol-closing-line {
  font-family: var(--font-display);
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--parchment);
  text-transform: uppercase;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--iron);
  max-width: 560px;
}

/* ── VOL 3 RAIN TEASER ── */
.vol-cover-placeholder-col {
  background: #000;
  position: relative;
  overflow: hidden;
}
.vol3-rain {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.vol3-teaser {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
  gap: 0;
}
.vol3-eyebrow {
  font-family: var(--font-display);
  font-size: clamp(11px, 1vw, 14px);
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: rgba(232,224,208,0.5);
  margin-bottom: 12px;
}
.vol3-numeral {
  font-family: var(--font-display);
  font-size: clamp(56px, 7vw, 100px);
  font-weight: 900;
  letter-spacing: 0.08em;
  color: #8B0000;
  line-height: 1;
  margin-bottom: 8px;
  text-shadow: 0 0 40px rgba(139,0,0,0.6), 0 0 80px rgba(139,0,0,0.3);
}
.vol3-title-text {
  font-family: var(--font-display);
  font-size: clamp(13px, 1.4vw, 18px);
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--parchment);
  margin-bottom: 24px;
}
.vol3-rule-line {
  width: 40px;
  height: 1px;
  background: rgba(139,0,0,0.6);
  margin: 0 auto 20px;
}
.vol3-tagline {
  font-family: 'Crimson Pro', Georgia, serif;
  font-style: italic;
  font-size: clamp(12px, 1.1vw, 15px);
  color: rgba(232,224,208,0.55);
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  max-width: 260px;
  text-align: center;
  line-height: 1.5;
}
.vol3-coming {
  font-family: var(--font-ui);
  font-size: clamp(9px, 0.8vw, 11px);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(232,224,208,0.35);
}

/* ── WHERE TO BEGIN ── */
#where-to-begin {
  background: var(--void);
  position: relative;
}
#where-to-begin::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, var(--iron) 30%, var(--iron) 70%, transparent);
}
.begin-inner { text-align: center; }
.begin-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 36px;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .volume-section {
    grid-template-columns: 1fr;
    min-height: unset;
  }
  .vol-section-alt { direction: ltr; }
  .vol-cover-col {
    height: 50vw;
    min-height: 240px;
  }
  .vol-cover { transform: none; background-size: auto 110%; background-position: center center; }
  .vol-cover-overlay {
    background: linear-gradient(to bottom,
      transparent 0%, rgba(6,7,9,0.85) 100%
    ) !important;
  }
  .vol-section-alt .vol-cover {
    background-position: center center;
  }
}
