/*
Theme Name: InCrowd Stylez
Theme URI: https://incrowdstylez.com
Author: Kyle Lorde / K.Stylez
Description: Custom theme for K.Stylez DJ brand. Bold, high-energy, dark full-bleed hero with coral accents.
Version: 2.39
Text Domain: incrowdstylez
*/

/* ── Self-hosted fonts ── */
@font-face {
  font-family: 'Road Rage';
  src: url('fonts/RoadRage.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}


@font-face {
  font-family: 'Titling Gothic FB Wide';
  src: url('fonts/TitlingGothicFBWide-Black.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Titling Gothic FB Wide';
  src: url('fonts/TitlingGothicFBWide-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Titling Gothic FB Wide';
  src: url('fonts/TitlingGothicFBWide-Med.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Titling Gothic FB Wide';
  src: url('fonts/TitlingGothicFBWide-Reg.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Roboto';
  src: url('fonts/Roboto-Variable.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Roboto';
  src: url('fonts/Roboto-Italic-Variable.woff2') format('woff2');
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}



:root {
  --ics-black: #0F0F0F;
  --ics-black-soft: #1A1A1A;
  --ics-coral: #E24B4A;
  --ics-coral-dark: #C23B3A;
  --ics-amber: #FAC775;
  --ics-blue: #378ADD;
  --ics-white: #FFFFFF;
  --ics-offwhite: #F6F5F2;
  --ics-text: #141414;
  --ics-text-muted: #666666;
  --ics-border: #E2E2E2;
  --ics-border-dark: #2A2A2A;

  --ics-font-display: 'Titling Gothic FB Wide', 'Arial Black', Arial, sans-serif;
  --ics-font-brand: 'Road Rage', 'Arial Black', Arial, sans-serif;
  --ics-font-body: 'Roboto', Helvetica, Arial, sans-serif;

  --ics-header-h: 72px;
}

* { box-sizing: border-box; }

body {
  background: var(--ics-offwhite);
  color: var(--ics-text);
  font-family: var(--ics-font-body);
  margin: 0;
  line-height: 1.7;
  font-size: 1.05rem;
}

a {
  color: var(--ics-coral);
  text-decoration: none;
}
a:hover { color: var(--ics-coral-dark); }

h1, h2, h3, h4 {
  font-family: var(--ics-font-display);
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
  line-height: 1.1;
  color: var(--ics-text);
}

h1 { font-size: 3.8rem; text-transform: uppercase; letter-spacing: -0.02em; }
h2 { font-size: 2rem; text-transform: uppercase; letter-spacing: -0.01em; }
h3 { font-size: 1.25rem; text-transform: uppercase; letter-spacing: 0.02em; }

.container {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 2rem;
}


/* ══════════════════════════════════════
   HEADER
══════════════════════════════════════ */
.site-header {
  background: var(--ics-black);
  border-bottom: 1px solid var(--ics-border-dark);
  height: var(--ics-header-h);
  position: sticky;
  top: 0;
  z-index: 300;
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  height: 100%;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Boxed logo */
.site-title {
  font-family: var(--ics-font-brand);
  font-size: 2.6rem;
  font-weight: 400;
  color: var(--ics-white);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1;
  display: inline-block;
  transition: color 0.2s;
}
.site-title:hover {
  color: var(--ics-coral);
}

.main-nav ul {
  display: flex;
  gap: 1.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-nav a {
  color: #AAAAAA;
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color 0.2s;
}
.main-nav a:hover { color: var(--ics-coral); }


/* ══════════════════════════════════════
   FIXED SOCIAL STRIP
══════════════════════════════════════ */
.ics-social-strip {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: var(--ics-coral);
  display: flex;
  flex-direction: column;
  z-index: 200;
  border-radius: 4px 0 0 4px;
  overflow: hidden;
}
.ics-social-strip a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--ics-white);
  transition: background 0.15s;
}
.ics-social-strip a:hover {
  background: var(--ics-coral-dark);
  color: var(--ics-white);
}
.ics-social-strip svg { display: block; }



/* ── Personal message section ── */
.fp-message-section {
  background: var(--ics-black);
  padding: 4rem 0 3rem;
}
.fp-message-inner {
  max-width: 680px;
}
.fp-message-heading {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ics-coral);
  margin: 0 0 1.5rem;
}
.fp-message-body {
  font-size: 1.15rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.85);
  margin: 0 0 1.5rem;
}
.fp-message-sign {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  margin: 0;
}
.fp-message-sign strong {
  color: var(--ics-white);
  font-family: var(--font-display);
  font-size: 1.1rem;
}

/* ── Scroll-reveal animation (mixes section) ── */
.fp-reveal-item {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.fp-reveal-item--visible {
  opacity: 1;
  transform: translateY(0);
}


/* ── Mixes section big title ── */
.fp-mixes-section .fp-section-header {
  padding-bottom: 1.5rem;
  justify-content: center;
  position: relative;
}
.fp-mixes-section .fp-eyebrow {
  font-family: var(--ics-font-display);
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ics-white);
  margin: 0;
  text-align: center;
  flex: 1;
}
.fp-mixes-section .fp-view-all {
  font-size: 0.8rem;
  color: var(--ics-coral) !important;
  align-self: flex-end;
  padding-bottom: 0.5rem;
  position: absolute;
  right: 0;
  bottom: 1.5rem;
}
.fp-mixes-section .fp-view-all:hover {
  color: var(--ics-amber) !important;
}


/* ── Section entrance transitions ── */
.fp-section,
.fp-leap-section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.fp-section.is-visible,
.fp-leap-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}


/* ── Single Mix page ── */
.mix-single-hero {
  background: var(--ics-black);
  padding: 4rem 0 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.mix-single-back {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ics-coral);
  margin-bottom: 1.5rem;
  transition: color 0.2s;
}
.mix-single-back:hover { color: var(--ics-amber); }
.mix-single-title {
  font-family: var(--ics-font-display);
  font-size: 2.8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ics-white);
  margin: 0 0 0.75rem;
}
.mix-single-desc {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  line-height: 1.65;
  max-width: 600px;
  margin: 0;
}
.mix-single-player-section {
  background: var(--ics-black);
  padding: 2.5rem 0 5rem;
}
.mix-single-player-wrap {
  max-width: 860px;
}
.mix-single-thumb {
  display: block;
  width: 100%;
  max-width: 420px;
  border-radius: 6px;
  margin-top: 2rem;
}


/* ── Bookings page ── */
.bookings-hero {
  background: var(--ics-black);
  padding: 5rem 0 4rem;
}
.bookings-hero h1 {
  font-family: var(--ics-font-display);
  font-size: 3.6rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ics-white);
  margin: 0.5rem 0 1rem;
}
.bookings-hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  max-width: 580px;
  line-height: 1.7;
  margin: 0;
}

/* Info cards */
.bookings-info-section {
  background: #111;
  padding: 4rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.bookings-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.bookings-info-card {
  padding: 2rem 1.5rem;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  background: rgba(255,255,255,0.02);
}
.bookings-info-icon {
  display: block;
  font-size: 1.4rem;
  color: var(--ics-coral);
  margin-bottom: 1rem;
}
.bookings-info-card h3 {
  font-family: var(--ics-font-display);
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ics-white);
  margin: 0 0 0.75rem;
}
.bookings-info-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  margin: 0;
}

/* Form section */
.bookings-form-section {
  background: var(--ics-black);
  padding: 5rem 0 6rem;
}
.bookings-form-wrap {
  max-width: 720px;
}
.bookings-eyebrow {
  font-family: var(--ics-font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ics-coral);
  margin: 0 0 0.75rem;
}
.bookings-form-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  margin: 0 0 2.5rem;
}
.bookings-form-body .wpforms-container { color: var(--ics-white); }
.bookings-form-placeholder {
  color: rgba(255,255,255,0.5);
  font-size: 1rem;
  line-height: 1.7;
}
.bookings-email-link {
  color: var(--ics-coral);
  font-weight: 600;
}
.bookings-email-link:hover { color: var(--ics-amber); }

/* WPForms dark theme override */
.bookings-form-body .wpforms-field input,
.bookings-form-body .wpforms-field textarea,
.bookings-form-body .wpforms-field select {
  background: #1a1a1a !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
  color: var(--ics-white) !important;
  border-radius: 4px !important;
  padding: 0.85rem 1rem !important;
  font-family: var(--ics-font-body) !important;
}
.bookings-form-body .wpforms-field input:focus,
.bookings-form-body .wpforms-field textarea:focus {
  border-color: var(--ics-coral) !important;
  outline: none !important;
}
.bookings-form-body .wpforms-field label {
  color: rgba(255,255,255,0.7) !important;
  font-size: 0.82rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
}
.bookings-form-body .wpforms-submit {
  background: var(--ics-coral) !important;
  color: #fff !important;
  font-family: var(--ics-font-display) !important;
  font-weight: 900 !important;
  font-size: 0.85rem !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  border: none !important;
  padding: 0.9rem 2.5rem !important;
  border-radius: 4px !important;
  cursor: pointer !important;
  transition: background 0.2s !important;
}
.bookings-form-body .wpforms-submit:hover {
  background: #c43c3b !important;
}

@media (max-width: 768px) {
  .bookings-info-grid { grid-template-columns: 1fr; }
  .bookings-hero h1 { font-size: 2.4rem; }
}

@media (max-width: 768px) {
  .ics-social-strip { display: none; }
}


/* ══════════════════════════════════════
   HERO — full-bleed
══════════════════════════════════════ */
.hero {
  background-color: var(--ics-black);
  background-size: auto 105%;
  background-position: center top;
  background-repeat: no-repeat;
  min-height: calc(100vh - var(--ics-header-h));
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Photo is now a CSS background-image (set via inline style on .hero) */

/* Gradient — darken bottom-right corner where text sits */
.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.35) 40%, transparent 65%),
    linear-gradient(to left, rgba(0,0,0,0.0) 0%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

/* Text — bottom-right, like Karyen */
.hero-content {
  position: absolute;
  bottom: 3.5rem;
  right: 5.5rem; /* clearance for social strip */
  z-index: 2;
  text-align: right;
  max-width: 420px;
}

.hero-eyebrow {
  font-family: var(--ics-font-brand);
  color: var(--ics-coral);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-family: var(--ics-font-body);
  font-weight: 600;
  margin: 0 0 0.65rem;
}

.hero h1 {
  color: var(--ics-white);
  font-size: 4rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 0.75rem;
  text-shadow: 0 2px 24px rgba(0,0,0,0.6);
}

.hero-tagline {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0 0 1.75rem;
  text-shadow: 0 1px 8px rgba(0,0,0,0.8);
}

.hero-actions {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

@media (max-width: 768px) {
  .hero {
    min-height: 100svh;
    background-size: auto 100%;
    background-position: center top;
  }
  .hero-gradient {
    background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.3) 50%, transparent 75%);
  }
  .hero-content {
    bottom: 2rem;
    right: 1.5rem;
    left: 1.5rem;
    text-align: left;
    max-width: 100%;
  }
  .hero h1 { font-size: 2.4rem; }
  .hero-actions { justify-content: flex-start; }
}


/* ══════════════════════════════════════
   BUTTONS
══════════════════════════════════════ */
.btn {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.75rem 1.6rem;
  border-radius: 4px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.btn-primary {
  background: var(--ics-coral);
  color: var(--ics-white);
}
.btn-primary:hover {
  background: var(--ics-coral-dark);
  color: var(--ics-white);
}
.btn-outline-light {
  border: 2px solid rgba(255,255,255,0.3);
  color: var(--ics-white);
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.75rem 1.6rem;
  border-radius: 4px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.btn-outline-light:hover {
  border-color: var(--ics-coral);
  color: var(--ics-coral);
}
.btn-outline {
  border: 2px solid var(--ics-text);
  color: var(--ics-text);
}
.btn-outline:hover {
  border-color: var(--ics-coral);
  color: var(--ics-coral);
}


/* ══════════════════════════════════════
   SECTIONS (light body)
══════════════════════════════════════ */
.section {
  padding: 5rem 0;
  border-top: 1px solid var(--ics-border);
}
.section h2 { margin-bottom: 1.5rem; }


/* ══════════════════════════════════════
   TWITCH LIVE
══════════════════════════════════════ */
.ics-live-section {
  display: none;
  background: var(--ics-black);
  border-top: 3px solid var(--ics-coral);
  padding: 2.5rem 0;
}
.ics-live-section .container { max-width: 1200px; }
.ics-live-section h2 { color: var(--ics-white); }
.ics-live-section p { color: #AAAAAA; }

.ics-live-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--ics-coral);
  color: var(--ics-white);
  font-family: var(--ics-font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 4px;
  margin-bottom: 1rem;
}
.ics-live-label::before {
  content: '';
  width: 7px;
  height: 7px;
  background: var(--ics-white);
  border-radius: 50%;
  animation: ics-pulse 1.4s ease-in-out infinite;
}
@keyframes ics-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.ics-live-embed {
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 520px;
  border: none;
  border-radius: 6px;
  overflow: hidden;
  margin-top: 0.75rem;
}


/* ══════════════════════════════════════
   GIG ITEMS
══════════════════════════════════════ */
.gig-item {
  border-left: 3px solid var(--ics-coral);
  padding: 0.75rem 0 0.75rem 1.25rem;
  margin-bottom: 1.5rem;
}
.gig-item h3 { margin-bottom: 0.25rem; }
.gig-item p { color: var(--ics-text-muted); margin: 0; font-size: 0.95rem; }


/* ══════════════════════════════════════
   INNER PAGE HERO
══════════════════════════════════════ */
.page-hero {
  background: var(--ics-black);
  padding: 4rem 0 3rem;
  text-align: center;
}
.page-hero h1 { color: var(--ics-white); margin-bottom: 0.25rem; }
.page-hero .hero-eyebrow {
  font-family: var(--ics-font-brand); margin-bottom: 0.75rem; }
.page-hero-sub {
  color: #AAAAAA;
  font-size: 1rem;
  margin: 0.5rem 0 0;
}


/* ══════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════ */
.about-page { padding: 5rem 0; }
.about-grid {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.about-grid.has-photo {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 4rem;
  align-items: start;
}
.about-photo img {
  width: 100%;
  border-radius: 4px;
  display: block;
}
.about-content { font-size: 1.05rem; line-height: 1.8; color: var(--ics-text-muted); }
.about-content h2, .about-content h3 { color: var(--ics-text); }
.about-content p { margin: 0 0 1.25rem; }


/* ══════════════════════════════════════
   WATCH / VIDEO GRID
══════════════════════════════════════ */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2.5rem;
}
.video-card { display: flex; flex-direction: column; }
.video-embed {
  aspect-ratio: 16 / 9;
  border-radius: 4px;
  overflow: hidden;
  background: var(--ics-black);
}
.video-embed iframe { width: 100%; height: 100%; border: none; }
.video-card-body { padding: 1rem 0 0; }
.video-card-body h3 { font-size: 1rem; margin-bottom: 0.25rem; }
.video-card-body p { color: var(--ics-text-muted); font-size: 0.9rem; margin: 0; }
.video-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ics-coral);
  margin-bottom: 0.4rem;
}




/* ══════════════════════════════════════
   HOME PAGE GRID LAYOUT
══════════════════════════════════════ */
.home-content {
  background: var(--ics-offwhite);
  padding: 3rem 3rem 0;
  max-width: 1280px;
  margin: 0 auto;
}

/* Row: two panels side by side */
.home-row--split {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
  align-items: start;
}

/* Row: videos full width */
.home-row--videos {
  margin-bottom: 3rem;
}

/* Panel header */
.home-panel-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  gap: 1rem;
}
.home-panel-header h2 { margin-bottom: 0; }
.home-panel-header--wide {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

/* Gig cards */
.gig-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--ics-white);
  border: 1px solid var(--ics-border);
  border-left: 4px solid var(--ics-coral);
  border-radius: 4px;
  padding: 1rem 1.25rem;
  margin-bottom: 0.75rem;
}
.gig-card--empty {
  border-left: 4px solid var(--ics-border);
  color: var(--ics-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}
.gig-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 52px;
  background: var(--ics-black);
  color: var(--ics-white);
  border-radius: 4px;
  padding: 0.5rem 0.6rem;
  text-align: center;
  flex-shrink: 0;
}
.gig-month-day {
  font-family: var(--ics-font-display);
  font-size: 0.95rem;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.gig-year {
  font-size: 0.65rem;
  color: #888;
  margin-top: 2px;
}
.gig-info h3 {
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.gig-venue {
  color: var(--ics-text-muted);
  font-size: 0.82rem;
  margin: 0;
}

/* Mix cards */
.mix-card {
  background: var(--ics-white);
  border: 1px solid var(--ics-border);
  border-radius: 4px;
  padding: 1.25rem;
  margin-bottom: 1rem;
}
.mix-card h3 {
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.mix-card--empty {
  color: var(--ics-text-muted);
  font-size: 0.95rem;
}
.mix-embed {
  width: 100%;
  height: 320px;
}
.mix-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 4px;
}

/* Empty state */
.home-empty {
  color: var(--ics-text-muted);
  font-size: 0.95rem;
  padding: 2rem;
  background: var(--ics-white);
  border: 1px solid var(--ics-border);
  border-radius: 4px;
}

@media (max-width: 768px) {
  .home-content { padding: 2rem 1.25rem 0; }
  .home-row--split { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════
   SECTION HEADER (title + view-all link)
══════════════════════════════════════ */
.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 1.75rem;
  gap: 1rem;
}
.section-header h2 { margin-bottom: 0; }
.section-link {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ics-coral);
  white-space: nowrap;
  flex-shrink: 0;
}
.section-link:hover { color: var(--ics-coral-dark); }

/* Wide container for video grid */
.container--wide {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Home video grid — large cards, max 2 per row */
.video-grid--home {
  grid-template-columns: repeat(auto-fill, minmax(480px, 1fr));
}
@media (max-width: 600px) {
  .video-grid--home { grid-template-columns: 1fr; }
}



/* ══════════════════════════════════════
   FRONT PAGE EDITORIAL SECTIONS
══════════════════════════════════════ */
.fp-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

.fp-section {
  padding: 5rem 0;
}
.fp-section--dark {
  background: var(--ics-black);
}
.fp-section--light {
  background: var(--ics-offwhite);
  border-top: 1px solid var(--ics-border);
}
.fp-section--gigs {
  background: var(--ics-black-soft);
  border-top: 1px solid var(--ics-border-dark);
  padding: 3.5rem 0;
}

/* Section header */
.fp-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.fp-eyebrow {
  color: var(--ics-coral);
  font-size: 0.7rem;
  font-family: var(--ics-font-body);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin: 0;
}
.fp-eyebrow--dark { color: var(--ics-text-muted); }
.fp-view-all {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #666;
  transition: color 0.2s;
}
.fp-view-all:hover { color: var(--ics-coral); }
.fp-view-all--dark { color: var(--ics-text-muted); }
.fp-view-all--dark:hover { color: var(--ics-coral); }

/* Empty states */
.fp-empty {
  color: #666;
  font-size: 0.95rem;
}
.fp-empty--dark { color: var(--ics-text-muted); }
.fp-empty a { color: var(--ics-coral); }

/* ── Mix blocks ── */
.fp-mix-block {
  margin-bottom: 3rem;
}
.fp-mix-block:last-child { margin-bottom: 0; }
.fp-mix-title {
  color: var(--ics-white);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.fp-mix-player {
  width: 100%;
  height: 380px;
  border-radius: 6px;
  overflow: hidden;
  background: #111;
}
.fp-mix-player iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ── Video blocks ── */
.fp-video-block {
  margin-bottom: 4rem;
}
.fp-video-block:last-child { margin-bottom: 0; }
.fp-video-embed {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 6px;
  overflow: hidden;
  background: var(--ics-black);
}
.fp-video-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.fp-video-meta {
  padding: 1.25rem 0 0;
}
.fp-video-title {
  font-size: 1.4rem;
  margin: 0.4rem 0 0.5rem;
  color: var(--ics-text);
  text-transform: uppercase;
}
.fp-video-desc {
  color: var(--ics-text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
  max-width: 640px;
}

/* ── Gigs strip ── */
.fp-gigs-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.fp-gig-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
  min-width: 240px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--ics-border-dark);
  border-left: 3px solid var(--ics-coral);
  border-radius: 4px;
  padding: 1rem 1.25rem;
}
.fp-gig-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--ics-coral);
  border-radius: 4px;
  padding: 0.4rem 0.65rem;
  min-width: 52px;
  text-align: center;
  flex-shrink: 0;
}
.fp-gig-md {
  font-family: var(--ics-font-display);
  font-weight: 900;
  font-size: 0.9rem;
  color: var(--ics-white);
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: 0.02em;
}
.fp-gig-yr {
  font-size: 0.62rem;
  color: rgba(255,255,255,0.7);
  margin-top: 2px;
}
.fp-gig-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.fp-gig-info strong {
  color: var(--ics-white);
  font-size: 0.9rem;
  font-family: var(--ics-font-display);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.fp-gig-info span {
  color: #888;
  font-size: 0.8rem;
}
.fp-section--gigs .fp-empty {
  color: #888;
}
.fp-section--gigs .fp-empty strong {
  color: var(--ics-white);
}

@media (max-width: 768px) {
  .fp-section { padding: 3.5rem 0; }
  .fp-mix-player { height: 280px; }
  .fp-gig-card { min-width: 100%; }
}

/* ══════════════════════════════════════
   INCROWD NETWORK BANNER
══════════════════════════════════════ */
.ics-network-banner {
  background: var(--ics-black);
  border-top: 1px solid var(--ics-border-dark);
  padding: 5.5rem 0;
  text-align: center;
}
.ics-network-banner .container { max-width: 600px; }
.network-eyebrow {
  color: var(--ics-amber);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-family: var(--ics-font-body);
  font-weight: 600;
  margin: 0 0 0.6rem;
}
.network-title {
  color: var(--ics-white);
  font-size: 3rem;
  margin: 0 0 1rem;
}
.network-desc {
  color: #888;
  font-size: 1rem;
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto 2.25rem;
}
.btn-amber {
  display: inline-block;
  background: var(--ics-amber);
  color: var(--ics-black);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.8rem 1.8rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: background 0.2s;
}
.btn-amber:hover {
  background: #e8b45f;
  color: var(--ics-black);
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.site-footer {
  background: var(--ics-black);
  border-top: 1px solid var(--ics-border-dark);
  padding: 3rem 0;
  text-align: center;
}
.site-footer p {
  color: #666;
  font-size: 0.85rem;
  margin: 0.3rem 0;
}
.inc-badge {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: #888;
  border: 1px solid var(--ics-border-dark);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
}
.inc-badge a {
  color: var(--ics-amber);
  font-weight: 600;
}


/* ══════════════════════════════════════
   MOBILE NAV TOGGLE
══════════════════════════════════════ */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

/* Hidden by default; shown only in mobile via media query */
.nav-mobile-drawer { display: none; }
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ics-white);
  border-radius: 2px;
  transition: 0.2s;
}

@media (max-width: 768px) {
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.6rem; }

  .nav-toggle { display: flex; }
  .main-nav { display: none; }
  .nav-mobile-drawer {
    display: none;
    background: var(--ics-black);
    border-top: 1px solid var(--ics-border-dark);
    padding: 1rem 2rem 1.5rem;
  }
  .nav-open .nav-mobile-drawer { display: block; }
  .nav-mobile-drawer ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
  }
  .nav-mobile-drawer a {
    color: #AAAAAA;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }
  .nav-mobile-drawer a:hover { color: var(--ics-coral); }

  .about-grid.has-photo { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: 1fr; }
}


/* ══════════════════════════════════════
   MIXES — SHELF LAYOUT
══════════════════════════════════════ */

.mixes-hero {
  background: var(--ics-black);
  padding: 5rem 0 4rem;
  text-align: center;
  border-bottom: 3px solid var(--ics-coral);
}
.mixes-hero h1 { color: var(--ics-white); margin-bottom: 0.25rem; }
.mixes-hero .hero-eyebrow {
  font-family: var(--ics-font-brand); margin-bottom: 0.75rem; }
.mixes-hero-sub { color: #AAAAAA; font-size: 1rem; margin: 0.5rem 0 0; }

/* ── Shared shelf wrapper ── */
.mixes-shelf-section {
  background: #0d0d0d;
  padding: 3.5rem 0 5rem;
}
.fp-mix-shelf-wrap {
  width: 100%;
  overflow: hidden;
  padding: 0.5rem 0 1.5rem;
}

.mixes-shelf-row {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
}
.fp-mix-shelf,
.mixes-shelf {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0.75rem 2rem 1.25rem;
  width: 100%;
  box-sizing: border-box;
  justify-content: safe center;
}
.fp-mix-shelf::-webkit-scrollbar,
.mixes-shelf::-webkit-scrollbar { display: none; }

/* ── Scroll arrows ── */
.shelf-arrow,
.fp-shelf-arrow {
  flex-shrink: 0;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--ics-white);
  font-size: 1.6rem;
  line-height: 1;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.shelf-arrow:hover,
.fp-shelf-arrow:hover { background: var(--ics-coral); border-color: var(--ics-coral); }
.shelf-arrow--prev,
.fp-shelf-arrow--prev { margin-right: 0.5rem; }
.shelf-arrow--next,
.fp-shelf-arrow--next { margin-left: 0.5rem; }

/* ── Featured badge ── */
.mix-featured-badge {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  z-index: 3;
  background: var(--ics-coral);
  color: var(--ics-white);
  font-size: 0.6rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.25rem 0.55rem;
  border-radius: 3px;
  pointer-events: none;
}

/* ── Shelf cards (Mixes page) ── */
.mix-shelf-card {
  flex: 0 0 320px;
  scroll-snap-align: start;
  cursor: pointer;
  outline: none;
  position: relative;
  transition: transform 0.2s;
}
.mix-shelf-card:hover { transform: translateY(-3px); }
.mix-shelf-card--active .mix-shelf-card-art,
.mix-shelf-card--featured .mix-shelf-card-art {
  box-shadow: 0 0 0 2px var(--ics-coral);
  border-radius: 6px;
}
.mix-shelf-card-art {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 6px;
  overflow: hidden;
  background: #1a1a1a;
}
.mix-shelf-card-art img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.3s;
}
.mix-shelf-card:hover .mix-shelf-card-art img { transform: scale(1.05); }
.mix-shelf-art-ph {
  width: 100%; height: 100%;
  background: #222;
  display: flex; align-items: center; justify-content: center;
}
.mix-shelf-art-ph span { font-family: var(--font-display); font-weight: 900; font-size: 1.5rem; color: #444; }
.mix-shelf-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.45);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.2s;
}
.mix-shelf-card:hover .mix-shelf-overlay,
.mix-shelf-card--active .mix-shelf-overlay { opacity: 1; }
.mix-shelf-overlay svg { width: 44px; height: 44px; color: #fff; filter: drop-shadow(0 2px 6px rgba(0,0,0,0.5)); }
.mix-shelf-card-title {
  font-size: 0.85rem; color: var(--ics-white);
  margin: 0.55rem 0 0.15rem; font-weight: 600;
  line-height: 1.3; white-space: nowrap;
  overflow: hidden; text-overflow: ellipsis;
}
.mix-shelf-card-date {
  font-size: 0.68rem; color: #666;
  font-weight: 600; letter-spacing: 0.07em;
  text-transform: uppercase; margin: 0;
}

/* ── Shelf cards (Homepage) ── */
.fp-shelf-card {
  flex: 0 0 340px;
  scroll-snap-align: start;
  cursor: pointer;
  outline: none;
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  transition: transform 0.2s;
}
.fp-shelf-card:hover { transform: translateY(-3px); }
.fp-shelf-card--active .fp-shelf-card-art { box-shadow: 0 0 0 2px var(--ics-coral); border-radius: 6px; }
.fp-shelf-card-art {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 6px;
  overflow: hidden;
  background: #1a1a1a;
}
.fp-shelf-card-art img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.3s;
}
.fp-shelf-card:hover .fp-shelf-card-art img { transform: scale(1.05); }
.fp-shelf-art-placeholder {
  width: 100%; height: 100%;
  background: #222;
  display: flex; align-items: center; justify-content: center;
}
.fp-shelf-art-placeholder span { font-family: var(--ics-font-display); font-weight: 900; font-size: 3rem; color: #333; letter-spacing: 0.1em; }
.fp-shelf-card-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.45);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.2s;
}
.fp-shelf-card:hover .fp-shelf-card-overlay,
.fp-shelf-card--active .fp-shelf-card-overlay { opacity: 1; }
.fp-shelf-card-overlay svg { width: 40px; height: 40px; color: #fff; filter: drop-shadow(0 2px 6px rgba(0,0,0,0.5)); }
.fp-shelf-card-title {
  font-size: 0.82rem; color: var(--ics-white);
  margin: 0.55rem 0 0.15rem; font-weight: 600;
  line-height: 1.3; white-space: nowrap;
  overflow: hidden; text-overflow: ellipsis;
  text-align: center;
}
.fp-shelf-card-date {
  font-size: 0.68rem; color: #666;
  font-weight: 600; letter-spacing: 0.07em;
  text-transform: uppercase; margin: 0;
}

/* ── Player reveal (Mixes page) ── */
.mixes-player-reveal {
  background: #0a0a0a;
  border-top: 2px solid var(--ics-coral);
  padding: 2rem 0 3rem;
  animation: playerReveal 0.3s ease;
}
.mixes-player-reveal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}
.mixes-player-reveal-header .mix-eyebrow { margin: 0; }
.mixes-player-close {
  background: none; border: 1px solid #444;
  color: #888; width: 28px; height: 28px;
  border-radius: 50%; cursor: pointer; font-size: 0.75rem;
  display: flex; align-items: center; justify-content: center;
  transition: color 0.2s, border-color 0.2s;
}
.mixes-player-close:hover { color: var(--ics-coral); border-color: var(--ics-coral); }
.mixes-player-reveal-embed { border-radius: 6px; overflow: hidden; }
.mixes-player-reveal-embed iframe { display: block; }

/* ── Player reveal (Homepage) ── */
.fp-mix-player-reveal {
  background: #0a0a0a;
  border-top: 2px solid var(--ics-coral);
  padding: 1.5rem 0 2rem;
  animation: playerReveal 0.3s ease;
}
.fp-mix-reveal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.fp-mix-reveal-title {
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ics-coral); margin: 0;
}
.fp-mix-reveal-close {
  background: none; border: 1px solid #444;
  color: #888; width: 26px; height: 26px;
  border-radius: 50%; cursor: pointer; font-size: 0.72rem;
  display: flex; align-items: center; justify-content: center;
  transition: color 0.2s, border-color 0.2s;
}
.fp-mix-reveal-close:hover { color: var(--ics-coral); border-color: var(--ics-coral); }
.fp-mix-reveal-embed { border-radius: 6px; overflow: hidden; }
.fp-mix-reveal-embed iframe { display: block; }

@keyframes playerReveal {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Misc ── */
.mix-eyebrow {
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--ics-coral); margin: 0 0 0.75rem;
}
.mixes-empty-state {
  background: var(--ics-black); padding: 5rem 0;
  text-align: center; color: #888;
}
.mixes-empty-state a { color: var(--ics-coral); }

@media (max-width: 768px) {
  .fp-shelf-card { flex: 0 0 240px; }
  .mix-shelf-card { flex: 0 0 240px; }
}



/* ══════════════════════════════════════
   THE LEAP — FEATURED SERIES SECTION
══════════════════════════════════════ */
.fp-leap-section {
  background: #0D1117;
  border-top: 3px solid var(--ics-coral);
  border-bottom: 3px solid var(--ics-coral);
  padding: 5rem 0;
}
.fp-leap-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 2rem;
}
.fp-leap-text-top {
  text-align: center;
  margin-bottom: 2.5rem;
}
.fp-leap-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ics-coral);
  margin: 0 0 1rem;
}
.fp-leap-subtitle {
  font-family: var(--ics-font-body);
  font-size: 0.9rem;
  font-weight: 400;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin: 0 0 1.2rem;
}
.fp-leap-hook {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--ics-white);
  line-height: 1.1;
  margin: 0;
}
.fp-leap-embed {
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 24px 80px rgba(0,0,0,0.7);
  margin-bottom: 2.5rem;
}
.fp-leap-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.fp-leap-text-bottom {
  text-align: center;
}
.fp-leap-desc {
  color: #999;
  font-size: 1rem;
  line-height: 1.75;
  max-width: 580px;
  margin: 0 auto 1.75rem;
}
.fp-leap-cta {
  display: inline-block;
  background: var(--ics-coral);
  color: var(--ics-white);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.fp-leap-cta:hover {
  background: var(--ics-coral-dark);
  transform: translateY(-2px);
}
.fp-leap-desc--sub {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ics-coral);
  margin-bottom: 2rem !important;
}

@media (max-width: 768px) {
  .fp-leap-subtitle {
  font-family: var(--ics-font-body);
  font-size: 0.9rem;
  font-weight: 400;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin: 0 0 1.2rem;
}
.fp-leap-hook { font-size: 2rem; }
  .fp-leap-inner { padding: 0 1.25rem; }
}



/* ══════════════════════════════════════
   WATCH PAGE
══════════════════════════════════════ */
.watch-hero {
  background: var(--ics-black);
  padding: 5rem 0 4rem;
  text-align: center;
  border-bottom: 3px solid var(--ics-coral);
}
.watch-hero h1 { color: var(--ics-white); margin-bottom: 0.25rem; }
.watch-hero .hero-eyebrow {
  font-family: var(--ics-font-brand); margin-bottom: 0.75rem; }
.watch-hero-sub {
  color: #AAAAAA;
  font-size: 1rem;
  margin: 0.5rem 0 0;
}

.watch-filter-bar {
  background: #111111;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 10;
}
.watch-filter-tabs {
  display: flex;
  gap: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.watch-filter-tabs::-webkit-scrollbar { display: none; }
.filter-tab {
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  color: #888;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 1.1rem 1.4rem;
  text-transform: uppercase;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.filter-tab:hover { color: var(--ics-white); }
.filter-tab.active {
  color: var(--ics-coral);
  border-bottom-color: var(--ics-coral);
}

.watch-grid-section {
  background: #0f0f0f;
  padding: 3.5rem 0 5rem;
}
.watch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(420px, 1fr));
  gap: 3rem 2.5rem;
}
.watch-card { display: flex; flex-direction: column; }
.watch-embed {
  aspect-ratio: 16 / 9;
  border-radius: 6px;
  overflow: hidden;
  background: #000;
}
.watch-embed iframe { width: 100%; height: 100%; border: none; display: block; }
.watch-card-body { padding: 1rem 0 0; }
.watch-card-body h3 {
  font-size: 1.05rem;
  color: var(--ics-white);
  margin: 0 0 0.3rem;
  line-height: 1.35;
}
.watch-card-body p { color: var(--ics-text-muted); font-size: 0.88rem; margin: 0; }
.watch-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ics-coral);
  margin-bottom: 0.45rem;
}

@media (max-width: 768px) {
  .mix-number { font-size: 2rem; }
  .mix-title { font-size: 1.3rem; }
  .watch-grid { grid-template-columns: 1fr; }
  .mix-block-inner { padding: 0 1.25rem; }
}


/* ══════════════════════════════════════
   NATIVE AUDIO PLAYER (direct upload)
══════════════════════════════════════ */
.mix-player--native,
.fp-mix-player--native {
  background: #111;
  border-radius: 6px;
  padding: 2rem 2.5rem;
  border: 1px solid rgba(255,255,255,0.08);
  height: auto !important;
}
.mix-player--native audio,
.fp-mix-player--native audio {
  width: 100%;
  height: 54px;
  display: block;
  accent-color: var(--ics-coral);
  filter: invert(0);
}
/* Chrome/Edge/Safari dark audio player */
.mix-player--native audio::-webkit-media-controls-panel,
.fp-mix-player--native audio::-webkit-media-controls-panel {
  background-color: #1a1a1a;
}
