:root {
  --yellow: #ffd000;
  --ink: #111111;
  --ink-soft: #2a2a2a;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  min-height: 100vh;
  color: var(--ink);
  font-family: "Space Grotesk", sans-serif;
  background: var(--yellow);
  overflow-x: hidden;
}

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

.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 24px 56px;
  background: var(--yellow);
}

.logo {
  width: min(58vw, 280px);
  height: auto;
  display: block;
  margin-bottom: 22px;
  animation: rise 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.tagline {
  margin: 0;
  max-width: 22ch;
  font-size: clamp(1.15rem, 3.4vw, 1.55rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--ink-soft);
  animation: rise 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) 0.08s both;
}

.support {
  margin: 12px 0 0;
  max-width: 34ch;
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.4;
  color: rgba(17, 17, 17, 0.72);
  animation: rise 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) 0.14s both;
}

.cta {
  margin-top: 28px;
  animation: rise 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) 0.22s both;
}

.mail {
  display: inline-block;
  color: var(--ink);
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  border-bottom: 2px solid rgba(17, 17, 17, 0.35);
  padding-bottom: 2px;
  transition: border-color 160ms ease, transform 160ms ease;
}

.mail:hover,
.mail:focus-visible {
  border-bottom-color: var(--ink);
  transform: translateY(-1px);
}

.stores {
  margin-top: 36px;
  animation: rise 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) 0.3s both;
}

.find-us {
  margin: 0 0 12px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(17, 17, 17, 0.55);
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

.badge {
  display: inline-flex;
  transition: transform 160ms ease, opacity 160ms ease;
}

.badge img {
  display: block;
  height: 44px;
  width: auto;
}

.badge:hover,
.badge:focus-visible {
  transform: translateY(-2px);
  opacity: 0.95;
}

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

@media (max-width: 520px) {
  .hero {
    padding-top: 40px;
  }

  .badge img {
    height: 40px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .logo,
  .tagline,
  .support,
  .cta,
  .stores {
    animation: none !important;
  }
}
