:root {
  --orange: #f18031;
  --blue: #2582c2;
  --ink: #10282d;
  --paper: #f7f4ed;
  --white: #fff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

.hero {
  position: relative;
  width: 100%;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: var(--ink);
}

.video-fallback,
.hero-video,
.video-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.video-fallback {
  background: url("images/hero-fallback.jpg") center / cover no-repeat;
  transform: scale(1.02);
}

.hero-video {
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: none;
  object-fit: cover;
}

.video-shade {
  background: rgba(5, 27, 32, 0.16);
}

.hero-logo {
  position: relative;
  z-index: 2;
  width: 30vw;
  height: auto;
  filter: drop-shadow(0 18px 32px rgba(0, 0, 0, 0.3));
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 28px;
  width: 28px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 18px;
  transform: translateX(-50%);
}

.scroll-cue span {
  position: absolute;
  top: 9px;
  left: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--white);
  transform: translateX(-50%);
  animation: scroll 1.8s ease-in-out infinite;
}

footer {
  padding: clamp(70px, 10vw, 150px) clamp(24px, 8vw, 125px) 34px;
  color: var(--white);
  background: var(--ink);
}

.footer-intro {
  padding-bottom: clamp(60px, 8vw, 110px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-kicker,
.footer-block > span {
  display: block;
  margin: 0 0 24px;
  color: var(--orange);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-intro h1 {
  margin: 0;
  max-width: 1000px;
  font-size: clamp(48px, 8vw, 126px);
  line-height: 0.9;
  letter-spacing: -0.065em;
  text-transform: uppercase;
}

.footer-data {
  padding: clamp(54px, 7vw, 95px) 0;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(50px, 10vw, 180px);
}

.footer-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-block p {
  margin: 0 0 25px;
  font-size: clamp(22px, 2.4vw, 38px);
  line-height: 1.25;
  letter-spacing: -0.035em;
}

.footer-block a {
  width: 100%;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  font-size: clamp(15px, 1.4vw, 19px);
  line-height: 1.4;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.footer-block a:hover {
  color: var(--orange);
  border-color: var(--orange);
}

.footer-bottom {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-bottom p {
  margin: 0;
}

@keyframes scroll {
  0% {
    opacity: 0;
    transform: translate(-50%, 0);
  }
  35% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, 16px);
  }
}

@media (max-width: 720px) {
  .hero-logo {
    width: 30vw;
  }

  .footer-data {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-video {
    display: none;
  }

  .scroll-cue span {
    animation: none;
  }
}
