:root {
  --ink: #f4ece6;
  --ink-dim: rgba(244, 236, 230, 0.55);
  --bg: #0a0604;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Archivo", system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  height: 100svh;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  background-image: url("images/hero.jpg");
  background-size: cover;
  background-position: center 42%;
  transform: scale(1.08);
  animation: slowZoom 14s ease-out forwards;
}

@keyframes slowZoom {
  to { transform: scale(1); }
}

/* darken edges so wordmark + tagline read clearly */
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 80% at 50% 38%, transparent 35%, rgba(8, 4, 2, 0.55) 100%),
    linear-gradient(to bottom, rgba(8, 4, 2, 0.25) 0%, transparent 30%, rgba(8, 4, 2, 0.85) 100%);
}

.hero__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
}

.wordmark {
  font-family: "General Sans", sans-serif;
  font-weight: 700;
  font-size: clamp(3.4rem, 13vw, 11rem);
  letter-spacing: -0.02em;
  line-height: 0.9;
  text-transform: uppercase;
  color: var(--ink);
  text-shadow: 0 8px 60px rgba(0, 0, 0, 0.5);

  opacity: 0;
  transform: translateY(46px);
  animation: pullUp 3s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
}

.tagline {
  margin-top: 22px;
  font-size: clamp(0.95rem, 1.6vw, 1.2rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--ink-dim);

  opacity: 0;
  transform: translateY(24px);
  animation: pullUp 1s cubic-bezier(0.16, 1, 0.3, 1) 2s forwards;
}

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

@media (prefers-reduced-motion: reduce) {
  .hero__media, .wordmark, .tagline {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
