:root {
      --ink: #0b0b10;
      --ink-2: #14111b;
      --paper: #eee6da;
      --muted: #bcb1a9;
      --gold: #d4a85f;
      --wine: #5f2232;
      --line: rgba(238, 230, 218, .18);
      --serif: Georgia, "Times New Roman", serif;
      --sans: Arial, Helvetica, sans-serif;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      background: var(--ink);
      color: var(--paper);
      font-family: var(--serif);
      line-height: 1.65;
    }

    a { color: inherit; }
    .wrap { width: min(1120px, calc(100% - 40px)); margin: auto; }

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

    nav {
      min-height: 70px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
    }

    .brand {
      color: var(--paper);
      text-decoration: none;
      font-size: 1.1rem;
      font-weight: bold;
      letter-spacing: .13em;
      text-transform: uppercase;
    }

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

    nav ul {
      padding: 0;
      margin: 0;
      display: flex;
      gap: 18px;
      list-style: none;
      font-family: var(--sans);
      font-size: .78rem;
      letter-spacing: .09em;
      text-transform: uppercase;
    }

    nav ul a {
      color: var(--muted);
      text-decoration: none;
    }

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

    .hero {
      min-height: 680px;
      display: grid;
      place-items: center;
      justify-items: center;
      text-align: center;
      overflow: hidden;
      border-bottom: 1px solid var(--line);
      background:
        radial-gradient(circle at 50% 9%, rgba(103, 40, 63, .73), transparent 33%),
        radial-gradient(circle at 4% 80%, rgba(212, 168, 95, .10), transparent 28%),
        linear-gradient(145deg, #16111d, #08090d 65%);
    }

    .eyebrow {
      margin: 0 0 15px;
      color: var(--gold);
      font-family: var(--sans);
      font-size: .74rem;
      font-weight: bold;
      letter-spacing: .25em;
      text-transform: uppercase;
    }

    h1, h2, h3 { line-height: 1.05; }
    h1 {
      max-width: 950px;
      margin: 0;
      font-size: clamp(4rem, 12vw, 9.2rem);
      font-weight: normal;
      letter-spacing: .035em;
      text-transform: uppercase;
    }

    .hero p {
      width: min(640px, 100%);
      margin: 25px auto 0;
      color: var(--muted);
      font-size: clamp(1.1rem, 2.5vw, 1.35rem);
    }

    .buttons {
      margin-top: 34px;
      display: flex;
      justify-content: center;
      gap: 14px;
      flex-wrap: wrap;
    }

    .button {
      display: inline-block;
      padding: 14px 22px;
      border: 1px solid var(--gold);
      background: var(--gold);
      color: #171016;
      text-decoration: none;
      font-family: var(--sans);
      font-size: .77rem;
      font-weight: bold;
      letter-spacing: .09em;
      text-transform: uppercase;
      transition: .2s ease;
    }

    .button:hover { background: transparent; color: var(--gold); }
    .button.ghost { background: transparent; color: var(--paper); border-color: var(--line); }
    .button.ghost:hover { border-color: var(--gold); color: var(--gold); }

    section { padding: 105px 0; }
    .section-title {
      margin: 0 0 20px;
      font-size: clamp(2.4rem, 5vw, 4.4rem);
      font-weight: normal;
    }

    .intro {
      max-width: 700px;
      color: var(--muted);
      font-size: 1.16rem;
    }

    .book {
      display: grid;
      grid-template-columns: 270px 1fr;
      gap: clamp(35px, 7vw, 90px);
      align-items: center;
      margin-top: 55px;
    }

    .book > * {
      min-width: 0;
    }

    .book-cover {
      width: 100%;
      max-width: 270px;
      overflow: hidden;
      border: 1px solid rgba(212, 168, 95, .55);
      box-shadow: 18px 22px 55px rgba(0,0,0,.55);
    }

    .book-cover img {
      display: block;
      width: 100%;
      height: auto;
}
    .book h3 { margin: 0 0 14px; font-size: clamp(2.2rem, 5vw, 4rem); font-weight: normal; }
    .book p { color: var(--muted); font-size: 1.08rem; }
    .book-meta {
      margin: 23px 0 28px;
      color: var(--gold);
      font-family: var(--sans);
      font-size: .76rem;
      font-weight: bold;
      letter-spacing: .13em;
      text-transform: uppercase;
    }

    .world { background: var(--ink-2); border-block: 1px solid var(--line); }
    .cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
      margin-top: 46px;
    }

    .card {
      min-height: 205px;
      padding: 28px;
      border: 1px solid var(--line);
      background: rgba(255,255,255,.018);
    }

    .card h3 { margin: 0 0 12px; color: var(--gold); font-size: 1.35rem; font-weight: normal; }
    .card p { margin: 0; color: var(--muted); }

    .about {
      display: grid;
      grid-template-columns: .8fr 1.2fr;
      gap: clamp(35px, 8vw, 115px);
      align-items: start;
    }

    .quote {
      margin: 0;
      padding-left: 24px;
      border-left: 2px solid var(--gold);
      color: var(--paper);
      font-size: clamp(1.45rem, 3vw, 2rem);
      font-style: italic;
      line-height: 1.35;
    }

    .about p { color: var(--muted); font-size: 1.07rem; }

    .news {
      text-align: center;
      background: linear-gradient(145deg, #2c1727, #120e16);
      border-block: 1px solid var(--line);
    }

    .news .intro { margin-inline: auto; }
    footer {
      padding: 32px 0;
      color: #918881;
      font-family: var(--sans);
      font-size: .78rem;
      text-align: center;
    }

    @media (min-width: 701px) {
      .hero h1 {
        transform: translateX(80px);
      }
  }

    @media (max-width: 700px) {
      nav { min-height: 62px; }
      nav ul { gap: 10px; font-size: .65rem; letter-spacing: .05em; }
      nav ul li:nth-child(3),
      nav ul li:nth-child(4) { display: none; }
      .hero { min-height: 610px; }
      section { padding: 74px 0; }
      .book, .about { grid-template-columns: 1fr; }
      .book-cover { width: min(270px, 80%); }
      .cards { grid-template-columns: 1fr; }
    }