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

html {
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  background: #000;
  color: #fff;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
  padding: 2rem 1.5rem;
  text-align: center;
}

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

.tagline {
  font-size: clamp(0.75rem, 2vw, 0.875rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

.year {
  font-size: clamp(4rem, 18vw, 12rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: -0.25rem;
}

.portrait {
  display: block;
  width: min(17rem, 78vw);
  max-width: 300px;
  height: auto;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  object-position: center top;
  border-radius: 1.125rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.cta {
  display: inline-block;
  padding: 0.75rem 2rem;
  border: 1px solid #fff;
  color: #fff;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.cta:hover {
  background: #fff;
  color: #000;
}

.cta:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 4px;
}

.slogan {
  max-width: 28rem;
  margin: 0;
  padding: 0;
  border: none;
  font-size: clamp(0.7rem, 2vw, 0.8125rem);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.55);
}

.slogan p + p {
  margin-top: 0.65rem;
}

.slogan-motto {
  font-style: italic;
  color: rgba(255, 255, 255, 0.7);
}

.social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
  margin-top: 0.5rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.social-link svg {
  width: 1.5rem;
  height: 1.5rem;
}

.social-link:hover {
  opacity: 0.7;
}

.social-link:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 4px;
  opacity: 1;
}

@media (max-width: 480px) {
  .hero {
    gap: 1.25rem;
  }

  .social {
    gap: 1.25rem;
  }
}
