:root {
  --navy: #10162f;
  --accent: #d85e24;
  --bone: #f4ebdd;
  --line: rgba(244, 235, 221, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--navy);
}

body {
  margin: 0;
  background: var(--navy);
  color: var(--bone);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.splash {
  position: relative;
  display: grid;
  grid-template-rows: 1fr auto;
  min-height: 100svh;
  overflow: hidden;
  padding: clamp(1.25rem, 3vw, 3rem);
  isolation: isolate;
}

.splash::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: radial-gradient(circle at 79% 43%, rgba(216, 94, 36, 0.07), transparent 34%);
  content: "";
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(19rem, 0.65fr);
  align-items: center;
  gap: clamp(2rem, 7vw, 8rem);
  min-height: 0;
  padding: clamp(3rem, 8vh, 7rem) 0;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

h1 {
  margin: 0;
  color: var(--bone);
  font-size: clamp(4.25rem, 7.6vw, 8.5rem);
  font-weight: 700;
  letter-spacing: -0.07em;
  line-height: 0.92;
}

.pronunciation {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.6rem;
  color: var(--accent);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.15rem, 1.6vw, 1.5rem);
  line-height: 1.2;
}

.pronunciation span:last-child {
  color: rgba(244, 235, 221, 0.58);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 0.72rem;
  font-style: italic;
  letter-spacing: 0.07em;
}

.byline {
  max-width: 34rem;
  margin: clamp(2.5rem, 5vh, 4.25rem) 0 0;
  border-top: 1px solid var(--line);
  padding-top: 1.1rem;
  color: rgba(244, 235, 221, 0.58);
  font-size: 0.76rem;
  letter-spacing: 0.07em;
}

.mark-stage {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  width: min(100%, 30rem);
  justify-self: center;
}

.mark-stage::before {
  position: absolute;
  inset: 9%;
  border: 1px solid rgba(244, 235, 221, 0.11);
  border-radius: 50%;
  content: "";
}

.hero-mark {
  position: relative;
  z-index: 2;
  width: 72%;
  filter: drop-shadow(0 2rem 3rem rgba(0, 0, 0, 0.18));
  animation: float 10s ease-in-out infinite;
}

.footer {
  display: flex;
  justify-content: flex-end;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
  color: rgba(244, 235, 221, 0.55);
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer p {
  margin: 0;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(-0.5deg);
  }

  50% {
    transform: translateY(-0.35rem) rotate(0.35deg);
  }
}

@media (max-width: 860px) {
  .splash {
    overflow: visible;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 3rem 0 2.5rem;
  }

  h1 {
    font-size: clamp(3.4rem, 15vw, 7rem);
  }

  .mark-stage {
    width: min(74vw, 26rem);
    order: -1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-mark {
    animation: none;
  }
}
