@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Space+Grotesk:wght@400;500;600&display=swap');

:root {
  --white: #f5f5f2;
  --soft: rgba(245, 245, 242, 0.72);
  --faint: rgba(245, 245, 242, 0.42);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  width: 100%;
  min-height: 100%;
  background: #030303;
}

body {
  color: var(--white);
  font-family: Inter, Arial, sans-serif;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #030303;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  filter: brightness(0.84) contrast(1.02);
  transform: scale(1.002);
}

.shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.10) 0%,
      rgba(0, 0, 0, 0.02) 28%,
      rgba(0, 0, 0, 0.14) 64%,
      rgba(0, 0, 0, 0.52) 100%
    ),
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.14) 0%,
      rgba(0, 0, 0, 0.02) 48%,
      rgba(0, 0, 0, 0.08) 100%
    );
  pointer-events: none;
}

.content,
.copyright {
  position: relative;
  z-index: 2;
}

.content {
  width: min(760px, calc(100vw - 48px));
  margin-left: clamp(24px, 5vw, 62px);
  padding-top: clamp(39vh, 43vh, 47vh);
}

.kicker {
  margin: 0 0 18px;
  color: var(--soft);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.24em;
}

h1 {
  margin: 0;
  font-family: "Space Grotesk", Inter, Arial, sans-serif;
  font-size: clamp(58px, 7.6vw, 108px);
  font-weight: 500;
  line-height: 0.88;
  letter-spacing: -0.06em;
}

.strapline {
  max-width: 690px;
  margin: 28px 0 0;
  color: var(--soft);
  font-size: clamp(15px, 1.35vw, 20px);
  line-height: 1.6;
}

.coming-soon {
  margin: 30px 0 0;
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
}

.copyright {
  position: absolute;
  left: clamp(24px, 5vw, 62px);
  bottom: 26px;
  color: var(--faint);
  font-size: 9px;
  letter-spacing: 0.14em;
}

@media (max-width: 760px) {
  .hero-image {
    object-position: 48% 38%;
    filter: brightness(0.80) contrast(1.03);
  }

  .content {
    width: calc(100vw - 40px);
    margin-left: 20px;
    padding-top: 46vh;
  }

  h1 {
    font-size: clamp(52px, 16vw, 84px);
  }

  .strapline {
    max-width: 90%;
    margin-top: 22px;
    font-size: 14px;
  }

  .coming-soon {
    margin-top: 24px;
  }

  .copyright {
    left: 20px;
    bottom: 20px;
  }
}

@media (max-height: 720px) and (min-width: 761px) {
  .content {
    padding-top: 34vh;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .content {
    animation: fade-up 0.9s ease-out both;
  }

  .hero-image {
    animation: settle 1.8s ease-out both;
  }
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes settle {
  from {
    opacity: 0.76;
    transform: scale(1.025);
  }

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