    :root {
      --night: #07171b;
      --night-2: #0c2a2e;
      --ink: #112e32;
      --muted: #5a6365;
      --paper: #fffaf0;
      --paper-2: #fffdf6;
      --line: #ded5bd;
      --gold: #ffc857;
      --gold-2: #e0a93b;
      --red: #c6432f;
      --shadow: 0 18px 48px rgba(17,46,50,.14);
    }
    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
      color: var(--ink);
      background: linear-gradient(180deg, #fffdf6 0%, #f7eddb 100%);
    }
    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      background:
        radial-gradient(circle at 12% 18%, rgba(255,200,87,.18), transparent 26%),
        radial-gradient(circle at 82% 8%, rgba(198,67,47,.12), transparent 22%);
      z-index: -1;
    }
    a { color: inherit; }
    .wrap { width: min(1160px, calc(100% - 36px)); margin: 0 auto; }
    .hero {
      background: linear-gradient(135deg, var(--night) 0%, var(--night-2) 100%);
      color: #fff;
      padding: 62px 0 52px;
      overflow: hidden;
    }
    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 220px;
      gap: 36px;
      align-items: center;
    }
    .eyebrow {
      margin: 0 0 14px;
      color: var(--gold);
      font-size: 13px;
      font-weight: 800;
      letter-spacing: .18em;
      text-transform: uppercase;
    }
    h1, h2, h3 { font-family: "Cinzel", "Trajan Pro", "Palatino Linotype", Georgia, "Times New Roman", serif; }
    h1 { margin: 0; font-size: clamp(38px, 7vw, 76px); line-height: .96; color: var(--gold); }
    .hero p { max-width: 720px; color: #efe7d5; font-size: 18px; line-height: 1.7; }
    .cover {
      width: 100%;
      max-width: 220px;
      border-radius: 10px;
      box-shadow: 0 22px 60px rgba(0,0,0,.45);
      border: 1px solid rgba(255,200,87,.35);
      justify-self: end;
    }
    .notice {
      margin-top: 20px;
      display: inline-flex;
      max-width: 760px;
      background: rgba(255,255,255,.08);
      border: 1px solid rgba(255,200,87,.24);
      border-radius: 8px;
      padding: 12px 14px;
      color: #f6efd9;
      font-size: 14px;
      line-height: 1.5;
    }
    main { padding-bottom: 64px; }
    .section { padding: 44px 0 0; }
    .section-head {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 18px;
      margin-bottom: 18px;
    }
    .section-head h2 { margin: 0; font-size: clamp(28px, 4vw, 42px); color: var(--night); }
    .section-head p { margin: 0; max-width: 520px; color: var(--muted); line-height: 1.6; }
    .grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 16px;
    }
    .card {
      background: rgba(255,255,255,.88);
      border: 1px solid var(--line);
      border-top: 4px solid var(--gold);
      border-radius: 8px;
      box-shadow: var(--shadow);
      padding: 18px;
      min-height: 188px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      gap: 14px;
    }
    .card h3 { margin: 0 0 6px; font-size: 21px; color: var(--night); }
    .meta { color: var(--muted); line-height: 1.55; font-size: 14px; margin: 0; }
    .tag {
      display: inline-flex;
      width: fit-content;
      border-radius: 999px;
      border: 1px solid rgba(198,67,47,.24);
      color: var(--red);
      background: rgba(198,67,47,.06);
      padding: 4px 10px;
      font-size: 12px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: .05em;
      margin-bottom: 10px;
    }
    .actions { display: flex; flex-wrap: wrap; gap: 9px; }
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 38px;
      border-radius: 999px;
      padding: 9px 14px;
      background: var(--gold);
      color: var(--night);
      text-decoration: none;
      font-weight: 800;
      font-size: 14px;
    }
    .btn.secondary {
      background: transparent;
      border: 1px solid rgba(17,46,50,.22);
      color: var(--ink);
    }
    .btn:hover { transform: translateY(-1px); }
    .fineprint {
      margin-top: 30px;
      padding: 18px;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: rgba(255,255,255,.72);
      color: var(--muted);
      line-height: 1.7;
    }
    @media (max-width: 900px) {
      .hero-grid { grid-template-columns: 1fr; }
      .cover { justify-self: start; max-width: 180px; }
      .grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .section-head { display: block; }
      .section-head p { margin-top: 8px; }
    }
    @media (max-width: 620px) {
      .grid { grid-template-columns: 1fr; }
      h1 { font-size: 40px; }
    }

    /* Match the main site shell and store-card language. */
    :root {
      --paper: #f7f3e8;
      --paper-2: #fffdf6;
      --accent: #c6432f;
      --gold-deep: #e0a93b;
      --nav-h: 68px;
    }
    body {
      font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, Helvetica, sans-serif;
      color: var(--ink);
      background: var(--paper);
      line-height: 1.55;
      -webkit-font-smoothing: antialiased;
    }
    body::before { content: none; }
    img { max-width: 100%; height: auto; }
    h1, h2, h3, .display { font-family: "Cinzel", "Trajan Pro", "Palatino Linotype", Georgia, "Times New Roman", serif; letter-spacing: 0.01em; }
    main { padding-bottom: 72px; }
    .wrap { width: min(1160px, 100%); margin: 0 auto; }
    .buy { text-align: center; }
    .directory-heading { padding: 78px 24px 28px; }
    .section-eyebrow {
      color: var(--accent);
      font-weight: 700;
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      margin: 0 0 12px;
      font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    }
    .directory-heading h1 {
      margin: 0 0 14px;
      color: var(--ink);
      font-size: clamp(34px, 5vw, 54px);
      line-height: 1.04;
      text-shadow: none;
    }
    .buy-note { font-size: 14px; color: var(--muted); max-width: 640px; margin: 14px auto 0; }
    .section { padding: 56px 24px 0; scroll-margin-top: calc(var(--nav-h) + 10px); }
    .section-head { display: block; text-align: left; margin-bottom: 18px; }
    .section-head h2 { margin: 0 0 8px; font-size: 20px; color: var(--ink); display: inline-flex; align-items: center; gap: 10px; }
    .section-head h2::after { content: ""; height: 1px; width: 60px; background: var(--line); display: inline-block; }
    .section-head p { margin: 0; max-width: 680px; color: var(--muted); line-height: 1.6; }
    .grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
    .grid.single-card { max-width: 380px; margin: 0 auto; grid-template-columns: 1fr; }
    .card {
      background: var(--paper-2);
      border: 1px solid var(--line);
      border-top: 1px solid var(--line);
      border-radius: 14px;
      box-shadow: 0 8px 24px rgba(23,59,63,0.06);
      padding: 24px 24px 22px;
      min-height: 0;
      transition: transform 0.15s ease, box-shadow 0.2s ease, border-color 0.2s;
    }
    .card:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(23,59,63,0.12); border-color: var(--gold-deep); }
    .card h3 { margin: 0 0 6px; font-size: 18px; color: var(--ink); }
    .meta { color: var(--muted); line-height: 1.55; font-size: 14px; margin: 0; }
    .card .actions { margin-top: 12px; display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: auto;
      border-radius: 999px;
      padding: 9px 16px;
      background: var(--gold);
      color: var(--night);
      text-decoration: none;
      font-weight: 700;
      font-size: 14px;
      transition: background 0.2s, transform 0.15s;
    }
    .btn:hover { background: #ffd479; transform: translateY(-1px); }
    .btn.secondary {
      background: transparent;
      border: 0;
      border-bottom: 1px dashed var(--gold-deep);
      border-radius: 0;
      color: var(--muted);
      padding: 0 0 1px;
      font-size: 13px;
      font-weight: 600;
    }
    .btn.secondary:hover { color: var(--accent); background: transparent; }
    @media (max-width: 820px) { .grid { grid-template-columns: 1fr; } }
    @media (max-width: 620px) {
      .directory-heading { padding: 58px 18px 16px; }
      .section { padding: 44px 18px 0; }
      h1 { font-size: clamp(32px, 12vw, 44px); }
      .card { padding: 20px; border-radius: 12px; }
      .card .actions { gap: 11px; }
      .btn { padding: 9px 14px; }
    }
