/*
Theme Name:        Artist One Page
Theme URI:         https://your-website.com
Author:            Your Name
Author URI:        https://your-website.com
Description:       A professional one-page WordPress theme built for musicians and performing artists. Includes a hero image slider, MP3 music player, YouTube video gallery, WooCommerce store, bookings form, Press/EPK page, and sticky floating player bar. Every section is fully editable via the WordPress Customizer (Appearance → Customize). Requires WooCommerce for the store section and the Artist Video Gallery plugin for the video gallery.
Version:           1.1.2
Requires at least: 6.0
Tested up to:      6.5
Requires PHP:      8.0
License:           GNU General Public License v2 or later
License URI:       https://www.gnu.org/licenses/gpl-2.0.html
Text Domain:       artist-one-page
Tags:              one-page, music, woocommerce, customizer, dark, full-width-template, artist, musician
*/

/* ═══════════════════════════════════════════════════════════
   ARTIST ONE PAGE — BASE THEME STYLES
   All colors, fonts, and spacing use CSS custom properties
   that are overridden by the WordPress Customizer.
   ═══════════════════════════════════════════════════════════ */

/* ── DESIGN TOKENS (defaults — overridden by Customizer) ─── */
:root {
  --ap-color-bg:            #0e0c08;
  --ap-color-surface:       #151209;
  --ap-color-surface-2:     #1c1710;
  --ap-color-surface-3:     #251e14;
  --ap-color-border:        #3a3020;
  --ap-color-divider:       #2c2516;
  --ap-color-text:          #e8dcc8;
  --ap-color-text-muted:    #9a8a70;
  --ap-color-text-faint:    #5a4e3a;
  --ap-color-copper:        #b87333;
  --ap-color-copper-light:  #d4944a;
  --ap-color-copper-dark:   #7a4c20;
  --ap-color-gold:          #c8922a;
  --ap-color-gold-light:    #e8b84a;
  --ap-color-bronze:        #8c5a1a;
  --ap-color-patina:        #5a7a60;
  --ap-color-primary:       #b87333;
  --ap-color-primary-hover: #d4944a;
  --ap-color-primary-glow:  rgba(184,115,51,0.25);

  --ap-font-display: 'Playfair Display', Georgia, serif;
  --ap-font-body:    'Lato', 'Helvetica Neue', Arial, sans-serif;

  --ap-slider-height:      100svh;
  --ap-slider-interval:    5000;

  --ap-header-bg:          rgba(14,12,8,0.9);
  --ap-header-border:      rgba(58,48,32,0.8);

  --ap-radius-sm:   0.375rem;
  --ap-radius-md:   0.5rem;
  --ap-radius-lg:   0.75rem;
  --ap-radius-xl:   1rem;
  --ap-radius-full: 9999px;
  --ap-trans:       200ms cubic-bezier(0.16, 1, 0.3, 1);
  --ap-trans-slow:  500ms cubic-bezier(0.16, 1, 0.3, 1);
  --ap-shadow-sm:   0 1px 2px rgba(0,0,0,0.35);
  --ap-shadow-md:   0 4px 16px rgba(0,0,0,0.45);
  --ap-shadow-lg:   0 12px 40px rgba(0,0,0,0.55);
}

/* ── RESET / BASE ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-padding-top: 80px;
}

body {
  min-height: 100dvh;
  font-family: var(--ap-font-body);
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  color: var(--ap-color-text);
  background-color: var(--ap-color-bg);
  line-height: 1.65;
}

img, picture, video { display: block; max-width: 100%; height: auto; }
ul, ol { list-style: none; padding: 0; margin: 0; }
input, button, textarea, select { font: inherit; color: inherit; }
h1,h2,h3,h4,h5 { text-wrap: balance; line-height: 1.15; }
p, li { text-wrap: pretty; }
button { cursor: pointer; background: none; border: none; }
a { color: var(--ap-color-copper-light); text-decoration: none; transition: color var(--ap-trans); }
a:hover { color: var(--ap-color-gold-light); }
:focus-visible { outline: 2px solid var(--ap-color-copper); outline-offset: 3px; border-radius: var(--ap-radius-sm); }
::selection { background: var(--ap-color-primary-glow); color: var(--ap-color-text); }

/* ── TYPE SCALE ──────────────────────────────────────────── */
.ap-text-xs   { font-size: clamp(0.75rem,  0.7rem  + 0.25vw, 0.875rem); }
.ap-text-sm   { font-size: clamp(0.875rem, 0.8rem  + 0.35vw, 1rem); }
.ap-text-base { font-size: clamp(1rem,     0.95rem + 0.25vw, 1.125rem); }
.ap-text-lg   { font-size: clamp(1.125rem, 1rem    + 0.75vw, 1.5rem); }
.ap-text-xl   { font-size: clamp(1.5rem,   1.2rem  + 1.25vw, 2.25rem); }
.ap-text-2xl  { font-size: clamp(2rem,     1.2rem  + 2.5vw,  3.5rem); }

/* ── BUTTONS ─────────────────────────────────────────────── */
.ap-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--ap-radius-sm);
  font-size: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all var(--ap-trans);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
  text-decoration: none;
}
.ap-btn-primary {
  background: linear-gradient(135deg, var(--ap-color-copper), var(--ap-color-gold));
  color: #0e0c08;
  border-color: var(--ap-color-copper-dark);
  box-shadow: 0 2px 8px var(--ap-color-primary-glow), inset 0 1px 0 rgba(255,255,255,0.15);
}
.ap-btn-primary:hover {
  background: linear-gradient(135deg, var(--ap-color-copper-light), var(--ap-color-gold-light));
  transform: translateY(-1px);
  box-shadow: 0 4px 16px var(--ap-color-primary-glow);
  color: #0e0c08;
}
.ap-btn-sm  { padding: 0.5rem 1rem; font-size: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem); }
.ap-btn-lg  { padding: 1rem 2.5rem; font-size: clamp(1rem, 0.95rem + 0.25vw, 1.125rem); }

/* ── SECTION DECORATION ──────────────────────────────────── */
.ap-section-header { text-align: center; margin-bottom: 3rem; }
.ap-section-header h2 {
  font-family: var(--ap-font-display);
  font-size: clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
  color: var(--ap-color-gold-light);
  margin-bottom: 0.5rem;
  letter-spacing: 0.04em;
}
.ap-section-sub { font-size: clamp(1rem, 0.95rem + 0.25vw, 1.125rem); color: var(--ap-color-text-muted); font-weight: 300; letter-spacing: 0.04em; }
.ap-star-divider { display: flex; align-items: center; gap: 1rem; justify-content: center; margin-bottom: 1rem; }
.ap-divider-line { flex: 1; max-width: 120px; height: 1px; background: linear-gradient(to right, transparent, var(--ap-color-copper), transparent); }
.ap-section-stripe {
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(to right, transparent, var(--ap-color-copper), var(--ap-color-gold), var(--ap-color-copper), transparent);
}

/* ── HEADER ──────────────────────────────────────────────── */
#ap-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--ap-header-bg);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--ap-header-border);
  transition: box-shadow var(--ap-trans-slow);
}
#ap-header.scrolled { box-shadow: var(--ap-shadow-md); }
.ap-header-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0.75rem 1.5rem;
  display: flex; align-items: center; gap: 1.5rem;
}
.ap-logo { flex-shrink: 0; display: flex; align-items: center; }
.ap-logo img { height: 44px; width: auto; }
.ap-logo-text {
  font-family: var(--ap-font-display);
  font-size: 1.5rem; font-weight: 900;
  color: var(--ap-color-gold);
  letter-spacing: 0.04em;
}
.ap-main-nav { flex: 1; }
.ap-main-nav ul { display: flex; gap: 2rem; justify-content: center; }
.ap-main-nav a {
  font-size: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ap-color-text-muted);
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
  transition: all var(--ap-trans);
}
.ap-main-nav a:hover { color: var(--ap-color-copper-light); border-bottom-color: var(--ap-color-copper); }
.ap-header-actions { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }
.ap-theme-toggle {
  width: 36px; height: 36px; border-radius: var(--ap-radius-full);
  display: flex; align-items: center; justify-content: center;
  color: var(--ap-color-text-muted);
  border: 1px solid var(--ap-color-border);
  transition: all var(--ap-trans);
}
.ap-theme-toggle:hover { color: var(--ap-color-copper-light); border-color: var(--ap-color-copper); }
.ap-menu-toggle {
  display: none; flex-direction: column; gap: 5px;
  width: 36px; height: 36px; align-items: center; justify-content: center;
  border: 1px solid var(--ap-color-border); border-radius: var(--ap-radius-sm);
  transition: all var(--ap-trans);
}
.ap-menu-toggle span { display: block; width: 20px; height: 2px; background: var(--ap-color-text-muted); transition: all var(--ap-trans); border-radius: 2px; }
.ap-menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ap-menu-toggle.open span:nth-child(2) { opacity: 0; }
.ap-menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.ap-mobile-nav { display: none; padding: 1rem 1.5rem; border-top: 1px solid var(--ap-color-border); background: var(--ap-color-surface); }
.ap-mobile-nav ul { display: flex; flex-direction: column; gap: 1rem; }
.ap-mobile-nav a { font-size: 1.25rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ap-color-text-muted); }
.ap-mobile-nav a:hover { color: var(--ap-color-copper-light); }

/* ── HERO SLIDER ─────────────────────────────────────────── */
#ap-hero {
  position: relative; width: 100%;
  height: var(--ap-slider-height); min-height: 500px;
  overflow: hidden; background: #0e0c08;
}
.ap-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.9s ease; }
.ap-slide.active { opacity: 1; z-index: 1; }
.ap-slide img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.ap-slide::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(14,12,8,0.2) 0%, rgba(14,12,8,0.05) 40%, rgba(14,12,8,0.5) 100%); }
.ap-slide-overlay { position: absolute; inset: 0; z-index: 2; display: flex; align-items: center; justify-content: center; padding: 2rem; }
.ap-slide-content { text-align: center; }
.ap-slide-headline { font-family: var(--ap-font-display); font-size: clamp(2.5rem, 1rem + 4vw, 5rem); color: #fff; text-shadow: 0 2px 20px rgba(0,0,0,0.6); font-weight: 900; }
.ap-slide-subtext { font-size: clamp(1rem, 0.95rem + 0.25vw, 1.125rem); color: rgba(255,255,255,0.85); margin-top: 0.75rem; letter-spacing: 0.08em; text-shadow: 0 1px 8px rgba(0,0,0,0.6); }
.ap-slider-btn {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 10;
  width: 52px; height: 52px; border-radius: var(--ap-radius-full);
  border: 2px solid rgba(184,115,51,0.5);
  background: rgba(14,12,8,0.6); color: var(--ap-color-copper-light);
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(8px); transition: all var(--ap-trans);
}
.ap-slider-btn:hover { border-color: var(--ap-color-copper); background: rgba(184,115,51,0.15); }
.ap-slider-prev { left: 1.5rem; }
.ap-slider-next { right: 1.5rem; }
.ap-slider-dots { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 10; display: flex; gap: 0.75rem; }
.ap-dot { width: 10px; height: 10px; border-radius: var(--ap-radius-full); border: 2px solid var(--ap-color-copper); background: transparent; transition: all var(--ap-trans); padding: 0; }
.ap-dot.active { background: var(--ap-color-copper); width: 28px; }
.ap-slide-counter { position: absolute; bottom: 2rem; right: 2rem; z-index: 10; font-size: 0.75rem; letter-spacing: 0.15em; color: var(--ap-color-copper-light); font-weight: 700; text-transform: uppercase; background: rgba(14,12,8,0.5); padding: 0.25rem 0.75rem; border-radius: var(--ap-radius-full); backdrop-filter: blur(8px); border: 1px solid rgba(184,115,51,0.3); }

/* ── MUSIC PLAYER ────────────────────────────────────────── */
#ap-music {
  padding: clamp(4rem, 8vw, 7rem) 1.5rem;
  background: var(--ap-color-surface); position: relative;
}
.ap-player-container {
  max-width: 900px; margin: 0 auto 3rem;
  display: grid; grid-template-columns: 260px 1fr; gap: 2.5rem; align-items: center;
  background: var(--ap-color-surface-2); border: 1px solid var(--ap-color-border);
  border-radius: var(--ap-radius-xl); padding: 2rem;
  box-shadow: var(--ap-shadow-lg), inset 0 1px 0 rgba(255,255,255,0.05);
  position: relative; overflow: hidden;
}
.ap-player-container::before, .ap-player-container::after { content: '★'; position: absolute; color: var(--ap-color-copper); opacity: 0.15; font-size: 5rem; line-height: 1; }
.ap-player-container::before { top: -10px; left: -10px; }
.ap-player-container::after  { bottom: -10px; right: -10px; }
.ap-player-art { position: relative; aspect-ratio: 1; display: flex; align-items: center; justify-content: center; }

/* ── Static full cover (shown until the user presses play) ── */
.ap-cover-static {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 92%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: var(--ap-shadow-lg), 0 0 40px rgba(184,115,51,0.25), inset 0 0 0 2px rgba(200,146,42,0.25);
  z-index: 4;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s ease;
}
/* While idle (not yet played): show the flat cover, hide the animated visual */
.ap-visual.is-idle .ap-cover-static { opacity: 1; visibility: visible; }
.ap-visual.is-idle .ap-vinyl-disc,
.ap-visual.is-idle .ap-tonearm,
.ap-visual.is-idle .ap-wave-wrap { opacity: 0; visibility: hidden; }
.ap-visual .ap-vinyl-disc,
.ap-visual .ap-tonearm,
.ap-visual .ap-wave-wrap { transition: opacity 0.45s ease; }

/* Vinyl record: album art becomes the spinning center label */
.ap-vinyl-disc {
  position: relative;
  width: 92%;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, #111 0 30%, #0a0a0a 30% 100%);
  box-shadow: var(--ap-shadow-lg), 0 0 40px rgba(184,115,51,0.25), inset 0 0 0 2px rgba(200,146,42,0.25);
  display: flex; align-items: center; justify-content: center;
  animation: ap-vinyl-rotate 8s linear infinite;
  animation-play-state: paused;
  will-change: transform;
}
.ap-vinyl-disc.playing { animation-play-state: running; }
/* Concentric record grooves */
.ap-vinyl-grooves {
  position: absolute; inset: 4%;
  border-radius: 50%;
  background: repeating-radial-gradient(circle at 50% 50%,
    rgba(255,255,255,0.045) 0 1px,
    rgba(0,0,0,0) 1px 5px);
  pointer-events: none;
}
/* Subtle rotating light streak across the disc */
.ap-vinyl-shine {
  position: absolute; inset: 0;
  border-radius: 50%;
  background: conic-gradient(from 0deg,
    rgba(255,255,255,0) 0deg,
    rgba(255,255,255,0.10) 40deg,
    rgba(255,255,255,0) 90deg,
    rgba(255,255,255,0) 220deg,
    rgba(255,255,255,0.06) 260deg,
    rgba(255,255,255,0) 300deg);
  pointer-events: none;
}
/* Album art label in the middle of the record */
.ap-vinyl-label {
  position: relative;
  width: 42%; height: 42%;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(200,146,42,0.55);
  box-shadow: 0 0 0 4px #0a0a0a, inset 0 0 12px rgba(0,0,0,0.4);
  z-index: 2;
}
/* Center spindle hole */
.ap-vinyl-hole {
  position: absolute; top: 50%; left: 50%;
  width: 4.5%; height: 4.5%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, #2a2000, #0a0a0a);
  box-shadow: inset 0 0 3px rgba(0,0,0,0.8);
  z-index: 3;
}
@keyframes ap-vinyl-rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* ── Tonearm (Visual 1: Vinyl + Tonearm) ───────────────── */
.ap-visual { position: relative; }
.ap-tonearm {
  position: absolute; top: -2%; right: 2%;
  width: 46%; height: 46%;
  z-index: 5; pointer-events: none;
  transform-origin: 82% 18%;
}
.ap-tonearm-base {
  position: absolute; top: 4%; right: 6%;
  width: 20%; height: 20%;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, #4a4a4a, #1c1c1c 70%);
  box-shadow: 0 2px 4px rgba(0,0,0,0.5), inset 0 0 3px rgba(255,255,255,0.15);
}
/* The arm pivots from the base down toward the record */
.ap-tonearm-arm {
  position: absolute; top: 12%; right: 14%;
  width: 8%; height: 74%;
  background: linear-gradient(90deg, #8a8a8a, #cfcfcf 45%, #9a9a9a);
  border-radius: 6px;
  transform-origin: 50% 6%;
  transform: rotate(-32deg);
  transition: transform 0.9s cubic-bezier(0.34, 1.2, 0.64, 1);
  box-shadow: 0 1px 2px rgba(0,0,0,0.4);
}
.ap-tonearm-head {
  position: absolute; bottom: -6%; left: -30%;
  width: 160%; height: 12%;
  background: linear-gradient(180deg, #d8d8d8, #7a7a7a);
  border-radius: 3px;
  transform: rotate(18deg);
  box-shadow: 0 1px 2px rgba(0,0,0,0.5);
}
/* When playing, the arm swings down and rests on the record */
.ap-visual--vinyl_tonearm.playing .ap-tonearm-arm { transform: rotate(8deg); }

/* ── Music waves (Visual 3) ────────────────────────────── */
.ap-visual--waves .ap-wave-wrap {
  position: relative; width: 100%; aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(184,115,51,0.10), rgba(10,10,10,0) 70%);
}
.ap-wave-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border-radius: 50%;
}
.ap-wave-art {
  position: relative; z-index: 2;
  width: 52%; height: 52%;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(200,146,42,0.55);
  box-shadow: var(--ap-shadow-md), 0 0 24px rgba(184,115,51,0.35);
  transition: transform 0.15s ease-out;
}
.ap-visual--waves.playing .ap-wave-art { animation: ap-art-pulse 1.6s ease-in-out infinite; }
@keyframes ap-art-pulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.035); } }

@media (prefers-reduced-motion: reduce) {
  .ap-vinyl-disc { animation: none !important; }
  .ap-visual--waves.playing .ap-wave-art { animation: none !important; }
  .ap-tonearm-arm { transition: none !important; }
}
.ap-controls-wrap { display: flex; flex-direction: column; gap: 1.25rem; }
.ap-np-label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ap-color-copper); }
.ap-np-title { font-family: var(--ap-font-display); font-size: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem); color: var(--ap-color-gold-light); margin: 0.25rem 0 0; }
.ap-np-artist { font-size: 0.875rem; color: var(--ap-color-text-muted); font-weight: 300; letter-spacing: 0.08em; }
.ap-progress-wrap { display: flex; align-items: center; gap: 0.75rem; }
.ap-time { font-size: 0.75rem; color: var(--ap-color-text-muted); font-variant-numeric: tabular-nums; min-width: 2.5em; text-align: center; }
.ap-progress-bar { flex: 1; height: 6px; background: var(--ap-color-surface-3); border-radius: var(--ap-radius-full); cursor: pointer; position: relative; transition: height var(--ap-trans); }
.ap-progress-bar:hover { height: 8px; }
.ap-progress-fill { height: 100%; border-radius: var(--ap-radius-full); background: linear-gradient(to right, var(--ap-color-copper), var(--ap-color-gold)); width: 0%; transition: width 0.1s linear; }
.ap-progress-thumb { position: absolute; top: 50%; right: -6px; transform: translateY(-50%); width: 14px; height: 14px; border-radius: var(--ap-radius-full); background: var(--ap-color-gold-light); opacity: 0; transition: opacity var(--ap-trans); }
.ap-progress-bar:hover .ap-progress-thumb { opacity: 1; }
.ap-player-btns { display: flex; align-items: center; justify-content: center; gap: 1rem; }
.ap-ctrl-btn { display: flex; align-items: center; justify-content: center; color: var(--ap-color-text-muted); border-radius: var(--ap-radius-full); width: 40px; height: 40px; transition: all var(--ap-trans); }
.ap-ctrl-btn:hover { color: var(--ap-color-copper-light); }
.ap-ctrl-btn.active { color: var(--ap-color-copper); }
.ap-play-btn { width: 58px; height: 58px; background: linear-gradient(135deg, var(--ap-color-copper), var(--ap-color-gold)); color: #0e0c08 !important; box-shadow: 0 4px 20px var(--ap-color-primary-glow); }
.ap-play-btn:hover { transform: scale(1.06); }
.ap-volume-row { display: flex; align-items: center; gap: 0.75rem; color: var(--ap-color-text-faint); }
.ap-volume-slider { flex: 1; -webkit-appearance: none; appearance: none; height: 4px; border-radius: var(--ap-radius-full); background: var(--ap-color-surface-3); outline: none; cursor: pointer; }
.ap-volume-slider::-webkit-slider-thumb { -webkit-appearance: none; width: 14px; height: 14px; border-radius: var(--ap-radius-full); background: var(--ap-color-copper-light); cursor: pointer; }
.ap-track-list { max-width: 900px; margin: 0 auto; display: flex; flex-direction: column; gap: 1px; border: 1px solid var(--ap-color-border); border-radius: var(--ap-radius-lg); overflow: hidden; }
.ap-track-item { display: grid; grid-template-columns: 40px 1fr auto; align-items: center; gap: 1rem; padding: 1rem 1.5rem; background: var(--ap-color-surface-2); cursor: pointer; transition: background var(--ap-trans); border-bottom: 1px solid var(--ap-color-divider); }
.ap-track-item:last-child { border-bottom: none; }
.ap-track-item:hover { background: var(--ap-color-surface-3); }
.ap-track-item.active { background: linear-gradient(to right, rgba(184,115,51,0.15), transparent); border-left: 3px solid var(--ap-color-copper); }
.ap-tnum { font-size: 0.875rem; color: var(--ap-color-text-faint); font-variant-numeric: tabular-nums; }
.ap-track-item.active .ap-tnum { display: none; }
.ap-playing-anim { display: none; align-items: flex-end; gap: 2px; height: 16px; }
.ap-track-item.active .ap-playing-anim { display: flex; }
.ap-playing-anim i { display: block; width: 3px; background: var(--ap-color-copper); border-radius: 1px; animation: ap-bar-bounce 0.8s ease infinite alternate; }
.ap-playing-anim i:nth-child(2) { animation-delay: 0.2s; }
.ap-playing-anim i:nth-child(3) { animation-delay: 0.4s; }
@keyframes ap-bar-bounce { from { height: 4px; } to { height: 14px; } }
.ap-paused .ap-playing-anim i { animation-play-state: paused; }
.ap-track-info { display: flex; flex-direction: column; gap: 2px; }
.ap-track-name { font-size: 0.875rem; font-weight: 700; color: var(--ap-color-text); transition: color var(--ap-trans); }
.ap-track-item.active .ap-track-name { color: var(--ap-color-gold-light); }
.ap-track-album { font-size: 0.75rem; color: var(--ap-color-text-faint); letter-spacing: 0.08em; }
.ap-track-dur { font-size: 0.75rem; color: var(--ap-color-text-faint); font-variant-numeric: tabular-nums; }

/* ── STORE ───────────────────────────────────────────────── */
#ap-store { padding: clamp(4rem, 8vw, 7rem) 1.5rem; background: var(--ap-color-bg); position: relative; }
.ap-store-filters { display: flex; justify-content: center; gap: 0.75rem; margin-bottom: 2.5rem; flex-wrap: wrap; }
.ap-filter-btn { padding: 0.5rem 1.5rem; border-radius: var(--ap-radius-full); font-size: 0.875rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ap-color-text-muted); border: 2px solid var(--ap-color-border); transition: all var(--ap-trans); background: transparent; }
.ap-filter-btn:hover { border-color: var(--ap-color-copper); color: var(--ap-color-copper-light); }
.ap-filter-btn.active { border-color: var(--ap-color-copper); background: linear-gradient(135deg, var(--ap-color-copper), var(--ap-color-gold)); color: #0e0c08; }
.ap-product-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.5rem; }
.ap-product-card { background: var(--ap-color-surface); border: 1px solid var(--ap-color-border); border-radius: var(--ap-radius-xl); overflow: hidden; display: flex; flex-direction: column; transition: all var(--ap-trans-slow); position: relative; }
.ap-product-card:hover { transform: translateY(-4px); box-shadow: var(--ap-shadow-lg), 0 0 30px rgba(184,115,51,0.15); border-color: var(--ap-color-copper); }
.ap-product-card.hidden { display: none; }
.ap-product-img-wrap { position: relative; aspect-ratio: 1; overflow: hidden; background: var(--ap-color-surface-2); }
.ap-product-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.ap-product-card:hover .ap-product-img-wrap img { transform: scale(1.05); }
.ap-product-badge { position: absolute; top: 0.75rem; left: 0.75rem; background: linear-gradient(135deg, var(--ap-color-copper), var(--ap-color-gold)); color: #0e0c08; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.25rem 0.75rem; border-radius: var(--ap-radius-full); }
.ap-product-badge.sale { background: linear-gradient(135deg, #8c1a1a, #c03020); color: #fff; }
.ap-product-info { padding: 1.25rem; display: flex; flex-direction: column; gap: 0.75rem; flex: 1; }
.ap-product-name { font-family: var(--ap-font-display); font-size: clamp(1.125rem, 1rem + 0.75vw, 1.5rem); color: var(--ap-color-text); }
.ap-product-desc { font-size: 0.875rem; color: var(--ap-color-text-muted); line-height: 1.5; }
.ap-product-footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; gap: 0.75rem; }
.ap-product-price { font-family: var(--ap-font-display); font-size: clamp(1.125rem, 1rem + 0.75vw, 1.5rem); font-weight: 700; color: var(--ap-color-gold-light); }
.ap-product-price del { font-size: 0.875rem; color: var(--ap-color-text-faint); font-weight: 400; font-family: var(--ap-font-body); }
.ap-size-select { background: var(--ap-color-surface-2); border: 1px solid var(--ap-color-border); border-radius: var(--ap-radius-sm); padding: 0.25rem 0.75rem; font-size: 0.75rem; color: var(--ap-color-text); cursor: pointer; }

/* Cart */
.ap-cart-toast { position: fixed; bottom: 1.5rem; left: 50%; transform: translateX(-50%) translateY(8px); background: var(--ap-color-surface-3); border: 1px solid var(--ap-color-copper); border-radius: var(--ap-radius-lg); padding: 0.75rem 1.5rem; font-size: 0.875rem; font-weight: 700; color: var(--ap-color-copper-light); box-shadow: var(--ap-shadow-lg); z-index: 2000; opacity: 0; transition: opacity var(--ap-trans), transform var(--ap-trans); pointer-events: none; white-space: nowrap; }
.ap-cart-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.ap-cart-widget { position: fixed; bottom: 2rem; right: 2rem; z-index: 500; }
.ap-cart-icon-btn { width: 56px; height: 56px; border-radius: var(--ap-radius-full); background: linear-gradient(135deg, var(--ap-color-copper), var(--ap-color-gold)); color: #0e0c08; display: flex; align-items: center; justify-content: center; box-shadow: var(--ap-shadow-md), 0 0 20px var(--ap-color-primary-glow); border: 2px solid var(--ap-color-copper-dark); transition: all var(--ap-trans); position: relative; }
.ap-cart-icon-btn:hover { transform: scale(1.08); }
.ap-cart-count { position: absolute; top: -4px; right: -4px; width: 20px; height: 20px; border-radius: var(--ap-radius-full); background: #c03020; color: #fff; font-size: 11px; font-weight: 700; display: flex; align-items: center; justify-content: center; border: 2px solid var(--ap-color-bg); }
.ap-cart-dropdown { position: absolute; bottom: 68px; right: 0; width: 300px; background: var(--ap-color-surface); border: 1px solid var(--ap-color-border); border-radius: var(--ap-radius-xl); padding: 1.25rem; box-shadow: var(--ap-shadow-lg); }
.ap-cart-dropdown h4 { font-family: var(--ap-font-display); color: var(--ap-color-gold-light); margin-bottom: 1rem; padding-bottom: 0.75rem; border-bottom: 1px solid var(--ap-color-divider); }
.ap-cart-empty { font-size: 0.875rem; color: var(--ap-color-text-faint); text-align: center; padding: 1rem 0; }
.ap-cart-item-row { display: flex; justify-content: space-between; align-items: center; padding: 0.5rem 0; border-bottom: 1px solid var(--ap-color-divider); font-size: 0.875rem; }
.ap-cart-total-row { display: flex; justify-content: space-between; padding-top: 0.75rem; margin-top: 0.5rem; font-weight: 700; color: var(--ap-color-text); border-top: 2px solid var(--ap-color-border); }

/* WooCommerce overrides */
.woocommerce .ap-product-grid,
.woocommerce ul.products { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.5rem; list-style: none; padding: 0; }
.woocommerce ul.products li.product { background: var(--ap-color-surface); border: 1px solid var(--ap-color-border); border-radius: var(--ap-radius-xl); overflow: hidden; transition: all var(--ap-trans-slow); }
.woocommerce ul.products li.product:hover { transform: translateY(-4px); box-shadow: var(--ap-shadow-lg); border-color: var(--ap-color-copper); }
.woocommerce ul.products li.product a img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.woocommerce ul.products li.product .woocommerce-loop-product__title { font-family: var(--ap-font-display); color: var(--ap-color-text); padding: 1rem 1.25rem 0; }
.woocommerce ul.products li.product .price { color: var(--ap-color-gold-light); padding: 0 1.25rem; font-family: var(--ap-font-display); font-weight: 700; }
.woocommerce ul.products li.product .button { margin: 0.75rem 1.25rem 1.25rem; display: inline-flex; padding: 0.5rem 1rem; background: linear-gradient(135deg, var(--ap-color-copper), var(--ap-color-gold)); color: #0e0c08; border-radius: var(--ap-radius-sm); font-weight: 700; font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; border: none; cursor: pointer; transition: all var(--ap-trans); }
.woocommerce ul.products li.product .button:hover { background: linear-gradient(135deg, var(--ap-color-copper-light), var(--ap-color-gold-light)); }

/* ── BOOKINGS ────────────────────────────────────────────── */
#ap-bookings { padding: clamp(4rem, 8vw, 7rem) 1.5rem; background: var(--ap-color-surface); position: relative; }
.ap-bookings-inner { max-width: 1200px; margin: 0 auto; }
.ap-bookings-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 3rem; align-items: start; }
.ap-bookings-info { display: flex; flex-direction: column; gap: 2rem; }
.ap-booking-intro p { font-size: clamp(1rem, 0.95rem + 0.25vw, 1.125rem); color: var(--ap-color-text-muted); line-height: 1.75; }
.ap-contact-cards { display: flex; flex-direction: column; gap: 1rem; }
.ap-contact-card { display: flex; align-items: center; gap: 1rem; padding: 1rem 1.25rem; background: var(--ap-color-surface-2); border: 1px solid var(--ap-color-border); border-radius: var(--ap-radius-lg); border-left: 3px solid var(--ap-color-copper); transition: all var(--ap-trans); }
.ap-contact-card:hover { border-left-color: var(--ap-color-gold); }
.ap-contact-icon { width: 44px; height: 44px; border-radius: var(--ap-radius-full); background: linear-gradient(135deg, var(--ap-color-copper), var(--ap-color-gold)); display: flex; align-items: center; justify-content: center; color: #0e0c08; flex-shrink: 0; }
.ap-contact-label { display: block; font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--ap-color-text-faint); margin-bottom: 2px; }
.ap-contact-value { font-size: 1rem; font-weight: 700; color: var(--ap-color-copper-light); }
.ap-event-types h4 { font-family: var(--ap-font-display); color: var(--ap-color-gold-light); margin-bottom: 1rem; font-size: clamp(1.125rem, 1rem + 0.75vw, 1.5rem); }
.ap-event-types li { display: flex; align-items: center; gap: 0.75rem; font-size: 0.875rem; color: var(--ap-color-text-muted); padding: 0.25rem 0; }
.ap-star-bullet { color: var(--ap-color-copper); font-size: 0.75em; }
.ap-form-wrap { background: var(--ap-color-surface-2); border: 1px solid var(--ap-color-border); border-radius: var(--ap-radius-xl); padding: 2rem; box-shadow: var(--ap-shadow-md); }
.ap-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-bottom: 1.5rem; }
.ap-form-full { grid-column: 1 / -1; }
.ap-form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.ap-form-group label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ap-color-text-muted); }
.ap-form-group label .required { color: var(--ap-color-copper); }
.ap-form-group input, .ap-form-group select, .ap-form-group textarea { width: 100%; padding: 0.75rem 1rem; background: var(--ap-color-surface); border: 1px solid var(--ap-color-border); border-radius: var(--ap-radius-md); color: var(--ap-color-text); font-size: 0.875rem; transition: all var(--ap-trans); outline: none; }
.ap-form-group input::placeholder, .ap-form-group textarea::placeholder { color: var(--ap-color-text-faint); }
.ap-form-group input:focus, .ap-form-group select:focus, .ap-form-group textarea:focus { border-color: var(--ap-color-copper); box-shadow: 0 0 0 3px var(--ap-color-primary-glow); }
.ap-form-group textarea { resize: vertical; min-height: 100px; }
.ap-form-group select { -webkit-appearance: none; appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23b87333' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 36px; }
.ap-form-tagline { font-size: 0.875rem; color: var(--ap-color-text-faint); font-style: italic; margin-bottom: 1.25rem; }
.ap-form-success { display: none; align-items: center; gap: 0.75rem; margin-top: 1rem; padding: 1rem; background: rgba(90,122,96,0.15); border: 1px solid var(--ap-color-patina); border-radius: var(--ap-radius-md); color: var(--ap-color-patina); }
.ap-form-success.is-visible { display: flex; }

/* ── FOOTER ──────────────────────────────────────────────── */
#ap-footer { background: var(--ap-color-surface-2); border-top: 1px solid var(--ap-color-border); padding: 2.5rem 1.5rem; }
.ap-footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 2rem; }
.ap-footer-brand p { font-size: 0.75rem; color: var(--ap-color-text-faint); margin-top: 0.5rem; }
.ap-footer-nav { display: flex; gap: 1.5rem; justify-content: center; }
.ap-footer-nav a { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ap-color-text-muted); transition: color var(--ap-trans); }
.ap-footer-nav a:hover { color: var(--ap-color-copper-light); }
.ap-footer-social { display: flex; gap: 1rem; justify-content: flex-end; align-items: center; }
.ap-social-link { width: 36px; height: 36px; border-radius: var(--ap-radius-full); border: 1px solid var(--ap-color-border); display: flex; align-items: center; justify-content: center; color: var(--ap-color-text-muted); transition: all var(--ap-trans); }
.ap-social-link:hover { border-color: var(--ap-color-copper); color: var(--ap-color-copper-light); }

/* ── FADE-IN ANIMATION ───────────────────────────────────── */
.ap-fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.ap-fade-in.ap-visible { opacity: 1; transform: translateY(0); }

/* ── LIGHT MODE ──────────────────────────────────────────── */
[data-theme="light"] {
  --ap-color-bg:          #f5f0e8;
  --ap-color-surface:     #faf5ec;
  --ap-color-surface-2:   #f0e8d8;
  --ap-color-surface-3:   #e8ddc8;
  --ap-color-border:      #c8b898;
  --ap-color-divider:     #d8c8a8;
  --ap-color-text:        #2a1e0e;
  --ap-color-text-muted:  #6a5a3a;
  --ap-color-text-faint:  #a89878;
  --ap-color-copper:       #8c4a18;
  --ap-color-copper-light: #b87333;
  --ap-color-copper-dark:  #5a3010;
  --ap-color-gold:         #9a6a10;
  --ap-color-gold-light:   #c8922a;
  --ap-color-primary:       #8c4a18;
  --ap-color-primary-hover: #5a3010;
  --ap-color-primary-glow:  rgba(140,74,24,0.2);
  --ap-header-bg: rgba(245,240,232,0.94);
}

/* ══════════════════════════════════════════════════════════
   SHOW DATES SECTION
══════════════════════════════════════════════════════════ */
#ap-shows { padding: var(--ap-section-pad) 0; background: linear-gradient(180deg, var(--ap-color-bg) 0%, #120f09 100%); }
.ap-shows-list { max-width: 860px; margin: 0 auto; padding: 0 var(--ap-container-pad); display: flex; flex-direction: column; gap: 0; }
.ap-shows-empty { text-align: center; padding: 3rem var(--ap-container-pad); color: var(--ap-color-text-muted); font-style: italic; }

/* Show row */
.ap-show-row {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(184,115,51,0.15);
  transition: background var(--ap-trans);
}
.ap-show-row:first-child { border-top: 1px solid rgba(184,115,51,0.15); }
.ap-show-row:hover { background: rgba(184,115,51,0.06); }
.ap-show-row.ap-show--past { opacity: 0.42; filter: grayscale(0.4); pointer-events: none; }

/* Date badge */
.ap-show-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  padding: 0.5rem 0.25rem;
  background: rgba(184,115,51,0.1);
  border: 1px solid rgba(184,115,51,0.3);
  border-radius: var(--ap-radius-sm);
  text-align: center;
  line-height: 1.15;
}
.ap-show-date__month { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ap-color-copper); }
.ap-show-date__day   { font-size: 1.75rem; font-weight: 900; font-family: var(--ap-font-display); color: var(--ap-color-gold-light); line-height: 1; }
.ap-show-date__year  { font-size: 0.65rem; color: var(--ap-color-text-muted); letter-spacing: 0.08em; }
.ap-show-date__tba   { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; color: var(--ap-color-copper); }

/* Details */
.ap-show-details { display: flex; flex-direction: column; gap: 0.3rem; min-width: 0; }
.ap-show-venue   { font-family: var(--ap-font-display); font-size: 1.05rem; font-weight: 700; color: var(--ap-color-text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ap-show-meta    { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.ap-show-location,
.ap-show-time    { display: flex; align-items: center; gap: 0.3rem; font-size: 0.8rem; color: var(--ap-color-text-muted); }
.ap-show-location svg,
.ap-show-time svg { flex-shrink: 0; color: var(--ap-color-copper); }
.ap-show-note    { font-size: 0.75rem; color: var(--ap-color-copper-light); font-style: italic; }

/* Action column */
.ap-show-action { flex-shrink: 0; }
.ap-btn-show {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1.1rem;
  border-radius: var(--ap-radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: all var(--ap-trans);
  white-space: nowrap;
  border: none;
  cursor: pointer;
}
.ap-btn-show--tickets {
  background: linear-gradient(135deg, var(--ap-color-bronze,#b87333), var(--ap-color-gold,#c8922a));
  color: #fff;
  box-shadow: 0 2px 12px rgba(184,115,51,0.4);
}
.ap-btn-show--tickets:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(184,115,51,0.5); }
.ap-btn-show--free {
  background: transparent;
  color: var(--ap-color-gold-light);
  border: 1px solid rgba(200,146,42,0.45);
}
.ap-btn-show--free:hover { background: rgba(200,146,42,0.1); }

/* Badges (no link) */
.ap-show-badge {
  display: inline-block;
  padding: 0.35rem 0.9rem;
  border-radius: var(--ap-radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.ap-show-badge--tickets { background: rgba(184,115,51,0.15); color: var(--ap-color-copper); border: 1px solid rgba(184,115,51,0.3); }
.ap-show-badge--free    { background: rgba(200,146,42,0.1);  color: var(--ap-color-gold-light); border: 1px solid rgba(200,146,42,0.3); }
.ap-show-badge--sold-out{ background: rgba(80,40,20,0.4);   color: #999; border: 1px solid rgba(80,40,20,0.6); text-decoration: line-through; }
.ap-show-badge--past    { background: rgba(255,255,255,0.05); color: #666; border: 1px solid rgba(255,255,255,0.1); font-size: 0.7rem; }

/* ════════════════════════════════════════════════════════════
   MUSIC VIDEOS — 3×3 GALLERY
════════════════════════════════════════════════════════════ */
#ap-videos {
  padding: var(--ap-section-pad, 5rem) 0;
  background: linear-gradient(180deg, #120f09 0%, var(--ap-color-bg, #0e0c08) 100%);
}
.ap-videos-inner {
  max-width: var(--ap-container-max, 1200px);
  margin: 0 auto;
  padding: 0 var(--ap-container-pad, 2rem);
}

/* Grid */
.ap-vgallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

/* Card */
.ap-vcard {
  display: flex;
  flex-direction: column;
  background: #110e08;
  border: 1px solid rgba(184,115,51,0.25);
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  /* NO opacity:0 / NO fade-in — cards must be visible immediately */
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  box-sizing: border-box;
}
.ap-vcard:hover,
.ap-vcard:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(184,115,51,0.3);
  border-color: rgba(184,115,51,0.7);
  outline: none;
}
.ap-vcard:focus-visible {
  outline: 2px solid #b87333;
  outline-offset: 3px;
}

/* Thumbnail — 16:9 */
.ap-vcard__thumb {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: #0a0806;
  overflow: hidden;
  flex-shrink: 0;
}
.ap-vcard__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease, filter 0.35s ease;
  filter: brightness(0.9) saturate(0.85);
}
.ap-vcard:hover .ap-vcard__img {
  transform: scale(1.06);
  filter: brightness(0.65) saturate(0.75);
}

/* Bronze tint overlay */
.ap-vcard__tint {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 40%,
    rgba(184,115,51,0.1) 70%,
    rgba(14,12,8,0.88) 100%
  );
  pointer-events: none;
}

/* Play icon */
.ap-vcard__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.ap-vcard__play svg {
  width: 64px;
  height: 64px;
  color: #ffffff;
  opacity: 0.85;
  filter: drop-shadow(0 2px 12px rgba(0,0,0,0.85));
  transition: transform 0.22s ease, opacity 0.22s ease, color 0.22s ease;
}
.ap-vcard:hover .ap-vcard__play svg {
  transform: scale(1.18);
  opacity: 1;
  color: #e8b84a;
}

/* YouTube badge — bottom-left */
.ap-vcard__yt-badge {
  position: absolute;
  bottom: 0.5rem;
  left: 0.5rem;
  pointer-events: none;
  line-height: 0;
}
.ap-vcard__yt-badge svg {
  width: 72px;
  height: 16px;
  display: block;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.6));
}

/* Caption */
.ap-vcard__caption {
  padding: 0.65rem 0.875rem;
  background: #110e08;
  border-top: 1px solid rgba(184,115,51,0.12);
  min-height: 2.4rem;
  display: flex;
  align-items: center;
}
.ap-vcard__title {
  display: block;
  font-family: var(--ap-font-display, "Playfair Display", serif);
  font-size: 0.85rem;
  font-weight: 700;
  color: #e8dcc8;
  letter-spacing: 0.02em;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ════════════════════════════════════════════════════════════
   LIGHTBOX
════════════════════════════════════════════════════════════ */
.apvl {
  /* Hidden by default via display:none */
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}
/* JS adds --open to show it */
.apvl.apvl--open {
  display: flex;
  opacity: 1;
  pointer-events: all;
}
/* Smooth entry for panel */
.apvl__panel {
  transform: scale(0.93) translateY(12px);
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
.apvl.apvl--open .apvl__panel {
  transform: scale(1) translateY(0);
}

.apvl__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4,2,0,0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: pointer;
}
.apvl__panel {
  position: relative;
  z-index: 1;
  width: min(940px, 94vw);
  background: #0e0c08;
  border: 1px solid rgba(184,115,51,0.4);
  border-radius: 10px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.95);
  overflow: hidden;
}
.apvl__close {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  z-index: 2;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(14,12,8,0.9);
  border: 1px solid rgba(184,115,51,0.45);
  border-radius: 50%;
  color: #e8dcc8;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s, border-color 0.2s;
}
.apvl__close:hover {
  background: rgba(184,115,51,0.22);
  border-color: #b87333;
  transform: rotate(90deg) scale(1.1);
}
.apvl__close svg { width: 16px; height: 16px; pointer-events: none; }
.apvl__title {
  margin: 0;
  padding: 0.8rem 3.5rem 0.8rem 1.25rem;
  font-family: var(--ap-font-display, "Playfair Display", serif);
  font-size: 1rem;
  font-weight: 700;
  color: #e8b84a;
  letter-spacing: 0.04em;
  border-bottom: 1px solid rgba(184,115,51,0.2);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.apvl__embed {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: #000;
}
.apvl__embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* Responsive */
@media (max-width: 900px) {
  .ap-vgallery { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .ap-vgallery { grid-template-columns: 1fr; gap: 0.875rem; }
  .apvl__panel { width: 98vw; border-radius: 6px; }
}

/* ════════════════════════════════════════════════════════════
   STICKY FLOATING MUSIC PLAYER BAR
════════════════════════════════════════════════════════════ */
/* Outer container — fixed to bottom, full width */
.ap-sticky-player {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9998; /* just below video modal (9999) */
  background: linear-gradient(90deg, #0a0704 0%, #110e08 40%, #0e0b06 100%);
  border-top: 1px solid rgba(184,115,51,0.35);
  box-shadow: 0 -4px 32px rgba(0,0,0,0.65), 0 -1px 0 rgba(184,115,51,0.12);
  transform: translateY(0);
  transition: transform 0.38s cubic-bezier(0.4,0,0.2,1), opacity 0.38s ease;
  will-change: transform;
}

/* Hidden state: bar is completely off-screen (no track loaded / music section visible) */
.ap-sticky-player--hidden {
  transform: translateY(110%);
  pointer-events: none;
}

/* Minimised state: only the 4px progress stripe is visible */
.ap-sticky-player--mini {
  transform: translateY(calc(100% - 4px));
}
.ap-sticky-player--mini .ap-sp-inner {
  opacity: 0;
  pointer-events: none;
}

/* Thin widescreen progress bar — sits at the very top edge of the bar */
.ap-sp-progress {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(184,115,51,0.15);
  cursor: pointer;
}
.ap-sp-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--ap-color-bronze), var(--ap-color-gold-light));
  transition: width 0.25s linear;
  pointer-events: none;
}

/* Inner flex row */
.ap-sp-inner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.55rem 1.25rem 0.55rem 1rem;
  min-height: 64px;
  transition: opacity 0.25s ease;
}

/* Album art thumbnail */
.ap-sp-art {
  position: relative;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(184,115,51,0.3);
  box-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.ap-sp-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Vinyl spin ring overlay on the art thumbnail */
.ap-sp-vinyl {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid transparent;
  pointer-events: none;
  transition: border-color 0.3s;
}
.ap-sticky-player.playing .ap-sp-vinyl {
  border-color: rgba(184,115,51,0.55);
  animation: ap-sp-vinyl-spin 3s linear infinite;
}
@keyframes ap-sp-vinyl-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Track info */
.ap-sp-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0; /* allow text-overflow */
}
.ap-sp-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ap-color-copper);
  line-height: 1;
}
.ap-sp-title {
  font-family: var(--ap-font-display);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ap-color-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
  transition: color 0.2s;
}
.ap-sticky-player.playing .ap-sp-title {
  color: var(--ap-color-gold-light);
}

/* Controls group */
.ap-sp-controls {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex-shrink: 0;
}

/* Shared button style */
.ap-sp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: var(--ap-color-text-muted);
  cursor: pointer;
  padding: 0.4rem;
  border-radius: 50%;
  transition: color 0.18s ease, background 0.18s ease, transform 0.15s ease;
  text-decoration: none; /* for the <a> goto link */
  line-height: 1;
}
.ap-sp-btn:hover {
  color: var(--ap-color-gold-light);
  background: rgba(184,115,51,0.12);
}
.ap-sp-btn:focus-visible {
  outline: 2px solid var(--ap-color-bronze);
  outline-offset: 2px;
}
.ap-sp-btn:active { transform: scale(0.9); }

/* Play button — larger, highlighted */
.ap-sp-play-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ap-color-bronze), var(--ap-color-copper));
  color: #fff;
  border: none;
  box-shadow: 0 2px 10px rgba(184,115,51,0.35);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.ap-sp-play-btn:hover {
  background: linear-gradient(135deg, var(--ap-color-copper), var(--ap-color-gold-light));
  color: #fff;
  box-shadow: 0 4px 16px rgba(184,115,51,0.55);
}

/* Time readout */
.ap-sp-time {
  font-size: 0.72rem;
  font-variant-numeric: tabular-nums;
  color: var(--ap-color-text-muted);
  letter-spacing: 0.04em;
  flex-shrink: 0;
  min-width: 2.4rem;
  text-align: right;
}

/* Go-to-player arrow */
.ap-sp-goto {
  color: var(--ap-color-text-muted);
  flex-shrink: 0;
}
.ap-sp-goto svg { display: block; }

/* Minimise toggle */
.ap-sp-toggle { flex-shrink: 0; }

/* Accessibility: reduce motion */
@media (prefers-reduced-motion: reduce) {
  .ap-sticky-player,
  .ap-sticky-player--hidden,
  .ap-sticky-player--mini,
  .ap-sp-progress-fill,
  .ap-sp-inner { transition: none !important; animation: none !important; }
}

/* ── Responsive adjustments for sticky bar ────────────────────── */
@media (max-width: 600px) {
  .ap-sp-time { display: none; }
  .ap-sp-goto { display: none; }
  .ap-sp-inner { gap: 0.5rem; padding: 0.5rem 0.75rem; }
  .ap-sp-title { font-size: 0.82rem; }
}
@media (max-width: 380px) {
  .ap-sp-art { width: 36px; height: 36px; }
  .ap-sp-label { display: none; }
  .ap-sp-play-btn { width: 34px; height: 34px; }
}

/* ════════════════════════════════════════════════════════════
   PRESS / EPK PAGE
════════════════════════════════════════════════════════════ */

/* Page wrapper — ensure sticky player bar doesn't overlap content */
.ap-press-page {
  min-height: 100vh;
  background: var(--ap-color-bg);
  padding-bottom: 80px; /* room for sticky player bar */
}

/* ── Hero banner ───────────────────────────────────────────── */
.ap-press-hero {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(180deg, rgba(14,12,8,0.45) 0%, rgba(14,12,8,0.9) 100%),
    linear-gradient(135deg, #1a1208 0%, #0e0c08 100%);
  background-size: cover;
  background-position: center;
  overflow: hidden;
  padding: 5rem var(--ap-container-pad) 3.5rem;
}
.ap-press-hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(184,115,51,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.ap-press-hero-content {
  position: relative;
  text-align: center;
  max-width: 680px;
  z-index: 1;
}
.ap-press-hero-title {
  font-family: var(--ap-font-display);
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 900;
  color: var(--ap-color-gold-light);
  letter-spacing: 0.04em;
  text-shadow: 0 2px 20px rgba(0,0,0,0.6), 0 0 2px rgba(184,115,51,0.3);
  margin: 1rem 0 0.5rem;
  line-height: 1.1;
}
.ap-press-hero-sub {
  font-size: 0.9rem;
  color: var(--ap-color-copper);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0;
}

/* ── Inner container ─────────────────────────────────────────── */
.ap-press-inner {
  max-width: var(--ap-container-max);
  margin: 0 auto;
  padding: 3.5rem var(--ap-container-pad) 4rem;
  display: flex;
  flex-direction: column;
  gap: 5rem;
}
.ap-press-section { width: 100%; }
.ap-press-section-title {
  font-family: var(--ap-font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 900;
  color: var(--ap-color-gold-light);
  letter-spacing: 0.03em;
  margin: 0 0 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}
.ap-press-section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 3rem;
  height: 2px;
  background: linear-gradient(90deg, var(--ap-color-bronze), transparent);
}

/* ── Bio + Downloads two-col layout ────────────────────── */
.ap-press-bio-wrap {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3.5rem;
  align-items: start;
}
.ap-press-bio-col {}
.ap-press-bio-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--ap-color-text);
}
.ap-press-bio-text p { margin: 0 0 1em; }
.ap-press-bio-text em { color: var(--ap-color-copper-light); font-style: italic; }
.ap-press-bio-short {
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  border-left: 3px solid var(--ap-color-bronze);
  background: rgba(184,115,51,0.06);
  border-radius: 0 4px 4px 0;
  font-size: 0.88rem;
  color: var(--ap-color-text-muted);
  font-style: italic;
  line-height: 1.6;
}

/* ── Download buttons ───────────────────────────────────────── */
.ap-press-downloads {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2rem;
}
.ap-press-dl-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.25rem;
  border-radius: var(--ap-radius-md);
  font-family: var(--ap-font-display);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  border: none;
  line-height: 1.3;
}
.ap-press-dl-btn:hover { transform: translateY(-2px); }
.ap-press-dl-btn:active { transform: translateY(0); }

.ap-press-dl-btn--primary {
  background: linear-gradient(135deg, var(--ap-color-bronze) 0%, var(--ap-color-copper) 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(184,115,51,0.35);
}
.ap-press-dl-btn--primary:hover {
  background: linear-gradient(135deg, var(--ap-color-copper) 0%, var(--ap-color-gold-light) 100%);
  box-shadow: 0 6px 28px rgba(184,115,51,0.55);
}
.ap-press-dl-btn--secondary {
  background: rgba(184,115,51,0.08);
  color: var(--ap-color-text);
  border: 1px solid rgba(184,115,51,0.3);
}
.ap-press-dl-btn--secondary:hover {
  background: rgba(184,115,51,0.15);
  border-color: rgba(184,115,51,0.6);
  color: var(--ap-color-gold-light);
}
.ap-press-dl-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  opacity: 0.85;
}

/* ── Press contact card ────────────────────────────────────── */
.ap-press-contact-card {
  background: linear-gradient(135deg, rgba(184,115,51,0.08) 0%, rgba(14,12,8,0) 100%);
  border: 1px solid rgba(184,115,51,0.22);
  border-radius: var(--ap-radius-lg);
  padding: 1.25rem 1.5rem;
}
.ap-press-contact-title {
  font-family: var(--ap-font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ap-color-copper);
  margin: 0 0 0.5rem;
}
.ap-press-contact-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ap-color-text);
  margin: 0 0 0.5rem;
}
.ap-press-contact-link {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.85rem;
  color: var(--ap-color-gold-light);
  text-decoration: none;
  margin-top: 0.35rem;
  transition: color 0.18s;
}
.ap-press-contact-link:hover { color: var(--ap-color-copper-light); }
.ap-press-contact-link svg { flex-shrink: 0; color: var(--ap-color-copper); }

/* ── Masonry photo gallery ─────────────────────────────────────── */
.ap-press-gallery-wrap {}
.ap-press-masonry {
  columns: 3;
  column-gap: 1.25rem;
  margin-top: 2.5rem;
}
.ap-press-photo {
  position: relative;
  display: block;
  break-inside: avoid;
  margin-bottom: 1.25rem;
  overflow: hidden;
  border-radius: 5px;
  cursor: pointer;
  border: 1px solid rgba(184,115,51,0.12);
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  outline: none;
}
.ap-press-photo:hover,
.ap-press-photo:focus-visible {
  border-color: rgba(184,115,51,0.5);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.55), 0 0 0 1px rgba(184,115,51,0.2);
}
.ap-press-photo:focus-visible {
  outline: 2px solid var(--ap-color-bronze);
  outline-offset: 2px;
}
.ap-press-photo-img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.4s ease, filter 0.4s ease;
  filter: brightness(0.88) saturate(0.9);
}
.ap-press-photo:hover .ap-press-photo-img {
  transform: scale(1.04);
  filter: brightness(0.7) saturate(0.8);
}

/* Copper/bronze overlay on hover */
.ap-press-photo-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(184,115,51,0.0) 30%,
      rgba(184,115,51,0.22) 65%,
      rgba(14,12,8,0.85) 100%),
    linear-gradient(135deg,
      rgba(184,115,51,0.10) 0%,
      transparent 55%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem;
  pointer-events: none;
}
.ap-press-photo:hover .ap-press-photo-overlay,
.ap-press-photo:focus-visible .ap-press-photo-overlay {
  opacity: 1;
  pointer-events: all;
}
.ap-press-photo-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}
.ap-press-photo-expand {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(14,12,8,0.65);
  border: 1px solid rgba(184,115,51,0.5);
  color: var(--ap-color-gold-light);
  transition: background 0.2s, transform 0.2s;
}
.ap-press-photo:hover .ap-press-photo-expand { transform: scale(1.1); background: rgba(184,115,51,0.25); }
.ap-press-photo-expand svg { width: 16px; height: 16px; }
.ap-press-photo-dl {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(14,12,8,0.65);
  border: 1px solid rgba(184,115,51,0.3);
  color: var(--ap-color-text-muted);
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.ap-press-photo-dl:hover { background: rgba(184,115,51,0.2); color: var(--ap-color-gold-light); transform: scale(1.1); }
.ap-press-photo-dl svg { width: 16px; height: 16px; }
.ap-press-photo-caption {
  font-size: 0.75rem;
  color: var(--ap-color-text-muted);
  text-align: center;
  line-height: 1.4;
  margin: 0;
}

/* ── Press photo lightbox modal ────────────────────────────────── */
.ap-press-modal {
  position: fixed;
  inset: 0;
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.ap-press-modal.ap-press-modal--open {
  opacity: 1;
  pointer-events: all;
}
.ap-press-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5,4,2,0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.ap-press-modal-panel {
  position: relative;
  z-index: 1;
  max-width: min(1000px, 94vw);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  transform: scale(0.96);
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
.ap-press-modal.ap-press-modal--open .ap-press-modal-panel { transform: scale(1); }

.ap-press-modal-close {
  position: fixed;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 2;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(184,115,51,0.4);
  background: rgba(14,12,8,0.85);
  color: var(--ap-color-text);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.2s, transform 0.18s;
  padding: 0;
}
.ap-press-modal-close svg { width: 18px; height: 18px; }
.ap-press-modal-close:hover { background: rgba(184,115,51,0.2); transform: scale(1.1); }
.ap-press-modal-close:focus-visible { outline: 2px solid var(--ap-color-bronze); outline-offset: 2px; }

.ap-press-modal-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(184,115,51,0.35);
  background: rgba(14,12,8,0.8);
  color: var(--ap-color-text);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.2s, transform 0.18s;
  padding: 0;
}
.ap-press-modal-prev { left: 1.25rem; }
.ap-press-modal-next { right: 1.25rem; }
.ap-press-modal-nav:hover {
  background: rgba(184,115,51,0.2);
  transform: translateY(-50%) scale(1.1);
}
.ap-press-modal-nav svg { width: 20px; height: 20px; }
.ap-press-modal-nav:focus-visible { outline: 2px solid var(--ap-color-bronze); outline-offset: 2px; }

.ap-press-modal-fig {
  margin: 0;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.ap-press-modal-img {
  max-width: 100%;
  max-height: 72vh;
  object-fit: contain;
  border-radius: 4px;
  border: 1px solid rgba(184,115,51,0.2);
  box-shadow: 0 24px 80px rgba(0,0,0,0.8);
  display: block;
}
.ap-press-modal-caption {
  margin: 0.5rem 0 0;
  font-size: 0.8rem;
  color: var(--ap-color-text-muted);
  text-align: center;
  font-style: italic;
}
.ap-press-modal-dl {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.25rem;
  font-size: 0.82rem;
}
.ap-press-modal-counter {
  font-size: 0.72rem;
  color: var(--ap-color-text-muted);
  letter-spacing: 0.08em;
  margin: 0;
  font-variant-numeric: tabular-nums;
}

/* ── Press page responsive ──────────────────────────────────────── */
@media (max-width: 900px) {
  .ap-press-bio-wrap { grid-template-columns: 1fr; gap: 2.5rem; }
  .ap-press-masonry { columns: 2; }
}
@media (max-width: 600px) {
  .ap-press-masonry { columns: 2; column-gap: 0.75rem; }
  .ap-press-masonry .ap-press-photo { margin-bottom: 0.75rem; }
  .ap-press-inner { padding: 2rem var(--ap-container-pad) 3rem; gap: 3rem; }
  .ap-press-modal-prev { left: 0.5rem; }
  .ap-press-modal-next { right: 0.5rem; }
}
@media (max-width: 400px) {
  .ap-press-masonry { columns: 1; }
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .ap-main-nav, .ap-header-actions .ap-btn-primary { display: none; }
  .ap-menu-toggle { display: flex; }
  .ap-mobile-nav.open { display: block; }
  .ap-player-container { grid-template-columns: 1fr; }
  .ap-player-art { max-width: 220px; margin: 0 auto; }
  .ap-bookings-layout { grid-template-columns: 1fr; }
  .ap-footer-inner { grid-template-columns: 1fr; text-align: center; }
  .ap-footer-social { justify-content: center; }
  /* Slider — keep prev/next visible, scale down headline */
  .ap-slide-headline { font-size: clamp(1.6rem, 5vw, 3rem); }
  .ap-slide-subtext  { font-size: 0.9rem; }
  .ap-slider-prev { left: 0.75rem; }
  .ap-slider-next { right: 0.75rem; }
  /* Show dates */
  .ap-show-row { grid-template-columns: 68px 1fr auto; gap: 1rem; padding: 1rem; }
  .ap-show-venue { font-size: 0.95rem; }
  /* Videos — stay 2-col at 900px */
  .ap-video-grid { gap: 1.25rem; }
  .ap-video-play-btn svg { width: 52px; height: 52px; }
}
@media (max-width: 680px) {
  /* Slider — restore prev/next (hidden at 600px was too aggressive) */
  #ap-hero { height: clamp(320px, 60vw, 100svh); min-height: 320px; }
  .ap-slider-btn {
    display: flex;
    width: 36px; height: 36px;
    background: rgba(14,12,8,0.7);
    border-color: rgba(184,115,51,0.4);
  }
  .ap-slider-prev { left: 0.5rem; }
  .ap-slider-next { right: 0.5rem; }
  .ap-slide-headline { font-size: clamp(1.3rem, 6vw, 2rem); }
  .ap-slide-subtext  { font-size: 0.82rem; letter-spacing: 0.04em; }
  .ap-dot { width: 8px; height: 8px; }
  .ap-dot.active { width: 20px; }
  .ap-slide-counter { font-size: 0.65rem; bottom: 1.25rem; right: 1rem; }
  /* Videos — single column at 680px */
  .ap-video-grid { grid-template-columns: 1fr; gap: 1rem; }
  .ap-video-modal-panel { width: 96vw; }
  /* Show dates — stack to 2-col then action below */
  .ap-show-row { grid-template-columns: 60px 1fr; row-gap: 0.75rem; }
  .ap-show-action { grid-column: 1 / -1; padding-left: 0.25rem; }
  .ap-show-date__day { font-size: 1.4rem; }
}
@media (max-width: 600px) {
  .ap-form-grid { grid-template-columns: 1fr; }
  .ap-product-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 400px) {
  .ap-product-grid { grid-template-columns: 1fr; }
  #ap-hero { height: clamp(280px, 70vw, 480px); min-height: 280px; }
  .ap-slide-headline { font-size: 1.15rem; }
  .ap-show-row { grid-template-columns: 1fr; text-align: center; }
  .ap-show-date { flex-direction: row; gap: 0.5rem; align-items: baseline; width: 100%; justify-content: center; padding: 0.4rem; }
  .ap-show-date__day { font-size: 1.2rem; }
  .ap-show-action { text-align: center; }
  .ap-show-meta { justify-content: center; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
