:root {
  --bg: #0d1713;
  --bg-soft: #172a24;
  --card: #1d342c;
  --text: #f4fff9;
  --muted: #c0d7cb;
  --line: #2d4a3f;
  --accent: #7ee0b0;
  --accent-strong: #45c789;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 88% 0%, rgba(126, 224, 176, 0.2), transparent 34%),
    linear-gradient(180deg, var(--bg), #090f0c 62%);
  line-height: 1.55;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(8px);
  background: rgba(11, 20, 17, 0.84);
}

.brand {
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.02em;
}

nav {
  display: flex;
  gap: 18px;
}

nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
}

main,
.site-footer {
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  padding: 72px 0 26px;
}

.hero h1 {
  margin: 8px 0 10px;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.06;
}

.hero p {
  margin: 0;
  max-width: 64ch;
  color: var(--muted);
}

.eyebrow,
.kicker,
.book-num {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
  font-size: 0.72rem;
  color: var(--accent);
}

.section {
  padding: 30px 0;
}

.section-head h2 {
  margin: 8px 0 0;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(1.5rem, 3.8vw, 2.2rem);
}

.book-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.book-card {
  background: linear-gradient(170deg, var(--card), var(--bg-soft));
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px;
}

.book-cover {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.24);
  margin-bottom: 12px;
}

.book-card h3 {
  margin: 6px 0 10px;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 1.4rem;
  line-height: 1.15;
}

.book-desc {
  margin: 0 0 0.9rem;
  color: var(--muted);
  line-height: 1.45;
}

.btn {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  background: linear-gradient(120deg, var(--accent), var(--accent-strong));
  color: #042215;
}

.btn.is-disabled {
  opacity: 0.74;
  pointer-events: none;
}

.note {
  margin-top: 14px;
  color: var(--muted);
}

.section-story p {
  color: var(--muted);
  max-width: 70ch;
}

.site-footer {
  margin-top: 30px;
  padding: 34px 0 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.email-link {
  display: inline-block;
  margin-top: 6px;
  font-weight: 700;
  text-decoration: none;
}

.copyright {
  margin-top: 20px;
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 760px) {
  nav {
    gap: 10px;
    font-size: 0.93rem;
  }

  .book-grid {
    grid-template-columns: 1fr;
  }
}
