:root {
  --bg: #f2f1ec;
  --ink: #141414;
  --muted: rgba(20, 20, 20, 0.5);
  --faint: rgba(20, 20, 20, 0.28);
  --line: rgba(20, 20, 20, 0.12);
  --accent: #3d4a42;
  --plane: #e4e2da;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html {
  overflow-x: hidden;
}

html,
body {
  min-height: 100%;
}

body {
  font-family: "Syne", sans-serif;
  color: var(--ink);
  background: var(--bg);
}

body:not(.is-opened) {
  overflow: hidden;
}

.wash {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 90% 55% at 80% -10%, rgba(61, 74, 66, 0.1), transparent 55%),
    radial-gradient(ellipse 70% 50% at 0% 100%, rgba(180, 170, 150, 0.18), transparent 50%),
    linear-gradient(165deg, #f5f4ef 0%, #ebeae3 45%, #e7e5de 100%);
}

.back {
  position: fixed;
  top: max(0.9rem, env(safe-area-inset-top));
  left: 1rem;
  z-index: 50;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--muted);
  transition: color 0.3s ease;
}

.back:hover {
  color: var(--ink);
}

.seal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  background:
    radial-gradient(ellipse 80% 50% at 50% 30%, rgba(61, 74, 66, 0.35), transparent 55%),
    linear-gradient(165deg, #1c1f1d 0%, #111 100%);
  transition: opacity 0.65s ease, visibility 0.65s ease;
}

.seal.is-opening,
.seal.is-gone {
  pointer-events: none;
}

.seal.is-opening {
  opacity: 0;
}

.seal.is-gone {
  visibility: hidden;
}

.seal.is-waiting .seal-open {
  pointer-events: none;
}

.seal-open {
  appearance: none;
  border: 1px solid rgba(242, 241, 236, 0.28);
  background: transparent;
  color: #f2f1ec;
  cursor: pointer;
  display: grid;
  justify-items: center;
  gap: 0.65rem;
  padding: 1.4rem 1.8rem;
}

.seal-text {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.seal-sub {
  font-family: "Newsreader", Georgia, serif;
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(242, 241, 236, 0.55);
}

.music-btn {
  position: fixed;
  top: max(0.75rem, env(safe-area-inset-top));
  right: 1rem;
  z-index: 90;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(242, 241, 236, 0.82);
  backdrop-filter: blur(8px);
  cursor: pointer;
  display: grid;
  place-items: center;
}

.music-icon {
  width: 0.88rem;
  height: 0.88rem;
  border-radius: 50%;
  border: 1.5px solid var(--ink);
  position: relative;
  opacity: 0.7;
  background:
    radial-gradient(circle, var(--bg, #f2f1ec) 17%, transparent 18%),
    repeating-radial-gradient(circle, rgba(26, 26, 26, 0.35) 0 1px, transparent 1px 2.4px);
}

.music-icon::before {
  content: "";
  position: absolute;
  inset: 36%;
  border-radius: 50%;
  background: var(--ink);
}

.music-btn.is-on .music-icon {
  opacity: 1;
  animation: music-spin 1.6s linear infinite;
}

.music-btn.is-off .music-icon {
  opacity: 0.35;
}

.music-btn.is-off .music-icon::after {
  content: "";
  position: absolute;
  left: -2px;
  right: -2px;
  top: 50%;
  height: 1.5px;
  background: var(--ink);
  transform: rotate(-38deg);
}

.music-btn.is-missing {
  animation: shake 0.35s ease;
}

.dots {
  position: fixed;
  right: 0.65rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 50;
  display: grid;
  gap: 0.45rem;
}

.dot {
  width: 5px;
  height: 5px;
  border: 0;
  padding: 0;
  background: rgba(20, 20, 20, 0.2);
  cursor: pointer;
  transition: height 0.25s ease, background 0.25s ease;
}

.dot.is-active {
  height: 14px;
  background: var(--ink);
}

.scroller {
  position: relative;
  z-index: 1;
  min-height: 100dvh;
  overflow-x: hidden;
}

.screen {
  position: relative;
  z-index: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 3.3rem 1.4rem 2.9rem;
}

/* Cover — full-bleed poster */
.cover {
  align-items: stretch;
  justify-content: flex-end;
  padding: 0;
  min-height: 100dvh;
  background: #1a1a1a;
}

.poster {
  position: relative;
  margin: 0;
  overflow: hidden;
  background:
    linear-gradient(145deg, #3d4540 0%, #2a302c 45%, #1c1f1d 100%);
}

.poster-img {
  display: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

.poster.has-image .poster-img {
  display: block;
}

.poster.has-image .poster-slot {
  display: none;
}

.poster-slot {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 0.45rem;
  text-align: center;
  pointer-events: none;
}

.poster-slot-title {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(242, 241, 236, 0.72);
}

.poster-slot-hint {
  font-family: "Newsreader", Georgia, serif;
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(242, 241, 236, 0.38);
}

.poster-hero {
  position: absolute;
  inset: 0;
}

.cover-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(20, 20, 20, 0.04) 0%,
    rgba(20, 20, 20, 0.08) 42%,
    rgba(20, 20, 20, 0.55) 72%,
    rgba(20, 20, 20, 0.88) 100%
  );
  pointer-events: none;
}

.cover-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  min-height: 100dvh;
  padding: 4.5rem 1.5rem 5.4rem;
  color: #f2f1ec;
}

.cover-content .eyebrow {
  color: rgba(242, 241, 236, 0.7);
}

.cover-content .lede {
  margin-top: 0.7rem;
  max-width: 16rem;
  color: rgba(242, 241, 236, 0.62);
}

.cover-content .brand {
  font-size: clamp(2.4rem, 12vw, 3.2rem);
  max-width: none;
}

.cover-content .scroll-cue {
  margin-top: 1.15rem;
  padding-top: 0;
  color: #f2f1ec;
}

.cover-content .scroll-cue i {
  background: #f2f1ec;
}

.cover-content .scroll-cue i::after {
  border-color: #f2f1ec;
}

.cover-plane {
  display: none;
}

.eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.brand {
  font-size: clamp(4.5rem, 24vw, 6rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.9;
  max-width: 8ch;
}

.lede {
  margin-top: 1.25rem;
  max-width: 14rem;
  font-family: "Newsreader", Georgia, serif;
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.5;
  color: var(--muted);
}

.scroll-cue {
  margin-top: auto;
  padding-top: 3rem;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-family: "Syne", sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
}

.scroll-cue i {
  width: 2.5rem;
  height: 1px;
  background: var(--ink);
  position: relative;
  animation: line-grow 2s ease-in-out infinite;
}

.scroll-cue i::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  transform: translateY(-60%) rotate(-45deg);
}

.poster-page {
  gap: 1.25rem;
}

.poster-full {
  width: min(100%, 22rem);
  aspect-ratio: 3 / 4;
  border: 1px solid var(--line);
}

.poster-full .poster-slot-title {
  color: var(--muted);
}

.poster-full .poster-slot-hint {
  color: var(--faint);
}

/* Content screens */
.section-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 1.05rem;
}

.display {
  font-size: clamp(2.2rem, 11vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1;
  margin-bottom: 1.35rem;
}

.pair {
  display: grid;
  gap: 1.15rem;
  width: 100%;
  max-width: 22rem;
}

.pair .role {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.pair .name {
  font-size: clamp(2rem, 10vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.pair .rule {
  width: 100%;
  height: 1px;
  background: var(--line);
  transform-origin: left center;
}

.screen.couple.in-view .rule {
  animation: draw-line 1s cubic-bezier(0.22, 1, 0.36, 1) 0.25s both;
}

.invite-line {
  font-family: "Newsreader", Georgia, serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 1.1rem;
}

.screen.rsvp {
  justify-content: flex-start;
  padding-top: 3.4rem;
  padding-bottom: 2.8rem;
}

.rsvp-points {
  list-style: none;
  width: min(100%, 22rem);
  margin-bottom: 0.5rem;
}

.rsvp-points li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.countdown {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  width: min(100%, 22rem);
}

.count-item {
  display: grid;
  gap: 0.35rem;
  padding: 0.85rem 0.2rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.count-item strong {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.count-item span {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--faint);
}

.flow {
  list-style: none;
  width: min(100%, 22rem);
  display: grid;
}

.flow li {
  display: grid;
  grid-template-columns: 4.2rem 1fr;
  gap: 1.1rem;
  align-items: baseline;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.flow-time {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.04em;
}

.flow-title {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.action-row {
  margin-top: 1.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.action-btn {
  appearance: none;
  -webkit-appearance: none;
  position: relative;
  z-index: 2;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #f2f1ec;
  text-decoration: none;
  font-family: "Syne", sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.8rem 1.05rem;
  cursor: pointer;
}

.action-btn.ghost {
  background: transparent;
  color: var(--ink);
}

.action-btn.is-empty {
  animation: shake 0.35s ease;
}

.action-btn.is-copied,
.action-btn.ghost.is-copied {
  background: #2f6f4e;
  border-color: #2f6f4e;
  color: #fff;
}

.action-btn.is-fail {
  color: #9a3b32;
  border-color: #9a3b32;
  background: transparent;
}

.rsvp-form {
  width: min(100%, 22rem);
  display: grid;
  gap: 0.8rem;
}

.rsvp-form label {
  display: grid;
  gap: 0.4rem;
}

.rsvp-form label span {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.rsvp-form input,
.rsvp-form select,
.rsvp-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  padding: 0.55rem 0;
  font-family: "Syne", sans-serif;
  font-size: 1rem;
  color: var(--ink);
  outline: none;
  border-radius: 0;
}

.rsvp-form textarea {
  resize: vertical;
  min-height: 4rem;
  font-family: "Newsreader", Georgia, serif;
}

.rsvp-form .action-btn {
  justify-self: start;
  margin-top: 0.35rem;
}

.note,
.map-hint {
  margin-top: 2rem;
  font-family: "Newsreader", Georgia, serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--faint);
}

.meta {
  display: grid;
  gap: 1.75rem;
  width: 100%;
  max-width: 22rem;
}

.meta dt {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.45rem;
}

.meta dd {
  font-size: clamp(1.35rem, 6vw, 1.7rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.35;
}

.empty {
  color: var(--faint);
  border-bottom: 1px solid var(--line);
  display: inline-block;
  min-width: 6.5rem;
  padding-bottom: 0.2rem;
}

.thanks {
  margin-top: 2.5rem;
  max-width: 14rem;
  font-family: "Newsreader", Georgia, serif;
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.45;
  color: var(--muted);
}

.home {
  margin-top: 2.5rem;
  align-self: flex-start;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--accent);
  border-bottom: 1px solid rgba(61, 74, 66, 0.35);
  padding-bottom: 0.2rem;
}

.continue {
  --door-open: 3.2s;
  justify-content: stretch;
  align-items: stretch;
  padding: 0;
  min-height: 100dvh;
  overflow: hidden;
}

.continue-hit {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100dvh;
  width: 100%;
  text-decoration: none;
  color: #f2f1ec;
  overflow: hidden;
  perspective: 1180px;
  perspective-origin: 50% 46%;
  transform-style: preserve-3d;
  -webkit-tap-highlight-color: transparent;
}

.continue-world {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 42% 32% at 50% 46%, rgba(242, 241, 236, 0.28), transparent 68%),
    radial-gradient(ellipse 80% 70% at 50% 50%, #3d4540 0%, #1a1a1a 74%);
}

.continue.is-opening .continue-world {
  animation: continue-world-bloom var(--door-open) cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

.continue-light {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  overflow: hidden;
  mix-blend-mode: screen;
}

.continue-light-bloom,
.continue-light-shaft,
.continue-light-veils,
.continue-light-filaments,
.continue-light-beam,
.continue-light-dust {
  position: absolute;
  pointer-events: none;
  opacity: 0;
}

.continue-light-bloom {
  left: 46%;
  top: 39%;
  width: min(78vw, 34rem);
  height: min(96vh, 48rem);
  transform: translate(-50%, -50%) scale(0.28);
  border-radius: 50%;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 255, 250, 0.7) 0%,
    rgba(242, 241, 236, 0.36) 28%,
    rgba(232, 228, 216, 0.1) 52%,
    transparent 72%
  );
  filter: blur(28px);
}

.continue-light-shaft {
  left: 47%;
  top: 48%;
  width: 2.4rem;
  height: 128%;
  transform: translate(-50%, -50%) rotate(-8deg) scaleX(0.2);
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(242, 241, 236, 0.16) 36%,
    rgba(255, 255, 250, 0.5) 50%,
    rgba(242, 241, 236, 0.16) 64%,
    transparent 100%
  );
  filter: blur(18px);
}

.continue-light-veils,
.continue-light-filaments {
  left: 46%;
  top: 38%;
  width: 165vmax;
  height: 165vmax;
  transform: translate(-50%, -50%);
  -webkit-mask-image: radial-gradient(ellipse 44% 58% at 44% 42%, #000 8%, transparent 68%);
  mask-image: radial-gradient(ellipse 44% 58% at 44% 42%, #000 8%, transparent 68%);
}

.continue-light-veils {
  background: repeating-conic-gradient(
    from -20deg,
    transparent 0deg 8.4deg,
    rgba(242, 241, 236, 0.05) 8.7deg,
    rgba(255, 255, 250, 0.12) 9.1deg,
    rgba(242, 241, 236, 0.04) 9.5deg,
    transparent 9.8deg 17deg
  );
  filter: blur(10px);
}

.continue-light-filaments {
  background: repeating-conic-gradient(
    from -14deg,
    transparent 0deg 5.15deg,
    rgba(255, 255, 250, 0.04) 5.28deg,
    rgba(255, 255, 250, 0.26) 5.42deg,
    rgba(242, 241, 236, 0.08) 5.55deg,
    transparent 5.7deg 10.4deg
  );
  filter: blur(0.8px);
}

.continue-light-beam {
  left: 47%;
  top: 38%;
  width: 92vmax;
  height: calc(var(--w, 0.3) * 0.9rem);
  margin-top: calc(var(--w, 0.3) * -0.45rem);
  transform: rotate(var(--r, 0deg));
  transform-origin: 0 50%;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 250, calc(var(--l, 0.5) * 0.5)) 0%,
    rgba(242, 241, 236, calc(var(--l, 0.5) * 0.2)) 28%,
    rgba(232, 228, 216, calc(var(--l, 0.5) * 0.08)) 58%,
    transparent 82%
  );
  filter: blur(calc(2px + var(--w, 0.3) * 5px));
}

.continue-light-dust {
  inset: 0;
  background-image:
    radial-gradient(1.1px 1.1px at 48% 38%, rgba(255, 255, 250, 0.65), transparent),
    radial-gradient(0.9px 0.9px at 53% 46%, rgba(242, 241, 236, 0.5), transparent),
    radial-gradient(1.2px 1.2px at 46% 58%, rgba(255, 255, 250, 0.45), transparent),
    radial-gradient(0.8px 0.8px at 57% 33%, rgba(242, 241, 236, 0.5), transparent),
    radial-gradient(0.9px 0.9px at 42% 48%, rgba(255, 255, 250, 0.4), transparent),
    radial-gradient(1px 1px at 61% 62%, rgba(242, 241, 236, 0.4), transparent),
    radial-gradient(0.8px 0.8px at 39% 28%, rgba(255, 255, 250, 0.35), transparent),
    radial-gradient(1.1px 1.1px at 55% 72%, rgba(242, 241, 236, 0.35), transparent),
    radial-gradient(0.9px 0.9px at 50% 22%, rgba(255, 255, 250, 0.45), transparent),
    radial-gradient(1px 1px at 36% 64%, rgba(242, 241, 236, 0.35), transparent);
  filter: blur(0.4px);
}

.continue.is-opening .continue-light-bloom {
  animation: continue-light-bloom var(--door-open) cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

.continue.is-opening .continue-light-shaft {
  animation: continue-light-shaft var(--door-open) cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

.continue.is-opening .continue-light-veils {
  animation: continue-light-veils 3.4s ease-in-out forwards;
}

.continue.is-opening .continue-light-filaments {
  animation: continue-light-filaments 3.15s ease-in-out forwards;
}

.continue.is-opening .continue-light-beam {
  animation: continue-light-beam var(--dur, var(--door-open)) cubic-bezier(0.22, 0.61, 0.36, 1) var(--d, 0s) both;
}

.continue.is-opening .continue-light-dust {
  animation: continue-light-dust var(--door-open) ease-out forwards;
}

.continue-flare {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: 0;
  background:
    radial-gradient(ellipse 62% 46% at 50% 42%, rgba(255, 255, 250, 0.38), transparent 72%),
    radial-gradient(ellipse 92% 72% at 50% 50%, rgba(242, 241, 236, 0.1), transparent 78%);
  mix-blend-mode: screen;
}

.continue.is-opening .continue-flare {
  animation: continue-flare var(--door-open) cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

.continue-doors {
  position: absolute;
  inset: 0;
  z-index: 2;
  transform-style: preserve-3d;
}

.continue-door {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50%;
  overflow: hidden;
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform var(--door-open) cubic-bezier(0.45, 0.02, 0.18, 1);
}

.continue-door--left {
  left: 0;
  transform-origin: left center;
  transform: translateZ(0);
}

.continue-door--right {
  right: 0;
  transform-origin: right center;
  transform: translateZ(0);
}

.continue-door-face {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #1a1a1a;
}

.continue-door-face::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 75% 58% at 50% 42%, rgba(20, 20, 20, 0.12), rgba(20, 20, 20, 0.58) 78%);
  transition: opacity 1.1s ease;
}

.continue-door-face::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 36%;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.9s ease;
}

.continue-door--left .continue-door-face::before {
  right: 0;
  background: linear-gradient(90deg, transparent, rgba(242, 241, 236, 0.1) 48%, rgba(255, 255, 250, 0.5));
  box-shadow: 10px 0 28px rgba(242, 241, 236, 0.24);
}

.continue-door--right .continue-door-face::before {
  left: 0;
  background: linear-gradient(270deg, transparent, rgba(242, 241, 236, 0.1) 48%, rgba(255, 255, 250, 0.5));
  box-shadow: -10px 0 28px rgba(242, 241, 236, 0.24);
}

.continue.is-opening .continue-door-face::before {
  opacity: 1;
}

.continue.is-opening .continue-door-face::after {
  opacity: 0.28;
}

.continue-door--left .continue-door-face {
  box-shadow: inset -14px 0 32px rgba(0, 0, 0, 0.42);
  transition: box-shadow var(--door-open) cubic-bezier(0.45, 0.02, 0.18, 1);
}

.continue-door--right .continue-door-face {
  box-shadow: inset 14px 0 32px rgba(0, 0, 0, 0.42);
  transition: box-shadow var(--door-open) cubic-bezier(0.45, 0.02, 0.18, 1);
}

.continue.is-opening .continue-door--left .continue-door-face {
  box-shadow:
    inset -22px 0 36px rgba(242, 241, 236, 0.28),
    inset -6px 0 14px rgba(255, 255, 250, 0.5);
}

.continue.is-opening .continue-door--right .continue-door-face {
  box-shadow:
    inset 22px 0 36px rgba(242, 241, 236, 0.28),
    inset 6px 0 14px rgba(255, 255, 250, 0.5);
}

.continue-door .poster-img {
  position: absolute;
  top: 0;
  height: 100%;
  width: 200%;
  max-width: none;
  object-fit: cover;
  object-position: center center;
}

.continue-door--left .poster-img { left: 0; }
.continue-door--right .poster-img { right: 0; }

.continue.in-view:not(.is-opening) .poster.has-image .poster-img {
  animation: continue-ken 22s ease-in-out infinite alternate;
}

.continue-seam {
  position: absolute;
  top: 7%;
  bottom: 7%;
  left: 50%;
  z-index: 3;
  width: 1px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, transparent, rgba(242, 241, 236, 0.7) 18%, #f2f1ec 50%, rgba(242, 241, 236, 0.7) 82%, transparent);
  box-shadow: 0 0 12px rgba(242, 241, 236, 0.28);
  pointer-events: none;
}

.continue-content {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: min(22rem, 88%);
  margin-top: -8vh;
  padding: 1.6rem 1.4rem 1.8rem;
  transform: translateZ(72px);
  transform-style: preserve-3d;
}

.continue-content .eyebrow {
  color: rgba(242, 241, 236, 0.78);
  margin-bottom: 0.2rem;
  text-shadow: 0 8px 20px rgba(0, 0, 0, 0.45);
}

.continue-names {
  font-family: "Newsreader", Georgia, serif;
  font-size: 1.15rem;
  letter-spacing: 0.18em;
  color: rgba(242, 241, 236, 0.92);
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.5);
}

.continue-cue {
  position: relative;
  display: grid;
  justify-items: center;
  margin-top: 1.85rem;
}

.continue-press-wrap {
  position: relative;
  display: grid;
  place-items: center;
  min-width: 13.5rem;
  min-height: 7.2rem;
}

.continue-glow {
  position: absolute;
  width: 13.2rem;
  height: 13.2rem;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(242, 241, 236, 0.28) 0%, rgba(242, 241, 236, 0.1) 42%, transparent 70%);
}

.continue.in-view:not(.is-opening) .continue-glow {
  animation: continue-glow 3.2s ease-in-out infinite;
}

.continue-pulse,
.continue-pulse--lag {
  position: absolute;
  width: 10.6rem;
  height: 10.6rem;
  border-radius: 50%;
  border: 1.5px solid rgba(242, 241, 236, 0.68);
  box-shadow:
    0 0 22px rgba(242, 241, 236, 0.32),
    inset 0 0 16px rgba(242, 241, 236, 0.1);
  pointer-events: none;
}

.continue.in-view:not(.is-opening) .continue-pulse {
  animation: continue-ring 2.6s ease-out infinite;
}

.continue.in-view:not(.is-opening) .continue-pulse--lag {
  animation: continue-ring 2.6s ease-out 1.3s infinite;
}

.continue.in-view:not(.is-opening) .continue-content {
  animation: continue-hover 5.6s ease-in-out infinite;
}

.continue-press {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.28rem;
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(1.05rem, 4.5vw, 1.22rem);
  font-style: italic;
  line-height: 1.45;
  letter-spacing: 0.12em;
  text-align: center;
  color: #f2f1ec;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.45));
}

.continue-line {
  display: block;
}

.continue-click {
  display: none;
}

.continue-sub {
  margin-top: 1.15rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: rgba(242, 241, 236, 0.52);
  text-shadow: 0 6px 16px rgba(0, 0, 0, 0.45);
}

.continue.is-opening .continue-door--left {
  transform: rotateY(-108deg);
}

.continue.is-opening .continue-door--right {
  transform: rotateY(108deg);
}

.continue.is-opening .continue-seam {
  animation: continue-seam-flare 0.72s ease forwards;
}

.continue.is-opening .continue-content {
  pointer-events: none;
  animation: continue-float-away 0.55s ease forwards;
}

.continue.is-opening .poster.has-image .poster-img {
  animation: none;
}

body.is-doors-opening .music-btn,
body.is-doors-opening .dots,
body.is-doors-opening .back {
  opacity: 0 !important;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

@keyframes continue-ken {
  from { transform: scale(1.06) translate3d(0, 0, 0); }
  to { transform: scale(1.16) translate3d(0, -2.2%, 0); }
}

@keyframes continue-ring {
  0% {
    transform: scale(0.86);
    opacity: 0.9;
  }
  100% {
    transform: scale(1.38);
    opacity: 0;
  }
}

@keyframes continue-glow {
  0%, 100% { opacity: 0.7; transform: scale(0.96); }
  50% { opacity: 1; transform: scale(1.08); }
}

@keyframes continue-breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.035); }
}

@keyframes continue-hover {
  0%, 100% { transform: translateZ(72px) translateY(0); }
  50% { transform: translateZ(72px) translateY(-7px); }
}

@keyframes continue-float-away {
  0% {
    opacity: 1;
    transform: translateZ(72px);
  }
  100% {
    opacity: 0;
    transform: translateZ(120px) scale(0.98);
  }
}

@keyframes continue-world-bloom {
  0% { filter: brightness(1); }
  22% { filter: brightness(1.3); }
  52% { filter: brightness(1.6); }
  100% {
    filter: none;
    background: #fbf7ee;
  }
}

@keyframes continue-light-bloom {
  0% { opacity: 0; transform: translate(-50%, -50%) scale(0.22); }
  16% { opacity: 0.7; transform: translate(-42%, -56%) scale(0.74); }
  48% { opacity: 0.48; transform: translate(-58%, -46%) scale(1.18); }
  100% { opacity: 0.14; transform: translate(-36%, -62%) scale(2.05); }
}

@keyframes continue-light-shaft {
  0% { opacity: 0; transform: translate(-50%, -50%) rotate(-8deg) scaleX(0.12) scaleY(0.9); }
  14% { opacity: 0.65; transform: translate(-50%, -50%) rotate(-6deg) scaleX(0.55) scaleY(1); }
  42% { opacity: 0.38; transform: translate(-50%, -50%) rotate(-10deg) scaleX(0.92) scaleY(1.04); }
  68% { opacity: 0.5; transform: translate(-50%, -50%) rotate(-5deg) scaleX(1.12) scaleY(1.05); }
  100% { opacity: 0.08; transform: translate(-50%, -50%) rotate(-12deg) scaleX(2.05) scaleY(1.08); }
}

@keyframes continue-light-veils {
  0% { opacity: 0; transform: translate(-50%, -50%) rotate(10deg) scale(0.9); }
  18% { opacity: 0.5; transform: translate(-50%, -50%) rotate(2deg) scale(1); }
  48% { opacity: 0.24; transform: translate(-50%, -50%) rotate(-8deg) scale(1.04); }
  72% { opacity: 0.36; transform: translate(-50%, -50%) rotate(-14deg) scale(1.07); }
  100% { opacity: 0; transform: translate(-50%, -50%) rotate(-22deg) scale(1.12); }
}

@keyframes continue-light-filaments {
  0% { opacity: 0; transform: translate(-50%, -50%) rotate(-16deg) scale(0.92); }
  14% { opacity: 0.8; transform: translate(-50%, -50%) rotate(-7deg) scale(1); }
  36% { opacity: 0.42; transform: translate(-50%, -50%) rotate(2deg) scale(1.03); }
  58% { opacity: 0.72; transform: translate(-50%, -50%) rotate(9deg) scale(1.05); }
  100% { opacity: 0; transform: translate(-50%, -50%) rotate(18deg) scale(1.1); }
}

@keyframes continue-light-beam {
  0% { opacity: 0; transform: rotate(var(--r, 0deg)) scaleX(0.32); }
  14% { opacity: calc(var(--l, 0.5) * 0.4); transform: rotate(calc(var(--r, 0deg) + var(--drift, 2deg) * 0.15)) scaleX(0.72); }
  26% { opacity: calc(var(--l, 0.5) * 0.95); transform: rotate(calc(var(--r, 0deg) + var(--drift, 2deg) * 0.35)) scaleX(calc(var(--s, 1) * 0.94)); }
  42% { opacity: calc(var(--l, 0.5) * 0.52); transform: rotate(calc(var(--r, 0deg) + var(--drift, 2deg) * 0.55)) scaleX(var(--s, 1)); }
  58% { opacity: calc(var(--l, 0.5) * 0.88); transform: rotate(calc(var(--r, 0deg) + var(--drift, 2deg) * 0.75)) scaleX(calc(var(--s, 1) * 1.03)); }
  78% { opacity: calc(var(--l, 0.5) * 0.4); transform: rotate(calc(var(--r, 0deg) + var(--drift, 2deg))) scaleX(calc(var(--s, 1) * 1.06)); }
  100% { opacity: 0; transform: rotate(calc(var(--r, 0deg) + var(--drift, 2deg) * 1.2)) scaleX(calc(var(--s, 1) * 1.1)); }
}

@keyframes continue-light-dust {
  0% { opacity: 0; transform: translate3d(-6px, 12px, 0); }
  22% { opacity: 0.65; transform: translate3d(4px, -4px, 0); }
  62% { opacity: 0.4; transform: translate3d(12px, -16px, 0); }
  100% { opacity: 0; transform: translate3d(22px, -34px, 0); }
}

@keyframes continue-flare {
  0% { opacity: 0; }
  16% { opacity: 0.36; }
  34% { opacity: 0.52; }
  52% { opacity: 0.22; }
  70% { opacity: 0.34; }
  100% { opacity: 0; }
}

@keyframes continue-seam-flare {
  0% {
    opacity: 1;
    width: 1px;
    box-shadow: 0 0 12px rgba(242, 241, 236, 0.28);
  }
  28% {
    opacity: 0.85;
    width: 4px;
    background: #fff;
    box-shadow: 0 0 26px 8px rgba(242, 241, 236, 0.5);
  }
  100% {
    opacity: 0;
    width: 14px;
    box-shadow: 0 0 32px 12px rgba(255, 255, 250, 0.1);
  }
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(1.25rem);
  transition:
    opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.18s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.42s; }

@keyframes plane-drift {
  from { transform: scale(1) translateY(0); }
  to { transform: scale(1.04) translateY(-1.5%); }
}

@keyframes line-grow {
  0%, 100% { transform: scaleX(0.55); opacity: 0.5; }
  50% { transform: scaleX(1); opacity: 1; }
}

@keyframes draw-line {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@keyframes music-spin {
  to { transform: rotate(360deg); }
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-3px); }
  75% { transform: translateX(3px); }
}

/* —— Minimal ornaments —— */
.corners {
  position: absolute;
  inset: 1.15rem 1.05rem;
  pointer-events: none;
  z-index: 0;
}

.corner {
  position: absolute;
  width: 1.35rem;
  height: 1.35rem;
  border-color: var(--ink);
  opacity: 0.22;
}

.corner--tl { top: 0; left: 0; border-top: 1px solid; border-left: 1px solid; }
.corner--tr { top: 0; right: 0; border-top: 1px solid; border-right: 1px solid; }
.corner--br { bottom: 0; right: 0; border-bottom: 1px solid; border-right: 1px solid; }
.corner--bl { bottom: 0; left: 0; border-bottom: 1px solid; border-left: 1px solid; }

.flourish {
  display: grid;
  place-items: center;
  width: min(10rem, 42vw);
  margin: 1.8rem auto 0;
  color: var(--ink);
}

.flourish i {
  display: block;
  width: 100%;
  height: 1px;
  background: currentColor;
  opacity: 0.28;
  transform: scaleX(0);
  transform-origin: center;
}

.flourish.is-drawn i {
  animation: draw-line 1.1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.note {
  margin-top: 1.4rem;
  font-family: "Newsreader", Georgia, serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--muted);
}

.seal-mark {
  display: block;
  width: 4.6rem;
  height: 4.6rem;
  margin: 0 auto 1.1rem;
  border: 1px solid rgba(242, 241, 236, 0.35);
  border-radius: 50%;
}

.seal-mark::after {
  content: "";
  display: block;
  width: 0.55rem;
  height: 0.55rem;
  margin: calc(50% - 0.28rem) auto 0;
  border-radius: 50%;
  background: #f2f1ec;
}

/* Ambient geometry */
.gold-dust {
  position: fixed;
  inset: 0;
  z-index: 40;
  pointer-events: none;
  overflow: hidden;
}

.gold-dust i {
  position: absolute;
  left: 0;
  top: 0;
  width: var(--s, 16px);
  height: var(--s, 16px);
  opacity: 0;
  mix-blend-mode: multiply;
  will-change: transform, opacity;
}

.gold-dust i span {
  display: block;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  animation: balloon-sway var(--sway, 2.8s) ease-in-out infinite alternate;
  animation-delay: var(--sway-delay, 0s);
}

.gold-dust i.is-candy span {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23141414' stroke-opacity='.42' stroke-width='1.4' d='M12 19S5 13.4 5 9.1C5 6.8 6.8 5 9 5c1.3 0 2.4.7 3 1.7.6-1 1.7-1.7 3-1.7 2.2 0 4 1.8 4 4.1C19 13.4 12 19 12 19z'/%3E%3C/svg%3E");
}

.gold-dust i.is-spark span {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='2.1' fill='%23141414' fill-opacity='.32'/%3E%3Cpath fill='none' stroke='%23141414' stroke-opacity='.28' stroke-width='1.2' d='M12 3v4M12 17v4M3 12h4M17 12h4'/%3E%3C/svg%3E");
}

.gold-dust i.is-wobble span {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='8' y='8' width='8' height='8' fill='none' stroke='%23141414' stroke-opacity='.38' stroke-width='1.3' transform='rotate(45 12 12)'/%3E%3C/svg%3E");
}

.gold-dust i.is-tail span {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='8.5' r='3.2' fill='none' stroke='%23141414' stroke-opacity='.4' stroke-width='1.3'/%3E%3Cpath fill='none' stroke='%23141414' stroke-opacity='.28' stroke-width='1.2' d='M12 12v8'/%3E%3C/svg%3E");
}

@keyframes balloon-sway {
  from { transform: translateX(-0.28rem) rotate(-5deg); }
  to { transform: translateX(0.32rem) rotate(6deg); }
}

/* Photos */
.interlude {
  padding: 0;
  justify-content: stretch;
  align-items: stretch;
}

.interlude--wide .photo-card {
  position: relative;
  min-height: 0;
  margin: 0;
}

.interlude--wide img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.photo-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 2.4rem 1.4rem 1.2rem;
  background: linear-gradient(180deg, transparent, rgba(20, 20, 20, 0.62));
  color: #f2f1ec;
}

.photo-quote {
  font-family: "Newsreader", Georgia, serif;
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.5;
}

.photo-sub {
  margin-top: 0.45rem;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.7;
}

.polaroid-board {
  width: min(100%, 22.5rem);
  min-height: 0;
  margin: 0 auto;
  padding: 3rem 0.6rem 2.2rem;
}

.polaroid-stage {
  position: relative;
  width: 100%;
  height: 24.2rem;
}

.polaroid {
  position: absolute;
  appearance: none;
  -webkit-appearance: none;
  display: block;
  margin: 0;
  border: 0;
  background: linear-gradient(180deg, #fffdf8 0%, #f4f1ea 100%);
  padding: 0.4rem 0.4rem 1.55rem;
  box-shadow:
    0 0 0 1px rgba(20, 20, 20, 0.1),
    0 14px 28px rgba(20, 20, 20, 0.1);
  transform: rotate(var(--r, 0deg));
  transform-origin: 50% 70%;
  cursor: pointer;
  touch-action: manipulation;
  transition:
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.55s ease;
}

.polaroid img {
  display: block;
  width: 100%;
  object-fit: cover;
  background: #e4e2da;
}

.polaroid--wide {
  width: 63%;
  left: 4%;
  top: 14%;
  z-index: 1;
  --r: -6.5deg;
}

.polaroid--wide img {
  aspect-ratio: 4 / 3;
  object-position: 42% 58%;
}

.polaroid--back {
  width: 47%;
  right: 3%;
  top: 4%;
  z-index: 2;
  --r: 6.5deg;
}

.polaroid--front {
  width: 54%;
  left: 23%;
  top: 28%;
  z-index: 3;
  --r: -2deg;
}

.polaroid--back img,
.polaroid--front img {
  aspect-ratio: 3 / 4;
  object-position: center 26%;
}

.polaroid-board.visible .polaroid {
  animation: polaroid-settle 2.35s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.polaroid-board.visible .polaroid--wide { animation-delay: 0.2s; }
.polaroid-board.visible .polaroid--back { animation-delay: 1.25s; }
.polaroid-board.visible .polaroid--front { animation-delay: 2.35s; }

.polaroid-board.is-shuffled .polaroid {
  animation: none;
  opacity: 1;
}

@keyframes polaroid-settle {
  from {
    opacity: 0;
    transform: rotate(calc(var(--r, 0deg) * 1.8)) translateY(1.1rem) scale(0.96);
  }
  to {
    opacity: 1;
    transform: rotate(var(--r, 0deg)) translateY(0) scale(1);
  }
}

.polaroid.is-up {
  z-index: 8;
  transform: rotate(var(--r, 0deg)) translateY(-0.5rem) scale(1.05);
  box-shadow:
    0 0 0 1px rgba(20, 20, 20, 0.16),
    0 22px 42px rgba(20, 20, 20, 0.16);
}

.interlude--polaroid .photo-caption {
  position: relative;
  padding: 1.4rem 0 0;
  background: none;
  color: var(--ink);
}

.interlude--polaroid .photo-sub {
  opacity: 0.45;
}

/* Info strip */
.strip {
  width: min(100%, 22rem);
  display: grid;
  gap: 1.35rem;
  text-align: left;
}

.strip-item {
  display: grid;
  gap: 0.35rem;
  padding-bottom: 1.15rem;
  border-bottom: 1px solid var(--line);
}

.kicker {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--faint);
}

.strip-item strong {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.35;
}

.strip-item > span {
  font-size: 0.82rem;
  color: var(--muted);
}

.mini-cal {
  width: 100%;
}

.cal-title {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.55rem;
}

.cal-week,
.cal-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.15rem;
  text-align: center;
}

.cal-week {
  margin-bottom: 0.25rem;
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  color: var(--faint);
}

.cal-days span {
  min-height: 1.55rem;
  display: grid;
  place-items: center;
  font-size: 0.72rem;
  color: var(--muted);
}

.cal-days .is-day {
  background: var(--ink);
  color: var(--bg);
  font-weight: 700;
}

.venue-map {
  appearance: none;
  -webkit-appearance: none;
  position: relative;
  display: block;
  width: 100%;
  height: 11.5rem;
  margin: 0.35rem 0 0.35rem;
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--line);
  background-color: #e8eaed;
  background-image: url("../assets/venue-map.jpg?v=20260816d");
  background-size: cover;
  background-position: center;
  cursor: pointer;
  color: inherit;
  font: inherit;
  text-align: left;
}

.venue-map .map-pin,
.venue-map em {
  pointer-events: none;
}

.map-pin {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1.15rem;
  height: 1.15rem;
  border: 2px solid #fff;
  border-radius: 50% 50% 50% 0;
  background: #e53935;
  transform: translate(-50%, -88%) rotate(-45deg);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.28);
}

.map-pin::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0.28rem;
  height: 0.28rem;
  border-radius: 50%;
  background: #fff;
  transform: translate(-50%, -50%);
}

.venue-map em {
  position: absolute;
  left: 0.5rem;
  bottom: 0.45rem;
  padding: 0.2rem 0.55rem;
  font-family: inherit;
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #141414;
  background: #fff;
}

.venue-addr {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: var(--muted);
}

.copy-addr {
  appearance: none;
  border: 0;
  padding: 0;
  background: none;
  color: var(--ink);
  font-family: inherit;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.divider-page {
  gap: 0.85rem;
}

.divider-word {
  font-size: clamp(1.8rem, 8vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.divider-en {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--faint);
}

.flow-day {
  justify-content: flex-start;
  padding-top: 3.3rem;
}

.flow-day-head {
  width: min(100%, 22rem);
}

.flow-day-head .display {
  margin-bottom: 0.7rem;
}

.flow-day-note {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 1.6rem;
}

.flow-day-list {
  list-style: none;
  width: min(100%, 22rem);
}

.flow-day-list li {
  display: grid;
  grid-template-columns: 3.6rem 1fr;
  gap: 1rem;
  padding: 0.95rem 0;
  border-top: 1px solid var(--line);
  text-align: left;
}

.flow-day-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.flow-day-time {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.flow-day-list h3 {
  font-size: 1.05rem;
  font-weight: 700;
}

.flow-day-list p {
  margin-top: 0.2rem;
  font-size: 0.82rem;
  color: var(--muted);
}

.flow-day-list .is-now .flow-day-time,
.flow-day-list .is-now h3 {
  color: var(--accent);
}

.continue-light,
.continue-flare {
  display: none;
}

body[data-theme="modern"] .live-bubble {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(20, 20, 20, 0.55);
  color: #f2f1ec;
}

body[data-theme="modern"] .live-bubble.is-now {
  background: rgba(20, 20, 20, 0.72);
  border-color: rgba(255, 255, 255, 0.28);
}

body[data-theme="modern"] .live-name,
body[data-theme="modern"] .live-text {
  color: #f2f1ec;
  text-shadow: none;
}

body[data-theme="modern"] .live-fx-btn {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(20, 20, 20, 0.55);
  color: #f2f1ec;
  border-radius: 0;
}

@media (min-width: 768px) {
  .back {
    left: 1.4rem;
  }

  .music-btn {
    right: 1.4rem;
  }
}

@media (min-width: 721px) {
  .continue-touch { display: none; }
  .continue-click { display: inline; }
}

@media (prefers-reduced-motion: reduce) {
  .music-btn.is-on .music-icon,
  .continue.in-view .poster.has-image .poster-img,
  .continue.in-view .continue-press,
  .continue.in-view .continue-pulse,
  .continue.in-view .continue-pulse--lag,
  .continue.in-view .continue-glow,
  .continue.is-opening .continue-world,
  .continue.is-opening .continue-light-bloom,
  .continue.is-opening .continue-light-shaft,
  .continue.is-opening .continue-light-veils,
  .continue.is-opening .continue-light-filaments,
  .continue.is-opening .continue-light-beam,
  .continue.is-opening .continue-light-dust,
  .continue.is-opening .continue-flare,
  .continue.is-opening .continue-seam,
  .continue.in-view .continue-content,
  .continue.is-opening .continue-content {
    animation: none;
  }

  .continue-door {
    transition: none;
  }

  .gold-dust {
    display: none;
  }
}
