:root {
  --red: #a51626;
  --red-dark: #68101a;
  --green: #123d2d;
  --green-light: #1f6548;
  --cream: #fff7e8;
  --gold: #d9a633;
  --ink: #241710;
  --muted: #6c5b50;
  --white: #fff;
  --shadow: 0 24px 60px rgba(41, 16, 11, .22);
}

* { box-sizing: border-box; }

html { min-height: 100%; }

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--ink);
  font-family: "DM Sans", system-ui, sans-serif;
  background:
    radial-gradient(circle at 10% 20%, rgba(255,255,255,.13) 0 2px, transparent 3px),
    radial-gradient(circle at 80% 40%, rgba(255,255,255,.1) 0 3px, transparent 4px),
    linear-gradient(135deg, #72131d 0%, #a71929 47%, #6b101a 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .2;
  background-image: repeating-linear-gradient(45deg, transparent 0 40px, rgba(255,255,255,.08) 41px 43px);
}

.site-header,
footer {
  position: relative;
  z-index: 5;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header { padding: 22px 0; }

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  color: inherit;
  text-decoration: none;
  font: 700 28px "Mountains of Christmas", cursive;
  letter-spacing: .4px;
}

.clock-mark {
  display: grid;
  place-items: center;
  width: 42px;
  aspect-ratio: 1;
  border: 2px solid var(--gold);
  border-radius: 50%;
  font: 700 15px "DM Sans", sans-serif;
  background: rgba(17, 61, 45, .85);
  box-shadow: inset 0 0 0 4px rgba(255,255,255,.12);
}

.private-badge,
.session-note {
  padding: 8px 13px;
  border: 1px solid rgba(255,255,255,.26);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  background: rgba(39, 10, 13, .24);
}

main {
  position: relative;
  z-index: 2;
  min-height: calc(100vh - 144px);
  display: grid;
  align-items: center;
}

.screen {
  display: none;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 22px 0 42px;
  animation: rise .5s ease both;
}

.screen.active { display: block; }

.panel {
  border: 1px solid rgba(255,255,255,.64);
  border-radius: 28px;
  background: rgba(255, 247, 232, .96);
  box-shadow: var(--shadow);
}

.gate-panel {
  width: min(650px, 100%);
  margin: 5vh auto;
  padding: clamp(32px, 6vw, 72px);
  text-align: center;
}

.eyebrow {
  margin-bottom: 10px;
  color: var(--green-light);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

h1, h2 {
  margin: 0;
  color: var(--red-dark);
  font-family: "Mountains of Christmas", cursive;
  line-height: .98;
}

h1 { font-size: clamp(48px, 8vw, 82px); }
h2 { font-size: clamp(40px, 5vw, 62px); }
h3 { margin: 0 0 4px; font-size: 17px; }

p { line-height: 1.6; }
.lead { font-size: 18px; color: var(--muted); }

.access-form {
  margin: 28px auto 0;
  max-width: 440px;
  text-align: left;
}

label {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 700;
}

.input-row { display: flex; gap: 9px; }

input {
  min-width: 0;
  flex: 1;
  padding: 14px 16px;
  border: 1px solid #d8c8b8;
  border-radius: 12px;
  outline: none;
  font: inherit;
  background: #fff;
}

input:focus {
  border-color: var(--green-light);
  box-shadow: 0 0 0 3px rgba(31, 101, 72, .15);
}

.button {
  border: 0;
  border-radius: 12px;
  padding: 13px 18px;
  cursor: pointer;
  font: 700 14px "DM Sans", sans-serif;
  transition: transform .16s ease, box-shadow .16s ease, opacity .16s ease;
}

.button:hover:not(:disabled) { transform: translateY(-2px); }
.button:disabled { cursor: not-allowed; opacity: .45; }
.button.primary { color: #fff; background: linear-gradient(135deg, var(--red), var(--red-dark)); box-shadow: 0 9px 20px rgba(104,16,26,.22); }
.button.secondary { color: #fff; background: linear-gradient(135deg, var(--green-light), var(--green)); }
.button.ghost { color: var(--green); border: 1px solid #b9cbbf; background: transparent; }
.button.wide { width: 100%; margin-top: 8px; }

.fine-print, .form-error { font-size: 12px; }
.fine-print { color: var(--muted); }
.form-error { min-height: 18px; margin: 7px 0 0; color: var(--red); }

.experience-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  align-items: center;
  gap: clamp(22px, 5vw, 70px);
}

.jingle-stage {
  position: relative;
  min-height: 650px;
  display: grid;
  place-items: end center;
}

.glow {
  position: absolute;
  width: 80%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 217, 113, .75), rgba(255, 217, 113, 0) 68%);
  filter: blur(12px);
}

.jingle {
  position: relative;
  z-index: 2;
  width: min(100%, 460px);
  max-height: 630px;
  object-fit: contain;
  transform-origin: bottom center;
  animation: jingle-bob 3.6s ease-in-out infinite;
}

.speech-bubble {
  position: absolute;
  z-index: 3;
  top: 11%;
  right: auto;
  left: -8%;
  max-width: 230px;
  padding: 17px 19px;
  border-radius: 19px 19px 19px 4px;
  color: var(--green);
  font-weight: 700;
  line-height: 1.4;
  background: var(--cream);
  box-shadow: 0 12px 30px rgba(40, 11, 15, .2);
}

.setup-panel { padding: clamp(26px, 4vw, 48px); }
.setup-panel > p { margin-bottom: 24px; color: var(--muted); }

.check-card {
  margin: 13px 0;
  padding: 18px;
  border: 1px solid #ead9c8;
  border-radius: 17px;
  background: rgba(255,255,255,.62);
}

.check-heading {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 15px;
}

.check-heading p { margin: 0; color: var(--muted); font-size: 13px; }

.step-number {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 35px;
  aspect-ratio: 1;
  border-radius: 50%;
  color: #fff;
  font-weight: 800;
  background: var(--red);
}

.status { display: inline-block; margin-left: 8px; color: var(--green-light); font-size: 12px; font-weight: 700; }
.button-group { display: flex; gap: 8px; flex-wrap: wrap; }

.meter {
  height: 9px;
  margin: 5px 0 13px;
  overflow: hidden;
  border-radius: 999px;
  background: #e9ded2;
}

.meter span {
  display: block;
  width: 3%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green-light), var(--gold), var(--red));
  transition: width .08s linear;
}

.text-button {
  display: block;
  margin: 13px auto 0;
  padding: 5px;
  border: 0;
  cursor: pointer;
  color: var(--muted);
  font: 600 12px "DM Sans", sans-serif;
  text-decoration: underline;
  background: transparent;
}

.countdown-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  align-items: center;
  gap: 30px;
  max-width: 920px;
  margin: 0 auto;
}

.mini-jingle img {
  display: block;
  width: 100%;
  max-height: 540px;
  object-fit: contain;
  animation: jingle-bob 3.6s ease-in-out infinite;
}

.countdown-panel { padding: clamp(35px, 6vw, 70px); text-align: center; }

.clock {
  display: grid;
  place-items: center;
  width: min(280px, 72vw);
  aspect-ratio: 1;
  margin: 28px auto;
  border: 11px solid var(--gold);
  border-radius: 50%;
  color: var(--cream);
  background:
    repeating-conic-gradient(from -1deg, rgba(255,255,255,.35) 0 1deg, transparent 1deg 30deg),
    radial-gradient(circle, var(--green-light), var(--green));
  box-shadow: inset 0 0 0 8px rgba(255,255,255,.15), 0 18px 40px rgba(18,61,45,.28);
}

.clock span { display: block; font-size: clamp(62px, 9vw, 92px); font-weight: 800; line-height: 1; }
.clock small { display: block; margin-top: -55px; font-weight: 700; }

.progress { height: 8px; overflow: hidden; border-radius: 99px; background: #eadfce; }
.progress span { display: block; width: 0; height: 100%; background: linear-gradient(90deg, var(--green-light), var(--gold), var(--red)); }

.santa-shell {
  padding: clamp(18px, 3vw, 34px);
  border-radius: 28px;
  background: rgba(255,247,232,.98);
  box-shadow: var(--shadow);
}

.santa-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.session-note { color: var(--green); border-color: #cdd8ce; background: #f4f7f2; }
.session-note span { display: inline-block; width: 8px; height: 8px; margin-right: 5px; border-radius: 50%; background: #20a15c; }

.santa-frame {
  min-height: 540px;
  overflow: hidden;
  border: 5px solid var(--green);
  border-radius: 22px;
  background: #15110f;
}

.santa-frame iframe {
  display: block;
  width: 100%;
  min-height: 540px;
  border: 0;
}

.safety-strip {
  margin-top: 17px;
  padding: 14px 17px;
  border-radius: 12px;
  color: #5b4b3f;
  font-size: 13px;
  line-height: 1.55;
  background: #f2e6d4;
}

footer { padding: 15px 0 24px; font-size: 12px; opacity: .78; }

@keyframes rise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes jingle-bob {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-10px) rotate(1deg); }
}

@media (max-width: 820px) {
  .experience-grid { grid-template-columns: 1fr; }
  .jingle-stage { min-height: 420px; }
  .jingle { max-height: 440px; }
  .speech-bubble { top: 5%; right: 3%; left: auto; }
  .countdown-layout { grid-template-columns: 1fr; }
  .mini-jingle { display: none; }
  .santa-heading { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 560px) {
  .private-badge { display: none; }
  .site-header, footer, .screen { width: min(100% - 24px, 1180px); }
  .input-row { flex-direction: column; }
  .jingle-stage { min-height: 360px; }
  .jingle { max-height: 380px; }
  .speech-bubble { top: 2%; max-width: 200px; font-size: 13px; }
  .santa-frame, .santa-frame iframe { min-height: 460px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
