:root {
  --black: #060505;
  --cream: #fff8ed;
  --red: #d64a32;
  --gold: #c99b61;
}

* {
  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.72;
  filter: saturate(0.9) contrast(1.08);
}

.splash-overlay {
  z-index: -1;
  background:
    radial-gradient(circle at 50% 34%, rgba(214, 74, 50, 0.1), transparent 26%),
    linear-gradient(90deg, rgba(6, 5, 5, 0.64), rgba(6, 5, 5, 0.1) 50%, rgba(6, 5, 5, 0.62)),
    linear-gradient(0deg, rgba(6, 5, 5, 0.72), rgba(6, 5, 5, 0.06) 48%, rgba(6, 5, 5, 0.46));
}

.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, 248, 237, 0.76);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.42), 0 0 0 8px rgba(201, 155, 97, 0.14);
  animation: logoIn 1800ms ease both;
}

.kicker {
  margin: 0 0 1.35rem;
  color: var(--red);
  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, 248, 237, 0.84);
  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, 248, 237, 0.78);
  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, 248, 237, 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;
  }
}
