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

:root {
  --ink: #f4f1ea;
  --ink-dim: rgba(244, 241, 234, 0.72);
  --bg: #0d0812;
  --accent: #eda75d;
}

html {
  scroll-behavior: smooth;
}

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

/* ============ Nav ============ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 2.2rem;
  background: transparent;
  /* faint scrim so links stay readable over the photo, nav itself stays see-through */
  background: linear-gradient(to bottom, rgba(13, 8, 18, 0.5), rgba(13, 8, 18, 0));
}

.nav-brand {
  font-family: "Anton", sans-serif;
  font-size: 1.25rem;
  letter-spacing: 0.12em;
  color: var(--ink);
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 0.6rem;
}

.nav-btn {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.55rem 1.1rem;
  transition: background 0.25s ease, color 0.25s ease;
}

.nav-btn:hover {
  background: var(--ink);
  color: var(--bg);
}

/* ============ Hero ============ */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: grid;
  place-items: center;
}

.hero-photo {
  position: absolute;
  inset: -12% 0;
  /* oversized so the parallax shift never exposes an edge */
  z-index: 0;
  background-image:
    url("../images/hero.jpg"),
    radial-gradient(120% 90% at 70% 20%, #472a5e 0%, transparent 60%),
    radial-gradient(90% 80% at 20% 85%, #6e2f63 0%, transparent 55%),
    linear-gradient(160deg, #2b1740 0%, #0d0812 70%);
  background-size: cover;
  background-position: center;
  will-change: transform;
}

/* legibility scrim: soft darkening behind the title, fade to bg at the bottom
   so the photo melts into the blurb section as it scrolls up */
.hero-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(70% 55% at 50% 52%, rgba(13, 8, 18, 0.42) 0%, transparent 100%),
    linear-gradient(to bottom, transparent 72%, var(--bg) 100%);
  pointer-events: none;
}

/* film grain over the photo */
.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: 0.14;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.hero-text {
  position: relative;
  z-index: 1;
  text-align: center;
  will-change: transform, opacity;
}

.hero-kicker {
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: 1.2rem;
}

.hero-title {
  font-family: "Anton", sans-serif;
  font-size: clamp(4.5rem, 16vw, 12rem);
  line-height: 0.92;
  letter-spacing: 0.02em;
  text-shadow: 0 10px 60px rgba(0, 0, 0, 0.55);
}

.hero-sub {
  margin-top: 1.4rem;
  font-size: 0.9rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
}

/* scroll hint — thin line that pulses */
.hero-scrollhint {
  position: absolute;
  bottom: 2.2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  transition: opacity 0.4s ease;
}

.hero-scrollhint span {
  display: block;
  width: 1px;
  height: 52px;
  background: var(--ink-dim);
  animation: drop 1.8s ease-in-out infinite;
  transform-origin: top;
}

@keyframes drop {
  0%   { transform: scaleY(0); }
  45%  { transform: scaleY(1); }
  100% { transform: scaleY(1); opacity: 0; }
}

/* ============ Blurb ============ */
.blurb {
  position: relative;
  z-index: 2;
  background: var(--bg);
  padding: 9rem 2rem;
  display: flex;
  justify-content: center;
}

.blurb-inner {
  max-width: 640px;
}

.blurb-label {
  font-size: 0.8rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.8rem;
}

.blurb-text {
  font-size: clamp(1.25rem, 2.4vw, 1.6rem);
  font-weight: 300;
  line-height: 1.65;
  color: var(--ink-dim);
}

.blurb-text em {
  color: var(--ink);
  font-style: italic;
}

/* ============ Footer ============ */
.footer {
  padding: 2.5rem 2rem 3rem;
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244, 241, 234, 0.35);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2.2rem;
  margin-bottom: 1.5rem;
}

.footer-links a {
  color: var(--ink-dim);
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  transition: color 0.25s ease;
}

.footer-links a:hover {
  color: var(--accent);
}

/* ============ Stub pages (gallery / lyrics / events) ============ */
.stub {
  min-height: 100vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 2rem;
}

.stub h1 {
  font-family: "Anton", sans-serif;
  font-size: clamp(3rem, 10vw, 7rem);
  margin-bottom: 1rem;
}

.stub p {
  color: var(--ink-dim);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

/* keep Mantis (right of frame) in view when the photo is cropped tall */
@media (orientation: portrait) {
  .hero-photo {
    background-position: 72% center;
  }
}

/* ============ Small screens ============ */
@media (max-width: 560px) {
  .nav {
    padding: 0.9rem 0.75rem;
  }
  .nav-brand {
    font-size: 1.05rem;
    letter-spacing: 0.08em;
  }
  .nav-links {
    gap: 0.15rem;
    flex-wrap: wrap;
    justify-content: flex-end;
    row-gap: 0.2rem;
  }
  .nav-btn {
    padding: 0.45rem 0.55rem;
    font-size: 0.68rem;
    letter-spacing: 0.07em;
  }
  .hero-kicker {
    letter-spacing: 0.26em;
    font-size: 0.78rem;
  }
  .blurb {
    padding: 6rem 1.5rem;
  }
  .footer-links {
    flex-wrap: wrap;
    gap: 0.9rem 1.5rem;
    padding: 0 1rem;
  }
  .footer-links a {
    font-size: 0.75rem;
    letter-spacing: 0.18em;
  }
}
