
:root {
  --red: #E8000D;
  --white: #ffffff;
  --off-white: #f5f5f5;
  --light-gray: #e8e8e8;
  --dark: #111111;
  --text: #333333;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--text);
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 60px;
  background: #0a0a0a;
  border-bottom: 1px solid rgba(232,0,13,0.15);
}

.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  color: white;
  letter-spacing: 3px;
  text-decoration: none;
}

.nav-logo span { color: var(--red); }

.back-btn {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.back-btn:hover { color: var(--red); }

.hero {
  background: #0a0a0a;
  padding: 80px 60px 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(232,0,13,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,0,13,0.05) 1px, transparent 1px);
  background-size: 50px 50px;
}

.hero-label {
  font-size: 0.75rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
  position: relative;
}

.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  color: white;
  letter-spacing: 3px;
  position: relative;
  line-height: 1;
}

.content {
  max-width: 780px;
  margin: 0 auto;
  padding: 80px 60px;
}

.section {
  margin-bottom: 52px;
  padding-bottom: 52px;
  border-bottom: 1px solid var(--light-gray);
}

.section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.section h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 2px;
  color: var(--dark);
  margin-bottom: 20px;
}

.section p {
  font-size: 0.95rem;
  line-height: 1.9;
  color: #555;
  margin-bottom: 12px;
}

.section p:last-child { margin-bottom: 0; }

.section a {
  color: var(--red);
  text-decoration: none;
}

.section a:hover { text-decoration: underline; }

.info-block {
  background: var(--off-white);
  border-left: 3px solid var(--red);
  padding: 24px 28px;
  margin-top: 16px;
}

.info-block p {
  margin-bottom: 6px;
  color: var(--dark);
  font-size: 0.95rem;
}

footer {
  background: #0a0a0a;
  padding: 32px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.05);
}

footer .logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  color: white;
  letter-spacing: 3px;
}

footer .logo span { color: var(--red); }
footer p { font-size: 0.8rem; color: rgba(255,255,255,0.3); }

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover { color: var(--red); }

@media (max-width: 768px) {
  nav { padding: 18px 24px; }
  .hero { padding: 60px 24px 40px; }
  .content { padding: 50px 24px; }
  footer { flex-direction: column; gap: 16px; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
}
