@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Noto+Serif:wght@400;600;700&display=swap');

:root {
  --black: #120d09;
  --charcoal: #2c2118;
  --smoke: #4b3423;
  --ivory: #fff3dd;
  --muted: #ead2ad;
  --gold: #efc46d;
  --gold-deep: #b98235;
  --blood: #8e1515;
  --blood-bright: #c52a22;
  --line: rgba(239, 196, 109, 0.48);
  --shadow: 0 24px 60px rgba(35, 18, 8, 0.38);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  color: var(--ivory);
  background:
    radial-gradient(circle at 78% 4%, rgba(255, 190, 92, 0.52), transparent 34rem),
    radial-gradient(circle at 18% 0%, rgba(255, 118, 54, 0.35), transparent 28rem),
    radial-gradient(circle at 50% 45%, rgba(237, 138, 53, 0.35), transparent 38rem),
    linear-gradient(180deg,
      #1c2d43 0%,
      #314963 20%,
      #745133 47%,
      #c77b33 74%,
      #f0bc68 100%);
  background-attachment: fixed;
  font-family: 'Noto Serif', Georgia, serif;
  line-height: 1.75;
  -webkit-text-size-adjust: 100%;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(8, 14, 24, 0.18), rgba(83, 38, 13, 0.10)),
    linear-gradient(rgba(255,255,255,0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: auto, 42px 42px, 42px 42px;
  opacity: 0.32;
}

img { max-width: 100%; height: auto; }

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

a:hover { color: #ffe09a; }

.site-header {
  padding: 34px 16px 26px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg,
      rgba(25, 39, 58, 0.92),
      rgba(91, 54, 28, 0.76));
  box-shadow: 0 14px 34px rgba(30, 13, 5, 0.22);
}

.header-inner {
  width: min(1080px, 100%);
  margin: 0 auto;
  text-align: center;
}

.imprint {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.site-header h1 {
  margin: 0;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.6rem, 7.2vw, 5.5rem);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-shadow: 0 0 22px rgba(255, 203, 111, 0.30), 0 3px 12px rgba(0,0,0,0.45);
}

.subtitle {
  margin: 16px 0 0;
  color: var(--muted);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.22rem, 3vw, 1.85rem);
  letter-spacing: 0.06em;
}

.author {
  margin: 8px 0 18px;
  letter-spacing: 0.08em;
}

.top-nav a {
  display: inline-block;
  padding: 7px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 245, 220, 0.08);
  letter-spacing: 0.12em;
  font-size: 0.86rem;
}

.top-nav a:hover {
  background: rgba(255, 235, 185, 0.16);
}

main {
  width: min(1080px, calc(100% - 28px));
  margin: 34px auto 0;
}

.hero-card,
.story-section,
.details-section,
.amazon-section {
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg,
      rgba(59, 47, 37, 0.86),
      rgba(108, 68, 35, 0.70));
  box-shadow: var(--shadow);
  backdrop-filter: blur(2px);
}

.hero-card {
  display: grid;
  grid-template-columns: minmax(250px, 0.9fr) minmax(280px, 1.1fr);
  gap: 42px;
  align-items: center;
  padding: clamp(24px, 4vw, 48px);
  border-radius: 28px;
  position: relative;
  overflow: hidden;
}

.hero-card::after {
  content: '';
  position: absolute;
  inset: -30%;
  background:
    radial-gradient(circle at 82% 22%, rgba(255, 192, 85, 0.26), transparent 26rem),
    radial-gradient(circle at 12% 88%, rgba(142, 21, 21, 0.18), transparent 22rem);
  pointer-events: none;
}

.cover-area,
.info-area { position: relative; z-index: 1; }

.cover-area { text-align: center; }

.book-cover {
  width: min(360px, 88%);
  border-radius: 8px;
  box-shadow: 0 28px 52px rgba(39, 18, 8, 0.55);
}

.series-label {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.info-area h2,
.story-section h2,
.detail-card h2,
.amazon-section h2 {
  color: var(--ivory);
  font-family: 'Cormorant Garamond', Georgia, serif;
  line-height: 1.02;
}

.info-area h2 {
  margin: 0;
  font-size: clamp(2.35rem, 5.6vw, 4.6rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-shadow: 0 3px 16px rgba(0,0,0,0.42);
}

.info-area h2 span { color: #d33228; }

.lead {
  margin: 22px 0 28px;
  color: var(--muted);
  font-size: 1.08rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.25);
}

.warning-box {
  padding: 20px 22px;
  border: 1px solid rgba(197, 42, 34, 0.70);
  border-left: 5px solid var(--blood-bright);
  background: rgba(96, 18, 13, 0.20);
  box-shadow: inset 0 0 20px rgba(255, 195, 93, 0.05);
}

.warning {
  margin: 0;
  color: #ffe09a;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  font-style: italic;
}

.story-section {
  margin-top: 24px;
  padding: clamp(28px, 5vw, 62px);
  border-radius: 28px;
}

.story-section h2,
.amazon-section h2 {
  margin: 0 0 24px;
  text-align: center;
  font-size: clamp(2rem, 4vw, 3.15rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.story-section h2::after,
.amazon-section h2::after {
  content: '';
  display: block;
  width: 86px;
  height: 1px;
  margin: 17px auto 0;
  background: var(--gold);
}

.story-section p {
  max-width: 820px;
  margin: 0 auto 1.15em;
  color: #fff0d2;
  font-size: 1.03rem;
}

.story-section .quote {
  color: #d33228;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.75rem, 4vw, 2.55rem);
  font-style: italic;
  text-align: center;
  letter-spacing: 0.04em;
}

.details-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 24px;
  border-radius: 28px;
  overflow: hidden;
}

.detail-card {
  padding: clamp(26px, 4vw, 46px);
}

.detail-card + .detail-card { border-left: 1px solid var(--line); }

.detail-card h2 {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: clamp(1.9rem, 3.5vw, 2.7rem);
}

.detail-card p {
  margin: 0 0 0.55em;
  color: #fff0d2;
}

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

.amazon-section {
  margin-top: 24px;
  padding: 30px clamp(18px, 3vw, 40px) 36px;
  border-radius: 28px;
}

.amazon-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(135px, 1fr));
  gap: 10px;
}

.amazon-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 8px 10px;
  border: 1px solid rgba(239, 196, 109, 0.58);
  border-radius: 999px;
  background: rgba(255, 245, 225, 0.10);
  color: var(--ivory);
  font-size: 0.92rem;
}

.amazon-links a:hover {
  border-color: var(--gold);
  background: rgba(255, 224, 154, 0.18);
}

.amazon-links img { width: 26px; flex: 0 0 auto; }

.single-link {
  max-width: 260px;
  margin: 0 auto;
  grid-template-columns: 1fr;
}

footer {
  margin-top: 42px;
  padding: 30px 16px 38px;
  color: var(--muted);
  background:
    linear-gradient(180deg, rgba(70, 37, 17, 0.82), rgba(18, 13, 9, 0.94));
  border-top: 1px solid var(--line);
  text-align: center;
}

footer p { margin: 0 0 8px; }

.publisher {
  color: var(--ivory);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.55rem;
}

.publisher span { color: var(--blood-bright); }

@media (max-width: 760px) {
  .hero-card,
  .details-section { grid-template-columns: 1fr; }

  .info-area { text-align: center; }

  .cover-area { order: 2; }
  .info-area { order: 1; }

  .detail-card + .detail-card {
    border-left: none;
    border-top: 1px solid var(--line);
  }

  .book-cover { width: min(300px, 84%); }

  .amazon-links { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 430px) {
  main { width: min(100% - 16px, 1080px); }
  .amazon-links { grid-template-columns: 1fr; }
}
