:root {
      --red: #C8102E;
      --stamp-red: #8E1B1B;
      --cream: #F2EBD9;
      --ink: #1A1A18;
      --gold: #B8952A;
      --grey: #7A7A72;
      --line: #C9C3B5;
      --muted-cream: #d8d3c8;
    }

    *, *::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: 70px 0 62px;
      border-bottom: 6px solid var(--red);
      position: relative;
      overflow: hidden;
    }

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

    .hero-form-number {
      font-size: 10px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 18px;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .hero-form-number::before {
      content: '';
      width: 40px;
      height: 1px;
      background: var(--red);
      display: block;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: minmax(260px, 430px) minmax(0, 1fr);
      gap: 24px;
      align-items: start;
    }

    .cover-pair {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }

    .cover-frame {
      border: 1px solid rgba(255, 255, 255, 0.22);
      background: rgba(0, 0, 0, 0.22);
      border-radius: 3px;
      padding: 10px;
    }

    .cover-frame img {
      width: 100%;
      height: auto;
      border: 1px solid rgba(255, 255, 255, 0.22);
      border-radius: 2px;
      background: rgba(0, 0, 0, 0.22);
      aspect-ratio: 2 / 3;
      object-fit: contain;
    }

    .cover-zoom {
      display: block;
      width: 100%;
      border: 0;
      background: transparent;
      padding: 0;
      cursor: zoom-in;
    }

    .cover-hint {
      font-size: 10px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: #c6bfb4;
      margin-top: 8px;
      display: block;
    }

    .cover-label {
      font-size: 9px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: #b2aaa0;
      margin-bottom: 7px;
      display: block;
    }

    h1 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(42px, 6.3vw, 84px);
      line-height: 0.92;
      letter-spacing: 0.03em;
      margin-bottom: 12px;
    }

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

    .title-subline {
      display: block;
      font-size: 0.74em;
      letter-spacing: 0.03em;
      margin-top: 6px;
    }

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

    .hero-deck {
      max-width: 780px;
      color: #d6d0c3;
      font-family: 'Playfair Display', serif;
      font-style: italic;
      font-size: 18px;
      line-height: 1.68;
      border-left: 2px solid var(--red);
      padding-left: 18px;
      margin-bottom: 20px;
    }

    .advisory {
      border: 1px solid rgba(200, 16, 46, 0.58);
      background: rgba(200, 16, 46, 0.13);
      color: #efe6d9;
      padding: 10px 12px;
      margin-bottom: 18px;
      font-size: 13px;
      line-height: 1.6;
    }

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

    .btn {
      background: var(--red);
      color: var(--cream);
      border: 1px solid var(--red);
      font-size: 11px;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      padding: 14px 22px;
      display: inline-block;
      transition: background 0.18s, transform 0.15s, border-color 0.18s;
      cursor: pointer;
    }

    .btn:hover {
      background: var(--stamp-red);
      border-color: var(--stamp-red);
      transform: translateY(-1px);
    }

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

    .btn.btn-secondary:hover {
      background: rgba(255, 255, 255, 0.08);
      border-color: rgba(255, 255, 255, 0.65);
    }

    .btn.btn-disabled,
    .btn.btn-disabled:hover {
      cursor: default;
      background: rgba(255, 255, 255, 0.08);
      color: #d4ccc0;
      border-color: rgba(255, 255, 255, 0.25);
      transform: none;
    }

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

    .archive-note {
      color: #d8d3c8;
      font-size: 14px;
      margin: 0;
    }

    .archive-note a {
      color: var(--gold);
      text-decoration: underline;
      text-underline-offset: 2px;
    }

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

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

    section.content {
      padding: 0 0 40px;
      max-width: 1140px;
      margin: 0 auto;
      width: calc(100% - 48px);
      position: relative;
      z-index: 1;
    }

    .section-label {
      font-size: 10px;
      letter-spacing: 0.24em;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 14px;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .section-label::after {
      content: '';
      width: 30px;
      height: 1px;
      background: var(--red);
    }

    h2 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(38px, 5vw, 62px);
      letter-spacing: 0.04em;
      line-height: 0.95;
      margin-bottom: 16px;
    }

    .lede {
      max-width: 760px;
      color: #3a3a34;
      margin-bottom: 22px;
    }

    .status-note {
      border-left: 3px solid var(--red);
      padding: 10px 12px;
      margin-bottom: 22px;
      background: rgba(255, 255, 255, 0.46);
      color: #302f2b;
      font-size: 13px;
    }

    .details-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 8px;
    }

    .details-grid details {
      border: 1px solid var(--line);
      background: rgba(255, 255, 255, 0.45);
      border-radius: 3px;
      padding: 11px 12px;
    }

    .details-grid summary {
      cursor: pointer;
      color: var(--ink);
      font-size: 11px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      font-weight: 700;
      list-style-position: inside;
    }

    .details-grid p,
    .details-grid li {
      color: #363630;
      font-size: 13px;
      line-height: 1.48;
      margin-top: 6px;
    }

    .details-grid ul {
      padding-left: 18px;
      margin-top: 6px;
    }

    .specs table {
      width: 100%;
      border-collapse: collapse;
      margin-top: 8px;
    }

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

    .specs td:first-child {
      width: 140px;
      color: var(--grey);
      text-transform: uppercase;
      letter-spacing: 0.08em;
      font-size: 11px;
    }

    .related-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 12px;
      margin-top: 8px;
    }

    .related-card {
      border: 1px solid var(--line);
      background: rgba(255, 255, 255, 0.52);
      padding: 10px;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .related-card img {
      width: 100%;
      aspect-ratio: 2 / 3;
      object-fit: cover;
      border: 1px solid var(--line);
      background: rgba(255, 255, 255, 0.36);
    }

    .related-card strong {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 24px;
      line-height: 1;
      letter-spacing: 0.03em;
    }

    .image-modal {
      position: fixed;
      inset: 0;
      z-index: 1400;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 18px;
      background: rgba(0, 0, 0, 0.9);
    }

    .image-modal[aria-hidden="false"] { display: flex; }

    .image-modal-stage {
      position: relative;
      max-width: min(96vw, 1400px);
      max-height: 92vh;
      width: fit-content;
    }

    .image-modal img {
      max-width: 100%;
      max-height: 84vh;
      width: auto;
      height: auto;
      object-fit: contain;
      border: 1px solid rgba(255, 255, 255, 0.28);
      background: rgba(0, 0, 0, 0.34);
    }

    .image-modal-caption {
      margin-top: 10px;
      color: #e3ddd2;
      font-size: 11px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
    }

    .image-modal-close {
      position: absolute;
      right: -2px;
      top: -44px;
      border: 1px solid rgba(255, 255, 255, 0.48);
      background: rgba(0, 0, 0, 0.54);
      color: #f3eee3;
      font-size: 11px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 8px 11px;
      cursor: pointer;
    }

    .image-modal-close:hover {
      background: rgba(255, 255, 255, 0.14);
      border-color: rgba(255, 255, 255, 0.8);
    }

    footer {
      background: var(--ink);
      color: var(--cream);
      border-top: 2px solid var(--red);
      padding: 34px 0;
      margin-top: 52px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 16px;
      font-size: 12px;
    }

    .muted { color: var(--grey); }

    footer a { color: var(--muted-cream); }
    footer a:hover { color: var(--gold); }

    @media (max-width: 980px) {
      .hero-grid,
      .details-grid,
      .related-grid,
      .footer-grid { grid-template-columns: 1fr; }

      .cover-pair { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    }

    @media (max-width: 760px) {
      body::before {
        display: none;
      }

      body::before {
        display: none;
      }

      .wrap,
      section.content,
      .rule { width: calc(100% - 32px); }

      .site-header .wrap { flex-direction: column; align-items: flex-start; }
      .main-nav { gap: 10px 14px; }
      .btn { width: 100%; text-align: center; }
      .stamp { width: 100%; text-align: center; }
    }

    @media (max-width: 520px) {
      .cover-pair { grid-template-columns: 1fr; }
    }
