:root {
  --black: #070606;
  --cream: #fff7ec;
  --red: #c4162a;
  --gold: #d9a85f;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--black);
  color: var(--cream);
  font-family: "Jost", "Trebuchet MS", Arial, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

.splash {
  position: relative;
  display: grid;
  min-height: 100svh;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(1.4rem, 4vw, 3rem);
}

.splash-video,
.splash-overlay {
  position: absolute;
  inset: 0;
}

.splash-video {
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.74;
  filter: saturate(0.9) contrast(1.1);
}

.splash-overlay {
  z-index: -1;
  background:
    radial-gradient(circle at 50% 32%, rgba(196, 22, 42, 0.16), transparent 28%),
    linear-gradient(90deg, rgba(7, 6, 6, 0.7), rgba(7, 6, 6, 0.12) 50%, rgba(7, 6, 6, 0.66)),
    linear-gradient(0deg, rgba(7, 6, 6, 0.78), rgba(7, 6, 6, 0.08) 48%, rgba(7, 6, 6, 0.48));
}

.splash-content {
  width: min(100%, 940px);
  text-align: center;
}

.splash-logo {
  width: clamp(9rem, 15vw, 13rem);
  aspect-ratio: 1;
  margin: 0 auto 1.35rem;
  border: 2px solid rgba(255, 247, 236, 0.78);
  border-radius: 50%;
  object-fit: cover;
  object-position: 52% 42%;
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.44), 0 0 0 8px rgba(217, 168, 95, 0.16);
  animation: logoIn 1800ms ease both;
}

.kicker {
  margin: 0 0 1.35rem;
  color: var(--gold);
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-shadow: 0 0.15rem 0.45rem rgba(0, 0, 0, 0.9), 0 0 1.1rem rgba(0, 0, 0, 0.72);
  text-transform: uppercase;
}

h1 {
  margin: 0 0 1.1rem;
  color: rgba(255, 247, 236, 0.86);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.4rem, 9vw, 8rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.9;
  text-wrap: balance;
}

.intro {
  max-width: 710px;
  margin: 0 auto 1.6rem;
  color: rgba(255, 247, 236, 0.8);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  line-height: 1.65;
}

.splash-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
}

.splash-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  min-width: 9rem;
  padding: 0.9rem 1.35rem;
  border: 1px solid rgba(255, 247, 236, 0.72);
  border-radius: 999px;
  color: #fff;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 190ms ease, background 190ms ease, border-color 190ms ease;
}

.splash-actions a:first-child {
  border-color: var(--red);
  background: var(--red);
}

.splash-actions a:hover {
  transform: translateY(-3px);
}

@keyframes logoIn {
  from {
    opacity: 0;
    transform: scale(0.92);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 620px) {
  .splash {
    align-items: center;
    padding-block: 4rem;
  }

  h1 {
    font-size: clamp(3rem, 17vw, 5rem);
  }

  .splash-actions {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}
