:root {
  --red: #c91f3b;
  --red-soft: rgba(201, 31, 59, 0.16);
  --blue: #4d93ff;
  --blue-soft: rgba(77, 147, 255, 0.14);
  --navy: #f7fbff;
  --black: #05070d;
  --ink: #e8eef8;
  --muted: #aeb9ca;
  --line: rgba(215, 226, 242, 0.16);
  --paper: #101827;
  --white: #ffffff;
  --shadow: 0 22px 55px rgba(0, 0, 0, 0.36);
  --soft-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(201, 31, 59, 0.16), transparent 32%),
    radial-gradient(circle at top right, rgba(77, 147, 255, 0.16), transparent 30%),
    linear-gradient(180deg, #070b14 0%, #0a1220 45%, #05070d 100%);
  font-family: "Segoe UI", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.55;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  content: "";
}

a {
  color: inherit;
}

img,
video {
  max-width: 100%;
}

.christmas-page main,
.vendor-application-page main {
  overflow: hidden;
}

.christmas-hero-copy,
.christmas-hero-card,
.vendor-app-hero > div,
.vendor-app-hero img,
.section-heading,
.gift-grid,
.christmas-gallery,
.vendor-application-form {
  min-width: 0;
  max-width: 100%;
}

.christmas-hero-copy,
.christmas-hero-card,
.vendor-app-hero > div,
.vendor-app-hero img {
  width: min(100%, calc(100vw - 32px));
}

.christmas-page h1,
.christmas-page h2,
.christmas-page h3,
.christmas-page p,
.vendor-application-page h1,
.vendor-application-page h2,
.vendor-application-page h3,
.vendor-application-page p {
  overflow-wrap: anywhere;
}

.top-alert {
  position: relative;
  z-index: 30;
  display: flex;
  justify-content: center;
  padding: 9px 18px;
  color: var(--white);
  background: linear-gradient(90deg, var(--red), var(--blue));
  text-align: center;
  font-size: 0.9rem;
  font-weight: 850;
}

.top-alert a {
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 14px clamp(18px, 4vw, 58px);
  background: rgba(7, 11, 20, 0.88);
  border-bottom: 1px solid rgba(215, 226, 242, 0.14);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 66px;
  height: 66px;
  place-items: center;
  background: rgba(255, 255, 255, 0.96);
  border: 2px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  box-shadow: 0 8px 22px rgba(25, 90, 168, 0.16);
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
  transition: color 180ms ease, text-shadow 180ms ease, transform 180ms ease;
}

.brand strong {
  font-size: 1rem;
  line-height: 1.1;
}

.brand small {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  padding: 10px 12px;
  color: #e8eef8;
  border-radius: 999px;
  font-size: 0.91rem;
  font-weight: 800;
  text-decoration: none;
  transition: color 180ms ease, background 180ms ease, text-shadow 180ms ease, transform 180ms ease;
}

.site-nav a:hover {
  color: var(--white);
  background: var(--blue-soft);
  text-shadow:
    0 0 10px rgba(255, 255, 255, 0.7),
    0 0 22px rgba(77, 147, 255, 0.72);
  transform: translateY(-1px);
}

.site-nav .nav-cta {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 10px 22px rgba(201, 31, 59, 0.18);
}

.site-nav .nav-cta:hover {
  color: var(--white);
  background: #a8172e;
}

.brand:hover strong,
.brand:hover small {
  color: var(--white);
  text-shadow:
    0 0 10px rgba(255, 255, 255, 0.72),
    0 0 22px rgba(77, 147, 255, 0.58);
  transform: translateX(2px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  padding: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 3px auto;
  background: var(--white);
}

.hero {
  position: relative;
  display: block;
  min-height: auto;
  padding: 0;
  overflow: hidden;
  --hero-visual-opacity: 1;
  --hero-visual-shift: 0px;
}

.hero-media,
.hero-overlay {
  display: none;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  content: "";
}

.hero-visual {
  position: relative;
  display: grid;
  min-height: clamp(390px, 42vw, 560px);
  place-items: center;
  opacity: var(--hero-visual-opacity);
  transform: translateY(var(--hero-visual-shift));
  transition: opacity 80ms linear, transform 80ms linear;
}

.hero-banner {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(180deg, rgba(8, 26, 54, 0.1), rgba(8, 26, 54, 0.36)),
    url("assets/header-hd.webp") center / cover no-repeat;
  box-shadow: 0 24px 70px rgba(8, 26, 54, 0.18);
}

.hero-banner::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 11, 20, 0) 64%, rgba(7, 11, 20, 0.95) 100%),
    radial-gradient(circle at center, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.02) 44%, rgba(7, 11, 20, 0.5) 100%),
    linear-gradient(90deg, rgba(201, 31, 59, 0.1), rgba(25, 90, 168, 0.1));
  content: "";
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(940px, calc(100% - 36px));
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 42px);
  text-align: center;
  background: rgba(7, 11, 20, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 30px;
  box-shadow: 0 24px 70px rgba(8, 26, 54, 0.2);
  backdrop-filter: blur(10px);
}

.hero-content .eyebrow,
.hero-content > p:first-of-type,
.hero .mission-statement {
  transition: color 180ms ease, text-shadow 180ms ease, transform 180ms ease;
}

.hero-content .eyebrow:hover,
.hero-content > p:first-of-type:hover,
.hero .mission-statement:hover {
  color: var(--white);
  text-shadow:
    0 0 10px rgba(255, 255, 255, 0.76),
    0 0 24px rgba(77, 147, 255, 0.7),
    0 0 34px rgba(201, 31, 59, 0.35);
  transform: translateY(-2px);
}

.hero-content::after {
  display: block;
  width: 86px;
  height: 6px;
  margin: 28px auto 0;
  background: linear-gradient(90deg, var(--red), var(--blue));
  border-radius: 999px;
  content: "";
}

.hero-content .eyebrow {
  color: #b8d4ff;
}

.site-header .brand,
.site-header .site-nav a,
.hero-content .eyebrow,
.hero-content > p:first-of-type,
.hero .mission-statement,
.hero-actions {
  animation: headerSlideIn 720ms ease both;
}

.site-header .brand {
  animation-delay: 60ms;
}

.site-header .site-nav a:nth-child(1) {
  animation-delay: 120ms;
}

.site-header .site-nav a:nth-child(2) {
  animation-delay: 170ms;
}

.site-header .site-nav a:nth-child(3) {
  animation-delay: 220ms;
}

.site-header .site-nav a:nth-child(4) {
  animation-delay: 270ms;
}

.site-header .site-nav a:nth-child(5) {
  animation-delay: 320ms;
}

.site-header .site-nav a:nth-child(6) {
  animation-delay: 370ms;
}

.hero-content .eyebrow {
  animation-delay: 260ms;
}

.hero-content > p:first-of-type {
  animation-delay: 340ms;
}

.hero .mission-statement {
  animation-delay: 430ms;
}

.hero-actions {
  animation-delay: 520ms;
}

@keyframes headerSlideIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: clamp(3rem, 7vw, 6.8rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  color: var(--white);
  font-size: clamp(2rem, 4.2vw, 4.45rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  color: var(--white);
  font-size: 1.28rem;
  line-height: 1.18;
}

.hero p {
  max-width: 710px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.hero-content > p:first-of-type {
  color: var(--white);
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  font-weight: 850;
  line-height: 1.18;
}

.hero .mission-statement {
  position: relative;
  margin-top: -10px;
  margin-bottom: 30px;
  padding: 18px 20px 18px 24px;
  color: #f7fbff;
  background: rgba(255, 255, 255, 0.1);
  border-left: 5px solid var(--red);
  border-radius: 20px;
  box-shadow: none;
  font-size: clamp(1rem, 1.7vw, 1.14rem);
  font-weight: 650;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 19px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 900;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 14px 30px rgba(201, 31, 59, 0.22);
}

.button.primary:hover {
  background: #a8172e;
}

.button.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(25, 90, 168, 0.22);
  box-shadow: var(--soft-shadow);
}

.button.secondary.dark {
  color: var(--white);
  background: var(--blue);
  border: 0;
}

.impact-strip {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 12px;
  width: min(760px, calc(100% - 36px));
  margin: 14px auto 12px;
}

.impact-strip::before {
  display: none;
}

.impact-strip article {
  display: grid;
  gap: 4px;
  min-height: 70px;
  align-content: center;
  justify-items: center;
  padding: 10px 12px;
  text-align: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.impact-strip strong {
  color: var(--white);
  font-size: clamp(1rem, 1.5vw, 1.24rem);
  line-height: 1;
}

.impact-strip span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.25;
}

@media (max-width: 640px) {
  .impact-strip {
    grid-template-columns: 1fr;
    width: min(360px, calc(100% - 32px));
  }
}

.quick-paths {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 0 clamp(18px, 5vw, 76px) clamp(42px, 6vw, 70px);
  margin-top: 0;
  background: transparent;
}

.path-card {
  position: relative;
  display: grid;
  min-height: 230px;
  align-content: start;
  gap: 12px;
  padding: 28px;
  overflow: hidden;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.07);
  background-position: center;
  background-size: cover;
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: var(--soft-shadow);
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.path-card::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(135deg, rgba(5, 7, 13, 0.82), rgba(5, 7, 13, 0.44)),
    linear-gradient(180deg, rgba(5, 7, 13, 0.08), rgba(5, 7, 13, 0.82));
  content: "";
}

.path-card::before {
  display: block;
  width: 62px;
  height: 5px;
  background: var(--blue);
  border-radius: 999px;
  content: "";
  position: relative;
  z-index: 1;
}

.path-card.featured::before {
  background: var(--red);
}

.path-card:hover {
  transform: translateY(-3px) scale(1.025);
  box-shadow: var(--shadow);
}

.path-card span {
  position: relative;
  z-index: 1;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.path-card strong {
  position: relative;
  z-index: 1;
  color: var(--white);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.12;
}

.path-card p {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
}

.youth-path {
  background-image: url("https://images.unsplash.com/photo-1546519638-68e109498ffc?auto=format&fit=crop&w=1200&q=82");
}

.bingo-path {
  background-image: url("assets/graphics/bingo-card-background.svg");
}

.event-path {
  background-image: url("assets/photos/craft-show/2024/craft-show-2024-09.webp");
  background-position: center 42%;
}

.path-card.featured {
  color: var(--white);
}

.path-card.featured span,
.path-card.featured strong,
.path-card.featured p {
  color: var(--white);
}

.basketball-strip {
  position: relative;
  overflow: hidden;
  padding: 0 0 28px;
  margin-top: -58px;
  background: transparent;
}

.basketball-strip::before,
.basketball-strip::after {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  width: 90px;
  content: "";
  pointer-events: none;
}

.basketball-strip::before {
  left: 0;
  background: linear-gradient(90deg, #070b14, rgba(7, 11, 20, 0));
}

.basketball-strip::after {
  right: 0;
  background: linear-gradient(90deg, rgba(7, 11, 20, 0), #070b14);
}

.basketball-track {
  display: flex;
  width: max-content;
  min-width: 200vw;
  gap: clamp(6px, 1vw, 14px);
  padding-left: 0;
  animation: basketballDrift 34s linear infinite;
}

.basketball-track span {
  width: clamp(28px, 3vw, 42px);
  height: clamp(28px, 3vw, 42px);
  flex: 0 0 clamp(28px, 3vw, 42px);
  background: url("assets/realistic-basketball.png") center / contain no-repeat;
  border-radius: 50%;
  filter:
    drop-shadow(0 0 8px rgba(240, 123, 40, 0.32))
    drop-shadow(0 8px 10px rgba(0, 0, 0, 0.28));
}

@keyframes basketballDrift {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .basketball-track,
  .site-header .brand,
  .site-header .site-nav a,
  .hero-content .eyebrow,
  .hero-content > p:first-of-type,
  .hero .mission-statement,
  .hero-actions {
    animation: none;
  }
}

.section {
  padding: clamp(72px, 9vw, 120px) clamp(18px, 5vw, 76px);
}

.whats-next {
  padding-top: clamp(34px, 5vw, 62px);
  padding-bottom: clamp(46px, 6vw, 76px);
  background:
    radial-gradient(circle at 20% 0%, rgba(77, 147, 255, 0.14), transparent 32%),
    radial-gradient(circle at 80% 12%, rgba(201, 31, 59, 0.14), transparent 30%);
}

.whats-next .section-heading.center {
  margin-bottom: 24px;
}

.whats-next h2 {
  font-size: clamp(2rem, 5vw, 3.85rem);
}

.whats-next .section-heading p:last-child {
  max-width: 680px;
  margin-right: auto;
  margin-left: auto;
}

.calendar-showcase {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) 40px;
  gap: 10px;
  align-items: center;
  width: min(840px, 100%);
  margin: 22px auto 16px;
}

.calendar-arrow {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  box-shadow: var(--soft-shadow);
  cursor: pointer;
  font-size: 1.65rem;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.calendar-arrow:hover {
  background: rgba(77, 147, 255, 0.22);
  box-shadow: var(--shadow);
  transform: scale(1.08);
}

.calendar-feature {
  display: grid;
  grid-template-columns: 92px 132px minmax(0, 1fr);
  gap: clamp(12px, 2vw, 18px);
  align-items: center;
  min-height: 142px;
  padding: clamp(14px, 2.2vw, 20px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(5, 7, 13, 0.78), rgba(5, 7, 13, 0.42)),
    url("assets/photos/basketball/basketball-gym-panorama.webp") center / cover;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.calendar-feature:hover {
  transform: scale(1.018);
}

.calendar-month {
  display: grid;
  min-height: 78px;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--red), var(--blue));
  border-radius: 16px;
  font-size: clamp(0.88rem, 1.5vw, 1.18rem);
  font-weight: 950;
  text-transform: uppercase;
}

.calendar-days {
  color: var(--white);
  font-size: clamp(2.25rem, 4.6vw, 3.65rem);
  line-height: 0.9;
  text-shadow: 0 0 22px rgba(77, 147, 255, 0.32);
}

.calendar-type {
  margin-bottom: 4px;
  color: #72b7ff;
  font-size: 0.75rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.calendar-feature h3 {
  margin: 0 0 5px;
  font-size: clamp(1.18rem, 2vw, 1.65rem);
  line-height: 1.06;
}

.calendar-copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  line-height: 1.42;
}

.calendar-link {
  margin-top: 10px;
  min-height: 38px;
  padding: 10px 14px;
  font-size: 0.82rem;
}

.event-calendar {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 6px;
  width: min(1010px, 100%);
  margin: 0 auto;
}

.event-card {
  display: grid;
  min-height: 72px;
  align-content: start;
  gap: 3px;
  padding: 9px 10px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid var(--line);
  border-radius: 11px;
  box-shadow: var(--soft-shadow);
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.event-card:hover,
.event-card.active {
  background: rgba(77, 147, 255, 0.16);
  border-color: rgba(114, 183, 255, 0.62);
  box-shadow: var(--shadow);
  transform: translateY(-3px) scale(1.02);
}

.event-card time {
  color: #72b7ff;
  font-size: 0.62rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.event-card strong {
  display: -webkit-box;
  overflow: hidden;
  font-size: 0.78rem;
  line-height: 1.12;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.event-card span {
  overflow: hidden;
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 750;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.event-card.recurring {
  border-color: rgba(201, 31, 59, 0.38);
}

.nike-camp-callout {
  display: grid;
  grid-template-columns: minmax(120px, 180px) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: center;
  width: min(960px, 100%);
  margin: 22px auto 0;
  padding: clamp(18px, 3vw, 30px);
  color: var(--white);
  background:
    radial-gradient(circle at 14% 18%, rgba(240, 123, 40, 0.34), transparent 28%),
    linear-gradient(135deg, rgba(201, 31, 59, 0.28), rgba(77, 147, 255, 0.18)),
    rgba(7, 11, 20, 0.84);
  border: 1px solid rgba(114, 183, 255, 0.36);
  border-radius: 24px;
  box-shadow:
    0 0 34px rgba(77, 147, 255, 0.16),
    var(--shadow);
  overflow: hidden;
}

.nike-basketball-wrap {
  position: relative;
  display: grid;
  min-height: 150px;
  place-items: center;
}

.nike-basketball {
  width: clamp(86px, 12vw, 128px);
  filter:
    drop-shadow(0 0 18px rgba(240, 123, 40, 0.45))
    drop-shadow(0 18px 18px rgba(0, 0, 0, 0.34));
  animation: nikeBasketballBounce 1.35s ease-in-out infinite;
}

.nike-basketball-shadow {
  position: absolute;
  bottom: 16px;
  width: 88px;
  height: 15px;
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.42), transparent 70%);
  border-radius: 50%;
  animation: nikeBasketballShadow 1.35s ease-in-out infinite;
}

.nike-camp-copy h3 {
  margin: 0 0 10px;
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1;
  overflow-wrap: anywhere;
}

.nike-camp-copy p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 650;
  overflow-wrap: anywhere;
}

.nike-camp-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

@keyframes nikeBasketballBounce {
  0%,
  100% {
    transform: translateY(9px) rotate(-7deg) scale(1);
  }

  45% {
    transform: translateY(-28px) rotate(10deg) scale(1.04);
  }
}

@keyframes nikeBasketballShadow {
  0%,
  100% {
    opacity: 0.42;
    transform: scaleX(1.05);
  }

  45% {
    opacity: 0.2;
    transform: scaleX(0.72);
  }
}

.section-heading {
  max-width: 900px;
}

.section-heading.center {
  margin: 0 auto 46px;
  text-align: center;
}

.section-heading p,
.section-copy p,
.contact-copy p,
.donation-section p {
  color: var(--muted);
  font-size: 1.06rem;
}

.intro {
  background: rgba(255, 255, 255, 0.02);
}

.intro .section-heading {
  max-width: 820px;
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 5vw, 72px);
  max-width: 1100px;
  margin-top: 34px;
  color: var(--muted);
  font-size: 1.13rem;
}

.intro-grid p {
  padding: 26px 0 0;
  border-top: 3px solid var(--blue-soft);
}

.mission-video-row {
  display: grid;
  grid-template-columns: minmax(220px, 360px) minmax(0, 1fr);
  gap: clamp(18px, 4vw, 42px);
  align-items: center;
  max-width: 1040px;
  margin-top: 34px;
  padding: clamp(16px, 3vw, 26px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background:
    radial-gradient(circle at 15% 15%, rgba(77, 147, 255, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.24);
}

.mission-video-card {
  position: relative;
  overflow: hidden;
  width: min(100%, 280px);
  aspect-ratio: 9 / 13;
  justify-self: center;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 22px;
  background: rgba(4, 8, 16, 0.72);
}

.mission-video-card video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.mission-video-copy h3 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.7rem, 3vw, 3rem);
  line-height: 1.04;
}

.mission-video-copy p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
  line-height: 1.65;
}

.welcome-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 46px;
}

.welcome-cards article {
  display: grid;
  min-height: 250px;
  align-content: start;
  gap: 10px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: var(--soft-shadow);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.welcome-cards span {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.welcome-cards p {
  color: var(--muted);
}

.welcome-cards a {
  align-self: end;
  color: var(--red);
  font-weight: 900;
  text-decoration: none;
}

.welcome-cards a::after {
  content: " >";
}

.split {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: start;
}

.youth-band {
  color: var(--white);
  background:
    radial-gradient(circle at 18% 12%, rgba(77, 147, 255, 0.18), transparent 30%),
    radial-gradient(circle at 84% 22%, rgba(201, 31, 59, 0.2), transparent 28%),
    linear-gradient(135deg, rgba(5, 9, 19, 0.98), rgba(15, 24, 48, 0.96) 48%, rgba(7, 11, 20, 0.98));
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 28px 80px rgba(0, 0, 0, 0.28);
}

.youth-band .section-copy p {
  color: rgba(255, 255, 255, 0.82);
}

.youth-band .eyebrow {
  color: #72b7ff;
}

.section-copy {
  position: sticky;
  top: 105px;
}

.program-filters,
.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 28px;
}

.filter,
.tab {
  min-height: 42px;
  padding: 10px 15px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  font-weight: 900;
}

.filter.active,
.tab.active {
  color: var(--white);
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: 0 10px 22px rgba(25, 90, 168, 0.18);
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.program-card {
  position: relative;
  min-height: 245px;
  padding: 25px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.07);
  background-position: center;
  background-size: cover;
  border: 1px solid rgba(220, 228, 239, 0.9);
  border-radius: 26px;
  box-shadow: var(--soft-shadow);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.program-card::before {
  position: relative;
  z-index: 1;
  display: block;
  width: 54px;
  height: 54px;
  margin-bottom: 26px;
  background: rgba(255, 255, 255, 0.14);
  border: 2px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  content: "";
}

.program-card::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(135deg, rgba(5, 7, 13, 0.84), rgba(5, 7, 13, 0.4)),
    linear-gradient(180deg, rgba(5, 7, 13, 0.08), rgba(5, 7, 13, 0.88));
  content: "";
}

.program-card span {
  position: absolute;
  z-index: 2;
  top: 25px;
  right: 22px;
  display: inline-flex;
  padding: 7px 10px;
  color: #72b7ff;
  background: var(--red-soft);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.program-card p {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.82);
}

.program-card h3 {
  position: relative;
  z-index: 1;
}

.basketball-card::before,
.skills-card::before,
.biddy-card::before {
  width: 62px;
  height: 62px;
  background: url("assets/realistic-basketball.png") center / contain no-repeat;
  border: 0;
  box-shadow:
    0 0 24px rgba(240, 123, 40, 0.42),
    0 10px 18px rgba(0, 0, 0, 0.28);
}

.golf-card::before {
  width: 62px;
  height: 62px;
  background: url("assets/golf-icon.png") center / contain no-repeat;
  border: 0;
  box-shadow:
    0 0 20px rgba(255, 255, 255, 0.28),
    0 10px 18px rgba(0, 0, 0, 0.28);
}

.golf-card {
  background-image: url("assets/photos/golf/golf-youth-player.jpg");
}

.basketball-card {
  background-image: url("assets/photos/basketball/basketball-kids-camp.webp");
}

.skills-card {
  background-image: url("https://images.unsplash.com/photo-1519861531473-9200262188bf?auto=format&fit=crop&w=900&q=82");
}

.biddy-card {
  background-image: url("https://images.unsplash.com/photo-1518407613690-d9fc990e795f?auto=format&fit=crop&w=900&q=82");
}

.program-card.hidden {
  display: none;
}

.youth-video-feature {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(260px, 0.58fr);
  gap: clamp(22px, 4vw, 54px);
  align-items: center;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 20%, rgba(77, 147, 255, 0.22), transparent 24rem),
    radial-gradient(circle at 86% 26%, rgba(201, 31, 59, 0.24), transparent 24rem),
    linear-gradient(135deg, #070b14, #0e1f3b 56%, #070b14);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.youth-video-copy {
  max-width: 660px;
}

.youth-video-copy h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(2rem, 4.4vw, 4.1rem);
  line-height: 0.98;
}

.youth-video-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.04rem;
  font-weight: 650;
  line-height: 1.7;
}

.youth-video-card {
  position: relative;
  justify-self: center;
  width: min(100%, 390px);
  aspect-ratio: 9 / 13;
  padding: 10px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.04)),
    rgba(4, 9, 18, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 26px;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.38);
}

.youth-video-card::before {
  position: absolute;
  inset: -2px;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(201, 31, 59, 0.32), transparent 42%),
    linear-gradient(315deg, rgba(77, 147, 255, 0.28), transparent 44%);
  content: "";
  mix-blend-mode: screen;
  opacity: 0.7;
}

.youth-video-card video {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 18px;
}

.youth-page-video {
  grid-template-columns: minmax(260px, 0.58fr) minmax(280px, 0.82fr);
  background:
    radial-gradient(circle at 82% 22%, rgba(77, 147, 255, 0.24), transparent 24rem),
    radial-gradient(circle at 16% 70%, rgba(201, 31, 59, 0.22), transparent 22rem),
    linear-gradient(135deg, #05070d, #0b2341 58%, #05070d);
}

.bingo-feature {
  display: grid;
  grid-template-columns: minmax(320px, 1.05fr) minmax(280px, 0.95fr);
  gap: 22px;
  background:
    linear-gradient(125deg, rgba(8, 26, 54, 0.92), rgba(25, 90, 168, 0.86)),
    url("https://images.unsplash.com/photo-1511193311914-0346f16efe90?auto=format&fit=crop&w=1600&q=82") center / cover;
  color: var(--white);
}

.bingo-feature h2,
.bingo-feature h3 {
  color: var(--white);
}

.bingo-feature p {
  color: rgba(255, 255, 255, 0.82);
}

.bingo-feature .eyebrow {
  color: #ffbac6;
}

.bingo-panel,
.price-drawer {
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, opacity 180ms ease;
}

.schedule {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 30px 0;
}

.schedule div {
  min-height: 92px;
  padding: 17px;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 20px;
}

.schedule strong,
.schedule span {
  display: block;
}

.schedule strong {
  color: var(--white);
}

.schedule span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.87rem;
}

.price-drawer {
  align-self: stretch;
  opacity: 1;
  transition: opacity 180ms ease, transform 180ms ease;
}

.price-drawer[aria-hidden="true"] {
  transform: translateY(6px);
  opacity: 0.56;
}

.price-drawer ul,
.check-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.price-drawer li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.price-drawer li:last-child {
  border-bottom: 0;
}

.price-drawer strong {
  color: var(--white);
  text-align: right;
}

.small-form-link {
  display: block;
  width: fit-content;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.small-form-link:hover {
  color: var(--white);
}

.bingo-page .site-header {
  background: rgba(7, 11, 20, 0.94);
}

.bingo-page h1,
.bingo-page h2,
.bingo-page p,
.bingo-page span,
.bingo-page strong {
  overflow-wrap: anywhere;
}

.bingo-page-hero {
  display: grid;
  min-height: clamp(520px, 70vh, 720px);
  align-items: center;
  padding: clamp(58px, 8vw, 110px) clamp(18px, 5vw, 76px);
  color: var(--white);
  background:
    radial-gradient(circle at 22% 20%, rgba(201, 31, 59, 0.32), transparent 28%),
    radial-gradient(circle at 78% 18%, rgba(77, 147, 255, 0.28), transparent 30%),
    linear-gradient(135deg, rgba(5, 7, 13, 0.84), rgba(8, 26, 54, 0.8)),
    #07111f;
}

.bingo-page-hero > div {
  width: min(760px, 100%);
}

.bingo-page-hero h1 {
  margin: 0 0 18px;
  font-size: clamp(3rem, 7vw, 6.3rem);
  line-height: 0.94;
}

.bingo-page-hero p:not(.eyebrow) {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  font-weight: 650;
}

.bingo-page .site-footer {
  color: var(--white);
  background: #05070d;
}

.bingo-page-details {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(22px, 4vw, 50px);
  align-items: start;
}

.bingo-page-details > * {
  min-width: 0;
}

.bingo-page-card {
  padding: clamp(24px, 4vw, 42px);
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04)),
    rgba(8, 26, 54, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.bingo-page-card h2 {
  color: var(--white);
}

.bingo-price-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.bingo-price-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.bingo-price-list li:last-child {
  border-bottom: 0;
}

.bingo-price-list span {
  color: rgba(255, 255, 255, 0.78);
}

.bingo-price-list strong {
  color: var(--white);
  text-align: right;
}

.small-form-button {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  margin-top: 14px;
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 850;
  text-decoration: none;
}

.small-form-button:hover {
  color: var(--white);
  background: rgba(77, 147, 255, 0.18);
}

@media (max-width: 680px) {
  .bingo-page-hero {
    min-height: auto;
    padding: 52px 18px;
  }

  .bingo-page-hero h1 {
    max-width: 340px;
    font-size: clamp(2.3rem, 11vw, 3.2rem);
    line-height: 1;
  }

  .bingo-page-hero p:not(.eyebrow) {
    max-width: 330px;
  }

  .bingo-page-details {
    grid-template-columns: 1fr;
    padding-right: 14px;
    padding-left: 14px;
  }

  .bingo-page-card {
    padding: 22px 16px;
    border-radius: 20px;
  }

  .bingo-page-card .schedule {
    grid-template-columns: 1fr;
  }

  .bingo-price-list li {
    display: grid;
    gap: 4px;
  }

  .bingo-price-list strong {
    text-align: left;
  }
}

.craft-section {
  background: rgba(255, 255, 255, 0.02);
}

.craft-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(28px, 5vw, 58px);
  align-items: center;
}

.craft-media {
  display: grid;
  gap: 14px;
}

.craft-image {
  min-height: 0;
  aspect-ratio: 2.2 / 1;
  border: 8px solid var(--white);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(8, 26, 54, 0), rgba(8, 26, 54, 0.12)),
    url("assets/photos/craft-show/craft-show-banner.webp") center / cover no-repeat;
  background-color: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.craft-thumbs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.craft-thumb {
  min-height: 150px;
  background-position: center;
  background-size: cover;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--soft-shadow);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.craft-thumb:hover {
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: var(--shadow);
  transform: scale(1.025);
}

.vendor-one {
  background-image:
    linear-gradient(180deg, rgba(8, 26, 54, 0.04), rgba(8, 26, 54, 0.26)),
    url("assets/photos/craft-show/vendor-showcase-2026/vendor-showcase-33.jpeg");
  background-position: center 48%;
}

.vendor-two {
  background-image:
    linear-gradient(180deg, rgba(8, 26, 54, 0.04), rgba(8, 26, 54, 0.26)),
    url("assets/photos/craft-show/vendor-showcase-2026/vendor-showcase-35.jpeg");
  background-position: center;
}

.santa-photo {
  background-image:
    linear-gradient(180deg, rgba(8, 26, 54, 0.04), rgba(8, 26, 54, 0.26)),
    url("assets/photos/craft-show/vendor-showcase-2026/vendor-showcase-01.jpeg");
  background-position: center 46%;
}

.craft-details {
  display: grid;
  gap: 16px;
}

.date-card,
.donation-card {
  padding: 24px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line);
  border-radius: 24px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.date-card {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 18px;
  align-items: center;
}

.date-card strong,
.date-card span {
  display: block;
}

.date-card strong {
  color: var(--red);
  font-size: 2rem;
  line-height: 1;
}

.date-card span {
  color: var(--muted);
  font-weight: 800;
}

.check-list {
  display: grid;
  gap: 11px;
  margin: 10px 0;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--muted);
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 2px;
  width: 19px;
  height: 19px;
  background: var(--blue);
  border-radius: 50%;
  content: "";
}

.check-list li::after {
  position: absolute;
  left: 7px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid var(--white);
  border-width: 0 2px 2px 0;
  content: "";
  transform: rotate(45deg);
}

.events-section {
  background:
    radial-gradient(circle at 18% 18%, rgba(77, 147, 255, 0.18), transparent 30%),
    radial-gradient(circle at 86% 16%, rgba(201, 31, 59, 0.18), transparent 28%),
    linear-gradient(135deg, rgba(7, 11, 20, 0.98), rgba(12, 25, 47, 0.96) 54%, rgba(39, 18, 35, 0.96));
  color: var(--white);
}


.events-section .section-heading h2,
.events-section .section-heading p {
  color: var(--white);
}

.events-section .eyebrow {
  color: #9fc8ff;
}

.events-section .section-heading > p:not(.eyebrow) {
  color: rgba(232, 238, 248, 0.82);
}

.events-section .tab {
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
}

.events-section .tab.active {
  color: var(--white);
  background: var(--blue);
  border-color: rgba(114, 183, 255, 0.7);
  box-shadow: 0 14px 34px rgba(25, 90, 168, 0.32);
}
.tab-panels {
  margin-top: 18px;
}

.tab-panel {
  display: none;
  max-width: 950px;
  min-height: 190px;
  padding: clamp(26px, 4vw, 42px);
  background: rgba(7, 11, 20, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-top: 7px solid var(--red);
  border-radius: 26px;
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(12px);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.tab-panel.active {
  display: block;
}

.tab-panel h3 {
  color: var(--white);
}

.tab-panel p {
  max-width: 760px;
  color: rgba(232, 238, 248, 0.84);
  font-size: 1.06rem;
}

.donation-section {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(260px, 430px);
  gap: clamp(28px, 5vw, 74px);
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(201, 31, 59, 0.88), rgba(8, 26, 54, 0.92)),
    url("https://images.unsplash.com/photo-1593113598332-cd288d649433?auto=format&fit=crop&w=1500&q=82") center / cover;
}

.donation-section h2,
.donation-section p,
.donation-section .eyebrow {
  color: var(--white);
}

.donation-card {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
}

.donation-card strong {
  color: var(--red);
  font-size: 1.15rem;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(32px, 6vw, 82px);
  align-items: start;
  background: rgba(255, 255, 255, 0.02);
}

.contact-copy a {
  color: var(--blue);
  font-weight: 850;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: clamp(24px, 4vw, 36px);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--soft-shadow);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.impact-strip article:hover,
.welcome-cards article:hover,
.program-card:hover,
.bingo-panel:hover,
.price-drawer:hover,
.date-card:hover,
.donation-card:hover,
.tab-panel.active:hover,
.contact-form:hover {
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: var(--shadow);
  transform: scale(1.025);
}

label {
  display: grid;
  gap: 7px;
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid #cbd5e1;
  border-radius: 14px;
  font: inherit;
}

input::placeholder,
textarea::placeholder {
  color: #8390a3;
}

textarea {
  min-height: 128px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 4px solid rgba(25, 90, 168, 0.16);
  border-color: var(--blue);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto auto;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  padding: 30px clamp(18px, 5vw, 76px);
  color: rgba(255, 255, 255, 0.78);
  background: var(--navy);
}

.site-footer strong {
  display: block;
  color: var(--white);
}

.site-footer span {
  display: block;
  margin-top: 4px;
}

.site-footer a {
  color: var(--white);
  font-weight: 850;
  text-decoration: none;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 16px;
  max-width: 520px;
}

@media (max-width: 1060px) {
  .hero,
  .split,
  .youth-video-feature,
  .bingo-feature,
  .craft-layout,
  .donation-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .section-copy {
    position: static;
  }

  .impact-strip {
    grid-template-columns: repeat(3, minmax(120px, 1fr));
  }

  .quick-paths,
  .welcome-cards {
    grid-template-columns: 1fr;
  }

  .mission-video-row {
    grid-template-columns: 1fr;
  }

  .event-calendar {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .impact-strip::before {
    grid-column: 1 / -1;
    min-height: 360px;
  }
}

@media (max-width: 960px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 95px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    background: rgba(7, 11, 20, 0.98);
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .program-grid,
  .intro-grid,
  .quick-paths,
  .welcome-cards {
    grid-template-columns: 1fr;
  }

  .quick-paths {
    padding-top: 34px;
  }

  .youth-video-card {
    width: min(100%, 340px);
  }

  .mission-video-card {
    width: min(100%, 260px);
  }
}

@media (max-width: 680px) {
  .site-header {
    padding-inline: 14px;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 560px;
  }

  .hero-banner {
    height: 100%;
  }

  .hero-content {
    width: calc(100% - 28px);
    padding: 22px 18px;
    border-radius: 24px;
  }

  h1 {
    font-size: clamp(2.55rem, 14vw, 4rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3.15rem);
  }

  .hero-actions .button {
    width: 100%;
  }

  .youth-video-feature {
    padding-inline: 14px;
  }

  .youth-video-copy {
    width: min(100%, 340px);
  }

  .youth-video-copy h2 {
    font-size: clamp(1.95rem, 9vw, 2.8rem);
    line-height: 1.03;
  }

  .youth-video-card {
    width: min(100%, 280px);
    padding: 7px;
    border-radius: 22px;
  }

  .youth-video-card video {
    border-radius: 16px;
  }

  .calendar-showcase {
    grid-template-columns: 36px minmax(0, 1fr) 36px;
    gap: 8px;
    width: min(620px, 100%);
  }

  .calendar-arrow {
    display: grid;
    width: 36px;
    height: 36px;
    font-size: 1.35rem;
  }

  .calendar-feature {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 10px;
    min-height: 0;
    padding: 12px;
    border-radius: 18px;
  }

  .calendar-month {
    min-height: 62px;
    border-radius: 14px;
  }

  .calendar-days {
    font-size: clamp(2rem, 12vw, 3rem);
  }

  .calendar-feature > div {
    grid-column: 1 / -1;
  }

  .calendar-feature h3 {
    font-size: 1.2rem;
  }

  .calendar-copy {
    font-size: 0.84rem;
  }

  .event-calendar {
    grid-template-columns: none;
    grid-auto-columns: minmax(118px, 138px);
    grid-auto-flow: column;
    gap: 6px;
    overflow-x: auto;
    padding: 2px 2px 10px;
    scroll-snap-type: x proximity;
  }

  .event-card {
    min-height: 70px;
    padding: 8px;
    scroll-snap-align: start;
  }

  .nike-camp-callout {
    grid-template-columns: 1fr;
    gap: 8px;
    width: min(340px, 100%);
    margin-top: 16px;
    padding: 16px;
    border-radius: 20px;
    text-align: center;
  }

  .nike-basketball-wrap {
    min-height: 112px;
  }

  .nike-basketball {
    width: 86px;
  }

  .nike-basketball-shadow {
    bottom: 7px;
    width: 70px;
  }

  .nike-camp-copy h3 {
    font-size: 1.32rem;
    line-height: 1.08;
  }

  .nike-camp-copy p:not(.eyebrow) {
    font-size: 0.86rem;
  }

  .nike-camp-actions {
    display: grid;
  }

  .impact-strip,
  .schedule {
    grid-template-columns: 1fr;
  }

  .impact-strip::before {
    min-height: 280px;
    border-width: 7px;
    border-radius: 26px;
  }

  .date-card {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .craft-image {
    aspect-ratio: 2.2 / 1;
    border-width: 6px;
    border-radius: 22px;
  }

  .craft-thumbs {
    grid-template-columns: 1fr;
  }

  .craft-thumb {
    min-height: 210px;
  }

  .site-footer {
    align-items: flex-start;
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

.email-popup {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 18px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.email-popup.is-open {
  opacity: 1;
  pointer-events: auto;
}

.email-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 6, 12, 0.76);
  backdrop-filter: blur(8px);
}

.email-popup-card {
  position: relative;
  width: min(540px, 100%);
  max-height: calc(100vh - 36px);
  overflow-y: auto;
  padding: clamp(24px, 4vw, 36px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(201, 31, 59, 0.18), rgba(77, 147, 255, 0.16)),
    rgba(10, 18, 32, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 28px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.46);
  transform: translateY(18px) scale(0.98);
  transition: transform 180ms ease;
}

.email-popup.is-open .email-popup-card {
  transform: translateY(0) scale(1);
}

.email-popup-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  padding: 0;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  box-shadow: none;
  font-size: 1.6rem;
  line-height: 1;
}

.email-popup-logo {
  display: block;
  width: 82px;
  height: 82px;
  object-fit: contain;
  margin-bottom: 16px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  box-shadow: var(--soft-shadow);
}

.email-popup-card h2 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 5vw, 3.1rem);
}

.email-popup-card p {
  color: rgba(255, 255, 255, 0.78);
}

.email-popup-form {
  display: grid;
  gap: 13px;
  margin-top: 20px;
}

.email-popup-form label {
  color: var(--white);
}

.email-popup-form input,
.email-popup-form select {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  font: inherit;
}

.email-popup-form select option {
  color: #101827;
}

.email-popup-form .button {
  width: 100%;
  margin-top: 4px;
}

.hidden-field {
  position: absolute;
  left: -9999px;
}

.email-popup-later {
  width: 100%;
  min-height: 42px;
  margin-top: 10px;
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.72);
  background: transparent;
  border: 0;
  box-shadow: none;
  font-weight: 850;
}

.craft-page .site-header {
  position: sticky;
}

.craft-page-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1.12fr);
  gap: clamp(24px, 5vw, 62px);
  align-items: center;
  min-height: calc(100vh - 98px);
  padding: clamp(58px, 8vw, 104px) clamp(18px, 5vw, 72px) clamp(34px, 6vw, 68px);
  background:
    linear-gradient(135deg, rgba(201, 31, 59, 0.13), rgba(77, 147, 255, 0.13)),
    radial-gradient(circle at 78% 22%, rgba(255, 255, 255, 0.12), transparent 28%);
}

.craft-page-hero-copy {
  max-width: 680px;
}

.craft-page-hero h1 {
  margin: 0 0 18px;
  color: var(--white);
  font-size: clamp(3rem, 8vw, 6.7rem);
  line-height: 0.94;
}

.craft-page-hero-copy > p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(232, 238, 248, 0.82);
  font-size: clamp(1rem, 1.9vw, 1.2rem);
}

.craft-page-banner {
  min-height: min(68vh, 620px);
  background:
    linear-gradient(180deg, rgba(5, 7, 13, 0.06), rgba(5, 7, 13, 0.2)),
    url("assets/photos/craft-show/craft-show-banner.webp") center / cover no-repeat;
  border: 10px solid rgba(255, 255, 255, 0.92);
  border-radius: 30px;
  box-shadow: 0 32px 86px rgba(0, 0, 0, 0.42);
}

.craft-date-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 0 clamp(18px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--soft-shadow);
  transform: translateY(-18px);
}

.craft-date-band article {
  padding: clamp(20px, 3vw, 30px);
  background: rgba(16, 24, 39, 0.92);
}

.craft-date-band span,
.craft-info-grid h3,
.vendor-card h3,
.details-list strong {
  color: var(--blue);
}

.craft-date-band span {
  display: block;
  font-weight: 900;
  text-transform: uppercase;
}

.craft-date-band strong {
  display: block;
  color: var(--white);
  font-size: clamp(2.1rem, 4vw, 3.8rem);
  line-height: 1;
}

.craft-date-band p {
  margin: 8px 0 0;
  color: var(--muted);
  font-weight: 750;
}

.craft-page-intro {
  padding-top: clamp(34px, 6vw, 72px);
}

.craft-info-grid,
.details-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.craft-info-grid article,
.details-list article,
.vendor-card {
  padding: clamp(20px, 3vw, 28px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035)),
    rgba(16, 24, 39, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  box-shadow: var(--soft-shadow);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.craft-info-grid article:hover,
.details-list article:hover,
.vendor-card:hover {
  border-color: rgba(77, 147, 255, 0.42);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.34);
  transform: translateY(-4px) scale(1.015);
}

.craft-info-grid h3,
.vendor-card h3 {
  margin-top: 0;
  font-size: 1.14rem;
}

.craft-info-grid p,
.details-list p,
.vendor-card p {
  color: var(--muted);
}

.craft-gallery-section {
  padding-top: 24px;
}

.craft-page-gallery {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  grid-auto-rows: 230px;
  gap: 16px;
  margin-top: 30px;
}

.craft-page-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 8px solid rgba(255, 255, 255, 0.9);
  border-radius: 24px;
  box-shadow: var(--soft-shadow);
  transition: transform 180ms ease, filter 180ms ease;
}

.craft-page-gallery img:first-child {
  grid-row: span 2;
}

.craft-page-gallery img:hover {
  filter: saturate(1.08) brightness(1.05);
  transform: translateY(-4px) scale(1.012);
}

.craft-page-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 0.72fr);
  gap: clamp(22px, 5vw, 58px);
  align-items: stretch;
}

.craft-page-split > div:first-child {
  padding: clamp(26px, 4vw, 42px);
  background:
    linear-gradient(135deg, rgba(201, 31, 59, 0.16), rgba(77, 147, 255, 0.1)),
    rgba(16, 24, 39, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
}

.craft-page-split p {
  color: var(--muted);
}

.visitor-details {
  padding-top: 28px;
}

.details-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.details-list strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .craft-page-hero,
  .craft-page-split {
    grid-template-columns: 1fr;
  }

  .craft-page-hero {
    min-height: auto;
  }

  .craft-page-banner {
    min-height: 420px;
  }

  .craft-date-band,
  .craft-info-grid,
  .details-list {
    grid-template-columns: 1fr;
  }

  .craft-page-gallery {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .craft-page-hero {
    padding-top: 42px;
  }

  .craft-page-banner {
    min-height: 300px;
    border-width: 7px;
    border-radius: 24px;
  }

  .craft-page-gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }

  .craft-page-gallery img:first-child {
    grid-row: span 1;
  }
}

.craft-page {
  background:
    radial-gradient(circle at top, rgba(77, 147, 255, 0.12), transparent 34%),
    linear-gradient(180deg, #303744 0%, #272e39 44%, #111722 100%);
}

.craft-page .top-alert {
  background: linear-gradient(90deg, #8f3d44, #1f5e9d);
}

.craft-page .craft-page-hero {
  display: block;
  min-height: auto;
  padding: 0 0 clamp(34px, 6vw, 72px);
  background:
    linear-gradient(180deg, rgba(17, 23, 34, 0.08), rgba(17, 23, 34, 0.5)),
    #303744;
}

.craft-page .craft-page-banner {
  width: min(1120px, calc(100% - 32px));
  min-height: clamp(240px, 38vw, 430px);
  margin: 0 auto clamp(42px, 6vw, 72px);
  background:
    linear-gradient(180deg, rgba(5, 7, 13, 0.02), rgba(5, 7, 13, 0.08)),
    url("assets/photos/craft-show/craft-show-banner.webp") center / cover no-repeat;
  border: 0;
  border-radius: 0;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.craft-page .craft-page-hero-copy {
  position: relative;
  width: min(980px, calc(100% - 36px));
  max-width: none;
  margin: 0 auto;
  padding: 0 clamp(8px, 3vw, 34px);
  text-align: center;
}

.craft-annual,
.craft-year {
  margin: 0;
  color: #f8fbff;
  text-transform: uppercase;
  text-shadow:
    0 2px 0 rgba(77, 147, 255, 0.75),
    0 5px 12px rgba(0, 0, 0, 0.62);
}

.craft-annual {
  font-size: clamp(2rem, 5vw, 3.8rem);
  letter-spacing: 0.08em;
}

.craft-year {
  margin-top: 4px;
  font-size: clamp(2rem, 4.8vw, 3.5rem);
  letter-spacing: 0.04em;
}

.craft-page .craft-page-hero h1 {
  margin: 8px 0 34px;
  color: #ffffff;
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: clamp(2.35rem, 6.2vw, 5rem);
  font-weight: 800;
  line-height: 1;
  text-shadow:
    0 2px 0 #4d93ff,
    0 5px 10px rgba(0, 0, 0, 0.72);
  text-transform: none;
}

.holiday-mark {
  position: absolute;
  top: 108px;
  right: 0;
  display: block;
  width: clamp(44px, 8vw, 82px);
  height: clamp(58px, 10vw, 104px);
  background:
    linear-gradient(135deg, transparent 50%, #b9d4c0 0) 50% 8% / 72% 26% no-repeat,
    linear-gradient(135deg, transparent 50%, #9fbea9 0) 50% 38% / 92% 28% no-repeat,
    linear-gradient(135deg, transparent 50%, #809c86 0) 50% 68% / 100% 30% no-repeat;
  filter: drop-shadow(0 6px 8px rgba(0, 0, 0, 0.32));
}

.holiday-mark::before {
  position: absolute;
  top: -10px;
  left: 50%;
  color: #ff4a3e;
  content: "*";
  font-size: 2rem;
  font-weight: 950;
  transform: translateX(-50%);
}

.holiday-mark::after {
  position: absolute;
  right: 40%;
  bottom: 0;
  width: 9px;
  height: 20px;
  background: #c98a46;
  border-radius: 4px;
  content: "";
}

.craft-page .craft-page-hero-copy > p:not(.craft-annual):not(.craft-year) {
  max-width: 900px;
  margin: 0 auto 14px;
  color: #ffffff;
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  font-weight: 760;
  line-height: 1.72;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.48);
}

.craft-hero-date {
  width: min(880px, 100%);
  margin: clamp(28px, 5vw, 44px) auto 26px;
  padding: 14px 8px 10px;
  border-top: 3px dotted rgba(255, 255, 255, 0.9);
  border-bottom: 3px dotted rgba(255, 255, 255, 0.9);
}

.craft-hero-date span {
  display: block;
  color: #9fd2ff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 7vw, 5.2rem);
  font-weight: 900;
  line-height: 0.92;
  text-transform: uppercase;
  text-shadow: 0 3px 0 rgba(255, 255, 255, 0.18);
}

.craft-hero-date strong {
  display: block;
  color: #ffffff;
  font-size: clamp(0.84rem, 1.6vw, 1.1rem);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.craft-page .craft-page-hero .hero-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 1fr));
  gap: 16px;
  width: min(760px, 100%);
  margin: 0 auto;
  padding: 0 clamp(4px, 2vw, 18px);
}

.craft-page .craft-page-hero .button {
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  background: #914549;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.24);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.craft-page .craft-date-band {
  margin-top: 0;
  transform: none;
}

@media (max-width: 760px) {
  .holiday-mark {
    position: relative;
    top: auto;
    right: auto;
    margin: -14px auto 18px;
  }

  .craft-page .craft-page-hero .hero-actions {
    grid-template-columns: 1fr;
  }
}

.music-toggle {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 46px;
  padding: 10px 16px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(145, 69, 73, 0.94), rgba(31, 94, 157, 0.94)),
    rgba(16, 24, 39, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  backdrop-filter: blur(12px);
}

.music-toggle-icon {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  color: #162033;
  background: #ffffff;
  border-radius: 50%;
  font-size: 1.05rem;
  line-height: 1;
}

.music-toggle.is-playing .music-toggle-icon {
  color: #ffffff;
  background: var(--blue);
}

@media (max-width: 620px) {
  .music-toggle {
    right: 12px;
    bottom: 12px;
    max-width: calc(100% - 24px);
    padding: 9px 12px;
    font-size: 0.85rem;
  }
}

@media (hover: none), (pointer: coarse) {
  .christmas-page {
    cursor: auto;
  }

  .glow-cursor,
  .cursor-snowflake {
    display: none;
  }
}

.christmas-page {
  color: #fff8ec;
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 245, 212, 0.18), transparent 24%),
    radial-gradient(circle at 86% 18%, rgba(199, 31, 45, 0.24), transparent 28%),
    radial-gradient(circle at 70% 78%, rgba(45, 117, 86, 0.26), transparent 30%),
    linear-gradient(135deg, #1c2d27 0%, #772d35 48%, #13251f 100%);
  cursor: none;
}

.christmas-page::before {
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.34) 1px, transparent 1.5px),
    linear-gradient(45deg, rgba(255, 255, 255, 0.035) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.035) 50%, rgba(255, 255, 255, 0.035) 75%, transparent 75%, transparent);
  background-size: 28px 28px, 34px 34px;
  opacity: 0.62;
}

.christmas-page .top-alert {
  background:
    linear-gradient(90deg, #9d1d2b, #f5cf76 50%, #1f6b4d);
  color: #ffffff;
}

.christmas-page .site-header {
  background: rgba(18, 31, 27, 0.9);
}

.christmas-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  min-height: calc(100vh - 98px);
  padding: clamp(52px, 8vw, 104px) clamp(18px, 5vw, 76px) clamp(38px, 7vw, 76px);
  overflow: hidden;
}

.christmas-hero-video,
.christmas-hero-shade {
  position: absolute;
  inset: 0;
}

.christmas-hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.04);
}

.christmas-hero-shade {
  background:
    linear-gradient(90deg, rgba(19, 37, 31, 0.9) 0%, rgba(19, 37, 31, 0.72) 42%, rgba(118, 36, 43, 0.58) 100%),
    radial-gradient(circle at 75% 24%, rgba(245, 207, 118, 0.28), transparent 28%),
    linear-gradient(180deg, rgba(18, 31, 27, 0.34), rgba(18, 31, 27, 0.84));
}

.christmas-hero::before,
.christmas-hero::after {
  position: absolute;
  pointer-events: none;
  content: "";
}

.christmas-hero::before {
  inset: 20px;
  border: 1px solid rgba(255, 246, 220, 0.2);
  border-radius: 34px;
}

.christmas-hero::after {
  top: 0;
  right: -90px;
  width: 340px;
  height: 340px;
  background:
    radial-gradient(circle, rgba(245, 207, 118, 0.36), transparent 62%);
  filter: blur(4px);
}

.christmas-hero-copy,
.christmas-hero-card {
  position: relative;
  z-index: 1;
}

.christmas-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  padding: 9px 14px;
  color: #13251f;
  background: #f5cf76;
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
  font-size: 0.85rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.christmas-kicker::before {
  width: 9px;
  height: 9px;
  background: #9d1d2b;
  border-radius: 50%;
  content: "";
}

.christmas-hero h1 {
  margin: 0 0 18px;
  color: #fffdf7;
  font-family: Georgia, "Times New Roman", serif;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  font-size: clamp(3.2rem, 7.4vw, 7.15rem);
  line-height: 0.88;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.34);
}

.christmas-hero-copy > p:not(.christmas-kicker) {
  max-width: 650px;
  color: rgba(255, 248, 236, 0.9);
  font-size: clamp(1rem, 1.8vw, 1.22rem);
  font-weight: 650;
}

.christmas-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.christmas-hero-card {
  padding: clamp(10px, 1.6vw, 16px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.08));
  border: 1px solid rgba(255, 246, 220, 0.28);
  border-radius: 30px;
  box-shadow: 0 30px 85px rgba(0, 0, 0, 0.38);
}

.christmas-hero-card img {
  display: block;
  width: 100%;
  min-height: 320px;
  object-fit: cover;
  border: 8px solid rgba(255, 248, 236, 0.95);
  border-radius: 22px;
}

.hero-photo-collage {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: 210px 210px;
  gap: 10px;
}

.hero-photo-collage img {
  min-height: 0;
  height: 100%;
  object-fit: cover;
  border: 6px solid rgba(255, 248, 236, 0.95);
  border-radius: 20px;
  filter: saturate(1.08) contrast(1.02);
}

.hero-photo-collage img:first-child {
  grid-row: span 2;
}


.vendor-showcase {
  overflow: hidden;
  padding: clamp(14px, 2vw, 20px);
  color: #fff8ec;
  background:
    radial-gradient(circle at 50% 12%, rgba(245, 207, 118, 0.18), transparent 34%),
    linear-gradient(145deg, rgba(18, 37, 31, 0.9), rgba(157, 29, 43, 0.62));
  border: 1px solid rgba(245, 207, 118, 0.34);
  border-radius: 24px;
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.3);
}

.vendor-showcase-kicker,
.vendor-showcase-title {
  margin: 0;
  text-align: center;
}

.vendor-showcase-kicker {
  color: #f5cf76;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.vendor-showcase-title {
  max-width: 520px;
  margin: 7px auto 0;
  color: #ffffff;
  font-size: clamp(1rem, 1.55vw, 1.32rem);
  font-weight: 950;
  line-height: 1.18;
  text-shadow: 0 0 18px rgba(245, 207, 118, 0.28);
}

.vendor-showcase-track {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(240px, 34vw, 360px);
  margin-top: clamp(16px, 2vw, 24px);
  gap: clamp(8px, 1.5vw, 16px);
}

.vendor-showcase-slide {
  flex: 0 0 28%;
  height: clamp(190px, 27vw, 305px);
  margin: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 30%, rgba(255, 248, 236, 0.16), transparent 42%),
    linear-gradient(145deg, rgba(18, 37, 31, 0.98), rgba(157, 29, 43, 0.86));
  border: 4px solid rgba(255, 248, 236, 0.92);
  border-radius: 18px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.32);
  opacity: 0.76;
  transform: scale(0.88);
  transition: transform 420ms ease, opacity 420ms ease, box-shadow 420ms ease;
}

.vendor-showcase-slide.is-center {
  flex-basis: 38%;
  opacity: 1;
  transform: scale(1.1);
  z-index: 2;
  box-shadow:
    0 0 0 5px rgba(200, 16, 46, 0.42),
    0 26px 64px rgba(0, 0, 0, 0.42);
}

.vendor-showcase-slide img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.vendor-showcase-dots {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-top: 18px;
}

.vendor-showcase-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 248, 236, 0.46);
  transition: width 240ms ease, background 240ms ease;
}

.vendor-showcase-dot.active {
  width: 22px;
  background: #f5cf76;
}

.hero-ticket {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin-top: 12px;
  overflow: hidden;
  border-radius: 18px;
}

.hero-ticket span,
.hero-ticket strong {
  display: grid;
  min-height: 64px;
  place-items: center;
  padding: 12px;
  text-align: center;
  text-transform: uppercase;
}

.hero-ticket span {
  color: #13251f;
  background: #fff8ec;
  font-weight: 950;
}

.hero-ticket strong {
  color: #ffffff;
  background: #9d1d2b;
}

.ornament-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(132px, 1fr));
  gap: clamp(10px, 1.4vw, 16px);
  width: min(1040px, calc(100% - 36px));
  margin: -18px auto 0;
  position: relative;
  z-index: 2;
}

.ornament-row article {
  position: relative;
  display: grid;
  aspect-ratio: 1;
  min-height: 0;
  padding: clamp(28px, 2.4vw, 34px) 14px 18px;
  place-items: center;
  overflow: visible;
  text-align: center;
  background:
    radial-gradient(circle at 34% 24%, rgba(255, 255, 255, 0.5), transparent 17%),
    radial-gradient(circle at 68% 72%, rgba(245, 207, 118, 0.2), transparent 30%),
    linear-gradient(145deg, #c8243d, #741522 78%);
  border: 2px solid rgba(255, 246, 220, 0.42);
  border-radius: 50%;
  box-shadow:
    0 0 0 7px rgba(255, 248, 236, 0.05) inset,
    0 0 28px rgba(245, 207, 118, 0.22),
    0 18px 42px rgba(0, 0, 0, 0.32);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.ornament-row article:nth-child(even) {
  background:
    radial-gradient(circle at 34% 24%, rgba(255, 255, 255, 0.42), transparent 17%),
    radial-gradient(circle at 68% 72%, rgba(245, 207, 118, 0.16), transparent 30%),
    linear-gradient(145deg, #237a56, #123b2e 78%);
}

.ornament-row article:nth-child(5) {
  background:
    radial-gradient(circle at 34% 24%, rgba(255, 255, 255, 0.48), transparent 17%),
    radial-gradient(circle at 68% 72%, rgba(200, 16, 46, 0.18), transparent 30%),
    linear-gradient(145deg, #fff8ec, #f5cf76 76%);
  color: #13251f;
}

.ornament-row article::before {
  position: absolute;
  top: -13px;
  left: 50%;
  width: 34px;
  height: 22px;
  background: linear-gradient(180deg, #fff8ec, #d9a92f);
  border: 1px solid rgba(255, 248, 236, 0.88);
  border-radius: 9px 9px 4px 4px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
  content: "";
  transform: translateX(-50%);
}

.ornament-row article::after {
  position: absolute;
  top: -30px;
  left: 50%;
  width: 26px;
  height: 22px;
  border: 3px solid rgba(245, 207, 118, 0.9);
  border-bottom: 0;
  border-radius: 999px 999px 0 0;
  content: "";
  transform: translateX(-50%);
}

.ornament-row article:hover {
  box-shadow:
    0 0 0 8px rgba(255, 248, 236, 0.08) inset,
    0 0 42px rgba(245, 207, 118, 0.36),
    0 24px 56px rgba(0, 0, 0, 0.38);
  transform: translateY(-6px) scale(1.035) rotate(-1.5deg);
}

.ornament-row span,
.ornament-row strong,
.ornament-row p {
  position: relative;
  z-index: 1;
}

.ornament-row span {
  display: block;
  color: #f5cf76;
  font-size: clamp(0.64rem, 0.8vw, 0.75rem);
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ornament-row strong {
  display: block;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.2rem, 1.9vw, 1.75rem);
  line-height: 0.98;
}

.ornament-row p {
  margin: 7px 0 0;
  color: rgba(255, 248, 236, 0.84);
  font-size: clamp(0.68rem, 0.8vw, 0.82rem);
  font-weight: 850;
  line-height: 1.18;
}

.ornament-row article:nth-child(5) span,
.ornament-row article:nth-child(5) strong,
.ornament-row article:nth-child(5) p {
  color: #13251f;
}
.santa-dance-strip {
  position: relative;
  width: 100%;
  margin: 22px 0 0;
  padding: 10px 0;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(157, 29, 43, 0.96), rgba(245, 207, 118, 0.86), rgba(31, 107, 77, 0.96));
  border-top: 1px solid rgba(255, 248, 236, 0.28);
  border-bottom: 1px solid rgba(255, 248, 236, 0.28);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.2);
}

.santa-dance-strip::before,
.santa-dance-strip::after {
  position: absolute;
  top: 0;
  z-index: 2;
  width: 90px;
  height: 100%;
  pointer-events: none;
  content: "";
}

.santa-dance-strip::before {
  left: 0;
  background: linear-gradient(90deg, rgba(28, 45, 39, 0.86), transparent);
}

.santa-dance-strip::after {
  right: 0;
  background: linear-gradient(270deg, rgba(28, 45, 39, 0.86), transparent);
}

.santa-dance-track {
  display: flex;
  width: max-content;
  align-items: center;
  animation: santaParade 14s linear infinite;
  will-change: transform;
}

.santa-dance-set {
  display: flex;
  flex: 0 0 auto;
  gap: clamp(4px, 1.2vw, 12px);
  align-items: center;
  padding-right: clamp(4px, 1.2vw, 12px);
}

.santa-dance-track img {
  width: clamp(58px, 7.5vw, 94px);
  height: clamp(58px, 7.5vw, 94px);
  object-fit: contain;
  filter: drop-shadow(0 8px 8px rgba(0, 0, 0, 0.28));
}

@keyframes santaParade {
  from {
    transform: translateX(0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.christmas-intro,
.christmas-gallery-section,
.christmas-details {
  position: relative;
}

.christmas-intro {
  overflow: hidden;
}

.section-bg-video,
.section-video-shade {
  position: absolute;
  inset: 0;
}

.section-bg-video {
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.06);
}

.section-video-shade {
  z-index: -2;
  background:
    linear-gradient(135deg, rgba(18, 37, 31, 0.9), rgba(117, 39, 47, 0.78)),
    radial-gradient(circle at 50% 20%, rgba(245, 207, 118, 0.18), transparent 30%);
}

.christmas-intro::before,
.christmas-gallery-section::before {
  position: absolute;
  inset: 18px clamp(18px, 5vw, 72px);
  z-index: -1;
  background:
    linear-gradient(135deg, rgba(26, 42, 35, 0.86), rgba(117, 39, 47, 0.72)),
    url("assets/photos/craft-show/2024/craft-show-2024-09.webp") center / cover no-repeat,
    linear-gradient(135deg, rgba(255, 248, 236, 0.1), rgba(245, 207, 118, 0.05));
  border: 1px solid rgba(255, 246, 220, 0.14);
  border-radius: 34px;
  content: "";
}

.christmas-intro::before {
  background:
    linear-gradient(135deg, rgba(255, 248, 236, 0.08), rgba(245, 207, 118, 0.04));
}

.christmas-gallery-section::before {
  background:
    linear-gradient(135deg, rgba(18, 37, 31, 0.88), rgba(117, 39, 47, 0.7)),
    url("assets/photos/craft-show/2024/craft-show-extra-01.webp") center / cover no-repeat;
}

.gift-grid,
.snow-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.christmas-page .gift-grid {
  width: min(980px, 100%);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin: 18px auto 0;
}

.christmas-page .gift-grid article {
  position: relative;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  min-height: 104px;
  padding: 14px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 248, 236, 0.18), rgba(255, 248, 236, 0.04)),
    linear-gradient(135deg, rgba(157, 29, 43, 0.64), rgba(18, 37, 31, 0.92));
  border: 1px solid rgba(245, 207, 118, 0.5);
  border-radius: 14px;
  box-shadow:
    0 0 0 1px rgba(255, 248, 236, 0.08) inset,
    0 0 26px rgba(245, 207, 118, 0.14),
    0 18px 42px rgba(0, 0, 0, 0.24);
}

.christmas-page .gift-grid article:nth-child(even) {
  background:
    linear-gradient(135deg, rgba(255, 248, 236, 0.16), rgba(255, 248, 236, 0.04)),
    linear-gradient(135deg, rgba(31, 107, 77, 0.74), rgba(18, 37, 31, 0.92));
}

.christmas-page .gift-grid article::before {
  position: absolute;
  inset: -80% auto -80% -35%;
  width: 28%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  content: "";
  transform: rotate(18deg);
  animation: cardShine 4.8s ease-in-out infinite;
}

.christmas-page .gift-grid article::after {
  position: absolute;
  inset: 6px;
  border: 1px dashed rgba(245, 207, 118, 0.28);
  border-radius: 10px;
  content: "";
  pointer-events: none;
}

.christmas-page .gift-grid article:hover {
  border-color: rgba(255, 248, 236, 0.78);
  box-shadow:
    0 0 0 1px rgba(255, 248, 236, 0.16) inset,
    0 0 34px rgba(245, 207, 118, 0.34),
    0 22px 58px rgba(0, 0, 0, 0.32);
  transform: translateY(-3px) scale(1.018);
}

.christmas-page .gift-grid span {
  flex: 0 0 auto;
  position: relative;
  z-index: 1;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: #13251f;
  background:
    radial-gradient(circle at 35% 28%, #fff8ec, #f5cf76 68%);
  border-radius: 50%;
  box-shadow:
    0 0 20px rgba(245, 207, 118, 0.42),
    0 8px 18px rgba(0, 0, 0, 0.22);
  font-size: 0.72rem;
}

.gift-card-copy,
.christmas-page .gift-grid h3,
.christmas-page .gift-grid p {
  position: relative;
  z-index: 1;
}

.gift-card-copy {
  min-width: 0;
}

.christmas-page .gift-grid h3 {
  margin: 0 0 2px;
  color: #ffffff;
  font-size: 0.98rem;
  line-height: 1.12;
  text-shadow: 0 0 12px rgba(245, 207, 118, 0.2);
}

.christmas-page .gift-grid p {
  margin: 0;
  color: rgba(255, 248, 236, 0.84);
  font-size: 0.82rem;
  line-height: 1.34;
}

@keyframes cardShine {
  0%,
  42% {
    transform: translateX(0) rotate(18deg);
  }

  70%,
  100% {
    transform: translateX(520%) rotate(18deg);
  }
}

.gift-grid article,
.snow-card-grid article {
  padding: clamp(22px, 3vw, 32px);
  color: #fff8ec;
  background:
    linear-gradient(145deg, rgba(255, 248, 236, 0.12), rgba(255, 248, 236, 0.055)),
    rgba(18, 37, 31, 0.82);
  border: 1px solid rgba(255, 246, 220, 0.18);
  border-radius: 22px;
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.28);
  transition: transform 180ms ease, border-color 180ms ease;
}

.gift-grid article:hover,
.snow-card-grid article:hover {
  border-color: rgba(245, 207, 118, 0.52);
  transform: translateY(-5px) scale(1.015);
}

.gift-grid span {
  color: #f5cf76;
  font-weight: 950;
}

.gift-grid h3,
.snow-card-grid strong {
  display: block;
  margin: 10px 0 8px;
  color: #ffffff;
  font-size: 1.18rem;
}

.gift-grid p,
.snow-card-grid p {
  color: rgba(255, 248, 236, 0.78);
}

.christmas-feature {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(26px, 5vw, 62px);
  align-items: center;
}

.feature-photo-stack {
  position: relative;
  min-height: 520px;
}

.feature-photo-stack img,
.feature-photo-stack video {
  position: absolute;
  width: 72%;
  height: 330px;
  object-fit: cover;
  border: 10px solid #fff8ec;
  border-radius: 28px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.34);
}

.feature-photo-stack img:first-child {
  top: 0;
  left: 0;
}

.feature-photo-stack video:last-child {
  right: 0;
  bottom: 0;
}


.feature-stack-video {
  background: #08120f;
  filter: saturate(1.08) contrast(1.04);
}
.christmas-feature h2,
.vendor-workshop h2,
.christmas-details h2 {
  color: #fffdf7;
}

.christmas-feature p,
.vendor-workshop p {
  color: rgba(255, 248, 236, 0.82);
}

.christmas-checks {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.christmas-checks li {
  padding: 14px 16px;
  background: rgba(255, 248, 236, 0.09);
  border-left: 5px solid #f5cf76;
  border-radius: 14px;
  color: #fff8ec;
  font-weight: 780;
}

.vendor-workshop {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: 24px;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(157, 29, 43, 0.82), rgba(31, 107, 77, 0.78)),
    rgba(18, 37, 31, 0.9);
  border-top: 1px solid rgba(255, 246, 220, 0.18);
  border-bottom: 1px solid rgba(255, 246, 220, 0.18);
}

.vendor-actions {
  display: grid;
  gap: 12px;
}

.christmas-gallery {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-auto-rows: 155px;
  gap: 12px;
  margin-top: 34px;
}

.christmas-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 8px solid rgba(255, 248, 236, 0.94);
  border-radius: 24px;
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.3);
  transition: transform 180ms ease, filter 180ms ease;
}

.christmas-gallery img:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.christmas-gallery img:nth-child(2),
.christmas-gallery img:nth-child(6),
.christmas-gallery img:nth-child(9) {
  grid-column: span 2;
}

.christmas-gallery img:nth-child(4),
.christmas-gallery img:nth-child(8),
.christmas-gallery img:nth-child(12) {
  grid-row: span 2;
}

.christmas-gallery img:nth-child(5),
.christmas-gallery img:nth-child(10),
.christmas-gallery img:nth-child(21),
.christmas-gallery img:nth-child(22) {
  grid-column: span 2;
  grid-row: span 2;
}

.christmas-gallery img:hover {
  filter: saturate(1.08) brightness(1.05);
  transform: translateY(-5px) scale(1.012);
}

.christmas-slideshow {
  width: min(1120px, 100%);
  margin: 34px auto 0;
  padding: clamp(12px, 2.4vw, 22px);
  background:
    linear-gradient(145deg, rgba(255, 248, 236, 0.15), rgba(255, 248, 236, 0.055)),
    rgba(18, 37, 31, 0.82);
  border: 1px solid rgba(245, 207, 118, 0.34);
  border-radius: 30px;
  box-shadow:
    0 0 0 1px rgba(255, 248, 236, 0.08) inset,
    0 30px 82px rgba(0, 0, 0, 0.34);
}

.slideshow-stage {
  position: relative;
  display: grid;
  min-height: clamp(360px, 58vw, 680px);
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 20%, rgba(245, 207, 118, 0.16), transparent 30%),
    rgba(6, 14, 12, 0.82);
  border: 8px solid rgba(255, 248, 236, 0.92);
  border-radius: 26px;
}

.slideshow-photo {
  display: grid;
  width: 100%;
  height: 100%;
  min-height: inherit;
  margin: 0;
}

.slideshow-photo img {
  width: 100%;
  height: 100%;
  max-height: 680px;
  object-fit: contain;
  background: rgba(8, 18, 15, 0.9);
  transition: opacity 180ms ease, transform 180ms ease;
}

.slideshow-photo.is-changing img {
  opacity: 0.45;
  transform: scale(0.985);
}

.slideshow-photo figcaption {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  padding: 12px 16px;
  color: #fff8ec;
  background: rgba(18, 37, 31, 0.76);
  border: 1px solid rgba(255, 248, 236, 0.18);
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
  font-weight: 900;
  backdrop-filter: blur(10px);
}

.slideshow-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: grid;
  width: clamp(44px, 6vw, 62px);
  height: clamp(44px, 6vw, 62px);
  place-items: center;
  color: #13251f;
  background:
    radial-gradient(circle at 35% 28%, #fff8ec, #f5cf76 72%);
  border: 1px solid rgba(255, 248, 236, 0.9);
  border-radius: 50%;
  box-shadow:
    0 0 24px rgba(245, 207, 118, 0.42),
    0 16px 34px rgba(0, 0, 0, 0.28);
  cursor: pointer;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1;
  transform: translateY(-50%);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.slideshow-arrow:hover {
  box-shadow:
    0 0 34px rgba(245, 207, 118, 0.64),
    0 20px 44px rgba(0, 0, 0, 0.34);
  transform: translateY(-50%) scale(1.08);
}

.slideshow-arrow.previous {
  left: 14px;
}

.slideshow-arrow.next {
  right: 14px;
}

.slideshow-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
  justify-content: space-between;
  padding: 16px 4px 12px;
  color: rgba(255, 248, 236, 0.78);
  font-weight: 800;
}

.slideshow-meta strong {
  color: #f5cf76;
  font-size: 1rem;
}

.slideshow-thumbs {
  display: grid;
  grid-auto-columns: minmax(82px, 112px);
  grid-auto-flow: column;
  gap: 10px;
  overflow-x: auto;
  padding: 8px 4px 12px;
  scrollbar-color: #f5cf76 rgba(255, 255, 255, 0.12);
}

.slideshow-thumbs button {
  height: 76px;
  padding: 0;
  overflow: hidden;
  background: rgba(255, 248, 236, 0.08);
  border: 2px solid rgba(255, 248, 236, 0.26);
  border-radius: 14px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.22);
  cursor: pointer;
  opacity: 0.72;
  transition: transform 160ms ease, opacity 160ms ease, border-color 160ms ease;
}

.slideshow-thumbs button:hover,
.slideshow-thumbs button.active {
  border-color: #f5cf76;
  opacity: 1;
  transform: translateY(-2px) scale(1.03);
}

.slideshow-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.snow-card-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.christmas-page .contact-section {
  background:
    linear-gradient(145deg, rgba(255, 248, 236, 0.1), rgba(255, 248, 236, 0.04)),
    rgba(18, 37, 31, 0.78);
}

.christmas-page .music-toggle-icon {
  width: auto;
  min-width: 42px;
  padding: 0 7px;
  border-radius: 999px;
  font-size: 0.67rem;
}


@media (max-width: 1280px) and (min-width: 981px) {
  .christmas-hero {
    grid-template-columns: minmax(410px, 0.92fr) minmax(430px, 1.08fr);
    gap: clamp(24px, 3.2vw, 44px);
    padding-inline: clamp(24px, 4vw, 52px);
  }

  .christmas-hero h1 {
    max-width: 8.3ch;
    font-size: clamp(4.55rem, 7vw, 6.4rem);
    line-height: 0.9;
  }

  .christmas-hero-copy > p:not(.christmas-kicker) {
    max-width: 560px;
    font-size: clamp(1rem, 1.45vw, 1.12rem);
  }

  .vendor-showcase-title {
    max-width: 470px;
    font-size: clamp(0.98rem, 1.35vw, 1.16rem);
  }

  .vendor-showcase-track {
    min-height: clamp(230px, 30vw, 330px);
  }

  .vendor-showcase-slide {
    height: clamp(180px, 24vw, 280px);
  }
}

@media (max-width: 1080px) and (min-width: 981px) {
  .christmas-hero {
    grid-template-columns: minmax(360px, 0.9fr) minmax(390px, 1.1fr);
    gap: 24px;
  }

  .christmas-hero h1 {
    max-width: 8.6ch;
    font-size: clamp(4rem, 6.25vw, 5.1rem);
  }

  .christmas-kicker {
    font-size: 0.74rem;
    letter-spacing: 0.06em;
  }

  .christmas-actions .button {
    padding-inline: 18px;
  }
}
@media (max-width: 980px) {
  .christmas-hero,
  .christmas-feature,
  .vendor-workshop {
    grid-template-columns: 1fr;
  }

  .ornament-row,
  .christmas-page .gift-grid,
  .snow-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-photo-stack {
    min-height: 420px;
  }
}

@media (max-width: 680px) {
  .top-alert {
    justify-content: flex-start;
    text-align: left;
  }

  .top-alert a {
    display: block;
    width: 340px;
    max-width: calc(100vw - 28px);
  }

  .section-heading,
  .section-heading.center {
    width: 340px;
    max-width: calc(100vw - 32px);
    margin-right: 0;
    margin-left: 0;
    text-align: left;
  }

  .christmas-hero {
    min-height: auto;
    gap: 22px;
    padding: 38px 16px 42px;
  }

  .christmas-hero::before {
    inset: 10px;
    border-radius: 24px;
  }

  .christmas-hero h1 {
    font-size: clamp(2.05rem, 9vw, 2.55rem);
    line-height: 0.96;
    max-width: min(100%, 340px);
  }

  .christmas-hero-copy > p:not(.christmas-kicker) {
    font-size: 0.98rem;
    max-width: min(100%, 340px);
  }

  .christmas-hero-copy,
  .christmas-hero-card,
  .christmas-actions,
  .vendor-app-hero > div,
  .vendor-app-hero img {
    width: min(100%, 340px);
    max-width: min(100%, 340px);
  }

  .christmas-actions,
  .hero-ticket,
  .snow-card-grid,
  .christmas-gallery,
  .christmas-page .gift-grid {
    grid-template-columns: 1fr;
  }

  .ornament-row {
    grid-template-columns: 1fr;
    gap: 8px;
    width: min(320px, calc(100% - 36px));
  }

  .christmas-page .gift-grid {
    width: min(360px, 100%);
  }

  .christmas-page .gift-grid article {
    grid-template-columns: 32px 1fr;
    min-height: 84px;
    padding: 11px;
  }

  .christmas-page .gift-grid span {
    width: 30px;
    height: 30px;
  }

  .christmas-actions {
    display: grid;
  }

  .christmas-hero-card img {
    min-height: 240px;
  }

  .hero-photo-collage {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 132px 132px;
    gap: 7px;
  }

  .hero-photo-collage img {
    border-width: 4px;
    border-radius: 16px;
  }

  .hero-ticket span,
  .hero-ticket strong {
    min-height: 48px;
    font-size: 0.9rem;
  }

  .feature-photo-stack {
    min-height: auto;
    display: grid;
    gap: 16px;
  }

  .feature-photo-stack img,
.feature-photo-stack video {
    position: static;
    width: 100%;
    height: 260px;
  }

  .christmas-gallery {
    grid-auto-rows: 168px;
    gap: 10px;
  }

  .christmas-gallery img {
    border-width: 5px;
    border-radius: 18px;
  }

  .christmas-slideshow {
    padding: 8px;
    border-radius: 22px;
  }

  .slideshow-stage {
    min-height: 330px;
    border-width: 5px;
    border-radius: 18px;
  }

  .slideshow-photo figcaption {
    right: 8px;
    bottom: 8px;
    left: 8px;
    padding: 9px 11px;
    font-size: 0.82rem;
  }

  .slideshow-arrow {
    width: 40px;
    height: 40px;
    font-size: 2rem;
  }

  .slideshow-arrow.previous {
    left: 7px;
  }

  .slideshow-arrow.next {
    right: 7px;
  }

  .slideshow-meta {
    display: grid;
    gap: 4px;
    font-size: 0.82rem;
  }

  .slideshow-thumbs {
    grid-auto-columns: minmax(66px, 74px);
    gap: 7px;
  }

  .slideshow-thumbs button {
    height: 58px;
    border-radius: 10px;
  }

  .christmas-gallery img:first-child,
  .christmas-gallery img:nth-child(2),
  .christmas-gallery img:nth-child(4),
  .christmas-gallery img:nth-child(5),
  .christmas-gallery img:nth-child(6),
  .christmas-gallery img:nth-child(8),
  .christmas-gallery img:nth-child(9),
  .christmas-gallery img:nth-child(10),
  .christmas-gallery img:nth-child(12),
  .christmas-gallery img:nth-child(21),
  .christmas-gallery img:nth-child(22) {
    grid-row: auto;
    grid-column: auto;
  }
}

@media (max-width: 480px) {
  .top-alert {
    padding: 8px 12px;
    font-size: 0.76rem;
  }

  .christmas-kicker {
    font-size: 0.72rem;
  }

  .ornament-row {
    width: min(320px, calc(100% - 28px));
    gap: 8px;
  }

  .ornament-row article {
    min-height: 82px;
    padding: 20px 12px 12px;
  }

  .ornament-row strong {
    font-size: 1.32rem;
  }

  .ornament-row p {
    margin-top: 7px;
    font-size: 0.74rem;
  }

  .santa-dance-strip {
    padding: 5px 0;
  }

  .santa-dance-track img {
    width: 50px;
    height: 50px;
  }

  .christmas-page .gift-grid {
    grid-template-columns: 1fr;
    width: min(360px, 100%);
  }

  .christmas-page .gift-grid article {
    min-height: 76px;
  }

  .christmas-feature,
  .vendor-workshop,
  .christmas-details,
  .christmas-gallery-section,
  .christmas-intro {
    padding-right: 14px;
    padding-left: 14px;
  }
}

.vendor-application-page .site-header {
  background: rgba(18, 31, 27, 0.94);
}

.vendor-thank-you-page .site-header {
  background: rgba(18, 31, 27, 0.94);
}

.vendor-thank-you-hero {
  display: grid;
  min-height: calc(100vh - 94px);
  place-items: center;
  padding: clamp(52px, 8vw, 100px) clamp(18px, 5vw, 76px);
  background:
    linear-gradient(135deg, rgba(18, 37, 31, 0.86), rgba(117, 39, 47, 0.76)),
    url("assets/photos/craft-show/2024/craft-show-extra-01.webp") center / cover no-repeat;
}

.vendor-thank-you-card {
  width: min(760px, 100%);
  padding: clamp(26px, 5vw, 54px);
  color: #fff8ec;
  background:
    linear-gradient(145deg, rgba(255, 248, 236, 0.13), rgba(255, 248, 236, 0.05)),
    rgba(18, 37, 31, 0.88);
  border: 1px solid rgba(245, 207, 118, 0.34);
  border-radius: 28px;
  box-shadow:
    0 0 0 1px rgba(255, 248, 236, 0.08) inset,
    0 30px 82px rgba(0, 0, 0, 0.42);
  text-align: center;
}

.vendor-thank-you-card h1 {
  margin: 0 0 18px;
  color: #fffdf7;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.8rem, 7vw, 5.4rem);
  line-height: 0.92;
}

.vendor-thank-you-card p {
  max-width: 640px;
  margin-right: auto;
  margin-left: auto;
  color: rgba(255, 248, 236, 0.86);
  font-size: clamp(1rem, 1.6vw, 1.16rem);
  font-weight: 650;
}

.vendor-thank-you-card .christmas-actions {
  justify-content: center;
}

.vendor-app-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(320px, 1.04fr);
  gap: clamp(26px, 5vw, 64px);
  align-items: center;
  padding: clamp(54px, 8vw, 96px) clamp(18px, 5vw, 76px);
  background:
    radial-gradient(circle at 18% 22%, rgba(245, 207, 118, 0.24), transparent 26%),
    linear-gradient(135deg, rgba(157, 29, 43, 0.44), rgba(31, 107, 77, 0.36));
}

.vendor-app-hero h1 {
  margin: 0 0 16px;
  color: #fffdf7;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 7.4vw, 6.6rem);
  line-height: 0.9;
}

.vendor-app-hero p {
  max-width: 680px;
  color: rgba(255, 248, 236, 0.88);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  font-weight: 650;
}

.vendor-app-hero img {
  width: 100%;
  min-height: 310px;
  object-fit: cover;
  border: 10px solid rgba(255, 248, 236, 0.96);
  border-radius: 28px;
  box-shadow: 0 28px 78px rgba(0, 0, 0, 0.36);
}

.vendor-guidelines,
.vendor-application-section {
  position: relative;
}

.form-status {
  margin: 14px 0 0;
  color: #fff8ec;
  font-weight: 850;
}

.booth-pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.booth-pricing-grid article {
  padding: clamp(22px, 3vw, 30px);
  background:
    linear-gradient(145deg, rgba(255, 248, 236, 0.14), rgba(255, 248, 236, 0.055)),
    rgba(18, 37, 31, 0.84);
  border: 1px solid rgba(245, 207, 118, 0.24);
  border-radius: 24px;
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.28);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.booth-pricing-grid article:hover {
  border-color: rgba(245, 207, 118, 0.58);
  box-shadow:
    0 0 28px rgba(245, 207, 118, 0.22),
    0 24px 64px rgba(0, 0, 0, 0.34);
  transform: translateY(-6px) scale(1.04);
}

.booth-pricing-grid span {
  color: #f5cf76;
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.booth-pricing-grid strong {
  display: block;
  margin: 10px 0 6px;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.4vw, 2.25rem);
  line-height: 1.03;
}

.booth-pricing-grid p {
  color: rgba(255, 248, 236, 0.78);
}

.vendor-notes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.vendor-notes article {
  padding: clamp(24px, 4vw, 38px);
  background:
    linear-gradient(135deg, rgba(157, 29, 43, 0.42), rgba(31, 107, 77, 0.34)),
    rgba(18, 37, 31, 0.84);
  border: 1px solid rgba(255, 246, 220, 0.16);
  border-radius: 28px;
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.3);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.vendor-notes article:hover {
  border-color: rgba(245, 207, 118, 0.5);
  box-shadow:
    0 0 30px rgba(245, 207, 118, 0.18),
    0 26px 68px rgba(0, 0, 0, 0.36);
  transform: translateY(-5px) scale(1.02);
}

.vendor-notes h2 {
  color: #fffdf7;
  font-size: clamp(1.8rem, 3.6vw, 3.05rem);
}

.vendor-notes p {
  color: rgba(255, 248, 236, 0.82);
}



.vendor-checklist {
  position: relative;
  background:
    radial-gradient(circle at 15% 10%, rgba(245, 207, 118, 0.12), transparent 30%),
    linear-gradient(145deg, rgba(18, 37, 31, 0.92), rgba(56, 22, 29, 0.82));
}

.vendor-checklist-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: min(1180px, 100%);
  margin: 34px auto 0;
}

.vendor-checklist-grid article {
  padding: clamp(20px, 2.6vw, 30px);
  background:
    linear-gradient(145deg, rgba(255, 248, 236, 0.13), rgba(255, 248, 236, 0.05)),
    rgba(18, 37, 31, 0.76);
  border: 1px solid rgba(245, 207, 118, 0.24);
  border-radius: 22px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.26);
}

.vendor-checklist-grid h3 {
  margin: 0 0 10px;
  color: #fffdf7;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1.04;
}

.vendor-checklist-grid p {
  margin: 0;
  color: rgba(255, 248, 236, 0.8);
  font-size: 0.95rem;
  line-height: 1.5;
}

.vendor-perks {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 12%, rgba(245, 207, 118, 0.16), transparent 28%),
    radial-gradient(circle at 88% 14%, rgba(200, 16, 46, 0.18), transparent 28%),
    linear-gradient(135deg, rgba(18, 37, 31, 0.88), rgba(104, 28, 38, 0.82));
  border-top: 1px solid rgba(255, 246, 220, 0.18);
  border-bottom: 1px solid rgba(255, 246, 220, 0.18);
}

.vendor-perk-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  width: min(1180px, 100%);
  margin: 34px auto 0;
}

.vendor-perk-grid article {
  padding: clamp(18px, 2.4vw, 26px);
  background:
    linear-gradient(145deg, rgba(255, 248, 236, 0.16), rgba(255, 248, 236, 0.06)),
    rgba(18, 37, 31, 0.78);
  border: 1px solid rgba(245, 207, 118, 0.28);
  border-radius: 22px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.vendor-perk-grid article:hover {
  border-color: rgba(245, 207, 118, 0.62);
  box-shadow:
    0 0 30px rgba(245, 207, 118, 0.2),
    0 24px 62px rgba(0, 0, 0, 0.34);
  transform: translateY(-5px) scale(1.025);
}

.vendor-perk-grid span {
  display: inline-flex;
  margin-bottom: 12px;
  color: #13251f;
  background: #f5cf76;
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vendor-perk-grid h3 {
  margin: 0 0 10px;
  color: #fffdf7;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 1.9vw, 1.65rem);
  line-height: 1.02;
}

.vendor-perk-grid p {
  margin: 0;
  color: rgba(255, 248, 236, 0.82);
  font-size: 0.92rem;
  line-height: 1.5;
}

.vendor-application-form {
  width: min(1180px, 100%);
  margin: 38px auto 0;
  padding: clamp(26px, 5vw, 54px);
  background:
    radial-gradient(circle at 10% 0%, rgba(245, 207, 118, 0.2), transparent 32%),
    radial-gradient(circle at 92% 8%, rgba(157, 29, 43, 0.28), transparent 28%),
    linear-gradient(145deg, rgba(255, 248, 236, 0.18), rgba(255, 248, 236, 0.075)),
    rgba(18, 37, 31, 0.94);
  border: 1px solid rgba(245, 207, 118, 0.36);
  border-radius: 36px;
  box-shadow:
    0 0 0 1px rgba(255, 248, 236, 0.08) inset,
    0 0 42px rgba(245, 207, 118, 0.14),
    0 34px 92px rgba(0, 0, 0, 0.42);
}

.vendor-application-form fieldset {
  margin: 0 0 26px;
  padding: clamp(22px, 3.5vw, 34px);
  background:
    linear-gradient(145deg, rgba(255, 248, 236, 0.09), rgba(255, 248, 236, 0.035));
  border: 1px solid rgba(255, 246, 220, 0.24);
  border-radius: 24px;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.18);
}

.vendor-application-form legend {
  padding: 0 12px;
  color: #f5cf76;
  font-size: 1.05rem;
  font-weight: 950;
  text-transform: uppercase;
}

.form-grid {
  display: grid;
  gap: 16px;
}

.form-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.vendor-application-form label {
  display: grid;
  gap: 9px;
  margin-bottom: 18px;
  color: #fff8ec;
  font-size: 1.02rem;
  font-weight: 850;
}

.vendor-application-form input,
.vendor-application-form select,
.vendor-application-form textarea {
  width: 100%;
  min-height: 56px;
  padding: 15px 16px;
  color: #fff8ec;
  background: rgba(255, 248, 236, 0.115);
  border: 1px solid rgba(255, 246, 220, 0.3);
  border-radius: 16px;
  font: inherit;
  font-size: 1.02rem;
}

.vendor-application-form textarea {
  min-height: 138px;
  resize: vertical;
}

.vendor-application-form select option {
  color: #13251f;
}

.vendor-application-form input:focus,
.vendor-application-form select:focus,
.vendor-application-form textarea:focus {
  outline: 2px solid rgba(245, 207, 118, 0.58);
  outline-offset: 2px;
}

.checkbox-label {
  grid-template-columns: auto 1fr;
  align-items: flex-start;
  padding: 17px;
  background: rgba(255, 248, 236, 0.1);
  border: 1px solid rgba(255, 246, 220, 0.16);
  border-radius: 18px;
}

.checkbox-label input {
  width: 20px;
  min-height: 20px;
  margin-top: 3px;
}

.vendor-submit {
  width: 100%;
  justify-content: center;
  min-height: 54px;
  font-size: 1rem;
}

@media (max-width: 980px) {
  .vendor-app-hero,
  .vendor-notes {
    grid-template-columns: 1fr;
  }

  .booth-pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .form-grid.two,
  .booth-pricing-grid {
    grid-template-columns: 1fr;
  }

  .vendor-app-hero img {
    min-height: 230px;
  }

  .vendor-app-hero {
    padding: 38px 16px;
  }

  .vendor-app-hero h1 {
    font-size: clamp(1.95rem, 8.8vw, 2.55rem);
    line-height: 0.98;
    max-width: min(100%, 340px);
  }

  .vendor-application-form {
    padding: 18px 12px;
    border-radius: 24px;
  }

  .vendor-application-form fieldset {
    padding: 18px 12px;
  }

  .vendor-application-form input,
  .vendor-application-form select,
  .vendor-application-form textarea {
    min-height: 52px;
    font-size: 1rem;
  }
}

@media (max-width: 420px) {
  .top-alert {
    justify-content: flex-start;
    text-align: left;
  }

  .top-alert a {
    display: block;
    width: 330px;
    max-width: calc(100vw - 24px);
    overflow-wrap: normal;
  }

  .site-header {
    min-height: 72px;
    padding: 10px 14px;
  }

  .brand-mark {
    width: 48px;
    height: 48px;
  }

  .brand strong {
    font-size: 0.86rem;
  }

  .brand small {
    font-size: 0.64rem;
  }

  .section-heading,
  .section-heading.center {
    width: 330px;
    max-width: calc(100vw - 28px);
    margin-right: 0;
    margin-left: 0;
    text-align: left;
  }

  .section-heading h2,
  .vendor-guidelines .section-heading h2 {
    font-size: clamp(1.75rem, 8vw, 2.35rem);
    line-height: 1.05;
  }

  .christmas-hero h1,
  .vendor-app-hero h1 {
    font-size: clamp(2rem, 9vw, 2.55rem);
  }

  .christmas-hero-copy > p:not(.christmas-kicker),
  .vendor-app-hero p {
    font-size: 0.92rem;
  }

  .christmas-actions .button {
    width: 100%;
  }

  .music-toggle {
    width: 58px;
    min-height: 44px;
    justify-content: center;
    padding: 8px;
  }

  .music-toggle [data-music-label] {
    display: none;
  }
}

.cursor-snowflake {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999;
  width: 14px;
  height: 14px;
  color: #ffffff;
  font-size: 18px;
  line-height: 1;
  pointer-events: none;
  text-shadow:
    0 0 8px rgba(255, 255, 255, 0.94),
    0 0 16px rgba(159, 210, 255, 0.72);
  transform: translate(-50%, -50%);
  animation: cursorSnowFly 950ms ease-out forwards;
}

.glow-cursor {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1000;
  width: 24px;
  height: 22px;
  background:
    linear-gradient(90deg, transparent 42%, #f5cf76 42% 58%, transparent 58%),
    linear-gradient(180deg, #ff4a55 0 36%, #c91f3b 36% 100%);
  border: 1px solid rgba(255, 248, 236, 0.78);
  border-radius: 5px;
  box-shadow:
    0 0 10px rgba(255, 45, 66, 0.96),
    0 0 24px rgba(255, 45, 66, 0.78),
    0 0 44px rgba(245, 207, 118, 0.5);
  pointer-events: none;
  transform: translate(-35%, -35%) rotate(-7deg);
  transition: width 120ms ease, height 120ms ease, opacity 120ms ease;
}

.glow-cursor::after {
  position: absolute;
  top: -9px;
  left: 50%;
  width: 22px;
  height: 13px;
  background:
    radial-gradient(ellipse at 25% 50%, transparent 0 38%, #f5cf76 40% 68%, transparent 70%),
    radial-gradient(ellipse at 75% 50%, transparent 0 38%, #f5cf76 40% 68%, transparent 70%);
  content: "";
  transform: translateX(-50%);
}

.glow-cursor::before {
  position: absolute;
  top: 34%;
  left: 0;
  width: 100%;
  height: 5px;
  background: #f5cf76;
  content: "";
  box-shadow: 0 0 10px rgba(245, 207, 118, 0.72);
}

.christmas-page .glow-cursor {
  animation: cursorPulse 1.2s ease-in-out infinite;
}

.christmas-page:has(a:hover, button:hover, input:hover, select:hover, textarea:hover) .glow-cursor {
  width: 32px;
  height: 29px;
}

@keyframes cursorPulse {
  0%,
  100% {
    filter: brightness(1);
    box-shadow:
      0 0 10px rgba(255, 45, 66, 0.92),
      0 0 24px rgba(255, 45, 66, 0.72),
      0 0 42px rgba(245, 207, 118, 0.42);
  }

  50% {
    filter: brightness(1.18);
    box-shadow:
      0 0 16px rgba(255, 45, 66, 1),
      0 0 34px rgba(255, 45, 66, 0.88),
      0 0 58px rgba(245, 207, 118, 0.72);
  }
}

@keyframes cursorSnowFly {
  0% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.7) rotate(0deg);
  }

  100% {
    opacity: 0;
    transform: translate(calc(-50% + var(--snow-x)), calc(-50% + var(--snow-y))) scale(1.3) rotate(var(--snow-rotate));
  }
}

@media (hover: none), (pointer: coarse) {
  .christmas-page {
    cursor: auto;
  }

  .glow-cursor,
  .cursor-snowflake {
    display: none;
  }
}



@media (max-width: 980px) {
  .ornament-row {
    grid-template-columns: repeat(3, minmax(128px, 160px));
    justify-content: center;
    gap: 22px 14px;
    width: min(560px, calc(100% - 36px));
  }
}

@media (max-width: 680px) {
  .ornament-row {
    grid-template-columns: repeat(2, minmax(124px, 150px));
    justify-content: center;
    gap: 22px 12px;
    width: min(330px, calc(100% - 28px));
    margin-top: -10px;
  }

  .ornament-row article {
    min-height: 0;
    padding: 27px 10px 14px;
  }

  .ornament-row article:nth-child(5) {
    grid-column: 1 / -1;
    justify-self: center;
    width: min(150px, 100%);
  }

  .ornament-row strong {
    font-size: 1.16rem;
  }

  .ornament-row p {
    margin-top: 6px;
    font-size: 0.68rem;
  }
}

@media (max-width: 380px) {
  .ornament-row {
    grid-template-columns: repeat(2, minmax(112px, 136px));
    width: min(296px, calc(100% - 22px));
    gap: 20px 8px;
  }

  .ornament-row article:nth-child(5) {
    width: min(136px, 100%);
  }
}






@media (max-width: 1120px) {
  .vendor-perk-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .vendor-perk-grid {
    grid-template-columns: 1fr;
  }
}





.site-nav .nav-donate {
  color: #17261f;
  background: linear-gradient(135deg, #ffe08a, #f5b942);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 10px 22px rgba(245, 185, 66, 0.2);
}

.site-nav .nav-donate:hover {
  color: #17261f;
  background: linear-gradient(135deg, #fff4c2, #ffd45f);
}

.donate-page {
  background:
    radial-gradient(circle at 12% 16%, rgba(218, 35, 61, 0.28), transparent 32%),
    radial-gradient(circle at 82% 8%, rgba(47, 119, 86, 0.26), transparent 30%),
    linear-gradient(135deg, #07172e 0%, #12331f 48%, #791f2f 100%);
  color: var(--white);
}

.donate-page .site-header {
  background: rgba(6, 20, 38, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.youth-programs-page .site-header {
  background: rgba(6, 12, 24, 0.94);
}

.youth-programs-page h1,
.youth-programs-page h2,
.youth-programs-page h3,
.youth-programs-page p,
.youth-programs-page li,
.youth-programs-page strong,
.youth-programs-page small {
  overflow-wrap: anywhere;
}

.youth-program-hero-copy,
.youth-hero-photo,
.program-choice,
.program-detail-panel > *,
.youth-support-band > *,
.youth-interest-section > * {
  min-width: 0;
  max-width: 100%;
}

.youth-program-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: clamp(58px, 8vw, 104px) clamp(18px, 5vw, 76px);
  background:
    linear-gradient(135deg, rgba(5, 7, 13, 0.78), rgba(7, 23, 44, 0.9)),
    url("assets/photos/basketball/basketball-gym-panorama.webp") center / cover no-repeat;
}

.youth-program-hero h1 {
  margin: 0 0 18px;
  color: var(--white);
  font-size: clamp(3rem, 7vw, 6.2rem);
  line-height: 0.94;
}

.youth-program-hero-copy > p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  font-weight: 650;
}

.youth-hero-photo {
  position: relative;
  overflow: hidden;
  min-height: clamp(360px, 44vw, 560px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.youth-hero-photo img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.youth-hero-photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 36%, rgba(5, 7, 13, 0.88));
  content: "";
}

.youth-hero-photo > div {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 1;
  padding: 18px;
  color: var(--white);
  background: rgba(5, 7, 13, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  backdrop-filter: blur(12px);
}

.youth-hero-photo strong,
.youth-hero-photo span {
  display: block;
}

.youth-hero-photo strong {
  font-size: 1.2rem;
}

.youth-hero-photo span {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.youth-picker-section {
  background:
    radial-gradient(circle at 16% 12%, rgba(201, 31, 59, 0.16), transparent 28%),
    radial-gradient(circle at 82% 16%, rgba(77, 147, 255, 0.18), transparent 28%);
}

.program-choice-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  width: min(1120px, 100%);
  margin: 0 auto 28px;
}

.program-choice {
  display: grid;
  min-height: 168px;
  justify-items: start;
  gap: 8px;
  padding: 18px;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035)),
    rgba(16, 24, 39, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  box-shadow: var(--soft-shadow);
  cursor: pointer;
  text-align: left;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.program-choice:hover,
.program-choice.active {
  background: rgba(77, 147, 255, 0.16);
  border-color: rgba(114, 183, 255, 0.72);
  box-shadow: var(--shadow);
  transform: translateY(-4px) scale(1.015);
}

.program-choice img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.28));
}

.program-choice span {
  color: #72b7ff;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.program-choice strong {
  font-size: 1.08rem;
  line-height: 1.1;
}

.program-choice small {
  color: var(--muted);
  font-weight: 800;
}

.program-detail-shell {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.program-detail-panel {
  display: none;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: center;
  padding: clamp(18px, 3vw, 34px);
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035)),
    rgba(5, 7, 13, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.program-detail-panel.active {
  display: grid;
}

.program-detail-panel img {
  width: 100%;
  height: clamp(280px, 32vw, 430px);
  object-fit: cover;
  border: 8px solid rgba(255, 255, 255, 0.9);
  border-radius: 22px;
}

.program-detail-panel h3 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 0.96;
}

.program-detail-panel p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  font-weight: 650;
}

.program-detail-panel ul {
  display: grid;
  gap: 9px;
  margin: 18px 0 22px;
  padding: 0;
  list-style: none;
}

.program-detail-panel li {
  padding: 11px 13px;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.07);
  border-left: 4px solid var(--blue);
  border-radius: 12px;
  font-weight: 760;
}

.youth-support-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  background:
    radial-gradient(circle at 12% 22%, rgba(201, 31, 59, 0.22), transparent 28%),
    linear-gradient(135deg, rgba(7, 11, 20, 0.98), rgba(11, 31, 58, 0.95));
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.youth-support-band h2 {
  color: var(--white);
}

.youth-support-grid {
  display: grid;
  gap: 12px;
}

.youth-support-grid article {
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
}

.youth-support-grid strong {
  display: block;
  color: var(--white);
  font-size: 1.08rem;
}

.youth-support-grid p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.youth-interest-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.youth-interest-form {
  margin: 0;
}

@media (max-width: 1060px) {
  .youth-program-hero,
  .program-detail-panel,
  .youth-support-band,
  .youth-interest-section {
    grid-template-columns: 1fr;
  }

  .program-choice-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .youth-program-hero {
    padding: 42px 14px;
  }

  .youth-program-hero-copy {
    width: min(100%, 340px);
  }

  .youth-program-hero h1 {
    max-width: 320px;
    font-size: clamp(1.95rem, 9.5vw, 2.65rem);
    line-height: 1.02;
  }

  .youth-hero-photo {
    min-height: 320px;
    border-radius: 22px;
  }

  .program-choice-grid {
    grid-template-columns: 1fr;
  }

  .program-choice {
    min-height: 122px;
    grid-template-columns: 54px 1fr;
    align-items: center;
  }

  .program-choice img {
    grid-row: span 3;
  }

  .program-detail-panel {
    padding: 12px;
    border-radius: 22px;
  }

  .program-detail-panel img {
    height: 240px;
    border-width: 5px;
    border-radius: 18px;
  }

  .program-detail-panel h3 {
    font-size: 2rem;
  }
}

.donate-page main {
  overflow: hidden;
}

.donate-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 420px);
  gap: clamp(26px, 5vw, 68px);
  align-items: center;
  padding: clamp(64px, 8vw, 110px) clamp(20px, 6vw, 86px) clamp(42px, 6vw, 86px);
}

.donate-hero::before {
  content: "";
  position: absolute;
  inset: 22px;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.08), transparent 38%),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.05) 0 2px, transparent 2px 20px);
}

.donate-hero > * {
  position: relative;
  z-index: 1;
}

.donate-hero h1 {
  max-width: 760px;
  margin: 14px 0 18px;
  color: #fffaf0;
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 7.4rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.donate-hero-copy p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.08rem, 2vw, 1.38rem);
  font-weight: 800;
  line-height: 1.55;
}

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

.donate-card {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
}

.donate-card.feature {
  padding: clamp(24px, 4vw, 34px);
}

.donate-card.feature h2,
.donate-options h2,
.donate-recognition h2 {
  margin: 0 0 14px;
  color: #ffe08a;
  font-size: clamp(1.6rem, 3vw, 2.35rem);
}

.donate-card.feature ul {
  display: grid;
  gap: 14px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.donate-card.feature li,
.donate-option-grid article,
.donate-recognition article {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.09);
}

.donate-card strong,
.donate-option-grid h3,
.donate-recognition h3 {
  color: #fffaf0;
}

.donate-card p,
.donate-option-grid p,
.donate-recognition p {
  color: rgba(255, 255, 255, 0.82);
}

.donate-options,
.donate-recognition {
  padding: clamp(36px, 6vw, 76px) clamp(20px, 6vw, 86px);
}

.donate-options {
  background: rgba(255, 250, 240, 0.96);
  color: #173225;
}

.donate-options h2,
.donate-options .section-kicker,
.donate-options .section-lead {
  color: #173225;
}

.donate-option-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.donate-option-grid article {
  background: #ffffff;
  border-color: rgba(18, 51, 31, 0.14);
  box-shadow: 0 18px 34px rgba(18, 51, 31, 0.12);
}

.donate-option-grid h3 {
  color: #12331f;
}

.donate-option-grid p {
  color: #385346;
}

.donate-recognition {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.donate-recognition > div:first-child {
  padding-right: 12px;
}

.donate-recognition a {
  color: #ffe08a;
  font-weight: 900;
}

@media (max-width: 1050px) {
  .donate-hero,
  .donate-recognition {
    grid-template-columns: 1fr;
  }

  .donate-option-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .donate-hero {
    padding-top: 42px;
  }

  .donate-hero::before {
    inset: 10px;
    border-radius: 18px;
  }

  .donate-option-grid {
    grid-template-columns: 1fr;
  }

  .donate-hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

.clinic-signup-page {
  background:
    radial-gradient(circle at 16% 10%, rgba(77, 147, 255, 0.18), transparent 30%),
    linear-gradient(180deg, #07111f 0%, #101827 48%, #06111e 100%);
  color: var(--white);
}

.clinic-hero {
  display: grid;
  min-height: clamp(500px, 64vh, 680px);
  align-items: center;
  padding: clamp(56px, 8vw, 112px) clamp(18px, 6vw, 86px);
  background:
    linear-gradient(135deg, rgba(5, 7, 13, 0.86), rgba(8, 26, 54, 0.74)),
    url("assets/photos/basketball/basketball-kids-camp.webp") center / cover no-repeat;
}

.clinic-hero > div {
  width: min(760px, 100%);
}

.clinic-hero h1 {
  margin: 0 0 18px;
  color: var(--white);
  font-size: clamp(3rem, 7vw, 6.4rem);
  line-height: 0.94;
}

.clinic-hero p:not(.eyebrow) {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  font-weight: 700;
}

.clinic-options-section,
.clinic-form-section {
  background: transparent;
}

.clinic-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.clinic-card {
  display: grid;
  gap: 14px;
  align-content: start;
  padding: clamp(20px, 3vw, 28px);
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035)),
    rgba(16, 24, 39, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.clinic-card.is-selected,
.clinic-card:hover {
  border-color: rgba(114, 183, 255, 0.66);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.clinic-card.is-closed {
  opacity: 0.62;
}

.clinic-card span,
.clinic-card dt,
.clinic-selected-card strong {
  color: #9fc8ff;
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.clinic-card h3 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.clinic-card p,
.clinic-card dd,
.clinic-selected-card span {
  color: rgba(232, 238, 248, 0.82);
}

.clinic-card dl {
  display: grid;
  gap: 9px;
  margin: 0;
}

.clinic-card div {
  display: grid;
  gap: 2px;
}

.clinic-card dt,
.clinic-card dd {
  margin: 0;
}

.clinic-card .closed {
  color: #ffbac6;
}

.clinic-loading {
  grid-column: 1 / -1;
  color: rgba(232, 238, 248, 0.84);
  font-weight: 800;
}

.clinic-form-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(320px, 1.22fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
}

.clinic-form-intro {
  position: sticky;
  top: 112px;
}

.clinic-form-intro h2 {
  color: var(--white);
}

.clinic-form-intro p {
  color: rgba(232, 238, 248, 0.82);
}

.clinic-selected-card {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
}

.clinic-signup-form {
  padding: clamp(22px, 4vw, 38px);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.form-grid.two {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.form-grid .full {
  grid-column: 1 / -1;
}

.clinic-signup-form input,
.clinic-signup-form textarea {
  color: var(--white);
  background: rgba(5, 7, 13, 0.42);
  border-color: rgba(255, 255, 255, 0.18);
}

.checkbox-line {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  margin: 16px 0;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 750;
}

.checkbox-line input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.clinic-signup-form .form-status {
  min-height: 24px;
  color: #fff8ec;
}

@media (max-width: 1050px) {
  .clinic-card-grid,
  .clinic-form-section {
    grid-template-columns: 1fr;
  }

  .clinic-form-intro {
    position: static;
  }
}

@media (max-width: 680px) {
  .clinic-hero {
    min-height: auto;
    padding: 46px 16px;
  }

  .clinic-hero h1 {
    font-size: clamp(2.35rem, 12vw, 3.4rem);
  }

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