/* ============================================
   MAD HOUSE CREW — CSS Variables & Reset
   ============================================ */

:root {
  /* Colors */
  --red:         #cc0000;
  --red-hot:     #ff1111;
  --red-dim:     #660000;
  --red-glow:    rgba(200, 0, 0, 0.4);
  --black:       #000000;
  --dark:        #0a0000;
  --darker:      #050000;
  --white:       #ffffff;
  --gray:        #888888;
  --gray-dark:   #333333;

  /* Typography */
  --font-display: 'Bebas Neue', sans-serif;
  --font-mono:    'Space Mono', monospace;

  /* Spacing */
  --section-pad:  100px 48px;
  --nav-height:   80px;

  /* Transitions */
  --transition-fast:   0.2s ease;
  --transition-smooth: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-bounce: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);

  /* Borders */
  --border-dim:  1px solid #1a0000;
  --border-mid:  1px solid var(--red-dim);
  --border-hot:  1px solid var(--red);
}

/* ============================================
   RESET
   ============================================ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-mono);
  cursor: none;
  overflow-x: hidden;
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  cursor: none;
  border: none;
  background: none;
  font-family: inherit;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px;
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.text-red    { color: var(--red); }
.text-gray   { color: var(--gray); }
.text-white  { color: var(--white); }

.font-display { font-family: var(--font-display); }
.font-mono    { font-family: var(--font-mono); }

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* Section common */
.section-tag {
  font-size: 0.6rem;
  letter-spacing: 6px;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-tag::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--red);
  flex-shrink: 0;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 0.95;
  letter-spacing: 2px;
}

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */
@media (max-width: 1024px) {
  .container { padding: 0 32px; }
}

@media (max-width: 768px) {
  :root { --section-pad: 80px 24px; }
  .container { padding: 0 24px; }
}
