:root {
  --ink: #0b0b0c;
  --ink-soft: #171719;
  --paper: #eee8d8;
  --paper-bright: #f8f3e8;
  --red: #b92831;
  --red-dark: #841b25;
  --blue: #82b4bf;
  --silver: #99958e;
  --line-dark: rgba(11, 11, 12, .25);
  --line-light: rgba(238, 232, 216, .26);
  --display: "Arial Narrow", "Franklin Gothic Condensed", "Roboto Condensed", sans-serif;
  --serif: "Bodoni 72", Didot, "Times New Roman", serif;
  --body: "Trebuchet MS", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background: var(--ink);
  color: var(--ink);
  font-family: var(--body);
  line-height: 1.5;
}

body,
button,
input,
select,
textarea {
  font: inherit;
}

button,
input,
select,
textarea {
  border-radius: 0;
}

button,
a,
summary,
select {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  color: inherit;
}

img,
svg {
  max-width: 100%;
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  background: var(--paper-bright);
  color: var(--ink);
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform .2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 4px;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 72px;
  padding: 0 4.5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  color: var(--paper);
  border-bottom: 1px solid transparent;
  transition: background-color .3s ease, border-color .3s ease;
}

.site-header.is-solid,
.site-header.is-open {
  background: rgba(11, 11, 12, .96);
  border-color: var(--line-light);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  flex: 0 0 auto;
  text-transform: uppercase;
}

.wordmark span {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  font-family: var(--serif);
  font-size: .85rem;
}

.wordmark b {
  font-family: var(--display);
  font-size: .92rem;
  letter-spacing: .12em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-family: var(--display);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .2s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-button {
  width: 44px;
  height: 44px;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 7px;
  border: 1px solid var(--line-light);
  background: transparent;
  cursor: pointer;
}

.menu-button i {
  width: 20px;
  height: 1px;
  display: block;
  background: currentColor;
  transition: transform .2s ease;
}

.site-header.is-open .menu-button i:first-of-type {
  transform: translateY(4px) rotate(45deg);
}

.site-header.is-open .menu-button i:last-of-type {
  transform: translateY(-4px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 88svh;
  height: 820px;
  max-height: 940px;
  padding: 114px max(7.5%, 84px) 54px;
  display: grid;
  align-content: space-between;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(92deg, transparent 0 54%, rgba(130, 180, 191, .08) 54% 55%, transparent 55%),
    linear-gradient(0deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
  background-color: var(--ink);
  background-size: auto, 100% 7px;
  color: var(--paper);
}

.hero::before {
  content: "19";
  position: absolute;
  z-index: -2;
  right: 8%;
  bottom: -120px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(238, 232, 216, .16);
  font-family: var(--display);
  font-size: 38rem;
  font-weight: 900;
  line-height: .8;
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: .22;
  background-image: repeating-linear-gradient(113deg, transparent 0 6px, rgba(255, 255, 255, .025) 7px, transparent 8px 13px);
  pointer-events: none;
}

.projector-beam {
  position: absolute;
  z-index: -1;
  top: -4%;
  right: 6%;
  width: 44%;
  height: 92%;
  background: linear-gradient(155deg, rgba(238, 232, 216, .18), rgba(238, 232, 216, 0) 70%);
  clip-path: polygon(43% 0, 100% 0, 82% 100%, 0 100%);
  transform: skewX(-6deg);
  transform-origin: top;
  animation: projector-shift 8s ease-in-out infinite alternate;
}

.film-edge {
  position: absolute;
  z-index: 3;
  top: 0;
  bottom: 0;
  width: 30px;
  opacity: .7;
  border-inline: 1px solid var(--line-light);
  background:
    radial-gradient(ellipse at center, transparent 0 42%, var(--paper) 44% 75%, transparent 77%) center top / 18px 31px repeat-y;
  pointer-events: none;
}

.film-edge-left {
  left: 18px;
}

.film-edge-right {
  right: 18px;
}

.hero-kicker {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line-light);
  font-family: var(--display);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.hero-copy {
  position: relative;
  width: min(1120px, 100%);
  margin: auto;
  text-align: center;
}

.credit {
  margin: 0 0 13px;
  color: var(--blue);
  font-family: var(--display);
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.hero h1 {
  margin: 0;
  color: var(--paper-bright);
  font-family: var(--display);
  font-size: 9rem;
  font-stretch: condensed;
  font-weight: 900;
  line-height: .72;
  text-transform: uppercase;
  text-shadow: 8px 8px 0 var(--red-dark);
}

.hero-names {
  margin: 30px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-family: var(--serif);
  font-size: 2rem;
  text-transform: uppercase;
}

.hero-names i {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: var(--paper-bright);
  font-size: 1.15rem;
  text-transform: lowercase;
}

.hero-date {
  margin: 28px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-family: var(--display);
  text-transform: uppercase;
}

.hero-date strong {
  padding: 8px 12px;
  background: var(--paper);
  color: var(--ink);
  font-size: 1.05rem;
}

.hero-date span {
  letter-spacing: .15em;
}

.hero-billing {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  max-width: 820px;
  margin: 0 auto;
  font-family: var(--display);
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  text-align: center;
}

.hero-billing span:first-child {
  text-align: right;
}

.hero-billing span:last-child {
  text-align: left;
}

.hero-billing b {
  color: var(--blue);
  font-size: .8rem;
}

.opening-link {
  position: absolute;
  right: max(7.5%, 84px);
  bottom: 46px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--display);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.opening-link b {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-light);
  transition: background-color .2s ease, color .2s ease;
}

.opening-link:hover b {
  background: var(--paper);
  color: var(--ink);
}

.credit-roll {
  width: 100%;
  overflow: hidden;
  background: var(--red);
  color: var(--paper-bright);
  border-block: 1px solid var(--ink);
  font-family: var(--display);
  font-size: .74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.credit-roll div {
  width: max-content;
  padding: 12px 0;
  display: flex;
  align-items: center;
  gap: 24px;
  animation: credit-marquee 22s linear infinite;
}

.credit-roll b {
  color: var(--ink);
}

.paper-section,
.dark-section,
.red-section {
  position: relative;
  padding: 112px max(6%, 64px);
}

.paper-section {
  background:
    repeating-linear-gradient(0deg, transparent 0 4px, rgba(11, 11, 12, .017) 5px);
  background-color: var(--paper);
  color: var(--ink);
}

.dark-section {
  background: var(--ink);
  color: var(--paper);
}

.red-section {
  background: var(--red);
  color: var(--paper-bright);
}

.section-label {
  padding-bottom: 12px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid currentColor;
  font-family: var(--display);
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.section-label b {
  color: var(--red);
}

.red-section .section-label b {
  color: var(--ink);
}

.dark-section .section-label b {
  color: var(--blue);
}

.overline {
  margin: 28px 0 10px;
  font-family: var(--display);
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.section-heading h2,
.invitation h2,
.venue h2,
.rsvp h2,
.finale h2 {
  margin: 0;
  font-family: var(--display);
  font-size: 5.4rem;
  font-weight: 900;
  line-height: .82;
  text-transform: uppercase;
}

.invitation {
  min-height: 700px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .72fr);
  grid-template-rows: auto 1fr;
  gap: 72px 9%;
}

.invitation > .section-label {
  grid-column: 1 / -1;
}

.invitation-heading > p {
  margin: 0 0 24px;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-style: italic;
}

.invitation-copy {
  align-self: end;
  max-width: 470px;
  font-family: var(--serif);
  font-size: 1.15rem;
}

.invitation-copy p {
  margin: 0 0 22px;
}

.signature {
  margin-top: 44px;
  color: var(--red);
  font-family: var(--serif);
  font-size: 2rem;
  font-style: italic;
}

.story {
  overflow: hidden;
}

.story::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 35%;
  border-left: 1px solid var(--line-light);
  background:
    repeating-linear-gradient(135deg, transparent 0 14px, rgba(130, 180, 191, .04) 15px 29px);
  pointer-events: none;
}

.story .section-heading {
  position: relative;
  max-width: 860px;
}

.story-stage {
  position: relative;
  margin-top: 82px;
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1.3fr);
  gap: 7%;
  align-items: center;
}

.clapper {
  width: min(380px, 100%);
  margin: 0 auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--paper);
  cursor: pointer;
  text-align: left;
  filter: drop-shadow(14px 18px 0 rgba(0, 0, 0, .28));
}

.clapper-top {
  position: relative;
  z-index: 2;
  height: 64px;
  padding: 0 9px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: stretch;
  overflow: hidden;
  border: 3px solid var(--paper);
  background: var(--paper);
  transform: rotate(-8deg) translateY(-3px);
  transform-origin: left bottom;
  transition: transform .18s ease;
}

.clapper-top i {
  display: block;
  background: var(--ink);
  transform: skewX(-28deg);
  border-inline: 7px solid var(--paper);
}

.clapper:hover .clapper-top,
.clapper:focus-visible .clapper-top {
  transform: rotate(-12deg) translateY(-6px);
}

.clapper.is-clapping .clapper-top {
  transform: rotate(0) translateY(1px);
}

.clapper-board {
  min-height: 220px;
  padding: 25px 24px 22px;
  display: grid;
  grid-template-columns: .65fr .65fr 1.5fr;
  gap: 12px;
  border: 3px solid var(--paper);
  background:
    repeating-linear-gradient(0deg, transparent 0 32px, rgba(238, 232, 216, .12) 33px 34px),
    var(--ink-soft);
}

.clapper-board > span {
  min-width: 0;
}

.clapper-board small {
  display: block;
  margin-bottom: 5px;
  color: var(--blue);
  font-family: var(--display);
  font-size: .62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.clapper-board strong {
  display: block;
  overflow-wrap: anywhere;
  font-family: var(--display);
  font-size: 1.65rem;
  text-transform: uppercase;
}

.clapper-board em {
  grid-column: 1 / -1;
  align-self: end;
  padding-top: 18px;
  border-top: 2px solid var(--paper);
  font-family: var(--serif);
  font-size: 1.55rem;
  font-style: italic;
  text-align: center;
}

.scene-reel {
  position: relative;
  min-height: 450px;
  display: grid;
  align-items: center;
}

.scene {
  position: relative;
  width: min(690px, 100%);
  min-height: 390px;
  padding: 58px 9% 48px;
  overflow: hidden;
  border-top: 1px solid var(--paper);
  border-bottom: 1px solid var(--paper);
}

.scene[hidden] {
  display: none;
}

.scene.is-entering {
  animation: scene-enter .46s cubic-bezier(.2, .8, .2, 1) both;
}

.scene-number {
  position: absolute;
  z-index: 0;
  right: -20px;
  bottom: -100px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(238, 232, 216, .19);
  font-family: var(--display);
  font-size: 20rem;
  font-weight: 900;
  line-height: 1;
}

.scene-time,
.scene h3,
.scene p,
.scene-note {
  position: relative;
  z-index: 1;
}

.scene-time {
  color: var(--blue);
  font-family: var(--display);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.scene h3 {
  max-width: 540px;
  margin: 24px 0;
  font-family: var(--serif);
  font-size: 3.4rem;
  font-weight: 400;
  line-height: .95;
}

.scene p {
  max-width: 550px;
  margin: 0;
  color: rgba(238, 232, 216, .78);
  font-family: var(--serif);
  font-size: 1.08rem;
}

.scene-note {
  margin-top: 38px;
  display: inline-block;
  padding: 8px 10px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--display);
  font-size: .68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.scene-navigation {
  position: relative;
  margin-top: 62px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.scene-navigation button {
  min-width: 0;
  min-height: 68px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 0;
  border-right: 1px solid var(--line-light);
  background: transparent;
  color: var(--paper);
  font-family: var(--display);
  font-size: .74rem;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color .2s ease, color .2s ease;
}

.scene-navigation button:last-child {
  border-right: 0;
}

.scene-navigation button span {
  color: var(--blue);
  font-size: 1.15rem;
  font-weight: 900;
}

.scene-navigation button:hover,
.scene-navigation button.is-active {
  background: var(--paper);
  color: var(--ink);
}

.scene-navigation button.is-active span {
  color: var(--red);
}

.program {
  display: grid;
  grid-template-columns: minmax(300px, .8fr) minmax(0, 1.25fr);
  gap: 9%;
}

.program .section-heading {
  position: sticky;
  top: 110px;
  align-self: start;
}

.call-sheet {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 2px solid var(--ink);
}

.call-sheet li {
  min-height: 178px;
  padding: 26px 0;
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr) auto;
  gap: 26px;
  align-items: start;
  border-bottom: 1px solid var(--line-dark);
}

.call-sheet time {
  font-family: var(--display);
  font-size: 2.15rem;
  font-weight: 900;
}

.call-sheet div > span {
  color: var(--red);
  font-family: var(--display);
  font-size: .65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.call-sheet h3 {
  margin: 5px 0 8px;
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 400;
}

.call-sheet p {
  max-width: 410px;
  margin: 0;
  color: rgba(11, 11, 12, .7);
}

.call-sheet li > b {
  padding: 5px 8px;
  border: 1px solid var(--ink);
  font-family: var(--display);
  font-size: .58rem;
  letter-spacing: .08em;
  transform: rotate(3deg);
}

.venue {
  min-height: 760px;
  padding: 0;
  display: grid;
  grid-template-columns: minmax(300px, .8fr) minmax(0, 1.2fr);
}

.venue-poster {
  position: relative;
  min-height: 620px;
  padding: 60px 9%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    repeating-linear-gradient(135deg, transparent 0 13px, rgba(238, 232, 216, .04) 14px 28px),
    var(--ink);
  color: var(--paper);
  border: 16px solid var(--paper);
  outline: 1px solid var(--ink);
  outline-offset: -16px;
}

.venue-poster > span,
.venue-poster > p {
  position: relative;
  z-index: 1;
  margin: 0;
  font-family: var(--display);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.venue-poster > p {
  text-align: right;
}

.venue-mark {
  position: relative;
  z-index: 1;
  align-self: center;
  color: var(--paper-bright);
  font-family: var(--display);
  font-size: 12rem;
  font-weight: 900;
  line-height: .8;
  text-shadow: 9px 9px 0 var(--red);
  transform: rotate(-4deg);
}

.venue-mark::after {
  content: "";
  position: absolute;
  inset: -22px -30px;
  border: 2px solid var(--blue);
  border-radius: 50%;
  transform: rotate(7deg);
}

.venue-copy {
  padding: 112px 10%;
  align-self: center;
}

.venue-copy .section-label b {
  color: var(--ink);
}

.venue-copy > p:not(.overline) {
  max-width: 570px;
  margin: 32px 0;
  font-family: var(--serif);
  font-size: 1.15rem;
}

.outline-link {
  width: fit-content;
  min-height: 50px;
  padding: 12px 15px;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  border: 2px solid currentColor;
  font-family: var(--display);
  font-size: .74rem;
  font-weight: 800;
  text-transform: uppercase;
  transition: background-color .2s ease, color .2s ease;
}

.outline-link:hover {
  background: var(--ink);
  color: var(--paper);
}

.dress {
  display: grid;
  grid-template-columns: minmax(300px, .88fr) minmax(0, 1.12fr);
  gap: 9%;
}

.dress-content {
  align-self: end;
}

.dress-content > p {
  max-width: 620px;
  margin: 0 0 52px;
  color: rgba(238, 232, 216, .76);
  font-family: var(--serif);
  font-size: 1.2rem;
}

.palette {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.palette span {
  position: relative;
  min-width: 0;
  height: 190px;
  background: var(--swatch);
  border: 1px solid rgba(238, 232, 216, .25);
}

.palette b {
  position: absolute;
  left: 50%;
  bottom: 12px;
  padding: 4px 7px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--display);
  font-size: .58rem;
  text-transform: uppercase;
  transform: translateX(-50%) rotate(-90deg);
  transform-origin: center;
}

.notes {
  display: grid;
  grid-template-columns: minmax(280px, .8fr) minmax(0, 1.2fr);
  gap: 10%;
}

.notes-list {
  border-top: 2px solid var(--ink);
}

.notes-list details {
  border-bottom: 1px solid var(--line-dark);
}

.notes-list summary {
  min-height: 86px;
  padding: 20px 50px 20px 0;
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
  font-family: var(--serif);
  font-size: 1.6rem;
  cursor: pointer;
}

.notes-list summary::-webkit-details-marker {
  display: none;
}

.notes-list summary::after {
  content: "+";
  margin-left: auto;
  font-family: var(--display);
  font-size: 1.7rem;
}

.notes-list details[open] summary::after {
  content: "−";
}

.notes-list summary span {
  color: var(--red);
  font-family: var(--display);
  font-size: .72rem;
  font-weight: 900;
}

.notes-list details p {
  max-width: 590px;
  margin: 0;
  padding: 0 50px 30px 44px;
  color: rgba(11, 11, 12, .7);
}

.rsvp {
  display: grid;
  grid-template-columns: minmax(300px, .75fr) minmax(0, 1.25fr);
  gap: 9%;
}

.rsvp-heading > p:not(.overline) {
  max-width: 410px;
  margin: 30px 0 0;
  font-family: var(--serif);
  font-size: 1.1rem;
}

.rsvp-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px 20px;
  align-content: start;
}

.rsvp-form label {
  min-width: 0;
  display: grid;
  gap: 9px;
}

.rsvp-form label > span {
  font-family: var(--display);
  font-size: .68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.rsvp-form input,
.rsvp-form select,
.rsvp-form textarea {
  width: 100%;
  min-width: 0;
  border: 0;
  border-bottom: 2px solid var(--paper-bright);
  padding: 12px 2px;
  background: transparent;
  color: var(--paper-bright);
  outline: none;
}

.rsvp-form select {
  color-scheme: dark;
}

.rsvp-form textarea {
  resize: vertical;
}

.rsvp-form input::placeholder,
.rsvp-form textarea::placeholder {
  color: rgba(248, 243, 232, .58);
  opacity: 1;
}

.rsvp-form input:focus,
.rsvp-form select:focus,
.rsvp-form textarea:focus {
  border-color: var(--blue);
}

.field-wide,
.rsvp-form button,
.form-status {
  grid-column: 1 / -1;
}

.rsvp-form button {
  min-height: 58px;
  margin-top: 8px;
  padding: 14px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 2px solid var(--ink);
  background: var(--paper-bright);
  color: var(--ink);
  font-family: var(--display);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color .2s ease, color .2s ease;
}

.rsvp-form button:hover {
  background: var(--ink);
  color: var(--paper-bright);
}

.form-status {
  min-height: 24px;
  margin: 0;
  font-size: .85rem;
}

.finale {
  min-height: 720px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

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

.finale .overline {
  color: var(--blue);
}

.finale h2 {
  font-size: 7rem;
}

.countdown {
  width: min(850px, 100%);
  margin: 56px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid var(--line-light);
}

.countdown div {
  min-width: 0;
  padding: 28px 18px;
  border-right: 1px solid var(--line-light);
}

.countdown div:last-child {
  border-right: 0;
}

.countdown strong {
  display: block;
  font-family: var(--display);
  font-size: 5.2rem;
  line-height: 1;
}

.countdown span {
  color: var(--silver);
  font-family: var(--display);
  font-size: .66rem;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.end-mark {
  margin: 58px auto 0;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--red);
  font-family: var(--display);
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.end-mark::before,
.end-mark::after {
  content: "◆";
  color: var(--paper);
  font-size: .55rem;
}

footer {
  min-height: 112px;
  padding: 24px 4.5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: var(--paper);
  color: var(--ink);
  border-top: 1px solid var(--ink);
}

footer p,
footer > a:last-child {
  font-family: var(--display);
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.has-js [data-invite-block]:not(.hero):not(.finale) {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .75s ease, transform .75s cubic-bezier(.2, .8, .2, 1);
}

.has-js [data-invite-block]:not(.hero):not(.finale).is-visible,
.has-js .is-static-render [data-invite-block] {
  opacity: 1;
  transform: none;
}

@keyframes projector-shift {
  from { transform: skewX(-6deg) rotate(-1deg); opacity: .7; }
  to { transform: skewX(-6deg) rotate(2deg); opacity: 1; }
}

@keyframes credit-marquee {
  to { transform: translateX(-50%); }
}

@keyframes scene-enter {
  from { opacity: 0; transform: translateX(34px); }
  to { opacity: 1; transform: translateX(0); }
}

@media (max-width: 1100px) {
  .hero {
    padding-inline: 72px;
  }

  .hero h1 {
    font-size: 7.2rem;
  }

  .opening-link {
    right: 72px;
  }

  .section-heading h2,
  .invitation h2,
  .venue h2,
  .rsvp h2 {
    font-size: 4.5rem;
  }

  .story-stage {
    grid-template-columns: minmax(260px, .7fr) minmax(0, 1.3fr);
    gap: 4%;
  }

  .scene {
    padding-inline: 6%;
  }

  .scene h3 {
    font-size: 2.8rem;
  }

  .venue-mark {
    font-size: 9rem;
  }

  .countdown strong {
    font-size: 4.4rem;
  }
}

@media (max-width: 820px) {
  html {
    scroll-padding-top: 64px;
  }

  .site-header {
    min-height: 64px;
    padding-inline: 22px;
  }

  .menu-button {
    display: flex;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 22px;
    display: none;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    background: rgba(11, 11, 12, .98);
    border-top: 1px solid var(--line-light);
    border-bottom: 1px solid var(--line-light);
  }

  .site-header.is-open .site-nav {
    display: grid;
  }

  .site-nav a {
    padding: 14px 8px;
    border-bottom: 1px solid var(--line-light);
  }

  .hero {
    height: auto;
    min-height: 780px;
    padding: 98px 58px 38px;
  }

  .hero h1 {
    font-size: 5.2rem;
  }

  .hero-billing {
    max-width: 560px;
  }

  .opening-link {
    position: static;
    margin: 26px 0 0 auto;
  }

  .paper-section,
  .dark-section,
  .red-section {
    padding: 88px 7%;
  }

  .invitation,
  .program,
  .dress,
  .notes,
  .rsvp {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .invitation {
    min-height: 0;
    grid-template-rows: auto;
  }

  .invitation > .section-label {
    grid-column: auto;
  }

  .invitation-copy {
    max-width: 620px;
  }

  .story-stage {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .clapper {
    width: min(430px, 100%);
  }

  .scene {
    width: 100%;
  }

  .program .section-heading {
    position: static;
  }

  .venue {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .venue-poster {
    min-height: 520px;
  }

  .venue-copy {
    padding: 86px 7%;
  }

  .dress-content {
    align-self: auto;
  }

  .notes-list details p {
    padding-left: 43px;
  }

  .finale h2 {
    font-size: 5.4rem;
  }
}

@media (max-width: 560px) {
  .wordmark b {
    font-size: .78rem;
  }

  .wordmark span {
    width: 24px;
    height: 24px;
  }

  .hero {
    min-height: 720px;
    padding: 88px 42px 28px;
  }

  .film-edge {
    width: 20px;
    background-size: 12px 25px;
  }

  .film-edge-left {
    left: 8px;
  }

  .film-edge-right {
    right: 8px;
  }

  .hero::before {
    right: -22%;
    bottom: -40px;
    font-size: 18rem;
  }

  .hero-kicker {
    font-size: .58rem;
  }

  .credit {
    max-width: 260px;
    margin-inline: auto;
    font-size: .63rem;
  }

  .hero h1 {
    font-size: 4rem;
    line-height: .8;
    text-shadow: 5px 5px 0 var(--red-dark);
  }

  .hero-names {
    gap: 10px;
    font-size: 1.25rem;
  }

  .hero-names i {
    width: 32px;
    height: 32px;
    font-size: .85rem;
  }

  .hero-date {
    flex-direction: column;
    gap: 9px;
  }

  .hero-billing {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .hero-billing span:first-child,
  .hero-billing span:last-child {
    text-align: center;
  }

  .opening-link {
    margin-inline: auto;
  }

  .paper-section,
  .dark-section,
  .red-section {
    padding: 72px 22px;
  }

  .section-label {
    gap: 12px;
    font-size: .61rem;
  }

  .section-heading h2,
  .invitation h2,
  .venue h2,
  .rsvp h2 {
    font-size: 3.25rem;
  }

  .invitation-heading > p {
    font-size: 1.25rem;
  }

  .invitation-copy {
    font-size: 1.02rem;
  }

  .story::before {
    display: none;
  }

  .story-stage {
    margin-top: 52px;
  }

  .clapper-board {
    min-height: 195px;
    padding: 20px 15px 16px;
    gap: 8px;
  }

  .clapper-top {
    height: 54px;
  }

  .clapper-board strong {
    font-size: 1.25rem;
  }

  .clapper-board em {
    font-size: 1.25rem;
  }

  .scene-reel {
    min-height: 420px;
  }

  .scene {
    min-height: 390px;
    padding: 44px 4px;
  }

  .scene h3 {
    font-size: 2.4rem;
  }

  .scene-number {
    font-size: 15rem;
  }

  .scene-navigation {
    grid-template-columns: 1fr;
  }

  .scene-navigation button {
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .scene-navigation button:last-child {
    border-bottom: 0;
  }

  .call-sheet li {
    min-height: 0;
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 16px;
  }

  .call-sheet time {
    font-size: 1.7rem;
  }

  .call-sheet li > b {
    display: none;
  }

  .venue-poster {
    min-height: 430px;
    padding: 42px 8%;
    border-width: 10px;
    outline-offset: -10px;
  }

  .venue-mark {
    font-size: 7rem;
  }

  .venue-copy {
    padding: 72px 22px;
  }

  .palette {
    grid-template-columns: repeat(5, minmax(44px, 1fr));
  }

  .palette span {
    height: 135px;
  }

  .notes-list summary {
    padding-right: 4px;
    font-size: 1.3rem;
  }

  .notes-list details p {
    padding: 0 4px 26px;
  }

  .rsvp-form {
    grid-template-columns: 1fr;
  }

  .field-wide,
  .rsvp-form button,
  .form-status {
    grid-column: auto;
  }

  .finale {
    min-height: 610px;
  }

  .finale::before {
    inset: 12px;
  }

  .finale h2 {
    font-size: 4rem;
  }

  .countdown {
    margin-top: 38px;
  }

  .countdown div {
    padding: 22px 5px;
  }

  .countdown strong {
    font-size: 2.7rem;
  }

  footer {
    padding: 26px 22px;
    flex-direction: column;
    text-align: center;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .credit-roll div {
    transform: none;
  }

  .has-js [data-invite-block]:not(.hero):not(.finale) {
    opacity: 1;
    transform: none;
  }
}
