/* ORR Media — Global Styles */
/* Palette: Deep Forest / Electric Lime / Warm Cream / Burnt Orange / Void Black */

:root {
  --void: #080c08;
  --forest: #12201a;
  --lime: #c8f520;
  --cream: #f0ead8;
  --orange: #e85d04;
  --muted: #4a6357;
  --white: #ffffff;
  --font-head: 'Bebas Neue', 'Impact', sans-serif;
  --font-body: 'Inter', 'Helvetica Neue', sans-serif;
  --font-mono: 'JetBrains Mono', 'Courier New', monospace;
}

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

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

html { scroll-behavior: smooth; }

body {
  background: var(--void);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ─── NOISE TEXTURE OVERLAY ─────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}

/* ─── NAVIGATION ─────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  mix-blend-mode: normal;
  transition: background 0.3s ease, padding 0.3s ease;
}

nav.scrolled {
  background: rgba(8, 12, 8, 0.92);
  backdrop-filter: blur(12px);
  padding: 1rem 2rem;
  border-bottom: 1px solid rgba(200, 245, 32, 0.12);
}

.nav-logo {
  font-family: var(--font-head);
  font-size: 1.8rem;
  letter-spacing: 0.08em;
  color: var(--lime);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.nav-logo span {
  color: var(--cream);
  font-size: 0.85rem;
  font-family: var(--font-mono);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.6;
  align-self: flex-end;
  margin-bottom: 0.2rem;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: var(--cream);
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0.7;
  transition: opacity 0.2s, color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--lime);
  transition: width 0.3s ease;
}

.nav-links a:hover { opacity: 1; color: var(--lime); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { opacity: 1; color: var(--lime); }
.nav-links a.active::after { width: 100%; }

.nav-cta {
  background: var(--lime);
  color: var(--void) !important;
  padding: 0.5rem 1.2rem;
  border-radius: 2px;
  opacity: 1 !important;
  font-weight: 700 !important;
  transition: background 0.2s ease !important;
}

.nav-cta:hover { background: var(--orange) !important; color: var(--white) !important; }
.nav-cta::after { display: none !important; }

/* ─── HAMBURGER ──────────────────────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--void);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-family: var(--font-head);
  font-size: 3.5rem;
  color: var(--cream);
  text-decoration: none;
  letter-spacing: 0.06em;
  transition: color 0.2s;
}

.mobile-menu a:hover { color: var(--lime); }

/* ─── SCROLL ANIMATIONS ──────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-right {
    opacity: 1;
    transform: none;
    transition: none;
  }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ─── SECTION SHARED ─────────────────────────────────────── */
section { position: relative; overflow: hidden; }

.section-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--lime);
  opacity: 0.8;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--lime);
}

h1, h2, h3 { font-family: var(--font-head); line-height: 0.95; letter-spacing: 0.02em; }

h1 { font-size: clamp(4rem, 12vw, 11rem); color: var(--cream); }
h2 { font-size: clamp(2.8rem, 7vw, 6rem); color: var(--cream); }
h3 { font-size: clamp(1.4rem, 3vw, 2.4rem); color: var(--cream); }

p { font-size: 1rem; line-height: 1.75; color: rgba(240, 234, 216, 0.75); max-width: 60ch; }

.text-lime { color: var(--lime); }
.text-orange { color: var(--orange); }

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: var(--font-body);
}

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

.btn-primary:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(240, 234, 216, 0.3);
}

.btn-outline:hover {
  border-color: var(--lime);
  color: var(--lime);
  transform: translateY(-2px);
}

/* ─── IMAGE PLACEHOLDER ──────────────────────────────────── */
.img-placeholder {
  background: var(--forest);
  border: 1px dashed rgba(200, 245, 32, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: rgba(200, 245, 32, 0.4);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.img-placeholder::before {
  content: '[ img ]';
  font-size: 1.4rem;
  opacity: 0.4;
}

/* ─── FOOTER ─────────────────────────────────────────────── */
footer {
  background: var(--forest);
  border-top: 1px solid rgba(200, 245, 32, 0.08);
  padding: 3rem 2rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.footer-brand .nav-logo { font-size: 2.2rem; }

.footer-brand p {
  font-size: 0.8rem;
  opacity: 0.5;
  margin-top: 0.75rem;
  max-width: 28ch;
}

.footer-links h4 {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 1rem;
}

.footer-links ul { list-style: none; }

.footer-links li + li { margin-top: 0.5rem; }

.footer-links a {
  color: rgba(240, 234, 216, 0.55);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--cream); }

.footer-bottom {
  max-width: 1200px;
  margin: 2.5rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(240, 234, 216, 0.07);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.75rem;
  opacity: 0.35;
  max-width: none;
}

/* ─── DIVIDER ACCENT ─────────────────────────────────────── */
.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,245,32,0.3), transparent);
  margin: 0;
}

/* ─── TICKER STRIP ───────────────────────────────────────── */
.ticker-wrap {
  overflow: hidden;
  background: var(--lime);
  padding: 0.65rem 0;
  white-space: nowrap;
}

.ticker-inner {
  display: inline-flex;
  gap: 0;
  animation: ticker 28s linear infinite;
}

.ticker-inner span {
  font-family: var(--font-head);
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  color: var(--void);
  padding: 0 2rem;
}

.ticker-inner .dot {
  color: var(--orange);
  padding: 0;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
