:root {
  --bg: #09060d;
  --bg-soft: #130c17;
  --panel: rgba(24, 17, 29, 0.94);
  --text: #f3e7d0;
  --muted: #bfa98a;
  --gold: #d0a35a;
  --gold-light: #f1d5a7;
  --red: #7c1f2a;
  --red-light: #aa3341;
  --line: rgba(208, 163, 90, 0.2);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --radius: 24px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.7;
  background:
    radial-gradient(circle at 15% 0%, rgba(170, 51, 65, 0.14), transparent 25%),
    radial-gradient(circle at 86% 8%, rgba(105, 84, 140, 0.12), transparent 24%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 48%, var(--bg) 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.07;
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(transparent 96%, rgba(255, 255, 255, 0.03) 100%);
  background-size: 4px 4px, 100% 6px;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.wrap {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.btn {
  display: inline-block;
  padding: 14px 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(208, 163, 90, 0.48);
}

.btn-primary {
  color: #fff7ec;
  background: linear-gradient(135deg, var(--red), var(--red-light));
  box-shadow: var(--shadow);
}

.btn-secondary {
  color: var(--gold-light);
  background: rgba(255, 255, 255, 0.03);
}

.hero {
  position: relative;
  display: grid;
  min-height: 100vh;
  align-items: center;
  overflow: hidden;
}

.hero-bg,
.hero-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-bg {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.72)),
    var(--tome-panorama) center / cover no-repeat;
  transform: scale(1.05);
}

.hero-glow {
  background:
    radial-gradient(circle at 20% 30%, rgba(208, 163, 90, 0.09), transparent 25%),
    radial-gradient(circle at 70% 22%, rgba(170, 51, 65, 0.12), transparent 30%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 32px;
  align-items: center;
  padding: 70px 0 40px;
}

.eyebrow,
.kicker {
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0 0 16px;
  line-height: 1.08;
}

h1 {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  text-wrap: balance;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  text-wrap: balance;
}

h3 {
  color: var(--gold-light);
  font-size: 1.28rem;
}

.release {
  margin-top: 10px;
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.08em;
}

.release strong {
  color: var(--gold-light);
}

.lead {
  max-width: 42rem;
  color: #f0e5d5;
  font-size: 1.22rem;
}

.sublead {
  max-width: 38rem;
  margin-top: 14px;
  color: var(--gold-light);
  font-size: 1.08rem;
  font-style: italic;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.hero-note {
  max-width: 35rem;
  margin-top: 18px;
  padding-left: 14px;
  border-left: 2px solid rgba(208, 163, 90, 0.38);
  color: #dbc8aa;
}

.cover-card {
  margin: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(23, 17, 29, 0.96), rgba(12, 8, 16, 0.97));
  box-shadow: var(--shadow);
}

.cover {
  position: relative;
  overflow: hidden;
  aspect-ratio: 2 / 3;
  border: 1px solid rgba(208, 163, 90, 0.18);
  border-radius: 18px;
  background: linear-gradient(135deg, #2d2037, #0e0913 72%);
}

.cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.book-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 16px;
}

.book-meta div {
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.book-meta small {
  display: block;
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.book-meta strong {
  color: var(--gold-light);
  font-size: 0.94rem;
}

.section {
  padding: 54px 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 26px;
}

.section-head p {
  color: var(--muted);
}

.quote {
  padding: 29px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--gold-light);
  background: linear-gradient(90deg, rgba(170, 52, 66, 0.12), rgba(208, 163, 90, 0.05), rgba(83, 75, 120, 0.1));
  font-size: clamp(1.25rem, 2.3vw, 1.55rem);
  font-style: italic;
  text-align: center;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
}

.panel {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
}

.panel p {
  margin-bottom: 0;
  color: #dfd1bb;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.theme-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.theme-list span {
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.02);
  font-size: 0.9rem;
}

.work-note {
  padding: 28px;
  border: 1px solid rgba(208, 163, 90, 0.3);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 100% 0%, rgba(208, 163, 90, 0.1), transparent 30%),
    linear-gradient(135deg, rgba(124, 31, 42, 0.17), rgba(18, 12, 22, 0.96));
  box-shadow: var(--shadow);
}

.work-note p:last-child {
  margin-bottom: 0;
}

.cta-final {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.01));
  text-align: center;
}

.cta-final p {
  max-width: 690px;
  margin: 0 auto;
  color: var(--muted);
}

.cta-final .cta-actions {
  justify-content: center;
}

.site-footer {
  padding: 35px 16px 48px;
  color: var(--muted);
  text-align: center;
}

@media (max-width: 960px) {
  .hero-inner,
  .story-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
