:root {
  --black: #050505;
  --ink: #0d0d0f;
  --graphite: #171619;
  --graphite-2: #211d20;
  --bone: #ede5d8;
  --bone-soft: #cfc5b6;
  --muted: #9e9488;
  --gold: #b9965a;
  --gold-soft: #d7bf83;
  --red: #c41d26;
  --wine: #4a1018;
  --blue-night: #101824;
  --line: rgba(237, 229, 216, 0.14);
  --shadow: 0 34px 90px rgba(0, 0, 0, 0.52);
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(196, 29, 38, 0.07), transparent 18%, transparent 82%, rgba(185, 150, 90, 0.05)),
    linear-gradient(180deg, var(--black), #09090b 22%, #120d10 55%, #070707);
  color: var(--bone);
  font-family: var(--sans);
  line-height: 1.6;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.6), transparent 72%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.2), rgba(5, 5, 5, 0.9)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.018) 0, rgba(255, 255, 255, 0.018) 1px, transparent 1px, transparent 5px);
  opacity: 0.45;
}

a {
  color: inherit;
}

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

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

.brand {
  text-decoration: none;
  font-family: var(--serif);
  font-size: 1.02rem;
  color: var(--bone);
  text-transform: uppercase;
}

.brand span {
  border-left: 2px solid var(--red);
  padding-left: 12px;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  color: var(--muted);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.main-nav a {
  text-decoration: none;
}

.main-nav a:hover,
.main-nav a:focus {
  color: var(--gold-soft);
}

.section-band {
  position: relative;
  padding: clamp(72px, 10vw, 132px) clamp(20px, 5vw, 80px);
  border-bottom: 1px solid var(--line);
}

.hero {
  min-height: calc(100vh - 64px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 470px);
  align-items: center;
  gap: clamp(36px, 7vw, 104px);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(115deg, rgba(74, 16, 24, 0.62), transparent 42%),
    linear-gradient(270deg, rgba(16, 24, 36, 0.68), transparent 52%);
}

.hero-copy {
  max-width: 780px;
}

.eyebrow,
.section-kicker,
.movement-label {
  margin: 0 0 18px;
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  color: var(--red);
  font-size: clamp(3.35rem, 9.6vw, 9.2rem);
  text-transform: uppercase;
}

h2 {
  color: var(--bone);
  font-size: clamp(2.1rem, 5.4vw, 5.4rem);
}

h3 {
  color: var(--bone);
  font-size: clamp(1.7rem, 3vw, 3rem);
}

.subtitle {
  margin: 18px 0 0;
  color: var(--bone-soft);
  font-family: var(--serif);
  font-size: clamp(1.05rem, 2vw, 1.7rem);
}

.hero-line {
  max-width: 650px;
  margin: 44px 0 0;
  color: var(--bone);
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 3.4rem);
  line-height: 1.12;
}

.hero-text {
  max-width: 660px;
  margin: 24px 0 0;
  color: var(--bone-soft);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button,
.signup-form button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 19px;
  border: 1px solid transparent;
  border-radius: 3px;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}

.button.primary,
.signup-form button {
  background: var(--red);
  color: #fff7ef;
  box-shadow: 0 14px 36px rgba(196, 29, 38, 0.24);
}

.button.secondary {
  border-color: rgba(237, 229, 216, 0.28);
  color: var(--bone);
  background: rgba(255, 255, 255, 0.03);
}

.cover-stage {
  margin: 0;
  justify-self: center;
  width: min(100%, 390px);
}

.cover-stage img {
  width: 100%;
  border: 1px solid rgba(237, 229, 216, 0.2);
  box-shadow: var(--shadow);
}

.cover-stage figcaption {
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
}

.author-seal {
  padding: 34px 20px 30px;
  display: flex;
  justify-content: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(5, 5, 5, 0.55);
}

.author-seal img {
  width: min(118px, 28vw);
  height: auto;
  opacity: 0.82;
  filter: invert(1) sepia(0.22) saturate(1.4) brightness(1.05)
    drop-shadow(0 12px 28px rgba(0, 0, 0, 0.46));
}

.two-column {
  max-width: 1220px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(30px, 6vw, 92px);
}

.intro .section-kicker {
  max-width: 1220px;
  margin-left: auto;
  margin-right: auto;
}

.prose {
  color: var(--bone-soft);
  font-size: clamp(1rem, 1.3vw, 1.12rem);
}

.prose p:first-child,
.narrow p:first-of-type,
.section-heading p {
  margin-top: 0;
}

.prose strong,
.prose em {
  color: var(--bone);
}

.book-data {
  max-width: 1220px;
  margin: clamp(42px, 6vw, 72px) auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.book-data div {
  min-height: 96px;
  padding: 22px;
  border-right: 1px solid var(--line);
}

.book-data div:last-child {
  border-right: 0;
}

.book-data dt {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.book-data dd {
  margin: 10px 0 0;
  color: var(--bone);
  font-family: var(--serif);
  font-size: 1.12rem;
}

.manifest {
  background: linear-gradient(180deg, rgba(33, 29, 32, 0.64), rgba(13, 13, 15, 0.24));
}

.narrow {
  max-width: 880px;
  margin: 0 auto;
}

.narrow p {
  color: var(--bone-soft);
  font-size: clamp(1.05rem, 1.5vw, 1.24rem);
}

blockquote {
  margin: clamp(38px, 5vw, 62px) 0 0;
  padding: clamp(26px, 4vw, 42px) 0 0;
  border-top: 1px solid rgba(185, 150, 90, 0.44);
  color: var(--gold-soft);
  font-family: var(--serif);
  font-size: clamp(1.9rem, 4.5vw, 4.7rem);
  line-height: 1.08;
}

.statement {
  margin-top: 30px;
  color: var(--gold-soft);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.3vw, 2.35rem);
  line-height: 1.22;
}

.fragment {
  background:
    linear-gradient(180deg, rgba(185, 150, 90, 0.1), rgba(5, 5, 5, 0)),
    linear-gradient(90deg, rgba(74, 16, 24, 0.24), transparent 72%);
}

.fragment-inner {
  max-width: 980px;
  text-align: center;
}

.fragment blockquote {
  margin-top: 28px;
  padding-top: 34px;
  font-size: clamp(1.65rem, 3.8vw, 3.8rem);
}

.fragment-signature {
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-heading {
  max-width: 910px;
  margin: 0 auto clamp(42px, 7vw, 84px);
  text-align: center;
}

.section-heading p:not(.section-kicker) {
  color: var(--bone-soft);
  font-size: clamp(1rem, 1.35vw, 1.16rem);
}

.compact {
  margin-bottom: 36px;
}

.movement-grid {
  max-width: 1220px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.movement {
  min-height: 520px;
  padding: clamp(30px, 5vw, 58px);
  background:
    linear-gradient(180deg, rgba(74, 16, 24, 0.22), rgba(5, 5, 5, 0.14)),
    var(--ink);
}

.movement-number {
  color: rgba(196, 29, 38, 0.42);
  font-family: var(--serif);
  font-size: clamp(4rem, 8vw, 8rem);
  line-height: 0.85;
}

.movement p {
  color: var(--bone-soft);
}

.movement strong {
  display: block;
  margin-top: 28px;
  color: var(--gold-soft);
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  line-height: 1.24;
}

.larger-work {
  background: linear-gradient(90deg, rgba(16, 24, 36, 0.46), rgba(5, 5, 5, 0));
}

.author-layout {
  max-width: 1220px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 0.58fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
}

.author-photo {
  margin: 0;
}

.author-photo img {
  width: 100%;
  max-height: 620px;
  object-fit: cover;
  border: 1px solid rgba(237, 229, 216, 0.16);
  box-shadow: var(--shadow);
  filter: saturate(0.82) contrast(1.05);
}

.author-copy {
  max-width: 720px;
}

.timeline {
  max-width: 1060px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
}

.timeline div {
  padding: 24px;
  border-right: 1px solid var(--line);
}

.timeline div:last-child {
  border-right: 0;
}

.timeline span {
  display: block;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.timeline strong {
  display: block;
  margin-top: 12px;
  color: var(--bone);
  font-family: var(--serif);
  font-size: 1.08rem;
  line-height: 1.25;
}

.reader-list {
  background:
    linear-gradient(180deg, rgba(196, 29, 38, 0.12), rgba(5, 5, 5, 0)),
    var(--black);
}

.reader-box {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.68fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: start;
}

.reader-box p {
  color: var(--bone-soft);
}

.signup-form {
  display: grid;
  gap: 15px;
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
}

.signup-form label {
  display: grid;
  gap: 8px;
  color: var(--gold-soft);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.signup-form input {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid rgba(237, 229, 216, 0.22);
  border-radius: 2px;
  background: rgba(5, 5, 5, 0.72);
  color: var(--bone);
  font: inherit;
}

.signup-form input::placeholder {
  color: rgba(207, 197, 182, 0.48);
}

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

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.text-link {
  display: inline-flex;
  margin-top: 14px;
  color: var(--gold-soft);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(215, 191, 131, 0.45);
}

.contact-list {
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
  color: var(--bone-soft);
  list-style: none;
}

.contact-list strong {
  color: var(--gold-soft);
}

.site-footer {
  padding: 36px clamp(20px, 5vw, 80px);
  color: var(--muted);
  background: #030303;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
}

@media (max-width: 980px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .main-nav {
    justify-content: flex-start;
  }

  .hero,
  .two-column,
  .author-layout,
  .reader-box {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
    padding-top: 56px;
  }

  .cover-stage {
    width: min(78vw, 360px);
  }

  .author-photo {
    max-width: 420px;
  }

  .book-data,
  .timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .book-data div:nth-child(2),
  .timeline div:nth-child(2) {
    border-right: 0;
  }

  .book-data div:nth-child(-n + 2),
  .timeline div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 720px) {
  .section-band {
    padding: 58px 18px;
  }

  h1 {
    font-size: clamp(2.8rem, 14.5vw, 4.6rem);
  }

  .hero-line {
    margin-top: 34px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .movement-grid,
  .book-data,
  .timeline {
    grid-template-columns: 1fr;
  }

  .book-data div,
  .timeline div,
  .book-data div:nth-child(2),
  .timeline div:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .book-data div:last-child,
  .timeline div:last-child {
    border-bottom: 0;
  }

  .movement {
    min-height: auto;
  }

  .site-footer {
    flex-direction: column;
  }
}
