/* ============================================================
   Sherlock Holmes Series Launch Site: Victorian Gaslit
   Fonts: Playfair Display (display), EB Garamond (body)
   Palette: midnight navy, old gold, fog amber, sepia paper
   ============================================================ */

:root {
  --ink-bg:      #07090e;
  --ink-2:       #0d1018;
  --ink-3:       #141822;
  --paper:       #f6f1e2;
  --paper-2:     #ede2c8;
  --paper-line:  #d8c9a0;
  --gold:        #c9a438;
  --gold-soft:   #e4c672;
  --gold-dim:    #8c6e24;
  --amber:       #b8801e;
  --amber-soft:  #d49c42;
  --fog:         #7b9eb0;
  --fog-2:       #9cb8ca;
  --muted:       #8a7a60;
  --muted-2:     #6a5e48;
  --text:        #ede0c8;
  --text-2:      #d4c49e;
  --text-3:      #a09068;

  --font-display: "Playfair Display", "Times New Roman", Georgia, serif;
  --font-body:    "EB Garamond", "Garamond", Georgia, serif;
  --font-italic:  "EB Garamond", "Garamond", Georgia, serif;

  --radius:      4px;
  --radius-lg:   8px;
  --max-w:       1080px;
  --section-gap: 100px;
}

/* ---- Reset & Base ----------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: radial-gradient(130% 90% at 12% 6%, #111420 0%, #07090e 55%, #040506 100%);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  min-height: 100vh;
}

/* Grain overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: .055;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Gaslight glow upper-left */
body::after {
  content: "";
  position: fixed;
  top: -12vh;
  left: -8vw;
  width: 55vw;
  height: 55vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,164,56,.07) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ---- Typography ------------------------------------------- */
h1, h2, h3 { font-family: var(--font-display); font-weight: 700; line-height: 1; }
a { color: var(--gold-soft); text-decoration: none; }
a:hover { color: var(--fog); }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
strong { font-weight: 700; }

/* ---- Utility ---------------------------------------------- */
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ---- Layout shells ---------------------------------------- */
.section-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}
.section-inner--narrow { max-width: 680px; }

.section-header { text-align: center; margin-bottom: 54px; }
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 30px);
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin: 0 0 10px;
}
.section-sub {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 18px;
  color: var(--muted);
  margin: 0;
}

/* ---- Site header ------------------------------------------ */
.site-header {
  position: relative;
  z-index: 10;
  border-bottom: 1px solid rgba(201,164,56,.1);
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 16px 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.header-brand {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--muted);
}
.header-brand:hover { color: var(--gold-soft); }
.header-demo-badge {
  font-family: var(--font-display);
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  background: rgba(184,128,30,.2);
  color: var(--amber-soft);
  border: 1px solid rgba(184,128,30,.35);
  border-radius: 2px;
  padding: 2px 7px;
}

/* ---- Inspect hint ----------------------------------------- */
.inspect-hint {
  position: relative;
  z-index: 1;
  text-align: center;
  font-size: 12px;
  letter-spacing: .07em;
  color: var(--muted-2);
  text-transform: uppercase;
  padding: 18px 28px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.inspect-hint strong { color: var(--gold-soft); font-weight: 500; }
.hint-seal-example {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, var(--gold-soft), var(--gold) 60%, var(--gold-dim));
  color: #2a1d09;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 10px;
  box-shadow: 0 0 0 3px rgba(201,164,56,.2);
  animation: seal-pulse 2.8s ease-in-out infinite;
  flex-shrink: 0;
}
.hint-seal-example::after { content: "i"; transform: translateY(-1px); }

/* ---- Inspectable affordance ------------------------------- */
.inspectable {
  position: relative;
  cursor: pointer;
  transition: filter .35s, transform .35s;
}
.inspectable:focus-visible {
  outline: 2px solid var(--gold-soft);
  outline-offset: 4px;
  border-radius: var(--radius);
}
.inspectable:hover { filter: drop-shadow(0 0 20px rgba(201,164,56,.22)); }

.seal {
  position: absolute;
  top: -12px;
  right: -12px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, var(--gold-soft), var(--gold) 60%, var(--gold-dim));
  color: #2a1d09;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  box-shadow: 0 2px 10px rgba(0,0,0,.55), inset 0 1px 1px rgba(255,255,255,.45);
  animation: seal-pulse 2.6s ease-in-out infinite;
  pointer-events: none;
  transition: transform .3s;
}
.seal::after { content: "i"; transform: translateY(-1px); display: block; }
.inspectable:hover .seal,
.inspectable:focus-visible .seal { transform: scale(1.15); }

@keyframes seal-pulse {
  0%, 100% { box-shadow: 0 2px 10px rgba(0,0,0,.55), 0 0 0 0 rgba(201,164,56,.55); }
  50% { box-shadow: 0 2px 10px rgba(0,0,0,.55), 0 0 0 8px rgba(201,164,56,0); }
}

/* ---- Dim + spotlight -------------------------------------- */
.scrim {
  position: fixed;
  inset: 0;
  background: radial-gradient(ellipse at 50% 44%, rgba(10,10,16,.6), rgba(3,3,6,.94));
  opacity: 0;
  pointer-events: none;
  transition: opacity .42s;
  z-index: 40;
}
body.dimmed .scrim {
  opacity: 1;
  pointer-events: auto;
}
body.dimmed main,
body.dimmed .site-header,
body.dimmed .inspect-hint,
body.dimmed .site-footer {
  filter: brightness(.3) saturate(.6);
  transition: filter .42s;
}
.inspectable.is-active { filter: none !important; }

.explain-card {
  position: fixed;
  z-index: 50;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -46%) scale(.95);
  width: min(600px, 94vw);
  max-height: 88vh;
  overflow: auto;
  opacity: 0;
  pointer-events: none;
  transition: opacity .42s, transform .42s;
  background: linear-gradient(175deg, #fdf7e8 0%, #f3e8ce 100%);
  color: #352a16;
  border-radius: var(--radius-lg);
  border: 1px solid #ccb68a;
  box-shadow:
    0 0 0 1px rgba(201,164,56,.35),
    0 50px 100px rgba(0,0,0,.75),
    0 0 80px rgba(201,164,56,.15);
  padding: 36px 36px 32px;
}
body.dimmed .explain-card.active {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}
.explain-close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  font-size: 26px;
  line-height: 1;
  color: #9a8154;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background .2s, color .2s;
}
.explain-close:hover { background: rgba(184,128,30,.1); color: var(--amber); }
.explain-label {
  font-family: var(--font-display);
  letter-spacing: .22em;
  font-size: 9.5px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 6px;
}
.explain-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(18px, 3vw, 24px);
  margin: 0 0 14px;
  color: #241806;
  line-height: 1.15;
}
.explain-body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: #4a3a1c;
  margin: 0 0 18px;
}
.smmb-card {
  background: #fff;
  border: 1px solid #d8c39a;
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 14px 18px;
  margin: 0 0 12px;
}
/* Book 2 receipt: fog-blue left border to distinguish from Book 1 */
.smmb-card--book2 {
  border-left-color: var(--fog);
}
.smmb-src {
  font-family: var(--font-display);
  font-size: 9px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #9a7f4c;
  margin-bottom: 8px;
}
.smmb-quote {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 17px;
  line-height: 1.55;
  color: #4a3a1c;
}
/* Consistency note: bridge text between the two receipts */
.consistency-note {
  font-size: 13px;
  color: #6a7a5c;
  border-left: 2px solid rgba(123,158,176,.4);
  padding: 6px 12px;
  margin: 0 0 12px;
  font-style: italic;
  line-height: 1.6;
}
.explain-rejected {
  font-size: 14px;
  color: #7a5a24;
  border-top: 1px dashed #ccb587;
  padding-top: 14px;
  line-height: 1.55;
}
.explain-rejected strong { color: #5e3a12; }
.placeholder-note {
  display: block;
  font-style: italic;
  font-size: 12px;
  color: #9a8154;
  margin-top: 6px;
}

/* ---- Series hero ------------------------------------------ */
.series-hero {
  position: relative;
  z-index: 1;
  padding: 56px 0 0;
}
.series-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}
.series-kicker {
  font-family: var(--font-display);
  letter-spacing: .34em;
  font-size: 10px;
  color: var(--amber);
  text-transform: uppercase;
  margin-bottom: 18px;
  text-align: center;
}
.series-title-wrap { text-align: center; margin-bottom: 40px; }
.series-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(36px, 9vw, 90px);
  line-height: .92;
  color: #f0e6cc;
  letter-spacing: .03em;
  margin: 0;
}
.series-subtitle {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: clamp(18px, 2.5vw, 26px);
  color: var(--gold-soft);
  margin: 12px 0 0;
  font-weight: 400;
}

/* Hero key-art image */
.hero-art-wrap {
  position: relative;
  width: 100%;
  max-width: 820px;
  margin: 0 auto 0;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
  background: var(--ink-3);
  aspect-ratio: 16 / 7;
  box-shadow:
    0 -20px 60px rgba(201,164,56,.06),
    0 30px 80px rgba(0,0,0,.7);
}
.hero-art {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  filter: sepia(.08) contrast(1.04);
}
.hero-art-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(7,9,14,.4) 0%,
    rgba(7,9,14,.1) 40%,
    rgba(7,9,14,.05) 70%,
    rgba(7,9,14,.65) 100%
  );
  pointer-events: none;
}

/* ---- Collection intro ------------------------------------- */
.collection-intro {
  position: relative;
  z-index: 1;
  padding: var(--section-gap) 0;
}
.collection-body {
  max-width: 660px;
  margin: 0 auto;
  text-align: center;
  font-size: 18px;
  line-height: 1.72;
  color: var(--text-2);
}

/* ---- Persistent Canon band -------------------------------- */
.persistent-canon {
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, rgba(14,16,24,.8) 0%, rgba(10,12,18,.9) 100%);
  border-top: 1px solid rgba(201,164,56,.12);
  border-bottom: 1px solid rgba(201,164,56,.12);
  padding: var(--section-gap) 0;
}
.persistent-canon-header {
  text-align: center;
  margin-bottom: 54px;
}
.persistent-canon-kicker {
  font-family: var(--font-display);
  font-size: 9px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--fog);
  margin-bottom: 8px;
}
.entity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 24px;
}
@media (max-width: 600px) {
  .entity-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
.entity-card {
  background: linear-gradient(160deg, rgba(22,26,38,.85), rgba(12,14,20,.95));
  border: 1px solid rgba(201,164,56,.18);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color .3s, transform .3s;
}
.entity-card:hover {
  border-color: rgba(201,164,56,.45);
  transform: translateY(-3px);
}
.entity-portrait-wrap {
  aspect-ratio: 3 / 3.8;
  overflow: hidden;
  background: var(--ink-3);
  display: flex;
  align-items: center;
  justify-content: center;
}
.entity-portrait {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  filter: sepia(.25) contrast(1.05);
  transition: filter .4s, transform .4s;
}
.entity-card:hover .entity-portrait {
  filter: sepia(.1) contrast(1.1);
  transform: scale(1.03);
}
.entity-monogram {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, rgba(201,164,56,.25), rgba(201,164,56,.08));
  border: 1px solid rgba(201,164,56,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--gold-soft);
}
.entity-info {
  padding: 14px 16px 18px;
}
.entity-books-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 8px;
  letter-spacing: .2em;
  text-transform: uppercase;
  background: rgba(123,158,176,.12);
  color: var(--fog);
  border: 1px solid rgba(123,158,176,.3);
  border-radius: 2px;
  padding: 2px 7px;
  margin-bottom: 8px;
}
.entity-name {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--gold-soft);
  margin: 0 0 4px;
  line-height: 1.2;
}
.entity-tagline {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 13px;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

/* ---- Book sections ---------------------------------------- */
.book-section {
  position: relative;
  z-index: 1;
  padding: var(--section-gap) 0;
}
.book-section + .book-section {
  border-top: 1px solid rgba(201,164,56,.1);
}
.book-number-kicker {
  font-family: var(--font-display);
  font-size: 9px;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 10px;
}
.book-title-line {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(24px, 5vw, 48px);
  color: #f0e6cc;
  letter-spacing: .04em;
  margin: 0 0 4px;
  line-height: 1;
}
.book-year {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 16px;
  color: var(--muted);
  margin: 0 0 40px;
}

/* Book layout: cover col + content col */
.book-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 720px) {
  .book-layout { grid-template-columns: 1fr; gap: 32px; }
}

/* Book cover plate */
.cover-plate {
  aspect-ratio: 3 / 4.4;
  border-radius: 3px;
  overflow: hidden;
  background: #0e1018;
  box-shadow:
    0 30px 70px rgba(0,0,0,.65),
    inset 0 0 0 1px rgba(201,164,56,.22);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px 16px 14px;
  position: relative;
}
.cover-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  z-index: 0;
}
.cover-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(7,9,14,.8) 0%,
    rgba(7,9,14,.5) 28%,
    rgba(7,9,14,.15) 55%,
    rgba(7,9,14,.0) 80%,
    rgba(7,9,14,.28) 100%
  );
  pointer-events: none;
}
.cover-gaslight {
  position: absolute;
  left: 50%;
  top: 22%;
  width: 3px;
  height: 32%;
  transform: translateX(-50%);
  background: linear-gradient(to bottom, transparent, rgba(201,164,56,.5), rgba(228,198,114,.9), rgba(201,164,56,.5), transparent);
  opacity: .55;
  filter: blur(.8px);
  box-shadow: 0 0 18px rgba(201,164,56,.6);
  z-index: 2;
}
.cover-top {
  font-family: var(--font-display);
  letter-spacing: .2em;
  font-size: 9px;
  color: var(--gold-soft);
  text-align: center;
  position: relative;
  z-index: 2;
}
.cover-mid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 2;
}
.cover-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(15px, 3vw, 20px);
  color: #f0e3c6;
  letter-spacing: .07em;
  text-align: center;
  text-shadow: 0 1px 3px rgba(0,0,0,.9), 0 2px 18px rgba(0,0,0,.8);
}
.cover-subtitle {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 10px;
  color: var(--muted);
  letter-spacing: .02em;
  text-align: center;
}

/* Cast grid within book section */
.cast-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 18px;
  margin-bottom: 36px;
}
@media (max-width: 600px) {
  .cast-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}
.cast-card {
  background: linear-gradient(160deg, rgba(22,26,38,.8), rgba(12,14,20,.9));
  border: 1px solid rgba(201,164,56,.18);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color .3s, transform .3s;
}
.cast-card:hover {
  border-color: rgba(201,164,56,.45);
  transform: translateY(-3px);
}
.cast-portrait-wrap {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--ink-3);
}
.cast-portrait {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  filter: sepia(.2) contrast(1.05);
  transition: filter .4s, transform .4s;
}
.cast-card:hover .cast-portrait {
  filter: sepia(0) contrast(1.1);
  transform: scale(1.03);
}
.cast-info {
  padding: 12px 14px 16px;
}
.cast-name {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .09em;
  color: var(--gold-soft);
  margin: 0 0 2px;
  line-height: 1.2;
}
.cast-role {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 12px;
  color: var(--amber-soft);
  margin: 0 0 6px;
}
.cast-desc {
  font-size: 12px;
  line-height: 1.55;
  color: var(--text-3);
  margin: 0;
}

/* Distinct-canon annotation rows within book section */
.distinct-canon {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.distinct-item {
  background: linear-gradient(160deg, rgba(22,26,38,.7), rgba(12,14,20,.8));
  border: 1px solid rgba(201,164,56,.15);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
}
.distinct-label {
  font-family: var(--font-display);
  font-size: 9px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 8px;
}
.distinct-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--gold-soft);
  margin: 0 0 6px;
  line-height: 1.2;
}
.distinct-desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-2);
  margin: 0;
}

/* ---- Trailer placeholder ---------------------------------- */
.trailer-placeholder {
  max-width: 700px;
  margin: 0 auto;
  border: 1px solid rgba(201,164,56,.2);
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(18,20,30,.9), rgba(9,10,16,.95));
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
}
.trailer-inner {
  text-align: center;
  padding: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.trailer-icon { opacity: .7; }
.trailer-label {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin: 0;
}
.trailer-sub {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 15px;
  color: var(--muted);
  max-width: 38ch;
  margin: 0;
}
.staged-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  background: rgba(123,158,176,.12);
  color: var(--fog);
  border: 1px solid rgba(123,158,176,.3);
  border-radius: 2px;
  padding: 4px 10px;
}

/* ---- Social pack ------------------------------------------ */
.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}
.social-frame {
  background: linear-gradient(160deg, rgba(22,26,38,.85), rgba(12,14,20,.9));
  border: 1px solid rgba(201,164,56,.18);
  border-radius: var(--radius-lg);
  padding: 20px 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.social-frame-label {
  font-family: var(--font-display);
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.social-copy {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 16px;
  line-height: 1.5;
  color: var(--text);
  margin: 0;
}
.social-copy-sub {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}

/* ---- Join the list ---------------------------------------- */
.join-form-wrap {
  background: linear-gradient(160deg, rgba(22,26,38,.8), rgba(12,14,20,.9));
  border: 1px solid rgba(201,164,56,.22);
  border-radius: var(--radius-lg);
  padding: 40px 36px 36px;
}
@media (max-width: 480px) {
  .join-form-wrap { padding: 28px 20px 24px; }
}
.join-form { display: flex; flex-direction: column; gap: 0; }
.join-fields { display: flex; gap: 10px; flex-wrap: wrap; }
.join-input {
  flex: 1;
  min-width: 200px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(201,164,56,.3);
  border-radius: 2px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  padding: 12px 16px;
  outline: none;
  transition: border-color .2s, background .2s;
}
.join-input:focus {
  border-color: rgba(201,164,56,.7);
  background: rgba(255,255,255,.09);
}
.join-input::placeholder { color: var(--muted-2); }
.btn-join { flex-shrink: 0; }
.join-note { font-size: 12px; color: var(--muted-2); margin: 10px 0 0; }
.join-thanks { text-align: center; padding: 10px 0; }
.join-thanks-msg {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 17px;
  color: var(--gold-soft);
  margin: 0;
}

/* ---- Buttons ---------------------------------------------- */
.btn {
  font-family: var(--font-display);
  letter-spacing: .14em;
  font-size: 12px;
  text-transform: uppercase;
  padding: 13px 28px;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: filter .2s, transform .15s, background .2s;
  line-height: 1;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(180deg, var(--gold-soft), var(--gold));
  color: #241806;
  box-shadow: 0 8px 24px rgba(0,0,0,.4), 0 2px 6px rgba(0,0,0,.3);
}
.btn-primary:hover { filter: brightness(1.08); }
.btn-ghost {
  background: transparent;
  color: var(--gold-soft);
  border: 1px solid rgba(201,164,56,.5);
}
.btn-ghost:hover { background: rgba(201,164,56,.07); }

/* ---- Section dividers ------------------------------------- */
section + section { border-top: 1px solid rgba(201,164,56,.1); }
section { padding: var(--section-gap) 0; }

/* ---- Footer ----------------------------------------------- */
.site-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(201,164,56,.12);
  padding: 40px 0 48px;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
.disclaimer {
  font-size: 12px;
  line-height: 1.7;
  color: var(--muted-2);
  max-width: 720px;
  margin: 0;
}
.footer-back { font-size: 12px; color: var(--muted-2); margin: 0; }

/* ---- Responsive ------------------------------------------- */
@media (max-width: 600px) {
  :root { --section-gap: 64px; }
  .series-hero { padding: 36px 0 0; }
  .social-grid { grid-template-columns: 1fr; }
  .book-layout { grid-template-columns: 1fr; }
  .hero-art-wrap { aspect-ratio: 4 / 3; }
}