/*
Theme Name: HipHop Africa Child
Theme URI: https://hiphopafrica.example/
Description: Child theme of Twenty Twenty-Four for HipHop Africa — dark, gold-accented, full custom design.
Author: HipHop Africa
Author URI: https://hiphopafrica.example/
Template: twentytwentyfour
Version: 1.0.0
Requires at least: 6.4
Tested up to: 6.6
Requires PHP: 7.4
License: GNU General Public License v2 or later
Text Domain: hiphop-africa
*/

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --bg:       #050505;
  --bg2:      #0d0d0d;
  --bg3:      #111111;
  --gold:     #D6A32C;
  --gold2:    #f1c75a;
  --gold3:    #a87d20;
  --white:    #FFFFFF;
  --muted:    #9a9a9a;
  --muted2:   #BDBDBD;
  --border:   #1f1f1f;
  --border2:  #2a2a2a;
  --max:      1320px;
  --display:  'Bebas Neue', Impact, sans-serif;
  --body:     'Space Grotesk', 'Inter', system-ui, sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:  cubic-bezier(0.4, 0, 1, 1);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--body);
  background: var(--bg);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold2); }
button { font-family: var(--body); cursor: pointer; border: none; background: none; }
ul { list-style: none; }
input, textarea, select {
  font-family: var(--body);
  background: var(--bg2);
  border: 1px solid var(--border2);
  color: var(--white);
  border-radius: 2px;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
input:focus, textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(214,163,44,.15); }
textarea { resize: vertical; }
h1,h2,h3,h4,h5,h6 { line-height: 1.05; letter-spacing: .01em; }

/* ============================================================
   PRELOADER
   ============================================================ */
.preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 2rem;
  transition: opacity .7s var(--ease-out), visibility .7s;
}
.preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader__logo {
  font-family: var(--display);
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  line-height: .9; letter-spacing: .04em;
  text-align: center;
  animation: pulse-text 1.5s ease-in-out infinite;
}
.preloader__logo em { color: var(--gold); font-style: normal; }
.preloader__bar-wrap {
  width: 200px; height: 2px;
  background: rgba(255,255,255,.08); border-radius: 2px; overflow: hidden;
}
.preloader__bar {
  height: 100%; width: 40%;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: slide-bar 1s ease-in-out infinite;
}
.preloader__counter {
  font-size: .75rem; letter-spacing: .3em; text-transform: uppercase;
  color: var(--muted);
}
@keyframes pulse-text { 0%,100%{opacity:1} 50%{opacity:.4} }
@keyframes slide-bar { 0%{transform:translateX(-150%)} 100%{transform:translateX(350%)} }

/* ============================================================
   PAGE TRANSITION OVERLAY
   ============================================================ */
.page-transition {
  position: fixed; inset: 0; z-index: 9998;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  pointer-events: none;
}
.page-transition.in  { animation: wipe-in .4s var(--ease-in) forwards; }
.page-transition.out { animation: wipe-out .4s .1s var(--ease-out) forwards; }
@keyframes wipe-in  { to { transform: scaleX(1); } }
@keyframes wipe-out { from { transform: scaleX(1); } to { transform: scaleX(0); transform-origin: right; } }

/* ============================================================
   CURSOR (desktop)
   ============================================================ */
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9997;
  border-radius: 50%; transform: translate(-50%,-50%);
  transition-timing-function: var(--ease-out);
}
.cursor-dot {
  width: 8px; height: 8px; background: var(--gold);
  transition: width .1s, height .1s, opacity .2s;
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1.5px solid rgba(214,163,44,.5);
  transition: width .25s, height .25s, border-color .2s, top .07s, left .07s;
}
body.cursor-hover .cursor-dot { width: 14px; height: 14px; }
body.cursor-hover .cursor-ring { width: 50px; height: 50px; border-color: var(--gold); }
@media (hover: none) { .cursor-dot, .cursor-ring { display: none; } }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  background: rgba(5,5,5,.92);
  backdrop-filter: blur(12px) saturate(150%);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, padding .3s;
}
.site-header.scrolled { border-color: var(--border); }
.header-inner {
  max-width: var(--max); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; padding: 1.1rem 2rem;
  transition: padding .3s;
}
.site-header.scrolled .header-inner { padding-top: .7rem; padding-bottom: .7rem; }

/* Logo */
.logo {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--display);
  font-size: 1.5rem; line-height: .9; letter-spacing: .05em;
  color: var(--white) !important;
  flex-shrink: 0;
}
.logo svg { width: 24px; height: 24px; color: var(--gold); }
.logo em { color: var(--gold); font-style: normal; }

/* Primary nav */
.primary-nav { display: flex; align-items: center; gap: 2rem; }
.primary-nav a {
  font-size: .78rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--muted2) !important;
  padding: .3rem 0; position: relative;
  transition: color .2s;
}
.primary-nav a::after {
  content: ''; position: absolute;
  left: 0; right: 0; bottom: -4px; height: 2px;
  background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease-out);
}
.primary-nav a:hover,
.primary-nav a.active { color: var(--white) !important; }
.primary-nav a:hover::after,
.primary-nav a.active::after { transform: scaleX(1); }

/* CTA button in header */
.header-cta {
  display: flex; align-items: center; gap: 1rem; flex-shrink: 0;
}

/* Burger */
.burger {
  display: none; width: 40px; height: 40px;
  flex-direction: column; justify-content: center; gap: 5px;
  padding: 8px; border: 1px solid var(--border2); border-radius: 4px;
  cursor: pointer;
}
.burger span {
  display: block; height: 1.5px; background: var(--white);
  transition: transform .3s var(--ease-out), opacity .2s, width .3s;
}
.burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; width: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav overlay */
.mobile-nav {
  display: none; position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--bg); z-index: 400;
  flex-direction: column;
  padding: 7rem 2rem 3rem;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform .4s var(--ease-out);
}
.mobile-nav.open { display: flex; transform: translateX(0); }
.mobile-nav a {
  font-family: var(--display); font-size: clamp(2.5rem, 8vw, 4rem);
  letter-spacing: .05em; color: var(--white) !important;
  padding: .4rem 0; border-bottom: 1px solid var(--border);
  transition: color .2s, padding-left .3s;
}
.mobile-nav a:hover { color: var(--gold) !important; padding-left: .5rem; }
.mobile-nav a.active { color: var(--gold) !important; }
.mobile-nav-footer {
  margin-top: auto; padding-top: 2rem;
  display: flex; gap: 1rem; flex-wrap: wrap;
}
.mobile-nav-footer a {
  font-family: var(--body); font-size: .75rem;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--muted) !important; border-bottom: 0; padding: 0;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-flex; align-items: center; gap: .6rem;
  background: var(--gold); color: #050505 !important;
  font-weight: 700; font-size: .75rem; letter-spacing: .18em; text-transform: uppercase;
  padding: .95rem 1.75rem; border: 2px solid var(--gold); border-radius: 2px;
  box-shadow: 0 8px 24px -8px rgba(214,163,44,.5);
  transition: background .2s, transform .2s, box-shadow .2s;
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--gold2); border-color: var(--gold2); color: #050505 !important;
  transform: translateY(-2px); box-shadow: 0 16px 32px -10px rgba(214,163,44,.65);
}
.btn-primary.sm { padding: .65rem 1.2rem; font-size: .72rem; }

.btn-outline {
  display: inline-flex; align-items: center; gap: .6rem;
  background: transparent; color: var(--white) !important;
  font-weight: 700; font-size: .75rem; letter-spacing: .18em; text-transform: uppercase;
  padding: .95rem 1.75rem; border: 2px solid rgba(255,255,255,.3); border-radius: 2px;
  transition: border-color .2s, background .2s, color .2s, transform .2s;
}
.btn-outline:hover {
  border-color: var(--white); background: var(--white); color: #050505 !important;
  transform: translateY(-2px);
}
.btn-outline.gold {
  border-color: var(--gold); color: var(--gold) !important;
}
.btn-outline.gold:hover { background: var(--gold); color: #050505 !important; }
.btn-outline.sm { padding: .65rem 1.2rem; font-size: .72rem; }

.link-arrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-weight: 700; font-size: .75rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--white) !important; transition: gap .25s;
}
.link-arrow:hover { gap: .85rem; }
.link-arrow svg { color: var(--gold); }

/* ============================================================
   SHARED SECTION STYLES
   ============================================================ */
.container { max-width: var(--max); margin: 0 auto; padding: 0 2rem; position: relative; z-index: 2; }
.section { padding: clamp(4rem, 8vw, 7rem) 0; }
.section--dark { background: var(--bg); }
.section--alt  { background: var(--bg2); }
.section--light {
  background: #ffffff; color: #0a0a0a;
}
.section--light .eyebrow { color: var(--gold3); }
.section--light .section-h2 { color: #0a0a0a; }
.section--light .section-lede { color: #555; }

.eyebrow {
  font-size: .72rem; font-weight: 700;
  letter-spacing: .32em; text-transform: uppercase;
  color: var(--gold); display: block; margin-bottom: 1rem;
}
.section-head { margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head.center { text-align: center; }
.section-head.center .section-lede { margin: 0 auto; }
.section-h2 {
  font-family: var(--display);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  line-height: 1; letter-spacing: .03em; text-transform: uppercase;
  color: var(--white);
}
.section-h2 em { color: var(--gold); font-style: normal; }
.section-lede { color: var(--muted2); font-size: 1rem; line-height: 1.75; max-width: 56ch; margin-top: .75rem; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
[data-reveal] {
  opacity: 0; transform: translateY(32px);
  transition: opacity .85s var(--ease-out), transform .85s var(--ease-out);
  will-change: opacity, transform;
}
[data-reveal].visible { opacity: 1; transform: none; }
[data-reveal="left"]  { transform: translateX(-32px); }
[data-reveal="left"].visible  { transform: none; }
[data-reveal="right"] { transform: translateX(32px); }
[data-reveal="right"].visible { transform: none; }
[data-reveal="scale"] { transform: scale(.94); }
[data-reveal="scale"].visible { transform: none; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity:1; transform:none; transition:none; }
}

/* ============================================================
   PARTICLES CANVAS
   ============================================================ */
#particles-canvas {
  position: absolute; inset: 0; pointer-events: none;
  z-index: 1; opacity: .5;
}

/* ============================================================
   PAGE WRAPPER
   ============================================================ */
.page { display: none; padding-top: 72px; }
.page.active { display: block; }

/* ============================================================
   ====  HOME PAGE  ====
   ============================================================ */

/* Hero */
.hero {
  min-height: 100vh; position: relative; overflow: hidden;
  display: flex; align-items: center;
  background: var(--bg);
  padding: clamp(2rem, 5vw, 4rem) 0;
}
.hero-canvas {
  position: absolute; inset: 0; z-index: 0;
}
.hero-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 2rem;
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem); align-items: center;
  position: relative; z-index: 3; width: 100%;
}
.hero-eyebrow {
  font-size: .72rem; font-weight: 700;
  letter-spacing: .35em; text-transform: uppercase;
  color: var(--gold); display: flex; align-items: center; gap: .6rem;
  margin-bottom: 1.5rem;
}
.hero-eyebrow::before {
  content: ''; display: block;
  width: 28px; height: 1px; background: var(--gold);
}
.hero-title {
  font-family: var(--display);
  font-size: clamp(3rem, 7.5vw, 6.5rem);
  line-height: .92; letter-spacing: .02em; text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.75rem;
}
.hero-title .line { display: block; overflow: hidden; }
.hero-title .accent { color: var(--gold); }
.hero-title .line-inner {
  display: block;
  transform: translateY(110%); opacity: 0;
  transition: transform .9s var(--ease-out), opacity .7s;
}
.hero-title .line-inner.in { transform: translateY(0); opacity: 1; }
.hero-sub {
  color: var(--muted2); max-width: 46ch;
  font-size: 1.05rem; line-height: 1.7; margin-bottom: 2.5rem;
}
.hero-ctas { display: flex; gap: 1.25rem; align-items: center; flex-wrap: wrap; }

.hero-visual {
  position: relative; border-radius: 2px; overflow: hidden;
  aspect-ratio: 4/5; background: #080808;
}
.hero-img-layer {
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1571974599782-87624638275d?auto=format&fit=crop&w=800&q=80') center/cover no-repeat;
  filter: contrast(1.08) saturate(.9);
  animation: hero-zoom 18s ease-out both;
}
@keyframes hero-zoom { from{transform:scale(1.1)} to{transform:scale(1)} }
.hero-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(5,5,5,.7) 0%, transparent 60%);
}
.hero-dot-pattern {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(214,163,44,.22) 1px, transparent 0);
  background-size: 20px 20px;
  mask-image: linear-gradient(135deg, #000 0%, #000 40%, transparent 70%);
}
.hero-badge {
  position: absolute; bottom: 2rem; left: 2rem;
  background: rgba(5,5,5,.88);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border2);
  padding: .85rem 1.25rem;
  display: flex; align-items: center; gap: .75rem;
}
.hero-badge__pulse {
  width: 8px; height: 8px; border-radius: 50%; background: #e53e3e;
  animation: blink 1.2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.2} }
.hero-badge__text { font-size: .7rem; letter-spacing: .15em; text-transform: uppercase; color: var(--muted2); }
.hero-badge__text strong { color: var(--white); display: block; font-size: .8rem; letter-spacing: .05em; margin-bottom: .1rem; }
.hero-side-text {
  position: absolute; right: -36px; top: 50%;
  transform: translateY(-50%) rotate(90deg) translateX(-50%);
  transform-origin: center center;
  font-size: .65rem; letter-spacing: .5em; text-transform: uppercase;
  color: rgba(255,255,255,.35); white-space: nowrap;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute; bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  z-index: 4;
  animation: fade-up .8s 1.5s both;
}
@keyframes fade-up { from{opacity:0;transform:translateX(-50%) translateY(16px)} to{opacity:1;transform:translateX(-50%) translateY(0)} }
.scroll-indicator span { font-size: .65rem; letter-spacing: .3em; text-transform: uppercase; color: var(--muted); }
.scroll-indicator__line { width: 1px; height: 48px; background: linear-gradient(to bottom, var(--gold), transparent); animation: scroll-line 1.5s ease-in-out infinite; }
@keyframes scroll-line { 0%{transform:scaleY(0);transform-origin:top} 50%{transform:scaleY(1);transform-origin:top} 51%{transform-origin:bottom} 100%{transform:scaleY(0);transform-origin:bottom} }

/* What We Do (white section) */
.pillars {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; border-left: 1px solid #e5e5e5;
}
.pillar {
  padding: 2rem 1.75rem 2.5rem;
  border-right: 1px solid #e5e5e5;
  transition: background .3s, transform .4s var(--ease-out);
  position: relative; overflow: hidden;
}
.pillar::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  height: 2px; width: 0; background: var(--gold3);
  transition: width .4s var(--ease-out);
}
.pillar:hover { background: #f9f9f9; transform: translateY(-4px); }
.pillar:hover::after { width: 100%; }
.pillar__icon {
  color: var(--gold3);
  width: 44px; height: 44px; margin-bottom: 1.5rem;
}
.pillar__icon svg { width: 100%; height: 100%; }
.pillar h3 {
  font-family: var(--body); font-size: 1rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; color: #0a0a0a;
  margin-bottom: .75rem;
}
.pillar p { color: #666; font-size: .92rem; line-height: 1.65; margin-bottom: 1.25rem; }
.pillar-link {
  font-size: .72rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold3) !important;
  display: inline-flex; align-items: center; gap: .35rem;
  transition: gap .25s;
}
.pillar-link:hover { gap: .65rem; }
.africa-watermark {
  position: absolute; right: -5%; top: 50%; transform: translateY(-50%);
  width: 380px; height: 380px; pointer-events: none; z-index: 1;
  opacity: .06;
}

/* Stats bar */
.stats-bar {
  background: var(--gold); color: #050505;
  padding: 1.5rem 2rem;
}
.stats-inner {
  max-width: var(--max); margin: 0 auto;
  display: flex; justify-content: space-around; align-items: center;
  flex-wrap: wrap; gap: 1.5rem;
}
.stat { text-align: center; }
.stat__num {
  font-family: var(--display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1; letter-spacing: .03em;
  display: block;
}
.stat__label {
  font-size: .7rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  opacity: .7; margin-top: .2rem;
}

/* Live 24/7 section */
.live-section {
  position: relative; overflow: hidden;
  padding: clamp(5rem, 10vw, 9rem) 0;
  text-align: center;
}
.live-bg {
  position: absolute; inset: 0;
  background:
    url('https://images.unsplash.com/photo-1493225457124-a3eb161ffa5f?auto=format&fit=crop&w=1800&q=60')
    center/cover no-repeat;
}
.live-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(5,5,5,.9) 0%, rgba(5,5,5,.8) 100%);
}
.live-inner { position: relative; z-index: 2; max-width: 820px; margin: 0 auto; padding: 0 2rem; }
.live-title {
  font-family: var(--display);
  font-size: clamp(4rem, 10vw, 8rem); line-height: .9;
  color: var(--white); margin: .5rem 0 .5rem;
  text-transform: uppercase; letter-spacing: .02em;
}
.live-subtitle {
  font-size: .8rem; letter-spacing: .4em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 2.5rem; display: block;
}
.wave-viz { display: flex; justify-content: center; align-items: flex-end; gap: 4px; height: 52px; margin: 0 auto 2.5rem; }
.wave-viz span {
  display: block; width: 4px; background: var(--gold); border-radius: 3px;
  animation: wave-bar 1.2s ease-in-out infinite;
}
.wave-viz span:nth-child(1)  { animation-delay:-.11s; height:30%; }
.wave-viz span:nth-child(2)  { animation-delay:-.22s; height:50%; }
.wave-viz span:nth-child(3)  { animation-delay:-.33s; height:75%; }
.wave-viz span:nth-child(4)  { animation-delay:-.44s; height:40%; }
.wave-viz span:nth-child(5)  { animation-delay:-.55s; height:88%; }
.wave-viz span:nth-child(6)  { animation-delay:-.66s; height:60%; }
.wave-viz span:nth-child(7)  { animation-delay:-.77s; height:100%;}
.wave-viz span:nth-child(8)  { animation-delay:-.88s; height:52%; }
.wave-viz span:nth-child(9)  { animation-delay:-.99s; height:72%; }
.wave-viz span:nth-child(10) { animation-delay:-1.1s; height:38%; }
.wave-viz span:nth-child(11) { animation-delay:-1.21s;height:58%; }
.wave-viz span:nth-child(12) { animation-delay:-1.32s;height:85%; }
.wave-viz span:nth-child(13) { animation-delay:-1.43s;height:44%; }
.wave-viz span:nth-child(14) { animation-delay:-1.54s;height:65%; }
@keyframes wave-bar { 0%,100%{transform:scaleY(.25)} 50%{transform:scaleY(1)} }

/* Artists showcase */
.artists-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
}
.artist-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 2px; overflow: hidden;
  transition: transform .35s var(--ease-out), border-color .3s;
}
.artist-card:hover { transform: translateY(-6px); border-color: var(--gold); }
.artist-img {
  aspect-ratio: 1; overflow: hidden; position: relative;
}
.artist-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--ease-out);
  filter: grayscale(.4);
}
.artist-card:hover .artist-img img { transform: scale(1.06); filter: grayscale(0); }
.artist-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(5,5,5,.8), transparent 50%);
}
.artist-info { padding: 1rem; }
.artist-info h3 { font-size: .95rem; font-weight: 700; color: var(--white); margin-bottom: .2rem; }
.artist-info span { font-size: .72rem; color: var(--gold); letter-spacing: .1em; text-transform: uppercase; }

/* ============================================================
   ====  RADIO PAGE  ====
   ============================================================ */
.radio-player-wrap {
  background: var(--bg2); border: 1px solid var(--border2);
  border-radius: 2px; overflow: hidden;
}
.radio-now-playing {
  background: var(--gold); color: #050505;
  padding: 1rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: .75rem;
}
.radio-now-playing .label {
  font-size: .7rem; font-weight: 700; letter-spacing: .3em; text-transform: uppercase; opacity: .7;
}
.radio-now-playing .track-name { font-size: 1rem; font-weight: 700; }
.radio-now-playing .live-pill {
  display: flex; align-items: center; gap: .4rem;
  font-size: .7rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase;
}
.radio-player-inner { padding: 1.5rem; }
.radio-player-inner audio { width: 100%; }
.schedule-table { width: 100%; border-collapse: collapse; margin-top: 1.5rem; }
.schedule-table th, .schedule-table td {
  padding: .85rem 1rem; text-align: left;
  border-bottom: 1px solid var(--border); font-size: .88rem;
}
.schedule-table th {
  font-size: .72rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  color: var(--muted); border-bottom: 1px solid var(--border2);
}
.schedule-table tr:last-child td { border-bottom: 0; }
.schedule-table tr { transition: background .2s; }
.schedule-table tbody tr:hover { background: rgba(214,163,44,.05); }
.schedule-table .highlight td { color: var(--gold); }

/* Shows grid */
.shows-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.25rem;
}
.show-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 2px; overflow: hidden;
  transition: transform .35s, border-color .3s;
}
.show-card:hover { transform: translateY(-5px); border-color: var(--gold); }
.show-img {
  height: 160px; background: #181818; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.show-img svg { width: 64px; height: 64px; color: var(--gold); opacity: .3; }
.show-body { padding: 1.25rem; }
.show-body h3 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: .4rem; }
.show-time { font-size: .72rem; letter-spacing: .15em; text-transform: uppercase; color: var(--gold); margin-bottom: .65rem; display: block; }
.show-body p { color: var(--muted); font-size: .88rem; line-height: 1.6; }

/* ============================================================
   ====  FESTIVAL PAGE  ====
   ============================================================ */
.festival-hero {
  position: relative; overflow: hidden;
  min-height: 85vh; display: flex; align-items: center;
  background: var(--bg);
}
.festival-hero-bg {
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1459749411175-04bf5292ceea?auto=format&fit=crop&w=1800&q=70') center/cover no-repeat;
  filter: brightness(.35) saturate(.8);
}
.festival-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(5,5,5,.9) 40%, transparent);
}
.festival-hero-inner {
  position: relative; z-index: 2;
  max-width: var(--max); margin: 0 auto; padding: 6rem 2rem;
}
.festival-title {
  font-family: var(--display);
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: .9; text-transform: uppercase; letter-spacing: .02em;
  max-width: 16ch;
}
.festival-title em { color: var(--gold); font-style: normal; display: block; }

/* Countdown */
.countdown {
  display: flex; gap: 1rem; flex-wrap: wrap;
  margin: 2.5rem 0;
}
.countdown-unit {
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border2);
  border-radius: 2px; padding: 1.25rem 1.5rem;
  text-align: center; min-width: 80px;
}
.countdown-num {
  font-family: var(--display);
  font-size: clamp(2rem, 5vw, 3.5rem); line-height: 1;
  color: var(--gold); display: block;
}
.countdown-label { font-size: .65rem; letter-spacing: .3em; text-transform: uppercase; color: var(--muted); margin-top: .3rem; }

/* Lineup */
.lineup-tabs {
  display: flex; gap: 0; border-bottom: 1px solid var(--border);
  margin-bottom: 2.5rem; overflow-x: auto;
}
.lineup-tab {
  padding: .85rem 1.75rem;
  font-size: .75rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--muted); cursor: pointer; white-space: nowrap;
  border-bottom: 2px solid transparent; margin-bottom: -1px;
  transition: color .2s, border-color .2s;
}
.lineup-tab.active { color: var(--gold); border-color: var(--gold); }
.lineup-panel { display: none; }
.lineup-panel.active { display: block; }
.lineup-day {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1rem;
}
.lineup-act {
  background: var(--bg3); border: 1px solid var(--border);
  padding: 1.25rem; display: flex; flex-direction: column;
  gap: .35rem; transition: border-color .3s, background .3s;
}
.lineup-act:hover { border-color: var(--gold); background: rgba(214,163,44,.05); }
.lineup-act__name { font-weight: 700; font-size: .95rem; color: var(--white); }
.lineup-act__time { font-size: .72rem; color: var(--gold); letter-spacing: .12em; text-transform: uppercase; }
.lineup-act__origin { font-size: .78rem; color: var(--muted); }
.lineup-act.headliner .lineup-act__name { font-size: 1.2rem; color: var(--gold); }

/* Festival highlights */
.highlights-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1.25rem;
}
.highlight-card {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: 2px; padding: 2rem 1.5rem;
  transition: border-color .3s, transform .4s var(--ease-out);
}
.highlight-card:hover { border-color: var(--gold); transform: translateY(-5px); }
.highlight-icon {
  width: 52px; height: 52px; background: rgba(214,163,44,.1);
  border-radius: 2px; display: flex; align-items: center; justify-content: center;
  color: var(--gold); margin-bottom: 1.25rem;
}
.highlight-icon svg { width: 28px; height: 28px; }
.highlight-card h3 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: .5rem; }
.highlight-card p { color: var(--muted); font-size: .88rem; line-height: 1.6; }

/* Pricing */
.pricing-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1.25rem;
}
.pricing-card {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: 2px; padding: 2rem 1.5rem;
  display: flex; flex-direction: column;
  transition: border-color .3s, transform .4s var(--ease-out);
}
.pricing-card:hover { border-color: var(--gold); }
.pricing-card.featured {
  border-color: var(--gold); background: rgba(214,163,44,.05);
  position: relative; overflow: hidden;
}
.pricing-card.featured::before {
  content: 'POPULAR'; position: absolute; top: 1.25rem; right: -2rem;
  background: var(--gold); color: #050505;
  font-size: .6rem; font-weight: 700; letter-spacing: .2em;
  padding: .3rem 2rem; transform: rotate(30deg);
}
.pricing-card h3 {
  font-size: .78rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  color: var(--muted); margin-bottom: .75rem;
}
.pricing-price {
  font-family: var(--display); font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white); line-height: 1; margin-bottom: 1.5rem;
}
.pricing-price span { font-family: var(--body); font-size: .85rem; color: var(--muted); font-weight: 400; }
.pricing-features { list-style: none; padding: 0; flex: 1; }
.pricing-features li {
  font-size: .88rem; color: var(--muted2); padding: .5rem 0;
  border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: .6rem;
}
.pricing-features li::before {
  content: ''; width: 16px; height: 16px; border-radius: 50%; flex-shrink: 0;
  background: rgba(214,163,44,.2);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3 8l3.5 3.5L13 4.5' stroke='%23D6A32C' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.pricing-features li:last-child { border-bottom: 0; }
.pricing-card .btn-outline, .pricing-card .btn-primary { margin-top: 2rem; justify-content: center; }

/* Marquee */
.marquee { overflow: hidden; border-top: 1px solid var(--border2); border-bottom: 1px solid var(--border2); }
.marquee-track {
  display: flex; gap: 4rem; align-items: center;
  animation: marquee 20s linear infinite;
  width: max-content; padding: 1.5rem 0;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  font-family: var(--display); font-size: 1.1rem;
  letter-spacing: .08em; color: var(--muted);
  white-space: nowrap; transition: color .3s;
}
.marquee-item:hover { color: var(--gold); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================
   ====  SHOP PAGE  ====
   ============================================================ */
.shop-filters {
  display: flex; gap: .75rem; flex-wrap: wrap; margin-bottom: 2.5rem;
}
.filter-btn {
  padding: .6rem 1.25rem;
  font-size: .72rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--muted); background: transparent;
  border: 1px solid var(--border); border-radius: 2px;
  cursor: pointer; transition: all .2s;
}
.filter-btn.active, .filter-btn:hover { color: var(--gold); border-color: var(--gold); background: rgba(214,163,44,.07); }

.products-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.5rem;
}
.product-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 2px; overflow: hidden;
  transition: transform .4s var(--ease-out), border-color .3s;
  cursor: pointer;
}
.product-card:hover { transform: translateY(-8px); border-color: var(--gold); }
.product-img {
  aspect-ratio: 1; background: var(--bg3);
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.product-img-bg {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
}
.product-img-emoji { font-size: 4rem; opacity: .3; transition: opacity .3s; }
.product-card:hover .product-img-emoji { opacity: .5; }
.product-badge {
  position: absolute; top: .75rem; left: .75rem;
  background: var(--gold); color: #050505;
  font-size: .62rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase;
  padding: .25rem .6rem; border-radius: 1px;
}
.product-badge.new { background: var(--gold); }
.product-badge.sale { background: #e53e3e; color: var(--white); }
.product-info { padding: 1.25rem; }
.product-name { font-weight: 700; color: var(--white); margin-bottom: .3rem; }
.product-category { font-size: .7rem; color: var(--gold); letter-spacing: .15em; text-transform: uppercase; margin-bottom: .65rem; }
.product-price {
  font-family: var(--display); font-size: 1.4rem;
  color: var(--white); display: flex; align-items: center; gap: .5rem;
}
.product-price del { font-size: 1rem; color: var(--muted); }
.product-actions { padding: 0 1.25rem 1.25rem; display: flex; gap: .5rem; }
.product-actions .btn-primary { flex: 1; justify-content: center; padding: .75rem; }

/* Cart notification */
.cart-toast {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 600;
  background: var(--bg2); border: 1px solid var(--gold);
  padding: 1rem 1.5rem; border-radius: 2px;
  display: flex; align-items: center; gap: .75rem;
  transform: translateY(120%); opacity: 0;
  transition: transform .4s var(--ease-out), opacity .3s;
  min-width: 260px;
}
.cart-toast.show { transform: translateY(0); opacity: 1; }
.cart-toast svg { color: var(--gold); flex-shrink: 0; }
.cart-toast-text strong { display: block; color: var(--white); font-size: .88rem; }
.cart-toast-text span { color: var(--muted); font-size: .78rem; }

/* ============================================================
   ====  ABOUT PAGE  ====
   ============================================================ */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center;
}
.about-visual {
  position: relative; aspect-ratio: 4/5; border-radius: 2px; overflow: hidden;
  background: var(--bg3);
}
.about-visual img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(.3) contrast(1.05);
}
.about-visual-border {
  position: absolute; inset: 1.5rem;
  border: 1px solid rgba(214,163,44,.35); border-radius: 2px;
  pointer-events: none;
}
.about-visual-tag {
  position: absolute; bottom: 2rem; left: 2rem; right: 2rem;
  background: rgba(5,5,5,.9); backdrop-filter: blur(8px);
  border: 1px solid var(--border2);
  padding: 1.25rem 1.5rem;
}
.about-visual-tag .tagline {
  font-family: var(--display); font-size: 1.5rem;
  line-height: .95; letter-spacing: .04em; color: var(--white);
}
.about-visual-tag .tagline em { color: var(--gold); font-style: normal; }

.timeline { position: relative; padding-left: 2rem; }
.timeline::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 1px; background: linear-gradient(to bottom, var(--gold), transparent);
}
.timeline-item {
  position: relative; padding: 0 0 2rem 1.5rem;
}
.timeline-item::before {
  content: ''; position: absolute; left: -2rem; top: .35rem;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--gold); border: 2px solid var(--bg);
  box-shadow: 0 0 0 3px rgba(214,163,44,.2);
}
.timeline-year {
  font-size: .7rem; font-weight: 700; letter-spacing: .25em; text-transform: uppercase;
  color: var(--gold); margin-bottom: .35rem;
}
.timeline-item h3 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: .4rem; }
.timeline-item p { color: var(--muted2); font-size: .9rem; line-height: 1.65; }

.mission-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
}
.mission-card {
  background: var(--bg3); border: 1px solid var(--border);
  padding: 2rem; border-radius: 2px;
  transition: border-color .3s;
}
.mission-card:hover { border-color: var(--gold); }
.mission-card__icon {
  width: 48px; height: 48px; background: rgba(214,163,44,.1);
  display: flex; align-items: center; justify-content: center;
  border-radius: 2px; color: var(--gold); margin-bottom: 1.25rem;
}
.mission-card__icon svg { width: 28px; height: 28px; }
.mission-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: .6rem; }
.mission-card p { color: var(--muted2); font-size: .92rem; line-height: 1.65; }

/* Team */
.team-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1.5rem;
}
.team-card {
  text-align: center; transition: transform .4s var(--ease-out);
}
.team-card:hover { transform: translateY(-6px); }
.team-avatar {
  width: 100%; aspect-ratio: 1; border-radius: 2px; overflow: hidden;
  background: var(--bg3); margin-bottom: 1rem; position: relative;
  border: 1px solid var(--border);
}
.team-avatar-img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(.4); transition: filter .4s;
}
.team-card:hover .team-avatar-img { filter: grayscale(0); }
.team-avatar-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(5,5,5,.6), transparent 60%);
}
.team-card h3 { font-size: .95rem; font-weight: 700; color: var(--white); }
.team-card span { font-size: .72rem; color: var(--gold); letter-spacing: .1em; text-transform: uppercase; }

/* ============================================================
   ====  CONTACT PAGE  ====
   ============================================================ */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.3fr; gap: clamp(2rem, 5vw, 5rem);
}
.contact-info h2 { font-family: var(--display); font-size: clamp(2rem, 4vw, 3rem); letter-spacing: .04em; text-transform: uppercase; }
.contact-detail {
  display: flex; align-items: flex-start; gap: 1rem;
  margin-top: 1.75rem; padding: 1.25rem;
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 2px; transition: border-color .3s;
}
.contact-detail:hover { border-color: var(--gold); }
.contact-detail__icon {
  width: 40px; height: 40px; background: rgba(214,163,44,.1);
  border-radius: 2px; display: flex; align-items: center; justify-content: center;
  color: var(--gold); flex-shrink: 0;
}
.contact-detail__icon svg { width: 20px; height: 20px; }
.contact-detail h4 { font-size: .7rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); margin-bottom: .3rem; }
.contact-detail p { color: var(--muted2); font-size: .92rem; }
.social-links {
  display: flex; gap: .75rem; flex-wrap: wrap; margin-top: 2rem;
}
.social-link {
  width: 44px; height: 44px; border-radius: 2px;
  background: var(--bg3); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted) !important; font-size: .78rem; font-weight: 700;
  transition: all .25s;
}
.social-link:hover { background: var(--gold); border-color: var(--gold); color: #050505 !important; }
.social-link svg { width: 18px; height: 18px; }

.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .5rem; }
.form-group label {
  font-size: .72rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--muted);
}
.form-group input, .form-group textarea, .form-group select {
  padding: .85rem 1rem; border-radius: 2px; width: 100%; color: var(--white);
  background: var(--bg2); border: 1px solid var(--border2); font-size: .9rem;
}
.form-group textarea { min-height: 140px; }
.form-submit { margin-top: .5rem; }
.form-success {
  background: rgba(72,187,120,.1); border: 1px solid #48bb78;
  color: #48bb78; padding: 1rem 1.25rem; border-radius: 2px;
  font-size: .88rem; display: none;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: clamp(3rem, 6vw, 5.5rem) 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr repeat(3, 1fr) 1.4fr;
  gap: 2.5rem; margin-bottom: 3rem;
}
.footer-logo {
  font-family: var(--display); font-size: 1.9rem;
  line-height: .88; letter-spacing: .04em; color: var(--white);
  margin-bottom: 1rem;
}
.footer-logo em { color: var(--gold); font-style: normal; display: block; }
.footer-brand p { color: var(--muted); font-size: .88rem; line-height: 1.7; max-width: 30ch; }
.footer-col h4 {
  font-size: .72rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  color: var(--white); margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .55rem; }
.footer-col li a { color: var(--muted); font-size: .88rem; transition: color .2s, padding-left .2s; display: flex; align-items: center; gap: .4rem; }
.footer-col li a:hover { color: var(--white); padding-left: .3rem; }
.footer-newsletter p { color: var(--muted); font-size: .88rem; margin-bottom: 1rem; line-height: 1.6; }
.newsletter-form {
  display: flex; border: 1px solid var(--border2); border-radius: 2px; overflow: hidden;
}
.newsletter-form input {
  flex: 1; border: 0; background: var(--bg2); color: var(--white);
  padding: .75rem 1rem; font-size: .88rem;
}
.newsletter-form input:focus { outline: none; }
.newsletter-form button {
  background: var(--gold); color: #050505;
  width: 44px; flex-shrink: 0; font-size: 1rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.newsletter-form button:hover { background: var(--gold2); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.5rem 0; margin-top: 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { color: var(--muted); font-size: .8rem; }
.footer-bottom a { color: var(--muted); }
.footer-bottom a:hover { color: var(--gold); }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  position: relative; overflow: hidden;
  padding: clamp(5rem, 10vw, 8rem) 0 clamp(3rem, 6vw, 5rem);
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  margin-bottom: 0;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(214,163,44,.08) 0%, transparent 70%);
}
.page-hero-inner { position: relative; z-index: 2; max-width: var(--max); margin: 0 auto; padding: 0 2rem; }
.page-hero h1 {
  font-family: var(--display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: .95; text-transform: uppercase; letter-spacing: .03em;
  max-width: 20ch;
}
.page-hero h1 em { color: var(--gold); font-style: normal; }
.page-hero p { color: var(--muted2); font-size: 1.05rem; line-height: 1.7; margin-top: 1rem; max-width: 50ch; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-newsletter { grid-column: span 2; }
  .about-grid { gap: 3rem; }
  .contact-grid { gap: 3rem; }
}

@media (max-width: 900px) {
  .primary-nav { display: none; }
  .header-cta .btn-primary { display: none; }
  .header-cta { display: flex; }
  .burger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { order: -1; aspect-ratio: 16/10; max-height: 55vh; }
  .hero-side-text { display: none; }
  .hero-title { font-size: clamp(3rem, 10vw, 5rem); }
  .pillars { grid-template-columns: 1fr 1fr; }
  .pillar { border-right: 0; border-bottom: 1px solid #e5e5e5; }
  .about-grid, .contact-grid, .mission-grid { grid-template-columns: 1fr; }
  .festival-title { font-size: clamp(2.5rem, 8vw, 5rem); }
}

@media (max-width: 640px) {
  :root { font-size: 15px; }
  .header-inner { padding: .8rem 1.25rem; }
  .pillars { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-newsletter { grid-column: auto; }
  .form-row { grid-template-columns: 1fr; }
  .countdown { gap: .6rem; }
  .countdown-unit { padding: 1rem; min-width: 64px; }
  .stats-inner { gap: 2rem; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .hero-ctas .link-arrow { margin-top: -.25rem; }
  .section { padding: clamp(3rem, 7vw, 5rem) 0; }
}

/* ============================================================
   UTILITY
   ============================================================ */
.text-gold { color: var(--gold); }
.text-muted { color: var(--muted2); }
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.relative { position: relative; }
.overflow-hidden { overflow: hidden; }
.w-full { width: 100%; }
.d-flex { display: flex; }
.items-center { align-items: center; }
.gap-1 { gap: 1rem; }
.flex-wrap { flex-wrap: wrap; }

/* ============================================================
   ANIMATIONS EXTRAS
   ============================================================ */
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.float { animation: float 3.5s ease-in-out infinite; }

/* Typewriter cursor */
.typewriter::after {
  content: '|'; color: var(--gold);
  animation: blink-cursor .8s ease-in-out infinite;
}
@keyframes blink-cursor { 0%,100%{opacity:1} 50%{opacity:0} }

/* Glitch text */
@keyframes glitch1 {
  0%,100%{clip-path:inset(0 0 95% 0)} 20%{clip-path:inset(30% 0 55% 0)} 40%{clip-path:inset(50% 0 30% 0)} 60%{clip-path:inset(10% 0 80% 0)} 80%{clip-path:inset(70% 0 10% 0)}
}

/* Progress bar for audio */
.audio-progress {
  width: 100%; height: 4px; background: var(--border2);
  border-radius: 2px; margin: 1rem 0; cursor: pointer;
  position: relative; overflow: hidden;
}
.audio-progress-fill {
  height: 100%; width: 0%; background: var(--gold); border-radius: 2px;
  transition: width .1s linear;
}

/* Section divider */
.section-divider {
  border: none; border-top: 1px solid var(--border);
  margin: 0;
}

/* Map placeholder */
.map-placeholder {
  width: 100%; height: 340px; background: var(--bg2);
  border: 1px solid var(--border); border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-size: .88rem; letter-spacing: .15em; text-transform: uppercase;
  position: relative; overflow: hidden; margin-top: 2rem;
}
.map-placeholder::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(214,163,44,.06) 0%, transparent 70%);
}

/* Number counter */
.counter { display: inline-block; }

/* Back to top */
.back-to-top {
  position: fixed; bottom: 2rem; left: 50%; transform: translateX(-50%) translateY(100px);
  background: var(--gold); color: #050505;
  width: 44px; height: 44px; border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  z-index: 490; transition: transform .4s var(--ease-out), opacity .3s;
  opacity: 0;
}
.back-to-top.visible { transform: translateX(-50%) translateY(0); opacity: 1; }
.back-to-top:hover { background: var(--gold2); }
.back-to-top svg { width: 20px; height: 20px; }


/* ============================================================
   WORDPRESS OVERRIDES — make multi-page layout always visible
   ============================================================ */
.page { display: block !important; }
.site-header { position: fixed; top: 0; left: 0; right: 0; }
body.admin-bar .site-header { top: 32px; }
@media (max-width: 782px){ body.admin-bar .site-header { top: 46px; } }
body { margin: 0; }
