:root {
  --bg: #0b1220;
  --panel: #111a2c;
  --panel-2: #172236;
  --text: #f5efe5;
  --muted: #b7b0a4;
  --gold: #d6a95d;
  --gold-2: #f2d48b;
  --line: rgba(214, 169, 93, .24);
  --shadow: 0 24px 80px rgba(0,0,0,.35);
  --radius: 24px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 20% 0%, rgba(214,169,93,.18), transparent 34rem),
    radial-gradient(circle at 80% 12%, rgba(58,95,169,.20), transparent 36rem),
    var(--bg);
  color: var(--text);
  line-height: 1.65;
}
a { color: inherit; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  background: rgba(11,18,32,.82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.brand {
  text-decoration: none;
  font-family: Georgia, serif;
  font-size: 1.35rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold-2);
}
nav { display: flex; gap: 20px; flex-wrap: wrap; }
nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: .9rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
nav a:hover { color: var(--gold-2); }
main { overflow: hidden; }
.hero {
  min-height: 86vh;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .65fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: center;
  padding: clamp(56px, 8vw, 110px) clamp(20px, 6vw, 92px);
}
.hero-copy { max-width: 760px; }
.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .78rem;
  font-weight: 700;
}
h1, h2, h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.05;
}
h1 { font-size: clamp(3rem, 7vw, 6.7rem); max-width: 950px; }
h2 { font-size: clamp(2.1rem, 4vw, 4rem); }
h3 { font-size: clamp(1.35rem, 2vw, 2rem); }
.lead {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  margin: 26px 0 0;
}
.actions { display: flex; gap: 14px; margin-top: 30px; align-items: center; }
.actions.wrap { flex-wrap: wrap; }
.actions.center { justify-content: center; flex-wrap: wrap; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 11px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  text-decoration: none;
  background: rgba(255,255,255,.04);
}
.button:hover { border-color: var(--gold); transform: translateY(-1px); }
.button.primary {
  background: linear-gradient(135deg, var(--gold), #8f6426);
  color: #120d06;
  border: 0;
  font-weight: 800;
}
.hero-card {
  width: min(380px, 100%);
  justify-self: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
  box-shadow: var(--shadow);
  transform: rotate(1.5deg);
}
.hero-card img, .book-cover img, .portrait img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: calc(var(--radius) - 8px);
}
.section { padding: clamp(54px, 7vw, 96px) clamp(20px, 6vw, 92px); border-top: 1px solid var(--line); }
.section.alt { background: rgba(255,255,255,.03); }
.section-heading { max-width: 800px; margin-bottom: 34px; }
.book-grid {
  display: grid;
  grid-template-columns: 300px minmax(0, 760px);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
}
.book-cover {
  padding: 12px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.book-copy p, .about p, .contact p, .note, .coming-soon p { color: var(--muted); }
.coming-soon {
  margin-top: 46px;
  padding: 28px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.card {
  padding: 28px;
  min-height: 210px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--panel), var(--panel-2));
}
.card p { color: var(--muted); }
.note { max-width: 780px; margin-top: 24px; }
.about {
  display: grid;
  grid-template-columns: 260px minmax(0, 760px);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
.portrait {
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.portrait img { aspect-ratio: 1; object-fit: cover; object-position: 50% 30%; border-radius: 50%; }
.contact { text-align: center; }
.contact p { max-width: 720px; margin-left: auto; margin-right: auto; }
footer { padding: 28px clamp(20px, 6vw, 92px); color: var(--muted); border-top: 1px solid var(--line); }
@media (max-width: 820px) {
  .site-header { align-items: flex-start; flex-direction: column; }
  .hero, .book-grid, .about { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-card { width: min(300px, 78vw); }
  .cards { grid-template-columns: 1fr; }
  .book-cover { max-width: 280px; }
  .portrait { width: 220px; }
  h1 { font-size: clamp(2.6rem, 12vw, 4.2rem); }
}
