/* 11-contact-sheet.css — "Contact Sheet" variant (REVISION 2 type system).
   Editorial archive / gallery wall: eggshell ground, sparse brand red,
   DM Serif Display headlines (sturdy roman), Tinos (Times-like) for the
   hero index list + pull quotes + body, Archivo 800 condensed caps for
   episode titles, DM Mono folios. Oswald/Anton survive only inside boxed
   tabs and price chips. Shared by 11-contact-sheet-landing + -elite. */

:root {
  --paper:       #F2EEE6;
  --paper-white: #FBF9F5;
  --red:         #C23415;
  --red-deep:    #B52D1A;
  --red-hot:     #EE471E;
  --red-032c:    #C44C34;
  --red-editorial: #CF3320;
  --envelope:    #8F2A23;
  --burgundy:    #382123;
  --maroon:      #7E2217;
  --pink:        #F2C7CC;
  --teal:        #9DD3D0;
  --ink:         #141110;
  --ink-mute:    #5d564f;
  --rule:        rgba(20, 17, 16, 0.85);
  --rule-faint:  rgba(20, 17, 16, 0.16);
  --rule-red:    rgba(194, 52, 21, 0.4);
  --maroon-tint: rgba(126, 34, 23, 0.065);

  --display: 'DM Serif Display', Didot, 'Times New Roman', serif; /* headlines — sturdy roman Didone */
  --times:   'Tinos', 'Times New Roman', Times, serif;            /* index list, pull quotes, body */
  --grotesk: 'Archivo', 'Arial Narrow', sans-serif;               /* heavy condensed caps */
  --cond:    'Oswald', 'Arial Narrow', sans-serif;                /* boxed tabs ONLY */
  --punch:   'Anton', 'Arial Narrow', sans-serif;                 /* boxed price chips ONLY */
  --mono:    'DM Mono', ui-monospace, 'SFMono-Regular', monospace;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--times);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }
a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}
img { max-width: 100%; display: block; }
image-slot { display: block; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition: none !important;
    animation: none !important;
  }
}

/* ---------- shared helpers ---------- */
.wrap { max-width: 1360px; margin: 0 auto; padding: 0 40px; }

.folio {
  font-family: var(--mono);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.folio b { color: var(--red); font-weight: 500; }

.ge-box {
  display: inline-block;
  font-family: var(--cond);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--paper-white);
  background: var(--red);
  padding: 4px 10px 5px;
  line-height: 1;
  white-space: nowrap;
}

/* brand duotone photo recipe (from BRAND_SPEC_2026) */
.duo {
  filter: grayscale(1) sepia(1) saturate(4) hue-rotate(-25deg) contrast(1.05);
}

/* section head: DM Serif Display title left, mono meta right, ruled */
.sec-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  border-bottom: 2px solid var(--rule);
  padding-bottom: 18px;
  margin-bottom: 0;
}
.sec-head h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(40px, 4.6vw, 68px);
  line-height: 0.95;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.sec-head h2 em {
  font-style: italic; /* single-word accent only — sturdy DM Serif italic */
  font-weight: 400;
  color: var(--red);
}
.sec-head .folio { padding-bottom: 8px; text-align: right; }
.sec-head .folio a {
  color: var(--red);
  text-decoration: none;
  border-bottom: 1px solid var(--rule-red);
  padding-bottom: 2px;
}
.sec-head .folio a:hover { color: var(--ink); border-color: var(--ink); }

/* ---------- masthead ---------- */
.mast {
  border-top: 3px solid var(--ink);
  background: var(--paper);
  position: relative;
}
.mast::before {
  content: '';
  display: block;
  height: 1px;
  background: var(--ink);
  margin-top: 2px;
}
.mast-inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 16px 40px;
  display: flex;
  align-items: center;
  gap: 28px;
  border-bottom: 1px solid var(--rule);
}
.mast-logo { display: inline-flex; text-decoration: none; }
.mast-logo img {
  height: 42px;
  width: auto;
  mix-blend-mode: multiply; /* wordmark PNG has baked cream bg — melt into eggshell */
}
.mast-issue {
  font-family: var(--mono);
  font-weight: 500;
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-mute);
  border-left: 1px solid var(--rule-faint);
  padding-left: 24px;
}
.mast-links {
  margin-left: auto;
  display: flex;
  gap: 26px;
  font-family: var(--mono);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.mast-links a { text-decoration: none; color: var(--ink); }
.mast-links a:hover { color: var(--red); }
.mast-cta {
  font-family: var(--mono);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  border: 1px solid var(--red);
  padding: 11px 18px;
  text-decoration: none;
  white-space: nowrap;
  transition: background .18s, color .18s;
}
.mast-cta:hover { background: var(--red); color: var(--paper); }

/* elite masthead: same bar, live-type lockup instead of PNG */
.mast-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.mast-lockup .word {
  font-family: var(--display);
  font-weight: 400;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  color: var(--red);
  letter-spacing: -0.01em;
}

/* ---------- hero: the typographic index ---------- */
.index-hero {
  position: relative;
  padding: 72px 0 88px;
  overflow: hidden;
}
.index-hero .wrap { position: relative; }
.hero-kicker {
  font-family: var(--mono);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 34px;
}
.hero-kicker b { color: var(--red); font-weight: 500; }

.ix-stack {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 900px;
}
.ix-stack li {
  position: relative;
  font-family: var(--times); /* Times-like list — the Chuck Taylor / Stussy name-stack feel */
  font-weight: 400;
  font-size: clamp(44px, 8vw, 118px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: var(--red);
}
.ix-stack li em {
  /* one short accent max — sturdy Tinos italic, never hairline */
  font-style: italic;
  font-weight: 400;
}
.ix-stack .note {
  font-family: var(--mono);
  font-weight: 500;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  display: inline-block;
  vertical-align: super;
  margin-left: 18px;
  white-space: nowrap;
}

.hero-foot {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
  display: grid;
  grid-template-columns: minmax(0, 520px) 1fr;
  gap: 40px;
  align-items: start;
  max-width: 900px;
}
.hero-tag {
  margin: 0;
  font-family: var(--times);
  font-style: italic;
  font-size: 18px;
  line-height: 1.5;
  color: var(--ink);
}
.hero-listen { display: flex; flex-direction: column; gap: 14px; }
.hero-listen-label {
  font-family: var(--mono);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.listen-row { display: flex; flex-wrap: wrap; gap: 8px 18px; }
.listen-row a {
  font-family: var(--mono);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--rule-faint);
  padding-bottom: 3px;
}
.listen-row a:hover { color: var(--red); border-color: var(--red); }
.hero-cta {
  display: inline-block;
  margin-top: 6px;
  align-self: flex-start;
  font-family: var(--mono);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--paper-white);
  background: var(--red);
  padding: 13px 20px;
  text-decoration: none;
  transition: background .18s;
}
.hero-cta:hover { background: var(--maroon); }

/* scattered polaroids over the right side of the index */
.hero-pols {
  position: absolute;
  top: 10px;
  right: 24px;
  width: 40%;
  max-width: 480px;
  height: 100%;
  pointer-events: none;
}
.pol {
  position: absolute;
  background: var(--paper-white);
  padding: 10px 10px 34px;
  box-shadow: 0 10px 26px rgba(20, 17, 16, 0.22);
  pointer-events: auto;
}
.pol image-slot { width: 100%; height: 100%; }
.pol .pol-cap {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 9px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pol-1 { width: 205px; height: 254px; top: 3%; right: 34%; transform: rotate(-5deg); z-index: 2; }
.pol-2 { width: 185px; height: 230px; top: 30%; right: 0;   transform: rotate(4deg);  z-index: 3; }
.pol-3 { width: 175px; height: 216px; top: 62%; right: 42%; transform: rotate(-2.5deg); z-index: 1; }

/* CSS paperclip on the first polaroid */
.paperclip {
  position: absolute;
  top: -20px;
  left: 26px;
  width: 17px;
  height: 48px;
  transform: rotate(9deg);
  z-index: 4;
}
.paperclip::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 2.5px solid rgba(20, 17, 16, 0.34);
  border-radius: 9px;
}
.paperclip::after {
  content: '';
  position: absolute;
  left: 4.5px;
  top: 9px;
  width: 8px;
  height: 46px;
  border: 2.5px solid rgba(20, 17, 16, 0.24);
  border-top: none;
  border-radius: 0 0 6px 6px;
}

/* ---------- black pull-quote panel ---------- */
.gore {
  background: var(--ink);
  color: var(--paper);
  padding: 110px 0 120px;
  position: relative;
  overflow: hidden;
}
.gore .wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}
.gore-quote {
  margin: 0;
  font-family: var(--times); /* Times-like — matches the "This is me: all the gore…" spread */
  font-weight: 400;
  font-size: clamp(34px, 4.6vw, 66px);
  line-height: 1.08;
  letter-spacing: -0.008em;
  color: var(--paper);
}
.gore-quote em {
  /* accent runs longer than 3 words — carry it with color, not italics */
  font-style: normal;
  font-weight: 400;
  color: var(--pink);
}
.gore-cite {
  display: block;
  margin-top: 34px;
  font-family: var(--mono);
  font-weight: 500;
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--teal);
}
.gore-frag {
  justify-self: end;
  position: relative;
  width: min(100%, 340px);
}
.gore-frag-photo {
  background: var(--pink);
  padding: 14px;
  transform: rotate(2.5deg);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.5);
}
.gore-frag-photo image-slot { width: 100%; height: 380px; }
.gore-frag .folio {
  display: block;
  margin-top: 16px;
  color: rgba(242, 238, 230, 0.55);
  text-align: right;
}

/* ---------- episode index ---------- */
.index-sec { padding: 96px 0 80px; }

.feat-row {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
  padding: 56px 0;
  border-bottom: 1px solid var(--rule);
}
.feat-mono { margin-bottom: 18px; }
.feat-title {
  margin: 0 0 20px;
  font-family: var(--grotesk);
  font-weight: 800;
  font-stretch: 78%;
  text-transform: uppercase;
  font-size: clamp(30px, 3.4vw, 52px);
  line-height: 1.04;
  letter-spacing: 0.005em;
  color: var(--ink);
}
.feat-desc {
  margin: 0 0 26px;
  max-width: 520px;
  font-family: var(--times);
  font-style: italic;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-mute);
}
.feat-meta {
  display: flex;
  gap: 22px;
  align-items: center;
  margin-bottom: 30px;
}
.feat-play {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--paper-white);
  background: var(--red);
  padding: 15px 24px;
  text-decoration: none;
  transition: background .18s;
}
.feat-play:hover { background: var(--maroon); }
.feat-play .tri { font-size: 9px; }
.feat-art { position: relative; }
.feat-art img {
  width: 100%;
  border: 1px solid var(--rule);
  box-shadow: 12px 12px 0 var(--pink);
}
.feat-art .folio { display: block; margin-top: 16px; text-align: right; }

.ix-rows { border-bottom: none; }
.ix-row {
  display: grid;
  grid-template-columns: 150px 96px minmax(0, 1fr) auto;
  gap: 36px;
  align-items: center;
  padding: 26px 0;
  border-bottom: 1px solid var(--rule-faint);
  text-decoration: none;
  transition: background .15s;
}
.ix-row:hover { background: var(--paper-white); }
.ix-row.is-elite { background: var(--maroon-tint); }
.ix-row.is-elite:hover { background: rgba(126, 34, 23, 0.11); }
.ix-num {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(40px, 4.4vw, 64px);
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: var(--red);
  white-space: nowrap;
}
.is-elite .ix-num { color: var(--maroon); }
.ix-num .pre {
  font-family: var(--mono);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.2em;
  vertical-align: super;
  margin-right: 6px;
}
.ix-thumb {
  width: 96px;
  height: 96px;
  border: 1px solid var(--rule);
  overflow: hidden;
  background: var(--pink);
}
.ix-thumb image-slot { width: 100%; height: 100%; }
.ix-title {
  margin: 0 0 6px;
  font-family: var(--grotesk);
  font-weight: 800;
  font-stretch: 82%;
  text-transform: uppercase;
  font-size: 22px;
  line-height: 1.12;
  letter-spacing: 0.02em;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.ix-row:hover .ix-title { color: var(--red); }
.is-elite:hover .ix-title { color: var(--maroon); }
.ix-desc {
  margin: 0;
  font-family: var(--times);
  font-style: italic;
  font-size: 15px;
  line-height: 1.45;
  color: var(--ink-mute);
  max-width: 560px;
}
.ix-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-end;
  font-family: var(--mono);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
  text-align: right;
}

/* featured spread between row groups */
.ix-spread {
  padding: 44px 0;
  border-bottom: 1px solid var(--rule-faint);
}
.ix-spread img {
  width: 100%;
  border: 1px solid var(--rule);
}
.ix-spread .folio {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 14px;
}
.index-foot {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  padding-top: 26px;
}
.index-foot a {
  color: var(--red);
  text-decoration: none;
  border-bottom: 1px solid var(--rule-red);
  padding-bottom: 2px;
}
.index-foot a:hover { color: var(--ink); border-color: var(--ink); }

/* ---------- contact-sheet filmstrip ---------- */
.filmstrip {
  background: var(--ink);
  padding: 84px 0 76px;
  overflow: hidden;
}
.filmstrip .strip-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  margin-bottom: 38px;
}
.filmstrip .strip-head .folio { color: rgba(242, 238, 230, 0.6); }
.filmstrip .strip-head .lead {
  font-family: var(--grotesk);
  font-weight: 900;
  font-stretch: 82%;
  font-size: 15px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--paper);
}
.filmstrip .strip-head .lead b { color: var(--red-hot); font-weight: 900; }

.strip-scroll { overflow-x: auto; padding-bottom: 8px; }
.strip {
  display: flex;
  gap: 0;
  width: max-content;
  padding: 26px 18px;
  position: relative;
  background: var(--burgundy);
  border-top: 1px solid rgba(242, 238, 230, 0.18);
  border-bottom: 1px solid rgba(242, 238, 230, 0.18);
}
/* sprocket holes */
.strip::before,
.strip::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 10px;
  background-image: repeating-linear-gradient(
    to right,
    transparent 0 14px,
    var(--paper) 14px 26px,
    transparent 26px 40px
  );
  opacity: 0.85;
}
.strip::before { top: 7px; }
.strip::after { bottom: 7px; }
.frame {
  flex: 0 0 auto;
  width: 168px;
  height: 168px;
  background: var(--paper-white);
  padding: 8px;
  margin: 0 9px;
}
.frame image-slot { width: 100%; height: 100%; }
.frame:nth-child(odd)  { transform: rotate(-0.6deg); }
.frame:nth-child(even) { transform: rotate(0.7deg); }

/* ---------- elite tease band (maroon) ---------- */
.insert-tease {
  background: var(--maroon);
  color: var(--paper);
  padding: 72px 0;
}
.insert-tease .wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 48px;
  align-items: center;
}
.tease-lockup {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.tease-lockup .word {
  font-family: var(--display);
  font-weight: 400;
  font-style: normal;
  font-size: 34px;
  line-height: 1;
  color: var(--paper);
  letter-spacing: -0.01em;
}
.insert-tease p {
  margin: 0;
  max-width: 620px;
  font-family: var(--times);
  font-style: italic;
  font-size: 17px;
  line-height: 1.55;
  color: var(--pink);
}
.insert-tease p b { color: var(--paper-white); font-style: normal; font-weight: 700; }
.tease-cta {
  display: inline-block;
  font-family: var(--mono);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--maroon);
  background: var(--paper);
  padding: 17px 26px;
  text-decoration: none;
  transition: background .18s, color .18s;
  white-space: nowrap;
}
.tease-cta:hover { background: var(--pink); }

/* ---------- The Closet (back-page shop) ---------- */
.closet { padding: 96px 0 90px; }
.closet-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  padding-top: 48px;
}
.prod {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--paper-white);
  border: 1px solid var(--rule);
  transition: transform .18s, box-shadow .18s;
}
.prod:hover {
  transform: translate(-3px, -3px);
  box-shadow: 6px 6px 0 var(--pink);
}
.prod-pic {
  aspect-ratio: 1 / 1;
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
  position: relative;
  overflow: hidden;
}
.prod-pic image-slot { width: 100%; height: 100%; }
.price-chip {
  position: absolute;
  top: 12px;
  right: 12px;
  font-family: var(--punch);
  font-size: 14px;
  letter-spacing: 0.08em;
  color: var(--paper-white);
  background: var(--red);
  padding: 6px 10px;
  z-index: 2;
}
.prod-body { padding: 18px 18px 20px; display: flex; flex-direction: column; gap: 8px; }
.prod-name {
  margin: 0;
  font-family: var(--grotesk);
  font-weight: 800;
  font-stretch: 82%;
  text-transform: uppercase;
  font-size: 17px;
  letter-spacing: 0.04em;
  line-height: 1.2;
  color: var(--ink);
}
.prod:hover .prod-name { color: var(--red); }
.prod-note {
  margin: 0;
  font-family: var(--times);
  font-style: italic;
  font-size: 13.5px;
  line-height: 1.45;
  color: var(--ink-mute);
}
.prod .folio { margin-top: auto; padding-top: 12px; }
.closet-note {
  margin-top: 40px;
  padding-top: 18px;
  border-top: 1px solid var(--rule-faint);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.closet-note a {
  color: var(--red);
  text-decoration: none;
  border-bottom: 1px solid var(--rule-red);
  padding-bottom: 2px;
}
.closet-note a:hover { color: var(--ink); border-color: var(--ink); }

/* ---------- footer ---------- */
.foot {
  border-top: 3px solid var(--ink);
  padding: 0 0 36px;
  background: var(--paper);
}
.foot::before {
  content: '';
  display: block;
  height: 1px;
  background: var(--ink);
  margin-top: 2px;
  margin-bottom: 64px;
}
.foot-grid {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 40px 56px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 44px;
  border-bottom: 1px solid var(--rule-faint);
}
.foot-brand img {
  height: 48px;
  width: auto;
  mix-blend-mode: multiply;
  margin-bottom: 18px;
}
.foot-brand .word {
  font-family: var(--display);
  font-weight: 400;
  font-style: normal;
  font-size: 30px;
  color: var(--red);
  margin-bottom: 18px;
  display: inline-block;
}
.foot-tag {
  margin: 0;
  max-width: 340px;
  font-family: var(--times);
  font-style: italic;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-mute);
}
.foot h5 {
  margin: 0 0 18px;
  font-family: var(--mono);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--red);
}
.foot ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 9px;
  font-family: var(--mono);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.06em;
}
.foot ul a { text-decoration: none; color: var(--ink); }
.foot ul a:hover { color: var(--red); }
.foot-bottom {
  max-width: 1360px;
  margin: 26px auto 0;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

/* ==================== ELITE PAGE ==================== */

/* ticket-sheet hero */
.env-hero {
  position: relative;
  padding: 96px 40px 110px;
  overflow: hidden;
  border-bottom: 1px solid var(--rule);
}
.tix-sheet {
  position: absolute;
  inset: 0;
  overflow: hidden;
  user-select: none;
}
.tix-row {
  white-space: nowrap;
  font-family: var(--display); /* live-type wordmark stand-in — roman */
  font-style: normal;
  font-weight: 400;
  font-size: 44px;
  line-height: 2.1;
  letter-spacing: 0.01em;
  color: rgba(194, 52, 21, 0.09);
  border-bottom: 1px dashed rgba(20, 17, 16, 0.18);
}
.tix-row:nth-child(even) { transform: translateX(-90px); }
.tix-row .cut {
  font-family: var(--mono);
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  color: rgba(20, 17, 16, 0.28);
  vertical-align: middle;
  margin: 0 22px;
}

/* deep-maroon envelope card */
.env-card {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
  background: var(--maroon);
  color: var(--paper);
  padding: 96px 64px 56px;
  box-shadow: 0 26px 60px rgba(20, 17, 16, 0.35);
  text-align: center;
}
/* envelope flap */
.env-flap {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0;
  border-left: 380px solid transparent;
  border-right: 380px solid transparent;
  border-top: 120px solid rgba(20, 17, 16, 0.28);
  pointer-events: none;
}
/* wax seal */
.env-seal {
  position: absolute;
  top: 92px;
  left: 50%;
  transform: translateX(-50%) rotate(-6deg);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(238, 71, 30, 0.35), 0 6px 14px rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  color: var(--paper-white);
  z-index: 3;
}
.env-kicker {
  font-family: var(--mono);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--teal);
  margin: 60px 0 26px;
}
.env-lockup {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: 34px;
}
.env-lockup .word {
  font-family: var(--display);
  font-weight: 400;
  font-style: normal;
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--paper);
}
.env-card h1 {
  margin: 0 0 24px;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(52px, 8vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.015em;
  color: var(--paper-white);
}
.env-card h1 em { font-style: italic; font-weight: 400; color: var(--pink); } /* one-word accent */
.env-sub {
  margin: 0 auto 40px;
  max-width: 520px;
  font-family: var(--times);
  font-style: italic;
  font-size: 17px;
  line-height: 1.55;
  color: var(--pink);
}
.env-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(242, 238, 230, 0.28);
  border-bottom: 1px solid rgba(242, 238, 230, 0.28);
  margin-bottom: 40px;
}
.env-stat {
  padding: 20px 8px;
  border-right: 1px solid rgba(242, 238, 230, 0.18);
}
.env-stat:last-child { border-right: 0; }
.env-stat .v {
  display: block;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1;
  color: var(--paper-white);
  margin-bottom: 8px;
}
.env-stat .l {
  display: block;
  font-family: var(--mono);
  font-weight: 500;
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pink);
}
.env-cta {
  display: inline-block;
  font-family: var(--mono);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--maroon);
  background: var(--paper);
  padding: 19px 32px;
  text-decoration: none;
  transition: background .18s;
}
.env-cta:hover { background: var(--pink); }
.env-fine {
  display: block;
  margin-top: 20px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(242, 199, 204, 0.75);
}

/* benefits index */
.benefits { padding: 96px 0 72px; }
.perk-row {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr) minmax(0, 1.2fr) auto;
  gap: 40px;
  align-items: baseline;
  padding: 30px 0;
  border-bottom: 1px solid var(--rule-faint);
}
.perk-num {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(38px, 4vw, 58px);
  line-height: 0.9;
  color: var(--red);
  letter-spacing: -0.02em;
}
.perk-h {
  margin: 0;
  font-family: var(--grotesk);
  font-weight: 800;
  font-stretch: 82%;
  text-transform: uppercase;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: 0.02em;
  color: var(--ink);
}
.perk-p {
  margin: 0;
  font-family: var(--times);
  font-style: italic;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-mute);
}
.perk-tag {
  font-family: var(--mono);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--maroon);
  border: 1px solid var(--maroon);
  padding: 4px 10px;
  white-space: nowrap;
  justify-self: end;
}

/* drop schedule strip */
.drops {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 40px 0;
}
.drops .wrap {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 28px;
  flex-wrap: wrap;
}
.drop-line {
  font-family: var(--mono);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
}
.drop-line b { color: var(--red); font-weight: 500; }
.drop-line.elite b { color: var(--maroon); }

/* pricing tickets */
.pricing { padding: 96px 0 80px; }
.plan-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
  padding-top: 52px;
}
.plan {
  position: relative;
  background: var(--paper-white);
  border: 1px solid var(--rule);
  padding: 40px 36px 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
/* perforated ticket edge */
.plan::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 14px;
  border-left: 1px dashed var(--rule-faint);
}
.plan--featured {
  background: var(--maroon);
  color: var(--paper);
  border-color: var(--maroon);
}
.plan--featured::before { border-color: rgba(242, 238, 230, 0.25); }
.plan-flag {
  position: absolute;
  top: -15px;
  right: 26px;
  font-family: var(--cond);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--teal);
  color: var(--ink);
  padding: 6px 12px;
  transform: rotate(-2deg);
}
.plan-tier {
  font-family: var(--mono);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--red);
}
.plan--featured .plan-tier { color: var(--pink); }
.plan-price { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.plan-amt {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(56px, 6vw, 82px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.plan--featured .plan-amt { color: var(--paper-white); }
.plan-per {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--ink-mute);
}
.plan--featured .plan-per { color: var(--pink); }
.plan-note {
  margin: 0;
  font-family: var(--times);
  font-style: italic;
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--ink-mute);
}
.plan--featured .plan-note { color: var(--pink); }
.plan-bullets {
  list-style: none;
  margin: 0;
  padding: 14px 0 0;
  border-top: 1px solid var(--rule-faint);
  display: grid;
  gap: 10px;
}
.plan--featured .plan-bullets { border-color: rgba(242, 238, 230, 0.25); }
.plan-bullets li {
  font-family: var(--times);
  font-style: italic;
  font-size: 15.5px;
  line-height: 1.45;
  padding-left: 22px;
  position: relative;
}
.plan-bullets li::before {
  content: '—';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--red);
  font-style: normal;
}
.plan--featured .plan-bullets li::before { color: var(--pink); }
.plan-cta {
  margin-top: auto;
  display: block;
  text-align: center;
  font-family: var(--mono);
  font-weight: 500;
  font-size: 11.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  background: var(--red);
  color: var(--paper-white);
  padding: 17px 24px;
  transition: background .18s, color .18s;
}
.plan-cta:hover { background: var(--maroon); }
.plan--featured .plan-cta { background: var(--paper); color: var(--maroon); }
.plan--featured .plan-cta:hover { background: var(--pink); }
.pricing-fine {
  margin-top: 36px;
  padding-top: 16px;
  border-top: 1px solid var(--rule-faint);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.pricing-fine a {
  color: var(--red);
  text-decoration: none;
  border-bottom: 1px solid var(--rule-red);
}
.pricing-fine a:hover { color: var(--ink); border-color: var(--ink); }

/* letters (testimonials) */
.letters {
  background: var(--ink);
  color: var(--paper);
  padding: 88px 0;
}
.letters .sec-head { border-color: rgba(242, 238, 230, 0.4); }
.letters .sec-head h2 { color: var(--paper); }
.letters .sec-head h2 em { color: var(--pink); }
.letters .sec-head .folio { color: rgba(242, 238, 230, 0.6); }
.letters-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding-top: 48px;
}
.letter blockquote {
  margin: 0 0 20px;
  font-family: var(--times); /* Times-like pull-quote voice */
  font-weight: 400;
  font-style: normal;
  font-size: 21px;
  line-height: 1.4;
  color: var(--paper);
}
.letter blockquote em { color: var(--pink); font-style: italic; } /* short accents only */
.letter .folio { color: rgba(242, 238, 230, 0.6); }

/* faq */
.faq { padding: 96px 0 80px; }
.faq-dl {
  margin: 0;
  padding-top: 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
  column-gap: 64px;
}
.faq-dl dt {
  font-family: var(--grotesk);
  font-weight: 800;
  font-stretch: 82%;
  text-transform: uppercase;
  font-size: 19px;
  line-height: 1.25;
  letter-spacing: 0.02em;
  color: var(--ink);
  padding: 26px 0;
  border-bottom: 1px solid var(--rule-faint);
}
.faq-dl dd {
  margin: 0;
  padding: 26px 0;
  border-bottom: 1px solid var(--rule-faint);
  font-family: var(--times);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
}
.faq-dl dd a { color: var(--red); }

/* closing */
.well {
  padding: 110px 40px 120px;
  text-align: center;
  border-top: 1px solid var(--rule);
}
.well h2 {
  margin: 0 auto 26px;
  max-width: 900px;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(52px, 7.5vw, 110px);
  line-height: 0.95;
  letter-spacing: -0.015em;
  color: var(--red);
}
.well h2 em { font-style: italic; font-weight: 400; } /* one-word accent */
.well p {
  margin: 0 auto 36px;
  max-width: 520px;
  font-family: var(--times);
  font-style: italic;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-mute);
}
.well-cta {
  display: inline-block;
  font-family: var(--mono);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--paper-white);
  background: var(--red);
  padding: 19px 32px;
  text-decoration: none;
  transition: background .18s;
}
.well-cta:hover { background: var(--maroon); }

/* ---------- responsive: 1024 ---------- */
@media (max-width: 1024px) {
  .wrap { padding: 0 28px; }
  .mast-inner { padding: 14px 28px; flex-wrap: wrap; gap: 16px 24px; }
  .mast-issue { border: 0; padding-left: 0; }
  .mast-links { gap: 18px; }

  .hero-pols { width: 44%; right: 8px; }
  .pol-1 { width: 168px; height: 210px; }
  .pol-2 { width: 152px; height: 190px; }
  .pol-3 { width: 144px; height: 178px; }

  .gore .wrap { grid-template-columns: 1fr; gap: 48px; }
  .gore-frag { justify-self: start; }

  .feat-row { grid-template-columns: 1fr; gap: 36px; }
  .ix-row { grid-template-columns: 96px 80px minmax(0, 1fr); gap: 22px; }
  .ix-thumb { width: 80px; height: 80px; }
  .ix-meta {
    grid-column: 3;
    flex-direction: row;
    justify-content: flex-start;
    gap: 18px;
    margin-top: 2px;
  }

  .closet-grid { grid-template-columns: repeat(2, 1fr); }
  .insert-tease .wrap { grid-template-columns: 1fr; gap: 32px; }
  .foot-grid { grid-template-columns: 1fr 1fr; padding: 0 28px 48px; }
  .foot-bottom { padding: 0 28px; }

  .env-flap { border-left-width: 50vw; border-right-width: 50vw; }
  .perk-row { grid-template-columns: 90px minmax(0, 1fr) auto; }
  .perk-p { grid-column: 2 / 4; }
  .letters-grid { grid-template-columns: 1fr; gap: 36px; }
  .faq-dl { grid-template-columns: 1fr; }
  .faq-dl dt { padding-bottom: 8px; border-bottom: 0; }
  .faq-dl dd { padding-top: 0; }
}

/* ---------- responsive: phones ---------- */
@media (max-width: 640px) {
  .wrap { padding: 0 18px; }
  body { font-size: 16px; }

  .mast-inner { padding: 12px 18px; }
  .mast-links { display: none; }
  .mast-cta { margin-left: auto; padding: 9px 12px; font-size: 10px; }
  .mast-logo img { height: 32px; }
  .mast-issue { font-size: 9.5px; width: 100%; order: 3; }

  .index-hero { padding: 44px 0 56px; }
  .hero-kicker { margin-bottom: 24px; }
  .ix-stack .note { display: block; margin: 6px 0 10px; vertical-align: baseline; }

  /* polaroids leave the collage and stack as a hand-laid row */
  .hero-pols {
    position: static;
    width: auto;
    max-width: none;
    height: auto;
    display: flex;
    gap: 14px;
    margin-top: 40px;
    overflow-x: auto;
    padding: 24px 4px 12px;
  }
  .pol { position: static; flex: 0 0 auto; }
  .pol-1, .pol-2, .pol-3 { width: 150px; height: 188px; }
  .pol-1 { transform: rotate(-3deg); }
  .pol-2 { transform: rotate(2.5deg); }
  .pol-3 { transform: rotate(-1.5deg); }

  .hero-foot { grid-template-columns: 1fr; gap: 28px; margin-top: 36px; }

  .gore { padding: 70px 0 80px; }
  .gore-frag-photo image-slot { height: 300px; }
  .gore-frag .folio { text-align: left; }

  .index-sec, .closet, .benefits, .pricing, .faq { padding: 64px 0 56px; }
  .sec-head { flex-direction: column; align-items: flex-start; gap: 14px; }
  .sec-head .folio { text-align: left; padding-bottom: 0; }

  .feat-row { padding: 36px 0; }
  .ix-row { grid-template-columns: 72px minmax(0, 1fr); }
  .ix-thumb { display: none; }
  .ix-meta { grid-column: 2; }
  .ix-num { font-size: 34px; }
  .ix-title { font-size: 18px; }

  .filmstrip { padding: 56px 0 52px; }
  .filmstrip .strip-head { flex-direction: column; gap: 10px; }
  .frame { width: 132px; height: 132px; }

  .insert-tease { padding: 52px 0; }
  .closet-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .prod-body { padding: 12px 12px 14px; }

  .foot-grid { grid-template-columns: 1fr; gap: 32px; padding: 0 18px 40px; }
  .foot::before { margin-bottom: 40px; }
  .foot-bottom { padding: 0 18px; flex-direction: column; gap: 8px; }

  .env-hero { padding: 56px 18px 70px; }
  .env-card { padding: 84px 24px 40px; }
  .env-flap { border-top-width: 84px; }
  .env-seal { top: 66px; width: 48px; height: 48px; font-size: 16px; }
  .env-kicker { margin-top: 40px; }
  .env-stats { grid-template-columns: 1fr 1fr; }
  .env-stat:nth-child(2) { border-right: 0; }
  .env-stat:nth-child(1), .env-stat:nth-child(2) {
    border-bottom: 1px solid rgba(242, 238, 230, 0.18);
  }
  .tix-row { font-size: 30px; }

  .perk-row { grid-template-columns: 64px minmax(0, 1fr); gap: 14px; }
  .perk-tag { justify-self: start; grid-column: 2; order: 3; }
  .perk-p { grid-column: 2; }
  .perk-num { font-size: 32px; }
  .perk-h { font-size: 18px; }

  .plan-grid { grid-template-columns: 1fr; gap: 32px; }
  .drops .wrap { flex-direction: column; gap: 14px; }
  .well { padding: 72px 18px 84px; }
}
