/* ─────────────────────────────────────────────────────────────
   BANISHED · A live game of treachery
   Aesthetic: theatre poster × Cold War dossier
   Cream paper, ink black, signal red. Editorial serif.
   ───────────────────────────────────────────────────────────── */

:root {
  --paper:      #f1ead8;
  --paper-2:    #e8dfc3;
  --paper-3:    #d9cda7;
  --ink:        #15110b;
  --ink-soft:   #2a241a;
  --ink-faint:  rgba(21, 17, 11, 0.55);
  --ink-ghost:  rgba(21, 17, 11, 0.18);
  --red:        #b1271a;
  --red-deep:   #7d1a10;
  --gold:       #b08a3e;

  --serif:      "Fraunces", "Times New Roman", serif;
  --mono:       "IBM Plex Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --maxw:       1240px;
  --gutter:     clamp(1.25rem, 4vw, 3rem);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--serif);
  font-feature-settings: "ss01", "ss02";
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

::selection { background: var(--ink); color: var(--paper); }

/* paper grain overlay */
.grain {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.35;
  mix-blend-mode: multiply;
  background-image:
    radial-gradient(circle at 13% 27%, rgba(21,17,11,0.06) 0 1px, transparent 1px),
    radial-gradient(circle at 67% 41%, rgba(21,17,11,0.04) 0 1px, transparent 1px),
    radial-gradient(circle at 89% 73%, rgba(21,17,11,0.05) 0 1px, transparent 1px),
    radial-gradient(circle at 31% 88%, rgba(21,17,11,0.04) 0 1px, transparent 1px);
  background-size: 7px 7px, 11px 11px, 13px 13px, 9px 9px;
}

/* ─────────────────────────── NAV ─────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(241, 234, 216, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--ink-ghost);
}
.nav__inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: 1rem var(--gutter);
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem;
}
.nav__mark {
  display: flex; align-items: center; gap: 0.6rem;
  text-decoration: none; color: var(--ink);
}
.nav__seal {
  width: 32px; height: 32px;
  display: grid; place-items: center;
  background: var(--ink); color: var(--paper);
  font-family: var(--serif);
  font-weight: 700;
  font-style: italic;
  font-size: 1.1rem;
  border-radius: 50%;
  letter-spacing: -0.04em;
}
.nav__wordmark {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
}
/* ── Nav links: full-screen takeover menu at all viewport sizes ── */
/* The site has 17+ menu items — too many to fit inline horizontally, even on
   wide monitors. We always use the hamburger + full-screen menu pattern. */
.nav__links {
  position: fixed;
  inset: 0;
  width: 100%; max-width: none;
  height: 100vh; height: 100dvh;
  background: #f1ead8;  /* fully opaque */
  padding: 5rem 1.5rem 2rem;
  display: flex; flex-direction: column;
  align-items: stretch;
  gap: 0;
  transform: translateX(100%);
  transition: transform 0.22s ease;
  z-index: 9999;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  font-family: var(--mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.nav__links.is-open { transform: translateX(0); }
.nav__links a {
  display: block;
  width: 100%;
  padding: 1.1rem 0.5rem;
  border-bottom: 1px dashed var(--ink-ghost);
  font-family: var(--mono);
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #15110b;
  text-decoration: none;
  min-height: 44px;
  box-sizing: border-box;
  opacity: 1;
  background: transparent;
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--red); }
.nav__links a:active { color: var(--red); }
.nav__links a:last-child { border-bottom: none; }
.nav__cta {
  margin-top: 1rem;
  border-radius: 100px;
  text-align: center;
  border-bottom: none !important;
  background: var(--ink);
  color: var(--paper) !important;
  padding: 0.85rem 1rem !important;
}
.nav__cta:hover { background: var(--red) !important; }

/* Backdrop disabled — full-screen menu replaces it */
.nav__backdrop { display: none !important; }

/* ── Hamburger button (always visible) ── */
.nav__burger {
  display: block;
  background: transparent;
  border: 1px solid var(--ink);
  width: 44px; height: 44px;
  border-radius: 50%;
  cursor: pointer;
  padding: 0;
  position: relative;
  flex-shrink: 0;
  z-index: 10001;  /* sits above the menu so it can also close it */
}
/* When menu is open, burger floats fixed in top-right so it's always tappable */
.nav__burger[aria-expanded="true"] {
  position: fixed;
  top: 0.7rem;
  right: var(--gutter);
  background: #f1ead8;
}
.nav__burger span {
  display: block;
  position: absolute;
  left: 50%; transform: translateX(-50%);
  width: 18px; height: 1.5px;
  background: var(--ink);
  transition: all 0.2s ease;
}
.nav__burger span:nth-child(1) { top: 14px; }
.nav__burger span:nth-child(2) { top: 21px; }
.nav__burger span:nth-child(3) { top: 28px; }
.nav__burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateX(-50%) translateY(7px) rotate(45deg);
}
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateX(-50%) translateY(-7px) rotate(-45deg);
}

/* ── Actual mobile shrinks (smaller header, tighter banners) ── */
@media (max-width: 760px) {
  .nav__inner { padding: 0.7rem var(--gutter); gap: 0.75rem; }
  .nav__seal { width: 28px; height: 28px; font-size: 1rem; }
  .nav__wordmark { font-size: 1.1rem; }

  /* Mobile: tighten internal banners */
  .plan-banner, .budget-banner, .pack-banner, .wire-banner,
  .show-banner, .ros-banner, .print-banner {
    padding: 0.45rem var(--gutter) !important;
    font-size: 0.62rem !important;
    letter-spacing: 0.14em !important;
    line-height: 1.3 !important;
  }
}

/* ─────────────────────────── HERO ─────────────────────────── */
.hero {
  position: relative;
  padding: clamp(3rem, 9vw, 7rem) var(--gutter) clamp(3rem, 8vw, 6rem);
  max-width: var(--maxw); margin: 0 auto;
  overflow: hidden;
}

/* rotating stamp ribbon */
.hero__stamp {
  position: absolute;
  top: clamp(2rem, 6vw, 4rem); right: -10%;
  width: 280px; height: 280px;
  border: 2px solid var(--red);
  border-radius: 50%;
  display: grid; place-items: center;
  opacity: 0.85;
  pointer-events: none;
  animation: spin 60s linear infinite;
  z-index: 2;
}
.hero__stamp::before {
  content: "";
  position: absolute; inset: 18px;
  border: 1px dashed var(--red);
  border-radius: 50%;
  opacity: 0.6;
}
.hero__stamp::after {
  content: "B";
  position: absolute;
  font-family: var(--serif);
  font-style: italic;
  font-size: 4rem;
  color: var(--red);
  font-weight: 700;
}
.hero__stamp-text {
  display: none; /* path-on-circle alternative — keeping the seal clean */
}
@media (max-width: 900px) {
  .hero__stamp { width: 180px; height: 180px; right: -8%; top: 1rem; }
  .hero__stamp::after { font-size: 2.5rem; }
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  grid-template-areas:
    "meta meta"
    "title title"
    "body card";
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: start;
  position: relative;
  z-index: 3;
}
@media (max-width: 900px) {
  .hero__grid {
    grid-template-columns: 1fr;
    grid-template-areas: "meta" "title" "body" "card";
  }
}

.hero__meta {
  grid-area: meta;
  display: flex; gap: 0.6rem; flex-wrap: wrap;
}

.tag {
  display: inline-flex; align-items: center;
  padding: 0.4rem 0.8rem;
  border: 1px solid var(--ink);
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.tag--red {
  background: var(--red);
  color: var(--paper);
  border-color: var(--red);
}

.hero__title {
  grid-area: title;
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(3.2rem, 11vw, 9rem);
  line-height: 0.92;
  letter-spacing: -0.035em;
  font-feature-settings: "ss01";
}
.hero__line { display: block; }
.hero__line--1 { margin-left: 0; }
.hero__line--2 { margin-left: clamp(2rem, 8vw, 6rem); }
.hero__line--3 { margin-left: clamp(4rem, 14vw, 11rem); }
.hero__line em {
  font-style: italic;
  font-weight: 400;
  color: var(--red);
  font-feature-settings: "ss01";
}

.hero__body { grid-area: body; max-width: 560px; padding-top: 1rem; }
.hero__lede {
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  line-height: 1.45;
  margin-bottom: 1.25rem;
}
.hero__lede strong { color: var(--red); font-weight: 600; }
.hero__sub {
  color: var(--ink-soft);
  font-size: 1.02rem;
  margin-bottom: 1.75rem;
}
.hero__ctas { display: flex; gap: 0.8rem; flex-wrap: wrap; }

.hero__card {
  grid-area: card;
  background: var(--paper-2);
  border: 1px solid var(--ink);
  font-family: var(--mono);
  font-size: 0.85rem;
  position: relative;
  box-shadow: 6px 6px 0 var(--ink);
}
.hero__card-header {
  background: var(--ink);
  color: var(--paper);
  padding: 0.7rem 1rem;
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.hero__card-body { padding: 1.25rem 1rem; }
.hero__card-row {
  display: flex; justify-content: space-between; gap: 1rem;
  padding: 0.55rem 0;
  border-bottom: 1px dashed var(--ink-ghost);
}
.hero__card-row:last-child { border: none; }
.hero__card-label { color: var(--ink-faint); text-transform: uppercase; font-size: 0.7rem; letter-spacing: 0.1em; }
.hero__card-value { color: var(--ink); font-weight: 500; text-align: right; }
.hero__card-foot {
  padding: 0.8rem 1rem;
  border-top: 1px solid var(--ink);
  font-family: var(--serif);
  font-size: 0.95rem;
  color: var(--ink-soft);
  text-align: center;
}

.dot {
  width: 8px; height: 8px; border-radius: 50%;
  display: inline-block;
}
.dot--live {
  background: var(--red);
  box-shadow: 0 0 0 0 rgba(177, 39, 26, 0.5);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(177, 39, 26, 0.5); }
  70%  { box-shadow: 0 0 0 10px rgba(177, 39, 26, 0); }
  100% { box-shadow: 0 0 0 0 rgba(177, 39, 26, 0); }
}
@keyframes spin {
  from { transform: rotate(0); }
  to { transform: rotate(360deg); }
}

/* ─────────────────────── BUTTONS ─────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.95rem 1.6rem;
  font-family: var(--mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  text-decoration: none;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: all 0.2s;
  border-radius: 100px;
}
.btn--primary {
  background: var(--ink); color: var(--paper);
}
.btn--primary:hover {
  background: var(--red); border-color: var(--red);
  transform: translate(-2px, -2px);
  box-shadow: 4px 4px 0 var(--ink);
}
.btn--ghost:hover {
  background: var(--ink); color: var(--paper);
}
.btn--block { width: 100%; padding: 1.1rem; }

/* ─────────────────────── MARQUEE ─────────────────────── */
.marquee {
  background: var(--ink);
  color: var(--paper);
  padding: 1.1rem 0;
  overflow: hidden;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  position: relative;
  z-index: 4;
}
.marquee__track {
  display: flex; gap: 2rem;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  font-family: var(--serif);
  font-style: italic;
  font-size: 2rem;
  letter-spacing: -0.01em;
}
.marquee__track span:not(.marquee__sep) { color: var(--paper); }
.marquee__sep { color: var(--red); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ─────────────────────── SECTIONS ─────────────────────── */
.section {
  padding: clamp(4rem, 9vw, 7rem) var(--gutter);
  position: relative;
  z-index: 3;
}
.section__inner { max-width: var(--maxw); margin: 0 auto; }

.kicker {
  display: flex; align-items: baseline; gap: 0.8rem;
  margin-bottom: 1.5rem;
  font-family: var(--mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}
.kicker__num {
  color: var(--red);
  font-weight: 600;
}
.kicker__label { color: var(--ink-soft); }

.display {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.2rem, 5.5vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin-bottom: 2.5rem;
  max-width: 18ch;
}

.lead {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 60ch;
  margin-bottom: 2rem;
}

/* show section */
.section--show {
  background: var(--paper-2);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.show__columns {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  font-size: 1.08rem;
}
.show__col p + p { margin-top: 1.15rem; }
.show__col em { color: var(--red); font-style: italic; }
@media (max-width: 720px) {
  .show__columns { grid-template-columns: 1fr; }
}

/* format / phases */
.phases {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid var(--ink);
}
.phase {
  display: flex; gap: 1.5rem;
  padding: 1.75rem;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: var(--paper);
  transition: background 0.3s;
}
.phase:nth-child(2n) { border-right: none; }
.phase:nth-last-child(-n+2) { border-bottom: none; }
.phase:hover { background: var(--paper-3); }

.phase__num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 2.6rem;
  color: var(--red);
  line-height: 1;
  min-width: 2.5rem;
}
.phase__body h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
  letter-spacing: -0.01em;
}
.phase__body p {
  font-size: 0.98rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

@media (max-width: 720px) {
  .phases { grid-template-columns: 1fr; }
  .phase { border-right: none !important; }
  .phase:nth-last-child(-n+2) { border-bottom: 1px solid var(--ink); }
  .phase:last-child { border-bottom: none; }
}

/* roles */
.section--roles {
  background: var(--ink);
  color: var(--paper);
}
.section--roles .kicker__label,
.section--roles .kicker__num { color: var(--paper); }
.section--roles .kicker__num { color: var(--red); }
.section--roles .display { color: var(--paper); }

.roles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 900px) { .roles { grid-template-columns: 1fr; } }

.role {
  border: 1px solid var(--paper);
  padding: 2rem 1.5rem 1.75rem;
  position: relative;
  display: flex; flex-direction: column;
  background: rgba(241, 234, 216, 0.03);
}
.role__stamp {
  position: absolute; top: -10px; left: 1rem;
  background: var(--paper); color: var(--ink);
  padding: 0.25rem 0.6rem;
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  font-weight: 600;
}
.role--traitor .role__stamp { background: var(--red); color: var(--paper); }
.role__count {
  font-family: var(--serif);
  font-style: italic;
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 0.5rem;
  color: var(--paper-3);
}
.role--traitor .role__count { color: var(--red); }
.role h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}
.role p {
  font-size: 0.98rem;
  color: var(--paper-3);
  line-height: 1.55;
  margin-bottom: auto;
  padding-bottom: 1.5rem;
}
.role__verdict {
  border-top: 1px dashed var(--paper-3);
  padding-top: 0.9rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--paper);
}

/* ─────────────────────── CURTAIN ─────────────────────── */
.curtain-section {
  background: var(--ink);
  padding: 0;
  overflow: hidden;
  position: relative;
}
.curtain {
  height: 70vh;
  min-height: 460px;
  position: relative;
  display: grid; place-items: center;
  background:
    radial-gradient(ellipse at center, #2a1410 0%, #15110b 70%);
}
.curtain__panel {
  position: absolute; top: 0; bottom: 0;
  width: 52%;
  background:
    repeating-linear-gradient(
      to right,
      #5a1810 0px, #7d1a10 18px, #5a1810 36px, #3d0e08 54px
    );
  box-shadow: inset 0 0 80px rgba(0,0,0,0.5);
  transition: transform 1.4s cubic-bezier(0.65, 0.05, 0.35, 1);
  z-index: 2;
}
.curtain__panel--left { left: 0; }
.curtain__panel--right { right: 0; }
.curtain.is-open .curtain__panel--left  { transform: translateX(-100%); }
.curtain.is-open .curtain__panel--right { transform: translateX(100%); }

.curtain__stage {
  text-align: center;
  color: var(--paper);
  padding: 2rem;
  max-width: 600px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s 0.6s, transform 1s 0.6s;
}
.curtain.is-open .curtain__stage { opacity: 1; transform: translateY(0); }

.curtain__eyebrow {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.5rem;
}
.curtain__quote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  line-height: 1.25;
  margin-bottom: 1rem;
}
.curtain__attr {
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--paper-3);
}

/* ─────────────────────── DATES ─────────────────────── */
.dates {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
@media (max-width: 900px) { .dates { grid-template-columns: 1fr; } }

.date-card {
  border: 1px solid var(--ink);
  background: var(--paper);
  padding: 1.5rem;
  display: flex; flex-direction: column;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.date-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 5px 5px 0 var(--ink);
}
.date-card--featured {
  background: var(--ink); color: var(--paper);
  border-color: var(--ink);
}
.date-card__tag {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.25rem;
}
.date-card--featured .date-card__tag { color: var(--paper); background: var(--red); padding: 0.3rem 0.6rem; align-self: flex-start; }
.date-card__date { margin-bottom: 1.25rem; }
.date-card__day {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 3.5rem;
  line-height: 1;
}
.date-card__month {
  font-family: var(--mono);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 0.3rem;
  color: var(--ink-soft);
}
.date-card--featured .date-card__month { color: var(--paper-3); }
.date-card__venue {
  font-size: 0.95rem;
  margin-bottom: 1rem;
  flex-grow: 1;
}
.date-card__status {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: flex; align-items: center; gap: 0.5rem;
}
.status--soon { color: var(--ink-faint); }
.date-card--featured .date-card__status { color: var(--paper); }

/* ─────────────────────── TICKETS / FORM ─────────────────────── */
.section--tickets {
  background: var(--paper-2);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.waitlist {
  max-width: 640px;
  background: var(--paper);
  border: 1px solid var(--ink);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: 8px 8px 0 var(--ink);
}
.waitlist__row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}
@media (max-width: 600px) { .waitlist__row { grid-template-columns: 1fr; } }

.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field__label {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.field input, .field select {
  font-family: var(--serif);
  font-size: 1.05rem;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--ink);
  background: var(--paper-2);
  color: var(--ink);
  border-radius: 0;
  appearance: none;
  -webkit-appearance: none;
}
.field input:focus, .field select:focus {
  outline: none;
  background: var(--paper);
  box-shadow: 0 0 0 2px var(--red);
}
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2315110b' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  padding-right: 2.5rem;
}
.waitlist__fine {
  font-size: 0.78rem;
  color: var(--ink-faint);
  margin-top: 1rem;
  text-align: center;
}
.waitlist__optin {
  margin: 1.25rem 0 1.5rem;
  padding: 1.1rem 1.2rem;
  border: 1px dashed var(--ink);
  background: var(--paper);
}
.checkbox {
  display: flex; gap: 0.9rem; align-items: flex-start;
  cursor: pointer;
}
.checkbox input { position: absolute; opacity: 0; pointer-events: none; }
.checkbox__box {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border: 1.5px solid var(--ink);
  background: var(--paper-2);
  position: relative;
  margin-top: 2px;
  transition: all 0.15s;
}
.checkbox input:checked + .checkbox__box {
  background: var(--red);
  border-color: var(--red);
}
.checkbox input:checked + .checkbox__box::after {
  content: "";
  position: absolute;
  left: 6px; top: 1px;
  width: 7px; height: 13px;
  border: solid var(--paper);
  border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg);
}
.checkbox input:focus-visible + .checkbox__box {
  outline: 2px solid var(--red);
  outline-offset: 2px;
}
.checkbox__copy {
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--ink-soft);
}
.checkbox__copy strong { color: var(--ink); font-weight: 600; }
.hidden { position: absolute; left: -9999px; }

/* ─────────────────────── FAQ ─────────────────────── */
.faq {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--ink);
}
.faq__item {
  border-bottom: 1px solid var(--ink);
}
.faq__item summary {
  padding: 1.5rem 0;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
  cursor: pointer;
  list-style: none;
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem;
  transition: color 0.2s;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--red);
  transition: transform 0.2s;
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item summary:hover { color: var(--red); }
.faq__item p {
  padding: 0 0 1.5rem;
  color: var(--ink-soft);
  font-size: 1.02rem;
  max-width: 60ch;
}

/* ─────────────────────── FOOTER ─────────────────────── */
.footer {
  background: var(--ink); color: var(--paper);
  padding: clamp(3rem, 5vw, 4rem) var(--gutter) 2rem;
  position: relative;
  z-index: 4;
}
.footer__inner {
  max-width: var(--maxw); margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: start;
}
@media (max-width: 720px) { .footer__inner { grid-template-columns: 1fr; } }

.footer__brand { display: flex; align-items: center; gap: 0.9rem; }
.footer__seal {
  width: 44px; height: 44px;
  background: var(--paper); color: var(--ink);
  display: grid; place-items: center;
  border-radius: 50%;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 700;
  font-size: 1.4rem;
}
.footer__name { font-family: var(--serif); font-size: 1.4rem; font-weight: 500; }
.footer__tag { font-family: var(--mono); font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--paper-3); }

.footer__links {
  display: flex; flex-wrap: wrap; gap: 1.25rem;
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.footer__links a { color: var(--paper); text-decoration: none; opacity: 0.7; transition: opacity 0.2s; }
.footer__links a:hover { opacity: 1; color: var(--red); }

.footer__legal {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(241, 234, 216, 0.15);
  padding-top: 1.5rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--paper-3);
  letter-spacing: 0.05em;
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
}

/* ─────────────────────── THANKS PAGE ─────────────────────── */
.thanks {
  min-height: 80vh;
  display: grid; place-items: center;
  padding: var(--gutter);
  text-align: center;
}
.thanks h1 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.5rem, 7vw, 5rem);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}
.thanks h1 em { color: var(--red); font-style: italic; }
.thanks p { font-size: 1.15rem; color: var(--ink-soft); max-width: 50ch; margin: 0 auto 2rem; }
