/* ════════════════════════════════════════════
   MJS Adventures — Brand Stylesheet
   High Energy · Dark · Bold
   ════════════════════════════════════════════ */

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

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

:root {
  --void: #0A0A0A;
  --gunmetal: #111111;
  --charcoal: #2A2A2A;
  --blaze: #E85A00;
  --ember: #FF8C42;
  --white: #F0F0F0;
  --gray-light: #AAA;
  --gray-mid: #888;
  --gray-dark: #444;
  --font-display: 'Bebas Neue', sans-serif;
  --font-accent: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--void);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ─── UTILITY CLASSES ─── */
.eyebrow {
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--blaze);
  display: block;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 72px);
  color: var(--white);
  line-height: 0.92;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}

.body-text {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 15px;
  color: var(--gray-light);
  line-height: 1.8;
  max-width: 560px;
  margin-bottom: 16px;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-block;
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.25s ease;
  border: none;
}

.btn-primary {
  background: var(--blaze);
  color: var(--void);
}

.btn-primary:hover {
  background: var(--ember);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--charcoal);
}

.btn-ghost:hover {
  border-color: var(--blaze);
  color: var(--blaze);
}

.btn-lg {
  padding: 20px 48px;
  font-size: 13px;
}

/* ─── NAVIGATION ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-brand-text {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.nav-brand-name {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--white);
  line-height: 0.9;
  letter-spacing: 0.06em;
}

.nav-brand-sub {
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 9px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--blaze);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gray-mid);
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
}

.nav-cta {
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--void);
  background: var(--blaze);
  padding: 10px 24px;
  border-radius: 2px;
  transition: background 0.2s ease;
}

.nav-cta:hover {
  background: var(--ember);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s ease;
}

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 40px 80px;
  background: var(--void);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 50%;
  background: linear-gradient(135deg, var(--gunmetal) 0%, var(--void) 100%);
  opacity: 0.5;
}

.hero::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 10%;
  width: 400px;
  height: 400px;
  border: 1px solid rgba(232, 90, 0, 0.08);
  border-radius: 50%;
  transform: translateY(-50%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(72px, 12vw, 140px);
  color: var(--white);
  line-height: 0.88;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}

.hero-sub {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 17px;
  color: var(--gray-mid);
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(transparent, var(--void));
  z-index: 1;
}

/* ─── STATS BAR ─── */
.stats-bar {
  background: var(--gunmetal);
  border-top: 1px solid var(--charcoal);
  border-bottom: 1px solid var(--charcoal);
  padding: 48px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 48px;
  color: var(--blaze);
  letter-spacing: 0.04em;
  display: block;
  line-height: 1;
}

.stat-label {
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 9px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gray-mid);
  display: block;
  margin-top: 8px;
}

/* ─── SECTIONS ─── */
.section {
  padding: 100px 0;
}

.section-dark {
  background: var(--gunmetal);
}

/* ─── SPLIT LAYOUT ─── */
.split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: start;
}

.accent-card {
  background: var(--gunmetal);
  border-left: 4px solid var(--blaze);
  padding: 36px 32px;
  border-radius: 2px;
}

.accent-eyebrow {
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 9px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--blaze);
  display: block;
  margin-bottom: 20px;
}

.accent-word {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--white);
  display: block;
  line-height: 1.3;
  letter-spacing: 0.05em;
}

/* ─── SERVICES GRID ─── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  margin-top: 48px;
}

.service-card {
  background: var(--void);
  padding: 40px 32px;
  border-radius: 2px;
  border-top: 2px solid transparent;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  border-top-color: var(--blaze);
  transform: translateY(-2px);
}

.service-icon {
  margin-bottom: 24px;
}

.service-tag {
  font-family: var(--font-display);
  font-size: 48px;
  color: rgba(255, 255, 255, 0.04);
  line-height: 1;
  margin-bottom: 8px;
}

.service-title {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--white);
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}

.service-desc {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 13px;
  color: var(--gray-mid);
  line-height: 1.7;
  margin-bottom: 24px;
  flex-grow: 1;
}

.service-link {
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--blaze);
  transition: color 0.2s ease;
}

.service-card:hover .service-link {
  color: var(--ember);
}

/* ─── CTA BANNER ─── */
.cta-banner {
  padding: 80px 0;
  background: var(--void);
  border-top: 1px solid var(--charcoal);
  border-bottom: 1px solid var(--charcoal);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  color: var(--white);
  line-height: 0.95;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.cta-sub {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 15px;
  color: var(--gray-mid);
}

/* ─── FOOTER ─── */
.footer {
  background: var(--gunmetal);
  padding: 72px 0 32px;
  border-top: 1px solid var(--charcoal);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-mjs {
  font-family: var(--font-display);
  font-size: 48px;
  color: var(--white);
  line-height: 0.88;
  letter-spacing: 0.06em;
  display: block;
}

.footer-adventures {
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--blaze);
  display: block;
  margin-top: 2px;
}

.footer-tagline {
  font-family: var(--font-body);
  font-weight: 300;
  font-style: italic;
  font-size: 14px;
  color: var(--gray-mid);
  margin-top: 16px;
}

.footer-heading {
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 9px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--blaze);
  display: block;
  margin-bottom: 20px;
}

.footer-link {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 14px;
  color: var(--gray-mid);
  display: block;
  margin-bottom: 10px;
  transition: color 0.2s ease;
}

a.footer-link:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid var(--charcoal);
  padding-top: 24px;
  font-family: var(--font-accent);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--gray-dark);
}

/* ─── PAGE HERO (Interior Pages) ─── */
.page-hero {
  padding: 140px 40px 60px;
  background: var(--void);
  border-bottom: 1px solid var(--charcoal);
}

.page-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  border-left: 4px solid var(--blaze);
  padding-left: 28px;
}

.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(56px, 8vw, 96px);
  color: var(--white);
  line-height: 0.9;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}

.page-hero-sub {
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--blaze);
}

/* ─── CONTENT CARDS ─── */
.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3px;
}

.content-card {
  background: var(--gunmetal);
  padding: 40px 32px;
  border-radius: 2px;
  border-top: 2px solid var(--blaze);
}

.content-card-title {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--white);
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}

.content-card-text {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 14px;
  color: var(--gray-mid);
  line-height: 1.7;
}

/* ─── FEATURE LIST ─── */
.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  color: var(--gray-light);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  gap: 12px;
}

.feature-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--blaze);
  border-radius: 1px;
  flex-shrink: 0;
}

/* ─── SPONSORS GRID ─── */
.sponsors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}

.sponsor-card {
  background: var(--gunmetal);
  padding: 48px 32px;
  border-radius: 2px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  transition: border-color 0.3s ease;
  border: 1px solid transparent;
}

.sponsor-card:hover {
  border-color: var(--charcoal);
}

.sponsor-name {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--white);
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.sponsor-desc {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 12px;
  color: var(--gray-dark);
}

/* ─── CONTACT SECTION ─── */
.contact-section {
  background: var(--void);
  padding: 100px 0;
  border-top: 1px solid var(--charcoal);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info-item {
  margin-bottom: 32px;
}

.contact-info-label {
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 9px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--blaze);
  display: block;
  margin-bottom: 8px;
}

.contact-info-value {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  color: var(--gray-light);
}

.form-group {
  margin-bottom: 16px;
}

.form-label {
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gray-mid);
  display: block;
  margin-bottom: 8px;
}

.form-input,
.form-textarea {
  width: 100%;
  background: var(--gunmetal);
  border: 1px solid var(--charcoal);
  border-radius: 2px;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 14px;
  color: var(--white);
  transition: border-color 0.2s ease;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--blaze);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .container { padding: 0 24px; }
  .nav-inner { padding: 0 24px; }

  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid var(--charcoal);
  }

  .nav-links.open { display: flex; }

  .hero { padding: 120px 24px 60px; }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .split {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .sponsors-grid {
    grid-template-columns: 1fr;
  }

  .content-grid {
    grid-template-columns: 1fr;
  }

  .page-hero { padding: 120px 24px 48px; }
}

@media (max-width: 600px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-title { font-size: 64px; }
}
