* { box-sizing: border-box; }

:root {
  --bg: #0f0f0f;
  --panel: #171717;
  --panel-dark: #111111;
  --text: #f7f1df;
  --muted: #d9cfb5;
  --soft: #a79d87;
  --red: #c92828;
  --gold: #e0b841;
  --gold-hover: #f0ca56;
  --line: #2b2b2b;
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

img {
  max-width: 100%;
  display: block;
}

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

.wrap {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  border-bottom: 1px solid var(--line);
  background: rgba(15, 15, 15, 0.92);
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(10px);
}

.nav-wrap {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: white;
}

.brand span { color: var(--red); }

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav a:hover { color: white; }

.nav-button {
  background: var(--gold);
  color: #111;
  padding: 10px 18px;
  border-radius: 999px;
}

.nav-button:hover {
  background: var(--gold-hover);
  color: #111 !important;
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #242424;
}

.glow {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(20px);
  opacity: 0.45;
  pointer-events: none;
}

.glow-red {
  background: radial-gradient(circle, rgba(201, 40, 40, 0.35), transparent 62%);
  top: -120px;
  left: -120px;
}

.glow-gold {
  background: radial-gradient(circle, rgba(224, 184, 65, 0.18), transparent 62%);
  top: -100px;
  right: -140px;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 56px;
  padding: 88px 0;
}

.eyebrow {
  margin: 0 0 18px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.gold { color: var(--gold); }
.red { color: var(--red); }

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  color: white;
  margin: 0;
  line-height: 0.98;
}

h1 {
  font-size: clamp(4rem, 9vw, 7rem);
  letter-spacing: -0.04em;
}

h2 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  letter-spacing: -0.03em;
}

h3 {
  margin: 0;
  color: white;
  font-size: 1.18rem;
}

.subtitle {
  color: var(--gold);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  max-width: 720px;
  line-height: 1.12;
  margin: 24px 0 0;
}

.hook {
  color: #f1e7cb;
  font-size: 1.35rem;
  margin: 34px 0 0;
}

.body-large,
.copy-block {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.8;
}

.body-large {
  max-width: 680px;
  margin-top: 18px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  border-radius: 999px;
  padding: 13px 28px;
  font-weight: 800;
  font-family: inherit;
  font-size: 0.95rem;
  border: 0;
  cursor: pointer;
}

.primary {
  background: var(--gold);
  color: #151515;
}

.primary:hover { background: var(--gold-hover); }

.secondary {
  border: 1px solid var(--red);
  color: white;
}

.secondary:hover { background: var(--red); }

.gold-border { border-color: var(--gold); }

.gold-border:hover { background: #231b0c; }

.disabled-button {
  cursor: default;
  pointer-events: none;
  opacity: 0.95;
}

.cover-area {
  width: min(100%, 420px);
  margin: 0 auto;
}

.cover-frame {
  background: #191919;
  border: 1px solid #343434;
  border-radius: 32px;
  padding: 16px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
}

.cover-frame img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 22px;
  background: #222;
}

.section { padding: 72px 0; }

.section-panel {
  background: var(--panel);
  border-top: 1px solid #242424;
  border-bottom: 1px solid #242424;
}

.two-col {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
}

.copy-block p { margin: 0 0 20px; }

.section-intro { max-width: 780px; }

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 44px;
}

.card {
  background: var(--panel-dark);
  border: 1px solid #2f2f2f;
  border-radius: 24px;
  padding: 28px;
}

.card p {
  color: #cfc3a9;
  line-height: 1.7;
  margin: 12px 0 0;
}

.author-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 56px;
  align-items: center;
}

.photo-frame {
  background: #222;
  border: 1px solid #343434;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
}

.author-line {
  color: white;
  font-size: 1.6rem;
  font-weight: 800;
  margin-top: 24px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: start;
}

.contact-copy {
  margin-top: 24px;
  max-width: 520px;
}

.contact-form {
  background: var(--panel-dark);
  border: 1px solid #2f2f2f;
  border-radius: 24px;
  padding: 28px;
}

.form-row {
  margin-bottom: 18px;
}

.form-row label {
  display: block;
  color: white;
  font-weight: 800;
  margin-bottom: 8px;
}

.form-row label span {
  color: var(--soft);
  font-weight: 600;
}

.form-row input,
.form-row textarea {
  width: 100%;
  background: #0b0b0b;
  color: var(--text);
  border: 1px solid #3a3a3a;
  border-radius: 14px;
  padding: 14px 15px;
  font: inherit;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(224, 184, 65, 0.15);
}

.form-button {
  width: 100%;
  margin-top: 4px;
}

.final-cta {
  background: #1a1111;
  border-top: 1px solid #3a1f1f;
  border-bottom: 1px solid #3a1f1f;
  padding: 56px 0;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 36px;
  align-items: center;
}

.cta-grid h2 { max-width: 820px; }

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.site-footer {
  text-align: center;
  color: var(--soft);
  font-size: 0.9rem;
  padding: 32px 24px;
}

.footer-brand {
  color: var(--gold);
  font-weight: 900;
  letter-spacing: 0.2em;
  margin-bottom: 8px;
}

@media (max-width: 880px) {
  .nav { display: none; }

  .hero-grid,
  .two-col,
  .author-grid,
  .contact-grid,
  .cta-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid { padding: 64px 0; }

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

  .cover-area {
    order: -1;
    max-width: 320px;
  }

  .cta-buttons {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

@media (max-width: 540px) {
  .wrap { width: min(100% - 32px, 1120px); }

  .button-row,
  .cta-buttons {
    flex-direction: column;
  }

  .button { width: 100%; }

  .section { padding: 56px 0; }
}
