      /* ---------- TICKET GRID ---------- */
      /* masonry: JS drops each card into the shortest column so tall stacks don't leave dead space */
      .grid {
        display: flex;
        gap: 22px;
        align-items: flex-start;
      }
      .grid-col {
        flex: 1 1 0;
        min-width: 0;
        display: flex;
        flex-direction: column;
        gap: 22px;
      }
      .grid.is-empty {
        display: block;
      }
      .ticket-wrap {
        position: relative;
      }
      .lookmovie-link {
        position: absolute;
        top: 12px;
        right: 12px;
        background: var(--gold);
        color: var(--bg);
        border-radius: 50%;
        width: 28px;
        height: 28px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        font-size: 14px;
        z-index: 10;
        opacity: 0;
        transition: opacity 0.2s ease, transform 0.2s ease;
        box-shadow: 0 2px 5px rgba(0,0,0,0.3);
      }
      .ticket-wrap:hover .lookmovie-link {
        opacity: 1;
      }
      .lookmovie-link:hover {
        transform: scale(1.15);
      }
      .ticket {
        --stub: 46px;
        position: relative;
        display: grid;
        grid-template-columns: var(--stub) 1fr;
        text-align: left;
        cursor: pointer;
        background: var(--paper);
        color: var(--paper-ink);
        border: none;
        border-radius: 8px;
        padding: 0;
        overflow: hidden;
        min-height: 196px;
        border-left: 4px solid var(--accent, var(--gold));
        transition: transform 0.18s ease;
        font: inherit;
      }
      .ticket.film {
        --accent: var(--gold);
      }
      .ticket.tv {
        --accent: var(--red);
      }
      .ticket:hover {
        transform: translateY(-4px);
      }
      /* punched holes — REAL transparent cut-throughs at the seam (top & bottom), so whatever is behind
   the card (page background, or a stacked card below) shows straight through, always */
      /* holes sit on the seam = 4px accent border + 46px stub (mask is measured from the border box) */
      .ticket:not(.ghost) {
        -webkit-mask:
          radial-gradient(
            circle at calc(var(--stub) + 4px) 0,
            #0000 6.4px,
            #000 6.6px
          ),
          radial-gradient(
            circle at calc(var(--stub) + 4px) 100%,
            #0000 6.4px,
            #000 6.6px
          );
        -webkit-mask-composite: source-in;
        mask:
          radial-gradient(
            circle at calc(var(--stub) + 4px) 0,
            #0000 6.4px,
            #000 6.6px
          ),
          radial-gradient(
            circle at calc(var(--stub) + 4px) 100%,
            #0000 6.4px,
            #000 6.6px
          );
        mask-composite: intersect;
      }
      .stub {
        position: relative;
        background: var(--paper-2);
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 14px 0;
      }
      .stub::after {
        content: "";
        position: absolute;
        top: 9px;
        bottom: 9px;
        right: -1px;
        width: 2px;
        background-image: linear-gradient(
          to bottom,
          rgba(28, 22, 16, 0.34) 50%,
          transparent 50%
        );
        background-size: 2px 11px;
      }
      /* scissor blades open/close — shared by hover + the open-modal cut animation */
      .bld {
        transform-box: view-box;
        transform-origin: 13.8px 12px;
      }
      @keyframes snipA {
        0%,
        100% {
          transform: rotate(0);
        }
        50% {
          transform: rotate(-15deg);
        }
      }
      @keyframes snipB {
        0%,
        100% {
          transform: rotate(0);
        }
        50% {
          transform: rotate(15deg);
        }
      }
      /* HOVER: scissors travel HALFWAY down the seam and wait there — the cut is "started", not finished */
      .perf-fx {
        position: absolute;
        left: var(--stub);
        top: 0;
        bottom: 0;
        width: 0;
        z-index: 4;
        pointer-events: none;
        opacity: 0;
        transition: opacity 0.14s;
      }
      .ticket:hover .perf-fx {
        opacity: 1;
      }
      .perf-fx .rip {
        position: absolute;
        left: 0;
        top: 9px;
        width: 4px;
        height: 0;
        transform: translateX(-50%);
        background: var(--ink);
        box-shadow: 0 0 2px rgba(0, 0, 0, 0.4);
      }
      .perf-fx .scissors {
        position: absolute;
        left: 0;
        top: 9px;
        width: 18px;
        height: 18px;
        color: var(--paper-ink);
        transform: translate(-50%, -50%) rotate(90deg);
      }
      .perf-fx .scissors svg {
        width: 100%;
        height: 100%;
        filter: drop-shadow(0 1px 1.5px rgba(0, 0, 0, 0.35));
      }
      .ticket:hover .perf-fx .rip {
        animation: hoverRip 0.8s cubic-bezier(0.4, 0.5, 0.25, 1) forwards;
      }
      .ticket:hover .perf-fx .scissors {
        animation: hoverScissors 0.8s cubic-bezier(0.4, 0.5, 0.25, 1) forwards;
      }
      .ticket:hover .perf-fx .bld-a {
        animation: snipA 0.2s ease-in-out 4;
      }
      .ticket:hover .perf-fx .bld-b {
        animation: snipB 0.2s ease-in-out 4;
      }
      @keyframes hoverScissors {
        from {
          top: 9px;
        }
        to {
          top: 50%;
        }
      }
      @keyframes hoverRip {
        from {
          height: 0;
        }
        to {
          height: calc(50% - 9px);
        }
      }
      .stub-inner {
        writing-mode: vertical-rl;
        transform: rotate(180deg);
        display: flex;
        align-items: center;
        gap: 14px;
        font-family: var(--font-mono);
        font-size: 10px;
        letter-spacing: 0.22em;
        text-transform: uppercase;
        white-space: nowrap;
      }
      .stub-type {
        font-weight: 700;
        color: var(--accent, var(--gold));
      }
      .ticket.film .stub-type {
        color: var(--gold-deep);
      }
      .ticket.tv .stub-type {
        color: var(--red);
      }
      .main {
        padding: 16px 18px 16px 20px;
        display: flex;
        flex-direction: column;
        gap: 10px;
        min-width: 0;
      }
      .t-top {
        font-family: var(--font-mono);
        font-size: 11px;
        letter-spacing: 0.06em;
        color: var(--paper-soft);
        display: flex;
        align-items: center;
        gap: 7px;
      }
      .t-top .yr {
        color: var(--paper-ink);
        font-weight: 700;
      }
      .t-title {
        font-family: var(--font-display);
        font-size: clamp(22px, 3vw, 28px);
        line-height: 0.96;
        letter-spacing: 0.01em;
        text-transform: uppercase;
        color: var(--paper-ink);
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        overflow-wrap: anywhere;
      }
      .t-tags {
        display: flex;
        gap: 6px;
        flex-wrap: wrap;
        margin-top: auto;
      }
      .t-tag {
        font-family: var(--font-mono);
        font-size: 9.5px;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        color: var(--paper-soft);
        border: 1px solid rgba(28, 22, 16, 0.22);
        border-radius: 4px;
        padding: 3px 6px;
      }
      .t-foot {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        margin-top: 2px;
        min-height: 14px;
      }
      .stars {
        display: inline-flex;
        gap: 3px;
        line-height: 0;
      }
      .stars svg {
        width: 15px;
        height: 15px;
        fill: none;
        stroke: rgba(28, 22, 16, 0.3);
      }
      .stars .on svg {
        fill: var(--gold);
        stroke: var(--gold-deep);
      }
      .t-count {
        font-family: var(--font-mono);
        font-size: 10px;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: var(--paper-soft);
      }

      /* ---------- EMPTY STATES (shared rules live in controls.css) ---------- */
      .empty-ticket .ghost {
        width: min(340px, 100%);
        opacity: 0.5;
        cursor: default;
        pointer-events: none;
        box-shadow:
          0 1px 0 rgba(0, 0, 0, 0.4),
          0 14px 26px -18px rgba(0, 0, 0, 0.7);
      }
      .empty-ticket .ghost:hover {
        transform: none;
      }
      .empty-ticket .ghost .stub {
        background: transparent;
      }
      .empty-ticket .ghost:hover .stub {
        transform: none;
      }
      .empty-ticket .ghost .main {
        background: repeating-linear-gradient(
          135deg,
          transparent 0 9px,
          rgba(28, 22, 16, 0.06) 9px 10px
        );
      }
      .empty-ticket .ghost .t-title {
        font-size: 24px;
        opacity: 0.85;
      }
      .empty-ticket p {
        font-size: 14px;
        max-width: 380px;
        margin: 0;
        color: var(--muted);
      }

