[hidden]:not([hidden=until-found]){display:none!important}
img{max-width:100%}

  :root{
    /* ---- brand marks: fixed across themes, like ink on a label ---- */
    --brand-ink:#000000;
    --brand-paper:#ffffff;
    --brand-red:#ce1141;
    --brand-red-deep:#98042c;
    --brand-gold:#1a1a1a;

    /* ---- page tokens: light (Chicago Bulls: red / black / white) ---- */
    --bg:#ffffff;
    --bg-alt:#f4f4f4;
    --surface:#ffffff;
    --ink:#0a0a0a;
    --ink-soft:#3f3f3f;
    --ink-faint:#6d6d6d;
    --red:#ce1141;
    --red-deep:#98042c;
    --gold:#111111;
    --line:#dcdcdc;
    --line-strong:#bcbcbc;
    --shadow: 0 1px 2px rgba(0,0,0,.06), 0 10px 30px -12px rgba(0,0,0,.2);
    --focus:#1d6fd6;
  }

  @media (prefers-color-scheme: dark){
    :root:not([data-theme="light"]){
      --bg:#0a0a0a;
      --bg-alt:#141414;
      --surface:#171717;
      --ink:#f5f5f5;
      --ink-soft:#c9c9c9;
      --ink-faint:#8f8f8f;
      --red:#e42457;
      --red-deep:#ab0d38;
      --gold:#f0f0f0;
      --line:#2a2a2a;
      --line-strong:#3c3c3c;
      --shadow: 0 1px 2px rgba(0,0,0,.4), 0 20px 40px -16px rgba(0,0,0,.7);
      --focus:#6fa8ff;
    }
  }
  :root[data-theme="dark"]{
    --bg:#0a0a0a;
    --bg-alt:#141414;
    --surface:#171717;
    --ink:#f5f5f5;
    --ink-soft:#c9c9c9;
    --ink-faint:#8f8f8f;
    --red:#e42457;
    --red-deep:#ab0d38;
    --gold:#f0f0f0;
    --line:#2a2a2a;
    --line-strong:#3c3c3c;
    --shadow: 0 1px 2px rgba(0,0,0,.4), 0 20px 40px -16px rgba(0,0,0,.7);
    --focus:#6fa8ff;
  }

  *,*::before,*::after{ box-sizing:border-box; }
  html{ -webkit-text-size-adjust:100%; }
  body{
    margin:0;
    background:var(--bg);
    color:var(--ink);
    font-family:"Libre Franklin", "Segoe UI", Arial, sans-serif;
    line-height:1.55;
    -webkit-font-smoothing:antialiased;
  }
  img{ max-width:100%; display:block; }
  a{ color:inherit; }
  :focus-visible{ outline:2px solid var(--focus); outline-offset:3px; border-radius:2px; }

  .eyebrow{
    font-family:"Space Mono", ui-monospace, monospace;
    font-size:.72rem;
    letter-spacing:.14em;
    text-transform:uppercase;
    color:var(--red);
  }
  h1,h2,h3{
    font-family:"Anton", "Arial Narrow", sans-serif;
    font-weight:400;
    letter-spacing:.01em;
    text-wrap:balance;
    margin:0;
  }
  .lede{ color:var(--ink-soft); text-wrap:pretty; }

  .wrap{ max-width:1180px; margin-inline:auto; padding-inline:clamp(1.25rem,4vw,2.5rem); }

  /* ================= header ================= */
  header.site{
    position:sticky; top:0; z-index:40;
    background:var(--brand-ink);
    border-bottom:3px solid var(--brand-red);
  }
  .site-bar{
    display:flex; align-items:center; justify-content:space-between;
    gap:1.5rem; padding-block:.8rem;
  }
  .logo{
    display:flex; align-items:center; gap:.65rem;
    text-decoration:none;
  }
  .logo-plaque{
    font-family:"Anton", sans-serif;
    background:var(--brand-red);
    color:var(--brand-paper);
    padding:.28rem .6rem .18rem;
    border-radius:6px;
    font-size:1.35rem;
    letter-spacing:.03em;
    box-shadow: inset 0 0 0 2px rgba(255,255,255,.35);
    line-height:1;
  }
  .logo-mark{
    width:100px; height:100px;
    border-radius:50%;
    display:block;
    box-shadow: 0 0 0 2px rgba(255,255,255,.25);
  }
  .wall-band{
    background:var(--brand-red);
    padding-block:clamp(2.4rem,5vw,3.6rem);
  }
  .wall-band .eyebrow{ color:var(--brand-paper); opacity:.85; }
  .wall-grid{
    display:grid;
    grid-template-columns:1fr 1.7fr 1fr;
    gap:.9rem;
    margin-top:1.8rem;
  }
  .wall-photo{
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 10px 30px -12px rgba(0,0,0,.5);
  }
  .wall-photo img{ width:100%; height:100%; object-fit:cover; display:block; aspect-ratio:4/3; }
  @media (max-width:760px){
    .wall-grid{ grid-template-columns:1fr; }
  }
  .footer-brand{
    display:flex; align-items:center; gap:.6rem;
    font-family:"Anton", sans-serif;
    font-size:1.1rem;
    letter-spacing:.02em;
    margin-bottom:1.6rem;
  }
  .footer-brand .logo-mark{ width:40px; height:40px; }
  .logo-sub{
    font-family:"Space Mono", monospace;
    font-size:.62rem;
    letter-spacing:.16em;
    text-transform:uppercase;
    color:var(--brand-paper);
    opacity:.72;
  }
  nav.primary{ display:flex; align-items:center; gap:1.6rem; }
  nav.primary a{
    color:var(--brand-paper);
    text-decoration:none;
    font-size:.88rem;
    font-weight:600;
    opacity:.85;
  }
  nav.primary a:hover{ opacity:1; text-decoration:underline; text-underline-offset:4px; }
  .nav-links{ display:flex; gap:1.6rem; }
  .btn{
    display:inline-flex; align-items:center; gap:.45rem;
    font-weight:700; font-size:.85rem;
    padding:.62rem 1.05rem;
    border-radius:7px;
    text-decoration:none;
    border:1px solid transparent;
    white-space:nowrap;
  }
  .btn-primary{ background:var(--brand-red); color:var(--brand-paper); }
  .btn-primary:hover{ background:var(--brand-red-deep); }
  .btn-ghost{
    background:transparent; color:var(--ink); border-color:var(--line-strong);
  }
  .btn-ghost:hover{ background:var(--bg-alt); }
  .btn-ghost-dark{ background:transparent; color:var(--brand-paper); border-color:rgba(255,255,255,.4); }
  .btn-ghost-dark:hover{ background:rgba(255,255,255,.1); }
  nav.primary a.active{ opacity:1; text-decoration:underline; text-underline-offset:4px; }

  /* ================= collection tiles (home) ================= */
  .collection-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(280px,1fr));
    gap:1.2rem;
  }
  .collection-tile{
    position:relative;
    overflow:hidden;
    background:var(--surface);
    border:1px solid var(--line);
    border-radius:16px;
    text-decoration:none;
    color:var(--ink);
    box-shadow:var(--shadow);
    display:flex; flex-direction:column;
  }
  .collection-photo{ aspect-ratio:4/5; overflow:hidden; }
  .collection-photo img{ object-position:center; }
  .collection-photo img{ width:100%; height:100%; object-fit:cover; display:block; }
  .collection-tile-body{ position:relative; padding:1.6rem 1.8rem 1.8rem; }
  .collection-num{
    position:absolute; top:-.4rem; right:1.2rem;
    font-family:"Anton", sans-serif;
    font-size:5.5rem;
    color:var(--red);
    opacity:.12;
    line-height:1;
    pointer-events:none;
  }
  .collection-tile h3{ font-size:1.5rem; max-width:16ch; }
  .collection-tile p{ color:var(--ink-soft); margin:.5rem 0 0; max-width:34ch; font-size:.92rem; position:relative; }
  .collection-stats{
    display:flex; flex-wrap:wrap; gap:.5rem;
    margin-top:.9rem; position:relative;
  }
  .collection-stats span{
    font-family:"Space Mono", monospace;
    font-size:.68rem;
    letter-spacing:.03em;
    text-transform:uppercase;
    color:var(--ink-faint);
    background:var(--bg-alt);
    border:1px solid var(--line);
    padding:.25rem .5rem;
    border-radius:99px;
  }
  .collection-cta{
    margin-top:1.1rem;
    font-family:"Space Mono", monospace;
    font-size:.78rem;
    font-weight:700;
    color:var(--red);
    position:relative;
    display:inline-block;
  }

  /* ================= collection pages ================= */
  .back-link{
    display:block; width:fit-content;
    font-family:"Space Mono", monospace;
    font-size:.78rem;
    color:var(--ink-faint);
    text-decoration:none;
    margin-bottom:1.6rem;
  }
  .back-link:hover{ color:var(--red); }
  .page-hero{
    background:var(--bg-alt);
    border-bottom:1px solid var(--line);
    padding-block:clamp(2.4rem,6vw,4rem);
  }
  .page-hero h1{
    font-size:clamp(2.1rem,4.2vw,3.1rem);
    max-width:22ch;
  }
  .page-hero .lede{ max-width:58ch; margin-top:.8rem; font-size:1.05rem; }
  .page-hero .hero-ctas{ margin-top:1.4rem; }

  /* ================= checklist call-to-action ================= */
  .btn-checklist{ background:var(--brand-ink); color:var(--brand-paper); border-color:var(--brand-ink); }
  .btn-checklist:hover{ background:var(--red); border-color:var(--red); }
  :root[data-theme="dark"] .btn-checklist{ border-color:var(--line-strong); }
  .checklist-cta{
    display:flex; align-items:center; justify-content:space-between; gap:1.5rem;
    background:var(--brand-red);
    color:var(--brand-paper);
    text-decoration:none;
    border-radius:14px;
    padding:1.5rem 1.8rem;
    margin-bottom:2rem;
    box-shadow:0 12px 30px -12px rgba(206,17,65,.6);
    border:2px solid var(--brand-red);
  }
  button.checklist-cta, button.btn-checklist{ font:inherit; cursor:pointer; text-align:left; }
  button.checklist-cta{ width:100%; }
  button.btn-checklist{ font-weight:700; font-size:.85rem; }
  .checklist-cta:hover{ background:var(--brand-red-deep); border-color:var(--brand-red-deep); }
  .checklist-cta-text{ display:flex; flex-direction:column; gap:.3rem; }
  .checklist-cta-kicker{
    font-family:"Space Mono", monospace; font-size:.7rem; letter-spacing:.12em;
    text-transform:uppercase; opacity:.85;
  }
  .checklist-cta-title{
    font-family:"Anton", sans-serif; font-size:clamp(1.5rem,3.2vw,2.15rem);
    letter-spacing:.01em; line-height:1.05;
  }
  .checklist-cta-sub{ font-size:.92rem; opacity:.92; max-width:52ch; }
  .checklist-cta-btn{
    flex-shrink:0;
    background:var(--brand-paper); color:var(--brand-red-deep);
    font-weight:800; font-size:.95rem;
    padding:.85rem 1.3rem; border-radius:9px; white-space:nowrap;
  }
  @media (prefers-reduced-motion:no-preference){
    .checklist-cta-btn span{ display:inline-block; transition:transform .18s ease; }
    .checklist-cta:hover .checklist-cta-btn span{ transform:translateX(4px); }
  }
  @media (max-width:640px){
    .checklist-cta{ flex-direction:column; align-items:flex-start; padding:1.3rem; }
    .checklist-cta-btn{ width:100%; text-align:center; }
  }

  /* ================= checklist table ================= */
  .checklist-block{ margin-bottom:2.4rem; }
  .checklist-block h3{
    font-family:"Space Mono", monospace;
    font-weight:700;
    font-size:.82rem;
    letter-spacing:.08em;
    text-transform:uppercase;
    color:var(--ink-faint);
    margin-bottom:.7rem;
  }
  .table-scroll{ overflow-x:auto; border:1px solid var(--line); border-radius:10px; }
  table.checklist-table{
    width:100%;
    border-collapse:collapse;
    font-size:.86rem;
    min-width:640px;
  }
  .checklist-table th, .checklist-table td{
    text-align:left;
    padding:.55rem .75rem;
    white-space:nowrap;
  }
  .checklist-table thead th{
    background:var(--bg-alt);
    font-family:"Space Mono", monospace;
    font-size:.68rem;
    letter-spacing:.06em;
    text-transform:uppercase;
    color:var(--ink-faint);
    border-bottom:1px solid var(--line-strong);
    position:sticky; top:0;
  }
  .checklist-table td{
    border-bottom:1px solid var(--line);
    font-variant-numeric:tabular-nums;
  }
  .checklist-table td:first-child{ color:var(--ink-faint); }
  .checklist-table tbody tr:hover{ background:var(--bg-alt); }
  .checklist-table td:nth-child(3), .checklist-table td:nth-child(4){ white-space:normal; }
  .nb-flag{ color:var(--red); font-weight:700; cursor:help; }
  .dual-note{ font-size:.78rem; color:var(--ink-faint); white-space:normal; }
  .checklist-legend{
    font-family:"Space Mono", monospace;
    font-size:.78rem;
    color:var(--ink-faint);
    margin-top:.5rem;
  }
  .set-notes{
    background:var(--bg-alt);
    border:1px solid var(--line);
    border-radius:12px;
    padding:1.4rem 1.6rem;
    margin-top:2.2rem;
    font-size:.92rem;
    color:var(--ink-soft);
  }
  .set-notes h4{
    font-family:"Libre Franklin"; font-weight:700; font-size:.95rem;
    color:var(--ink); margin:0 0 .5rem;
  }
  .set-notes + .set-notes{ margin-top:1rem; }

  /* ================= checklist: sharp, banded, color-coded ================= */
  .cl-filters{
    display:flex; flex-wrap:wrap; align-items:center; gap:.5rem;
    margin-bottom:.6rem;
  }
  .cl-filter-label{
    font-family:"Space Mono", monospace; font-size:.7rem; letter-spacing:.12em;
    text-transform:uppercase; color:var(--ink-faint); margin-right:.2rem;
  }
  .cl-chip{
    display:inline-flex; align-items:center; gap:.45rem;
    font:inherit; font-size:.8rem; font-weight:700;
    padding:.5rem .85rem; border-radius:99px;
    background:var(--surface); color:var(--ink);
    border:1.5px solid var(--line-strong); cursor:pointer;
  }
  .cl-chip b{ font-family:"Space Mono", monospace; font-size:.72rem; color:var(--red); }
  .cl-chip:hover{ border-color:var(--ink); }
  .cl-chip.is-on{ background:var(--brand-ink); color:var(--brand-paper); border-color:var(--brand-ink); }
  .cl-chip.is-on b{ color:var(--brand-paper); }
  :root[data-theme="dark"] .cl-chip.is-on{ background:var(--brand-red); border-color:var(--brand-red); }
  .cl-count{
    font-family:"Space Mono", monospace; font-size:.74rem; color:var(--ink-faint);
    margin:0 0 1.4rem; min-height:1.2em;
  }
  .dot{ width:.8rem; height:.8rem; border-radius:50%; display:inline-block; border:1.5px solid rgba(0,0,0,.35); }
  .dot-bm{ background:#111; }
  .dot-ws{ background:#fff; }
  .dot-bgc{ background:linear-gradient(135deg,#111 50%,#d9a520 50%); }
  .dot-gold{ background:#e8b52a; }

  .table-scroll{ border:none; border-radius:12px; overflow:clip; box-shadow:var(--shadow); }
  table.checklist-table{ min-width:0; width:100%; font-size:.92rem; }
  .checklist-table thead th{
    background:var(--brand-ink); color:var(--brand-paper);
    font-size:.7rem; letter-spacing:.1em;
    padding:.85rem .9rem;
    border-bottom:3px solid var(--brand-red);
    top:129px;
    z-index:2;
  }
  .checklist-table td{ padding:.7rem .9rem; border-bottom:1px solid var(--line); vertical-align:middle; }
  .checklist-table tbody tr:nth-child(even){ background:var(--bg-alt); }
  .checklist-table tbody tr:hover{ background:rgba(206,17,65,.08); }
  .checklist-table td.c-num{ color:var(--ink-faint); font-family:"Space Mono", monospace; font-size:.8rem; width:3rem; }
  .checklist-table td.c-player{ font-weight:700; color:var(--ink); }
  .checklist-table td.c-col{ color:var(--ink-soft); }
  .checklist-table tbody tr.r10{ box-shadow:inset 4px 0 0 var(--brand-red); background:rgba(206,17,65,.06); }
  .checklist-table tbody tr.r10:nth-child(even){ background:rgba(206,17,65,.10); }
  .checklist-table td.c-cert{ font-family:"Space Mono", monospace; font-size:.82rem; }
  .checklist-table td.c-cert a{ color:var(--ink); text-decoration:underline; text-decoration-color:var(--line-strong); text-underline-offset:3px; }
  .checklist-table td.c-cert a:hover{ color:var(--red); text-decoration-color:var(--red); }
  .checklist-table .dual-note{ display:block; margin-top:.3rem; }

  .chip{
    display:inline-block; white-space:nowrap;
    font-size:.74rem; font-weight:800; letter-spacing:.02em;
    padding:.28rem .6rem; border-radius:6px;
    border:1.5px solid transparent;
  }
  .chip-bm{ background:#111; color:#fff; }
  .chip-ws{ background:#fff; color:#111; border-color:#b9b9b9; }
  .chip-bgc{ background:linear-gradient(100deg,#111 55%,#8a6a12 100%); color:#f3cf63; }
  .chip-gold{ background:#f1bf3a; color:#2a1f00; }
  .chip-base{ background:var(--bg-alt); color:var(--ink-soft); border-color:var(--line-strong); }
  .chip-oth{ background:var(--bg-alt); color:var(--ink); border-color:var(--line-strong); }
  :root[data-theme="dark"] .chip-bm{ border-color:#444; }

  .grade{
    display:inline-block; min-width:4.6rem; text-align:center;
    font-family:"Space Mono", monospace; font-size:.78rem; font-weight:700;
    padding:.3rem .55rem; border-radius:6px; white-space:nowrap;
  }
  .grade.g10{ background:var(--brand-red); color:#fff; }
  .grade.g9{ background:var(--brand-ink); color:#fff; }
  .grade.g8{ background:transparent; color:var(--ink); border:1.5px solid var(--ink-faint); }
  .grade.gna{ background:transparent; color:var(--ink-faint); border:1.5px dashed var(--line-strong); }
  :root[data-theme="dark"] .grade.g9{ background:#2b2b2b; }

  @media (max-width:640px){
    .table-scroll{ overflow:visible; box-shadow:none; border-radius:0; }
    .checklist-table, .checklist-table tbody{ display:block; }
    .checklist-table thead{ display:none; }
    .checklist-table tbody tr{
      display:grid; grid-template-columns:auto 1fr auto; gap:.15rem .7rem; align-items:center;
      padding:.85rem .95rem; margin-bottom:.6rem;
      background:var(--surface); border:1px solid var(--line); border-radius:12px;
    }
    .checklist-table tbody tr:nth-child(even){ background:var(--surface); }
    .checklist-table tbody tr.r10, .checklist-table tbody tr.r10:nth-child(even){
      background:rgba(206,17,65,.06); box-shadow:inset 4px 0 0 var(--brand-red);
    }
    .checklist-table td{ display:block; padding:0; border:none; white-space:normal; width:auto; }
    .checklist-table td.c-num{ grid-column:1; grid-row:1; font-size:.85rem; }
    .checklist-table td.c-player{ grid-column:2; grid-row:1; font-size:1rem; }
    .checklist-table td.c-grade{ grid-column:3; grid-row:1; text-align:right; }
    .checklist-table td.c-col{ grid-column:2 / 4; grid-row:2; font-size:.82rem; }
    .checklist-table td.c-par{ grid-column:1 / 4; grid-row:3; margin-top:.4rem; }
    .checklist-table td.c-cert{ grid-column:1 / 4; grid-row:4; margin-top:.4rem; }
    .checklist-table td.c-cert::before{ content:"PSA cert  "; color:var(--ink-faint); font-size:.7rem; letter-spacing:.06em; text-transform:uppercase; }
    .cl-chip{ font-size:.76rem; padding:.45rem .7rem; }
  }

  /* ================= real photos ================= */
  .showcase-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(240px,1fr));
    gap:1.3rem;
  }
  .photo-card{
    display:block;
    background:var(--surface);
    border:1px solid var(--line);
    border-radius:14px;
    overflow:hidden;
    box-shadow:var(--shadow);
    text-decoration:none;
    color:var(--ink);
  }
  .photo-card img{ width:100%; aspect-ratio:4/5; object-fit:cover; display:block; }
  #featured .photo-card img{ aspect-ratio:2/3; object-position:center 30%; }
  .photo-card .photo-caption{ padding:.9rem 1.05rem 1.05rem; }
  .photo-card .photo-caption .cat{ font-size:.72rem; color:var(--ink-faint); text-transform:uppercase; letter-spacing:.05em; }
  .photo-card .photo-caption h3{ font-family:"Libre Franklin"; font-weight:700; font-size:1rem; margin-top:.25rem; }
  .photo-card .photo-caption p{ margin:.3rem 0 0; font-size:.85rem; color:var(--ink-soft); }
  .page-hero-photo-wrap{
    width:100%;
    max-height:420px;
    aspect-ratio:16/7;
    overflow:hidden;
    border-radius:14px;
    margin-top:1.8rem;
    box-shadow:var(--shadow);
    border:1px solid var(--line-strong);
  }
  .page-hero-photo{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
  }
  @media (prefers-reduced-motion:no-preference){
    .page-hero-photo{ animation:hero-kenburns 24s ease-in-out infinite alternate; }
  }
  @keyframes hero-kenburns{
    from{ transform:scale(1) translate(0,0); }
    to{ transform:scale(1.08) translate(-1%,-1%); }
  }
  .box-hero{ aspect-ratio:16/9; max-height:520px; }
  .box-hero .page-hero-photo{ object-position:center 52%; }
  .wall-figure{ margin:2.4rem 0 0; }
  .wall-figure .wall-photo-wrap{ margin-top:0; aspect-ratio:auto; max-height:none; max-width:560px; margin-inline:auto; }
  .wall-figure .page-hero-photo{ height:auto; animation:none; }
  .wall-figure figcaption{ text-align:center; font-family:"Space Mono",monospace; font-size:.74rem; color:var(--ink-faint); margin-top:.7rem; }
  .provenance-card{
    display:flex;
    align-items:center;
    gap:1.4rem;
    background:var(--surface);
    border:1px solid var(--line);
    border-radius:14px;
    padding:1.2rem;
    margin-bottom:1.6rem;
    box-shadow:var(--shadow);
  }
  .provenance-card img{ width:140px; height:auto; border-radius:8px; flex-shrink:0; box-shadow:0 4px 14px rgba(0,0,0,.15); }
  .provenance-card .cat{ font-size:.72rem; text-transform:uppercase; letter-spacing:.05em; color:var(--ink-faint); }
  .provenance-card p{ margin:.3rem 0 0; font-size:.92rem; color:var(--ink-soft); }
  @media (max-width:480px){
    .provenance-card{ flex-direction:column; align-items:flex-start; }
    .provenance-card img{ width:100%; max-width:220px; }
  }
  @media (max-width:560px){
    .logo-mark{ width:64px; height:64px; }
    .logo-sub{ display:none; }
    .site-bar{ gap:.75rem; }
    nav.primary{ gap:.75rem; }
  }
  .pop-sheet-card{ margin-top:1.8rem; }
  .pop-sheet-card img{
    width:100%;
    border-radius:10px;
    border:1px solid var(--line-strong);
    box-shadow:var(--shadow);
  }
  .pop-sheet-card p{ margin-top:.6rem; font-size:.8rem; color:var(--ink-faint); font-family:"Space Mono",monospace; }
  .pop-sheet-zoom{
    display:block; width:100%; padding:0; margin:0;
    border:none; background:none; cursor:zoom-in;
  }
  .pop-sheet-zoom img{ pointer-events:none; }

  /* ================= lightbox ================= */
  .lightbox{
    position:fixed; inset:0; z-index:100;
    background:rgba(0,0,0,.88);
    display:flex; align-items:center; justify-content:center;
    padding:2rem;
  }
  .lightbox img{
    max-width:100%; max-height:100%;
    border-radius:8px;
    box-shadow:0 20px 60px rgba(0,0,0,.6);
  }
  .lightbox-close{
    position:absolute; top:1.2rem; right:1.2rem;
    width:2.6rem; height:2.6rem;
    border-radius:50%;
    border:1px solid rgba(255,255,255,.3);
    background:rgba(255,255,255,.1);
    color:#fff;
    font-size:1.3rem;
    line-height:1;
    cursor:pointer;
  }
  .lightbox-close:hover{ background:rgba(255,255,255,.2); }
  .slab-art img{ width:100%; height:100%; object-fit:cover; }
  .social-proof{
    display:flex; align-items:center; gap:1rem;
    background:var(--surface);
    border:1px solid var(--line);
    border-radius:12px;
    padding:.9rem;
    margin-top:1.2rem;
  }
  .social-proof img{ width:84px; height:84px; object-fit:cover; border-radius:8px; flex-shrink:0; }
  .social-proof .sp-text{ font-size:.85rem; color:var(--ink-soft); }
  .social-proof .sp-text b{ display:block; color:var(--ink); font-family:"Space Mono",monospace; font-size:.95rem; }

  .major-sale{
    display:flex;
    background:var(--brand-ink);
    border-radius:14px;
    overflow:hidden;
    margin-top:1.6rem;
    box-shadow:var(--shadow);
  }
  .major-sale img{ width:38%; min-width:180px; object-fit:cover; }
  .hero-wordmark{ height:56px; width:auto; margin-bottom:1.2rem; }
  .footer-wordmark{ height:40px; width:auto; display:block; }
  .major-sale-text{
    padding:1.6rem 1.8rem;
    display:flex; flex-direction:column; justify-content:center; gap:.5rem;
  }
  .major-sale-badge{
    display:inline-block; align-self:flex-start;
    background:var(--brand-red); color:var(--brand-paper);
    font-family:"Space Mono", monospace;
    font-size:.68rem; letter-spacing:.08em; text-transform:uppercase; font-weight:700;
    padding:.25rem .55rem; border-radius:99px;
  }
  .major-sale-text h3{ font-family:"Anton", sans-serif; color:var(--brand-paper); font-size:1.5rem; }
  .major-sale-text p{ color:var(--brand-paper); opacity:.8; font-size:.92rem; margin:0; max-width:46ch; }
  .major-sale-text a{ color:var(--red); font-weight:700; font-size:.85rem; text-decoration:none; margin-top:.3rem; }
  .major-sale-text a:hover{ text-decoration:underline; }
  @media (max-width:640px){
    .major-sale{ flex-direction:column; }
    .major-sale img{ width:100%; aspect-ratio:4/3; }
  }

  /* ================= hero ================= */
  .hero{
    position:relative;
    overflow:hidden;
    background:var(--bg-alt);
    border-bottom:1px solid var(--line);
  }
  .hero-ghost{
    position:absolute;
    right:clamp(-3rem,-2vw,2rem);
    top:50%; transform:translateY(-50%);
    font-family:"Anton", sans-serif;
    font-size:clamp(14rem, 34vw, 26rem);
    line-height:1;
    color:var(--red);
    opacity:.07;
    pointer-events:none;
    user-select:none;
  }
  .hero-inner{
    position:relative;
    padding-block:clamp(3.5rem,8vw,6.5rem);
    max-width:640px;
  }
  .hero h1{
    font-size:clamp(2.6rem, 5.6vw, 4.4rem);
    line-height:.98;
    margin-top:.6rem;
  }
  .hero h1 em{
    font-style:normal;
    color:var(--red);
  }
  .hero .lede{
    font-size:1.08rem;
    max-width:34ch;
    margin-top:1.1rem;
  }
  .hero-ctas{ display:flex; flex-wrap:wrap; gap:.8rem; margin-top:1.8rem; }

  .stat-strip{
    display:flex; flex-wrap:wrap;
    gap:0;
    margin-top:2.6rem;
    border-top:1px solid var(--line-strong);
  }
  .stat{
    padding:.9rem 1.4rem .9rem 0;
    margin-right:1.4rem;
    border-right:1px solid var(--line);
  }
  .stat:last-child{ border-right:none; }
  .stat b{
    display:block;
    font-family:"Space Mono", monospace;
    font-size:1.15rem;
    font-variant-numeric:tabular-nums;
  }
  .stat span{
    font-size:.74rem;
    color:var(--ink-faint);
    text-transform:uppercase;
    letter-spacing:.06em;
  }

  /* ================= sections ================= */
  section{ padding-block:clamp(3rem,6vw,5rem); }
  .section-head{
    display:flex; align-items:flex-end; justify-content:space-between;
    gap:1.5rem; margin-bottom:2rem; flex-wrap:wrap;
  }
  .section-head h2{ font-size:clamp(1.9rem,3.4vw,2.6rem); margin-top:.35rem; }
  .section-link{
    font-family:"Space Mono", monospace;
    font-size:.78rem;
    text-decoration:none;
    color:var(--red);
    white-space:nowrap;
    border-bottom:1px solid currentColor;
    padding-bottom:2px;
  }

  /* categories */
  .cat-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(220px,1fr));
    gap:1rem;
  }
  .cat-card{
    background:var(--surface);
    border:1px solid var(--line);
    border-radius:12px;
    padding:1.4rem 1.3rem 1.5rem;
    box-shadow:var(--shadow);
    text-decoration:none;
    color:var(--ink);
    position:relative;
    overflow:hidden;
  }
  .cat-card::before{
    content:"";
    position:absolute; inset:0 0 auto 0; height:4px;
    background:var(--red);
  }
  .cat-num{
    font-family:"Space Mono", monospace;
    font-size:.72rem;
    color:var(--ink-faint);
  }
  .cat-card h3{
    font-size:1.3rem;
    margin-top:.5rem;
  }
  .cat-card p{
    color:var(--ink-soft);
    font-size:.92rem;
    margin:.5rem 0 0;
  }

  /* featured slabs */
  .sample-note{
    font-family:"Space Mono", monospace;
    font-size:.74rem;
    color:var(--ink-faint);
    background:var(--bg-alt);
    border:1px dashed var(--line-strong);
    border-radius:8px;
    padding:.7rem 1rem;
    margin-bottom:2rem;
  }
  .slab-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(230px,1fr));
    gap:1.3rem;
  }
  .slab{
    background:var(--surface);
    border:1px solid var(--line);
    border-radius:14px;
    overflow:hidden;
    box-shadow:var(--shadow);
    display:flex; flex-direction:column;
  }
  .slab-label{
    display:flex; align-items:center; justify-content:space-between;
    background:var(--brand-ink);
    color:var(--brand-paper);
    padding:.5rem .75rem;
    font-family:"Space Mono", monospace;
    font-size:.66rem;
    letter-spacing:.05em;
    text-transform:uppercase;
  }
  .slab-grade{
    background:var(--brand-red);
    color:var(--brand-paper);
    font-weight:700;
    border-radius:4px;
    padding:.12rem .4rem;
  }
  .slab-art{
    aspect-ratio:5/4;
    background:
      repeating-linear-gradient(135deg, transparent 0 10px, rgba(206,17,65,.08) 10px 20px),
      linear-gradient(160deg, var(--bg-alt), var(--surface));
    display:flex; align-items:center; justify-content:center;
    position:relative;
    border-bottom:1px solid var(--line);
  }
  .slab-art .num{
    font-family:"Anton", sans-serif;
    font-size:3.6rem;
    color:var(--red);
    opacity:.5;
  }
  .slab-ribbon{
    position:absolute; top:.6rem; left:.6rem;
    font-family:"Space Mono", monospace;
    font-size:.6rem;
    letter-spacing:.08em;
    text-transform:uppercase;
    background:var(--surface);
    border:1px solid var(--line-strong);
    color:var(--ink-faint);
    padding:.15rem .45rem;
    border-radius:99px;
  }
  .slab-art.photo{ aspect-ratio:2/3; background:var(--bg-alt); }
  .slab-art.photo .pop-sheet-zoom{ height:100%; }
  .slab-art.photo img{ width:100%; height:100%; object-fit:cover; pointer-events:none; }
  .slab-body{ padding:.85rem 1rem 1rem; display:flex; flex-direction:column; gap:.25rem; flex:1; }
  .slab-body .cat{ font-size:.72rem; color:var(--ink-faint); text-transform:uppercase; letter-spacing:.05em; }
  .slab-body h3{ font-family:"Libre Franklin",sans-serif; font-weight:700; font-size:1.02rem; }
  .slab-price{ margin-top:auto; padding-top:.5rem; display:flex; align-items:center; justify-content:space-between; }
  .slab-price b{ font-family:"Space Mono",monospace; font-variant-numeric:tabular-nums; }
  .slab-price a{ font-size:.78rem; text-decoration:none; color:var(--red); font-weight:700; }

  /* how it works */
  .how{ background:var(--bg-alt); border-block:1px solid var(--line); }
  .how-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(230px,1fr));
    gap:2rem;
  }
  .how-step{ position:relative; padding-left:3.1rem; }
  .how-step .n{
    position:absolute; left:0; top:-.2rem;
    font-family:"Anton", sans-serif;
    font-size:2.4rem;
    color:var(--red);
    opacity:.35;
  }
  .how-step h3{ font-family:"Libre Franklin"; font-weight:700; font-size:1.08rem; }
  .how-step p{ color:var(--ink-soft); font-size:.93rem; margin-top:.35rem; }

  /* about */
  .about{
    display:grid;
    grid-template-columns:1.1fr 1fr;
    gap:3rem;
    align-items:center;
  }
  .about-card{
    background:var(--surface);
    border:1px solid var(--line);
    border-radius:14px;
    box-shadow:var(--shadow);
    padding:1.8rem;
  }
  .about-card .eyebrow{ display:block; margin-bottom:.4rem; }
  .trust-list{ list-style:none; margin:1.1rem 0 0; padding:0; display:grid; gap:.55rem; }
  .trust-list li{ display:flex; gap:.6rem; font-size:.92rem; color:var(--ink-soft); }
  .trust-list li::before{ content:"—"; color:var(--red); font-weight:700; }

  /* footer */
  footer{
    background:var(--brand-ink);
    color:var(--brand-paper);
    padding-block:2.6rem 2rem;
  }
  .footer-grid{
    display:flex; flex-wrap:wrap; gap:2.5rem;
    justify-content:space-between;
    padding-bottom:1.6rem;
    border-bottom:1px solid rgba(255,255,255,.15);
  }
  .footer-col h4{
    font-family:"Space Mono", monospace;
    font-size:.72rem;
    letter-spacing:.1em;
    text-transform:uppercase;
    opacity:.6;
    margin:0 0 .7rem;
  }
  .footer-col a{
    display:block;
    color:var(--brand-paper);
    text-decoration:none;
    font-size:.92rem;
    opacity:.88;
    margin-bottom:.5rem;
  }
  .footer-col a:hover{ opacity:1; text-decoration:underline; }
  .social-link{ display:flex !important; align-items:center; gap:.55rem; }
  .social-link svg{ flex-shrink:0; }
  .social-link:hover svg{ color:var(--red); }
  .footer-bottom{
    display:flex; flex-wrap:wrap; gap:1rem;
    justify-content:space-between;
    padding-top:1.4rem;
    font-size:.78rem;
    opacity:.6;
    font-family:"Space Mono", monospace;
  }

  .nav-toggle{
    display:none;
    flex-direction:column;
    justify-content:center;
    gap:5px;
    width:2.2rem; height:2.2rem;
    padding:0;
    border:none;
    background:none;
    cursor:pointer;
  }
  .nav-toggle span{
    display:block;
    height:2px;
    width:100%;
    background:var(--brand-paper);
    border-radius:2px;
  }
  @media (max-width:820px){
    .nav-toggle{ display:flex; }
    nav.primary .nav-links{
      display:none;
      position:absolute;
      top:100%; left:0; right:0;
      flex-direction:column;
      gap:0;
      background:var(--brand-ink);
      border-top:1px solid rgba(255,255,255,.15);
      border-bottom:3px solid var(--brand-red);
      padding:.4rem 0;
    }
    nav.primary .nav-links.open{ display:flex; }
    nav.primary .nav-links a{
      padding:.9rem var(--wrap-pad, 1.5rem);
      border-bottom:1px solid rgba(255,255,255,.08);
    }
    .about{ grid-template-columns:1fr; }
    .hero-ghost{ font-size:16rem; opacity:.06; }
    .page-hero-photo-wrap{ aspect-ratio:4/3; max-height:none; }
    .lightbox{ padding:.75rem; }
  }

  /* ================= phone polish ================= */
  @media (max-width:560px){
    section{ padding-block:2.4rem; }
    .hero-inner{ padding-block:1.8rem 2.4rem; }
    .hero-wordmark{ height:44px; margin-bottom:1rem; }
    .page-hero{ padding-block:1.8rem 2.2rem; }
    .back-link{ margin-bottom:1.1rem; }
    .page-hero-photo-wrap{ aspect-ratio:auto; max-height:none; }
    .page-hero-photo{ height:auto; animation:none; }
    .stat-strip{
      display:grid; grid-template-columns:1fr 1fr; gap:0 1rem;
      margin-top:1.6rem;
    }
    .stat{ padding:.8rem 0; margin:0; border-right:none; border-bottom:1px solid var(--line); }
    .hero-ctas{ flex-direction:column; align-items:stretch; }
    .hero-ctas .btn{ width:100%; justify-content:center; text-align:center; white-space:normal; }
    .slab-grid{ grid-template-columns:1fr 1fr; gap:.8rem; }
    .slab-label{ font-size:.56rem; padding:.4rem .5rem; gap:.3rem; }
    .slab-art{ aspect-ratio:1/1; }
    .slab-art .num{ font-size:2.4rem; }
    .slab-body{ padding:.65rem .75rem .8rem; }
    .slab-body h3{ font-size:.88rem; }
    .slab-body .cat{ font-size:.62rem; }
    .slab-price{ flex-wrap:wrap; gap:.3rem; }
    .checklist-cta-title{ font-size:1.55rem; }
    .section-head{ margin-bottom:1.4rem; }
  }

  @media (prefers-reduced-motion:no-preference){
    .slab, .cat-card, .photo-card{ transition:transform .18s ease, box-shadow .18s ease; }
    .slab:hover, .cat-card:hover, .photo-card:hover{ transform:translateY(-3px); }
  }
