@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800&family=Barlow:wght@300;400;500&display=swap');

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

:root {
  --black:   #0c0c0c;
  --dark:    #141414;
  --panel:   #1a1a1a;
  --border:  #2a2a2a;
  --mid:     #333;
  --muted:   #777;
  --light:   #aaa;
  --white:   #f0ede8;
  --yellow:  #f5c400;
  --yellow2: #d4a800;
  --red:     #c0392b;

  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'Barlow', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--dark);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── TEXTURE OVERLAY ── */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4'%3E%3Crect width='4' height='4' fill='%230c0c0c'/%3E%3Crect width='1' height='1' fill='%23161616'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 0; opacity: 0.5;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: var(--black);
  border-bottom: 3px solid var(--yellow);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 3rem;
  height: 68px;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: 3px;
  color: var(--white);
  text-decoration: none;
  display: flex; align-items: center; gap: 10px;
}
.nav-logo .logo-icon {
  width: 36px; height: 36px;
  background: var(--yellow);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.nav-logo span { color: var(--yellow); }
.nav-links { display: flex; gap: 0; list-style: none; height: 68px; }
.nav-links a {
  display: flex; align-items: center;
  padding: 0 1.3rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--light);
  text-decoration: none;
  border-right: 1px solid var(--border);
  transition: background 0.2s, color 0.2s;
  position: relative;
}
.nav-links a:first-child { border-left: 1px solid var(--border); }
.nav-links a:hover, .nav-links a.active {
  background: var(--panel);
  color: var(--yellow);
}
.nav-links a.active::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--yellow);
}
.nav-cta {
  background: var(--yellow);
  color: var(--black) !important;
  font-weight: 700 !important;
  padding: 0 1.5rem !important;
  border: none !important;
}
.nav-cta:hover { background: var(--yellow2) !important; color: var(--black) !important; }

/* ── FOOTER ── */
footer {
  background: var(--black);
  border-top: 3px solid var(--yellow);
  padding: 3rem;
  position: relative; z-index: 1;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: 3px;
  margin-bottom: 0.8rem;
}
.footer-brand-name span { color: var(--yellow); }
.footer-tagline {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1.2rem;
}
.footer-col-title {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}
.footer-links { list-style: none; }
.footer-links li { padding: 0.3rem 0; }
.footer-links a {
  font-size: 0.88rem;
  color: var(--light);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--yellow); }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 0.6rem;
  font-size: 0.85rem; color: var(--light);
  margin-bottom: 0.6rem;
}
.footer-contact-item .ico { color: var(--yellow); font-size: 0.9rem; margin-top: 2px; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.78rem; color: var(--muted);
}
.footer-bottom a { color: var(--muted); text-decoration: none; }
.footer-bottom a:hover { color: var(--yellow); }

/* ── SECTION HELPERS ── */
.section-wrap { position: relative; z-index: 1; }
.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 0.8rem;
}
.section-tag::before {
  content: '';
  width: 24px; height: 2px;
  background: var(--yellow);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: 2px;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.section-sub {
  font-size: 0.95rem;
  color: var(--light);
  line-height: 1.7;
  max-width: 520px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.85rem 2rem;
  cursor: pointer; border: none;
  transition: transform 0.15s, background 0.2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-yellow { background: var(--yellow); color: var(--black); }
.btn-yellow:hover { background: var(--yellow2); }
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--border);
}
.btn-ghost:hover { border-color: var(--yellow); color: var(--yellow); }

/* ── REVEAL ANIMATION ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ── DIAGONAL DIVIDER ── */
.diag {
  height: 60px;
  background: var(--black);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 40%);
}
.diag-rev {
  height: 60px;
  background: var(--panel);
  clip-path: polygon(0 0, 100% 40%, 100% 100%, 0 100%);
}

/* ── WARNING STRIPE ── */
.warning-stripe {
  height: 8px;
  background: repeating-linear-gradient(
    -45deg,
    var(--yellow) 0px, var(--yellow) 10px,
    var(--black) 10px, var(--black) 20px
  );
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 0 1.2rem; }
  .nav-links { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}
