:root {
  --carbon: #12100e;
  --carbon-2: #1b1815;
  --carbon-3: #26211c;
  --ink: #1c1712;
  --paper: #f3ead3;
  --paper-2: #e8dcc0;
  --cream: #f6efe0;
  --mute: #9a9083;
  --mute-2: #6f675c;
  --copper: #c46238;
  --copper-deep: #8d3c1e;
  --copper-lit: #e4a07a;
  --rule: rgba(243, 234, 211, 0.16);
  --focus: #e8b089;
  --shadow: 0 28px 60px rgba(0, 0, 0, 0.45), 0 2px 0 rgba(255, 240, 210, 0.08);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
body {
  margin: 0;
  background: var(--carbon);
  color: var(--paper);
  font-family: "IBM Plex Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.11;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
a { color: var(--copper-lit); text-underline-offset: 3px; }
a:hover { color: var(--paper); }
a:focus-visible, button:focus-visible { outline: 2px solid var(--focus); outline-offset: 3px; }
.skip {
  position: absolute;
  left: 12px;
  top: -40px;
  background: var(--paper);
  color: var(--ink);
  padding: 8px 12px;
  z-index: 20;
}
.skip:focus { top: 12px; }
.wrap {
  position: relative;
  z-index: 1;
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
}
header.top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0 18px;
  border-bottom: 1px dashed var(--rule);
}
.wordmark {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--paper);
}
.wordmark svg { display: block; }
.wordmark-name {
  font-family: Fraunces, "Iowan Old Style", Georgia, serif;
  font-size: 1.4rem;
  font-weight: 560;
  letter-spacing: -0.02em;
  line-height: 1;
}
.wordmark-name .d {
  color: var(--copper);
  letter-spacing: inherit;
}
nav.top-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px 22px;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
nav.top-nav a {
  color: var(--mute);
  text-decoration: none;
}
nav.top-nav a:hover { color: var(--paper); }
nav.top-nav a[aria-current="page"] { color: var(--copper-lit); }
main { padding: 36px 0 64px; }
.kicker {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper-lit);
  margin: 0 0 14px;
}
h1 {
  font-family: Fraunces, "Iowan Old Style", Georgia, serif;
  font-optical-sizing: auto;
  font-weight: 560;
  font-size: clamp(1.85rem, 3.8vw, 3.15rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 0 0 18px;
  color: var(--cream);
  max-width: 18ch;
}
.lead {
  margin: 0 0 14px;
  max-width: 40em;
  color: #d8cbb3;
  font-size: 1.02rem;
  line-height: 1.45;
}
.ticket {
  position: relative;
  display: grid;
  grid-template-columns: 78px 1fr;
  min-height: 280px;
  margin: 28px 0 22px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: var(--shadow);
}
.ticket::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)'/%3E%3C/svg%3E");
}
.stub {
  position: relative;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 8px;
  background: #e7d8b6;
}
.stub-mark {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--copper-deep);
}
.stub-no {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--mute-2);
}
.perf {
  position: absolute;
  top: 0;
  bottom: 0;
  right: -7px;
  width: 14px;
  background-image: radial-gradient(circle, var(--carbon) 5px, transparent 5.6px);
  background-size: 14px 20px;
  background-repeat: repeat-y;
  background-position: center -4px;
  z-index: 2;
}
.pass {
  position: relative;
  z-index: 1;
  padding: 20px 22px 16px 28px;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.pass-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  border-bottom: 1px solid #cbb89a;
  padding-bottom: 10px;
  margin-bottom: 8px;
}
.pass-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mute-2);
}
.pass-watch {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--paper);
  background: var(--copper);
  border: 1px solid var(--copper);
  padding: 3px 7px;
}
.ticket table {
  width: 100%;
  border-collapse: collapse;
}
.ticket th,
.ticket td {
  text-align: left;
  padding: 12px 10px;
  border-bottom: 1px dashed #cbb89a;
  vertical-align: top;
}
.ticket tr:last-child th,
.ticket tr:last-child td { border-bottom: 0; }
.ticket th {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mute-2);
  font-weight: 500;
  padding-top: 14px;
  padding-bottom: 12px;
}
.ticket td:first-child {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--mute-2);
  width: 34%;
  padding-left: 0;
}
.ticket th:first-child { padding-left: 0; width: 34%; }
.ticket th:nth-child(2),
.ticket td:nth-child(2) {
  color: var(--copper-deep);
  font-weight: 600;
  background: rgba(196, 98, 56, 0.07);
  box-shadow: inset 3px 0 0 var(--copper);
}
.ticket th:nth-child(3),
.ticket td:nth-child(3) {
  color: #5c554c;
  font-weight: 400;
}
.note {
  margin: 0 0 22px;
  max-width: 40em;
  color: #d8cbb3;
  font-size: 1rem;
  line-height: 1.45;
}
.cta-row { margin: 0 0 12px; }
.btn {
  display: inline-block;
  height: 40px;
  padding: 0 18px;
  border: none;
  background: var(--copper);
  color: var(--paper);
  font: 600 12px/40px "IBM Plex Sans", sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  box-shadow: inset 0 0 0 2px var(--carbon), inset 0 0 0 3px var(--copper);
  white-space: nowrap;
}
.btn:hover { background: #d46d3e; color: var(--paper); }
.trust {
  margin: 0;
  max-width: 40em;
  color: var(--mute);
  font-size: 0.82rem;
  line-height: 1.4;
}
footer.site {
  position: relative;
  z-index: 1;
  border-top: 1px dashed var(--rule);
  padding: 28px 0 48px;
  color: var(--mute);
  font-size: 13px;
}
footer.site .row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
footer.site p { margin: 0; }
footer.site nav { display: flex; gap: 18px; }
footer.site a { color: var(--mute); text-decoration: none; }
footer.site a:hover { color: var(--paper); }
@media (max-width: 720px) {
  .wrap { width: min(980px, calc(100% - 28px)); }
  header.top { flex-direction: column; align-items: flex-start; padding: 16px 0 14px; }
  nav.top-nav { justify-content: flex-start; gap: 14px 18px; }
  h1 { max-width: none; }
  .ticket { grid-template-columns: 1fr; }
  .stub {
    writing-mode: horizontal-tb;
    transform: none;
    flex-direction: row;
    padding: 10px 16px;
  }
  .perf {
    top: auto;
    left: 0;
    right: 0;
    bottom: -7px;
    width: auto;
    height: 14px;
    background-image: radial-gradient(circle, var(--carbon) 5px, transparent 5.6px);
    background-size: 20px 14px;
    background-repeat: repeat-x;
    background-position: -4px center;
  }
  .pass { padding: 22px 16px 16px; }
  .ticket th, .ticket td { padding: 10px 8px; }
  .ticket td:first-child, .ticket th:first-child { width: auto; }
  .btn { width: 100%; text-align: center; }
}
@media (max-width: 420px) {
  .ticket { overflow-x: auto; }
  .ticket table { min-width: 420px; }
}
