:root {
  --red: #d80f1f;
  --red-dark: #9d0714;
  --blue: #0d4da2;
  --blue-dark: #071a33;
  --discord: #5865f2;
  --gold: #f5c044;
  --snow: #f7fbff;
  --ink: #172033;
  --shadow: 0 20px 60px rgba(3, 15, 30, 0.24);
  --font-body: "Nunito Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-heading: "Fraunces", Georgia, serif;
  --font-hand: "Reenie Beanie", "Comic Sans MS", cursive;
  --container: 1180px;
  --frosty-garland: url("https://frostysfuncenter.com/files/frosty/1782602173771-frostys-garland-strip-v1.webp");
  --frosty-wood-tile: url("https://frostysfuncenter.com/files/frosty/1782604383581-tileable_wood_texture.webp");
  --frosty-wood: url("https://frostysfuncenter.com/files/frosty/1782650545334-wood-panel.jpg");
  --frosty-lights: url("https://frostysfuncenter.com/files/frosty/1782607270588-lights-strand.png");
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: white;
  background: var(--blue-dark);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

p, h1, h2 {
  margin: 0;
}

h1, h2 {
  font-family: var(--font-heading);
  line-height: 1.02;
  letter-spacing: 0;
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.icon-symbols {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.social-icon {
  width: 1.18em;
  height: 1.18em;
  flex: 0 0 auto;
  display: inline-block;
  fill: currentColor;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  padding: 14px 0;
  pointer-events: none;
}

.header-shell {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 12px;
  color: white;
  background: rgba(7, 26, 51, 0.52);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow: 0 12px 38px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(16px);
  pointer-events: auto;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: white;
  text-decoration: none;
}

.site-logo-mark {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  overflow: hidden;
  background: white;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
}

.site-logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-logo-name,
.site-logo-place {
  display: block;
}

.site-logo-name {
  font-weight: 1000;
  line-height: 1.05;
}

.site-logo-place {
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 1000;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-menu a,
.footer-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 9px 12px;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  font-weight: 1000;
  text-decoration: none;
}

.nav-menu a:hover,
.nav-menu a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  outline: none;
}

.simple-hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  background: var(--blue-dark);
}

.simple-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
}

.simple-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(4, 15, 30, 0.88) 0%, rgba(4, 15, 30, 0.68) 38%, rgba(4, 15, 30, 0.18) 72%, rgba(4, 15, 30, 0.32) 100%),
    linear-gradient(180deg, rgba(4, 15, 30, 0.18) 0%, rgba(4, 15, 30, 0.7) 100%);
}

.hero-content {
  width: min(680px, 100%);
  padding: 150px 0 112px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 1000;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 3px;
  background: currentColor;
}

.hero-content h1 {
  max-width: 720px;
  font-size: clamp(3rem, 8vw, 6.5rem);
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.36);
}

.hero-content p:not(.eyebrow) {
  max-width: 610px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.08rem, 2.2vw, 1.32rem);
  font-weight: 800;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 13px 18px;
  color: white;
  border: 2px solid transparent;
  border-radius: 8px;
  font-weight: 1000;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.btn-primary {
  background: var(--red);
  border-color: var(--red);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--red-dark);
  border-color: var(--red-dark);
}

.btn-discord {
  background: var(--discord);
  border-color: var(--discord);
}

.btn-light {
  color: var(--blue-dark);
  background: white;
  border-color: white;
}

.btn-gold {
  color: #17364a;
  background: var(--gold);
  border-color: var(--gold);
}

.site-footer {
  position: relative;
  padding: clamp(170px, 26vw, 260px) 0 36px;
  color: rgba(255, 255, 255, 0.82);
  background-color: #08090c;
  background-image:
    linear-gradient(180deg, rgba(6, 7, 10, 0.46) 0%, rgba(6, 7, 10, 0.32) 40%, rgba(6, 7, 10, 0.82) 72%, rgba(6, 7, 10, 0.98) 100%),
    url("https://frostysfuncenter.com/files/frosty/1782606341618-bg-footer.jpg");
  background-position: center, center 58%;
  background-repeat: no-repeat, no-repeat;
  background-size: cover, 100% auto;
}

.footer-garland {
  position: relative;
  z-index: 4;
  height: clamp(56px, 5vw, 82px);
  margin-top: clamp(-60px, -4.5vw, -40px);
  margin-bottom: clamp(-46px, -3.6vw, -30px);
  background-image: var(--frosty-garland);
  background-position: center;
  background-repeat: repeat-x;
  background-size: auto 100%;
  filter: drop-shadow(0 8px 14px rgba(3, 9, 20, 0.22));
  pointer-events: none;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: clamp(16px, 4vw, 44px);
}

.footer-logo {
  display: flex;
  justify-self: start;
}

.footer-sign {
  width: clamp(150px, 17vw, 196px);
  background: white;
  border-radius: 6px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
}

.footer-message {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  text-align: center;
}

.footer-snowflake {
  color: #e0bd6e;
  font-size: 1.15rem;
  line-height: 1;
  opacity: 0.92;
}

.footer-tagline {
  position: relative;
  max-width: 440px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.06rem;
  line-height: 1.42;
  text-wrap: balance;
}

.footer-tagline::before,
.footer-tagline::after {
  content: "";
  position: absolute;
  top: 0.72em;
  width: clamp(22px, 4vw, 58px);
  height: 1px;
}

.footer-tagline::before {
  right: 100%;
  margin-right: 18px;
  background: linear-gradient(90deg, transparent, rgba(224, 189, 110, 0.85));
}

.footer-tagline::after {
  left: 100%;
  margin-left: 18px;
  background: linear-gradient(90deg, rgba(224, 189, 110, 0.85), transparent);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  justify-self: end;
  gap: 10px;
}

.footer-links a {
  min-width: auto;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 0.96rem;
}

.footer-links .social-icon {
  width: 1.1rem;
  height: 1.1rem;
}

@media (max-width: 760px) {
  .footer-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 18px;
  }

  .footer-logo,
  .footer-links {
    justify-self: center;
  }

  .footer-links {
    justify-content: center;
  }
}

.footer-bottom {
  display: none;
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

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

  .header-shell {
    min-height: 62px;
  }

  .site-logo-mark {
    width: 40px;
    height: 40px;
  }

  .site-logo-name {
    font-size: 0.94rem;
  }

  .nav-menu a:not(.nav-icon-link) span {
    display: none;
  }

  .nav-menu a {
    width: 42px;
    padding-inline: 0;
  }

  .simple-hero::before {
    background-position: 62% center;
  }

  .simple-hero::after {
    background:
      linear-gradient(180deg, rgba(4, 15, 30, 0.54) 0%, rgba(4, 15, 30, 0.86) 58%, rgba(4, 15, 30, 0.96) 100%);
  }

  .hero-content {
    padding: 128px 0 72px;
  }

  .hero-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }


  .site-footer {
    padding-top: 82vw;
    background-position: center, center top;
  }
}

/* Home V2 candidate */
body:has(.home-v2) {
  background: #030914;
  --font-body: "Lexend", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-heading: "Lexend", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-hand: "Reenie Beanie", "Comic Sans MS", cursive;
  overflow-x: clip;
}

body:has(.home-v2) .site-header {
  display: none;
}

.home-v2 {
  color: white;
  background: #030914;
  font-family: var(--font-body);
  overflow: hidden;
}

.v2-hero {
  position: relative;
  min-height: 100svh;
  isolation: isolate;
  overflow: hidden;
  background: #030914;
}

.v2-hero::before,
.v2-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
}

.v2-hero::before {
  background-image: var(--v2-hero-image);
  background-size: cover;
  background-position: 50% top;
  filter: saturate(1.08) contrast(1.04);
}

.v2-hero::after {
  z-index: -1;
  background:
    radial-gradient(circle at 28% 38%, rgba(3, 9, 20, 0.32) 0%, rgba(3, 9, 20, 0.18) 31%, rgba(3, 9, 20, 0) 58%),
    linear-gradient(90deg, rgba(3, 9, 20, 0.34) 0%, rgba(3, 9, 20, 0.12) 40%, rgba(3, 9, 20, 0) 72%),
    linear-gradient(180deg, rgba(3, 9, 20, 0.04) 0%, rgba(3, 9, 20, 0) 58%, rgba(3, 9, 20, 0.36) 100%);
}

.v2-nav {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-top: 44px;
}

.v2-brand {
  display: inline-flex;
  align-items: center;
  color: white;
  text-decoration: none;
}

.v2-brand-logo {
  width: clamp(152px, 15vw, 238px);
  height: auto;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.34));
}

.v2-nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 1rem;
}

.v2-nav-links a {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
  text-decoration: none;
}

.v2-nav-links a:hover,
.v2-nav-links a:focus-visible {
  color: white;
  outline: none;
}

.v2-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(3, 9, 20, 0.16);
  backdrop-filter: blur(8px);
}

.v2-social-link svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: currentColor;
}

.v2-social-link:hover,
.v2-social-link:focus-visible {
  background: rgba(255, 255, 255, 0.14);
}

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

.v2-hero-inner {
  position: relative;
  z-index: 1;
  min-height: calc(100svh - 86px);
  display: flex;
  align-items: flex-start;
  padding: clamp(72px, 10vh, 112px) 0 clamp(200px, 23vh, 268px);
}

.v2-copy {
  width: min(960px, 100%);
  min-width: 0;
}

.v2-copy h1 {
  display: grid;
  gap: 6px;
  max-width: 960px;
  font-family: var(--font-body);
  font-size: clamp(4.2rem, 5.8vw, 6.45rem);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.03;
  text-shadow:
    0 2px 4px rgba(0, 0, 0, 0.32),
    0 16px 38px rgba(0, 0, 0, 0.34);
}

.v2-copy h1 span {
  white-space: nowrap;
}

.v2-copy h1::after {
  content: "";
  display: block;
  width: 132px;
  height: 3px;
  margin-top: 28px;
  background: var(--red);
}

.v2-subhead {
  max-width: 780px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.24rem;
  font-weight: 400;
  line-height: 1.5;
  text-wrap: balance;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.32);
}

.v2-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.v2-laser-show {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  mix-blend-mode: screen;
  transition: opacity 0.28s ease-in-out;
  -webkit-mask-image: radial-gradient(ellipse 58% 48% at 34% 50%, transparent 0 36%, rgba(0, 0, 0, 0.22) 50%, #000 68%);
  mask-image: radial-gradient(ellipse 58% 48% at 34% 50%, transparent 0 36%, rgba(0, 0, 0, 0.22) 50%, #000 68%);
}

.home-v2.is-light-show-on .v2-laser-show {
  opacity: 1;
}

.v2-laser-show::before {
  content: "";
  position: absolute;
  inset: -18%;
  background:
    radial-gradient(circle, rgba(255, 42, 88, 0.96) 0 2px, rgba(255, 42, 88, 0.3) 2.8px, transparent 5px),
    radial-gradient(circle, rgba(34, 255, 103, 0.9) 0 1.8px, rgba(34, 255, 103, 0.25) 2.7px, transparent 4.6px),
    radial-gradient(circle, rgba(255, 84, 126, 0.7) 0 1.2px, transparent 3.8px);
  background-position: 8px 22px, 92px 58px, 156px 4px;
  background-size: 187px 143px, 229px 173px, 151px 211px;
  filter:
    drop-shadow(0 0 7px rgba(255, 35, 86, 0.75))
    drop-shadow(0 0 6px rgba(34, 255, 103, 0.62));
  opacity: 0.74;
  animation: v2-light-dots-c 13s linear infinite;
}

.v2-laser-dots {
  position: absolute;
  inset: -18%;
  display: block;
}

.v2-laser-dots-a {
  background-image:
    radial-gradient(circle, rgba(255, 37, 89, 0.98) 0 2.4px, rgba(255, 37, 89, 0.28) 3.1px, transparent 5px),
    radial-gradient(circle, rgba(36, 255, 104, 0.98) 0 1.8px, rgba(36, 255, 104, 0.28) 2.6px, transparent 4.5px),
    radial-gradient(circle, rgba(255, 40, 99, 0.78) 0 1.3px, transparent 4px);
  background-position: 0 0, 48px 31px, 118px 76px;
  background-size: 163px 121px, 197px 157px, 137px 189px;
  filter:
    drop-shadow(0 0 5px rgba(255, 28, 92, 0.85))
    drop-shadow(0 0 4px rgba(42, 255, 114, 0.72));
  animation: v2-laser-drift-a 16s linear infinite;
}

.v2-laser-dots-b {
  background-image:
    radial-gradient(circle, rgba(255, 20, 94, 0.95) 0 1.8px, rgba(255, 20, 94, 0.2) 2.7px, transparent 4.8px),
    radial-gradient(circle, rgba(37, 255, 99, 0.86) 0 1.7px, rgba(37, 255, 99, 0.2) 2.5px, transparent 4.2px),
    radial-gradient(circle, rgba(44, 255, 112, 0.7) 0 1.1px, transparent 3.6px);
  background-position: 72px 18px, 19px 89px, 136px 51px;
  background-size: 113px 151px, 181px 127px, 241px 193px;
  filter:
    drop-shadow(0 0 6px rgba(255, 20, 94, 0.8))
    drop-shadow(0 0 5px rgba(37, 255, 99, 0.65));
  opacity: 0.9;
  animation: v2-laser-drift-b 19s linear infinite;
}

.v2-light-toggle {
  position: absolute;
  right: clamp(18px, 4.2vw, 58px);
  bottom: clamp(26px, 6vh, 66px);
  z-index: 4;
  width: clamp(146px, 16vw, 210px);
  height: clamp(58px, 6vw, 76px);
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #102846;
  cursor: pointer;
  font: inherit;
  transform: rotate(-2deg);
  touch-action: manipulation;
  user-select: none;
  -webkit-user-select: none;
  transition-property: all;
  transition-duration: 0.16s;
  transition-timing-function: ease-in-out;
  -webkit-tap-highlight-color: transparent;
}

.v2-light-toggle * {
  pointer-events: none;
}

.v2-light-toggle:hover,
.v2-light-toggle:focus-visible {
  filter: brightness(1.04);
}

.v2-light-toggle:focus-visible {
  outline: 3px solid #ffcf4e;
  outline-offset: 6px;
}

.v2-light-toggle:active {
  transform: rotate(-2deg) scale(0.95);
}

.v2-light-toggle-shadow,
.v2-light-toggle-edge,
.v2-light-toggle-front {
  position: absolute;
  inset: 0;
  border-radius: inherit;
}

.v2-light-toggle-shadow {
  top: 10px;
  background: rgba(35, 14, 0, 0.36);
  filter: blur(8px);
}

.v2-light-toggle-edge {
  background:
    linear-gradient(90deg, #b51416, #fff4d6 17%, #d91b1d 32%, #fff0cd 50%, #c91517 68%, #fff3d4 84%, #a70e12),
    #c91517;
  box-shadow:
    0 8px 0 #6f2108,
    0 14px 20px rgba(2, 7, 18, 0.28);
}

.v2-light-toggle-front {
  inset: 5px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.34), transparent 42%),
    linear-gradient(180deg, #ffe07a, #f5ad2e);
  border: 2px solid rgba(255, 255, 255, 0.78);
  box-shadow:
    0 5px 0 rgba(128, 64, 0, 0.5),
    0 0 0 2px rgba(88, 39, 0, 0.18) inset;
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.7vw, 1.32rem);
  font-weight: 1000;
  letter-spacing: 0;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.58);
  transform: translateY(-7px);
  transition-property: all;
  transition-duration: 0.16s;
  transition-timing-function: ease-in-out;
}

.v2-light-toggle:hover .v2-light-toggle-front,
.v2-light-toggle:focus-visible .v2-light-toggle-front {
  transform: translateY(-9px);
}

.v2-light-toggle:active .v2-light-toggle-front {
  transform: translateY(-2px);
}

.v2-light-off-label {
  display: none;
}

.home-v2.is-light-show-on .v2-light-on-label {
  display: none;
}

.home-v2.is-light-show-on .v2-light-off-label {
  display: inline;
}

.home-v2.is-light-show-on .v2-light-toggle-front {
  color: #ffffff;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), transparent 48%),
    linear-gradient(180deg, #eb1026, #9d0714);
  text-shadow: 0 2px 0 rgba(60, 0, 8, 0.36);
}

.v2-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 34px;
}

@keyframes v2-light-dots-c {
  0% {
    transform: translate3d(-4%, -2%, 0);
  }
  100% {
    transform: translate3d(4%, 2%, 0);
  }
}

@keyframes v2-laser-drift-a {
  0% {
    transform: translate3d(-5%, 1%, 0);
  }
  100% {
    transform: translate3d(5%, -2%, 0);
  }
}

@keyframes v2-laser-drift-b {
  0% {
    transform: translate3d(4%, -3%, 0);
  }
  100% {
    transform: translate3d(-4%, 3%, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .v2-laser-show::before,
  .v2-laser-dots-a,
  .v2-laser-dots-b {
    animation: none;
  }

  .v2-light-toggle,
  .v2-light-toggle-front {
    transition-duration: 0.01ms;
  }
}

.v2-meta p {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 32px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.08rem;
  font-weight: 500;
}

.v2-meta p + p {
  padding-left: 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.28);
}

.v2-meta svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.v2-hero-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  margin-top: 26px;
  padding: 12px 22px;
  color: #0b203f;
  background: var(--gold);
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 1000;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
}

.v2-hero-link:hover,
.v2-hero-link:focus-visible {
  background: #ffd15e;
  outline: none;
}

.v2-free {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 44px;
  min-height: 68px;
  padding: 16px 36px;
  color: white;
  background: linear-gradient(180deg, #e33830, #c52018);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  font-size: 1.16rem;
  font-weight: 700;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.28);
}

.v2-garland-divider {
  position: relative;
  z-index: 4;
  height: clamp(62px, 5.8vw, 92px);
  margin-top: clamp(-62px, -5vw, -44px);
  margin-bottom: -18px;
  background-image: var(--frosty-garland);
  background-position: center;
  background-repeat: repeat-x;
  background-size: auto 100%;
  filter: drop-shadow(0 10px 18px rgba(3, 9, 20, 0.34));
  pointer-events: none;
}

.v2-sticky-notes {
  position: relative;
  z-index: 2;
  padding: 86px 0 42px;
  color: #0b203f;
  background:
    radial-gradient(circle at 14% 18%, rgba(255, 246, 218, 0.42), transparent 32%),
    linear-gradient(180deg, rgba(218, 154, 70, 0.58), rgba(180, 116, 46, 0.64)),
    var(--frosty-wood-tile) center top / 300px auto repeat;
}

.v2-sticky-notes::before,
.v2-flyer-board::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(35, 18, 8, 0.24), transparent 18%, transparent 82%, rgba(35, 18, 8, 0.22)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.14));
}

.v2-note-board {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 0.66fr) minmax(330px, 1fr);
  gap: clamp(18px, 2.2vw, 28px);
  align-items: stretch;
}

.v2-gnome-sticker {
  position: absolute;
  top: clamp(-104px, -8vw, -62px);
  right: clamp(-24px, -2vw, -4px);
  z-index: 3;
  width: clamp(118px, 14vw, 192px);
  transform: rotate(4deg);
  filter: drop-shadow(0 20px 24px rgba(35, 18, 8, 0.3));
  pointer-events: none;
}

.v2-sticky-note,
.v2-golf-note,
.v2-side-paper,
.v2-facebook-note {
  position: relative;
  color: #0b203f;
  border-radius: 6px;
  box-shadow:
    0 22px 36px rgba(28, 14, 5, 0.22),
    0 2px 0 rgba(255, 255, 255, 0.68) inset;
}

.v2-sticky-note,
.v2-golf-note,
.v2-facebook-note {
  text-decoration: none;
}

.v2-sticky-note {
  min-height: 100%;
  padding: clamp(24px, 3vw, 34px);
  background: #fff7c9;
  border: 1px solid rgba(140, 96, 38, 0.24);
  transform: rotate(-1.2deg);
}

.v2-golf-note::before,
.v2-facebook-note::before,
.v2-hand-note::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 50%;
  width: clamp(78px, 26%, 122px);
  height: 27px;
  border-radius: 1px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0.05)),
    rgba(228, 235, 247, 0.7);
  border-left: 1px solid rgba(255, 255, 255, 0.5);
  border-right: 1px solid rgba(90, 104, 128, 0.12);
  box-shadow: 0 6px 13px rgba(8, 30, 70, 0.12);
  transform: translateX(-50%) rotate(-3deg);
}

.v2-sticky-note-blue {
  background: #e8f3ff;
  transform: rotate(1.1deg);
}

.v2-sticky-note span,
.v2-golf-note span,
.v2-facebook-note span {
  display: inline-block;
  color: var(--red);
  font-family: var(--font-hand);
  font-size: 2.08rem;
  line-height: 0.9;
}

.v2-sticky-note h2,
.v2-sticky-note h3,
.v2-golf-note h3,
.v2-facebook-note strong {
  margin: 12px 0 0;
  color: #0b203f;
  font-family: var(--font-body);
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1.08;
}

.v2-sticky-note h2 {
  font-size: clamp(1.9rem, 2.5vw, 2.72rem);
}

.v2-sticky-note h3,
.v2-golf-note h3 {
  font-size: clamp(1.55rem, 2vw, 2.1rem);
}

.v2-sticky-note p,
.v2-golf-note p {
  margin-top: 14px;
  color: #4d5d74;
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.5;
}

.v2-golf-note {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 18px;
  align-items: center;
  padding: 12px;
  background: #fff;
  border: 1px solid rgba(13, 77, 162, 0.14);
  transform: rotate(0.7deg);
}

.v2-golf-note img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 5px solid #f5f8ff;
  border-radius: 6px;
  box-shadow: 0 12px 20px rgba(7, 26, 51, 0.16);
}

.v2-golf-sticker {
  position: relative;
  display: block;
  align-self: center;
  width: min(100%, 360px);
  margin: 4px auto 2px;
  padding: 9px 9px 11px;
  background: #fff;
  border-radius: 16px;
  box-shadow:
    0 20px 38px rgba(8, 6, 3, 0.42),
    0 2px 0 rgba(255, 255, 255, 0.7) inset;
  transform: rotate(-2.4deg);
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}

.v2-golf-sticker:hover,
.v2-golf-sticker:focus-visible {
  transform: rotate(-1deg) translateY(-3px);
  box-shadow: 0 26px 46px rgba(8, 6, 3, 0.5);
  outline: none;
}

.v2-golf-sticker img {
  display: block;
  width: 100%;
  border-radius: 9px;
}

.v2-golf-sticker--cutout {
  width: min(84%, 300px);
  padding: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  filter: drop-shadow(0 18px 22px rgba(8, 6, 3, 0.36));
  transform: rotate(-3.2deg);
}

.v2-golf-sticker--cutout:hover,
.v2-golf-sticker--cutout:focus-visible {
  transform: rotate(-1.4deg) translateY(-4px);
  box-shadow: none;
  filter: drop-shadow(0 24px 28px rgba(8, 6, 3, 0.42));
}

.v2-golf-sticker--cutout:focus-visible {
  outline: 3px solid #ffcf4e;
  outline-offset: 6px;
}

.v2-golf-sticker--cutout img {
  height: auto;
  border-radius: 0;
}

.v2-golf-play {
  position: absolute;
  left: 50%;
  bottom: 14%;
  transform: translate(-50%, 50%) rotate(-2.4deg);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 11px 26px;
  color: #5a2a00;
  background: linear-gradient(180deg, #ffd86b, #f3a72e);
  border: 2px solid #fff;
  border-radius: 999px;
  font-weight: 1000;
  font-size: 1.02rem;
  letter-spacing: 0.01em;
  white-space: nowrap;
  box-shadow: 0 8px 16px rgba(60, 30, 0, 0.34);
}

.v2-golf-sticker:hover .v2-golf-play {
  background: linear-gradient(180deg, #ffe085, #f6b03f);
}

.v2-flyer-board {
  position: relative;
  padding: 42px 0 116px;
  color: #0b203f;
  background:
    linear-gradient(180deg, rgba(54, 30, 7, 0.28), rgba(40, 22, 5, 0.44)),
    var(--frosty-wood) center / cover no-repeat;
}

.v2-board-lights {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  width: clamp(24px, 3.4vw, 44px);
  background: var(--frosty-lights) top center / 100% auto repeat-y;
  filter: drop-shadow(0 0 7px rgba(255, 186, 92, 0.55));
  pointer-events: none;
}

.v2-board-lights-left {
  left: clamp(4px, 1.4vw, 22px);
  transform: scaleX(-1);
}

.v2-board-lights-right {
  right: clamp(4px, 1.4vw, 22px);
}

.v2-flyer-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(330px, 0.76fr);
  gap: clamp(34px, 5vw, 70px);
  align-items: start;
  padding-inline: clamp(20px, 4.5vw, 74px);
}

.v2-paper-sheet,
.v2-side-paper,
.v2-facebook-note,
.v2-hand-note {
  position: relative;
  background: #fff;
  border: 1px solid rgba(82, 54, 28, 0.18);
  border-radius: 6px;
  box-shadow:
    0 28px 58px rgba(28, 14, 5, 0.24),
    0 3px 0 rgba(255, 255, 255, 0.72) inset;
}

.v2-paper-sheet {
  padding: clamp(30px, 4.3vw, 54px);
  transform: rotate(-0.45deg);
  isolation: isolate;
}

.v2-paper-sheet::before {
  content: "";
  position: absolute;
  inset: 10px;
  z-index: -1;
  border: 2px dashed rgba(13, 77, 162, 0.15);
  border-radius: 4px;
  pointer-events: none;
}

.v2-paper-kicker {
  display: inline-flex;
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.v2-paper-sheet h2 {
  max-width: 720px;
  margin-top: 10px;
  color: #0b203f;
  font-family: var(--font-body);
  font-size: clamp(2.5rem, 4.7vw, 4.7rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.02;
}

.v2-paper-intro {
  max-width: 680px;
  margin-top: 18px;
  color: #506078;
  font-size: 1.12rem;
  font-weight: 650;
  line-height: 1.56;
}

.v2-date-pins {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.v2-date-pins p,
.v2-paper-reminders p {
  margin: 0;
  padding: 12px 14px;
  color: #0b203f;
  background: white;
  border: 1px solid rgba(13, 77, 162, 0.12);
  border-radius: 6px;
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.28;
}

.v2-date-pins span {
  display: block;
  margin-bottom: 2px;
  color: var(--red);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.v2-hunt-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.v2-hunt-list li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: start;
  padding-top: 14px;
  border-top: 1px solid rgba(13, 77, 162, 0.12);
}

.v2-hunt-list span {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  background: var(--blue);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 900;
}

.v2-hunt-list p {
  margin: 0;
  color: #526177;
  font-size: 0.98rem;
  font-weight: 650;
  line-height: 1.45;
}

.v2-paper-reminders {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.v2-clue-sheet-header {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(280px, 0.7fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: start;
}

.v2-clue-sheet h2 {
  max-width: 620px;
  margin: 0;
  color: #0b203f;
  font-family: var(--font-body);
  font-size: clamp(2.35rem, 4.2vw, 4.55rem);
  font-weight: 900;
  line-height: 1.08;
}

.v2-clue-intro {
  max-width: 700px;
  margin: 12px 0 0;
  color: #506078;
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.52;
}

.v2-clue-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.v2-clue-list--single {
  grid-template-columns: 1fr;
}

.v2-clue-card {
  min-height: 144px;
  padding: 16px;
  color: #0b203f;
  background: #fbfdff;
  border: 1px solid rgba(13, 77, 162, 0.13);
  border-left: 5px solid rgba(13, 77, 162, 0.42);
  border-radius: 6px;
}

.v2-clue-card--image {
  min-height: 0;
}

.v2-clue-sheet .v2-clue-card {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  gap: 18px clamp(18px, 3vw, 28px);
  align-items: start;
  padding: clamp(16px, 2vw, 22px);
}

.v2-clue-card.is-current {
  background: #fff8d6;
  border-left-color: var(--red);
}

.v2-clue-card--final {
  background: #f1f6ff;
  border-left-color: var(--blue);
}

.v2-clue-date {
  display: block;
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 1000;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.v2-clue-card strong {
  display: block;
  margin-top: 6px;
  color: #0b203f;
  font-size: 1.08rem;
  font-weight: 1000;
}

.v2-clue-card p {
  margin: 8px 0 0;
  color: #526177;
  font-size: 0.93rem;
  font-weight: 650;
  line-height: 1.45;
}

.v2-clue-image-link {
  display: block;
  margin-top: 14px;
  color: inherit;
  border-radius: 6px;
  text-decoration: none;
}

.v2-clue-image-link:focus-visible {
  outline: 3px solid rgba(13, 77, 162, 0.5);
  outline-offset: 3px;
}

.v2-clue-image {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(13, 77, 162, 0.16);
  border-radius: 5px;
  background: white;
}

.v2-clue-transcript {
  display: grid;
  gap: 8px;
  margin-top: 14px;
  padding: 14px;
  color: #273852;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(13, 77, 162, 0.12);
  border-radius: 5px;
}

.v2-clue-transcript p {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 650;
  line-height: 1.48;
}

.v2-clue-transcript b {
  color: #0b203f;
  font-weight: 1000;
}

.v2-clue-sheet .v2-clue-transcript {
  align-self: stretch;
  margin-top: 0;
  padding: clamp(16px, 2vw, 20px);
  background: rgba(255, 255, 255, 0.86);
}

.v2-clue-warning {
  color: var(--red);
}

.v2-clue-sheet .v2-clue-warning {
  max-width: none;
  margin-top: 0;
  padding: 16px 18px;
  background: #fff2f4;
  border: 1px solid rgba(217, 11, 28, 0.14);
  border-left: 5px solid var(--red);
  border-radius: 6px;
}

.v2-cipher-section {
  display: grid;
  gap: clamp(18px, 3vw, 28px);
  margin-top: 24px;
  padding: clamp(20px, 3vw, 32px);
  color: #273852;
  background: #e8f3ff;
  border: 1px solid rgba(13, 77, 162, 0.2);
  border-left: 5px solid var(--blue);
  border-radius: 6px;
}

.v2-cipher-header h3 {
  margin: 7px 0 0;
  color: #0b203f;
  font-size: clamp(1.9rem, 3.8vw, 3.5rem);
  font-weight: 1000;
  line-height: 1.05;
}

.v2-cipher-header > p:not(.v2-clue-date) {
  max-width: 760px;
  margin: 12px 0 0;
  color: #526177;
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.52;
}

.v2-cipher-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.v2-cipher-actions .v2-paper-link {
  margin-top: 20px;
}

.v2-cipher-figure {
  margin: 0;
  padding: clamp(12px, 2vw, 18px);
  background: white;
  border: 1px solid rgba(13, 77, 162, 0.14);
  border-radius: 5px;
  box-shadow: 0 14px 32px rgba(11, 32, 63, 0.1);
}

.v2-cipher-figure figcaption {
  display: flex;
  gap: 8px;
  align-items: baseline;
  margin-bottom: 12px;
  color: #0b203f;
  font-size: 1.12rem;
  font-weight: 1000;
}

.v2-cipher-figure figcaption span {
  color: var(--red);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.v2-cipher-image-link {
  display: block;
  color: inherit;
}

.v2-cipher-image-link:focus-visible {
  outline: 3px solid rgba(13, 77, 162, 0.5);
  outline-offset: 3px;
}

.v2-cipher-image {
  display: block;
  width: 100%;
  height: auto;
  background: white;
}

.v2-cipher-transcript {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(13, 77, 162, 0.16);
  border-radius: 5px;
}

.v2-cipher-transcript summary {
  padding: 16px 18px;
  color: #0b203f;
  font-size: 1rem;
  font-weight: 1000;
  cursor: pointer;
}

.v2-cipher-transcript-body {
  display: grid;
  gap: 24px;
  padding: 2px clamp(16px, 3vw, 28px) clamp(20px, 3vw, 28px);
}

.v2-cipher-transcript-body section {
  display: grid;
  gap: 10px;
}

.v2-cipher-transcript h4 {
  margin: 0;
  color: #0b203f;
  font-size: 1.12rem;
  font-weight: 1000;
  line-height: 1.2;
}

.v2-cipher-transcript p,
.v2-cipher-transcript li {
  color: #526177;
  font-size: 0.96rem;
  font-weight: 650;
  line-height: 1.58;
}

.v2-cipher-transcript p {
  margin: 0;
}

.v2-cipher-choice-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 18px;
  margin: 0;
  padding-left: 1.2rem;
}

.v2-cipher-transcript strong {
  color: #273852;
  font-weight: 1000;
}

.v2-cipher-map-list {
  display: grid;
  gap: 9px;
}

.v2-cipher-map-list p {
  padding: 10px 12px;
  background: #f7fbff;
  border-left: 3px solid rgba(13, 77, 162, 0.35);
}

.v2-hunt-day-sheet {
  display: grid;
  grid-template-columns: minmax(240px, 0.62fr) minmax(360px, 1fr);
  gap: clamp(22px, 4vw, 44px);
  align-items: center;
  margin-top: 24px;
  padding: clamp(18px, 3vw, 30px);
  background: #fff4c9;
  border: 1px solid rgba(165, 119, 0, 0.22);
  border-left: 5px solid var(--gold);
  border-radius: 6px;
}

.v2-hunt-day-copy h3 {
  margin: 7px 0 0;
  color: #0b203f;
  font-size: clamp(1.65rem, 2.8vw, 2.55rem);
  font-weight: 1000;
  line-height: 1.08;
}

.v2-hunt-day-copy > p:not(.v2-clue-date) {
  margin: 12px 0 0;
  color: #526177;
  font-size: 0.98rem;
  font-weight: 650;
  line-height: 1.5;
}

.v2-hunt-day-copy .v2-paper-link {
  margin-top: 20px;
}

.v2-hunt-day-image-link {
  display: block;
  color: inherit;
  background: #ffe9a1;
  border-radius: 5px;
  box-shadow: 0 14px 32px rgba(11, 32, 63, 0.12);
}

.v2-hunt-day-image-link:focus-visible {
  outline: 3px solid rgba(13, 77, 162, 0.5);
  outline-offset: 3px;
}

.v2-hunt-day-image {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(165, 119, 0, 0.22);
  border-radius: 5px;
}

.v2-hunt-day-transcript {
  grid-column: 1 / -1;
  display: grid;
  gap: 22px;
  padding: clamp(20px, 3vw, 32px);
  color: #273852;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(165, 119, 0, 0.18);
  border-radius: 6px;
}

.v2-hunt-day-transcript h4,
.v2-hunt-day-transcript h5 {
  margin: 0;
  color: #0b203f;
  line-height: 1.18;
}

.v2-hunt-day-transcript h4 {
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  font-weight: 1000;
}

.v2-hunt-day-transcript h5 {
  font-size: 1.08rem;
  font-weight: 1000;
}

.v2-hunt-day-transcript section {
  display: grid;
  gap: 9px;
}

.v2-hunt-day-transcript p,
.v2-hunt-day-transcript li {
  color: #526177;
  font-size: 0.96rem;
  font-weight: 650;
  line-height: 1.58;
}

.v2-hunt-day-transcript p {
  margin: 0;
}

.v2-hunt-day-transcript ol,
.v2-hunt-day-transcript ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding-left: 1.3rem;
}

.v2-hunt-day-transcript strong {
  color: #273852;
  font-weight: 1000;
}

.v2-answer-sheet {
  display: grid;
  grid-template-columns: minmax(250px, 0.72fr) minmax(300px, 0.9fr);
  gap: clamp(22px, 4vw, 44px);
  align-items: center;
  margin-top: 24px;
  padding: clamp(18px, 3vw, 30px);
  background: #f1f6ff;
  border: 1px solid rgba(13, 77, 162, 0.14);
  border-left: 5px solid var(--blue);
  border-radius: 6px;
}

.v2-answer-sheet-copy h3 {
  margin: 7px 0 0;
  color: #0b203f;
  font-size: clamp(1.65rem, 2.8vw, 2.55rem);
  font-weight: 1000;
  line-height: 1.08;
}

.v2-answer-sheet-copy > p:not(.v2-clue-date) {
  margin: 12px 0 0;
  color: #526177;
  font-size: 0.98rem;
  font-weight: 650;
  line-height: 1.5;
}

.v2-answer-sheet-copy .v2-paper-link {
  margin-top: 20px;
}

.v2-answer-sheet-image-link {
  display: block;
  color: inherit;
  background: white;
  border-radius: 5px;
  box-shadow: 0 14px 32px rgba(11, 32, 63, 0.12);
}

.v2-answer-sheet-image-link:focus-visible {
  outline: 3px solid rgba(13, 77, 162, 0.5);
  outline-offset: 3px;
}

.v2-answer-sheet-image {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(13, 77, 162, 0.16);
  border-radius: 5px;
}

.v2-paper-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  margin-top: 28px;
  padding: 13px 22px;
  color: white;
  background: var(--red);
  border-radius: 8px;
  font-size: 0.96rem;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 15px 30px rgba(157, 7, 20, 0.18);
}

.v2-flyer-stack {
  display: grid;
  gap: 22px;
}

.v2-side-paper {
  padding: clamp(26px, 3vw, 38px);
  transform: rotate(1.05deg);
}

.v2-script-label {
  margin: 0 0 16px;
  color: var(--red);
  font-family: var(--font-hand);
  font-size: clamp(3rem, 4.6vw, 4.8rem);
  line-height: 0.78;
}

.v2-before-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.v2-before-list li {
  padding: 18px 0;
  border-top: 1px solid rgba(13, 77, 162, 0.13);
}

.v2-before-list li:first-child {
  border-top: 0;
}

.v2-before-list strong,
.v2-before-list span {
  display: block;
}

.v2-before-list strong {
  color: #0b203f;
  font-size: 1.02rem;
  font-weight: 850;
  line-height: 1.24;
}

.v2-before-list span {
  margin-top: 5px;
  color: #536279;
  font-size: 0.96rem;
  font-weight: 650;
  line-height: 1.45;
}

.v2-facebook-note {
  display: grid;
  gap: 2px;
  justify-items: start;
  width: min(100%, 390px);
  padding: 22px 24px;
  background: #e8f3ff;
  border-color: rgba(13, 77, 162, 0.18);
  transform: rotate(-1deg);
}

.v2-facebook-note strong {
  margin-top: 4px;
  font-size: 1.26rem;
}

.v2-hand-note {
  width: min(100%, 360px);
  justify-self: end;
  padding: 22px 24px;
  color: #0b203f;
  background: #fff7cf;
  transform: rotate(-1.6deg);
}

.v2-hand-note strong,
.v2-hand-note span {
  display: block;
}

.v2-hand-note strong {
  color: var(--red);
  font-family: var(--font-hand);
  font-size: 2.3rem;
  font-weight: 400;
  line-height: 0.92;
}

.v2-hand-note span {
  margin-top: 10px;
  color: #4f5f75;
  font-weight: 700;
}

.home-v2 .v2-paper-sheet {
  padding: clamp(30px, 3.6vw, 46px);
  background: #fffdf8;
  border: 1px solid rgba(82, 54, 28, 0.12);
  overflow: visible;
  box-shadow:
    0 24px 46px rgba(28, 14, 5, 0.2),
    0 3px 0 rgba(255, 255, 255, 0.72) inset;
}

.home-v2 .v2-paper-sheet::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at 1px 1px, rgba(25, 31, 42, 0.58) 0.6px, transparent 0.7px) 0 0 / 8px 8px,
    linear-gradient(0deg, rgba(88, 62, 34, 0.2) 1px, transparent 1px) 0 0 / 100% 5px;
  opacity: 0.028;
  mix-blend-mode: multiply;
  pointer-events: none;
}

.home-v2 .v2-paper-sheet > * {
  position: relative;
  z-index: 1;
}

.home-v2 .v2-paper-sheet .v2-tape {
  position: absolute;
  display: block;
  z-index: 4;
}

.home-v2 .v2-paper-sheet h2 {
  max-width: 560px;
  margin-top: 4px;
  font-size: clamp(2.15rem, 3.05vw, 3.3rem);
  line-height: 1.08;
}

.home-v2 .v2-paper-intro {
  max-width: 590px;
  margin-top: 14px;
  font-size: clamp(0.98rem, 1.05vw, 1.04rem);
  font-weight: 620;
  line-height: 1.52;
}

.home-v2 .v2-date-pins {
  gap: 10px;
  margin-top: 22px;
}

.home-v2 .v2-date-pins p {
  padding: 13px 14px 12px;
  background: #fff6be;
  border: 0;
  border-radius: 5px 7px 6px 5px;
  box-shadow:
    0 10px 17px rgba(39, 24, 8, 0.09),
    0 1px 0 rgba(255, 255, 255, 0.72) inset;
  font-size: 0.88rem;
  line-height: 1.25;
}

.home-v2 .v2-date-pins p:nth-child(2) {
  background: #e8f3ff;
  transform: rotate(0.7deg);
}

.home-v2 .v2-date-pins p:nth-child(3) {
  background: #fff0c8;
  transform: rotate(-0.5deg);
}

.home-v2 .v2-date-pins span {
  margin-bottom: 4px;
  font-family: var(--font-hand);
  font-size: 1.38rem;
  font-weight: 400;
  line-height: 0.86;
  text-transform: none;
}

.home-v2 .v2-facts-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
  margin: 22px 0 0;
  padding: 13px 0;
  color: #506078;
  border-top: 1px solid rgba(13, 77, 162, 0.12);
  border-bottom: 1px solid rgba(13, 77, 162, 0.12);
  font-size: 0.94rem;
  font-weight: 780;
  line-height: 1.3;
}

.home-v2 .v2-facts-line strong {
  color: var(--red);
  font-weight: 900;
}

.home-v2 .v2-facts-line span {
  position: relative;
  padding-left: 18px;
}

.home-v2 .v2-facts-line span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 5px;
  height: 5px;
  background: #d90b1c;
  border-radius: 999px;
  transform: translateY(-50%);
}

.home-v2 .v2-before-list li {
  padding: 15px 0;
}

.home-v2 .v2-before-list strong {
  font-size: 0.98rem;
}

.home-v2 .v2-before-list span {
  font-size: 0.92rem;
  line-height: 1.42;
}

.home-v2 .v2-paper-link {
  min-height: 48px;
  margin-top: 24px;
  font-size: 0.9rem;
}

.home-v2 .v2-sticker-pair {
  position: relative;
  z-index: 4;
  grid-column: 1;
  grid-row: 1;
  display: flex;
  align-items: flex-end;
  gap: clamp(14px, 2vw, 22px);
  width: min(100%, 440px);
  margin: -6px 0 -2px clamp(12px, 4vw, 42px);
  pointer-events: none;
}

.home-v2 .v2-logo-sticker {
  width: clamp(150px, 16vw, 210px);
  height: auto;
  border-radius: 0;
  box-shadow: none;
  filter: none;
  transform: rotate(-5deg);
}

.home-v2 .v2-sticker-pair .v2-gnome-sticker {
  position: relative;
  top: auto;
  right: auto;
  z-index: 1;
  width: clamp(108px, 11vw, 158px);
  flex: 0 0 auto;
  filter: drop-shadow(0 10px 12px rgba(35, 18, 8, 0.2));
  transform: rotate(4deg);
}

.home-v2 .v2-paper-sheet {
  grid-column: 1;
  grid-row: 2;
}

.home-v2 .v2-clue-sheet {
  grid-column: 1 / -1;
  grid-row: 3;
  justify-self: center;
  width: min(100%, 1160px);
  margin-top: clamp(14px, 2.6vw, 30px);
  transform: rotate(0.28deg);
}

.home-v2 .v2-clue-sheet h2 {
  max-width: 760px;
  font-size: clamp(2.35rem, 4.4vw, 4.6rem);
}

.home-v2 .v2-clue-sheet .v2-clue-intro {
  max-width: 720px;
}

.home-v2 .v2-flyer-stack {
  position: relative;
  grid-column: 2;
  grid-row: 1 / span 2;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: start;
  justify-self: center;
  width: min(100%, 360px);
  padding-top: 6px;
}

.home-v2--july .v2-flyer-layout > .v2-paper-sheet:not(.v2-clue-sheet) {
  grid-row: 1;
}

.home-v2--july .v2-clue-sheet {
  grid-row: 2;
}

.home-v2--july .v2-flyer-stack {
  grid-row: 1;
  padding-top: 0;
}

.home-v2--july .v2-flyer-stack .v2-sticker-pair {
  grid-column: auto;
  grid-row: auto;
  justify-self: center;
  width: min(100%, 334px);
  margin: -2px 0 0;
  gap: clamp(8px, 1.2vw, 14px);
  align-items: center;
}

.home-v2--july .v2-flyer-stack .v2-logo-sticker {
  width: clamp(150px, 13vw, 190px);
}

.home-v2--july .v2-flyer-stack .v2-gnome-sticker {
  width: clamp(88px, 8vw, 116px);
}

.home-v2--july .v2-board-note--hunt {
  padding: 30px 28px 86px;
}

.home-v2--july .v2-board-note--hunt > span {
  align-self: center;
  margin: 0 0 18px;
  font-size: clamp(1.68rem, 2.2vw, 1.95rem);
  line-height: 1;
  transform: rotate(-4deg);
}

.home-v2--july .v2-board-note--hunt h3 {
  max-width: 312px;
  font-size: clamp(2.24rem, 2.64vw, 2.48rem);
  line-height: 1.02;
  text-wrap: balance;
}

.home-v2--july .v2-board-note--hunt p {
  max-width: 280px;
  margin-top: 24px;
  font-size: 0.92rem;
  line-height: 1.35;
  text-wrap: balance;
}

.home-v2--july .v2-board-note--hunt .v2-note-follow {
  max-width: 220px;
  margin-top: 8px;
  color: var(--red);
  font-family: var(--font-hand);
  font-size: clamp(1.54rem, 2vw, 1.82rem);
  font-weight: 400;
  line-height: 0.95;
  text-wrap: balance;
  transform: rotate(-3deg);
}

.home-v2--july .v2-note-wrap .v2-facebook-sticker {
  right: 14px;
  bottom: 18px;
  width: clamp(72px, 7vw, 88px);
}

.home-v2 .v2-note-wrap {
  position: relative;
  width: 100%;
}

.home-v2 .v2-board-note {
  position: relative;
  display: flex;
  aspect-ratio: 1 / 1;
  width: 100%;
  padding: 32px 34px 98px;
  flex-direction: column;
  justify-content: flex-start;
  overflow: visible;
  color: #101010;
  background: #fff4a8;
  border: 0;
  border-radius: 5px 7px 6px 5px;
  box-shadow:
    0 18px 28px rgba(28, 14, 5, 0.2),
    0 2px 0 rgba(255, 255, 255, 0.58) inset;
  text-decoration: none;
}

.home-v2 .v2-board-note::before {
  display: none;
}

.home-v2 .v2-board-note::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 48px;
  height: 38px;
  background:
    linear-gradient(38deg, rgba(68, 52, 19, 0.22), rgba(255, 255, 255, 0.58) 58%, rgba(255, 255, 255, 0) 59%);
  clip-path: polygon(0 0, 0 100%, 100% 100%);
  box-shadow: 8px -8px 12px rgba(58, 38, 12, 0.12);
  opacity: 0.7;
  pointer-events: none;
}

.home-v2 .v2-board-note--hunt {
  background: #fff3a0;
  transform: rotate(-1deg);
}

.home-v2 .v2-board-note--blue {
  background: #e4f2ff;
  transform: rotate(1.1deg);
}

.home-v2 .v2-board-note--family {
  background: #fff7c7;
  transform: rotate(0.65deg);
}

.home-v2 .v2-board-note span,
.home-v2 .v2-board-note h3,
.home-v2 .v2-board-note strong {
  display: block;
  color: var(--red);
  font-family: var(--font-hand);
  font-weight: 400;
  letter-spacing: 0;
}

.home-v2 .v2-board-note span {
  margin: 0 0 10px;
  font-size: clamp(1.72rem, 2.45vw, 2.05rem);
  line-height: 0.92;
}

.home-v2 .v2-board-note h3,
.home-v2 .v2-board-note strong {
  margin: 0;
  font-size: clamp(2.38rem, 3.2vw, 2.95rem);
  line-height: 0.94;
}

.home-v2 .v2-board-note p,
.home-v2 .v2-board-note--family span {
  margin-top: 16px;
  color: #111;
  font-family: var(--font-body);
  font-size: 0.94rem;
  font-weight: 760;
  line-height: 1.38;
}

.home-v2 .v2-board-note--family span {
  font-size: 0.94rem;
}

.home-v2 .v2-note-follow {
  display: block;
  margin-top: 10px;
  color: #111;
  font-weight: 850;
}

.home-v2 .v2-golf-sticker--cutout {
  width: min(78%, 300px);
  margin-top: 0;
}

.home-v2 .v2-facebook-sticker {
  display: block;
  position: absolute;
  top: auto;
  right: clamp(-16px, -1vw, -6px);
  bottom: clamp(16px, 2vw, 24px);
  z-index: 5;
  width: clamp(78px, 8vw, 104px);
  margin: 0;
  transform: rotate(10deg);
  transition: transform 0.16s ease;
}

.home-v2 .v2-facebook-sticker:hover,
.home-v2 .v2-facebook-sticker:focus-visible {
  outline: none;
  transform: rotate(6deg) translateY(-2px);
}

.home-v2 .v2-facebook-sticker:focus-visible {
  filter: drop-shadow(0 0 0 #ffcf4e) drop-shadow(0 0 6px rgba(255, 207, 78, 0.95));
}

.home-v2 .v2-facebook-sticker img {
  display: block;
  width: 100%;
  height: auto;
}

body:has(.home-v2) .footer-logo {
  display: none;
}

body:has(.home-v2) .footer-inner {
  grid-template-columns: minmax(0, 1fr) auto;
}

body:has(.home-v2) .footer-message {
  align-items: flex-start;
  justify-self: start;
  text-align: left;
}

body:has(.home-v2) .footer-tagline::before,
body:has(.home-v2) .footer-tagline::after {
  display: none;
}

body:has(.home-v2) .site-footer {
  padding-top: clamp(92px, 18vw, 150px);
}

@media (max-width: 760px) {
  body:has(.home-v2) .footer-garland {
    height: 46px;
    margin-top: -36px;
    margin-bottom: -26px;
  }

  body:has(.home-v2) .site-footer {
    padding: 96px 0 24px;
    background-size: cover, auto 100%;
  }

  body:has(.home-v2) .footer-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 12px;
  }

  body:has(.home-v2) .footer-message {
    align-items: center;
    justify-self: center;
    text-align: center;
  }

  body:has(.home-v2) .footer-snowflake {
    display: none;
  }

  body:has(.home-v2) .footer-tagline {
    max-width: 19rem;
    font-size: 0.92rem;
    line-height: 1.35;
  }

  body:has(.home-v2) .footer-links {
    gap: 8px;
  }

  body:has(.home-v2) .footer-links a {
    min-height: 38px;
    padding: 0 14px;
    font-size: 0.88rem;
  }
}

.v2-tape {
  position: absolute;
  width: 124px;
  height: 34px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0.06)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.16) 0 1px, transparent 1px 7px),
    rgba(224, 235, 246, 0.86);
  border: 1px solid rgba(93, 111, 135, 0.1);
  border-radius: 2px;
  box-shadow: 0 8px 18px rgba(8, 48, 109, 0.1);
  pointer-events: none;
}

.v2-tape-left {
  left: clamp(34px, 8vw, 94px);
  top: -22px;
  transform: rotate(-4deg);
}

.v2-tape-right {
  right: clamp(28px, 6vw, 74px);
  top: -23px;
  transform: rotate(5deg);
}

.v2-tape-top {
  left: 50%;
  top: -17px;
  transform: translateX(-50%) rotate(-2deg);
}

@media (max-width: 900px) {
  .v2-hero {
    min-height: 850px;
  }

  .v2-hero::before {
    inset: 0;
    background-size: cover;
    background-position: 58% top;
    background-repeat: no-repeat;
  }

  .v2-hero::after {
    background:
      linear-gradient(180deg, rgba(3, 9, 20, 0.52) 0%, rgba(3, 9, 20, 0.34) 42%, rgba(3, 9, 20, 0.12) 68%, rgba(3, 9, 20, 0.62) 100%),
      linear-gradient(90deg, rgba(3, 9, 20, 0.38) 0%, rgba(3, 9, 20, 0.05) 72%);
  }

  .v2-nav {
    padding-top: 24px;
  }

  .v2-nav-links {
    gap: 12px;
  }

  .v2-nav-detail {
    display: none;
  }

  .v2-hero-inner {
    min-height: auto;
    align-items: flex-start;
    padding: 78px 0 330px;
  }

  .v2-copy {
    width: min(560px, 100%);
  }

  .v2-copy h1 {
    font-size: 4.45rem;
  }

  .v2-copy h1 span {
    white-space: normal;
  }

  .v2-sticky-notes {
    padding-top: 70px;
  }

  .v2-note-board {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .v2-golf-note {
    grid-column: 1 / -1;
  }

  .v2-gnome-sticker {
    top: -94px;
    right: -8px;
    width: 148px;
  }

  .v2-flyer-layout {
    grid-template-columns: 1fr;
  }

  .home-v2 .v2-sticker-pair,
  .v2-paper-sheet {
    grid-column: 1;
    grid-row: auto;
  }

  .home-v2 .v2-sticker-pair {
    justify-self: center;
    margin: -8px 0 0;
  }

  .home-v2 .v2-paper-sheet {
    transform: rotate(0deg);
  }

  .home-v2 .v2-clue-sheet {
    grid-column: 1;
    grid-row: auto;
    width: 100%;
  }

  .v2-clue-sheet-header,
  .v2-clue-sheet .v2-clue-card,
  .v2-hunt-day-sheet,
  .v2-answer-sheet {
    grid-template-columns: 1fr;
  }

  .home-v2 .v2-flyer-stack,
  .v2-flyer-stack {
    grid-column: 1;
    grid-row: auto;
    width: min(100%, 620px);
    justify-self: center;
  }

  .v2-side-paper,
  .v2-facebook-note {
    transform: rotate(0deg);
  }

  .v2-hand-note {
    justify-self: center;
  }
}

@media (max-width: 640px) {
  .v2-hero {
    min-height: 790px;
  }

  .v2-cta-row {
    display: grid;
    gap: 12px;
  }

  .v2-cta-row .btn {
    width: 100%;
  }

  .v2-hero::before {
    background-position: 58% top;
  }

  .v2-nav {
    gap: 14px;
  }

  .v2-brand {
    max-width: 156px;
  }

  .v2-nav-links {
    gap: 8px;
    font-size: 0.88rem;
  }

  .v2-brand-logo {
    width: 156px;
  }

  .v2-social-link {
    width: 38px;
    height: 38px;
  }

  .v2-hero-inner {
    padding: 56px 0 310px;
  }

  .v2-laser-show {
    -webkit-mask-image: radial-gradient(ellipse 130% 58% at 42% 40%, transparent 0 42%, rgba(0, 0, 0, 0.24) 56%, #000 76%);
    mask-image: radial-gradient(ellipse 130% 58% at 42% 40%, transparent 0 42%, rgba(0, 0, 0, 0.24) 56%, #000 76%);
  }

  .v2-copy h1 {
    gap: 4px;
    font-size: clamp(2.02rem, 8.45vw, 2.34rem);
    line-height: 1.02;
  }

  .v2-copy h1 span {
    white-space: nowrap;
  }

  .v2-copy h1::after {
    width: 110px;
    margin-top: 22px;
  }

  .v2-subhead {
    max-width: 22rem;
    margin-top: 24px;
    font-size: 1.12rem;
  }

  .v2-meta {
    display: grid;
    gap: 10px;
    margin-top: 24px;
  }

  .v2-meta p {
    font-size: 0.98rem;
  }

  .v2-meta p + p {
    padding-left: 0;
    border-left: 0;
  }

  .v2-hero-link {
    width: 100%;
    max-width: 260px;
    margin-top: 20px;
  }

  .v2-sticky-notes {
    padding: 58px 0 30px;
  }

  .v2-note-board {
    grid-template-columns: 1fr;
  }

  .v2-gnome-sticker {
    top: -74px;
    right: -22px;
    width: 124px;
  }

  .v2-sticky-note,
  .v2-golf-note,
  .v2-side-paper,
  .v2-facebook-note,
  .v2-hand-note {
    transform: none;
  }

  .v2-golf-note {
    grid-template-columns: 1fr;
  }

  .v2-sticky-note h2 {
    font-size: 2rem;
  }

  .v2-sticky-note h3,
  .v2-golf-note h3 {
    font-size: 1.62rem;
  }

  .v2-flyer-board {
    padding: 58px 0 68px;
  }

  .v2-paper-sheet {
    padding: 26px 18px 28px;
  }

  .v2-paper-sheet::before {
    inset: 8px;
  }

  .v2-paper-sheet h2 {
    font-size: 2.45rem;
  }

  .v2-paper-intro {
    font-size: 1rem;
  }

  .v2-date-pins,
  .v2-hunt-list,
  .v2-clue-list,
  .v2-cipher-choice-list,
  .v2-paper-reminders {
    grid-template-columns: 1fr;
  }

  .v2-hunt-list {
    gap: 10px;
  }

  .v2-hunt-list li {
    grid-template-columns: 34px 1fr;
  }

  .v2-clue-card {
    min-height: 0;
    padding: 14px;
  }

  .v2-clue-sheet .v2-clue-warning {
    padding: 14px;
  }

  .home-v2 .v2-clue-sheet .v2-clue-warning,
  .home-v2 .v2-clue-sheet .v2-cipher-section,
  .home-v2 .v2-clue-sheet .v2-hunt-day-sheet,
  .home-v2 .v2-clue-sheet .v2-answer-sheet,
  .home-v2 .v2-clue-sheet .v2-clue-list {
    margin-inline: -22px;
  }

  .home-v2 .v2-clue-sheet .v2-clue-warning,
  .home-v2 .v2-clue-sheet .v2-cipher-section,
  .home-v2 .v2-clue-sheet .v2-hunt-day-sheet,
  .home-v2 .v2-clue-sheet .v2-answer-sheet,
  .home-v2 .v2-clue-sheet .v2-clue-card {
    border-radius: 2px;
  }

  .home-v2 .v2-clue-sheet .v2-cipher-section,
  .home-v2 .v2-clue-sheet .v2-hunt-day-sheet,
  .home-v2 .v2-clue-sheet .v2-answer-sheet,
  .home-v2 .v2-clue-sheet .v2-clue-card {
    padding: 14px;
  }

  .home-v2 .v2-clue-sheet .v2-cipher-transcript-body,
  .home-v2 .v2-clue-sheet .v2-hunt-day-transcript,
  .home-v2 .v2-clue-sheet .v2-clue-transcript {
    padding: 14px;
  }

  .home-v2 .v2-clue-sheet .v2-cipher-figure {
    padding: 8px;
  }

  .home-v2 .v2-clue-sheet .v2-cipher-figure figcaption {
    margin: 2px 4px 8px;
  }

  .v2-cipher-actions {
    display: grid;
  }

  .v2-cipher-actions .v2-paper-link + .v2-paper-link {
    margin-top: 0;
  }

  .v2-paper-link {
    width: 100%;
  }

  .home-v2 .v2-board-note {
    aspect-ratio: 1 / 1;
    padding: 24px 22px 84px;
  }

  .home-v2 .v2-board-note span {
    margin-bottom: 8px;
    font-size: 1.42rem;
  }

  .home-v2 .v2-board-note h3,
  .home-v2 .v2-board-note strong {
    font-size: 2rem;
    line-height: 0.96;
  }

  .home-v2 .v2-board-note p {
    margin-top: 12px;
    font-size: 0.88rem;
    line-height: 1.34;
  }

  .home-v2 .v2-note-follow {
    margin-top: 8px;
  }

  .home-v2--july .v2-board-note--hunt {
    padding: 24px 20px 76px;
  }

  .home-v2--july .v2-board-note--hunt > span {
    margin-bottom: 14px;
    font-size: 1.36rem;
  }

  .home-v2--july .v2-board-note--hunt h3 {
    max-width: 250px;
    font-size: 1.92rem;
  }

  .home-v2--july .v2-board-note--hunt p {
    max-width: 242px;
    margin-top: 18px;
    font-size: 0.84rem;
    line-height: 1.32;
  }

  .home-v2--july .v2-board-note--hunt .v2-note-follow {
    max-width: 188px;
    margin-top: 7px;
    font-size: 1.3rem;
  }

  .home-v2--july .v2-note-wrap .v2-facebook-sticker {
    right: 12px;
    bottom: 12px;
    width: 62px;
  }

  .home-v2 .v2-golf-sticker--cutout {
    width: min(78%, 240px);
  }

  .home-v2 .v2-facebook-sticker {
    top: auto;
    right: -4px;
    bottom: 12px;
    width: 68px;
    margin: 0;
  }

  .home-v2 .v2-sticker-pair {
    gap: 12px;
  }

  .home-v2 .v2-logo-sticker {
    width: min(46vw, 170px);
  }

  .home-v2 .v2-sticker-pair .v2-gnome-sticker {
    width: min(34vw, 122px);
  }

  .v2-side-paper {
    padding: 28px 20px;
  }

  .v2-script-label {
    font-size: 3rem;
  }

  .v2-tape {
    width: 96px;
    height: 28px;
  }
}

/* Christmas in July event page */
body:has(.july-page) {
  color: #15243b;
  background: #f6f9fd;
  --font-body: "Lexend", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-heading: "Lexend", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.july-page {
  overflow: hidden;
  color: #15243b;
  background: #f6f9fd;
  font-family: var(--font-body);
}

.july-hero {
  position: relative;
  min-height: 94svh;
  display: grid;
  align-items: start;
  color: white;
  isolation: isolate;
  overflow: hidden;
  background: #030914;
}

.july-hero::before,
.july-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
}

.july-hero::before {
  background-image: var(--july-hero-image);
  background-position: 50% bottom;
  background-repeat: no-repeat;
  background-size: cover;
  filter: saturate(1.08) contrast(1.04);
}

.july-hero::after {
  z-index: -1;
  background:
    radial-gradient(circle at 34% 36%, rgba(3, 9, 20, 0.28) 0%, rgba(3, 9, 20, 0.12) 36%, rgba(3, 9, 20, 0) 62%),
    linear-gradient(90deg, rgba(3, 9, 20, 0.44) 0%, rgba(3, 9, 20, 0.14) 42%, rgba(3, 9, 20, 0) 76%),
    linear-gradient(180deg, rgba(3, 9, 20, 0.12) 0%, rgba(3, 9, 20, 0) 56%, rgba(3, 9, 20, 0.54) 100%);
}

.july-hero-inner {
  width: min(100% - 32px, 1240px);
  padding: clamp(156px, 22vh, 210px) 0 260px;
}

.july-eyebrow,
.july-section-kicker {
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.july-eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.july-hero h1 {
  max-width: 1050px;
  margin-top: 18px;
  color: white;
  font-family: var(--font-heading);
  font-size: clamp(3.75rem, 7.1vw, 7.35rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.98;
  text-shadow:
    0 2px 4px rgba(0, 0, 0, 0.35),
    0 18px 42px rgba(0, 0, 0, 0.36);
}

.july-hero-copy {
  max-width: 780px;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.12rem, 1.9vw, 1.38rem);
  font-weight: 500;
  line-height: 1.5;
  text-shadow: 0 12px 30px rgba(0, 0, 0, 0.32);
}

.july-hero-actions,
.july-share-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.july-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 13px 20px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  color: white;
  font-size: 0.98rem;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.july-button-primary {
  background: var(--red);
  border-color: var(--red);
  box-shadow: 0 18px 36px rgba(3, 9, 20, 0.22);
}

.july-button-light {
  color: #0b203f;
  background: white;
  border-color: white;
}

.july-button-icon {
  background: rgba(3, 9, 20, 0.28);
  backdrop-filter: blur(10px);
}

.july-button:hover,
.july-button:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.july-quick-facts {
  position: relative;
  z-index: 2;
  margin-top: -82px;
}

.july-fact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.july-fact,
.july-step,
.july-note {
  background: white;
  border: 1px solid rgba(13, 77, 162, 0.12);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(8, 48, 109, 0.1);
}

.july-fact {
  min-height: 120px;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 22px;
}

.july-fact-icon {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  background: var(--blue);
  border-radius: 999px;
  font-weight: 900;
}

.july-fact p {
  color: #102348;
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.35;
}

.july-intro,
.july-how,
.july-before,
.july-flyer-section,
.july-final-cta {
  background: #f6f9fd;
}

.july-intro {
  padding: 86px 0 56px;
}

.july-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(30px, 6vw, 82px);
  align-items: start;
}

.july-intro h2,
.july-section-heading h2,
.july-flyer-copy h2,
.july-final-card h2 {
  margin-top: 10px;
  color: #0b203f;
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4.2vw, 4.1rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.04;
}

.july-intro-copy {
  display: grid;
  gap: 18px;
}

.july-intro-copy p,
.july-flyer-copy p,
.july-final-card p {
  color: #4e5f78;
  font-size: 1.08rem;
  font-weight: 550;
  line-height: 1.62;
}

.july-how {
  padding: 42px 0 76px;
}

.july-section-heading {
  max-width: 830px;
  margin-bottom: 32px;
}

.july-step-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.july-step {
  min-height: 246px;
  padding: 24px;
}

.july-step span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--red);
  font-size: 0.9rem;
  font-weight: 900;
}

.july-step h3,
.july-note h3 {
  margin: 0;
  color: #0b203f;
  font-family: var(--font-heading);
  font-size: 1.26rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.18;
}

.july-step p,
.july-note p {
  margin-top: 12px;
  color: #58687e;
  font-weight: 600;
  line-height: 1.52;
}

.july-step strong {
  color: #0b203f;
  font-weight: 900;
}

.july-before {
  padding: 10px 0 78px;
}

.july-note-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.july-note {
  padding: 24px;
}

.july-note > span {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: white;
  background: #0d4da2;
  border-radius: 8px;
  font-size: 1.28rem;
  font-weight: 900;
}

.july-flyer-section {
  padding: 80px 0;
  color: #0b203f;
  background: white;
}

.july-flyer-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 470px);
  gap: clamp(30px, 6vw, 78px);
  align-items: center;
}

.july-flyer-copy .july-share-row {
  margin-top: 28px;
}

.july-flyer-copy .july-button-icon {
  color: white;
  background: #5865f2;
  border-color: #5865f2;
}

.july-flyer-card {
  display: block;
  padding: 10px;
  background: #f7fbff;
  border: 1px solid rgba(13, 77, 162, 0.14);
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(8, 48, 109, 0.16);
}

.july-flyer-card img {
  width: 100%;
  border-radius: 4px;
}

.july-final-cta {
  padding: 82px 0 92px;
}

.july-final-card {
  display: grid;
  grid-template-columns: minmax(280px, 430px) minmax(0, 1fr);
  gap: clamp(26px, 5vw, 68px);
  align-items: center;
  padding: clamp(22px, 4vw, 40px);
  color: #0b203f;
  background: white;
  border: 1px solid rgba(13, 77, 162, 0.12);
  border-radius: 8px;
  box-shadow: 0 22px 64px rgba(8, 48, 109, 0.12);
}

.july-final-card img {
  width: 100%;
  border-radius: 6px;
}

@media (max-width: 1020px) {
  .july-fact-grid,
  .july-step-list,
  .july-note-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .july-intro-grid,
  .july-flyer-grid,
  .july-final-card {
    grid-template-columns: 1fr;
  }

  .july-flyer-card {
    max-width: 520px;
  }
}

@media (max-width: 720px) {
  .footer-sign {
    width: min(204px, 62vw);
  }

  .july-hero {
    min-height: 800px;
  }

  .july-hero::before {
    background-position: 58% bottom;
  }

  .july-hero::after {
    background:
      linear-gradient(180deg, rgba(3, 9, 20, 0.58) 0%, rgba(3, 9, 20, 0.36) 42%, rgba(3, 9, 20, 0.12) 68%, rgba(3, 9, 20, 0.7) 100%),
      linear-gradient(90deg, rgba(3, 9, 20, 0.32) 0%, rgba(3, 9, 20, 0.06) 74%);
  }

  .july-hero-inner {
    width: min(100% - 24px, 1240px);
    padding: 134px 0 252px;
  }

  .july-hero h1 {
    max-width: 22rem;
    font-size: 3.28rem;
    line-height: 1.02;
  }

  .july-hero-copy {
    max-width: 21rem;
    font-size: 1.04rem;
  }

  .july-hero-actions,
  .july-share-row {
    display: grid;
  }

  .july-button {
    width: 100%;
  }

  .july-quick-facts {
    margin-top: -54px;
  }

  .july-fact-grid,
  .july-step-list,
  .july-note-grid {
    grid-template-columns: 1fr;
  }

  .july-intro {
    padding: 72px 0 42px;
  }

  .july-how,
  .july-before,
  .july-flyer-section,
  .july-final-cta {
    padding: 58px 0;
  }

  .july-step {
    min-height: 0;
  }
}
