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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

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

button { font-family: inherit; cursor: pointer; }

ul { margin: 0; padding: 0; list-style: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

@media (min-width: 1024px) {
  .container { padding: 0 40px; }
}

.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;
}

section { padding: var(--section-pad-mobile) 0; }

@media (min-width: 768px) {
  section { padding: var(--section-pad) 0; }
}

.section-header { margin-bottom: var(--header-gap-mobile); }

@media (min-width: 768px) {
  .section-header { margin-bottom: var(--header-gap); }
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--yellow);
  margin: 0 0 16px;
}

.hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0;
}

.hero-title-small,
.hero-title-large {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 120%;
  color: var(--white);
}

.hero-title-small { font-size: 24px; }

@media (min-width: 480px) { .hero-title-small { font-size: 32px; } }
@media (min-width: 768px) { .hero-title-small { font-size: 40px; } }
@media (min-width: 1024px) { .hero-title-small { font-size: 50px; } }
@media (min-width: 1400px) { .hero-title-small { font-size: 64px; } }

.hero-title-large { font-size: 40px; }

@media (min-width: 480px) { .hero-title-large { font-size: 60px; } }
@media (min-width: 768px) { .hero-title-large { font-size: 80px; } }
@media (min-width: 1024px) { .hero-title-large { font-size: 100px; } }
@media (min-width: 1400px) { .hero-title-large { font-size: 128px; } }

.section-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 24px;
  line-height: 120%;
  max-width: 1001px;
  margin: 0;
}

@media (min-width: 480px) { .section-title { font-size: 28px; } }
@media (min-width: 768px) { .section-title { font-size: 36px; } }
@media (min-width: 1024px) { .section-title { font-size: 48px; } }

.section-description {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 18px;
  line-height: 150%;
  max-width: 706px;
  color: var(--white-soft);
  margin: 16px 0 0;
}

@media (min-width: 768px) { .section-description { font-size: 20px; } }

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .fade-up { opacity: 1; transform: none; }
}
