/* ═══════════════════════════════════════
   HARGUE — Global Stylesheet
   Brand Guide V2.0 · 2026
   ═══════════════════════════════════════ */

:root {
  --midnight:    #0A0E0F;
  --deep-dark:   #0F1516;
  --charcoal:    #1A2226;
  --emerald:     #00A878;
  --teal:        #007C7A;
  --deep-teal:   #005F5C;
  --gold:        #C8A855;
  --rich-gold:   #D4A017;
  --smoke:       #8A9A9E;
  --ash:         #4A5658;
  --pale:        #D4DDE0;
  --white:       #F0F4F5;
  --edge:        #1B3A38;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--midnight);
  color: var(--white);
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

/* ═══ TYPOGRAPHY ═══ */
h1, h2, h3, h4 {
  font-family: 'Bebas Neue', Impact, 'Arial Narrow', sans-serif;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
}
h1 { font-size: clamp(56px, 10vw, 120px); }
h2 { font-size: clamp(36px, 5vw, 64px); margin-bottom: 24px; }
h3 { font-size: clamp(24px, 3vw, 36px); }

p { color: var(--smoke); max-width: 600px; }
p + p { margin-top: 16px; }

.label {
  font-family: 'JetBrains Mono', 'SF Mono', monospace;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--emerald);
  display: block;
  margin-bottom: 12px;
}

/* ═══ LAYOUT ═══ */
.container { max-width: 1100px; margin: 0 auto; padding: 0 40px; }
.section { padding: 100px 0; }
.section + .section { border-top: 1px solid rgba(255,255,255,0.04); }

/* ═══ NAV ═══ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 24px 0;
  transition: background 0.4s, padding 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(10, 14, 15, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 16px 0;
  border-bottom-color: rgba(255,255,255,0.04);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: 28px;
  letter-spacing: 5px;
}
.nav-logo .h { color: var(--gold); }
.nav-logo .argue { color: var(--white); }

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav-links a {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--smoke);
  transition: color 0.3s;
  position: relative;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0; right: 0;
  height: 1px;
  background: var(--gold);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
  transition: 0.3s;
}
.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ═══ HERO ═══ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center right;
  opacity: 0.5;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,14,15,0.2) 0%,
    rgba(10,14,15,0.4) 60%,
    rgba(10,14,15,1) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 120px;
}
.hero h1 {
  margin-bottom: 20px;
}
.hero h1 .gold { color: var(--gold); }
.hero p {
  font-size: 18px;
  margin-bottom: 32px;
}

/* ═══ BUTTONS ═══ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: 18px;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 14px 32px;
  border: 1.5px solid var(--emerald);
  color: var(--white);
  background: transparent;
  border-radius: 0;
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s;
}
.btn:hover {
  background: var(--emerald);
  border-color: var(--emerald);
}
.btn-gold {
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold);
  color: var(--midnight);
}
.btn-sm {
  font-size: 14px;
  padding: 10px 20px;
  letter-spacing: 2px;
}

/* ═══ PLATFORM LINKS ═══ */
.platforms {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin: 24px 0;
}
.platform-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  letter-spacing: 1px;
  color: var(--smoke);
  transition: color 0.3s;
}
.platform-link:hover { color: var(--white); }
.platform-link i { font-size: 16px; }

/* ═══ CARDS ═══ */
.card {
  background: var(--deep-dark);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}
.card:hover {
  border-color: rgba(255,255,255,0.1);
  transform: translateY(-4px);
}
.card-body { padding: 24px; }
.card-body h3 { margin-bottom: 8px; }
.card-body p { font-size: 14px; }

/* ═══ MUSIC EMBED ═══ */
.embed-wrap {
  border-radius: 12px;
  overflow: hidden;
  margin: 24px 0;
}
.embed-wrap iframe {
  width: 100%;
  border: none;
}

/* ═══ GRID LAYOUTS ═══ */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ═══ BLOG / OFF THE RECORD ═══ */
.post-card {
  background: var(--deep-dark);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 8px;
  padding: 32px;
  transition: border-color 0.3s;
}
.post-card:hover {
  border-color: var(--edge);
}
.post-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--ash);
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.post-card h3 {
  margin-bottom: 12px;
  transition: color 0.3s;
}
.post-card:hover h3 { color: var(--gold); }
.post-card p {
  font-size: 14px;
  line-height: 1.6;
}

/* ═══ FOOTER ═══ */
.footer {
  padding: 60px 0 40px;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}
.footer-logo {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: 36px;
  letter-spacing: 5px;
  margin-bottom: 12px;
}
.footer-logo .h { color: var(--gold); }
.footer-tagline {
  font-size: 13px;
  color: var(--ash);
}
.footer-links {
  display: flex;
  gap: 24px;
}
.footer-links a {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ash);
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--white); }
.footer-copy {
  text-align: center;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.04);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--ash);
  letter-spacing: 1px;
}

/* ═══ PAGE HEADERS ═══ */
.page-header {
  padding: 160px 0 80px;
  position: relative;
}
.page-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  height: 1px;
  background: rgba(255,255,255,0.04);
}

/* ═══ ANIMATIONS ═══ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up {
  animation: fadeUp 0.8s ease-out forwards;
  opacity: 0;
}
.fade-up-d1 { animation-delay: 0.1s; }
.fade-up-d2 { animation-delay: 0.2s; }
.fade-up-d3 { animation-delay: 0.3s; }
.fade-up-d4 { animation-delay: 0.4s; }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 768px) {
  .container { padding: 0 24px; }
  .section { padding: 60px 0; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }

  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--midnight);
    justify-content: center;
    align-items: center;
    gap: 36px;
    z-index: 1000;
    overflow: hidden;
  }
  .nav-links.open a { font-size: 18px; letter-spacing: 4px; }
  .nav-links.open a.active::after { display: none; }
  .nav-toggle { display: block; z-index: 1001; }

  .footer-inner { flex-direction: column; align-items: center; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }

  .hero { min-height: 90vh; }
  .hero-content { padding-top: 100px; }
  .hero-bg { background-position: 70% center; }
  .platforms { gap: 12px; }
}

/* ═══ RESPONSIVE VIDEO ═══ */
.video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  margin: 24px 0;
}
.video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px;
}

/* ═══ RELEASE GRID (video + spotify side by side) ═══ */
.release-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 24px;
  align-items: start;
}
.release-grid .video-wrap {
  margin: 0;
}
.release-grid .spotify-track iframe {
  display: block;
}
@media (max-width: 768px) {
  .release-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
