/* ===== MIXER MIKE EPK — STYLESHEET ===== */
/* Design System: Dark/Gold Premium */

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

:root {
  --gold: #C9A84C;
  --gold-dim: rgba(201,168,76,0.35);
  --black: #060608;
  --dark: #0D0D10;
  --dark2: #111114;
  --dark3: #18181C;
  --white: #F2EEE6;
  --grey: #888890;
  --font-display: 'Bebas Neue', sans-serif;
  --font-serif: 'Playfair Display', serif;
  --font-body: 'Barlow', sans-serif;
}

html { scroll-behavior: smooth; }
body { background: var(--black); color: var(--white); font-family: var(--font-body); font-weight: 300; font-size: 15px; line-height: 1.6; letter-spacing: 0.3px; overflow-x: hidden; cursor: none; }
a { color: var(--gold); text-decoration: none; }
img { max-width: 100%; display: block; }

/* CURSOR */
.cursor { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); position: fixed; pointer-events: none; z-index: 9999; transition: transform 0.15s; }
.cursor-ring { width: 36px; height: 36px; border: 1px solid var(--gold-dim); border-radius: 50%; position: fixed; pointer-events: none; z-index: 9998; transition: transform 0.2s ease, border-color 0.3s; transform: translate(-50%, -50%); }

/* BUTTONS */
.btn-primary { display: inline-flex; align-items: center; gap: 8px; background: var(--gold); color: var(--black); font-family: var(--font-body); font-size: 11px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; padding: 16px 36px; border: none; cursor: pointer; position: relative; overflow: hidden; transition: background 0.3s, transform 0.2s; }
.btn-primary:hover { background: #d4b65c; transform: translateY(-1px); }
.btn-secondary { display: inline-block; font-size: 11px; font-weight: 500; letter-spacing: 3px; text-transform: uppercase; color: var(--white); border-bottom: 1px solid var(--gold-dim); padding-bottom: 4px; transition: border-color 0.3s, color 0.3s; }
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }
.btn-download { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-body); font-size: 11px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); border: 1px solid var(--gold); padding: 15px 32px; background: transparent; cursor: pointer; transition: background 0.3s, color 0.3s, transform 0.2s; text-decoration: none; }
.btn-download:hover { background: var(--gold); color: var(--black); transform: translateY(-1px); }

/* MODAL */
.modal-overlay { position: fixed; inset: 0; background: rgba(6,6,8,0.9); backdrop-filter: blur(10px); z-index: 2000; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; }
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal { background: var(--dark2); border: 1px solid rgba(201,168,76,0.15); padding: 48px; max-width: 640px; width: 90%; max-height: 90vh; overflow-y: auto; position: relative; transform: translateY(20px); transition: transform 0.3s ease; }
.modal-overlay.open .modal { transform: translateY(0); }
.modal-close { position: absolute; top: 16px; right: 20px; font-size: 28px; color: var(--grey); cursor: pointer; background: none; border: none; transition: color 0.3s; line-height: 1; }
.modal-close:hover { color: var(--gold); }
.modal-title { font-family: var(--font-display); font-size: 36px; letter-spacing: 3px; color: var(--white); margin-bottom: 8px; }
.modal-title span { color: var(--gold); }
.modal-sub { font-size: 13px; color: var(--grey); margin-bottom: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold-dim); margin-bottom: 8px; font-weight: 500; }
.form-group input, .form-group select, .form-group textarea { width: 100%; background: var(--dark3); border: 1px solid rgba(201,168,76,0.12); color: var(--white); font-family: var(--font-body); font-size: 14px; padding: 12px 16px; outline: none; transition: border-color 0.3s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); }
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(136,136,144,0.5); }
.form-group select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C9A84C' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }
.form-group select option { background: var(--dark2); color: var(--white); }
.form-group textarea { resize: vertical; min-height: 80px; }
.form-submit { width: 100%; justify-content: center; margin-top: 8px; }
.form-note { font-size: 11px; color: var(--grey); text-align: center; margin-top: 16px; }
.form-note strong { color: var(--gold); }
.form-success { text-align: center; padding: 40px 20px; }
.form-success h3 { font-family: var(--font-display); font-size: 28px; color: var(--gold); margin-bottom: 12px; letter-spacing: 2px; }
.form-success p { font-size: 14px; color: var(--grey); }

/* NAV */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; padding: 20px 48px; background: transparent; transition: background 0.4s, padding 0.3s; }
nav.scrolled { background: rgba(6,6,8,0.92); backdrop-filter: blur(20px); padding: 14px 48px; }
.nav-logo { font-family: var(--font-display); font-size: 22px; letter-spacing: 5px; color: var(--gold); }
.nav-links { list-style: none; display: flex; gap: 32px; }
.nav-links a { font-size: 11px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; color: var(--grey); transition: color 0.3s; }
.nav-links a:hover { color: var(--gold); }
.nav-cta { font-size: 10px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--black); background: var(--gold); padding: 10px 22px; transition: background 0.3s; }
.nav-cta:hover { background: #d4b65c; }

/* SECTION HEADER */
.section-header { margin-bottom: 48px; }
.section-num { font-family: var(--font-display); font-size: 14px; letter-spacing: 4px; color: var(--gold-dim); display: block; margin-bottom: 12px; }
.section-line { width: 40px; height: 1px; background: var(--gold); margin-bottom: 20px; }
.section-title { font-family: var(--font-display); font-size: clamp(42px, 6vw, 72px); letter-spacing: 4px; line-height: 0.95; color: var(--white); }
.section-title em { font-family: var(--font-serif); font-style: italic; color: var(--gold); letter-spacing: 1px; }

/* HERO */
#hero { height: 100vh; position: relative; display: flex; align-items: flex-end; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: url('content/Hero Image.png') center top/cover no-repeat; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(6,6,8,0.95) 0%, rgba(6,6,8,0.5) 40%, rgba(6,6,8,0.3) 100%); }
.hero-content { position: relative; z-index: 2; padding: 0 48px 80px; max-width: 900px; }
.hero-tag { font-size: 10px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.hero-name { font-family: var(--font-display); font-size: clamp(72px, 14vw, 160px); letter-spacing: 8px; line-height: 0.85; display: block; color: var(--white); }
.hero-name span { color: var(--gold); }
.hero-sub { font-size: 13px; letter-spacing: 3px; text-transform: uppercase; color: var(--grey); margin: 24px 0 36px; }
.hero-btns { display: flex; gap: 28px; align-items: center; flex-wrap: wrap; }
.hero-scroll { position: absolute; bottom: 30px; right: 48px; writing-mode: vertical-rl; font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold-dim); display: flex; align-items: center; gap: 12px; z-index: 2; }
.scroll-line { width: 1px; height: 48px; background: var(--gold-dim); animation: scrollPulse 2s infinite; }
@keyframes scrollPulse { 0%,100% { opacity: 0.3; } 50% { opacity: 1; } }

/* ABOUT */
#about { background: var(--dark); padding: 120px 48px; }
.about-grid { max-width: 1300px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-text .lead { font-family: var(--font-serif); font-style: italic; font-size: clamp(18px, 2vw, 22px); color: rgba(242,238,230,0.75); line-height: 1.6; margin-bottom: 24px; }
.about-text p { font-size: 14px; line-height: 1.8; color: var(--grey); margin-bottom: 16px; }
.venues-intro { font-size: 13px; font-weight: 500; color: var(--white); letter-spacing: 1px; margin-bottom: 12px !important; }
.venues-list { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.venues-list span { font-size: 11px; letter-spacing: 1px; color: var(--grey); background: rgba(201,168,76,0.08); border: 1px solid rgba(201,168,76,0.12); padding: 5px 12px; transition: border-color 0.3s, color 0.3s; }
.venues-list span:hover { border-color: var(--gold); color: var(--gold); }
.about-stats { display: flex; gap: 32px; margin-top: 40px; padding-top: 32px; border-top: 1px solid rgba(201,168,76,0.12); }
.stat-num { font-family: var(--font-display); font-size: 36px; letter-spacing: 2px; color: var(--gold); }
.stat-label { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--grey); margin-top: 4px; }
.video-wrapper { position: relative; overflow: hidden; }
.video-wrapper img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.9) contrast(1.05); }
.video-corner { position: absolute; width: 32px; height: 32px; border-color: var(--gold); border-style: solid; border-width: 0; }
.video-corner.tl { top: 12px; left: 12px; border-top-width: 1px; border-left-width: 1px; }
.video-corner.tr { top: 12px; right: 12px; border-top-width: 1px; border-right-width: 1px; }
.video-corner.bl { bottom: 12px; left: 12px; border-bottom-width: 1px; border-left-width: 1px; }
.video-corner.br { bottom: 12px; right: 12px; border-bottom-width: 1px; border-right-width: 1px; }

/* BIO CARD — Original image background with editable text */
.bio-card { position: relative; background: url('content/bio-bg.png') center/cover no-repeat; padding: 48px 36px; overflow: hidden; border: 1px solid rgba(139,92,246,0.15); }
.bio-card-glow { position: absolute; inset: 0; background: rgba(10,5,20,0.65); pointer-events: none; }
.bio-card::before { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 35%; background: linear-gradient(to top, rgba(168,85,247,0.12) 0%, transparent 100%); pointer-events: none; }
.bio-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 100px; background: radial-gradient(ellipse at 50% 100%, rgba(201,168,76,0.08) 0%, transparent 70%); pointer-events: none; }
.bio-card-title { font-family: var(--font-display); font-size: clamp(42px, 5vw, 62px); letter-spacing: 6px; color: #fff; text-shadow: 0 0 30px rgba(168,85,247,0.5), 0 0 60px rgba(139,92,246,0.3); margin-bottom: 28px; position: relative; z-index: 1; }
.bio-card-body { position: relative; z-index: 1; }
.bio-card-body p { font-size: 13px; line-height: 1.75; color: rgba(255,255,255,0.82); margin-bottom: 18px; }
.bio-highlight { color: #c084fc; font-weight: 600; }
.bio-card-body strong { color: #e0c3ff; font-weight: 600; }
.bio-card-divider { width: 100%; height: 1px; background: linear-gradient(to right, transparent, rgba(168,85,247,0.3), transparent); margin: 24px 0; }
.bio-card-contact { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 10px; margin-top: 32px; padding-top: 24px; border-top: 1px solid rgba(168,85,247,0.2); }
.bio-contact-item { font-size: 14px; font-weight: 600; color: #fff; letter-spacing: 0.5px; text-decoration: none; transition: color 0.3s, text-shadow 0.3s; }
.bio-contact-item:hover { color: #c084fc; text-shadow: 0 0 10px rgba(168,85,247,0.4); }

/* GENRES */
#genres { background: var(--black); padding: 120px 48px; }
.genres-inner { max-width: 1300px; margin: 0 auto; }
.genres-marquee-wrap { overflow: hidden; margin-bottom: 48px; }
.genres-marquee { display: flex; animation: marqueeScroll 25s linear infinite; white-space: nowrap; }
@keyframes marqueeScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.marquee-item { font-family: var(--font-display); font-size: 26px; letter-spacing: 4px; color: var(--dark3); display: flex; align-items: center; gap: 60px; white-space: nowrap; }
.marquee-item.lit { color: var(--gold); }
.marquee-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold-dim); flex-shrink: 0; }
.genres-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; margin-top: 60px; }
.genre-card { background: var(--dark2); padding: 40px 30px; position: relative; overflow: hidden; transition: background 0.3s; }
.genre-card::before { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease; }
.genre-card:hover { background: var(--dark3); }
.genre-card:hover::before { transform: scaleX(1); }
.genre-icon { font-size: 28px; margin-bottom: 20px; display: block; }
.genre-name { font-family: var(--font-display); font-size: 22px; letter-spacing: 3px; color: var(--white); margin-bottom: 12px; }
.genre-desc { font-size: 13px; line-height: 1.7; color: var(--grey); }

/* EVENTS */
#events { background: var(--dark); padding: 120px 48px; }
.events-inner { max-width: 1300px; margin: 0 auto; }
.events-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 3px; }
.event-card { position: relative; height: 400px; overflow: hidden; display: flex; align-items: flex-end; }
.event-card-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 0.6s ease; }
.event-card:hover .event-card-bg { transform: scale(1.06); }
.event-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(6,6,8,0.92) 0%, rgba(6,6,8,0.3) 60%, transparent 100%); transition: background 0.4s; }
.event-card:hover .event-card-overlay { background: linear-gradient(to top, rgba(6,6,8,0.95) 0%, rgba(6,6,8,0.55) 70%, rgba(6,6,8,0.2) 100%); }
.event-card-content { position: relative; z-index: 2; padding: 36px; width: 100%; }
.event-badge { display: inline-block; font-size: 9px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); border: 1px solid var(--gold-dim); padding: 4px 10px; margin-bottom: 14px; }
.event-name { font-family: var(--font-display); font-size: 34px; letter-spacing: 3px; color: var(--white); line-height: 1; margin-bottom: 10px; }
.event-desc { font-size: 13px; line-height: 1.7; color: rgba(242,238,230,0.65); max-width: 300px; transform: translateY(8px); opacity: 0; transition: opacity 0.4s, transform 0.4s; }
.event-card:hover .event-desc { opacity: 1; transform: translateY(0); }

/* VENUES / ARTIST PRESENCE */
#venues { background: var(--black); padding: 120px 48px; position: relative; overflow: hidden; }
#venues::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(to right, transparent, var(--gold-dim), transparent); }
.venues-inner { max-width: 1300px; margin: 0 auto; }
.venues-subtitle { font-family: var(--font-serif); font-style: italic; font-size: clamp(16px, 1.8vw, 20px); color: rgba(242,238,230,0.55); max-width: 600px; margin-bottom: 56px; line-height: 1.7; }
.venue-region { margin-bottom: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(201,168,76,0.08); }
.venue-region:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.venue-region-label { font-family: var(--font-display); font-size: 20px; letter-spacing: 3px; color: var(--white); margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.venue-pin { font-size: 18px; filter: grayscale(0.3); }
.venue-pills { display: flex; flex-wrap: wrap; gap: 12px; }
.venue-pill { background: var(--dark2); border: 1px solid rgba(201,168,76,0.1); padding: 14px 22px; display: flex; align-items: center; gap: 16px; transition: border-color 0.4s, background 0.4s, transform 0.3s, box-shadow 0.4s; cursor: default; position: relative; overflow: hidden; }
.venue-pill::before { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1); }
.venue-pill:hover { border-color: rgba(201,168,76,0.35); background: rgba(201,168,76,0.04); transform: translateY(-3px); box-shadow: 0 8px 30px rgba(201,168,76,0.06); }
.venue-pill:hover::before { transform: scaleX(1); }
.venue-pill-name { font-family: var(--font-body); font-size: 14px; font-weight: 500; color: var(--white); letter-spacing: 0.5px; transition: color 0.3s; }
.venue-pill:hover .venue-pill-name { color: var(--gold); }
.venue-pill-type { font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold-dim); padding: 3px 8px; border: 1px solid rgba(201,168,76,0.12); line-height: 1; transition: border-color 0.3s, color 0.3s; }
.venue-pill:hover .venue-pill-type { border-color: var(--gold); color: var(--gold); }
.venue-pill--intl { border-color: rgba(168,85,247,0.15); }
.venue-pill--intl::before { background: linear-gradient(to right, var(--gold), #c084fc); }
.venue-pill--intl:hover { border-color: rgba(168,85,247,0.4); background: rgba(168,85,247,0.05); box-shadow: 0 8px 30px rgba(168,85,247,0.08); }
.venue-pill--intl:hover .venue-pill-name { color: #c084fc; }
.venue-pill--intl .venue-pill-type { border-color: rgba(168,85,247,0.2); color: rgba(168,85,247,0.5); }
.venue-pill--intl:hover .venue-pill-type { border-color: #c084fc; color: #c084fc; }

/* PHOTOS CAROUSEL */
#photos { background: var(--dark); padding: 120px 0; }
.photos-header { padding: 0 48px; max-width: 1300px; margin: 0 auto 60px; }
.carousel-container { position: relative; max-width: 1300px; margin: 0 auto; overflow: hidden; }
.carousel-track { display: flex; transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1); }
.carousel-slide { min-width: 100%; position: relative; }
.carousel-slide img { width: 100%; height: 600px; object-fit: cover; display: block; filter: brightness(0.92) contrast(1.05); }
.carousel-btn { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(6,6,8,0.7); border: 1px solid var(--gold-dim); color: var(--gold); font-size: 24px; width: 52px; height: 52px; display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 3; transition: background 0.3s, border-color 0.3s; }
.carousel-btn:hover { background: rgba(201,168,76,0.2); border-color: var(--gold); }
.carousel-prev { left: 20px; }
.carousel-next { right: 20px; }
.carousel-dots { display: flex; justify-content: center; gap: 10px; margin-top: 24px; padding: 0 48px; }
.carousel-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--dark3); border: 1px solid var(--gold-dim); cursor: pointer; transition: background 0.3s, transform 0.2s; }
.carousel-dot.active { background: var(--gold); transform: scale(1.2); }

/* LIGHTBOX */
.lightbox { position: fixed; inset: 0; background: rgba(6,6,8,0.97); z-index: 1000; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox img { max-width: 90vw; max-height: 90vh; object-fit: contain; }
.lightbox-close { position: absolute; top: 30px; right: 40px; font-size: 32px; color: var(--gold); cursor: pointer; background: none; border: none; font-family: var(--font-body); line-height: 1; }

/* MIXES */
#mixes { background: var(--dark); padding: 120px 48px; }
.mixes-inner { max-width: 1300px; margin: 0 auto; }
.mixes-intro { font-family: var(--font-serif); font-style: italic; font-size: clamp(18px, 2vw, 22px); color: rgba(242,238,230,0.6); max-width: 600px; margin-bottom: 60px; line-height: 1.6; }
.mixes-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.mix-card { background: var(--dark2); padding: 32px; border: 1px solid rgba(201,168,76,0.08); transition: border-color 0.3s; }
.mix-card:hover { border-color: rgba(201,168,76,0.3); }
.mix-label { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.mix-title { font-family: var(--font-display); font-size: 22px; letter-spacing: 2px; color: var(--white); margin-bottom: 20px; }
.mix-embed iframe { width: 100%; border: none; }

/* PRESS */
#press { background: var(--black); padding: 120px 48px; }
.press-inner { max-width: 1300px; margin: 0 auto; }
.press-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-bottom: 60px; }
.press-card { background: var(--dark2); padding: 40px 30px; text-align: center; border: 1px solid rgba(201,168,76,0.06); transition: border-color 0.3s, transform 0.3s; }
.press-card:hover { border-color: rgba(201,168,76,0.25); transform: translateY(-4px); }
.press-icon { font-size: 36px; margin-bottom: 16px; }
.press-title { font-family: var(--font-display); font-size: 22px; letter-spacing: 2px; color: var(--gold); margin-bottom: 12px; }
.press-desc { font-size: 13px; line-height: 1.7; color: var(--grey); }
.testimonial { max-width: 700px; margin: 0 auto; text-align: center; }
.testimonial blockquote { font-family: var(--font-serif); font-style: italic; font-size: clamp(18px, 2vw, 24px); color: rgba(242,238,230,0.7); line-height: 1.7; margin-bottom: 20px; }
.testimonial cite { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold-dim); font-style: normal; }

/* INSTAGRAM EMBED */
#instagram { background: var(--dark); padding: 120px 48px; }
.instagram-inner { max-width: 1300px; margin: 0 auto; }
.instagram-sub { font-size: 14px; color: var(--grey); margin-bottom: 40px; max-width: 500px; }
.instagram-feed { min-height: 300px; }
.instagram-embed-wrapper { background: var(--dark2); border: 1px solid rgba(201,168,76,0.1); overflow: hidden; }
.insta-profile-header { display: flex; align-items: center; gap: 24px; padding: 32px 36px; border-bottom: 1px solid rgba(201,168,76,0.08); }
.insta-avatar { width: 80px; height: 80px; border-radius: 50%; overflow: hidden; border: 2px solid var(--gold); flex-shrink: 0; }
.insta-avatar img { width: 100%; height: 100%; object-fit: cover; }
.insta-profile-info { flex: 1; }
.insta-handle { font-family: var(--font-display); font-size: 22px; letter-spacing: 2px; color: var(--white); margin-bottom: 4px; }
.insta-bio { font-size: 13px; color: var(--grey); margin-bottom: 10px; }
.insta-stats-row { display: flex; gap: 24px; font-size: 13px; color: var(--grey); }
.insta-stats-row strong { color: var(--white); font-weight: 600; }
.insta-follow-btn { padding: 10px 28px; flex-shrink: 0; }
.insta-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; }
.insta-grid-item { position: relative; overflow: hidden; display: block; aspect-ratio: 1; }
.insta-grid-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease, filter 0.3s; filter: brightness(0.9); }
.insta-grid-item:hover img { transform: scale(1.06); filter: brightness(1); }
.insta-grid-overlay { position: absolute; inset: 0; background: rgba(6,6,8,0.5); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; }
.insta-grid-overlay span { color: var(--white); font-size: 28px; }
.insta-grid-item:hover .insta-grid-overlay { opacity: 1; }
.insta-view-more { display: block; text-align: center; padding: 20px; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); border-top: 1px solid rgba(201,168,76,0.08); transition: background 0.3s; }
.insta-view-more:hover { background: rgba(201,168,76,0.05); }

/* BOOK / CONTACT */
#book { background: var(--black); padding: 140px 48px; position: relative; overflow: hidden; }
#book::before { content: 'BOOK'; position: absolute; font-family: var(--font-display); font-size: 28vw; color: rgba(201,168,76,0.03); top: 50%; left: 50%; transform: translate(-50%, -50%); white-space: nowrap; pointer-events: none; letter-spacing: 10px; }
.book-inner { max-width: 900px; margin: 0 auto; text-align: center; position: relative; z-index: 2; }
.book-eyebrow { font-size: 10px; letter-spacing: 5px; text-transform: uppercase; color: var(--gold); margin-bottom: 24px; display: block; }
.book-title { font-family: var(--font-display); font-size: clamp(52px, 9vw, 110px); letter-spacing: 6px; line-height: 0.9; color: var(--white); margin-bottom: 32px; }
.book-title span { color: var(--gold); }
.book-sub { font-family: var(--font-serif); font-style: italic; font-size: 20px; color: rgba(242,238,230,0.55); margin-bottom: 56px; line-height: 1.6; }
.book-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.book-email { margin-top: 56px; padding-top: 56px; border-top: 1px solid rgba(201,168,76,0.12); display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; }
.contact-item { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--grey); font-size: 13px; letter-spacing: 1px; transition: color 0.3s; }
.contact-item:hover { color: var(--gold); }
.contact-item span { color: var(--gold-dim); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; }

/* FOOTER */
footer { background: var(--dark); padding: 40px 48px; border-top: 1px solid rgba(201,168,76,0.1); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.footer-logo { font-family: var(--font-display); font-size: 18px; letter-spacing: 3px; color: var(--gold); }
.footer-copy { font-size: 11px; letter-spacing: 1px; color: rgba(136,136,144,0.5); }
.footer-socials { display: flex; gap: 24px; }
.footer-socials a { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--grey); text-decoration: none; transition: color 0.3s; }
.footer-socials a:hover { color: var(--gold); }

/* REVEAL */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* HAMBURGER MENU */
.menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; z-index: 101; flex-direction: column; gap: 5px; }
.menu-toggle span { display: block; width: 24px; height: 2px; background: var(--gold); transition: transform 0.3s, opacity 0.3s; }
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== TABLET — 900px ===== */
@media (max-width: 900px) {
  body { cursor: auto; }
  .cursor, .cursor-ring { display: none; }

  nav { padding: 16px 24px; }
  .menu-toggle { display: flex; }
  .nav-links {
    display: none;
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(6,6,8,0.97);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 16px; letter-spacing: 4px; color: var(--white); }
  .nav-cta { display: none; }

  .hero-bg { background-position: 70% top; }
  .hero-name { font-size: clamp(52px, 12vw, 100px); }
  .hero-content { padding: 0 24px 60px; }
  .hero-scroll { display: none; }
  .hero-sub { font-size: 11px; letter-spacing: 2px; }

  #about, #genres, #events, #venues, #mixes, #book, #press, #instagram { padding: 80px 24px; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }

  .venue-pill { padding: 12px 18px; }
  .venue-region-label { font-size: 18px; }

  .genres-grid { grid-template-columns: repeat(2, 1fr); }

  .events-grid { grid-template-columns: 1fr; }
  .event-card { height: 300px; }
  .event-desc { opacity: 1; transform: translateY(0); }

  #photos { padding: 80px 0; }
  .photos-header { margin-bottom: 40px; padding: 0 24px; }
  .carousel-slide img { height: 400px; }
  .carousel-btn { width: 44px; height: 44px; font-size: 20px; }

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

  .press-grid { grid-template-columns: repeat(2, 1fr); }

  .insta-profile-header { flex-direction: column; text-align: center; gap: 16px; }
  .insta-stats-row { justify-content: center; }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }

  .modal { padding: 36px 28px; width: 95%; }
  .form-row { grid-template-columns: 1fr; gap: 0; }

  .book-title { font-size: clamp(42px, 8vw, 80px); }
  .book-btns { flex-direction: column; align-items: center; }

  footer { padding: 30px 24px; flex-direction: column; text-align: center; }
}

/* ===== MOBILE — 600px ===== */
@media (max-width: 600px) {
  .hero-bg { background-position: 72% top; }
  .hero-name { font-size: clamp(44px, 16vw, 80px); }
  .hero-tag { font-size: 9px; letter-spacing: 3px; }
  .hero-btns { flex-direction: column; align-items: flex-start; gap: 16px; }

  .about-stats { flex-wrap: wrap; gap: 20px; justify-content: center; }
  .stat-num { font-size: 28px; }

  .genres-grid, .press-grid { grid-template-columns: 1fr; }
  .genre-card { padding: 28px 20px; }

  .event-card { height: 260px; }
  .event-name { font-size: 26px; }

  .venue-pills { gap: 8px; }
  .venue-pill { padding: 10px 14px; gap: 10px; }
  .venue-pill-name { font-size: 13px; }
  .venue-region-label { font-size: 16px; letter-spacing: 2px; }

  .carousel-slide img { height: 250px; }
  .carousel-btn { width: 36px; height: 36px; font-size: 16px; }
  .carousel-prev { left: 10px; }
  .carousel-next { right: 10px; }
  .carousel-dots { gap: 8px; }
  .carousel-dot { width: 8px; height: 8px; }

  .mix-card { padding: 24px; }

  .insta-grid { grid-template-columns: repeat(2, 1fr); }
  .insta-avatar { width: 64px; height: 64px; }
  .insta-handle { font-size: 18px; }

  .book-email { flex-direction: column; gap: 16px; }
  .book-sub { font-size: 16px; }

  .section-title { font-size: clamp(32px, 8vw, 52px); }

  .btn-primary { padding: 14px 28px; font-size: 10px; }
  .btn-download { padding: 13px 24px; font-size: 10px; }
}

/* ===== SMALL MOBILE — 400px ===== */
@media (max-width: 400px) {
  .hero-bg { background-position: 75% top; }
  .hero-name { font-size: 40px; letter-spacing: 4px; }
  .section-title { font-size: 30px; }
  .carousel-slide img { height: 200px; }
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
  .modal { padding: 28px 20px; }
  .modal-title { font-size: 28px; }
}

/* Print / PDF — Preserve dark aesthetic */
@media print {
  *, *::before, *::after {
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
    color-adjust: exact !important;
  }
  /* Hide interactive elements */
  nav, .cursor, .cursor-ring, .lightbox, .modal-overlay, .hero-scroll,
  .carousel-btn, .carousel-dots, .menu-toggle, #instagram, .btn-primary,
  .btn-download, .btn-secondary, .book-btns, footer .footer-socials { display: none !important; }

  /* Force reveals visible */
  .reveal { opacity: 1 !important; transform: none !important; }

  /* Page setup */
  @page { margin: 0; size: A4 portrait; }
  html, body { background: #060608 !important; color: #F2EEE6 !important; font-size: 12px; }

  /* Hero */
  #hero { height: auto !important; min-height: 500px; page-break-after: always; }
  .hero-bg { background-color: #060608 !important; }
  .hero-overlay { background: linear-gradient(to top, rgba(6,6,8,0.95) 0%, rgba(6,6,8,0.6) 40%, rgba(6,6,8,0.4) 100%) !important; }
  .hero-name { color: #fff !important; font-size: 72px !important; }
  .hero-name span { color: #C9A84C !important; }
  .hero-tag, .hero-sub { color: #C9A84C !important; }

  /* Sections */
  #about, #genres, #events, #venues, #mixes, #press, #book { background: #0D0D10 !important; padding: 48px 36px !important; }
  #photos { background: #060608 !important; padding: 48px 0 !important; }
  .section-title { color: #F2EEE6 !important; font-size: 36px !important; }
  .section-title em { color: #C9A84C !important; }
  .section-num { color: rgba(201,168,76,0.35) !important; }
  .section-line { background: #C9A84C !important; }

  /* About */
  .about-grid { grid-template-columns: 1fr 1fr !important; gap: 40px !important; }
  .about-text .lead { color: rgba(242,238,230,0.75) !important; }
  .about-text p { color: #888890 !important; }
  .stat-num { color: #C9A84C !important; }
  .stat-label { color: #888890 !important; }
  .about-stats { border-top: 1px solid rgba(201,168,76,0.12) !important; }

  /* Bio card */
  .bio-card { background: #1a0a2e !important; border: 1px solid rgba(139,92,246,0.2) !important; }
  .bio-card-title { color: #fff !important; text-shadow: none !important; }
  .bio-card-body p { color: rgba(255,255,255,0.85) !important; }
  .bio-highlight { color: #c084fc !important; }
  .bio-card-body strong { color: #e0c3ff !important; }
  .bio-card-contact { border-top: 1px solid rgba(168,85,247,0.3) !important; }
  .bio-contact-item { color: #fff !important; }

  /* Genres */
  #genres { background: #060608 !important; }
  .genres-marquee-wrap { display: none !important; }
  .genres-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 2px !important; }
  .genre-card { background: #111114 !important; padding: 24px 20px !important; }
  .genre-name { color: #F2EEE6 !important; }
  .genre-desc { color: #888890 !important; }

  /* Events */
  .events-grid { grid-template-columns: 1fr 1fr !important; gap: 3px !important; }
  .event-card { height: 250px !important; }
  .event-card-overlay { background: linear-gradient(to top, rgba(6,6,8,0.95) 0%, rgba(6,6,8,0.4) 60%, transparent) !important; }
  .event-name { color: #fff !important; }
  .event-badge { color: #C9A84C !important; border-color: rgba(201,168,76,0.35) !important; }
  .event-desc { opacity: 1 !important; transform: none !important; color: rgba(242,238,230,0.65) !important; }

  /* Venues */
  #venues::before { display: none !important; }
  .venue-pill { background: #111114 !important; border: 1px solid rgba(201,168,76,0.12) !important; }
  .venue-pill-name { color: #F2EEE6 !important; }
  .venue-pill-type { color: rgba(201,168,76,0.35) !important; border-color: rgba(201,168,76,0.15) !important; }
  .venue-region-label { color: #F2EEE6 !important; }
  .venues-subtitle { color: rgba(242,238,230,0.55) !important; }

  /* Gallery — show only first slide */
  .carousel-track { transform: none !important; }
  .carousel-slide:not(:first-child) { display: none !important; }
  .carousel-slide img { height: 350px !important; }

  /* Mixes */
  .mixes-grid { grid-template-columns: 1fr !important; }
  .mix-card { background: #111114 !important; border: 1px solid rgba(201,168,76,0.1) !important; page-break-inside: avoid; }
  .mix-label { color: #C9A84C !important; }
  .mix-title { color: #F2EEE6 !important; }
  .mix-embed iframe { display: none !important; }
  .mix-embed::after { content: '▶ Listen on SoundCloud'; display: block; color: #888890; font-size: 12px; padding: 16px 0; letter-spacing: 1px; }

  /* Press */
  #press { background: #060608 !important; }
  .press-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .press-card { background: #111114 !important; border: 1px solid rgba(201,168,76,0.08) !important; }
  .press-title { color: #C9A84C !important; }
  .press-desc { color: #888890 !important; }
  .testimonial blockquote { color: rgba(242,238,230,0.7) !important; }
  .testimonial cite { color: rgba(201,168,76,0.35) !important; }

  /* Book */
  #book { background: #060608 !important; }
  #book::before { display: none !important; }
  .book-eyebrow { color: #C9A84C !important; }
  .book-title { color: #F2EEE6 !important; }
  .book-title span { color: #C9A84C !important; }
  .book-sub { color: rgba(242,238,230,0.55) !important; }
  .book-email { border-top: 1px solid rgba(201,168,76,0.12) !important; }
  .contact-item { color: #888890 !important; }
  .contact-item span { color: rgba(201,168,76,0.35) !important; }

  /* Footer */
  footer { background: #0D0D10 !important; border-top: 1px solid rgba(201,168,76,0.1) !important; }
  .footer-logo { color: #C9A84C !important; }
  .footer-copy { color: rgba(136,136,144,0.5) !important; }

  /* Page breaks */
  #about, #genres, #events, #venues, #photos, #mixes, #press, #book { page-break-inside: avoid; }
}
