:root {
      --red: #c8102e;
      --stamp-red: #8e1b1b;
      --cream: #f2ebd9;
      --ink: #1a1a18;
      --gold: #b8952a;
      --grey: #7a7a72;
      --light-grey: #e4ddd0;
      --line: #c9c3b5;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    body {
      background: var(--cream);
      color: var(--ink);
      font-family: "IBM Plex Mono", monospace;
      font-size: 15px;
      line-height: 1.72;
      overflow-x: hidden;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
      background-size: 200px 200px;
      pointer-events: none;
      z-index: 1000;
      opacity: 0.42;
    }

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

    .wrap {
      width: min(1140px, calc(100% - 48px));
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }

    .top-bar {
      background: var(--ink);
      color: var(--cream);
      font-size: 10px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      padding: 8px 0;
      border-bottom: 2px solid var(--red);
    }

    .top-bar .wrap {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      flex-wrap: wrap;
    }

    .site-header {
      border-bottom: 1px solid var(--line);
      background: var(--cream);
      position: sticky;
      top: 0;
      z-index: 100;
    }

    .site-header .wrap {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 20px;
      padding: 16px 0;
      flex-wrap: wrap;
    }

    .brand {
      font-family: "Bebas Neue", sans-serif;
      font-size: 34px;
      letter-spacing: 0.04em;
      line-height: 1;
    }

    .main-nav {
      display: flex;
      gap: 16px;
      align-items: center;
      flex-wrap: wrap;
      font-size: 11px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
    }

    .main-nav a {
      padding: 4px 0;
      border-bottom: 1px solid transparent;
      transition: color 0.18s, border-color 0.18s;
    }

    .main-nav a:hover,
    .main-nav a.active {
      color: var(--red);
      border-color: var(--red);
    }

    .cart-button {
      background: var(--ink);
      color: var(--cream);
      border: 1px solid var(--ink);
      font-size: 10px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      padding: 10px 14px;
      cursor: pointer;
      transition: background 0.18s, border-color 0.18s;
    }

    .cart-button:hover {
      background: var(--red);
      border-color: var(--red);
    }

    .hero {
      background: var(--ink);
      color: var(--cream);
      padding: 74px 0 58px;
      border-bottom: 6px solid var(--red);
      position: relative;
      overflow: hidden;
    }

    .hero::after {
      content: "";
      position: absolute;
      right: -60px;
      top: -60px;
      width: 420px;
      height: 420px;
      border: 56px solid rgba(200, 16, 46, 0.08);
      border-radius: 50%;
      pointer-events: none;
    }

    .hero-form-number {
      font-size: 10px;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 26px;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: minmax(240px, 360px) minmax(0, 1fr);
      gap: 42px;
      align-items: start;
    }

    .cover-frame {
      width: 100%;
      aspect-ratio: 2 / 3;
      border: 1px solid rgba(255, 255, 255, 0.24);
      background:
        linear-gradient(150deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
        repeating-linear-gradient(135deg, rgba(184, 149, 42, 0.08) 0 10px, rgba(184, 149, 42, 0.02) 10px 20px);
      display: grid;
      place-items: center;
      padding: 20px;
      text-align: center;
    }

    .cover-frame img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border: 1px solid rgba(255, 255, 255, 0.3);
    }

    .cover-placeholder-title {
      font-family: "Bebas Neue", sans-serif;
      font-size: clamp(28px, 6vw, 54px);
      letter-spacing: 0.05em;
      line-height: 0.95;
      margin-bottom: 14px;
    }

    .cover-placeholder-meta {
      font-size: 11px;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: #d5cab2;
    }

    h1 {
      font-family: "Bebas Neue", sans-serif;
      font-size: clamp(56px, 11vw, 112px);
      line-height: 0.9;
      letter-spacing: 0.03em;
      margin-bottom: 10px;
    }

    .hero-subtitle {
      font-size: 11px;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gold);
      margin-top: 14px;
      margin-bottom: 26px;
    }

    .hero-deck {
      max-width: 660px;
      font-size: 16px;
      line-height: 1.9;
      color: #d0c8b6;
      border-left: 2px solid var(--red);
      padding-left: 20px;
      margin-bottom: 34px;
      font-family: "Playfair Display", serif;
      font-style: italic;
    }

    .cta-row {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      align-items: center;
      margin-bottom: 18px;
    }

    .btn {
      border: 1px solid transparent;
      background: var(--red);
      color: var(--cream);
      font-size: 10px;
      letter-spacing: 0.17em;
      text-transform: uppercase;
      padding: 13px 18px;
      cursor: pointer;
      transition: transform 0.15s ease, background 0.15s ease;
      text-decoration: none;
      display: inline-block;
    }

    .btn:hover { background: #a80f26; transform: translateY(-1px); }

    .btn-secondary {
      background: transparent;
      border-color: rgba(255, 255, 255, 0.44);
    }

    .btn-secondary:hover { border-color: var(--gold); color: var(--gold); background: transparent; }

    .stamp {
      border: 2px solid var(--stamp-red);
      color: var(--stamp-red);
      background: rgba(142, 27, 27, 0.07);
      font-size: 9px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      padding: 7px 12px;
      transform: rotate(-2deg);
      opacity: 0.9;
      display: inline-block;
    }

    .rule {
      width: min(1140px, calc(100% - 48px));
      margin: 44px auto 0;
      display: flex;
      align-items: center;
      gap: 14px;
      font-size: 10px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--grey);
    }

    .rule::before, .rule::after {
      content: "";
      height: 1px;
      flex: 1;
      background: var(--line);
    }

    .content {
      padding: 50px 0 72px;
    }

    .section-label {
      font-size: 10px;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 12px;
    }

    h2 {
      font-family: "Bebas Neue", sans-serif;
      font-size: clamp(40px, 6vw, 56px);
      letter-spacing: 0.03em;
      line-height: 0.95;
      margin-bottom: 14px;
    }

    .lede {
      max-width: 780px;
      color: #3e3d37;
      margin-bottom: 30px;
    }

    .details-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(260px, 1fr));
      gap: 14px;
    }

    details {
      border: 1px solid var(--line);
      background: #f8f2e4;
      padding: 16px;
    }

    details[open] { background: #f6efde; }

    summary {
      cursor: pointer;
      font-size: 11px;
      letter-spacing: 0.13em;
      text-transform: uppercase;
      color: #2e2d2a;
      font-weight: 600;
      margin-bottom: 10px;
    }

    p { margin-bottom: 10px; color: #3e3d37; }
    ul { margin-left: 18px; color: #3e3d37; }
    li { margin-bottom: 6px; }

    table {
      width: 100%;
      border-collapse: collapse;
      font-size: 13px;
    }

    td {
      border-bottom: 1px solid var(--line);
      padding: 8px 0;
      vertical-align: top;
    }

    td:first-child {
      width: 44%;
      color: var(--grey);
    }

    footer {
      border-top: 1px solid var(--line);
      padding: 34px 0 46px;
      font-size: 12px;
      color: #595650;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1fr auto auto;
      gap: 24px;
      align-items: start;
    }

    .muted { color: #76736b; }

    @media (max-width: 900px) {
      .hero-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; gap: 14px; }
      .details-grid { grid-template-columns: 1fr; }
      .site-header .wrap { flex-direction: column; align-items: flex-start; }
      .btn { width: 100%; text-align: center; }
      .stamp { width: 100%; text-align: center; }
    }
