/* ═══════════════════════════════════════════
   Z PRODUCTION — Global Stylesheet
   ═══════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:wght@300;400;500;600&family=DM+Mono:wght@400&display=swap');

:root {
  --black:    #0E0E0E;
  --deep:     #161616;
  --surface:  #1E1E1E;
  --border:   #2A2A2A;
  --mid:      #555555;
  --muted:    #888888;
  --white:    #FFFFFF;
  --red:      #E63E3E;
  --red-dark: #CC3535;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'DM Sans', sans-serif;
  --font-mono:    'DM Mono', monospace;
  --max-w: 1200px;
  --nav-h: 72px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 2px; }

/* ════════════════════════════════
   NAV
   ════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  padding: 0 40px;
  background: rgba(14,14,14,0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}
.nav__logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
}
.nav__logo-icon {
  width: 36px; height: 36px;
  position: relative; flex-shrink: 0;
}
.nav__logo-name {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 2px;
  color: var(--white);
  line-height: 1;
}
.nav__logo-sub {
  font-size: 9px;
  letter-spacing: 4px;
  color: var(--muted);
  text-transform: uppercase;
  line-height: 1;
  margin-top: 3px;
}
.nav__links {
  display: flex; gap: 36px;
  margin-left: auto;
  list-style: none;
}
.nav__links a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--red);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.2s;
}
.nav__links a:hover,
.nav__links a.active { color: var(--white); }
.nav__links a:hover::after,
.nav__links a.active::after { transform: scaleX(1); }

.nav__cta {
  margin-left: 36px;
  padding: 9px 22px;
  background: var(--red);
  color: var(--white) !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: 2px !important;
  text-transform: uppercase;
  border-radius: 3px;
  transition: background 0.2s !important;
}
.nav__cta:hover { background: var(--red-dark) !important; }
.nav__cta::after { display: none !important; }

/* Mobile nav toggle */
.nav__hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  margin-left: auto; cursor: pointer; background: none; border: none; padding: 4px;
}
.nav__hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 1px;
  transition: 0.3s;
}
.nav__mobile {
  display: none;
  position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: var(--deep);
  border-bottom: 1px solid var(--border);
  padding: 24px 40px;
  z-index: 99;
}
.nav__mobile.open { display: block; }
.nav__mobile a {
  display: block; padding: 12px 0;
  font-size: 13px; font-weight: 500; letter-spacing: 3px;
  text-transform: uppercase; color: var(--muted);
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.nav__mobile a:last-child { border-bottom: none; }
.nav__mobile a:hover { color: var(--white); }

/* ════════════════════════════════
   PAGE OFFSET
   ════════════════════════════════ */
.page-wrap { padding-top: var(--nav-h); }

/* ════════════════════════════════
   SECTION UTILITIES
   ════════════════════════════════ */
.section { padding: 100px 40px; }
.section--dark   { background: var(--black); }
.section--deep   { background: var(--deep); }
.section--surface{ background: var(--surface); }

.container { max-width: var(--max-w); margin: 0 auto; }

.section-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 400;
  letter-spacing: 4px; text-transform: uppercase; color: var(--red);
  margin-bottom: 20px;
}
.section-label::before {
  content: ''; display: block; width: 24px; height: 1px; background: var(--red);
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  letter-spacing: 2px;
  line-height: 1.0;
  color: var(--white);
  margin-bottom: 24px;
}

.section-body {
  font-size: 16px; font-weight: 300;
  color: var(--muted); line-height: 1.8;
  max-width: 620px;
}

/* ════════════════════════════════
   BUTTONS
   ════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px;
  font-size: 12px; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase;
  border-radius: 3px; cursor: pointer;
  transition: 0.2s; border: none;
  text-decoration: none;
}
.btn--primary {
  background: var(--red); color: var(--white);
}
.btn--primary:hover { background: var(--red-dark); transform: translateY(-1px); }
.btn--outline {
  background: transparent; color: var(--white);
  border: 1px solid var(--border);
}
.btn--outline:hover { border-color: var(--white); transform: translateY(-1px); }

/* ════════════════════════════════
   FOOTER
   ════════════════════════════════ */
.footer {
  background: var(--deep);
  border-top: 1px solid var(--border);
  padding: 60px 40px 40px;
}
.footer__inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
}
.footer__brand-name {
  font-family: var(--font-display);
  font-size: 28px; letter-spacing: 2px; color: var(--white);
  margin-bottom: 8px;
}
.footer__brand-sub {
  font-size: 10px; letter-spacing: 4px; text-transform: uppercase; color: var(--muted);
}
.footer__tagline {
  margin-top: 16px; font-size: 14px; color: var(--muted); font-weight: 300;
}
.footer__heading {
  font-size: 11px; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: var(--white); margin-bottom: 20px;
}
.footer__links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer__links a {
  font-size: 14px; color: var(--muted); transition: color 0.2s;
}
.footer__links a:hover { color: var(--white); }
.footer__email {
  font-size: 15px; color: var(--red);
  font-weight: 500; transition: color 0.2s;
}
.footer__email:hover { color: var(--white); }
.footer__bottom {
  max-width: var(--max-w); margin: 48px auto 0;
  padding-top: 24px; border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
}
.footer__copy { font-size: 12px; color: var(--mid); letter-spacing: 1px; }
.footer__rule { width: 40px; height: 2px; background: var(--red); }

/* ════════════════════════════════
   UNSPLASH IMAGE WRAPPERS
   ════════════════════════════════ */
.img-cover {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}

/* ════════════════════════════════
   FADE-IN ANIMATIONS
   ════════════════════════════════ */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s 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; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ════════════════════════════════
   RESPONSIVE
   ════════════════════════════════ */
@media (max-width: 768px) {
  .section { padding: 72px 24px; }
  .nav { padding: 0 24px; }
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .footer { padding: 48px 24px 32px; }
  .footer__inner { grid-template-columns: 1fr; gap: 36px; }
  .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }
}
