/* Merry WMA — night festive style (screenshot-inspired) */

:root {
  --night: #0b1a2e;
  --night-deep: #07111f;
  --ice: #dce7f5;
  --snow: #f4f7fb;
  --white: #ffffff;
  --muted: #8fa0b5;
  --red: #e30613;
  --red-deep: #b80510;
  --gold: #ffc107;
  --gold-soft: #ffd54f;
  --card: rgba(255, 255, 255, 0.06);
  --line: rgba(255, 255, 255, 0.12);
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  --radius: 2px;
  --font: "Montserrat", system-ui, sans-serif;
  --header-h: 5rem;
  --wrap: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ice);
  background: var(--night-deep);
  min-height: 100vh;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--gold-soft);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--white);
}

h1, h2, h3, h4 {
  font-family: var(--font);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.02em;
  margin: 0 0 0.6em;
  text-transform: uppercase;
  color: var(--white);
}

p {
  margin: 0 0 1em;
}

.wrap {
  width: min(100% - 2rem, var(--wrap));
  margin-inline: auto;
}

.wrap--narrow {
  width: min(100% - 2rem, 720px);
}

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

.skip-link:focus {
  clip: auto;
  clip-path: none;
  height: auto;
  width: auto;
  left: 1rem;
  top: 1rem;
  z-index: 1000;
  background: var(--white);
  color: var(--night);
  padding: 0.75rem 1rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 17, 31, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.site-header--overlay {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  background: linear-gradient(180deg, rgba(7, 17, 31, 0.55), rgba(7, 17, 31, 0));
  border-bottom: 0;
  backdrop-filter: none;
}

.site-header__inner {
  width: min(100% - 2rem, var(--wrap));
  margin-inline: auto;
  min-height: var(--header-h);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
}

.site-logo img {
  display: block;
  height: clamp(52px, 7vw, 72px);
  width: auto;
  max-width: min(220px, 42vw);
  object-fit: contain;
}

.site-logo--footer img {
  height: 88px;
  max-width: 200px;
}

.custom-logo-link img {
  max-height: 72px;
  width: auto;
}

.site-title {
  position: relative;
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  padding-top: 0.35rem;
}

.site-title__hat {
  position: absolute;
  left: -0.15rem;
  top: -0.35rem;
  width: 1.05rem;
  height: 0.85rem;
  background:
    radial-gradient(circle at 85% 20%, #fff 0 28%, transparent 29%),
    linear-gradient(180deg, var(--red) 0 70%, #fff 70% 100%);
  border-radius: 50% 50% 10% 10% / 60% 60% 20% 20%;
  transform: rotate(-18deg);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.15);
}

.site-header__tools {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  justify-self: end;
}

.header-search {
  color: var(--white);
  display: inline-flex;
  padding: 0.35rem;
  text-decoration: none;
}

.header-search:hover {
  color: var(--red);
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  padding: 0.4rem;
}

.nav-toggle__bars {
  width: 1.35rem;
  height: 2px;
  background: currentColor;
  position: relative;
  display: inline-block;
}

.nav-toggle__bars::before,
.nav-toggle__bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
}

.nav-toggle__bars::before { top: -7px; }
.nav-toggle__bars::after { top: 7px; width: 70%; }

.primary-nav {
  justify-self: center;
}

.primary-nav .menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.15rem 1.6rem;
  justify-content: center;
}

.primary-nav a {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.primary-nav a:hover,
.primary-nav .current-menu-item > a {
  color: var(--red);
}

/* Hero + video */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

.hero__atmosphere {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: #0a1628 url("https://images.unsplash.com/photo-1512389142860-9c449e58a543?auto=format&fit=crop&w=1800&q=80") center / cover no-repeat;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 17, 31, 0.78) 0%, rgba(7, 17, 31, 0.45) 48%, rgba(7, 17, 31, 0.25) 100%),
    linear-gradient(180deg, rgba(7, 17, 31, 0.35) 0%, rgba(7, 17, 31, 0.55) 70%, rgba(7, 17, 31, 0.92) 100%);
  pointer-events: none;
}

.hero__lights {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 42%, rgba(255, 193, 7, 0.22), transparent 28%),
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.08), transparent 22%);
  animation: glowPulse 7s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes glowPulse {
  from { opacity: 0.65; }
  to { opacity: 1; }
}

.snow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.snow__flake {
  position: absolute;
  top: -10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  animation: fall linear infinite;
  opacity: 0.7;
}

@keyframes fall {
  to {
    transform: translateY(100vh) translateX(20px);
    opacity: 0;
  }
}

.site-snow {
  position: fixed;
  inset: 0;
  z-index: 40;
  pointer-events: none;
  overflow: hidden;
}

.site-snow__flake {
  position: absolute;
  top: -1.2rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.55rem;
  line-height: 1;
  text-shadow: 0 0 6px rgba(255, 255, 255, 0.35);
  animation: siteSnowFall linear infinite;
  will-change: transform, opacity;
}

.site-snow__flake--dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 0 5px rgba(255, 255, 255, 0.35);
  font-size: 0;
  color: transparent;
}

@keyframes siteSnowFall {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg);
    opacity: 0;
  }
  12% {
    opacity: 0.75;
  }
  100% {
    transform: translate3d(var(--drift, 18px), 108vh, 0) rotate(220deg);
    opacity: 0;
  }
}

.hero__content {
  padding: calc(var(--header-h) + 4rem) 0 5rem;
  max-width: 52rem;
}

.hero__date {
  margin: 0 0 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

.hero__headline {
  --hero-title-size: clamp(1.55rem, 2.1vw + 1.1rem, 3.6rem);
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  gap: 0.65rem 0.9rem;
  margin-bottom: 1rem;
}

.hero__title {
  font-size: var(--hero-title-size);
  font-weight: 800;
  letter-spacing: 0.04em;
  max-width: 12ch;
  margin-bottom: 0;
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.45);
  flex: 0 1 auto;
  min-width: 0;
}

.hero__headline--split .hero__title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero__title-before,
.hero__title-highlight,
.hero__title-after {
  display: block;
}

.hero__title-highlight {
  white-space: nowrap;
}

.hero-special {
  flex: 0 0 auto;
  display: grid;
  justify-items: center;
  gap: 0.45rem;
  width: min(12.75rem, 38vw);
  margin-top: 0.15rem;
  text-align: center;
  animation: heroSpecialFloat 5.5s ease-in-out infinite;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.45));
}

.hero__headline--has-lead .hero-special {
  margin-top: calc(var(--hero-title-size) * 1.15);
}

.hero-special__flake {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  height: auto;
}

.hero-special__frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
  filter:
    drop-shadow(0 0 6px rgba(255, 213, 79, 0.55))
    drop-shadow(0 0 14px rgba(0, 229, 255, 0.25));
}

.hero-special__photo-wrap {
  position: absolute;
  inset: 18%;
  border-radius: 50%;
  overflow: hidden;
  z-index: 1;
  background: rgba(7, 17, 31, 0.85);
  box-shadow:
    0 0 0 2px rgba(255, 255, 255, 0.35),
    0 0 18px rgba(255, 0, 170, 0.35),
    inset 0 0 16px rgba(0, 0, 0, 0.35);
}

.hero-special__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  transform: scale(1.08);
}

.hero-special__label {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

.hero-special__name {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-soft);
  text-shadow: 0 0 18px rgba(255, 0, 170, 0.45);
}

@keyframes heroSpecialFloat {
  0%,
  100% {
    transform: translateY(0) rotate(-2deg);
  }
  50% {
    transform: translateY(-10px) rotate(2deg);
  }
}

.hero__lead {
  max-width: 34ch;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.82);
  text-transform: none;
  font-weight: 400;
  letter-spacing: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.95rem 1.55rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font: inherit;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
  text-decoration: none;
}

.btn--primary {
  background: var(--red);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--red-deep);
  color: var(--white);
}

.btn--secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--white);
}

.btn--secondary:hover {
  border-color: var(--white);
  color: var(--white);
}

.btn--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--white);
}

.section .btn--ghost,
.page-hero .btn--ghost,
.event-card .btn--ghost {
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--white);
}

/* Sections */
.section {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}

.section--alt {
  background: rgba(255, 255, 255, 0.03);
}

.section-header {
  max-width: 40rem;
  margin-bottom: 2.25rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold);
  margin: 0 0 0.75rem;
}

.section-title,
.page-hero__title {
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  color: var(--white);
}

.section-lead,
.page-hero__lead {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 42ch;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}

.section-cta {
  margin-top: 2rem;
  text-align: center;
}

.page-hero {
  padding: clamp(6rem, 10vw, 7.5rem) 0 2rem;
  background:
    radial-gradient(ellipse at 80% 0%, rgba(255, 193, 7, 0.12), transparent 45%),
    linear-gradient(180deg, rgba(11, 26, 46, 0.9), transparent 80%);
}

.page-hero--compact {
  padding-bottom: 0.5rem;
}

/* Countdown */
.countdown-panel {
  display: grid;
  gap: 2rem;
  align-items: center;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  background: linear-gradient(135deg, #10233d, #0a1628 60%, #07111f);
  color: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: var(--shadow);
}

@media (min-width: 800px) {
  .countdown-panel {
    grid-template-columns: 1.2fr 1fr;
  }
}

.countdown-panel .eyebrow { color: var(--gold-soft); }
.countdown-panel .section-title { color: var(--white); }
.countdown-panel .section-lead { color: rgba(255, 255, 255, 0.7); }

.countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.65rem;
}

.countdown__unit {
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.9rem 0.4rem;
}

.countdown__unit span {
  display: block;
  font-size: clamp(1.4rem, 3.5vw, 2.1rem);
  font-weight: 800;
  color: var(--gold-soft);
}

.countdown__unit small {
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.65rem;
}

/* Cards & grids */
.highlight-grid,
.card-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 700px) {
  .highlight-grid,
  .card-grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .card-grid,
  .card-grid--gifts {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .card-grid--gifts {
    grid-template-columns: repeat(4, 1fr);
  }
  .card-grid:not(.card-grid--gifts):not(.card-grid--3) {
    grid-template-columns: repeat(3, 1fr);
  }
}

.highlight-card,
.media-card,
.sponsor-card,
.event-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.highlight-card {
  padding: 1.5rem;
}

.highlight-card__icon {
  color: var(--gold);
  font-size: 1.4rem;
}

.highlight-card__title,
.media-card__title,
.sponsor-card__title,
.event-card__title {
  font-size: 1.05rem;
  color: var(--white);
}

.event-card__title a {
  color: inherit;
  text-decoration: none;
}

.event-card__title a:hover {
  color: var(--gold-soft);
}

.media-card {
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.media-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.media-card__link {
  color: inherit;
  text-decoration: none;
  display: block;
  height: 100%;
}

.media-card__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #12233a;
}

.media-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.media-card:hover .media-card__media img {
  transform: scale(1.04);
}

.media-card__media--round {
  aspect-ratio: 1;
  width: 56%;
  margin: 1.5rem auto 0;
  border-radius: 50%;
}

.media-card__body {
  padding: 1.15rem 1.25rem 1.4rem;
  color: var(--muted);
}

.media-card__meta {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

/* Gallery / sponsors / supporters */
.gallery-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gallery-item {
  margin: 0;
  overflow: hidden;
  border-radius: 6px;
  border: 1px solid var(--line);
  aspect-ratio: 4 / 3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.gallery-item a {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.gallery-item--link:hover img {
  transform: scale(1.05);
}

.media-card__link {
  color: inherit;
  text-decoration: none;
  display: block;
  height: 100%;
}

.sponsor-card__link {
  color: inherit;
  text-decoration: none;
  display: block;
}

.sponsor-card__link:hover .sponsor-card__title {
  color: var(--gold-soft);
}

.sponsor-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 900px) {
  .sponsor-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.sponsor-card {
  padding: 1.5rem;
  text-align: center;
}

.sponsor-card__logo {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--night);
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  overflow: hidden;
}

.sponsor-card__logo--image {
  width: 5.5rem;
  height: 5.5rem;
  background: #000;
  padding: 0.45rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.sponsor-card__logo--image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.supporter-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 1fr;
}

@media (min-width: 700px) {
  .supporter-list {
    grid-template-columns: 1fr 1fr;
  }
}

.supporter-list li {
  padding: 1rem 1.2rem;
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: 6px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* Events */
.event-list {
  display: grid;
  gap: 1rem;
}

.event-card {
  display: grid;
  gap: 0.75rem;
  padding: 1.25rem 1.4rem;
  border-left: 4px solid var(--red);
}

@media (min-width: 800px) {
  .event-card--row {
    grid-template-columns: 8rem 1fr auto;
    align-items: center;
  }
}

.event-card__date {
  font-size: 0.95rem;
  color: var(--red);
  margin: 0;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.event-card__place {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0.35rem 0 0;
}

/* CTA */
.cta-panel {
  display: grid;
  gap: 1.5rem;
  padding: clamp(1.75rem, 4vw, 2.75rem);
  background:
    linear-gradient(120deg, rgba(227, 6, 19, 0.88), rgba(11, 26, 46, 0.92)),
    url("https://images.unsplash.com/photo-1482517967863-00e15c9b44be?auto=format&fit=crop&w=1600&q=80") center / cover;
  color: var(--white);
  border-radius: 6px;
  box-shadow: var(--shadow);
}

@media (min-width: 900px) {
  .cta-panel {
    grid-template-columns: 1.2fr 1fr;
    align-items: end;
  }
}

.cta-panel .eyebrow { color: var(--gold-soft); }
.cta-panel .section-title { color: var(--white); }
.cta-panel .section-lead { color: rgba(255, 255, 255, 0.85); }

.cta-panel__actions {
  display: grid;
  gap: 0.85rem;
}

.newsletter-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.5rem;
}

.newsletter-form input {
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-radius: var(--radius);
  padding: 0.8rem 0.9rem;
  font: inherit;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.65);
}

.newsletter-form input:disabled,
.newsletter-form button:disabled {
  opacity: 0.75;
  cursor: not-allowed;
}

/* Split layouts */
.split {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 880px) {
  .split {
    grid-template-columns: 1fr 1fr;
  }
  .split--contact {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: start;
  }
}

.split__media {
  margin: 0;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.prose {
  color: var(--muted);
}

.prose :where(h2, h3) {
  color: var(--white);
  text-transform: uppercase;
}

.single-thumb {
  margin: 0 0 1.5rem;
  border-radius: 6px;
  overflow: hidden;
}

/* Forms */
.contact-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--white);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.contact-form input,
.contact-form textarea,
.search-form input[type="search"] {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.8rem 0.9rem;
  font: inherit;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

.contact-form p {
  margin-bottom: 1rem;
}

.form-notice {
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  margin-bottom: 1rem;
}

.form-notice--ok {
  background: rgba(46, 125, 50, 0.2);
  color: #b9f6ca;
}

.form-notice--err {
  background: rgba(227, 6, 19, 0.18);
  color: #ffcdd2;
}

.contact-aside {
  background: var(--card);
  border-radius: 6px;
  padding: 1.5rem;
  border: 1px solid var(--line);
}

.contact-aside__note {
  font-size: 0.9rem;
  color: var(--muted);
}

.text-link {
  font-weight: 600;
  color: var(--gold-soft);
}

.social-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
}

.social-list a {
  text-decoration: none;
  font-weight: 600;
  color: var(--white);
}

/* Footer */
.site-footer {
  position: relative;
  margin-top: 2rem;
  background: #050b14;
  color: rgba(255, 255, 255, 0.78);
  overflow: hidden;
}

.site-footer__glow {
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: radial-gradient(ellipse at center, rgba(227, 6, 19, 0.2), transparent 70%);
  pointer-events: none;
}

.site-footer__inner {
  width: min(100% - 2rem, var(--wrap));
  margin-inline: auto;
  padding: 3.5rem 0 2rem;
  display: grid;
  gap: 2rem;
}

@media (min-width: 800px) {
  .site-footer__inner {
    grid-template-columns: 1.3fr 1fr 0.8fr;
  }
}

.site-footer__title {
  font-size: 2rem;
  letter-spacing: 0.14em;
  color: var(--white);
  margin: 0 0 0.4rem;
  text-transform: uppercase;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--red);
}

.menu--footer {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.site-footer__label {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.7rem;
  color: var(--gold);
}

.site-footer__bar {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1rem 0 1.4rem;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
}

.site-footer__bar p {
  margin: 0;
  width: min(100% - 2rem, var(--wrap));
  margin-inline: auto;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

.empty-state {
  text-align: center;
  padding: 2rem 0;
}

.navigation.pagination {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.navigation.pagination .page-numbers {
  display: inline-flex;
  padding: 0.45rem 0.75rem;
  border-radius: var(--radius);
  background: var(--card);
  color: var(--white);
  text-decoration: none;
  border: 1px solid var(--line);
}

.navigation.pagination .current {
  background: var(--red);
  border-color: var(--red);
}

@media (max-width: 960px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-header__inner {
    grid-template-columns: 1fr auto;
  }

  .primary-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: rgba(7, 17, 31, 0.98);
    border-bottom: 1px solid var(--line);
    padding: 1rem 1.25rem 1.4rem;
    display: none;
    justify-self: stretch;
  }

  .primary-nav.is-open {
    display: block;
  }

  .primary-nav .menu {
    flex-direction: column;
    gap: 0.85rem;
    align-items: flex-start;
  }

  .site-header {
    position: sticky;
  }

  .site-header--overlay {
    position: absolute;
  }

  .site-header__inner {
    position: relative;
  }

  .newsletter-form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero__headline {
    gap: 0.35rem 0.55rem;
  }

  .hero-special {
    width: min(9.75rem, 34vw);
  }

  .hero-special__label {
    font-size: 0.62rem;
  }

  .hero-special__name {
    font-size: 0.85rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__video {
    display: none;
  }
  [data-reveal] {
    opacity: 1;
    transform: none;
  }
  .snow__flake,
  .site-snow__flake,
  .hero__lights,
  .hero-special {
    animation: none !important;
  }

  .site-snow {
    display: none;
  }
}
