:root {
  --bg: #131017;
  --bg-2: #1b1622;
  --panel: #221b29;
  --red: #c8202f;
  --red-2: #e23a47;
  --text: #eae4ee;
  --muted: #9c91a3;
  --line: rgba(255,255,255,0.09);
  --radius: 10px;
  --shadow: 0 28px 70px -30px rgba(0,0,0,0.85);
  --maxw: 1120px;
  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }

h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.08; margin: 0 0 0.5em; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.6rem, 6.5vw, 5rem); }
h2 { font-size: clamp(1.9rem, 3.8vw, 2.9rem); }
h3 { font-size: 1.4rem; }
p { margin: 0 0 1rem; }
a { color: var(--red-2); text-decoration: none; }
a:hover { text-decoration: underline; }
em { font-style: italic; }
strong { color: #fff; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 720px; }
.center { text-align: center; }
.muted { color: var(--muted); }
.small { font-size: 0.85rem; }

.eyebrow { font-family: var(--sans); text-transform: uppercase; letter-spacing: 0.26em; font-size: 0.72rem; font-weight: 600; color: var(--red-2); margin: 0 0 1rem; }
.eyebrow-light { color: rgba(255,255,255,0.85); }
.lead { font-size: 1.2rem; color: #d6cdda; }
.lead.light { color: rgba(255,255,255,0.92); }
.genre { color: var(--muted); font-style: italic; margin-top: -0.4rem; margin-bottom: 1.2rem; letter-spacing: 0.02em; }
.tagline { font-family: var(--serif); font-style: italic; font-size: clamp(1.4rem, 3vw, 2rem); color: var(--red-2); margin: 0.2rem 0 1rem; }
.tagline-sm { font-family: var(--serif); font-style: italic; font-size: 1.25rem; color: #fff; margin: 1.4rem 0 0.5rem; }

/* Buttons */
.btn { display: inline-block; background: var(--red); color: #fff; padding: 0.75rem 1.6rem; border-radius: 6px; font-family: var(--sans); font-weight: 600; letter-spacing: 0.03em; font-size: 0.95rem; border: 2px solid var(--red); transition: transform .15s ease, background .15s ease, box-shadow .15s ease; cursor: pointer; }
.btn:hover { background: var(--red-2); border-color: var(--red-2); text-decoration: none; transform: translateY(-2px); box-shadow: 0 14px 30px -12px rgba(200,32,47,0.55); }
.btn-lg { padding: 0.95rem 2rem; font-size: 1.05rem; }
.btn-sm { padding: 0.45rem 1.1rem; font-size: 0.85rem; }
.btn-ghost { background: transparent; color: var(--text); border-color: rgba(255,255,255,0.28); }
.btn-ghost:hover { background: rgba(255,255,255,0.06); border-color: #fff; box-shadow: none; }
.btn-light { background: #fff; color: #1a0f12; border-color: #fff; }
.btn-light:hover { background: #f3e9eb; border-color: #f3e9eb; box-shadow: 0 14px 30px -14px rgba(0,0,0,0.5); }

/* Header */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(19,16,23,0.86); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 66px; }
.brand { display: inline-flex; align-items: center; gap: 0.55rem; color: #fff; font-family: var(--serif); font-weight: 600; font-size: 1.25rem; letter-spacing: 0.01em; }
.brand:hover { text-decoration: none; }
.brand-mark { color: var(--red-2); display: inline-flex; }
.nav-links { display: flex; align-items: center; gap: 1.6rem; list-style: none; margin: 0; padding: 0; }
.nav-links a { color: rgba(234,228,238,0.82); font-size: 0.92rem; font-weight: 500; }
.nav-links a:hover { color: #fff; text-decoration: none; }
.nav-links .btn { color: #fff; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: #fff; border-radius: 2px; }

/* Hero */
.hero { position: relative; overflow: hidden; padding: clamp(3rem, 7vw, 6rem) 0 clamp(3.5rem, 8vw, 6.5rem); background:
  radial-gradient(900px 500px at 78% 18%, rgba(200,32,47,0.18), transparent 60%),
  linear-gradient(180deg, #18121d, #131017 70%); }
.hero-glow { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(600px 300px at 50% 120%, rgba(200,32,47,0.10), transparent 60%); }
.hero-inner { position: relative; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.hero-text h1 { color: #fff; }
.hero-sub { font-size: 1.2rem; max-width: 44ch; color: #cfc6d4; }
.hero-actions { display: flex; gap: 0.8rem; flex-wrap: wrap; margin-top: 1.8rem; }
.hero-cover { display: flex; justify-content: center; }
.hero-cover img { width: min(330px, 78%); border-radius: 8px; box-shadow: 0 36px 80px -24px rgba(0,0,0,0.9), 0 0 0 1px rgba(255,255,255,0.05), 0 0 60px -10px rgba(200,32,47,0.35); }

/* Bands */
.band { padding: clamp(3.2rem, 7vw, 5.5rem) 0; }
.band-2 { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.band-accent { background: linear-gradient(140deg, #8c1622, var(--red)); color: #fff; }
.band-accent h2 { color: #fff; }

/* Split (book + about) */
.split { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.split-media img { width: 100%; max-width: 360px; margin: 0 auto; border-radius: 8px; box-shadow: var(--shadow), 0 0 0 1px rgba(255,255,255,0.05); }
.split-text h2 { color: #fff; }
.book-actions { margin-top: 1.6rem; }

.actions-center { display: flex; gap: 0.9rem; justify-content: center; flex-wrap: wrap; margin-top: 1.8rem; }

/* Contact form */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.hp { position: absolute; left: -9999px; opacity: 0; }
.contact-sub { color: var(--muted); margin: 0 auto 1.6rem; max-width: 54ch; }
.contact-form { max-width: 520px; margin: 1.6rem auto 0; text-align: left; }
.form-row { margin-bottom: 0.9rem; }
.contact-form input[type="text"], .contact-form input[type="email"], .contact-form textarea {
  width: 100%; font: inherit; color: var(--text); background: #18131f; border: 1.5px solid var(--line); border-radius: 8px; padding: 0.8rem 1rem; transition: border-color .15s ease, box-shadow .15s ease; }
.contact-form textarea { resize: vertical; min-height: 110px; }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--red-2); box-shadow: 0 0 0 3px rgba(226,58,71,0.22); }
.contact-form button[type="submit"] { width: 100%; margin-top: 0.4rem; }
.contact-form button[type="submit"][disabled] { opacity: 0.6; cursor: progress; }
.form-status { min-height: 1.4em; margin: 0.9rem 0 0; font-size: 0.95rem; text-align: center; }
.form-status.success { color: #9fe0a6; }
.form-status.error { color: #f3a6a6; }

/* Footer */
.site-footer { background: #0e0b12; border-top: 1px solid var(--line); padding: 2.4rem 0; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; gap: 1.2rem; flex-wrap: wrap; }
.footer-brand { font-family: var(--serif); font-size: 1.2rem; color: #fff; margin: 0; }
.site-footer .muted { color: var(--muted); }

/* Responsive */
@media (max-width: 880px) {
  .nav-toggle { display: flex; }
  .nav-links { position: absolute; top: 66px; left: 0; right: 0; flex-direction: column; align-items: flex-start; gap: 0; background: #18131f; padding: 0.5rem 24px 1.2rem; display: none; border-bottom: 1px solid var(--line); }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links li a { display: block; padding: 0.7rem 0; width: 100%; }
  .nav-links .btn { margin-top: 0.5rem; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-cover { order: -1; }
  .hero-cover img { width: min(240px, 58%); }
  .split { grid-template-columns: 1fr; }
  .split-media { order: -1; }
  .split-media img { max-width: 260px; }
}
@media (prefers-reduced-motion: reduce) { * { scroll-behavior: auto; } .btn, .hero-cover img { transition: none; } }
