:root {
  --bg-speed: 28s;
  --float-distance: 10px;
  --float-duration: 4s;
  --bg-darken: rgba(0, 0, 0, 0.25);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background-color: #000;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-image: linear-gradient(var(--bg-darken), var(--bg-darken)), url('bg.png');
  background-size: auto 120vh;
  background-repeat: repeat-x;
  background-position: 0 50%;
  background-attachment: fixed;
  background-color: #000;
  animation: bg-pan var(--bg-speed) linear infinite;
  overflow-x: hidden;
}

.topbar {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0.9rem 1.25rem;
}

.topbar-inner {
  width: min(1100px, 94vw);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: transparent;
  border: none;
  border-radius: 16px;
  padding: 0.75rem 1rem;
  backdrop-filter: none;
  box-shadow: none;
  margin: 0 auto;
}

.brand-mark {
  display: none;
}

.top-right {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.top-address {
  padding: 0.45rem 0.75rem;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.22);
  color: #f7f8fa;
  font-family: 'Inter', 'SFMono-Regular', Consolas, "Liberation Mono", Menlo, monospace;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  border: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 420px;
  word-break: break-all;
  user-select: text;
}

.top-links {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.top-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.85rem;
  border-radius: 12px;
  text-decoration: none;
  color: #f7f8fa;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.top-link img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  display: block;
}

.top-link:hover,
.top-link:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}

.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(90vw, 900px);
  height: min(90vh, 700px);
  padding: clamp(1.5rem, 4vw, 3rem) 1rem;
}

.logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 3vw, 2.5rem);
}

.logo {
  width: min(60vw, 360px);
  max-width: 420px;
  height: auto;
  object-fit: contain;
  animation: float var(--float-duration) ease-in-out infinite alternate;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.35));
}

.logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.logo-link:focus-visible {
  outline: 2px solid rgba(255, 194, 122, 0.8);
  outline-offset: 6px;
  border-radius: 24px;
}

@keyframes bg-pan {
  from {
    background-position: 0 50%;
  }
  to {
    background-position: -2000px 50%;
  }
}

.cta {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: clamp(2.5rem, 6vw, 4.5rem) 1.25rem clamp(3rem, 7vw, 5.5rem);
}

.story {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0 1.25rem clamp(3rem, 7vw, 6rem);
}

.story-card {
  width: min(820px, 92vw);
  background: rgba(0, 0, 0, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  padding: clamp(1.75rem, 4vw, 2.5rem);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
  color: #f7f8fa;
  backdrop-filter: blur(10px);
}

.story-card h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
}

.story-card .eyebrow {
  margin: 0 0 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: #ffc27a;
  font-size: 0.85rem;
}

.story-card .sub {
  margin: 0;
  color: rgba(247, 248, 250, 0.82);
  font-size: 1.02rem;
  line-height: 1.6;
}

.cta-card {
  width: min(960px, 92vw);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(1.75rem, 4vw, 2.5rem);
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  backdrop-filter: blur(12px);
  padding: clamp(1.75rem, 4vw, 2.5rem);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
  color: #f7f8fa;
}

.cta-text h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.cta-text .eyebrow {
  margin: 0 0 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: #ffc27a;
  font-size: 0.85rem;
}

.cta-text .sub {
  margin: 0;
  color: rgba(247, 248, 250, 0.8);
  font-size: 1rem;
  line-height: 1.5;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(1rem, 3vw, 1.75rem);
  flex-wrap: wrap;
}

.santa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(140px, 22vw, 200px);
  height: clamp(140px, 22vw, 200px);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

.santa-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.santa-btn:hover,
.santa-btn:focus-visible {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 26px 55px rgba(0, 0, 0, 0.35);
  border-color: rgba(255, 255, 255, 0.35);
}

.pill-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.25rem;
  border-radius: 999px;
  background: linear-gradient(120deg, #ff7b5f, #ffb347);
  color: #1b0a00;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pill-link:hover,
.pill-link:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 20px 38px rgba(0, 0, 0, 0.3);
}

.pf-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  display: block;
}

.pill-text {
  white-space: nowrap;
}

@keyframes float {
  from {
    transform: translateY(calc(var(--float-distance) * -0.5));
  }
  to {
    transform: translateY(var(--float-distance));
  }
}

@media (max-width: 480px) {
  body {
    background-size: auto 120vh;
  }

  .logo {
    width: min(70vw, 320px);
  }

  .cta-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cta-actions {
    justify-content: center;
  }
}
