@font-face {
  font-family: Creepster;
  src: url("/creepster.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: Caveat;
  src: url("/caveat.ttf") format("truetype");
  font-weight: 400 700;
  font-display: swap;
}
:root {
  --bg: #090b0d;
  --nav-height: 74px;
  --cream: #f1dfb8;
  --orange: #f97a20;
  --ink: #211b15;
  --red: #972c1d;
  --horror: Creepster, Georgia, serif;
  --hand: Caveat, cursive;
  --serif: Georgia, "Times New Roman", serif;
  --type: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", monospace;
  --sans: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial,
    sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(
    var(--nav-height) + env(safe-area-inset-top, 0px) + 16px
  );
  background: #090b0d;
}
body {
  margin: 0;
  padding-top: calc(var(--nav-height) + env(safe-area-inset-top, 0px));
  background:
    radial-gradient(ellipse at 0% 43%, #55312125, transparent 50%),
    radial-gradient(ellipse at 100% 70%, #45403920, transparent 50%), #090b0d;
  color: var(--cream);
  font: 16px/1.65 var(--sans);
}
body:after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 35;
  opacity: 0.055;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 150 150' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.6' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Cpath fill='%23fff' filter='url(%23n)' d='M0 0h150v150H0z'/%3E%3C/svg%3E");
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea {
  font: inherit;
}
button {
  cursor: pointer;
}
a,
button,
input,
textarea {
  -webkit-tap-highlight-color: transparent;
}
a:focus-visible,
button:focus-visible {
  outline: 3px solid #ed903b;
  outline-offset: 5px;
}
::selection {
  background: #ab2c16;
  color: #fff1d2;
}
.skip-link {
  position: fixed;
  top: -100px;
  left: 15px;
  background: var(--orange);
  color: #111;
  padding: 10px;
  z-index: 99;
}
.skip-link:focus {
  top: 10px;
}
.nav {
  height: calc(var(--nav-height) + env(safe-area-inset-top, 0px));
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  isolation: isolate;
  background: #090b0d;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: env(safe-area-inset-top, 0px) 4% 0;
  gap: 25px;
  border-bottom: 1px solid #a38b6144;
}
.brand {
  font:
    700 27px Arial,
    sans-serif;
  letter-spacing: -1.3px;
}
.brand span {
  color: var(--orange);
}
.section-nav,
.nav-tools,
.language-switch {
  display: flex;
  align-items: center;
  gap: 28px;
}
.section-nav {
  font: 12px var(--type);
}
.section-nav a:hover {
  color: var(--orange);
}
.nav-rsvp {
  border-bottom: 2px solid var(--orange);
  padding: 7px 2px;
  transform: rotate(-3deg);
  color: #ffb767;
}
.nav-tools {
  gap: 18px;
}
.motion-toggle {
  font: 10px var(--type);
  background: none;
  color: #bbb39f;
  border: 0;
  padding: 8px;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.language-switch {
  gap: 1px;
  border: 1px solid #706344;
  padding: 2px;
}
.lang {
  border: 0;
  background: none;
  color: #b6ad9b;
  font: 11px var(--type);
  padding: 5px 7px;
}
.lang.active {
  background: var(--cream);
  color: #21180d;
}
.hero {
  position: relative;
  isolation: isolate;
  height: 940px;
  min-height: 800px;
  max-height: calc(100svh + 90px);
  overflow: hidden;
  text-align: center;
  background: #0b0c12;
}
.hero-photo,
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -4;
}
.hero-photo {
  background: url("/haunted-office.webp") center 58% / cover no-repeat;
}
.hero-shade {
  z-index: -3;
  background: linear-gradient(
    #05080c66,
    transparent 35%,
    transparent 55%,
    #07090b44 70%,
    #090b0d 100%
  );
}
.hero-content {
  height: 100%;
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 28px 20px 40px;
  pointer-events: none;
}
.hero-content a {
  pointer-events: auto;
}
.hero-heading {
  transform: rotate(-3deg);
  position: relative;
}
.hero-heading .eyebrow {
  font: 12px var(--type);
  letter-spacing: 1px;
  text-shadow: 0 2px 7px #000;
  margin: 0 0 9px;
}
.hero-edition {
  font: 700 13px var(--type);
  letter-spacing: 4px;
  margin: 8px auto 10px;
  color: #ff9d4f;
}
.hero h1 {
  font: clamp(78px, 8.5vw, 127px)/0.85 var(--horror);
  margin: 0;
  color: #f6e5c5;
  text-shadow:
    3px 5px 0 #100d0b,
    0 0 25px #000;
  letter-spacing: 1px;
}
.hero h1 span {
  color: #ff821f;
  display: inline-block;
  text-shadow:
    3px 5px 0 #57220b,
    0 0 15px #000;
}
.hero-subtitle {
  font: 11px var(--type);
  letter-spacing: 2px;
  margin: 16px 0 0;
  color: #fff1d4;
}
.hero-invitation {
  position: relative;
  padding: 15px 35px 0;
}
.hero-invitation:before {
  content: "";
  position: absolute;
  inset: -30px -60px;
  z-index: -1;
  background: radial-gradient(ellipse, #08090dc9, transparent 65%);
}
.hero-intro {
  font: 22px/1.4 var(--serif);
  margin: 0 0 14px;
  text-shadow: 0 2px 6px #000;
}
.hero-intro em {
  display: block;
  font: 30px var(--hand);
  color: #ffb66c;
}
.hero-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  font: 700 12px var(--type);
  letter-spacing: 0.7px;
  margin: 15px 0 18px;
}
.hero-meta b {
  color: #ff8c30;
}
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  min-height: 48px;
  padding: 12px 25px;
  font: 700 14px var(--type);
  transition:
    transform 0.2s,
    background 0.2s;
}
.primary {
  background: #f38836;
  border: 1px solid #ffac62;
  color: #251008;
  box-shadow: 3px 4px 0 #632d14;
  transform: rotate(-2deg);
}
.primary:hover {
  transform: rotate(0) translateY(-2px);
  background: #ffa956;
}
.primary:disabled {
  opacity: 0.7;
  cursor: wait;
}
.secondary {
  font: 22px var(--hand);
  border: 0;
  border-bottom: 1px solid #b7a17d;
  padding: 5px 0;
  background: none;
}
.secondary:hover {
  color: #ffa956;
}
.deadline {
  font: 11px var(--type);
  color: #d2c2ae;
  margin: 20px 0 0;
}
.hero-bottom {
  display: none;
}
.warning-tape {
  position: relative;
  z-index: 5;
  overflow: hidden;
  background: #d3a345;
  color: #20170c;
  border-top: 3px solid #111;
  border-bottom: 3px solid #111;
  transform: rotate(-1.5deg);
  padding: 9px 0;
  margin: -10px -0px 0;
  box-shadow: 0 5px 15px #0006;
  white-space: nowrap;
}
.warning-tape span {
  display: block;
  font: 700 17px var(--type);
  letter-spacing: 5px;
  text-align: center;
  word-spacing: 10px;
}
.summons {
  width: min(1180px, 90%);
  margin: 0 auto;
  padding: 80px 0 45px;
  position: relative;
}
.board-web {
  position: absolute;
  left: -8vw;
  top: 0;
  width: 280px;
  height: 280px;
  background: url("/web.svg") center/contain;
  opacity: 0.28;
  pointer-events: none;
}
.board-heading,
.book-heading {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  margin-bottom: 40px;
}
.chapter {
  color: #e68235;
  font: 42px var(--hand);
  transform: rotate(-9deg);
}
.board-heading > p,
.book-heading p {
  font: 11px/1.5 var(--type);
  letter-spacing: 2px;
  color: #a89e88;
}
.hand-note {
  font: 26px/1.1 var(--hand);
  color: #c9b692;
  transform: rotate(-7deg);
}
.board-heading .hand-note {
  margin-left: auto;
  padding-right: 40px;
}
.noticeboard {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.8fr) minmax(0, 0.85fr);
  grid-template-rows: auto auto;
  gap: 25px;
  align-items: start;
  position: relative;
  padding: 8px 15px 15px;
}
.main-notice {
  position: relative;
  grid-column: 1;
  grid-row: 1/3;
  background:
    radial-gradient(ellipse at top right, #81502e40, transparent 55%), #dfc99b;
  color: #241e17;
  padding: 48px 38px 70px;
  transform: rotate(-2deg);
  box-shadow: 8px 12px 20px #0008;
  clip-path: polygon(
    0 0,
    100% 1%,
    99% 97%,
    94% 98%,
    89% 97%,
    83% 99%,
    76% 97%,
    68% 99%,
    61% 98%,
    53% 100%,
    45% 98%,
    38% 99%,
    31% 97%,
    24% 99%,
    17% 97%,
    10% 99%,
    0 97%
  );
}
.pin {
  position: absolute;
  top: 13px;
  left: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #5c291b;
  box-shadow:
    2px 3px 3px #0007,
    inset 1px 1px 1px #d98951;
}
.notice-kicker {
  font: 10px var(--type);
  letter-spacing: 2px;
  border-bottom: 1px solid #55452f66;
  padding-bottom: 12px;
  margin: 0 0 25px;
}
.main-notice h2 {
  font: 700 clamp(29px, 3.1vw, 43px)/1.05 var(--serif);
  letter-spacing: -1.7px;
  margin: 0 0 24px;
}
.main-notice h2 em {
  font-weight: 400;
  color: #742c21;
}
.main-notice > p:not(.notice-kicker):not(.ink-signature) {
  font: 14px/1.8 var(--type);
  margin: 0 0 19px;
}
.ink-signature {
  font: 28px/1.08 var(--hand);
  margin: 28px 0 20px;
  transform: rotate(-5deg);
}
.keep-brand {
  font:
    700 20px Arial,
    sans-serif;
  letter-spacing: -1px;
}
.red-stamp {
  display: block;
  border: 3px double #9b3829;
  color: #9b3829;
  font: 700 13px var(--type);
  letter-spacing: 1px;
  transform: rotate(-12deg);
  width: max-content;
  max-width: 100%;
  padding: 6px 8px;
  margin-left: auto;
  margin-top: 28px;
}
.date-ticket {
  grid-column: 2;
  grid-row: 1/3;
  position: relative;
  background: #eb7325;
  color: #28160b;
  padding: 29px 25px 20px;
  transform: rotate(4deg);
  text-align: center;
  box-shadow: 7px 8px 20px #0007;
  clip-path: polygon(
    0 0,
    100% 0,
    100% 45%,
    96% 46%,
    94% 48%,
    96% 50%,
    100% 51%,
    100% 100%,
    0 100%,
    0 51%,
    4% 50%,
    6% 48%,
    4% 46%,
    0 45%
  );
}
.ticket-hole {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #18120e;
  box-shadow: inset 2px 2px 2px #0006;
  margin: 0 auto 20px;
}
.date-ticket > p:first-of-type {
  font: 11px var(--type);
  letter-spacing: 2px;
}
.date-ticket > strong {
  display: block;
  font: 150px/0.95 var(--horror);
  letter-spacing: -9px;
  padding-right: 9px;
}
.ticket-month {
  font: 700 15px var(--type);
}
.ticket-rule {
  border-top: 2px dashed #48281777;
  margin: 23px -20px 15px;
}
.ticket-time {
  font: 700 16px var(--type);
}
.date-ticket > p:not(:first-of-type):not(.ticket-time) {
  font: 16px/1.65 var(--type);
}
.date-ticket > a {
  display: block;
  font: 700 11px/1.6 var(--type);
  text-decoration: underline;
  text-underline-offset: 4px;
  margin-top: 15px;
}
.ticket-code {
  font: 30px/1 monospace;
  letter-spacing: -5px;
  display: block;
  overflow: hidden;
  margin-top: 30px;
  white-space: nowrap;
}
.costume-note {
  grid-column: 3;
  grid-row: 1;
  position: relative;
  background: #ded3af;
  color: #29221a;
  padding: 32px 22px 28px;
  transform: rotate(-4deg);
  box-shadow: 4px 9px 14px #0008;
}
.paper-tape {
  position: absolute;
  top: -13px;
  left: calc(50% - 40px);
  width: 80px;
  height: 28px;
  background: #a9996cbf;
  transform: rotate(8deg);
  clip-path: polygon(0 5%, 100% 0, 97% 90%, 3% 100%);
}
.note-label {
  font: 700 10px var(--type);
  letter-spacing: 1px;
  margin: 0 0 15px;
}
.costume-note h3 {
  font: 35px/1 var(--hand);
  margin: 0 0 18px;
  color: #692b20;
}
.costume-note > p:not(.note-label) {
  font: 13px/1.6 var(--type);
}
.costume-note .hand-note {
  color: #743020;
  display: block;
  font-size: 26px;
  text-align: right;
  margin-top: 20px;
}
.feast-note {
  grid-column: 3;
  grid-row: 2;
  background: #abb397;
  color: #252a22;
  padding: 28px 23px;
  transform: rotate(3deg);
  position: relative;
  box-shadow: 4px 8px 17px #0008;
}
.feast-note:before {
  content: "";
  position: absolute;
  top: -8px;
  right: 30px;
  width: 16px;
  height: 40px;
  border: 2px solid #a6a49a;
  border-radius: 12px;
  transform: rotate(-15deg);
  box-shadow: 2px 1px 2px #0005;
}
.feast-note > p:not(.note-label) {
  font: 13px/1.7 var(--type);
}
.feast-note > a {
  font: 700 11px var(--type);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.drawn-star {
  position: absolute;
  bottom: -27px;
  right: -10px;
  width: 68px;
  height: 68px;
  color: #e9b866;
  transform: rotate(20deg);
  filter: drop-shadow(2px 3px 0 #111);
}
.drawn-star,
.drawn-star i {
  background:
    linear-gradient(currentColor, currentColor) center / 5px 100% no-repeat,
    linear-gradient(90deg, currentColor, currentColor) center / 100% 5px no-repeat;
}
.drawn-star i {
  position: absolute;
  inset: 0;
  display: block;
  transform: rotate(45deg) scale(0.78);
}
.board-bottom {
  display: flex;
  align-items: center;
  position: relative;
  gap: 30px;
  padding: 35px 15px 0;
  min-height: 100px;
  flex-wrap: wrap;
}
.text-link {
  font: 13px var(--type);
  border-bottom: 1px solid #a58f6d;
  padding-bottom: 5px;
  color: #d3c19e;
}
.text-link:hover {
  color: #ff9a45;
}
.board-bottom > button {
  margin-left: auto;
  color: #bb5841;
  background: none;
  border: 2px solid #713f33;
  font: 700 11px var(--type);
  letter-spacing: 1px;
  padding: 10px;
  transform: rotate(5deg);
}
.board-bottom > button:hover {
  background: #8b2f2022;
  color: #f1a07b;
}
.board-bottom > p {
  flex-basis: 100%;
  margin: 0;
  text-align: right;
  font: 23px var(--hand);
  color: #d7cbaa;
}
.board-bottom > p:empty {
  display: none;
}
.little-ghost {
  position: absolute;
  bottom: 80px;
  right: 35px;
  width: 48px;
  height: 60px;
  background: #e9e0c7;
  border-radius: 50% 50% 5% 5%;
  clip-path: polygon(
    0 0,
    100% 0,
    100% 100%,
    83% 84%,
    65% 100%,
    47% 86%,
    28% 100%,
    12% 87%,
    0 100%
  );
  opacity: 0;
  pointer-events: none;
  display: flex;
  justify-content: center;
  gap: 9px;
  padding-top: 23px;
  transform: translateY(20px);
}
.little-ghost i {
  width: 6px;
  height: 10px;
  background: #151719;
  border-radius: 50%;
}
.haunted .little-ghost {
  opacity: 1;
  animation: ghost-hover 3s ease-in-out infinite alternate;
}
.countdown-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 70px;
  padding: 40px 20px 70px;
  text-align: center;
  width: min(1120px, 90%);
  margin: auto;
}
.countdown-scribble {
  font: 28px/1.1 var(--hand);
  color: #c2b18f;
  transform: rotate(-9deg);
  position: relative;
}
.countdown-scribble:after {
  content: "⤳";
  font-size: 50px;
  position: absolute;
  right: -42px;
  bottom: -5px;
  transform: rotate(-20deg);
}
#countdown-heading {
  font: 10px var(--type);
  letter-spacing: 3px;
  color: #a6977c;
  margin: 0 0 10px;
}
.countdown {
  display: flex;
  align-items: center;
  gap: 18px;
}
.countdown strong {
  display: block;
  font: 55px var(--horror);
  color: #deceb0;
}
.countdown span {
  font: 8px var(--type);
  letter-spacing: 1px;
  color: #b2a186;
}
.countdown > b {
  font: 25px var(--type);
  color: #754f31;
  padding-bottom: 20px;
}
.countdown-cross {
  color: #863629;
  font: 90px var(--hand);
  transform: rotate(-10deg);
}
.guestbook-section {
  width: min(1180px, 90%);
  margin: 10px auto 0;
  padding-bottom: 60px;
}
.book-heading {
  margin-bottom: 35px;
}
.book-heading h2 {
  font: clamp(40px, 4.5vw, 65px)/1 var(--horror);
  color: #efdfbf;
  margin: 10px 0 0;
  letter-spacing: 1px;
}
.book-heading h2 em {
  font-style: normal;
  color: #ec7c30;
}
.book-heading .hand-note {
  margin-left: auto;
  padding-right: 40px;
}
.guestbook {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  position: relative;
  border: 9px solid #342b24;
  border-radius: 6px 10px 12px 6px;
  background: #d5c39d;
  box-shadow:
    0 8px 0 #18120d,
    0 12px 0 #594934,
    0 15px 0 #1a1510,
    0 20px 35px #0008;
  margin: 0 6px;
}
.guestbook:before {
  content: "";
  position: absolute;
  z-index: 3;
  top: 0;
  bottom: 0;
  width: 35px;
  left: calc(50% - 17px);
  background: linear-gradient(
    90deg,
    transparent,
    #71614240,
    #473c3270,
    #d6c29e33,
    transparent
  );
  pointer-events: none;
}
.book-page {
  position: relative;
  padding: 35px 42px 45px;
  color: #30271e;
  background:
    radial-gradient(ellipse at bottom left, #9771412b, transparent 55%), #ddcba6;
  min-width: 0;
}
.signup-page {
  border-right: 1px solid #8d775444;
}
.guests-section {
  background:
    radial-gradient(ellipse at top right, #a18d6844, transparent 70%),
    repeating-linear-gradient(transparent 0 33px, #846b3a13 34px 35px), #dfceaa;
  scroll-margin-top: 12px;
}
.page-number {
  font: italic 13px var(--serif);
  text-align: center;
  margin: 0 0 12px;
  color: #847053;
}
.book-page h3 {
  font: 43px/1.05 var(--hand);
  color: #44291d;
  margin: 0 0 16px;
}
.rsvp-intro,
.guest-intro {
  font: 12px/1.7 var(--type);
  color: #6a5840;
  margin-bottom: 25px;
}
.rsvp-cutoff {
  font: 21px/1.2 var(--hand);
  color: #7a3022;
  transform: rotate(-2deg);
  margin: 25px 0 0;
}
form {
  padding: 0;
  margin: 0;
  scroll-margin-top: 12px;
}
label {
  display: block;
  font: 700 12px var(--type);
  margin: 18px 0 7px;
}
label span {
  font-weight: normal;
  font-size: 10px;
  color: #73604b;
}
input,
textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #6f5d4280;
  border-radius: 0;
  background: #fff5d72b;
  color: #2b211a;
  font: 23px/1.3 var(--hand);
  padding: 10px 8px;
  outline: none;
}
input:focus,
textarea:focus {
  border-color: #8c3326;
  box-shadow: 0 2px 0 #8c3326;
}
input::placeholder,
textarea::placeholder {
  font: 19px var(--hand);
  color: #776952;
  opacity: 1;
}
textarea {
  resize: vertical;
  min-height: 83px;
}
.number-wrap {
  display: flex;
  align-items: center;
  gap: 0;
}
.number-wrap > button {
  width: 40px;
  height: 40px;
  border: 1px solid #8c7754;
  background: transparent;
  color: #403022;
  font: 22px var(--type);
}
.number-wrap > button:hover {
  background: #c8ae7c;
}
.number-wrap > input {
  width: 55px;
  height: 40px;
  text-align: center;
  appearance: textfield;
  -moz-appearance: textfield;
  padding: 2px;
}
.number-wrap > input::-webkit-inner-spin-button {
  appearance: none;
}
.number-wrap > span {
  font: 11px var(--type);
  color: #73614b;
  padding-left: 12px;
}
.privacy {
  font: 10px/1.6 var(--type);
  color: #695942;
  margin: 19px 0;
}
.submit {
  width: 100%;
  background: #803322;
  border: 1px solid #642419;
  color: #f6e4be;
  box-shadow: 2px 3px 0 #b89c6c;
  transform: rotate(-1deg);
  font: 700 13px var(--type);
}
.submit:hover {
  background: #9b3c29;
  transform: rotate(0);
}
#form-status {
  font: 700 13px/1.5 var(--type);
  color: #752719;
  margin: 18px 0 0;
}
#form-status:empty {
  display: none;
}
.honey {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.guests-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}
.guests-heading h3 {
  margin-bottom: 5px;
  font-size: 36px;
}
.guest-count {
  display: flex;
  align-items: center;
  gap: 8px;
  transform: rotate(5deg);
  border: 2px solid #a24c39;
  border-radius: 50%;
  padding: 10px;
  color: #8e3827;
  min-width: 96px;
  min-height: 70px;
  justify-content: center;
}
.guest-count strong {
  font: 38px var(--hand);
  line-height: 1;
}
.guest-count span {
  font: 9px/1.4 var(--type);
  max-width: 43px;
}
.guest-intro {
  margin: 15px 0 26px;
}
.list-head,
.guest-row {
  display: grid;
  grid-template-columns: 1fr 42px 1.25fr;
  gap: 15px;
  align-items: start;
  padding: 12px 0;
  border-bottom: 1px solid #8d795744;
}
.list-head {
  font: 700 9px var(--type);
  letter-spacing: 0.5px;
  border-bottom: 2px solid #6a533844;
}
.guest-row {
  font: 22px/1.2 var(--hand);
  overflow-wrap: anywhere;
}
.guest-people {
  text-align: center;
}
.guest-bringing {
  font-size: 20px;
}
.empty {
  font: 25px/1.3 var(--hand);
  padding: 45px 12px;
  white-space: pre-line;
  text-align: center;
  color: #7e694b;
  transform: rotate(-3deg);
}
.list-note {
  font: 9px/1.5 var(--type);
  color: #756248;
  display: flex;
  align-items: center;
  gap: 8px;
}
.live-dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #7c3e24;
  flex-shrink: 0;
}
#list-status {
  font: 11px var(--type);
  color: #863426;
}
.book-doodle {
  font: 45px var(--hand);
  color: #8e7350;
  opacity: 0.65;
  position: relative;
  text-align: center;
  margin-top: 30px;
  transform: rotate(6deg);
  pointer-events: none;
}
.closing {
  position: relative;
  text-align: center;
  padding: 40px 20px 70px;
  background:
    linear-gradient(#090b0d, #090b0dd9 40%, #090b0d88),
    url("/haunted-office.webp") center bottom/cover;
}
.closing > span {
  display: none;
}
.closing h2 {
  font: clamp(40px, 5vw, 70px)/0.96 var(--horror);
  color: #e9d7b6;
  margin: 10px 0 20px;
  transform: rotate(-3deg);
}
.closing p {
  font: 24px var(--hand);
  color: #d29b64;
}
.closing .text-link {
  display: inline-block;
  transform: rotate(2deg);
  color: #f8a35a;
}
footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 25px 5%;
  border-top: 1px solid #6b503244;
  background: #080a0c;
}
footer .brand {
  font-size: 23px;
}
footer > span,
footer > a:last-child {
  font: 10px var(--type);
  color: #ad9c7e;
}
.noscript {
  padding: 20px;
  color: var(--orange);
}
@keyframes ghost-hover {
  from {
    transform: translateY(0) rotate(-7deg);
  }
  to {
    transform: translateY(-20px) rotate(7deg);
  }
}
.web-corner {
  position: absolute;
  top: 0;
  width: 280px;
  height: 280px;
  background: url("/web.svg") center/contain no-repeat;
  opacity: 0.55;
  pointer-events: none;
  z-index: 3;
}
.web-left {
  left: 0;
}
.web-right {
  right: 0;
  transform: scaleX(-1);
}
.hanging-spider {
  position: absolute;
  z-index: 4;
  width: 110px;
  right: 8%;
  top: -220px;
  transform-origin: top center;
  animation: spider-drop 15s ease-in-out infinite;
  pointer-events: none;
}
.spider-thread {
  height: 225px;
  width: 1px;
  background: #b4b5b485;
  margin: auto;
}
.hanging-spider svg {
  display: block;
  width: 110px;
  filter: drop-shadow(1px 3px 5px #0008);
}
.spider-eyes {
  filter: drop-shadow(0 0 5px #ff2700);
  animation: eye-glow 3s ease-in-out infinite alternate;
}
.flying-bats {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.bat {
  position: absolute;
  width: 65px;
  fill: #03050a;
  filter: drop-shadow(0 1px 1px #94859844);
  left: -15%;
  top: 29%;
  animation: bat-flight 21s linear infinite;
}
.bat-two {
  width: 38px;
  top: 21%;
  animation-delay: -8s;
  animation-duration: 25s;
}
.bat-three {
  width: 48px;
  top: 40%;
  animation-delay: -14s;
  animation-duration: 29s;
}
.fog {
  position: absolute;
  left: -25%;
  bottom: 3%;
  width: 150%;
  height: 200px;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 20% 60%, #aaa9b83b, transparent 45%),
    radial-gradient(ellipse at 65% 70%, #b8c1d335, transparent 50%);
  filter: blur(24px);
  animation: fog-drift 19s ease-in-out infinite alternate;
}
.fog-two {
  bottom: 20%;
  opacity: 0.6;
  animation-duration: 27s;
  animation-direction: alternate-reverse;
}
.embers {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.embers i {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #ffac37;
  box-shadow: 0 0 8px #f74b09;
  bottom: -10px;
  left: 17%;
  animation: ember 13s linear infinite;
}
.embers i:nth-child(2) {
  left: 35%;
  animation-delay: -4s;
  animation-duration: 17s;
}
.embers i:nth-child(3) {
  left: 68%;
  animation-delay: -1s;
}
.embers i:nth-child(4) {
  left: 82%;
  animation-delay: -7s;
  animation-duration: 19s;
}
.embers i:nth-child(5) {
  left: 49%;
  animation-delay: -10s;
}
.embers i:nth-child(6) {
  left: 93%;
  animation-delay: -3s;
}
.candles {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 12px;
  height: 85px;
  margin-bottom: 25px;
}
.candles i {
  position: relative;
  display: block;
  width: 15px;
  height: 38px;
  background: linear-gradient(90deg, #b35e23, #f9d288 45%, #cc8539);
  border-radius: 4px 4px 1px 1px;
  box-shadow: 0 0 35px #ff841942;
}
.candles i:nth-child(2) {
  height: 60px;
  width: 18px;
}
.candles i:nth-child(3) {
  height: 45px;
}
.candles i:before {
  content: "";
  position: absolute;
  left: 3px;
  top: -25px;
  width: 10px;
  height: 26px;
  border-radius: 50% 50% 45% 45%;
  background: radial-gradient(
    ellipse at 50% 80%,
    #fffad8 12%,
    #ffd266 35%,
    #ff752b 65%,
    transparent 75%
  );
  filter: drop-shadow(0 0 10px #ff8c24);
  transform-origin: bottom;
  animation: candle 2.2s ease-in-out infinite alternate;
}
.candles i:nth-child(2):before {
  left: 4px;
  animation-delay: -0.8s;
}
.candles i:nth-child(3):before {
  animation-delay: -1.4s;
}
.candles i:after {
  content: "";
  position: absolute;
  right: 2px;
  top: 0;
  width: 3px;
  height: 13px;
  border-radius: 3px;
  background: #f4cd8e;
}
@keyframes spider-drop {
  0%,
  100% {
    transform: translateY(0) rotate(-4deg);
  }
  35%,
  65% {
    transform: translateY(150px) rotate(5deg);
  }
  80% {
    transform: translateY(75px) rotate(-3deg);
  }
}
@keyframes eye-glow {
  to {
    opacity: 0.45;
  }
}
@keyframes bat-flight {
  0% {
    transform: translate(0, 30px) rotate(-12deg) scaleY(0.8);
  }
  20% {
    transform: translate(27vw, -40px) rotate(7deg) scaleY(1);
  }
  45% {
    transform: translate(59vw, 20px) rotate(-10deg) scaleY(0.7);
  }
  70% {
    transform: translate(92vw, -50px) rotate(5deg) scaleY(1);
  }
  100% {
    transform: translate(130vw, 15px) rotate(-8deg) scaleY(0.8);
  }
}
@keyframes fog-drift {
  from {
    transform: translateX(-10%);
  }
  to {
    transform: translateX(12%);
  }
}
@keyframes ember {
  0% {
    transform: translate(0, 0);
    opacity: 0;
  }
  15% {
    opacity: 0.85;
  }
  90% {
    opacity: 0;
  }
  100% {
    transform: translate(90px, -720px);
    opacity: 0;
  }
}
@keyframes candle {
  0% {
    transform: rotate(-6deg) scaleY(0.9);
    opacity: 0.9;
  }
  40% {
    transform: rotate(3deg) scaleY(1.1);
  }
  70% {
    transform: rotate(-3deg) scaleY(0.95);
  }
  100% {
    transform: rotate(5deg) scaleY(1.07);
    opacity: 1;
  }
}
@media (min-width: 1700px) {
  .hero {
    height: 1050px;
    max-height: none;
  }
  .hero-content {
    padding-top: 40px;
  }
  .hero h1 {
    font-size: 145px;
  }
}
@media (max-width: 1050px) {
  .noticeboard {
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    gap: 30px;
  }
  .main-notice {
    grid-column: 1;
    grid-row: 1/3;
  }
  .date-ticket {
    grid-column: 2;
    grid-row: 1;
  }
  .costume-note {
    grid-column: 2;
    grid-row: 2;
  }
  .feast-note {
    grid-column: 1/-1;
    grid-row: 3;
    width: 70%;
    margin: 10px auto 0;
    transform: rotate(-1deg);
  }
  .main-notice {
    padding: 40px 30px 55px;
  }
  .date-ticket {
    padding: 20px;
  }
  .date-ticket > strong {
    font-size: 110px;
  }
  .ticket-hole {
    margin-bottom: 5px;
  }
  .ticket-rule {
    margin: 13px 0;
  }
  .ticket-code {
    margin-top: 18px;
  }
  .date-ticket > a {
    margin-top: 10px;
  }
  .costume-note {
    padding: 28px;
  }
  .costume-note h3 {
    font-size: 36px;
  }
  .book-page {
    padding: 30px 28px;
  }
  .book-heading .hand-note {
    padding-right: 10px;
  }
  .guests-heading {
    align-items: flex-start;
  }
  .guests-heading h3 {
    font-size: 32px;
  }
  .guest-count {
    min-width: 80px;
    min-height: 65px;
    padding: 7px;
  }
  .guest-count strong {
    font-size: 30px;
  }
  .section-nav {
    gap: 20px;
  }
  .nav-tools {
    gap: 10px;
  }
  .countdown-wrap {
    gap: 40px;
  }
  .countdown-cross {
    display: none;
  }
  .hero {
    height: 880px;
  }
  .hero h1 {
    font-size: 100px;
  }
  .web-corner {
    width: 170px;
    height: 170px;
  }
  .hanging-spider {
    right: 3%;
    width: 80px;
  }
  .hanging-spider svg {
    width: 80px;
  }
}
@media (max-width: 700px) {
  :root {
    --nav-height: 96px;
  }
  .nav {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 5px 12px;
    padding: calc(10px + env(safe-area-inset-top, 0px)) 5% 8px;
  }
  .brand {
    font-size: 24px;
  }
  .nav-tools {
    grid-column: 2;
    grid-row: 1;
    justify-content: flex-end;
  }
  .motion-toggle {
    font-size: 9px;
    padding: 5px;
  }
  .section-nav {
    grid-column: 1/-1;
    grid-row: 2;
    justify-content: center;
    gap: 28px;
    font-size: 11px;
  }
  .nav-rsvp {
    padding: 4px;
  }
  .hero {
    height: 810px;
    min-height: 750px;
    max-height: none;
  }
  .hero-content {
    padding: 30px 15px 35px;
  }
  .hero-heading .eyebrow {
    font-size: 9px;
    max-width: 280px;
    margin: 0 auto 14px;
  }
  .hero-edition {
    font-size: 10px;
    letter-spacing: 3px;
  }
  .hero h1 {
    font-size: clamp(61px, 13.7vw, 92px);
  }
  .hero-subtitle {
    font-size: 9px;
    letter-spacing: 1px;
    max-width: 280px;
    margin: 15px auto 0;
  }
  .hero-photo {
    background-size: auto 82%;
    background-position: 50% 100%;
  }
  .hero-shade {
    background: linear-gradient(
      #090b0d 0%,
      #090b0d77 18%,
      transparent 40%,
      transparent 56%,
      #090b0d55 77%,
      #090b0d 100%
    );
  }
  .hero-invitation {
    padding: 10px 0 0;
    width: 100%;
  }
  .hero-intro {
    font-size: 19px;
  }
  .hero-intro em {
    font-size: 27px;
  }
  .hero-meta {
    font-size: 10px;
    gap: 10px;
    letter-spacing: 0;
  }
  .hero-actions {
    gap: 17px;
  }
  .button {
    font-size: 12px;
    padding: 12px 16px;
    gap: 15px;
  }
  .secondary {
    font-size: 20px;
    padding: 5px 0;
  }
  .deadline {
    font-size: 9px;
    margin-top: 18px;
  }
  .web-corner {
    width: 115px;
    height: 115px;
    opacity: 0.45;
  }
  .hanging-spider {
    right: 1%;
    width: 58px;
    top: -190px;
  }
  .hanging-spider svg {
    width: 58px;
  }
  .spider-thread {
    height: 225px;
  }
  .bat {
    width: 40px;
  }
  .bat-two {
    width: 28px;
  }
  .bat-three {
    width: 32px;
  }
  .warning-tape {
    padding: 8px 0;
  }
  .warning-tape span {
    font-size: 12px;
    letter-spacing: 2px;
    word-spacing: 2px;
  }
  .summons {
    padding: 45px 0 25px;
    width: 90%;
  }
  .board-heading {
    gap: 12px;
    margin-bottom: 28px;
    flex-wrap: wrap;
  }
  .chapter {
    font-size: 32px;
  }
  .board-heading > p {
    font-size: 9px;
    letter-spacing: 1px;
    max-width: 190px;
  }
  .board-heading .hand-note {
    width: 100%;
    font-size: 24px;
    margin-left: 45px;
    margin-top: 0;
    padding-right: 0;
    transform: rotate(-4deg);
  }
  .noticeboard {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 25px 16px;
    padding: 5px 3px;
  }
  .main-notice {
    grid-column: 1/-1;
    grid-row: 1;
    padding: 35px 28px 45px;
    transform: rotate(-2deg);
  }
  .main-notice h2 {
    font-size: 38px;
  }
  .main-notice > p:not(.notice-kicker):not(.ink-signature) {
    font-size: 13px;
    line-height: 1.8;
  }
  .notice-kicker {
    font-size: 9px;
  }
  .ink-signature {
    font-size: 27px;
  }
  .red-stamp {
    font-size: 11px;
    margin-top: 25px;
  }
  .date-ticket {
    grid-column: 1;
    grid-row: 2/4;
    padding: 20px 12px;
    transform: rotate(2deg);
  }
  .date-ticket > strong {
    font-size: 100px;
  }
  .ticket-month {
    font-size: 12px;
  }
  .date-ticket > p:first-of-type {
    font-size: 9px;
    letter-spacing: 1px;
  }
  .ticket-time {
    font-size: 12px;
  }
  .date-ticket > p:not(:first-of-type):not(.ticket-time) {
    font-size: 11px;
    line-height: 1.7;
  }
  .date-ticket > a {
    font-size: 10px;
    line-height: 1.7;
  }
  .ticket-code {
    font-size: 25px;
  }
  .costume-note {
    grid-column: 2;
    grid-row: 2;
    padding: 24px 16px 18px;
    transform: rotate(-3deg);
  }
  .costume-note h3 {
    font-size: 28px;
  }
  .costume-note .note-label {
    font-size: 8px;
  }
  .costume-note > p:not(.note-label) {
    font-size: 11px;
  }
  .costume-note .hand-note {
    font-size: 24px;
  }
  .feast-note {
    grid-column: 1/-1;
    grid-row: 4;
    width: 90%;
    margin: 0 auto;
    padding: 24px;
    transform: rotate(2deg);
  }
  .note-label {
    font-size: 10px;
  }
  .board-bottom {
    padding: 30px 2px 0;
    gap: 25px;
  }
  .board-bottom .text-link {
    font-size: 11px;
    max-width: 60%;
    line-height: 1.7;
  }
  .board-bottom > button {
    font-size: 9px;
    padding: 8px;
  }
  .board-bottom > p {
    font-size: 22px;
    text-align: left;
  }
  .little-ghost {
    right: 25px;
  }
  .countdown-wrap {
    padding: 30px 10px 45px;
    gap: 18px;
    flex-direction: column;
  }
  .countdown-scribble {
    font-size: 24px;
    transform: rotate(-5deg);
    align-self: flex-start;
    max-width: calc(100% - 55px);
    margin-left: 10px;
    margin-bottom: 3px;
  }
  .countdown-scribble br {
    display: none;
  }
  .countdown-scribble:after {
    font-size: 36px;
    right: -25px;
    bottom: -20px;
    transform: rotate(60deg);
  }
  #countdown-heading {
    font-size: 9px;
    letter-spacing: 2px;
  }
  .countdown {
    gap: 18px;
  }
  .countdown strong {
    font-size: 43px;
  }
  .countdown span {
    font-size: 7px;
  }
  .guestbook-section {
    width: 92%;
    padding-bottom: 40px;
  }
  .book-heading {
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 25px;
  }
  .book-heading p {
    font-size: 9px;
    letter-spacing: 1px;
  }
  .book-heading h2 {
    font-size: 44px;
  }
  .book-heading .hand-note {
    font-size: 23px;
    margin: 5px 0 0 45px;
    transform: rotate(-4deg);
  }
  .guestbook {
    grid-template-columns: 1fr;
    border-width: 6px;
    margin: 0 2px;
  }
  .guestbook:before {
    display: none;
  }
  .book-page {
    padding: 25px 24px 35px;
  }
  .signup-page {
    border-right: 0;
    border-bottom: 5px double #977e56;
  }
  .book-page h3 {
    font-size: 40px;
  }
  .rsvp-intro,
  .guest-intro {
    font-size: 11px;
  }
  .book-page label {
    font-size: 12px;
  }
  .privacy {
    font-size: 10px;
  }
  .guests-section {
    scroll-margin-top: 12px;
  }
  .guests-heading h3 {
    font-size: 36px;
  }
  .guest-count {
    min-width: 87px;
    min-height: 68px;
  }
  .guest-count strong {
    font-size: 33px;
  }
  .list-head,
  .guest-row {
    grid-template-columns: 1fr 36px 1.2fr;
    gap: 10px;
  }
  .guest-row {
    font-size: 22px;
  }
  .guest-bringing {
    font-size: 21px;
  }
  .book-doodle {
    margin-top: 25px;
  }
  .closing {
    padding: 30px 18px 50px;
  }
  .closing h2 {
    font-size: 44px;
  }
  .closing p {
    font-size: 24px;
  }
  .closing .text-link {
    font-size: 12px;
  }
  footer {
    flex-wrap: wrap;
    gap: 18px;
  }
  footer > span {
    font-size: 9px;
  }
  footer > a:last-child {
    width: 100%;
    text-align: center;
  }
  .candles {
    margin-bottom: 20px;
  }
}
@media (max-width: 360px) {
  .hero h1 {
    font-size: 55px;
  }
  .main-notice h2 {
    font-size: 33px;
  }
  .main-notice {
    padding-left: 23px;
    padding-right: 23px;
  }
  .costume-note {
    padding: 23px 11px;
  }
  .ticket-month {
    font-size: 10px;
  }
  .costume-note h3 {
    font-size: 25px;
  }
  .book-page {
    padding: 25px 18px;
  }
  .guests-heading h3 {
    font-size: 30px;
  }
  .section-nav {
    gap: 20px;
  }
  .hero-actions {
    gap: 10px;
  }
  .secondary {
    font-size: 18px;
  }
  .book-heading h2 {
    font-size: 38px;
  }
}
html[data-motion="off"] *,
html[data-motion="off"] *:before,
html[data-motion="off"] *:after {
  animation-play-state: paused !important;
}
html[data-motion="off"] {
  scroll-behavior: auto;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
  .embers {
    display: none;
  }
  .hanging-spider {
    transform: translateY(70px);
  }
}

.noticeboard > * {
  min-width: 0;
}
/* A private return path to each guest's own page in the book. */
[hidden] {
  display: none !important;
}
.my-rsvps {
  border: 1px dashed #8b5a36;
  padding: 12px;
  margin: 0 0 20px;
  background: #bd9d6422;
}
.my-rsvps > p {
  font: 700 11px var(--type);
  margin: 0 0 8px;
}
.my-rsvps button,
.guest-edit,
.cancel-edit {
  background: none;
  border: 0;
  color: #803322;
  text-decoration: underline;
  text-underline-offset: 3px;
  font: 11px/1.6 var(--type);
  padding: 5px 0;
  cursor: pointer;
}
.my-rsvps button {
  display: block;
  text-align: left;
  overflow-wrap: anywhere;
}
.guest-edit {
  display: block;
  margin-top: 4px;
}
.cancel-edit {
  display: block;
  margin: 12px auto 0;
}
.cancel-edit-rsvp {
  display: block;
  margin: 6px auto 0;
  border: 0;
  background: none;
  color: #8c2f23;
  text-decoration: underline;
  text-underline-offset: 3px;
  font: 13px/1.6 var(--sans);
  padding: 5px;
}
.editing-notice {
  border-left: 3px solid #803322;
  padding: 8px 12px;
  font: 12px/1.6 var(--type);
  color: #6d2d20;
  background: #b87e3f22;
}
.confirmation {
  width: min(560px, calc(100% - 28px));
  max-height: calc(100svh - 32px);
  overflow-y: auto;
  padding: 35px 34px 28px;
  border: 1px solid #c88340;
  background:
    radial-gradient(ellipse at top, #51281966, transparent 55%), #11100f;
  color: #efdfbf;
  box-shadow:
    0 0 0 5px #191411,
    0 0 80px #df591b33;
  text-align: center;
}
.confirmation[open] {
  animation: seal-appear 0.35s ease-out;
}
.confirmation::backdrop {
  background: #030509dc;
  backdrop-filter: blur(5px);
}
.confirmation-close {
  position: absolute;
  right: 12px;
  top: 8px;
  border: 0;
  background: none;
  color: #e8c79a;
  font:
    30px/1 Arial,
    sans-serif;
  padding: 5px 9px;
}
.confirmation-seal {
  margin: 0 auto 18px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 3px double #d79260;
  background: radial-gradient(circle at 30% 25%, #b4472b, #591b17);
  box-shadow:
    0 0 0 5px #69231c,
    0 5px 14px #0008;
  transform: rotate(-10deg);
  display: grid;
  place-items: center;
}
.confirmation-seal span {
  font: 36px var(--serif);
  color: #f2c88f;
}
.confirmation-kicker {
  font: 9px/1.5 var(--type);
  letter-spacing: 1.7px;
  color: #cfaa81;
  margin: 0 0 10px;
}
.confirmation h2 {
  font: 43px/0.98 var(--horror);
  color: #ff993c;
  letter-spacing: 1px;
  margin: 0 0 14px;
}
.confirmation > p:not(.confirmation-kicker):not(.confirmation-date) {
  font: 14px/1.6 var(--serif);
  color: #deccb4;
  margin: 0 0 20px;
}
.confirmation-summary {
  background: #e1cea6;
  color: #332519;
  text-align: left;
  padding: 14px 18px;
  margin: 20px 0 15px;
  box-shadow: 3px 4px 0 #543a24;
  transform: rotate(-1deg);
}
.confirmation-summary > div {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 12px;
  align-items: baseline;
  padding: 6px 0;
  border-bottom: 1px solid #8e724544;
}
.confirmation-summary > div:last-child {
  border: 0;
}
.confirmation-summary dt {
  font: 10px/1.4 var(--type);
}
.confirmation-summary dd {
  margin: 0;
  font: 25px/1.15 var(--hand);
  overflow-wrap: anywhere;
}
.confirmation-date {
  font: 11px/1.5 var(--type);
  color: #e5ad72;
  margin: 18px 0;
}
.confirmation-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
.confirmation-actions .primary {
  font-size: 12px;
  transform: rotate(-1deg);
  width: 100%;
  color: #291508;
}
.edit-answers {
  border: 0;
  background: none;
  font: 13px var(--type);
  color: #e9c6a0;
  text-decoration: underline;
  text-underline-offset: 4px;
  padding: 8px;
}
.private-link-box {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px dashed #705233;
  text-align: left;
}
.private-link-box label {
  font: 700 11px var(--type);
  margin: 0 0 7px;
}
.private-link-box p {
  font: 11px/1.6 var(--type);
  color: #bead95;
  margin: 7px 0 10px;
}
.copy-link-row {
  display: flex;
  gap: 8px;
  align-items: stretch;
}
.copy-link-row input {
  min-width: 0;
  width: 100%;
  background: #201a14;
  color: #dfc6a0;
  border: 1px solid #766044;
  padding: 9px;
  font: 11px var(--type);
}
.copy-link-row button {
  white-space: nowrap;
  font: 11px var(--type);
  border: 1px solid #b28349;
  background: #4b311c;
  color: #f3dcb9;
  padding: 9px 12px;
}
.private-link-box .private-link-hint {
  font-size: 10px;
  color: #a79a86;
}
.private-link-box #copy-status {
  color: #ffbe7b;
  margin-bottom: 0;
}
.confirmation:focus-visible {
  outline: none;
}
@keyframes seal-appear {
  from {
    opacity: 0;
    transform: translateY(22px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@media (max-width: 600px) {
  .confirmation {
    padding: 30px 21px 22px;
  }
  .confirmation h2 {
    font-size: 36px;
  }
  .confirmation-summary {
    padding: 12px;
  }
  .confirmation-summary > div {
    grid-template-columns: 90px 1fr;
    gap: 10px;
  }
  .confirmation-summary dd {
    font-size: 24px;
  }
  .confirmation-actions .primary {
    font-size: 11px;
  }
  .copy-link-row {
    gap: 6px;
  }
  .copy-link-row button {
    padding: 8px;
    font-size: 10px;
  }
}

/* Night shift reception: the RSVP machine and scalable time-card rack. */
.checkin-section {
  --checkin-progress: 0;
  --checkin-gutter: clamp(20px, 5vw, 82px);
  --office-y: 48%;
  --foreground-y: 0px;
  --fog-x: 0px;
  --station-y: 54px;
  position: relative;
  isolation: isolate;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0 var(--checkin-gutter) 110px;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 50%, #5a26172b, transparent 36%),
    radial-gradient(circle at 80% 70%, #3d203d24, transparent 38%),
    #07090b;
}
.checkin-section::before {
  content: "";
  position: absolute;
  inset: 250px 0 0;
  z-index: -3;
  background:
    linear-gradient(#07090b00, #07090bd9 430px, #07090b 900px),
    repeating-linear-gradient(90deg, transparent 0 13%, #d77c3220 13.1% 13.3%, transparent 13.4% 20%);
  opacity: 0.9;
}
.office-threshold {
  position: relative;
  z-index: -1;
  height: 470px;
  margin: 0 calc(0px - var(--checkin-gutter));
  overflow: hidden;
  background:
    linear-gradient(#080a0bbb, #080a0b10 35%, #080a0b 100%),
    url("/haunted-office.webp") center var(--office-y) / cover no-repeat;
  box-shadow: inset 0 -100px 100px #07090b;
}
.office-threshold::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/reception-foreground.webp") center / 100% 100% no-repeat;
  transform: translateY(var(--foreground-y)) scale(1.03);
  transform-origin: bottom center;
  pointer-events: none;
}
.office-threshold::after {
  content: "";
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: -45px;
  height: 150px;
  background: radial-gradient(ellipse, #c8bba51f, transparent 65%);
  filter: blur(15px);
  transform: translateX(var(--fog-x));
}
.office-threshold > i {
  position: absolute;
  inset: 0 auto 70px;
  width: 2px;
  background: linear-gradient(transparent, #d6b48c55 20% 80%, transparent);
  box-shadow: 0 0 18px #e8883840;
}
.office-threshold > i:nth-of-type(1) { left: 16%; }
.office-threshold > i:nth-of-type(2) { left: 33%; }
.office-threshold > i:nth-of-type(3) { left: 50%; }
.office-threshold > i:nth-of-type(4) { left: 67%; }
.office-threshold > i:nth-of-type(5) { left: 84%; }
.threshold-brand,
.threshold-window-copy {
  position: absolute;
  z-index: 2;
  color: #f2dfbb;
  text-shadow: 0 3px 18px #000;
}
.threshold-brand {
  left: 12%;
  top: 38%;
  font: 800 clamp(24px, 3vw, 43px) var(--sans);
  letter-spacing: -2px;
}
.threshold-brand span { color: var(--orange); }
.threshold-window-copy {
  right: 14%;
  top: 35%;
  font: 800 clamp(15px, 1.6vw, 23px)/0.88 var(--sans);
}
.checkin-heading {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  width: min(1420px, 100%);
  margin: -215px auto 52px;
  padding: 35px clamp(20px, 4vw, 55px);
  background: linear-gradient(90deg, #090b0df5, #090b0db8 72%, transparent);
  border-left: 2px solid #f47a22;
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
  transform: translateY(35px);
}
.checkin-heading.in-view { opacity: 1; transform: translateY(0); }
.checkin-heading h2 { font-size: clamp(52px, 6vw, 91px); }
.checkin-heading .hand-note { color: #dbc59d; }
.night-shift-station {
  position: relative;
  z-index: 4;
  width: min(1420px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(360px, 0.8fr) minmax(570px, 1.45fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: start;
  border: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
  transform: translateY(var(--station-y));
}
.night-shift-station::before { display: none; }
.time-clock,
.time-card-rack {
  opacity: 0;
  transition: opacity 0.75s ease, transform 0.75s cubic-bezier(.2,.8,.2,1);
}
.time-clock { transform: translateY(65px) rotate(-1deg); }
.time-card-rack { transform: translateY(85px) rotate(0.7deg); transition-delay: 0.12s; }
.time-clock.in-view { opacity: 1; transform: translateY(0) rotate(-1deg); }
.time-card-rack.in-view { opacity: 1; transform: translateY(0) rotate(0.7deg); }
.time-clock {
  position: relative;
  padding: 22px 28px 30px;
  color: #f1dfbd;
  background:
    radial-gradient(circle at 20% 0, #5c3a2455, transparent 32%),
    linear-gradient(145deg, #27221d, #0e0f10 58%, #25201b);
  border: 2px solid #8c6545;
  border-radius: 22px 16px 26px 18px;
  box-shadow:
    inset 0 0 0 4px #08090a,
    inset 0 0 0 6px #503d2e,
    12px 17px 0 #030405,
    0 35px 70px #000b;
}
.machine-brand {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  align-items: center;
  margin: 2px 13px 18px;
  font: 800 22px var(--sans);
  letter-spacing: -1px;
  color: #f1dcc0;
}
.machine-brand span {
  font: 700 9px var(--type);
  letter-spacing: 1.2px;
  color: #b99a76;
}
.clock-face {
  position: relative;
  padding: 28px 30px 32px;
  color: #2b2119;
  background:
    repeating-linear-gradient(transparent 0 31px, #74583212 32px 33px),
    radial-gradient(circle at 85% 10%, #a97e4635, transparent 30%),
    #e7d5b0;
  border: 1px solid #9c7b52;
  box-shadow: inset 0 0 24px #5a3d1c42, 0 0 0 5px #141312, 0 0 0 7px #76583d;
}
.clock-face .page-number {
  text-align: left;
  font: 700 10px var(--type);
  letter-spacing: 1.5px;
  color: #8b3b27;
  margin-bottom: 13px;
}
.clock-face h3 {
  font: 700 clamp(28px, 2.5vw, 42px)/1.05 var(--serif);
  color: #2b2119;
  letter-spacing: -1.5px;
  margin-bottom: 14px;
}
.clock-face .rsvp-intro,
.clock-face .privacy {
  color: #5b4e3e;
  font-size: 14px;
}
.clock-face label {
  color: #33271d;
  font: 800 11px var(--sans);
  letter-spacing: 0.4px;
  text-transform: uppercase;
}
.clock-face label span { color: #75634d; }
.clock-face input,
.clock-face textarea {
  border: 1px solid #8e7658;
  background: #f5e8cbad;
  color: #251b14;
  font: 16px/1.4 var(--sans);
  padding: 12px 13px;
  box-shadow: inset 2px 2px 0 #75593418;
}
.clock-face input::placeholder,
.clock-face textarea::placeholder {
  font: 15px var(--sans);
  color: #756a5b;
}
.clock-face input:focus,
.clock-face textarea:focus {
  border-color: #9b3927;
  box-shadow: 0 0 0 3px #a94c2b33;
}
.clock-face .number-wrap { gap: 0; }
.clock-face .number-wrap > button {
  width: 46px;
  height: 44px;
  border-color: #76583d;
  background: #2b2722;
  color: #f1d9b3;
}
.clock-face .number-wrap > input {
  width: 62px;
  height: 44px;
  border-color: #76583d;
  background: #f4e4c5;
}
.clock-face .number-wrap > span {
  color: #5e5040;
  font: 12px var(--sans);
}
.clock-face .submit {
  min-height: 55px;
  margin-top: 5px;
  border: 1px solid #ff9b56;
  background: linear-gradient(#d94420, #a92d18);
  color: #fff0d3;
  box-shadow: 4px 5px 0 #4e1a10, inset 0 1px 0 #ffba7a;
  transform: none;
  font: 900 13px var(--type);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.clock-face .submit:hover { background: linear-gradient(#ef5829, #bd321b); transform: translate(1px, 1px); }
.clock-face #form-status { color: #7b2b1f; }
.clock-face .rsvp-cutoff {
  font-size: 20px;
  margin-bottom: 0;
}
.clock-slot {
  width: 68%;
  height: 69px;
  margin: 25px auto 0;
  padding: 11px 22px 0;
  text-align: center;
  border-radius: 6px;
  background: #08090a;
  border: 2px solid #5c4736;
  box-shadow: inset 0 8px 16px #000, 0 1px 0 #9b7453;
  overflow: hidden;
}
.clock-slot span {
  display: block;
  padding: 9px;
  color: #8f3224;
  background: #ead8b5;
  border: 2px solid #9c4938;
  font: 800 15px var(--type);
  transform: translateY(27px);
  transition: transform 0.5s cubic-bezier(.2,.8,.2,1);
}
.clocked .clock-slot span { transform: translateY(0); }
.clock-lever {
  position: absolute;
  z-index: 3;
  right: -49px;
  top: 155px;
  width: 35px;
  height: 185px;
  transform-origin: 50% 16px;
  transition: transform 0.35s ease;
}
.clock-lever::before {
  content: "";
  position: absolute;
  left: 13px;
  top: 15px;
  width: 10px;
  height: 158px;
  border-radius: 8px;
  background: linear-gradient(90deg, #2d221a, #b5865d 45%, #35261d);
  box-shadow: 3px 4px 6px #000a;
}
.clock-lever span {
  position: absolute;
  z-index: 1;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #614633, #090a0b 70%);
  border: 2px solid #a37754;
}
.clock-lever i {
  position: absolute;
  left: 3px;
  bottom: 0;
  width: 31px;
  height: 31px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 25%, #c36b3d, #401911 70%);
  border: 2px solid #9d5938;
}
.clocking .clock-lever { transform: rotate(31deg); }
.clock-screws,
.rack-bolts { position: absolute; inset: 9px; pointer-events: none; }
.clock-screws i,
.rack-bolts i {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 25%, #d0a276, #38271c 70%);
  box-shadow: 0 1px 2px #000;
}
.clock-screws i:nth-child(1), .rack-bolts i:nth-child(1) { left: 0; top: 0; }
.clock-screws i:nth-child(2), .rack-bolts i:nth-child(2) { right: 0; top: 0; }
.clock-screws i:nth-child(3), .rack-bolts i:nth-child(3) { left: 0; bottom: 0; }
.clock-screws i:nth-child(4), .rack-bolts i:nth-child(4) { right: 0; bottom: 0; }
.time-card-rack {
  position: relative;
  min-width: 0;
  padding: 27px 30px 30px;
  color: #eadabd;
  background:
    linear-gradient(135deg, #2b2119aa, transparent 25%),
    #111211;
  border: 2px solid #9a7047;
  box-shadow:
    inset 0 0 0 5px #050606,
    inset 0 0 0 7px #493629,
    12px 15px 0 #25130c,
    0 35px 75px #000b;
}
.time-card-rack .guests-heading {
  align-items: center;
  gap: 25px;
  padding: 4px 7px 20px;
  border-bottom: 1px solid #77583d;
}
.rack-label {
  margin: 0 0 7px;
  color: #bf936c;
  font: 700 9px var(--type);
  letter-spacing: 1.5px;
}
.time-card-rack .guests-heading h3 {
  color: #f2dfbd;
  font: clamp(31px, 3vw, 48px)/1 var(--horror);
  letter-spacing: 1px;
  margin: 0;
}
.time-card-rack .guest-count {
  min-width: 175px;
  min-height: 76px;
  border: 1px solid #8b613e;
  border-radius: 2px;
  transform: none;
  background: #090a0a;
  color: #f2d6ad;
  box-shadow: inset 0 0 0 4px #1e1814;
}
.time-card-rack .guest-count strong {
  min-width: 65px;
  padding: 7px 9px;
  border: 1px solid #563a28;
  background: linear-gradient(#1f1a16 49%, #060707 50%);
  color: #ff8d3c;
  font: 48px/1 var(--horror);
  text-align: center;
  text-shadow: 0 0 12px #e9521b88;
}
.time-card-rack .guest-count span {
  max-width: 62px;
  font: 700 9px/1.45 var(--type);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.counter-flip strong { animation: counter-flip 0.45s ease; }
@keyframes counter-flip { 50% { transform: rotateX(90deg); filter: brightness(1.8); } }
.time-card-rack .guest-intro {
  margin: 18px 7px 10px;
  color: #c7b79d;
  font-size: 14px;
}
.time-card-rack .guest-search { margin: 14px 7px 18px; }
.time-clock form,
.time-card-rack {
  scroll-margin-top: calc(var(--nav-height) + 20px);
}
.time-card-rack .guest-search label { color: #c9aa83; font-size: 11px; }
.time-card-rack .guest-search input {
  border: 1px solid #654a35;
  background: #211c18;
  color: #f1dfc0;
  padding: 12px 48px 12px 13px;
  font-size: 15px;
}
.time-card-rack .guest-search input::placeholder { color: #a59682; font-size: 15px; }
.time-card-rack .guest-search button { right: 8px; bottom: 10px; color: #ef995f; font-size: 11px; }
.time-card-rack #guest-list {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px 15px;
  height: 510px;
  padding: 8px 7px 25px;
  overflow-y: auto;
  align-content: start;
}
.time-card-entry {
  position: relative;
  display: block;
  min-height: 208px;
  padding: 30px 18px 25px;
  color: #2b2118;
  background:
    linear-gradient(135deg, transparent 0 12px, #ead8b3 13px) top left,
    repeating-linear-gradient(transparent 0 29px, #785c3314 30px 31px),
    #ead8b3;
  border: 1px solid #9c815d;
  box-shadow: 0 8px 0 #5c412a, 0 13px 16px #0008;
  overflow: visible;
  animation: card-slide-in 0.55s cubic-bezier(.2,.8,.2,1) var(--card-delay) both;
}
.time-card-entry::before {
  content: "";
  position: absolute;
  top: 10px;
  left: calc(50% - 12px);
  width: 24px;
  height: 9px;
  border: 2px solid #504131;
  border-radius: 7px 7px 2px 2px;
  background: #161616;
  box-shadow: 0 2px 0 #826749;
}
.time-card-entry::after {
  content: "";
  position: absolute;
  left: -5px;
  right: -5px;
  bottom: -9px;
  height: 15px;
  border: 1px solid #9c7047;
  background: linear-gradient(#77502f, #342218);
  box-shadow: 0 5px 8px #0008;
}
@keyframes card-slide-in {
  from { opacity: 0; transform: translateY(-38px) rotateX(-18deg); }
  to { opacity: 1; transform: translateY(0) rotateX(0); }
}
.time-card-entry > div {
  display: block;
  padding: 7px 0;
  border-bottom: 1px solid #806c5142;
  overflow-wrap: anywhere;
}
.time-card-entry > div::before {
  content: attr(data-label);
  display: block;
  margin-bottom: 3px;
  color: #806a50;
  font: 800 8px var(--sans);
  letter-spacing: 1px;
}
.time-card-entry .guest-name {
  padding-top: 1px;
  color: #251b15;
  font: 800 19px/1.2 var(--sans);
}
.time-card-entry .guest-people {
  text-align: left;
  font: 800 17px var(--sans);
}
.time-card-entry .guest-bringing {
  min-height: 49px;
  border-bottom: 0;
  font: 14px/1.35 var(--sans);
}
.time-card-entry .guest-edit {
  margin-top: 6px;
  color: #8a2f21;
  font-size: 11px;
}
.time-card-rack .empty {
  grid-column: 1/-1;
  align-self: center;
  color: #a99577;
  font: 25px/1.35 var(--hand);
  transform: rotate(-2deg);
}
.time-card-rack #guest-list.is-empty { height: 380px; }
.rack-slots {
  position: absolute;
  z-index: 1;
  left: 33px;
  right: 33px;
  bottom: 142px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  opacity: 0.55;
  pointer-events: none;
}
.rack-slots i {
  height: 15px;
  border: 1px solid #835c3b;
  background: #3d291c;
}
.time-card-rack .guest-pagination {
  margin: 10px 7px 0;
  padding-top: 14px;
  border-color: #6e5038;
}
.time-card-rack .guest-pagination button {
  border-color: #745139;
  color: #d9bea0;
  font-size: 11px;
}
.time-card-rack .guest-pagination button:not(:disabled):hover { background: #6a3d253d; }
.time-card-rack .guest-pagination span,
.time-card-rack .entry-count,
.time-card-rack .list-note { color: #af9e88; }
.time-card-rack .entry-count { margin-bottom: 10px; }
.time-card-rack .list-note { margin: 0 7px; }
.time-card-rack .live-dot { background: #ff6f2d; box-shadow: 0 0 8px #ff4d1c; }
.time-card-rack #list-status { color: #f09d70; margin-left: 7px; }
.time-clock .my-rsvps {
  border-color: #8b4d33;
  background: #8f593118;
}
.time-clock .my-rsvps button,
.time-clock .cancel-edit,
.time-clock .cancel-edit-rsvp { color: #822d20; }
.time-clock .editing-notice { background: #8b3b1720; }

@media (max-width: 1120px) {
  .night-shift-station { grid-template-columns: minmax(330px, .82fr) minmax(480px, 1.18fr); gap: 38px; }
  .time-card-rack #guest-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .rack-slots { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .checkin-section { padding-left: 6%; padding-right: 6%; }
  .office-threshold { margin-left: -6.4%; margin-right: -6.4%; }
  .night-shift-station { grid-template-columns: 1fr; width: min(690px, 100%); }
  .time-clock { width: min(560px, calc(100% - 35px)); margin: 0 auto; }
  .time-card-rack { width: 100%; }
}
@media (max-width: 700px) {
  .checkin-section { padding: 0 5% 70px; }
  .office-threshold {
    height: 330px;
    margin: 0 -5.6%;
    background-size: auto 100%;
  }
  .office-threshold::before { background-size: auto 100%; }
  .threshold-brand { left: 8%; top: 37%; }
  .threshold-window-copy { right: 8%; }
  .checkin-heading {
    display: block;
    margin-top: -135px;
    margin-bottom: 35px;
    padding: 25px 22px;
  }
  .checkin-heading .chapter { display: block; margin-bottom: 5px; }
  .checkin-heading h2 { font-size: clamp(48px, 14vw, 67px); }
  .checkin-heading .hand-note { margin: 17px 0 0; padding: 0; font-size: 22px; }
  .night-shift-station { gap: 48px; transform: none; }
  .time-clock { width: calc(100% - 24px); padding: 17px 18px 25px; }
  .machine-brand { font-size: 19px; }
  .clock-face { padding: 24px 19px 27px; }
  .clock-face h3 { font-size: 31px; }
  .clock-face .rsvp-intro,
  .clock-face .privacy { font-size: 14px; }
  .clock-lever { right: -37px; top: 145px; transform: scale(.82); }
  .clocking .clock-lever { transform: scale(.82) rotate(31deg); }
  .clock-slot { width: 82%; }
  .time-card-rack { padding: 23px 18px 25px; }
  .time-card-rack .guests-heading { align-items: flex-start; }
  .time-card-rack .guests-heading h3 { font-size: 37px; }
  .time-card-rack .guest-count { min-width: 125px; min-height: 67px; }
  .time-card-rack .guest-count strong { min-width: 49px; font-size: 39px; }
  .time-card-rack .guest-count span { font-size: 7px; }
  .time-card-rack #guest-list {
    grid-template-columns: 1fr;
    gap: 20px;
    height: 590px;
    padding-left: 5px;
    padding-right: 5px;
  }
  .time-card-rack #guest-list.is-empty { height: 330px; }
  .time-card-entry { min-height: 178px; padding: 28px 19px 22px; }
  .time-card-entry .guest-name { font-size: 19px; }
  .rack-slots { grid-template-columns: 1fr; left: 25px; right: 25px; }
}
@media (max-width: 390px) {
  .checkin-section { padding-left: 14px; padding-right: 14px; }
  .office-threshold { margin-left: -14px; margin-right: -14px; }
  .time-clock { width: calc(100% - 20px); }
  .clock-face { padding-left: 15px; padding-right: 15px; }
  .clock-face .number-wrap > span { font-size: 10px; padding-left: 7px; }
  .time-card-rack .guests-heading { gap: 10px; }
  .time-card-rack .guest-count { min-width: 110px; }
}
html[data-motion="off"] .office-threshold,
html[data-motion="off"] .office-threshold::before,
html[data-motion="off"] .office-threshold::after,
html[data-motion="off"] .night-shift-station { transform: none; }
html[data-motion="off"] .time-clock,
html[data-motion="off"] .time-card-rack { opacity: 1; transform: none; }
html[data-motion="off"] .time-card-entry { animation: none; }
@media (prefers-reduced-motion: reduce) {
  .office-threshold,
  .office-threshold::before,
  .office-threshold::after,
  .night-shift-station { transform: none !important; }
  .time-clock,
  .time-card-rack { opacity: 1; transform: none; }
  .time-card-entry,
  .counter-flip strong { animation: none; }
}

/* Readable body copy, while display lettering stays reserved for headlines and notes. */
.main-notice > p:not(.notice-kicker):not(.ink-signature),
.date-ticket > p:not(:first-of-type):not(.ticket-time),
.costume-note > p:not(.note-label),
.feast-note > p:not(.note-label),
.rsvp-intro,
.guest-intro,
.privacy,
.editing-notice,
.confirmation > p:not(.confirmation-kicker):not(.confirmation-date),
.private-link-box p,
.edit-unavailable {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.65;
  letter-spacing: 0;
}
.book-page label,
.guest-search label,
.list-head,
.list-note,
.entry-count,
.guest-pagination,
.confirmation-summary dt,
.private-link-box label {
  font-family: var(--sans);
  font-size: 12px;
}
input,
textarea,
.guest-search input,
.guest-row,
.confirmation-summary dd {
  font-family: var(--sans);
}
input,
textarea {
  font-size: 17px;
  line-height: 1.45;
}
input::placeholder,
textarea::placeholder,
.guest-search input::placeholder {
  font-family: var(--sans);
  font-size: 16px;
}
.guest-row {
  font-size: 16px;
  line-height: 1.45;
}
.guest-bringing {
  font-size: 15px;
}
.guest-edit,
.my-rsvps button,
.cancel-edit {
  font-family: var(--sans);
  font-size: 13px;
}
.cancel-rsvp {
  border: 0;
  background: none;
  color: #d88370;
  font: 13px var(--sans);
  text-decoration: underline;
  text-underline-offset: 4px;
  padding: 8px;
}
.cancel-confirmation .cancel-seal {
  background: radial-gradient(circle at 30% 25%, #7c3127, #32110f);
  border-color: #b45c48;
  box-shadow: 0 0 0 5px #4f1e19, 0 5px 14px #0008;
}
.danger-button {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid #b55d48;
  background: #72281f;
  color: #fff0d8;
  font: 700 13px var(--sans);
}
.cancel-confirmation > .primary {
  width: 100%;
}
#cancel-status {
  color: #f0a27e;
  margin: 14px 0 0;
}

@media (max-width: 700px) {
  .nav {
    background: #090b0d;
    overflow: hidden;
  }
  .noticeboard {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .main-notice,
  .date-ticket,
  .costume-note,
  .feast-note {
    grid-column: 1;
    width: min(100%, 470px);
    margin-left: auto;
    margin-right: auto;
  }
  .main-notice { grid-row: 1; }
  .date-ticket { grid-row: 2; padding: 28px 24px; }
  .costume-note { grid-row: 3; padding: 30px 25px; }
  .feast-note { grid-row: 4; width: min(92%, 470px); }
  .date-ticket > strong { font-size: 120px; }
  .date-ticket > p:not(:first-of-type):not(.ticket-time),
  .costume-note > p:not(.note-label),
  .feast-note > p:not(.note-label),
  .main-notice > p:not(.notice-kicker):not(.ink-signature),
  .rsvp-intro,
  .guest-intro,
  .privacy {
    font-size: 15px;
    line-height: 1.6;
  }
  .date-ticket > a,
  .feast-note > a {
    font-size: 13px;
  }
  .list-head,
  .guest-row {
    grid-template-columns: minmax(0, 1fr) 42px minmax(0, 1.2fr);
  }
  .guest-row { font-size: 15px; }
  .guest-bringing { font-size: 14px; }
  .guest-pagination button,
  .guest-pagination span,
  .entry-count,
  .list-note,
  .guest-search label {
    font-size: 12px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .confirmation[open] {
    animation: none;
  }
}
/* Six entries per page keep a large party inside the physical guestbook. */
.guest-search {
  position: relative;
  margin: 16px 0 12px;
}
.guest-search label {
  font: 10px var(--type);
  margin: 0 0 6px;
}
.guest-search input {
  font: 18px var(--hand);
  padding: 8px 42px 8px 8px;
}
.guest-search input::placeholder {
  font-size: 18px;
}
.guest-search button {
  position: absolute;
  right: 0;
  bottom: 8px;
  background: none;
  border: 0;
  font: 10px var(--type);
  color: #803322;
  padding: 4px;
}
.guest-search input::-webkit-search-cancel-button {
  display: none;
}
#guest-list {
  height: 350px;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: #9c8055 transparent;
}
.guest-pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  border-top: 1px solid #8d795777;
  padding-top: 12px;
  margin-top: 10px;
}
.guest-pagination button {
  background: none;
  border: 1px solid #8d795788;
  padding: 7px 9px;
  font: 10px var(--type);
  color: #5a3823;
  min-height: 36px;
}
.guest-pagination button:disabled {
  opacity: 0.4;
  cursor: default;
}
.guest-pagination button:not(:disabled):hover {
  background: #bba27355;
}
.guest-pagination span {
  font: 10px var(--type);
  text-align: center;
  color: #654f35;
}
.entry-count {
  font: 10px/1.5 var(--type);
  color: #705b40;
  text-align: center;
  margin: 10px 0 15px;
}
.book-doodle {
  display: none;
}
.guests-section .guest-intro {
  margin-bottom: 12px;
}
.edit-unavailable {
  font: 12px/1.6 var(--type);
  color: #f1bc83;
  border-top: 1px dashed #705233;
  padding-top: 16px;
}
@media (max-width: 600px) {
  #guest-list {
    height: 355px;
  }
  .guest-pagination button {
    font-size: 9px;
    padding: 7px;
  }
  .guest-pagination span {
    font-size: 9px;
  }
  .guest-search label {
    font-size: 10px;
  }
}

/* Final legibility safeguards for the guestbook controls. */
.guest-search label,
.guest-pagination button,
.guest-pagination span,
.entry-count,
.list-note {
  font-family: var(--sans);
  font-size: 12px;
}
.guest-search input,
.guest-search input::placeholder {
  font-family: var(--sans);
  font-size: 16px;
}
@media (max-width: 600px) {
  .guest-search label,
  .guest-pagination button,
  .guest-pagination span,
  .entry-count,
  .list-note {
    font-size: 12px;
  }
  .list-head,
  .guest-row {
    grid-template-columns: minmax(0, 1fr) 62px minmax(0, 1.15fr);
    gap: 8px;
  }
  .list-head span:nth-child(2) {
    font-size: 10px;
    text-align: center;
  }
}

.time-card-rack .time-card-entry {
  display: block;
  grid-template-columns: none;
  gap: 0;
}
@media (max-width: 700px) {
  .time-card-rack .time-card-entry {
    display: block;
    grid-template-columns: none;
    gap: 0;
  }
}
