/* ==========================================================================
   HARD-CORR PRODUCTIONS — design tokens
   Palette sourced from the studio itself: checkered purple/black acoustic
   foam, green + red practical stage light, brushed steel console.
   ========================================================================== */
:root {
  --void: #0b0a0d;
  --void-soft: #131118;
  --foam: #3a2a4a;
  --foam-dark: #1f1626;
  --signal-green: #4fff8a;
  --cable-red: #ff2d4e;
  --console-steel: #8a8a92;
  --bone: #ece8e2;
  --bone-dim: #9a958f;

  --display: 'Metal Mania', system-ui, sans-serif;
  --body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --mono: 'JetBrains Mono', 'Courier New', monospace;

  --edge: 1px solid rgba(236, 232, 226, 0.08);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

body {
  margin: 0;
  background: var(--void);
  color: var(--bone);
  font-family: var(--body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

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

:focus-visible {
  outline: 2px solid var(--signal-green);
  outline-offset: 3px;
}

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

.eyebrow {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--signal-green);
  margin: 0 0 14px;
}

h1, h2, h3 { margin: 0; font-weight: 400; }

.section-title {
  font-family: var(--display);
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  letter-spacing: 0.02em;
  color: var(--bone);
  margin-bottom: 28px;
  line-height: 1.15;
}

/* ---------- Level meter — the signature element ---------- */
.meter {
  display: inline-flex;
  align-items: flex-end;
  gap: 3px;
  height: 18px;
}
.meter i {
  display: block;
  width: 3px;
  background: var(--console-steel);
  animation: meter-bounce 1.1s ease-in-out infinite;
  transform-origin: bottom;
}
.meter i:nth-child(1) { height: 40%; animation-delay: -0.9s; }
.meter i:nth-child(2) { height: 70%; animation-delay: -0.6s; background: var(--signal-green); }
.meter i:nth-child(3) { height: 100%; animation-delay: -0.3s; background: var(--signal-green); }
.meter i:nth-child(4) { height: 55%; animation-delay: -1.1s; }
.meter i:nth-child(5) { height: 85%; animation-delay: -0.15s; background: var(--cable-red); }

@keyframes meter-bounce {
  0%, 100% { transform: scaleY(0.35); }
  50% { transform: scaleY(1); }
}

.divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 40px;
  color: var(--bone-dim);
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(236,232,226,0.18), transparent);
}

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px;
  background: rgba(11, 10, 13, 0.72);
  backdrop-filter: blur(10px);
  border-bottom: var(--edge);
}
.nav-mark {
  font-family: var(--display);
  font-size: 1.15rem;
  letter-spacing: 0.03em;
  text-decoration: none;
  color: var(--bone);
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0; padding: 0;
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav-links a { text-decoration: none; color: var(--bone-dim); transition: color 0.2s; }
.nav-links a:hover { color: var(--signal-green); }
.nav-links { display: none; }
@media (min-width: 760px) { .nav-links { display: flex; } }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  background-image:
    linear-gradient(180deg, rgba(11,10,13,0.35) 0%, rgba(11,10,13,0.55) 55%, var(--void) 96%),
    url('../assets/img/hero.jpg');
  background-size: cover;
  background-position: center 30%;
  padding: 120px 0 64px;
}
.hero-inner { position: relative; z-index: 2; }
.hero-word {
  font-family: var(--display);
  font-size: clamp(3rem, 9vw, 6.8rem);
  line-height: 0.98;
  letter-spacing: 0.01em;
  color: var(--bone);
  text-shadow: 0 0 40px rgba(79,255,138,0.15);
  margin: 0 0 18px;
}
.hero-word span { color: var(--signal-green); }
.hero-sub {
  font-family: var(--mono);
  font-size: 0.95rem;
  color: var(--bone-dim);
  max-width: 46ch;
  margin: 0 0 36px;
}

/* Countdown */
.countdown {
  display: flex;
  gap: 22px;
  margin-bottom: 34px;
  flex-wrap: wrap;
}
.count-cell { text-align: left; }
.count-num {
  font-family: var(--mono);
  font-size: clamp(1.6rem, 4vw, 2.3rem);
  color: var(--signal-green);
  line-height: 1;
}
.count-label {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bone-dim);
  margin-top: 6px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 26px;
  background: transparent;
  border: 1px solid var(--signal-green);
  color: var(--bone);
  font-family: var(--mono);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.btn:hover { background: var(--signal-green); color: var(--void); }

/* ---------- About ---------- */
.about {
  padding: 110px 0 90px;
  border-top: var(--edge);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 860px) { .about-grid { grid-template-columns: 0.85fr 1.15fr; } }
.about-portrait {
  filter: grayscale(0.25) contrast(1.05);
  border: var(--edge);
}
.about-copy p {
  color: var(--bone-dim);
  font-size: 1.02rem;
  max-width: 58ch;
}
.about-copy strong { color: var(--bone); font-weight: 600; }

.specs {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 28px;
  font-family: var(--mono);
  font-size: 0.82rem;
}
.specs div { padding: 10px 0; border-top: var(--edge); color: var(--bone-dim); }
.specs strong { display: block; color: var(--bone); font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 4px; }

/* ---------- Process / channel strips ---------- */
.process {
  padding: 90px 0;
  background: var(--void-soft);
  border-top: var(--edge);
  border-bottom: var(--edge);
}
.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 760px) { .process-grid { grid-template-columns: 1fr 1fr; } }

.channel {
  border: var(--edge);
  padding: 26px 24px;
  background: linear-gradient(180deg, rgba(58,42,74,0.18), transparent);
  position: relative;
}
.channel-id {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--console-steel);
  letter-spacing: 0.12em;
  margin-bottom: 10px;
}
.channel h3 {
  font-family: var(--body);
  font-weight: 600;
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: var(--bone);
}
.channel p { color: var(--bone-dim); font-size: 0.94rem; margin: 0; }

.process-photo {
  margin-top: 40px;
  border: var(--edge);
}

/* ---------- Reel ---------- */
.reel { padding: 100px 0 60px; }
.reel-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 860px) {
  .reel-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; grid-auto-rows: 1fr; }
}
.reel-item {
  position: relative;
  overflow: hidden;
  background: var(--void-soft);
  border: var(--edge);
  aspect-ratio: 16/10;
  cursor: pointer;
}
.reel-grid > .reel-item:nth-child(2),
.reel-grid > .reel-item:nth-child(3),
.reel-grid > .reel-item:nth-child(4) {
  aspect-ratio: 9/16;
}
.reel-item video, .reel-item img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.reel-item .play-tag {
  position: absolute;
  bottom: 12px; left: 12px;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(11,10,13,0.7);
  padding: 6px 10px;
  color: var(--bone);
  pointer-events: none;
}
.reel-item.playing .play-tag { display: none; }

/* ---------- Gallery ---------- */
.gallery { padding: 40px 0 100px; }
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}
.gallery-strip img {
  width: 100%; height: 260px;
  object-fit: cover;
  border: var(--edge);
  filter: saturate(1.05);
}

/* ---------- Book / contact ---------- */
.book {
  padding: 100px 0 110px;
  border-top: var(--edge);
  background:
    radial-gradient(ellipse at 20% 20%, rgba(58,42,74,0.35), transparent 55%),
    var(--void);
}
.book-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
}
@media (min-width: 860px) { .book-grid { grid-template-columns: 1fr 1fr; } }

.book-copy p { color: var(--bone-dim); max-width: 50ch; }

.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bone-dim);
  margin-bottom: 8px;
}
.field input, .field textarea, .field select {
  width: 100%;
  background: var(--void-soft);
  border: var(--edge);
  color: var(--bone);
  font-family: var(--body);
  font-size: 0.95rem;
  padding: 12px 14px;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--signal-green);
}
.field textarea { resize: vertical; min-height: 100px; }
.book form button {
  width: 100%;
  padding: 15px;
  background: var(--signal-green);
  border: none;
  color: var(--void);
  font-family: var(--mono);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.2s;
}
.book form button:hover { opacity: 0.85; }

.contact-line {
  font-family: var(--mono);
  font-size: 0.88rem;
  color: var(--bone-dim);
  margin-top: 28px;
}
.contact-line a { color: var(--signal-green); text-decoration: none; }

/* ---------- Footer ---------- */
footer {
  padding: 32px 0;
  border-top: var(--edge);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--bone-dim);
  letter-spacing: 0.06em;
}
