@import url("https://fonts.googleapis.com/css2?family=Forum&family=Merriweather:ital,wght@0,400;0,700;1,400&display=swap");

:root {
  --ink: #070707;
  --ink-soft: #0d0c0c;
  --ink-raised: #151212;
  --bone: #e8dfd0;
  --bone-muted: #b8ad9b;
  --ash: #82796e;
  --ember: #d3632f;
  --ember-bright: #f08b45;
  --blood: #731f24;
  --blood-dark: #3d1014;
  --line: rgba(232, 223, 208, 0.18);
  --line-hot: rgba(211, 99, 47, 0.42);
  --display: "Forum", "Times New Roman", serif;
  --body: "Merriweather", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--bone);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.75;
  text-rendering: optimizeLegibility;
}

body.modal-open {
  overflow: hidden;
}

[hidden] {
  display: none !important;
}

::selection {
  color: #fff8ee;
  background: var(--blood);
}

a {
  color: inherit;
}

button,
summary {
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

main {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 8%, rgba(96, 23, 28, 0.1), transparent 22rem),
    var(--ink);
}

.grain {
  position: fixed;
  z-index: 100;
  inset: 0;
  opacity: 0.16;
  pointer-events: none;
  background-image:
    repeating-radial-gradient(circle at 17% 32%, transparent 0, rgba(255, 255, 255, 0.035) 1px, transparent 2px, transparent 5px),
    repeating-radial-gradient(circle at 78% 64%, transparent 0, rgba(255, 255, 255, 0.025) 1px, transparent 3px, transparent 7px);
  mix-blend-mode: soft-light;
}

.site-header {
  position: relative;
  z-index: 20;
  display: grid;
  grid-template-columns: 160px 1fr 160px;
  align-items: center;
  width: min(100% - 64px, 1440px);
  min-height: 94px;
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
}

.brand-mark {
  display: block;
  width: 168px;
  height: 62px;
  overflow: hidden;
  text-decoration: none;
}

.brand-mark img {
  width: 168px;
  max-width: none;
  height: auto;
  transform: translateY(-24px);
}

.brand-mark-footer {
  width: 190px;
  height: 74px;
}

.brand-mark-footer img {
  width: 190px;
  transform: translateY(-27px);
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: clamp(22px, 3vw, 54px);
}

.desktop-nav a,
.site-footer a {
  position: relative;
  color: var(--bone-muted);
  font-family: var(--display);
  font-size: 15px;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: color 180ms ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 50%;
  bottom: -11px;
  left: 50%;
  height: 1px;
  content: "";
  background: var(--ember);
  transition: inset 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible,
.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--bone);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  right: 0;
  left: 0;
}

.header-cta {
  justify-self: end;
  padding: 9px 0;
  border-bottom: 1px solid var(--ember);
  color: var(--bone);
  font-family: var(--display);
  font-size: 15px;
  letter-spacing: 0.08em;
  text-decoration: none;
}

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(420px, 0.92fr);
  grid-template-rows: 1fr auto;
  gap: 54px 70px;
  width: min(100% - 64px, 1440px);
  min-height: calc(100vh - 94px);
  margin: 0 auto;
  padding: clamp(70px, 8vh, 116px) 0 42px;
}

.hero::before {
  position: absolute;
  top: 7%;
  left: 46%;
  width: 1px;
  height: 66%;
  content: "";
  background: linear-gradient(transparent, var(--line-hot), transparent);
  opacity: 0.55;
}

.hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  max-width: 690px;
  padding-left: clamp(0px, 3vw, 46px);
}

.eyebrow,
.kicker {
  margin: 0 0 26px;
  color: var(--ember-bright);
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: 0.24em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  color: var(--bone);
  font-family: var(--display);
  font-size: clamp(62px, 6.45vw, 112px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.82;
}

.hero h1 > span {
  color: var(--ember);
  font-size: 0.68em;
  font-style: italic;
}

.hero h1 strong {
  display: block;
  margin-top: 24px;
  color: var(--bone-muted);
  font-family: var(--body);
  font-size: clamp(15px, 1.35vw, 20px);
  font-weight: 400;
  letter-spacing: 0.29em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero-logo {
  width: min(100%, 690px);
  height: auto;
  margin: -54px 0 -40px -26px;
  object-fit: contain;
  object-position: left center;
  filter: contrast(1.06) brightness(1.04);
}

.hero-lede {
  max-width: 610px;
  margin: 40px 0 10px;
  color: var(--bone-muted);
  font-size: clamp(16px, 1.35vw, 20px);
  font-style: italic;
  line-height: 1.75;
}

.reveal-note {
  margin: 0;
  color: var(--ash);
  font-size: 13px;
  letter-spacing: 0.06em;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 36px;
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border: 1px solid var(--line-hot);
  font-family: var(--display);
  font-size: 14px;
  letter-spacing: 0.14em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.button-primary {
  color: #fff8ee;
  background: var(--blood);
  box-shadow: 0 14px 42px rgba(78, 11, 16, 0.26);
}

.button-primary:hover,
.button-primary:focus-visible {
  border-color: var(--ember-bright);
  background: #8a252a;
}

.text-link {
  color: var(--bone-muted);
  font-family: var(--display);
  font-size: 15px;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.text-link span {
  display: inline-block;
  margin-left: 8px;
  color: var(--ember);
  transition: transform 180ms ease;
}

.text-link:hover span,
.text-link:focus-visible span {
  transform: translateX(5px);
}

.hero-visual {
  position: relative;
  align-self: center;
  min-height: 500px;
}

.apparition-frame {
  position: absolute;
  inset: 0 2% 0 0;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 47%, rgba(179, 58, 24, 0.22), transparent 31%),
    radial-gradient(circle at 50% 50%, rgba(64, 13, 16, 0.18), transparent 58%);
}

.apparition-frame::before,
.apparition-frame::after {
  position: absolute;
  inset: 7% 11%;
  content: "";
  border: 1px solid rgba(222, 205, 180, 0.11);
  clip-path: polygon(0 0, 38% 0, 38% 1px, 62% 1px, 62% 0, 100% 0, 100% 100%, 62% 100%, 62% calc(100% - 1px), 38% calc(100% - 1px), 38% 100%, 0 100%);
}

.apparition-frame::after {
  inset: 10% 14%;
  border-color: rgba(211, 99, 47, 0.15);
}

.apparition-frame img {
  position: relative;
  z-index: 2;
  width: min(95%, 670px);
  filter: saturate(0.92) contrast(1.12) brightness(1.28);
  opacity: 1;
  animation: apparition 7s ease-in-out infinite;
}

.frame-corner {
  position: absolute;
  z-index: 3;
  width: 28px;
  height: 28px;
  border-color: rgba(211, 99, 47, 0.7);
}

.frame-corner-one {
  top: 7%;
  left: 11%;
  border-top: 1px solid;
  border-left: 1px solid;
}

.frame-corner-two {
  top: 7%;
  right: 11%;
  border-top: 1px solid;
  border-right: 1px solid;
}

.frame-corner-three {
  right: 11%;
  bottom: 7%;
  border-right: 1px solid;
  border-bottom: 1px solid;
}

.frame-corner-four {
  bottom: 7%;
  left: 11%;
  border-bottom: 1px solid;
  border-left: 1px solid;
}

.theme-seal,
.request-seal {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 1%;
  display: flex;
  width: 154px;
  height: 154px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(211, 99, 47, 0.48);
  border-radius: 50%;
  color: var(--bone-muted);
  font-family: var(--display);
  line-height: 1.15;
  text-align: center;
  transform: rotate(7deg);
  box-shadow: inset 0 0 0 6px var(--ink), inset 0 0 0 7px rgba(211, 99, 47, 0.24);
}

.theme-seal::before,
.request-seal::before {
  position: absolute;
  inset: 9px;
  content: "";
  border: 1px dashed rgba(232, 223, 208, 0.21);
  border-radius: 50%;
}

.theme-seal span,
.request-seal span {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.theme-seal strong,
.request-seal strong {
  color: var(--ember-bright);
  font-size: 21px;
  font-weight: 400;
}

.theme-seal {
  right: -10px;
  bottom: -2%;
  border-color: rgba(240, 139, 69, 0.74);
  box-shadow:
    inset 0 0 0 7px var(--ink),
    inset 0 0 0 8px rgba(240, 139, 69, 0.42),
    0 0 10px rgba(240, 139, 69, 0.58),
    0 0 30px rgba(211, 99, 47, 0.42),
    0 0 58px rgba(115, 31, 36, 0.32);
  animation: seal-glow 3.4s ease-in-out infinite;
}

.theme-seal strong {
  font-size: 26px;
}

.countdown-wrap {
  position: relative;
  z-index: 3;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  padding-top: 25px;
  border-top: 1px solid var(--line);
}

.countdown-wrap > p,
.countdown-wrap time {
  margin: 0;
  color: var(--ash);
  font-family: var(--display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.countdown-wrap time {
  justify-self: end;
  color: var(--bone-muted);
}

.countdown {
  display: flex;
  align-items: center;
  justify-content: center;
}

.countdown-unit {
  position: relative;
  display: flex;
  min-width: 88px;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}

.countdown-unit + .countdown-unit::before {
  position: absolute;
  top: 14px;
  left: 0;
  color: var(--blood);
  content: "◆";
  font-size: 6px;
}

.countdown-unit strong {
  color: var(--bone);
  font-family: var(--display);
  font-size: 32px;
  font-weight: 400;
  font-variant-numeric: tabular-nums;
}

.countdown-unit span {
  margin-top: 8px;
  color: var(--ash);
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.dispatch-bar {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 4vw, 64px);
  padding: 18px 32px;
  border-top: 1px solid rgba(211, 99, 47, 0.28);
  border-bottom: 1px solid rgba(211, 99, 47, 0.28);
  color: var(--bone-muted);
  background: linear-gradient(90deg, #130d0e, #1c0e11 48%, #130d0e);
  font-family: var(--display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-align: center;
  text-transform: uppercase;
}

.dispatch-mark {
  color: var(--ember);
  font-size: 9px;
}

.content-section {
  width: min(100% - 64px, 1320px);
  margin: 0 auto;
  padding: clamp(110px, 13vw, 190px) 0;
}

.section-label {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  color: var(--ash);
  font-family: var(--display);
  line-height: 1;
}

.section-label span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ember);
  font-size: 11px;
}

.section-label p {
  margin: 0;
  color: var(--bone-muted);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.party-section {
  display: grid;
  grid-template-columns: 90px minmax(0, 1.55fr) minmax(280px, 0.68fr);
  gap: clamp(32px, 5vw, 86px);
  align-items: start;
}

.party-intro {
  max-width: 760px;
}

.party-intro h2,
.section-heading h2,
.skelly-copy h2,
.request-copy h2 {
  margin: 0;
  color: var(--bone);
  font-family: var(--display);
  font-size: clamp(48px, 5.5vw, 82px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.02;
}

.two-column-copy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 50px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}

.two-column-copy p {
  margin: 0;
  color: var(--bone-muted);
  font-size: 14px;
  line-height: 1.9;
}

.party-manifesto {
  position: relative;
  margin-top: 84px;
  padding: 50px 36px 38px;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(115, 31, 36, 0.13), rgba(255, 255, 255, 0.01));
}

.party-manifesto::before,
.party-manifesto::after {
  position: absolute;
  width: 44px;
  height: 1px;
  content: "";
  background: var(--ember);
}

.party-manifesto::before {
  top: -1px;
  left: -1px;
}

.party-manifesto::after {
  right: -1px;
  bottom: -1px;
}

.party-manifesto .ornament {
  position: absolute;
  top: -20px;
  left: 50%;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid var(--line-hot);
  border-radius: 50%;
  color: var(--ember);
  background: var(--ink);
  transform: translateX(-50%);
}

.party-manifesto blockquote {
  margin: 0;
  color: var(--bone);
  font-family: var(--display);
  font-size: clamp(27px, 2.6vw, 40px);
  line-height: 1.22;
}

.party-manifesto p {
  margin: 28px 0 0;
  color: var(--ash);
  font-size: 11px;
  letter-spacing: 0.08em;
  line-height: 1.8;
  text-transform: uppercase;
}

.chronicle {
  border-top: 1px solid var(--line);
}

.section-heading {
  display: grid;
  grid-template-columns: 90px 1fr minmax(260px, 0.45fr);
  gap: clamp(32px, 5vw, 86px);
  align-items: end;
  margin-bottom: 70px;
}

.section-note {
  margin: 0 0 8px;
  color: var(--ash);
  font-size: 13px;
  line-height: 1.8;
}

.archive-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 420px 310px;
  gap: 14px;
}

.archive-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  padding: 0;
  border: 0;
  color: var(--bone);
  background: var(--ink-raised);
  cursor: zoom-in;
  text-align: left;
}

.archive-card-1 {
  grid-column: 1 / 5;
}

.archive-card-2 {
  grid-column: 5 / 8;
}

.archive-card-3 {
  grid-column: 8 / 13;
}

.archive-card-4 {
  grid-column: 1 / 7;
}

.archive-card-5 {
  grid-column: 7 / 13;
}

.archive-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.64) contrast(1.08) brightness(0.8);
  transition: transform 650ms cubic-bezier(0.2, 0.65, 0.2, 1), filter 450ms ease;
}

.archive-card-1 img,
.archive-card-2 img,
.archive-card-3 img {
  object-position: center top;
}

.archive-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 7, 7, 0.08) 30%, rgba(7, 7, 7, 0.91) 100%),
    linear-gradient(90deg, rgba(73, 13, 17, 0.2), transparent 62%);
  transition: background-color 300ms ease;
}

.archive-year {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 4px 9px;
  border: 1px solid rgba(232, 223, 208, 0.28);
  color: var(--bone);
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.15em;
}

.archive-title {
  position: absolute;
  right: 24px;
  bottom: 22px;
  left: 24px;
  display: flex;
  flex-direction: column;
}

.archive-title strong {
  font-family: var(--display);
  font-size: clamp(23px, 2vw, 34px);
  font-weight: 400;
  line-height: 1.1;
}

.archive-title em {
  margin-top: 7px;
  color: var(--bone-muted);
  font-family: var(--body);
  font-size: 10px;
  font-style: normal;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.archive-open {
  position: absolute;
  top: 17px;
  right: 17px;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid rgba(232, 223, 208, 0.25);
  border-radius: 50%;
  color: var(--bone);
  font-family: var(--display);
  font-size: 20px;
  transition: color 180ms ease, background 180ms ease, transform 300ms ease;
}

.archive-card:hover img,
.archive-card:focus-visible img {
  filter: saturate(0.9) contrast(1.08) brightness(0.95);
  transform: scale(1.045);
}

.archive-card:hover .archive-open,
.archive-card:focus-visible .archive-open {
  color: #fff;
  background: var(--blood);
  transform: rotate(45deg);
}

.skelly-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(460px, 1fr) minmax(400px, 0.86fr);
  gap: clamp(70px, 9vw, 140px);
  align-items: center;
  padding: clamp(110px, 12vw, 180px) max(32px, calc((100vw - 1320px) / 2));
  border-top: 1px solid rgba(211, 99, 47, 0.26);
  border-bottom: 1px solid rgba(211, 99, 47, 0.26);
  background:
    radial-gradient(circle at 24% 52%, rgba(134, 35, 24, 0.24), transparent 29rem),
    linear-gradient(125deg, #100a0a, #1b0b0e 54%, #0a0808);
}

.skelly-section::before {
  position: absolute;
  inset: 24px;
  content: "";
  border: 1px solid rgba(232, 223, 208, 0.08);
  pointer-events: none;
}

.skelly-stage {
  position: relative;
  min-height: 720px;
}

.skelly-image-main {
  position: absolute;
  inset: 0 13% 0 8%;
  overflow: hidden;
  border: 1px solid rgba(232, 223, 208, 0.2);
  background: #0b0909;
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.48);
}

.skelly-image-main::after,
.skelly-image-inset::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 56%, rgba(7, 7, 7, 0.85));
  pointer-events: none;
}

.skelly-image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 24%;
  filter: saturate(0.7) contrast(1.05) brightness(0.87);
}

.skelly-image-main span,
.skelly-image-inset span {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 15px;
  left: 18px;
  color: var(--bone-muted);
  font-family: var(--display);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.skelly-image-inset {
  position: absolute;
  z-index: 3;
  right: -2%;
  bottom: -5%;
  width: 40%;
  overflow: hidden;
  border: 9px solid #140b0c;
  outline: 1px solid rgba(232, 223, 208, 0.22);
  background: #0b0909;
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.6);
}

.skelly-image-inset img {
  width: 100%;
  aspect-ratio: 1 / 1.08;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.66) contrast(1.05) brightness(0.9);
}

.skelly-copy {
  position: relative;
  z-index: 2;
  max-width: 620px;
}

.skelly-copy h2 {
  font-size: clamp(58px, 6vw, 98px);
  line-height: 0.94;
}

.skelly-origin {
  max-width: 570px;
  margin: 32px 0 0;
  color: var(--bone-muted);
  font-family: var(--display);
  font-size: clamp(23px, 2.4vw, 36px);
  line-height: 1.25;
}

.skelly-rule {
  width: 88px;
  height: 1px;
  margin: 38px 0;
  background: var(--ember);
}

.skelly-copy dl {
  margin: 0;
}

.skelly-copy dl > div {
  padding: 20px 0;
  border-top: 1px solid rgba(232, 223, 208, 0.12);
}

.skelly-copy dt {
  color: var(--bone);
  font-family: var(--display);
  font-size: 19px;
  letter-spacing: 0.02em;
}

.skelly-copy dd {
  margin: 8px 0 0;
  color: var(--bone-muted);
  font-size: 12px;
  line-height: 1.8;
}

.warning {
  margin: 28px 0 0;
  color: var(--ember-bright);
  font-family: var(--display);
  font-size: 14px;
  letter-spacing: 0.05em;
}

.warning span {
  margin-right: 9px;
}

.voices {
  padding-bottom: 80px;
}

.voices-heading,
.ritual-heading {
  grid-template-columns: 90px 1fr;
}

.voice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.voice-card {
  position: relative;
  min-height: 370px;
  padding: 62px 42px 36px;
}

.voice-card + .voice-card {
  border-left: 1px solid var(--line);
}

.quote-mark {
  position: absolute;
  top: 22px;
  left: 34px;
  color: rgba(211, 99, 47, 0.42);
  font-family: var(--display);
  font-size: 86px;
  line-height: 1;
}

.voice-card blockquote {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--bone);
  font-family: var(--display);
  font-size: clamp(27px, 2.5vw, 38px);
  line-height: 1.22;
}

.voice-card footer {
  position: absolute;
  right: 34px;
  bottom: 34px;
  left: 34px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.voice-card footer > span {
  color: var(--ember);
  font-family: var(--display);
  font-size: 11px;
}

.voice-card footer div {
  display: flex;
  flex-direction: column;
  line-height: 1.35;
}

.voice-card footer strong {
  color: var(--bone);
  font-family: var(--display);
  font-size: 16px;
  font-weight: 400;
}

.voice-card footer em {
  color: var(--ash);
  font-size: 9px;
  font-style: normal;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ritual-section {
  padding-top: 80px;
}

.ritual-list {
  margin: 0 0 0 90px;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.ritual-list li {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  min-height: 180px;
  padding: 0 30px;
  border-bottom: 1px solid var(--line);
  transition: background-color 220ms ease;
}

.ritual-list li:hover {
  background: linear-gradient(90deg, rgba(115, 31, 36, 0.15), transparent 58%);
}

.ritual-list li > span {
  color: var(--ember);
  font-family: var(--display);
  font-size: 12px;
}

.ritual-list li > div {
  display: grid;
  grid-template-columns: minmax(220px, 0.6fr) 1fr;
  gap: 30px;
  align-items: center;
}

.ritual-list h3 {
  margin: 0;
  color: var(--bone);
  font-family: var(--display);
  font-size: clamp(29px, 3vw, 44px);
  font-weight: 400;
}

.ritual-list p {
  max-width: 570px;
  margin: 0;
  color: var(--bone-muted);
  font-size: 13px;
  line-height: 1.85;
}

.request-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(210px, 0.48fr) minmax(420px, 1fr);
  gap: clamp(50px, 9vw, 150px);
  align-items: center;
  width: min(100% - 64px, 1320px);
  min-height: 600px;
  margin: 40px auto 0;
  padding: 100px clamp(36px, 7vw, 100px);
  border: 1px solid var(--line-hot);
  background:
    linear-gradient(90deg, rgba(18, 7, 8, 0.96), rgba(41, 9, 13, 0.82)),
    radial-gradient(circle at 16% 50%, rgba(211, 99, 47, 0.28), transparent 19rem);
}

.request-section::before,
.request-section::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(232, 223, 208, 0.11);
  pointer-events: none;
}

.request-section::before {
  inset: 15px;
}

.request-section::after {
  inset: 23px;
  border-color: rgba(211, 99, 47, 0.12);
}

.request-glow {
  position: absolute;
  top: 50%;
  left: 19%;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(211, 99, 47, 0.12);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: inset 0 0 80px rgba(211, 99, 47, 0.08), 0 0 120px rgba(115, 31, 36, 0.18);
}

.request-seal {
  position: relative;
  right: auto;
  bottom: auto;
  justify-self: center;
  width: 200px;
  height: 200px;
  background: rgba(10, 7, 7, 0.45);
  box-shadow: inset 0 0 0 9px rgba(10, 7, 7, 0.65), inset 0 0 0 10px rgba(211, 99, 47, 0.25);
}

.request-seal strong {
  font-size: 30px;
}

.request-copy {
  position: relative;
  z-index: 2;
  max-width: 740px;
}

.request-copy h2 {
  max-width: 720px;
}

.request-copy > p:not(.eyebrow) {
  max-width: 640px;
  margin: 30px 0 36px;
  color: var(--bone-muted);
  font-size: 14px;
  line-height: 1.9;
}

.button-ghost {
  color: var(--bone);
  background: rgba(7, 7, 7, 0.22);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: var(--ember-bright);
  background: rgba(115, 31, 36, 0.35);
}

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
  align-items: center;
  gap: 30px;
  width: min(100% - 64px, 1320px);
  min-height: 170px;
  margin: 90px auto 0;
  border-top: 1px solid var(--line);
  color: var(--ash);
}

.site-footer p {
  margin: 0;
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: 0.05em;
}

.site-footer .footer-note {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-footer > a {
  justify-self: end;
}

.lightbox {
  position: fixed;
  z-index: 200;
  inset: 0;
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr) 80px;
  align-items: center;
  padding: 70px 3vw 42px;
  background: rgba(3, 3, 3, 0.96);
  backdrop-filter: blur(12px);
}

.lightbox::before {
  position: absolute;
  inset: 18px;
  content: "";
  border: 1px solid var(--line);
  pointer-events: none;
}

.lightbox-close {
  position: absolute;
  z-index: 2;
  top: 26px;
  right: 32px;
  padding: 8px 0;
  border: 0;
  border-bottom: 1px solid var(--line-hot);
  color: var(--bone-muted);
  background: transparent;
  cursor: pointer;
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.lightbox figure {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  width: min(100%, 980px);
  height: calc(100vh - 120px);
  min-height: 0;
  margin: 0 auto;
}

.lightbox figure > img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  filter: saturate(0.86) contrast(1.04);
}

.lightbox figcaption {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 0 0;
}

.lightbox figcaption > span {
  color: var(--ember);
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: 0.1em;
}

.lightbox figcaption div {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.lightbox figcaption strong {
  color: var(--bone);
  font-family: var(--display);
  font-size: 22px;
  font-weight: 400;
}

.lightbox figcaption em {
  color: var(--ash);
  font-size: 10px;
  font-style: normal;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.lightbox-arrow {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--bone);
  background: transparent;
  cursor: pointer;
  font-size: 20px;
  transition: border-color 180ms ease, background-color 180ms ease;
}

.lightbox-arrow:hover,
.lightbox-arrow:focus-visible {
  border-color: var(--ember);
  background: var(--blood-dark);
}

.invitation-page {
  position: relative;
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 54px 24px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 45%, rgba(115, 31, 36, 0.24), transparent 30rem),
    linear-gradient(140deg, #050505, #11090a 52%, #050505);
}

.invitation-aura {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(84vw, 920px);
  aspect-ratio: 1;
  border: 1px solid rgba(211, 99, 47, 0.08);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow:
    inset 0 0 0 34px rgba(7, 7, 7, 0.32),
    inset 0 0 0 35px rgba(232, 223, 208, 0.04),
    inset 0 0 140px rgba(115, 31, 36, 0.16),
    0 0 140px rgba(115, 31, 36, 0.1);
}

.invitation-aura::before,
.invitation-aura::after {
  position: absolute;
  inset: 12%;
  content: "";
  border: 1px dashed rgba(232, 223, 208, 0.045);
  border-radius: 50%;
}

.invitation-aura::after {
  inset: 24%;
  border-style: solid;
  border-color: rgba(211, 99, 47, 0.07);
}

.black-envelope {
  position: relative;
  z-index: 2;
  width: min(100%, 860px);
  border: 1px solid rgba(211, 99, 47, 0.4);
  background:
    linear-gradient(rgba(16, 13, 12, 0.96), rgba(9, 8, 8, 0.98)),
    repeating-linear-gradient(45deg, transparent 0 8px, rgba(255, 255, 255, 0.015) 8px 9px);
  box-shadow: 0 38px 120px rgba(0, 0, 0, 0.62);
}

.black-envelope::before {
  position: absolute;
  inset: 14px;
  content: "";
  border: 1px solid rgba(232, 223, 208, 0.09);
  pointer-events: none;
}

.invitation-header,
.invitation-footer {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  margin: 0 34px;
  padding: 25px 12px;
  border-bottom: 1px solid var(--line);
}

.invitation-header > p,
.invitation-header > span,
.invitation-footer p,
.invitation-footer a {
  margin: 0;
  color: var(--ash);
  font-family: var(--display);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-decoration: none;
  text-transform: uppercase;
}

.invitation-header > p {
  padding: 0 26px;
  text-align: center;
}

.invitation-header > span {
  justify-self: end;
}

.invitation-logo-mini {
  width: 104px;
  height: 42px;
  overflow: hidden;
}

.invitation-logo-mini img {
  width: 104px;
  max-width: none;
  height: auto;
  transform: translateY(-14px);
}

.invitation-body {
  position: relative;
  z-index: 2;
  display: flex;
  max-width: 700px;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  padding: 78px 46px 68px;
  text-align: center;
}

.invitation-body .eyebrow {
  margin-bottom: 14px;
}

.invitation-addressee {
  margin: 0 0 34px;
  color: var(--bone-muted);
  font-family: var(--display);
  font-size: 17px;
  font-style: italic;
  letter-spacing: 0.03em;
}

.invitation-body h1 {
  max-width: 650px;
  margin: 0;
  color: var(--bone);
  font-family: var(--display);
  font-size: clamp(58px, 8vw, 94px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.94;
}

.invitation-divider {
  display: grid;
  grid-template-columns: 80px 28px 80px;
  align-items: center;
  gap: 10px;
  margin: 36px 0;
}

.invitation-divider span {
  height: 1px;
  background: var(--line);
}

.invitation-divider i {
  color: var(--ember);
  font-size: 9px;
  font-style: normal;
}

.invitation-body > p:not(.eyebrow):not(.invitation-addressee):not(.invitation-lede) {
  max-width: 590px;
  margin: 18px 0 0;
  color: var(--bone-muted);
  font-size: 12px;
  line-height: 1.9;
}

.invitation-body .invitation-lede {
  max-width: 620px;
  margin: 0;
  color: var(--bone);
  font-family: var(--display);
  font-size: 24px;
  line-height: 1.4;
}

.invitation-facts {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(3, 1fr);
  margin: 45px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.invitation-facts > div {
  padding: 23px 15px;
}

.invitation-facts > div + div {
  border-left: 1px solid var(--line);
}

.invitation-facts dt {
  color: var(--ember);
  font-family: var(--display);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.invitation-facts dd {
  margin: 8px 0 0;
  color: var(--bone-muted);
  font-size: 10px;
  line-height: 1.6;
}

.invitation-status {
  display: flex;
  width: 146px;
  height: 146px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-hot);
  border-radius: 50%;
  font-family: var(--display);
  line-height: 1.25;
  transform: rotate(-5deg);
  box-shadow: inset 0 0 0 6px var(--ink-soft), inset 0 0 0 7px rgba(211, 99, 47, 0.22);
}

.invitation-status span,
.invitation-status small {
  color: var(--ash);
  font-size: 8px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.invitation-status strong {
  color: var(--ember-bright);
  font-size: 28px;
  font-weight: 400;
}

.invitation-footer {
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
  border-bottom: 0;
}

.invitation-footer a {
  justify-self: end;
  color: var(--bone-muted);
  border-bottom: 1px solid var(--line-hot);
}

@media (max-width: 620px) {
  .invitation-page {
    align-items: start;
    padding: 16px;
  }

  .black-envelope::before {
    inset: 8px;
  }

  .invitation-header,
  .invitation-footer {
    margin: 0 18px;
    padding: 20px 4px;
  }

  .invitation-header > p {
    display: none;
  }

  .invitation-header {
    grid-template-columns: 1fr 1fr;
  }

  .invitation-body {
    padding: 64px 28px 56px;
  }

  .invitation-body h1 {
    font-size: clamp(54px, 17vw, 72px);
  }

  .invitation-facts {
    grid-template-columns: 1fr;
  }

  .invitation-facts > div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .invitation-footer {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .invitation-footer a {
    justify-self: start;
  }
}

@keyframes apparition {
  0%,
  100% {
    opacity: 0.94;
    filter: saturate(0.94) contrast(1.1) brightness(1.28);
    transform: translateY(0) scale(1);
  }
  50% {
    opacity: 1;
    filter: saturate(1.08) contrast(1.06) brightness(1.56);
    transform: translateY(-5px) scale(1.012);
  }
}

@keyframes seal-glow {
  0%,
  100% {
    box-shadow:
      inset 0 0 0 7px var(--ink),
      inset 0 0 0 8px rgba(240, 139, 69, 0.38),
      0 0 9px rgba(240, 139, 69, 0.52),
      0 0 26px rgba(211, 99, 47, 0.36),
      0 0 48px rgba(115, 31, 36, 0.26);
  }
  50% {
    box-shadow:
      inset 0 0 0 7px var(--ink),
      inset 0 0 0 8px rgba(240, 139, 69, 0.52),
      0 0 14px rgba(240, 139, 69, 0.76),
      0 0 38px rgba(211, 99, 47, 0.54),
      0 0 72px rgba(115, 31, 36, 0.38);
  }
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: 140px 1fr 140px;
  }

  .desktop-nav {
    gap: 24px;
  }

  .hero {
    grid-template-columns: 1fr 0.85fr;
    gap: 46px 30px;
  }

  .hero-visual {
    min-height: 430px;
  }

  .theme-seal {
    width: 132px;
    height: 132px;
  }

  .party-section {
    grid-template-columns: 70px 1fr;
  }

  .party-manifesto {
    grid-column: 2;
    max-width: 600px;
    margin-top: 0;
  }

  .section-heading {
    grid-template-columns: 70px 1fr;
  }

  .section-note {
    grid-column: 2;
    max-width: 500px;
  }

  .skelly-section {
    grid-template-columns: 0.9fr 1fr;
    gap: 60px;
  }

  .skelly-stage {
    min-height: 620px;
  }

  .voice-card {
    padding-right: 28px;
    padding-left: 28px;
  }

  .ritual-list {
    margin-left: 70px;
  }
}

@media (max-width: 820px) {
  .site-header {
    grid-template-columns: 1fr auto;
    width: min(100% - 40px, 760px);
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .mobile-menu {
    position: relative;
    display: block;
  }

  .mobile-menu summary {
    padding: 8px 0;
    color: var(--bone-muted);
    cursor: pointer;
    font-family: var(--display);
    font-size: 13px;
    letter-spacing: 0.12em;
    list-style: none;
    text-transform: uppercase;
  }

  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .mobile-menu nav {
    position: absolute;
    top: 47px;
    right: 0;
    display: flex;
    width: 230px;
    flex-direction: column;
    padding: 20px;
    border: 1px solid var(--line-hot);
    background: rgba(10, 8, 8, 0.98);
    box-shadow: 0 24px 54px rgba(0, 0, 0, 0.56);
  }

  .mobile-menu nav a {
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
    color: var(--bone-muted);
    font-family: var(--display);
    font-size: 14px;
    text-decoration: none;
  }

  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    width: min(100% - 40px, 760px);
    padding-top: 75px;
  }

  .hero::before {
    display: none;
  }

  .hero-copy {
    padding: 0;
  }

  .hero h1 {
    font-size: clamp(62px, 14vw, 94px);
  }

  .hero-visual {
    min-height: 460px;
  }

  .countdown-wrap {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .countdown-wrap time {
    justify-self: center;
  }

  .dispatch-bar {
    flex-wrap: wrap;
    gap: 10px 24px;
  }

  .content-section,
  .request-section,
  .site-footer {
    width: min(100% - 40px, 760px);
  }

  .party-section {
    grid-template-columns: 1fr;
  }

  .section-label {
    flex-direction: row;
    align-items: center;
  }

  .section-label p {
    writing-mode: initial;
  }

  .party-manifesto {
    grid-column: auto;
  }

  .section-heading,
  .voices-heading,
  .ritual-heading {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .section-note {
    grid-column: auto;
  }

  .archive-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 370px);
  }

  .archive-card-1,
  .archive-card-2,
  .archive-card-3,
  .archive-card-4 {
    grid-column: auto;
  }

  .archive-card-5 {
    grid-column: 1 / -1;
  }

  .skelly-section {
    grid-template-columns: 1fr;
    padding: 100px max(20px, calc((100vw - 760px) / 2));
  }

  .skelly-stage {
    width: min(100%, 610px);
    min-height: 730px;
    margin: 0 auto;
  }

  .skelly-copy {
    width: min(100%, 680px);
    margin: 0 auto;
  }

  .voice-grid {
    grid-template-columns: 1fr;
  }

  .voice-card {
    min-height: 320px;
  }

  .voice-card + .voice-card {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .ritual-list {
    margin-left: 0;
  }

  .ritual-list li > div {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 30px 0;
  }

  .request-section {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 90px 50px;
  }

  .request-seal {
    width: 160px;
    height: 160px;
  }

  .request-glow {
    top: 23%;
    left: 50%;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
    padding: 42px 0;
  }
}

@media (max-width: 540px) {
  .site-header,
  .hero,
  .content-section,
  .request-section,
  .site-footer {
    width: calc(100% - 32px);
  }

  .site-header {
    min-height: 78px;
  }

  .hero {
    min-height: auto;
    gap: 32px;
    padding: 62px 0 34px;
  }

  .hero h1 {
    font-size: clamp(56px, 18vw, 76px);
  }

  .hero h1 strong {
    margin-top: 20px;
    font-size: 12px;
    letter-spacing: 0.2em;
  }

  .hero-logo {
    width: min(108%, 690px);
    margin: -36px 0 -28px -18px;
  }

  .hero-lede {
    margin-top: 30px;
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-visual {
    min-height: 320px;
  }

  .apparition-frame {
    inset: 0;
  }

  .theme-seal {
    right: -3px;
    bottom: -12px;
    width: 112px;
    height: 112px;
  }

  .theme-seal strong {
    font-size: 20px;
  }

  .countdown-wrap > p {
    text-align: center;
  }

  .countdown {
    width: 100%;
  }

  .countdown-unit {
    min-width: 0;
    flex: 1;
  }

  .countdown-unit strong {
    font-size: 27px;
  }

  .dispatch-bar {
    justify-content: flex-start;
    text-align: left;
  }

  .dispatch-bar span:nth-of-type(4),
  .dispatch-bar span:nth-of-type(5) {
    display: none;
  }

  .content-section {
    padding: 100px 0;
  }

  .party-intro h2,
  .section-heading h2,
  .request-copy h2 {
    font-size: 45px;
  }

  .two-column-copy {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-top: 38px;
  }

  .party-manifesto {
    padding-right: 26px;
    padding-left: 26px;
  }

  .archive-grid {
    display: flex;
    flex-direction: column;
  }

  .archive-card {
    min-height: 410px;
  }

  .skelly-section {
    padding: 88px 16px;
  }

  .skelly-section::before {
    inset: 10px;
  }

  .skelly-stage {
    min-height: 590px;
  }

  .skelly-image-main {
    right: 6%;
    left: 0;
  }

  .skelly-image-inset {
    right: 0;
    width: 43%;
  }

  .skelly-copy h2 {
    font-size: 62px;
  }

  .voice-card {
    padding: 58px 24px 32px;
  }

  .voice-card footer {
    right: 24px;
    left: 24px;
  }

  .ritual-list li {
    grid-template-columns: 1fr;
    padding: 0 10px;
  }

  .request-section {
    padding: 70px 32px;
  }

  .request-seal {
    width: 140px;
    height: 140px;
  }

  .request-seal strong {
    font-size: 24px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .site-footer > a {
    justify-self: start;
  }

  .lightbox {
    grid-template-columns: 46px minmax(0, 1fr) 46px;
    padding: 62px 12px 28px;
  }

  .lightbox::before {
    inset: 8px;
  }

  .lightbox-arrow {
    width: 38px;
    height: 38px;
  }

  .lightbox-close {
    top: 15px;
    right: 19px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
