/* 13-memento.css — "13 Memento": keepsake stationery / private-club correspondence.
   Eggshell paper ground; deep burgundy feature panels; envelope red for cards + CTAs;
   pink used sparingly as photo mats. DM Serif Display headlines, Tinos editorial body,
   Archivo (condensed 800–900) for boxed GLOBAL ELITES tabs only, DM Mono datelines.
   REVISION 2 compliant: no tickers, no type behind photos, sturdy headlines. */

:root {
  --paper:        #F2EEE6;
  --paper-2:      #FBF9F5;
  --burgundy:     #382123;
  --burgundy-2:   #2B1719;   /* footer / deepest panel */
  --envelope:     #8F2A23;
  --envelope-deep:#6E1F19;
  --pink:         #F2C7CC;
  --red-ed:       #CF3320;   /* editorial red — large decorative numerals on burgundy */
  --cream:        #F2EEEA;
  --cream-dim:    rgba(242, 238, 234, 0.66);
  --cream-faint:  rgba(242, 238, 234, 0.28);
  --ink:          #141110;
  --ink-mute:     #635A53;
  --rule:         rgba(20, 17, 16, 0.16);
  --rule-soft:    rgba(20, 17, 16, 0.09);
  --rule-cream:   rgba(242, 238, 234, 0.22);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; overflow-x: clip; }
body {
  font-family: 'Tinos', 'Times New Roman', serif;
  background: var(--paper);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.58;
  -webkit-font-smoothing: antialiased;
}
/* faint paper grain */
body::after {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.6 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  background-size: 200px 200px;
  pointer-events: none;
  z-index: 9000;
  mix-blend-mode: multiply;
  opacity: .035;
}
body.elite { background: var(--burgundy); color: var(--cream); }
body.elite::after { mix-blend-mode: screen; opacity: .03; }

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

h1, h2, h3 { margin: 0; font-weight: 400; }
p { margin: 0; }

.wrap { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

/* ---------- type helpers ---------- */
.serif { font-family: 'DM Serif Display', Georgia, serif; font-weight: 400; }
.mono {
  font-family: 'DM Mono', ui-monospace, monospace;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
/* boxed GLOBAL ELITES tab — Archivo heavy, narrow */
.ge-tab {
  display: inline-block;
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-stretch: 78%;
  font-size: 9.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
  background: var(--envelope);
  padding: 3px 7px 4px;
  line-height: 1;
  vertical-align: 2px;
  white-space: nowrap;
}
.seal-dot {
  display: inline-block;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--envelope);
  box-shadow: inset 0 -1px 2px rgba(0,0,0,.3), 0 1px 1px rgba(0,0,0,.15);
  vertical-align: 1px;
}

/* ---------- section head (paper sections) ---------- */
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 48px;
}
.section-head .eyebrow {
  font-family: 'DM Mono', ui-monospace, monospace;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--envelope);
  margin-bottom: 14px;
}
.section-head h2 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(32px, 3.6vw, 46px);
  line-height: 1.06;
  letter-spacing: -0.005em;
}
.section-head h2 em { font-style: italic; }
.section-head .meta {
  font-family: 'Tinos', serif;
  font-style: italic;
  font-size: 15.5px;
  color: var(--ink-mute);
  max-width: 300px;
  text-align: right;
  padding-bottom: 6px;
}
.section-head .meta a { color: var(--envelope); }

/* ================================================================
   MASTHEAD + NAV (landing)
================================================================ */
.masthead {
  text-align: center;
  padding: 34px 24px 22px;
  border-bottom: 1px solid var(--rule);
}
.masthead .dateline {
  font-family: 'DM Mono', ui-monospace, monospace;
  font-weight: 500;
  font-size: 10.5px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 16px;
}
.masthead .dateline .d-sep { color: var(--envelope); margin: 0 10px; }
.masthead-logo { display: inline-block; }
.masthead-logo img {
  width: min(420px, 78vw);
  height: auto;
  mix-blend-mode: multiply; /* melt the baked cream bg into the paper */
}

.nav {
  position: sticky; top: 0; z-index: 60;
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 13px 32px;
  display: flex; align-items: center; gap: 28px;
}
.nav-links {
  display: flex; gap: 26px;
  font-family: 'DM Mono', ui-monospace, monospace;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.nav-links a { text-decoration: none; color: var(--ink); opacity: .85; white-space: nowrap; }
.nav-links a:hover { color: var(--envelope); opacity: 1; }
.nav-cta {
  margin-left: auto;
  font-family: 'DM Mono', ui-monospace, monospace;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--cream);
  background: var(--envelope);
  padding: 11px 18px;
  transition: background .18s ease;
}
.nav-cta:hover { background: var(--envelope-deep); }

/* ================================================================
   HERO — opened correspondence
================================================================ */
.hero { padding: 84px 0 110px; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: 72px;
  align-items: center;
}
.hero-kicker {
  font-family: 'DM Mono', ui-monospace, monospace;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--envelope);
  margin-bottom: 22px;
}
.hero-lede {
  font-family: 'Tinos', serif;
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.35;
  margin-bottom: 16px;
}
.hero-sub {
  font-family: 'Tinos', serif;
  font-style: italic;
  font-size: 17px;
  color: var(--ink-mute);
  margin-bottom: 40px;
  max-width: 42ch;
}
.hero-listen-label {
  font-family: 'DM Mono', ui-monospace, monospace;
  font-weight: 500;
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 14px;
}
.listen-row { display: flex; flex-wrap: wrap; gap: 10px; }
.listen-pill {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'DM Mono', ui-monospace, monospace;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  border: 1px solid var(--rule);
  background: var(--paper-2);
  padding: 10px 16px;
  border-radius: 999px;
  transition: border-color .18s ease, color .18s ease;
}
.listen-pill svg { width: 15px; height: 15px; }
.listen-pill:hover { border-color: var(--envelope); color: var(--envelope); }
.hero-secondary {
  display: inline-block;
  margin-top: 34px;
  font-family: 'Tinos', serif;
  font-style: italic;
  font-size: 16px;
  color: var(--envelope);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}
.hero-secondary:hover { color: var(--envelope-deep); }

/* the envelope scene */
.env-scene { position: relative; min-height: 500px; }
.env {
  position: absolute;
  left: 4%; right: 4%; bottom: 0;
  height: 296px;
  background: var(--paper-2);
  border: 1px solid var(--rule);
  transform: rotate(-1.4deg);
  box-shadow: 0 26px 52px rgba(20, 17, 16, 0.14);
}
.env-flap {
  position: absolute;
  top: 0; left: -1px; right: -1px;
  height: 148px;
  background: #F5F0E8;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  filter: drop-shadow(0 2px 2px rgba(20, 17, 16, 0.08));
}
.env-address {
  position: absolute;
  left: 26px; bottom: 24px;
  font-family: 'DM Mono', ui-monospace, monospace;
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  line-height: 2.1;
}
.env-stamp {
  position: absolute;
  right: 22px; bottom: 30px;
  width: 58px; height: 68px;
  background: var(--pink);
  border: 1px solid rgba(20, 17, 16, 0.12);
  display: flex; align-items: center; justify-content: center;
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 24px;
  color: var(--envelope);
  box-shadow: inset 0 0 0 4px var(--paper-2);
  transform: rotate(2deg);
}
.env-postmark {
  position: absolute;
  right: 92px; bottom: 20px;
  width: 84px; height: 84px;
  border: 1.5px dashed rgba(20, 17, 16, 0.28);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  font-family: 'DM Mono', ui-monospace, monospace;
  font-weight: 400;
  font-size: 8px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(20, 17, 16, 0.42);
  transform: rotate(-12deg);
  padding: 10px;
  line-height: 1.7;
}
.hero-card {
  position: absolute;
  top: 0; left: 0; right: 9%;
  bottom: 128px;
  background: var(--burgundy);
  color: var(--cream);
  transform: rotate(1.8deg);
  box-shadow: 0 22px 44px rgba(20, 17, 16, 0.28);
  padding: 44px 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hero-card-eyebrow {
  font-family: 'DM Mono', ui-monospace, monospace;
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 18px;
}
.hero-card h1 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(30px, 3.2vw, 46px);
  line-height: 1.1;
  letter-spacing: -0.005em;
}
.hero-card h1 em { font-style: italic; }
.hero-card-foot {
  font-family: 'DM Mono', ui-monospace, monospace;
  font-weight: 400;
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-dim);
  display: grid;
  grid-template-columns: 1fr 140px 1fr; /* center gap clears the wax seal */
  border-top: 1px solid var(--rule-cream);
  padding-top: 16px;
  margin-top: 26px;
}
.hero-card-foot span:last-child { grid-column: 3; justify-self: end; text-align: right; }
.wax-seal {
  position: absolute;
  left: 45%; bottom: 112px;
  transform: translateX(-50%) rotate(-4deg);
  width: 88px; height: 88px;
  border-radius: 50%;
  background: radial-gradient(circle at 34% 28%, #AC4234, var(--envelope) 52%, var(--envelope-deep) 96%);
  box-shadow: 0 8px 18px rgba(20, 17, 16, 0.32), inset 0 2px 4px rgba(255,255,255,.2), inset 0 -4px 8px rgba(0,0,0,.32);
  display: flex; align-items: center; justify-content: center;
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 30px;
  letter-spacing: 0.04em;
  color: #F4D9D2;
  z-index: 3;
}
.wax-seal::after {
  content: '';
  position: absolute; inset: 9px;
  border: 1px dashed rgba(244, 217, 210, 0.45);
  border-radius: 50%;
}

/* ================================================================
   THE RECORD BOOK — episodes
================================================================ */
.record { padding: 96px 0 100px; border-top: 1px solid var(--rule); }

/* featured episode — burgundy card, pink-matted photo BESIDE text */
.feat {
  display: grid;
  grid-template-columns: 380px minmax(0, 1fr);
  gap: 56px;
  background: var(--burgundy);
  color: var(--cream);
  padding: 48px;
  box-shadow: 0 24px 48px rgba(20, 17, 16, 0.18);
  margin-bottom: 72px;
}
.feat-mat {
  background: var(--pink);
  padding: 12px;
  align-self: start;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}
.feat-mat image-slot { width: 100%; aspect-ratio: 1 / 1; }
.feat-mat-cap {
  font-family: 'DM Mono', ui-monospace, monospace;
  font-weight: 400;
  font-size: 9.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--burgundy);
  padding-top: 9px;
  text-align: center;
}
.feat-num {
  font-family: 'DM Mono', ui-monospace, monospace;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 18px;
}
.feat h3 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(28px, 2.8vw, 40px);
  line-height: 1.12;
  margin-bottom: 20px;
}
.feat h3 em { font-style: italic; }
.feat-lede {
  font-family: 'Tinos', serif;
  font-size: 17px;
  line-height: 1.62;
  color: var(--cream-dim);
  max-width: 56ch;
  margin-bottom: 24px;
}
.feat-meta {
  font-family: 'DM Mono', ui-monospace, monospace;
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-dim);
  display: flex; gap: 14px; align-items: center;
  margin-bottom: 32px;
}
.feat-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-play {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'DM Mono', ui-monospace, monospace;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--cream);
  background: var(--envelope);
  padding: 14px 22px;
  transition: background .18s ease;
}
.btn-play:hover { background: var(--envelope-deep); }
.btn-quiet {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'DM Mono', ui-monospace, monospace;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--cream);
  border: 1px solid var(--rule-cream);
  padding: 14px 22px;
  transition: border-color .18s ease;
}
.btn-quiet:hover { border-color: var(--cream); }

/* ledger list */
.ledger { border-top: 2px solid var(--ink); }
.lg-row {
  display: grid;
  grid-template-columns: 92px minmax(0, auto) minmax(24px, 1fr) 74px 62px;
  gap: 20px;
  align-items: start;
  padding: 26px 4px;
  border-bottom: 1px solid var(--rule);
}
.lg-num {
  font-family: 'DM Mono', ui-monospace, monospace;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--envelope);
  padding-top: 7px;
}
.lg-num.is-premium { color: var(--envelope-deep); }
.lg-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 23px;
  line-height: 1.2;
  margin: 0 0 7px;
  font-weight: 400;
}
.lg-title .ge-tab { margin-left: 10px; }
.lg-title .seal-dot { margin-left: 8px; }
.lg-desc {
  font-family: 'Tinos', serif;
  font-size: 15px;
  color: var(--ink-mute);
  max-width: 58ch;
}
.lg-leader {
  border-bottom: 2px dotted rgba(20, 17, 16, 0.32);
  margin-top: 19px;
  min-width: 24px;
}
.lg-date, .lg-dur {
  font-family: 'DM Mono', ui-monospace, monospace;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--ink);
  padding-top: 8px;
  white-space: nowrap;
}
.lg-dur { text-align: right; }
.record-foot {
  font-family: 'Tinos', serif;
  font-style: italic;
  font-size: 15.5px;
  color: var(--ink-mute);
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.record-foot a { color: var(--envelope); }

/* ================================================================
   PHOTO BOOTH — burgundy
================================================================ */
.booth {
  background: var(--burgundy);
  color: var(--cream);
  padding: 96px 0 90px;
}
.booth .section-head .eyebrow { color: var(--pink); }
.booth .section-head .meta { color: var(--cream-dim); }
.booth-row {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: clamp(28px, 5vw, 72px);
  padding-top: 10px;
}
.strip {
  background: var(--paper-2);
  padding: 10px 10px 4px;
  width: 196px;
  flex: 0 0 auto;
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.4);
}
.strip.s1 { transform: rotate(-2.2deg); }
.strip.s2 { transform: rotate(1.4deg) translateY(22px); }
.strip.s3 { transform: rotate(-1deg) translateY(6px); }
.strip-frames { display: grid; gap: 9px; }
.strip-frames image-slot { width: 100%; height: 132px; background: #ddd; }
.strip-cap {
  font-family: 'DM Mono', ui-monospace, monospace;
  font-weight: 400;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
  text-align: center;
  padding: 9px 2px;
}

/* ================================================================
   TICKET SHEET BAND — burgundy, static text texture (no motion)
================================================================ */
.ticket-band {
  background: var(--burgundy);
  color: var(--cream);
  border-top: 1px dashed var(--rule-cream);
}
.tb-texture { padding: 26px 0 0; }
.tb-texture.bottom { padding: 0 0 26px; }
.tb-row {
  font-family: 'DM Mono', ui-monospace, monospace;
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cream-faint);
  white-space: nowrap;
  overflow: hidden;
  text-align: center;
  padding: 9px 0;
  border-bottom: 1px dashed rgba(242, 238, 234, 0.12);
  user-select: none;
}
.tb-texture.bottom .tb-row:last-child { border-bottom: none; }
.tb-cta {
  text-align: center;
  padding: 56px 24px 60px;
}
.tb-cta h3 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.1;
  margin-bottom: 14px;
}
.tb-cta h3 em { font-style: italic; }
.tb-cta p {
  font-family: 'Tinos', serif;
  font-style: italic;
  font-size: 16.5px;
  color: var(--cream-dim);
  margin-bottom: 30px;
}
.tb-cta .btn-play { font-size: 12px; padding: 16px 28px; }

/* ================================================================
   THE CLOSET — merch as keepsakes
================================================================ */
.closet { padding: 96px 0 104px; }
.closet-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
}
.prod { text-decoration: none; display: block; }
.prod-pic {
  position: relative;
  background: var(--paper-2);
  border: 1px solid var(--rule-soft);
  padding: 14px;
  margin-bottom: 18px;
  transition: box-shadow .2s ease;
}
.prod:hover .prod-pic { box-shadow: 0 14px 30px rgba(20, 17, 16, 0.12); }
.prod-pic image-slot { width: 100%; aspect-ratio: 4 / 5; }
.tie-tag {
  position: absolute;
  top: 14px; right: -10px;
  background: var(--paper-2);
  border: 1px solid var(--rule);
  font-family: 'DM Mono', ui-monospace, monospace;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--ink);
  padding: 7px 12px 7px 20px;
  transform: rotate(6deg);
  box-shadow: 0 4px 10px rgba(20, 17, 16, 0.12);
  z-index: 2;
}
.tie-tag::before { /* punched hole */
  content: '';
  position: absolute;
  left: 7px; top: 50%;
  transform: translateY(-50%);
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--paper);
  box-shadow: inset 0 0 0 1.5px var(--rule);
}
.tie-tag::after { /* string */
  content: '';
  position: absolute;
  left: -13px; top: 42%;
  width: 18px;
  border-top: 1.5px solid rgba(20, 17, 16, 0.4);
  transform: rotate(-30deg);
}
.prod h3 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 20px;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 7px;
}
.prod h3 em { font-style: italic; }
.prod-cap {
  font-family: 'Tinos', serif;
  font-size: 14.5px;
  color: var(--ink-mute);
  margin-bottom: 10px;
}
.prod-link {
  font-family: 'DM Mono', ui-monospace, monospace;
  font-weight: 500;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--envelope);
}

/* ================================================================
   FOOTER — shared (deep burgundy)
================================================================ */
footer {
  background: var(--burgundy-2);
  color: var(--cream);
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 76px 32px 56px;
  display: grid;
  grid-template-columns: minmax(0, 2fr) repeat(3, minmax(0, 1fr));
  gap: 48px;
}
.foot-brand {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 27px;
  line-height: 1.1;
  margin-bottom: 14px;
}
.foot-brand em { font-style: italic; }
.foot-tag {
  font-family: 'Tinos', serif;
  font-style: italic;
  font-size: 15px;
  color: var(--cream-dim);
  max-width: 34ch;
  margin-bottom: 24px;
}
.foot-news { display: flex; max-width: 320px; }
.foot-news input {
  flex: 1;
  min-width: 0;
  font-family: 'DM Mono', ui-monospace, monospace;
  font-size: 12px;
  padding: 12px 14px;
  border: 1px solid var(--rule-cream);
  border-right: none;
  background: transparent;
  color: var(--cream);
}
.foot-news input::placeholder { color: var(--cream-faint); }
.foot-news button {
  font-family: 'DM Mono', ui-monospace, monospace;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
  background: var(--envelope);
  border: none;
  padding: 12px 18px;
  cursor: pointer;
  transition: background .18s ease;
}
.foot-news button:hover { background: var(--envelope-deep); }
footer h5 {
  font-family: 'DM Mono', ui-monospace, monospace;
  font-weight: 500;
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--pink);
  margin: 4px 0 18px;
}
footer ul { list-style: none; margin: 0; padding: 0; }
footer ul li { margin-bottom: 11px; }
footer ul a {
  font-family: 'Tinos', serif;
  font-size: 15.5px;
  color: var(--cream-dim);
  text-decoration: none;
}
footer ul a:hover { color: var(--cream); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 22px 32px 30px;
  border-top: 1px solid var(--rule-cream);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-family: 'DM Mono', ui-monospace, monospace;
  font-weight: 400;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-faint);
}

/* ================================================================
   ELITE PAGE — the invitation
================================================================ */
.e-nav {
  position: sticky; top: 0; z-index: 60;
  background: var(--burgundy);
  border-bottom: 1px solid var(--rule-cream);
}
.e-nav .nav-inner { padding: 15px 32px; }
.e-logo {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 21px;
  color: var(--cream);
  text-decoration: none;
  white-space: nowrap;
}
.e-logo em { font-style: italic; }
.e-nav .nav-links a { color: var(--cream); opacity: .8; }
.e-nav .nav-links a:hover { color: var(--pink); opacity: 1; }

/* invitation hero */
.invite {
  padding: 88px 24px 104px;
  display: flex;
  justify-content: center;
}
.rsvp {
  position: relative;
  width: 100%;
  max-width: 780px;
  background: var(--envelope);
  color: #F6E5DF;
  padding: 74px 64px 54px;
  transform: rotate(-0.9deg);
  box-shadow: 0 42px 84px rgba(0, 0, 0, 0.5);
  text-align: center;
}
.rsvp::before { /* inner keyline frame */
  content: '';
  position: absolute; inset: 14px;
  border: 1px solid rgba(246, 229, 223, 0.4);
  pointer-events: none;
}
.rsvp .wax-seal {
  left: 50%;
  bottom: auto;
  top: -40px;
  width: 80px; height: 80px;
  font-size: 27px;
  background: radial-gradient(circle at 34% 28%, #4E2E30, var(--burgundy) 55%, #241315 96%);
  color: var(--pink);
}
.rsvp .wax-seal::after { border-color: rgba(242, 199, 204, 0.4); }
.rsvp-lockup {
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.rsvp-lockup .rsvp-wordmark {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 25px;
  letter-spacing: 0.01em;
  color: #F6E5DF;
}
.rsvp-lockup .ge-tab {
  background: var(--burgundy);
  color: var(--cream);
  font-size: 11px;
  padding: 5px 10px 6px;
  letter-spacing: 0.2em;
}
.rsvp h1 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.06;
  margin-bottom: 22px;
}
.rsvp h1 em { font-style: italic; }
.rsvp-sub {
  font-family: 'Tinos', serif;
  font-size: 17.5px;
  line-height: 1.6;
  color: rgba(246, 229, 223, 0.85);
  max-width: 52ch;
  margin: 0 auto 36px;
}
.rsvp-cta {
  display: inline-block;
  font-family: 'DM Mono', ui-monospace, monospace;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--envelope);
  background: var(--paper-2);
  padding: 17px 30px;
  transition: background .18s ease, color .18s ease;
}
.rsvp-cta:hover { background: var(--pink); color: var(--envelope-deep); }
.rsvp-fine {
  font-family: 'DM Mono', ui-monospace, monospace;
  font-weight: 400;
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(246, 229, 223, 0.62);
  margin-top: 18px;
}
.rsvp-stats {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 4vw, 44px);
  flex-wrap: wrap;
  border-top: 1px dashed rgba(246, 229, 223, 0.35);
  margin-top: 42px;
  padding-top: 24px;
  font-family: 'DM Mono', ui-monospace, monospace;
  font-weight: 400;
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(246, 229, 223, 0.8);
}

/* elite section shells */
.e-section { padding: 88px 0; }
.e-section + .e-section { border-top: 1px dashed var(--rule-cream); }
.e-head { margin-bottom: 54px; }
.e-head .eyebrow {
  font-family: 'DM Mono', ui-monospace, monospace;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 14px;
}
.e-head h2 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1.08;
  color: var(--cream);
}
.e-head h2 em { font-style: italic; }
.e-head .e-meta {
  font-family: 'Tinos', serif;
  font-style: italic;
  font-size: 16px;
  color: var(--cream-dim);
  margin-top: 14px;
  max-width: 62ch;
}

/* benefits — Tinos list, red numbers */
.ben-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 44px 64px;
}
.ben {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}
.ben-num {
  font-family: 'Tinos', serif;
  font-size: 52px;
  line-height: 0.9;
  color: var(--red-ed);
  padding-top: 4px;
}
.ben h3 {
  font-family: 'Tinos', serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.25;
  color: var(--cream);
  margin-bottom: 4px;
}
.ben-tag {
  font-family: 'DM Mono', ui-monospace, monospace;
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 10px;
}
.ben p {
  font-family: 'Tinos', serif;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--cream-dim);
}

/* pricing tickets */
.tix-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 44px;
}
.ticket {
  position: relative;
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  background: var(--paper-2);
  color: var(--ink);
  box-shadow: 0 26px 52px rgba(0, 0, 0, 0.42);
  outline: 2px dashed rgba(251, 249, 245, 0.3);
  outline-offset: 7px;
}
.ticket::before, .ticket::after { /* perforation notches at the stub line */
  content: '';
  position: absolute;
  left: 92px;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--burgundy);
  transform: translateX(-50%);
  z-index: 2;
}
.ticket::before { top: -12px; }
.ticket::after { bottom: -12px; }
.tix-stub {
  border-right: 2px dashed rgba(20, 17, 16, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.tix-stub span {
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-stretch: 78%;
  font-size: 15px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--envelope);
  transform: rotate(180deg);
  writing-mode: vertical-rl;
  white-space: nowrap;
}
.tix-body { padding: 34px 34px 32px; }
.tix-plan {
  font-family: 'DM Mono', ui-monospace, monospace;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 14px;
}
.tix-price {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 46px;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 4px;
}
.tix-price .per {
  font-family: 'DM Mono', ui-monospace, monospace;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--ink-mute);
  margin-left: 6px;
}
.tix-note {
  font-family: 'Tinos', serif;
  font-style: italic;
  font-size: 15px;
  color: var(--ink-mute);
  margin: 10px 0 20px;
}
.tix-list {
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
  border-top: 1px solid var(--rule-soft);
}
.tix-list li {
  font-family: 'Tinos', serif;
  font-size: 15px;
  padding: 9px 0 9px 20px;
  border-bottom: 1px solid var(--rule-soft);
  position: relative;
}
.tix-list li::before {
  content: '';
  position: absolute;
  left: 2px; top: 15px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--envelope);
}
.tix-cta {
  display: inline-block;
  font-family: 'DM Mono', ui-monospace, monospace;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--cream);
  background: var(--envelope);
  padding: 14px 24px;
  transition: background .18s ease;
}
.tix-cta:hover { background: var(--envelope-deep); }
.tix-stamp {
  position: absolute;
  top: 18px; right: 18px;
  font-family: 'DM Mono', ui-monospace, monospace;
  font-weight: 500;
  font-size: 9.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--envelope);
  border: 1.5px solid var(--envelope);
  padding: 6px 10px;
  transform: rotate(5deg);
}
.tix-under {
  font-family: 'Tinos', serif;
  font-style: italic;
  font-size: 15px;
  color: var(--cream-dim);
  text-align: center;
  margin-top: 44px;
}
.tix-under a { color: var(--pink); }

/* letters — testimonials */
.letters-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
  align-items: start;
}
.letter {
  position: relative;
  background: var(--paper-2);
  color: var(--ink);
  padding: 32px 28px 26px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.38);
}
.letter.l1 { transform: rotate(-1.3deg); }
.letter.l2 { transform: rotate(0.9deg) translateY(16px); }
.letter.l3 { transform: rotate(-0.6deg); }
.letter::after { /* fold crease */
  content: '';
  position: absolute;
  left: 0; right: 0; top: 55%;
  height: 10px;
  background: linear-gradient(180deg, rgba(20,17,16,0.06), rgba(255,255,255,0.5) 55%, transparent);
  pointer-events: none;
}
.letter-salut {
  font-family: 'DM Mono', ui-monospace, monospace;
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--envelope);
  margin-bottom: 16px;
}
.letter blockquote {
  margin: 0 0 20px;
  font-family: 'Tinos', serif;
  font-style: italic;
  font-size: 18.5px;
  line-height: 1.5;
}
.letter blockquote b { font-style: italic; font-weight: 700; }
.letter-sig {
  font-family: 'DM Mono', ui-monospace, monospace;
  font-weight: 400;
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  border-top: 1px solid var(--rule-soft);
  padding-top: 12px;
}

/* fine print — FAQ */
.fine-cols { columns: 2; column-gap: 64px; }
.fine-item { break-inside: avoid; margin-bottom: 30px; }
.fine-item h3 {
  font-family: 'Tinos', serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--cream);
  margin-bottom: 7px;
}
.fine-item p {
  font-family: 'Tinos', serif;
  font-size: 14.5px;
  line-height: 1.62;
  color: var(--cream-dim);
}
.fine-item p a { color: var(--pink); }

/* elite closing */
.e-closing {
  text-align: center;
  padding: 96px 24px 110px;
  border-top: 1px dashed var(--rule-cream);
}
.e-closing h2 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(34px, 4vw, 52px);
  color: var(--cream);
  margin-bottom: 16px;
}
.e-closing h2 em { font-style: italic; }
.e-closing p {
  font-family: 'Tinos', serif;
  font-style: italic;
  font-size: 17px;
  color: var(--cream-dim);
  max-width: 52ch;
  margin: 0 auto 34px;
}
.e-closing .rsvp-cta { color: var(--envelope); }

/* ================================================================
   RESPONSIVE
================================================================ */
@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: minmax(0, 1fr); gap: 64px; }
  .env-scene { max-width: 640px; margin: 0 auto; width: 100%; }
  .feat { grid-template-columns: 320px minmax(0, 1fr); gap: 40px; }
  .closet-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 36px; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ben-grid { gap: 40px 44px; }
  .letters-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
  .tix-grid { grid-template-columns: minmax(0, 1fr); max-width: 620px; margin: 0 auto; }
}

@media (max-width: 820px) {
  .section-head { flex-direction: column; align-items: flex-start; gap: 14px; }
  .section-head .meta { text-align: left; max-width: none; padding-bottom: 0; }
  .feat { grid-template-columns: minmax(0, 1fr); padding: 32px; gap: 32px; }
  .feat-mat { max-width: 360px; }
  .booth-row { flex-wrap: wrap; }
  .strip.s2, .strip.s3 { transform: rotate(1deg); }
  .letters-grid { grid-template-columns: minmax(0, 1fr); max-width: 480px; margin: 0 auto; }
  .letter.l2 { transform: rotate(0.9deg); }
  .fine-cols { columns: 1; }
  .lg-row { grid-template-columns: 72px minmax(0, 1fr) auto; gap: 12px; }
  .lg-leader { display: none; }
  .lg-date { grid-column: 3; text-align: right; }
  .lg-dur { display: none; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .wrap { padding: 0 20px; }
  .nav-inner { padding: 12px 20px; gap: 16px; }
  .nav-links { gap: 16px; overflow-x: auto; scrollbar-width: none; }
  .nav-links::-webkit-scrollbar { display: none; }
  .nav .nav-links a:nth-child(n+2) { display: none; }
  .nav-cta { padding: 10px 12px; letter-spacing: 0.1em; white-space: nowrap; }
  .masthead .dateline { letter-spacing: 0.18em; font-size: 9.5px; }
  .hero { padding: 56px 0 80px; }

  /* envelope scene simplifies: card first, envelope tucked behind it below */
  .env-scene { min-height: 0; display: flex; flex-direction: column; }
  .hero-card {
    position: relative;
    inset: auto;
    order: 1;
    transform: rotate(1deg);
    padding: 30px 26px;
    margin: 0;
    z-index: 2;
  }
  .hero-card-foot { grid-template-columns: 1fr; gap: 6px; }
  .hero-card-foot span:last-child { grid-column: auto; justify-self: start; text-align: left; }
  .env {
    position: relative;
    left: 0; right: 0;
    order: 2;
    height: 210px;
    margin-top: -58px;
    transform: rotate(-0.8deg);
    z-index: 1;
  }
  .env-flap { height: 100px; }
  .env-postmark { display: none; }
  .env-stamp { bottom: 26px; right: 16px; width: 48px; height: 56px; font-size: 20px; }
  .env-address { left: 18px; bottom: 18px; font-size: 10px; }
  .wax-seal {
    position: absolute;
    left: auto; right: 18px; bottom: auto; top: -34px;
    width: 68px; height: 68px; font-size: 23px;
  }

  .record { padding: 72px 0; }
  .lg-title { font-size: 20px; }
  .lg-title .ge-tab { margin-left: 6px; }
  .booth { padding: 72px 0; }
  .strip { width: 172px; }
  .strip-frames image-slot { height: 116px; }
  .closet { padding: 72px 0 80px; }
  .closet-grid { grid-template-columns: minmax(0, 1fr); max-width: 360px; }
  .footer-grid { grid-template-columns: minmax(0, 1fr); gap: 36px; padding: 56px 20px 44px; }

  .e-nav .nav-links { display: none; } /* the logo links back to the main feed */
  .e-nav .nav-cta { margin-left: auto; }
  .invite { padding: 64px 16px 80px; }
  .rsvp { padding: 62px 24px 40px; transform: rotate(-0.5deg); }
  .rsvp::before { inset: 9px; }
  .rsvp .wax-seal { top: -32px; width: 64px; height: 64px; font-size: 21px; }
  .e-section { padding: 64px 0; }
  .ben-grid { grid-template-columns: minmax(0, 1fr); gap: 34px; }
  .ben { grid-template-columns: 56px minmax(0, 1fr); gap: 14px; }
  .ben-num { font-size: 40px; }
  .ticket { grid-template-columns: 58px minmax(0, 1fr); }
  .ticket::before, .ticket::after { left: 58px; }
  .tix-stub span { font-size: 12px; letter-spacing: 0.22em; }
  .tix-body { padding: 26px 22px 26px; }
  .tix-price { font-size: 38px; }
  .tix-stamp { top: 10px; right: 10px; }
  .e-closing { padding: 72px 20px 84px; }
}

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