@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Inter:wght@400;500;700&display=swap');

:root {
  --bg: #070814;
  --panel: rgba(255,255,255,0.065);
  --line: rgba(255,255,255,0.16);
  --cream: #f7ead5;
  --gold: #f4b65f;
  --pink: #f46fa7;
  --purple: #9270ff;
  --text: #fff9ef;
  --muted: rgba(255,249,239,0.74);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  background:
    radial-gradient(circle at 20% 12%, rgba(244,182,95,0.25), transparent 30%),
    radial-gradient(circle at 85% 20%, rgba(244,111,167,0.18), transparent 30%),
    linear-gradient(180deg, #070814, #15101d 55%, #070814);
  color: var(--text);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.6) 1px, transparent 1.5px);
  background-size: 70px 70px;
  opacity: 0.08;
  pointer-events: none;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px clamp(18px, 5vw, 72px);
  backdrop-filter: blur(18px);
  background: rgba(7,8,20,0.76);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Playfair Display", serif;
  font-size: 20px;
}

.brand img {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 50%;
}

nav {
  display: flex;
  gap: 24px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

nav a:hover { color: var(--gold); }

.hero {
  min-height: 82vh;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 44px;
  align-items: center;
  padding: 70px clamp(20px, 5vw, 84px);
}

.eyebrow {
  color: var(--gold);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
}

h1, h2, h3 {
  font-family: "Playfair Display", serif;
  margin: 0;
}

h1 {
  font-size: clamp(46px, 6vw, 86px);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

h1 span,
.gradient {
  background: linear-gradient(90deg, var(--gold), var(--pink), var(--purple));
  -webkit-background-clip: text;
  color: transparent;
}

.lead {
  max-width: 620px;
  color: var(--muted);
  line-height: 1.8;
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
}

.primary {
  background: linear-gradient(90deg, var(--gold), var(--pink));
  color: #140911;
}

.secondary {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.05);
}

.hero-art img {
  width: 100%;
  border-radius: 28px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.16);
}

.intro-strip {
  margin: 0 clamp(20px, 5vw, 84px);
  padding: 34px;
  border-radius: 30px;
  background: var(--cream);
  color: #1e1420;
  text-align: center;
}

.intro-strip h2 { font-size: clamp(32px, 4vw, 54px); }

.section, .split-section, .world-panel, .newsletter {
  padding: 78px clamp(20px, 5vw, 84px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading h2, .split-section h2, .world-panel h2, .newsletter h2 {
  font-size: clamp(38px, 4.5vw, 64px);
}

.section-heading p, .split-section p, .world-panel p, .newsletter p {
  color: var(--muted);
  line-height: 1.8;
}

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

.book-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  padding: 24px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.28);
}

.book-card img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.38);
}

.book-number { color: var(--pink); text-transform: uppercase; letter-spacing: .18em; font-size: 12px; font-weight: 700; }
.book-card h3 { font-size: 34px; margin-bottom: 12px; }
.book-card p { color: var(--muted); line-height: 1.7; }
.text-link { color: var(--gold); font-weight: 700; }

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
}

.quote-card {
  padding: 44px;
  min-height: 260px;
  display: grid;
  place-items: center;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(244,182,95,0.18), rgba(244,111,167,0.16));
  border: 1px solid var(--line);
  font-family: "Playfair Display", serif;
  font-size: 36px;
  line-height: 1.25;
  text-align: center;
}

.freebie-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 26px;
}

.freebie {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 18px;
  display: grid;
  gap: 14px;
  text-align: center;
  color: var(--gold);
  font-weight: 700;
}

.freebie img {
  width: 100%;
  max-height: 540px;
  object-fit: cover;
  object-position: top;
  border-radius: 18px;
  background: white;
}

.world-panel {
  margin: 0 clamp(20px, 5vw, 84px);
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(8,10,24,0.85), rgba(26,12,26,0.86)),
    url("assets/facebook-cover.png");
  background-size: cover;
  background-position: center;
  border: 1px solid var(--line);
}

.world-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.world-grid div {
  background: rgba(0,0,0,0.38);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 22px;
  padding: 20px;
}

.world-grid strong {
  display: block;
  color: var(--gold);
  margin-bottom: 8px;
}

.world-grid span {
  color: var(--muted);
  line-height: 1.55;
}

.shop img {
  width: 100%;
  border-radius: 28px;
  border: 1px solid var(--line);
}

.newsletter {
  text-align: center;
}

.newsletter form {
  margin: 28px auto 0;
  max-width: 560px;
  display: flex;
  gap: 12px;
}

.newsletter input {
  flex: 1;
  padding: 16px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.08);
  color: white;
}

.newsletter button {
  border: 0;
  border-radius: 999px;
  padding: 16px 26px;
  font-weight: 800;
  background: linear-gradient(90deg, var(--gold), var(--pink));
  color: #140911;
}

footer {
  padding: 30px;
  text-align: center;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

@media (max-width: 950px) {
  nav { display: none; }
  .hero, .split-section, .book-grid, .freebie-grid { grid-template-columns: 1fr; }
  .book-card { grid-template-columns: 1fr; }
  .book-card img { max-width: 300px; }
  .world-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .world-grid { grid-template-columns: 1fr; }
  .newsletter form { flex-direction: column; }
  h1 { font-size: 44px; }
}
