:root {
  --bg: #0b0c0d;
  --bg-2: #16181a;
  --text: #f2f1ee;
  --text-dim: #9a9d9f;
  --accent: #c9432f;
  --border: rgba(255, 255, 255, 0.12);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  overflow: hidden;
  position: relative;
}

/* mountain photo backdrop */
.bg-photo {
  position: fixed;
  inset: 0;
  z-index: 0;
  background-image: url("assets/hero-bg.jpg");
  background-size: cover;
  background-position: center 35%;
  filter: grayscale(35%) brightness(0.6) contrast(1.15);
}

/* dark athletic overlay so text stays readable over the photo */
.bg-overlay {
  position: fixed;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 50% 42%, rgba(11, 12, 13, 0.35) 0%, rgba(11, 12, 13, 0.55) 55%, rgba(11, 12, 13, 0.8) 100%),
    linear-gradient(180deg, rgba(11, 12, 13, 0.45) 0%, rgba(11, 12, 13, 0.3) 40%, rgba(11, 12, 13, 0.7) 100%);
}

/* fine dot texture over the whole page */
.dots {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, 0.35) 1px, transparent 1px);
  background-size: 5px 5px;
  opacity: 0.18;
}

.hero {
  position: relative;
  z-index: 3;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 32px 24px;
  gap: 0;
}

.logo-wrap {
  margin-bottom: 48px;
}

.logo {
  width: 220px;
  aspect-ratio: 4489 / 2953;
  background-color: var(--text);
  -webkit-mask: url("assets/logo-mask.svg") no-repeat center / contain;
  mask: url("assets/logo-mask.svg") no-repeat center / contain;
}

.headline {
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 700;
  font-size: clamp(40px, 7vw, 72px);
  line-height: 1.1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
}

.headline .dot {
  color: var(--accent);
}

@media (max-width: 480px) {
  .logo {
    width: 170px;
  }
}
