/* ============================================================
   Tad's Record — style.css
   Dark theme: #0A0A0A background, #D4A853 gold accent
   ============================================================ */

/* Reggae theme fonts - loaded for all themes so theme switching works without refresh */
@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400;12..96,600;12..96,800&family=Anton&family=Manrope:wght@400;500;600;700&family=DM+Mono:wght@400;500&display=swap');

:root {
  --bg: #0A0A0A;
  --fg: #FAFAFA;
  --surface: #141414;
  --border: #262626;
  --muted: #A3A3A3;
  --accent: #D4A853;
  --accent-hover: #E5BD6C;
  /* For rgba overrides */
  --header-bg: rgba(10,10,10,0.9);
  --overlay-gradient: rgba(10,10,10,0.75);
  --overlay-light: rgba(10,10,10,0.55);
  --overlay-fade: rgba(10,10,10,0.3);
  --shadow-color: rgba(0,0,0,0.4);
}

/* ===== LIGHT THEME ===== */
[data-theme="light"] {
  --bg: #F5F1EB;           /* Warm cream, not stark white */
  --fg: #2D2A26;           /* Warm dark brown, not pure black */
  --surface: #FFFDF9;      /* Slightly warm white */
  --border: #E0D9CF;       /* Warm beige border */
  --muted: #6B6560;        /* Warm gray */
  --accent: #B8860B;       /* Darker gold for better contrast */
  --accent-hover: #9A7209;
  --header-bg: rgba(245,241,235,0.95);
  --overlay-gradient: rgba(0,0,0,0.45);
  --overlay-light: rgba(0,0,0,0.25);
  --overlay-fade: rgba(0,0,0,0.15);
  --shadow-color: rgba(0,0,0,0.1);
}

/* ===== TROPICAL THEME (Jamaican-inspired) ===== */
[data-theme="tropical"] {
  --bg: #1A2F1A;           /* Deep forest green */
  --fg: #F5F0E1;           /* Warm cream text */
  --surface: #243524;      /* Slightly lighter green */
  --border: #3D5C3D;       /* Medium green border */
  --muted: #9CAF88;        /* Sage green muted text */
  --accent: #FFD700;       /* Bright Jamaican gold */
  --accent-hover: #FFEC4D;
  --header-bg: rgba(26,47,26,0.95);
  --overlay-gradient: rgba(26,47,26,0.7);
  --overlay-light: rgba(26,47,26,0.5);
  --overlay-fade: rgba(26,47,26,0.3);
  --shadow-color: rgba(0,0,0,0.3);
}

[data-theme="tropical-light"] {
  --bg: #F5F5E8;              /* Warm cream background */
  --fg: #1A3D1A;              /* Dark forest green text */
  --surface: #FFFEF5;         /* Warm white cards */
  --border: #C5D4A8;          /* Soft sage border */
  --muted: #5A7A4A;           /* Olive green muted */
  --accent: #D4A017;          /* Rich Jamaican gold */
  --accent-hover: #B8860B;
  --header-bg: rgba(245,245,232,0.95);
  --overlay-gradient: rgba(26,61,26,0.7);
  --overlay-light: rgba(26,61,26,0.5);
  --overlay-fade: rgba(26,61,26,0.3);
  --shadow-color: rgba(26,61,26,0.1);
}

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

body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

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

/* ---------- Container ---------- */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

/* ---------- Typography ---------- */
.font-display { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 600; }
.text-xl { font-size: clamp(2.5rem, 5vw, 4rem); line-height: 1.1; letter-spacing: -0.02em; }
.text-lg { font-size: clamp(2rem, 4vw, 3rem); line-height: 1.15; }
.text-md { font-size: clamp(1.5rem, 3vw, 2rem); line-height: 1.2; }
.text-sm-display { font-size: 1.5rem; line-height: 1.3; }
.text-muted { color: var(--muted); }
.text-accent { color: var(--accent); }

/* ---------- Buttons (class-scoped, never global) ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: 8px; font-size: 0.875rem;
  font-weight: 500; font-family: 'Outfit', sans-serif;
  cursor: pointer; transition: all 0.2s; border: none; text-decoration: none;
}
.btn-primary { background: var(--accent); color: var(--bg); }
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--fg); border: 1px solid var(--border); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-ghost { background: transparent; color: var(--muted); }
.btn-ghost:hover { color: var(--fg); }
.btn-lg { padding: 16px 32px; font-size: 1rem; }

/* ---------- Badge ---------- */
.badge {
  display: inline-block; padding: 6px 12px;
  background: rgba(212,168,83,0.1); border: 1px solid rgba(212,168,83,0.3);
  color: var(--accent); font-size: 0.75rem; font-weight: 500;
  border-radius: 100px; text-transform: uppercase; letter-spacing: 0.05em;
}

/* ========== HEADER — CENTERED NAV + CONNECT BUTTON ========== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--header-bg); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s, background 0.3s;
}
.site-header.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  background: var(--bg);
}
[data-theme="light"] .site-header.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between; height: 72px;
}
.logo { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 700; flex-shrink: 0; color: var(--fg); text-decoration: none; white-space: nowrap; }
.logo span { color: var(--accent); }
.logo-img { height: 40px; width: auto; display: block; }

/* Centered nav */
.nav-center {
  display: flex; gap: 28px; position: absolute; left: 50%; transform: translateX(-50%);
}
.nav-center > a, .nav-item > a {
  color: var(--muted); font-size: 0.85rem; font-weight: 500; transition: color 0.2s; white-space: nowrap;
}
.nav-center > a:hover, .nav-item > a:hover { color: var(--fg); }
.nav-center > a.active, .nav-item > a.active { color: var(--fg); }

/* Connect button — right side */
.btn-connect {
  display: inline-flex; align-items: center; padding: 8px 20px;
  /* v0.30: brand-red background with white text. Replaces the previous
     yellow-on-light-text combo that failed contrast on every non-reggae
     theme. #DC2626 matches --reggae-red (defined per-theme) and reads
     cleanly with white text on every theme. The reggae-theme override
     at line ~783 still wins for reggae (yellow + dark text), unchanged.
     The v0.29 scoped color override (.site-header .btn-connect) has
     been removed — it was a dead patch attempt; this background swap
     is the actual fix. */
  background: #DC2626; color: #ffffff; border-radius: 8px;
  font-size: 0.8rem; font-weight: 600; text-decoration: none;
  transition: background 0.2s; flex-shrink: 0;
}
.btn-connect:hover { background: #B91C1C; }

/* Nav dropdown */
.nav-item { position: relative; }
.nav-dropdown {
  display: none; position: absolute; top: 100%; left: -16px; min-width: 200px;
  background: var(--surface); border: 1px solid var(--border); border-radius: 12px;
  padding: 8px 0; box-shadow: 0 8px 32px rgba(0,0,0,0.4); z-index: 50;
}
.nav-item:hover .nav-dropdown { display: block; }
.nav-dropdown a {
  display: block; padding: 10px 20px; font-size: 0.875rem;
  color: var(--muted); transition: all 0.15s;
}
.nav-dropdown a:hover { color: var(--fg); background: rgba(212,168,83,0.05); }

/* Mobile menu button */
.menu-btn {
  display: none; background: none; border: none;
  /* v0.33: hardcoded near-white because the header background is dark
     across every theme (--header-bg is some rgba(10,10,10) variant), but
     --fg follows the body text color — which is also dark in light themes,
     making the icon invisible against the header. No --header-fg token
     exists; safe hardcode. */
  color: #FAFAFA; cursor: pointer; padding: 8px;
}
/* v0.33: when scrolled, .site-header switches background from the dark
   --header-bg to --bg (yellow on reggae, cream on light themes). White
   hamburger would be unreadable there, so restore the body --fg color. */
.site-header.scrolled .menu-btn { color: var(--fg); }
@media (max-width: 960px) {
  .nav-center { display: none; }
  .btn-connect { display: none; }
  .menu-btn { display: block; }
}

/* Mobile menu panel */
.mobile-menu {
  display: none; position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
  background: var(--bg); z-index: 99; padding: 24px; overflow-y: auto;
}
.mobile-menu.open { display: block; }
.mobile-menu > a, .mobile-acc-toggle {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 0; font-size: 1.125rem;
  border-bottom: 1px solid var(--border); color: var(--fg); text-decoration: none;
}
.mobile-menu > a:hover, .mobile-acc-toggle:hover { color: var(--accent); }
.mobile-connect {
  background: var(--accent); color: var(--bg) !important; text-align: center;
  border-radius: 8px; margin-top: 16px; justify-content: center; font-weight: 600;
}

/* Mobile accordion */
.mobile-accordion { border-bottom: 1px solid var(--border); }
.mobile-acc-toggle svg { transition: transform 0.2s; }
.mobile-accordion.open .mobile-acc-toggle svg { transform: rotate(180deg); }
.mobile-acc-panel { display: none; padding-bottom: 8px; }
.mobile-accordion.open .mobile-acc-panel { display: block; }
.mobile-acc-panel .sub-link {
  display: block; padding: 10px 0 10px 24px; font-size: 0.875rem;
  color: var(--muted); border-bottom: none;
}
.mobile-acc-panel .sub-link:hover { color: var(--accent); }

/* ========== HERO CAROUSEL ========== */
.hero-carousel {
  position: relative; min-height: 85vh; overflow: hidden; padding-top: 72px;
}
.hero-slide {
  position: absolute; inset: 0; opacity: 0; transition: opacity 0.8s ease-in-out;
  display: flex; align-items: center;
}
.hero-slide.active { opacity: 1; z-index: 2; }

/* Ken Burns zoom */
.hero-slide-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-slide-bg img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1); transition: none;
}
.hero-slide.active .hero-slide-bg img {
  animation: kenBurns 8s ease-out forwards;
}
@keyframes kenBurns { from { transform: scale(1); } to { transform: scale(1.08); } }

/* Lighter overlay (client requested: less dark, show more imagery) */
.hero-slide-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(10,10,10,0.75) 0%, rgba(10,10,10,0.55) 40%, rgba(10,10,10,0.3) 100%);
}
.hero-slide-bg::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.7) 0%, transparent 40%); z-index: 1;
}

.hero-slide-content {
  position: relative; z-index: 10; max-width: 640px; padding: 80px 24px;
}
.hero-slide-content h1 { margin-bottom: 8px; }
.hero-slide-content .artist-name { font-size: 1.125rem; color: rgba(255,255,255,0.7); margin-bottom: 8px; }
.hero-slide-content .desc { color: rgba(250,250,250,0.75); margin-bottom: 32px; max-width: 480px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }

/* Carousel dots */
.carousel-dots {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 20; display: flex; gap: 12px;
}
.carousel-dot {
  width: 10px; height: 10px; border-radius: 50%; border: none; cursor: pointer;
  background: rgba(255,255,255,0.3); transition: all 0.3s;
}
.carousel-dot.active { background: var(--accent); transform: scale(1.2); }

/* Carousel arrows */
.carousel-arrow {
  position: absolute; top: 50%; z-index: 20; background: rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.15); border-radius: 50%;
  width: 48px; height: 48px; display: flex; align-items: center; justify-content: center;
  color: white; cursor: pointer; transition: all 0.2s;
}
.carousel-arrow:hover { background: rgba(212,168,83,0.3); border-color: var(--accent); }
.carousel-arrow.prev { left: 24px; transform: translateY(-50%); }
.carousel-arrow.next { right: 24px; transform: translateY(-50%); }
@media (max-width: 768px) { .carousel-arrow { display: none; } }

/* Legacy single hero fallback */
.hero {
  position: relative; min-height: 85vh; display: flex;
  align-items: center; padding-top: 72px; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, var(--bg) 0%, rgba(10,10,10,0.95) 40%, rgba(10,10,10,0.7) 100%);
}
.hero-bg::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, var(--bg) 0%, transparent 50%); z-index: 1;
}
.hero-content { position: relative; z-index: 10; max-width: 640px; padding: 80px 0; }
.hero-content h1 { margin-bottom: 16px; }
.hero-content .artist-name { font-size: 1.125rem; color: var(--muted); margin-bottom: 8px; }
.hero-content .desc { color: rgba(250,250,250,0.8); margin-bottom: 32px; max-width: 480px; }

/* ---------- Sections ---------- */
.section { padding: 80px 0; }
.section-surface { background: var(--surface); }
.page-header { padding-top: 120px; padding-bottom: 48px; }
@media (max-width: 768px) { .page-header { padding-top: 100px; padding-bottom: 32px; } }

/* v0.31: Universal hero banner. Applied by JS on any page-header whose
   CMS header image is set (catalogue/about/contact/press/merch/studio).
   Replaces the previous per-page-themed CSS background hardcoded only on
   reggae-theme catalogue. Mirrors the proven sizing + overlay from the
   former reggae rule so the result looks identical to production. Text
   stays legible via the ::after gradient + z-index lift on .container. */
.page-header.has-hero-image {
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  padding: 160px 32px 80px;
  min-height: 480px;
  position: relative;
  overflow: hidden;
  color: #fff;
}
.page-header.has-hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.55) 45%, rgba(0,0,0,0.2) 100%),
    radial-gradient(circle at center, rgba(255,213,0,0.04) 1px, transparent 1.5px);
  background-size: 100% 100%, 16px 16px;
  pointer-events: none;
  z-index: 0;
}
.page-header.has-hero-image > .container,
.page-header.has-hero-image .container {
  position: relative;
  z-index: 1;
}
.page-header.has-hero-image h1,
.page-header.has-hero-image p {
  color: #fff;
}
@media (max-width: 768px) {
  .page-header.has-hero-image { padding: 130px 20px 56px; min-height: 360px; }
}

.section-head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 40px; }
.section-head p { color: var(--muted); }
.view-all {
  display: flex; align-items: center; gap: 8px;
  color: var(--accent); font-size: 0.875rem; font-weight: 500; transition: gap 0.2s;
}
.view-all:hover { gap: 12px; }

/* ---------- Album Grid ---------- */
.album-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 24px;
}
.album-card {
  display: block; border-radius: 16px; overflow: hidden;
  background: var(--surface); transition: transform 0.3s;
}
.album-card:hover { transform: translateY(-4px); }
.album-cover { position: relative; aspect-ratio: 1; overflow: hidden; }
.album-cover img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.album-card:hover .album-cover img { transform: scale(1.05); }

/* v0.28: SINGLE badge overlay. Top-right corner of an .album-cover, pinned
   with absolute positioning. Uses the per-theme --accent gold so it picks
   up the active theme's brand color automatically. Hardcoded dark text
   ensures legibility against every gold variant in this stylesheet (the
   default #D4A853, light-mode #B8860B, reggae bright-gold #FFD700, tropical
   #D4A017). z-index 2 sits above the cover image but below the existing
   .album-overlay hover layer (z-index defaults higher when opacity > 0). */
.single-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 2;
  padding: 4px 8px;
  background: var(--accent);
  color: #0a0a0a;
  font-family: 'JetBrains Mono', 'DM Mono', monospace;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 4px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
  pointer-events: none;
}

/* v0.29: Coming-Soon overlay for merch items without a buy URL. Uses
   the .merch-img parent (which has position: relative via .merch-card
   styles below) and the SAME geometry as .single-badge but in a distinct
   red so the two patterns never look alike if they coexist. White text
   on red for legibility on every theme. Renders bottom-right to stay
   clear of the top-right slot .single-badge owns. */
.coming-soon-badge {
  position: absolute;
  bottom: 8px;
  right: 8px;
  z-index: 2;
  padding: 4px 8px;
  background: #b91c1c;
  color: #ffffff;
  font-family: 'JetBrains Mono', 'DM Mono', monospace;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 4px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
  pointer-events: none;
}
/* The merch image wrapper needs positioning context for the badge to anchor.
   .album-cover already has position:relative; .merch-img needs the same. */
.merch-img { position: relative; }
/* Coming-soon cards render as <div>, not <a>. Restore the visual layout
   the .merch-card <a> rule provides so the non-clickable card still looks
   like a card. Pointer dimmed slightly so the absence of clickability is
   discoverable on hover. */
.merch-card--soon { cursor: default; opacity: 0.85; }
.merch-card--soon:hover { opacity: 1; }
.album-info { padding: 16px; }
.album-info h3 {
  font-family: 'Cormorant Garamond', serif; font-size: 1.125rem; font-weight: 600;
  margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.album-info .artist { font-size: 0.875rem; color: var(--muted); }
.album-info .meta { display: flex; justify-content: space-between; margin-top: 8px; font-size: 0.75rem; color: var(--muted); }

/* Play overlay — scoped to .album-overlay only */
.album-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.6);
  display: flex; align-items: center; justify-content: center; gap: 12px;
  opacity: 0; transition: opacity 0.3s;
}
.album-card:hover .album-overlay { opacity: 1; }
.album-overlay .play-btn {
  width: 48px; height: 48px; border-radius: 50%; border: none;
  background: var(--accent); color: var(--bg); cursor: pointer;
  display: flex; align-items: center; justify-content: center; transition: transform 0.2s;
}
.album-overlay .play-btn:hover { transform: scale(1.1); }

/* --- Catalogue outbound card: "Listen / Buy" label --- */
.album-outbound-label {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  padding: 8px 12px; background: rgba(212,168,83,0.1); border-top: 1px solid rgba(212,168,83,0.15);
  color: var(--accent); font-size: 0.75rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.04em;
}
.album-outbound-label svg { flex-shrink: 0; }

/* --- Load More button --- */
.load-more-wrap { text-align: center; margin-top: 40px; }
.load-more-wrap .btn { min-width: 200px; }

/* --- Catalogue special views message --- */
.view-message {
  text-align: center; padding: 64px 24px; color: var(--muted);
}
.view-message h2 { color: var(--fg); margin-bottom: 12px; }

/* ---------- Studio section (homepage) ---------- */
.studio-row { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
@media (max-width: 1024px) { .studio-row { grid-template-columns: 1fr; } }
.studio-row .studio-img { position: relative; }
.studio-row .studio-img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 16px; }
.studio-stat-badge { position: absolute; bottom: -24px; left: -24px; background: var(--bg); border: 1px solid var(--border); border-radius: 12px; padding: 16px; box-shadow: 0 4px 24px rgba(0,0,0,0.3); }
.studio-stat-badge .num { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: var(--accent); }
.studio-stat-badge .lbl { font-size: 0.75rem; color: var(--muted); }

/* ---------- CTA ---------- */
.cta-block { text-align: center; max-width: 640px; margin: 0 auto; }
.cta-icon { width: 64px; height: 64px; color: var(--accent); margin: 0 auto 24px; }
.cta-block h2 { margin-bottom: 24px; }
.cta-block p { color: var(--muted); font-size: 1.125rem; margin-bottom: 32px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--surface); padding: 64px 0 24px; margin-bottom: 80px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-brand p { color: var(--muted); font-size: 0.875rem; margin-top: 16px; max-width: 280px; }
.footer-col h4 { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { font-size: 0.875rem; color: var(--fg); transition: color 0.2s; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; padding-top: 24px; border-top: 1px solid var(--border); font-size: 0.75rem; color: var(--muted); }
/* v0.33: "Powered by BaloSync" attribution. Sits between copyright (left) and
   social icons (right) via the existing space-between distribution. On mobile,
   .footer-bottom's flex-wrap lets the three items stack gracefully instead of
   crowding into one cramped row. */
.powered-by {
  font-size: 13px;
  color: var(--muted);
  opacity: 0.75;
}
.powered-by a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px dotted currentColor;
}
.powered-by a:hover {
  opacity: 1;
  color: var(--fg);
}
.social-links { display: flex; gap: 16px; }
.social-links a { color: var(--muted); transition: color 0.2s; }
.social-links a:hover { color: var(--accent); }

/* ---------- Mini Player ---------- */
.mini-player {
  display: none; position: fixed; bottom: 0; left: 0; right: 0;
  background: rgba(20,20,20,0.95); backdrop-filter: blur(12px);
  border-top: 1px solid var(--border); padding: 12px 0; z-index: 100;
}
.mini-player.visible { display: block; }
.player-inner { display: flex; align-items: center; gap: 16px; }
.player-track { display: flex; align-items: center; gap: 12px; flex: 1; min-width: 0; }
.player-track img { width: 48px; height: 48px; border-radius: 8px; object-fit: cover; }
.player-track-info { min-width: 0; }
.player-track-info h4 { font-size: 0.875rem; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.player-track-info p { font-size: 0.75rem; color: var(--muted); }
.player-controls { display: flex; align-items: center; gap: 16px; }
.player-controls .play-btn {
  width: 40px; height: 40px; background: var(--accent); color: var(--bg);
  border-radius: 50%; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center; transition: background 0.2s;
}
.player-controls .play-btn:hover { background: var(--accent-hover); }
.player-controls .close-btn {
  background: none; border: none; color: var(--muted); cursor: pointer; padding: 8px;
  display: flex; align-items: center; justify-content: center;
}
.player-progress { flex: 2; display: flex; align-items: center; gap: 12px; }
.player-progress .time { font-size: 0.75rem; font-family: 'JetBrains Mono', monospace; color: var(--muted); min-width: 85px; }
.progress-bar { flex: 1; height: 4px; background: var(--border); border-radius: 2px; overflow: hidden; cursor: pointer; }
.progress-fill { height: 100%; width: 0; background: var(--accent); border-radius: 2px; transition: width 0.1s linear; }
@media (max-width: 768px) { .player-progress { display: none; } }

/* ---------- Search + Filter (catalogue) ---------- */
.filter-bar { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 24px; align-items: center; }
.search-wrap { position: relative; flex: 1; min-width: 240px; max-width: 400px; }
.search-wrap svg { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); color: var(--muted); pointer-events: none; }
.search-wrap input {
  width: 100%; padding: 12px 16px 12px 44px;
  background: var(--surface); border: 1px solid var(--border); border-radius: 8px;
  color: var(--fg); font-size: 0.875rem; font-family: 'Outfit', sans-serif; outline: none; transition: border-color 0.2s;
}
.search-wrap input:focus { border-color: var(--accent); }
.search-wrap input::placeholder { color: var(--muted); }
.filter-select {
  padding: 12px 16px; min-width: 140px;
  background: var(--surface); border: 1px solid var(--border); border-radius: 8px;
  color: var(--fg); font-size: 0.875rem; font-family: 'Outfit', sans-serif; outline: none; cursor: pointer;
}
.filter-select:focus { border-color: var(--accent); }
.results-count { font-size: 0.875rem; color: var(--muted); margin-bottom: 24px; }
.no-results { text-align: center; padding: 80px 0; }
.no-results p { color: var(--muted); font-size: 1.125rem; margin-bottom: 16px; }
.no-results .clear-btn { color: var(--accent); background: none; border: none; cursor: pointer; font-size: 0.875rem; font-family: 'Outfit', sans-serif; }

/* ---------- Album Detail ---------- */
.album-hero { display: grid; grid-template-columns: 320px 1fr; gap: 48px; align-items: start; }
@media (max-width: 768px) { .album-hero { grid-template-columns: 1fr; gap: 24px; } }
.album-art { aspect-ratio: 1; border-radius: 16px; overflow: hidden; }
.album-art img { width: 100%; height: 100%; object-fit: cover; }
.album-meta { display: flex; flex-wrap: wrap; gap: 16px; margin: 16px 0 24px; font-size: 0.875rem; color: var(--muted); }
.album-meta span { display: flex; align-items: center; gap: 6px; }
.back-link { color: var(--muted); font-size: 0.875rem; display: inline-flex; align-items: center; gap: 6px; margin-bottom: 16px; }
.back-link:hover { color: var(--accent); }

/* Track list */
.track-list { margin-top: 32px; }
.track-row {
  display: grid; grid-template-columns: 40px 1fr 80px 48px; gap: 12px;
  align-items: center; padding: 12px 0; border-bottom: 1px solid var(--border);
  font-size: 0.875rem; cursor: pointer; transition: background 0.15s;
}
.track-row:hover { background: rgba(212,168,83,0.05); }
.track-row.playing { color: var(--accent); }
.track-num { color: var(--muted); text-align: center; font-variant-numeric: tabular-nums; }
.track-title { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.track-duration { color: var(--muted); text-align: right; font-variant-numeric: tabular-nums; font-family: 'JetBrains Mono', monospace; font-size: 0.8rem; }
.track-play {
  width: 32px; height: 32px; border-radius: 50%; border: none;
  background: transparent; color: var(--muted); cursor: pointer;
  display: flex; align-items: center; justify-content: center; transition: all 0.2s;
}
.track-play:hover { background: var(--accent); color: var(--bg); }
.related-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 20px; }

/* ---------- Forms ---------- */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.875rem; font-weight: 500; margin-bottom: 8px; }
.form-input, .form-textarea {
  width: 100%; padding: 12px 16px;
  background: var(--surface); border: 1px solid var(--border); border-radius: 8px;
  color: var(--fg); font-family: 'Outfit', sans-serif; font-size: 0.875rem; outline: none; transition: border-color 0.2s;
}
.form-input:focus, .form-textarea:focus { border-color: var(--accent); }
.form-input::placeholder, .form-textarea::placeholder { color: var(--muted); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }
.form-select {
  width: 100%; padding: 12px 16px;
  background: var(--surface); border: 1px solid var(--border); border-radius: 8px;
  color: var(--fg); font-family: 'Outfit', sans-serif; font-size: 0.875rem; outline: none;
}

/* Filter pills */
.pill {
  padding: 8px 20px; border-radius: 100px; font-size: 0.875rem; font-weight: 500;
  cursor: pointer; transition: all 0.2s; border: 1px solid var(--border);
  background: var(--surface); color: var(--muted); font-family: 'Outfit', sans-serif;
}
.pill:hover { color: var(--fg); border-color: var(--accent); }
.pill.active { background: var(--accent); color: var(--bg); border-color: var(--accent); }

/* ---------- Contact cards ---------- */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.contact-card { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 24px; display: flex; align-items: flex-start; gap: 16px; }
.contact-card .icon { color: var(--accent); flex-shrink: 0; }
.contact-card .lbl { font-size: 0.75rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 4px; }
.contact-card .val { font-size: 0.875rem; white-space: pre-line; }

/* ---------- Merch ---------- */
.merch-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 24px; }
.merch-card { background: var(--surface); border-radius: 16px; overflow: hidden; transition: transform 0.3s; display: block; }
.merch-card:hover { transform: translateY(-4px); }
.merch-img { aspect-ratio: 1; overflow: hidden; }
.merch-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.merch-card:hover .merch-img img { transform: scale(1.05); }
.merch-body { padding: 16px; }
.merch-body h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.125rem; margin-bottom: 4px; }
.merch-body .price { color: var(--accent); font-weight: 600; }
.merch-body .cat { font-size: 0.75rem; color: var(--muted); }

/* ---------- Service cards ---------- */
.service-card { background: var(--bg); border: 1px solid var(--border); border-radius: 16px; padding: 24px; transition: border-color 0.2s; }
.service-card:hover { border-color: rgba(212,168,83,0.5); }
.service-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; margin-bottom: 8px; }
.service-card .price { color: var(--accent); font-size: 1rem; margin-bottom: 16px; }
.service-card ul { list-style: none; }
.service-card li { font-size: 0.875rem; color: var(--muted); padding: 4px 0 4px 20px; position: relative; }
.service-card li::before { content: '✓'; position: absolute; left: 0; color: var(--accent); }

/* ---------- Testimonials ---------- */
.testimonial { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 24px; }
.testimonial blockquote { color: var(--muted); margin-bottom: 20px; font-style: italic; line-height: 1.7; }
.testimonial .author { font-weight: 500; }
.testimonial .role { font-size: 0.75rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.05em; }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 768px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
.gallery-item { position: relative; border-radius: 16px; overflow: hidden; aspect-ratio: 1; }
.gallery-item.featured { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item .caption { position: absolute; bottom: 0; left: 0; right: 0; padding: 16px; background: linear-gradient(transparent, rgba(0,0,0,0.7)); font-size: 0.875rem; opacity: 0; transition: opacity 0.3s; }
.gallery-item:hover .caption { opacity: 1; }

/* ---------- Stats ---------- */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
@media (max-width: 768px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
.stat-item .stat-icon { color: var(--accent); margin-bottom: 12px; }
.stat-item .stat-val { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.5rem, 3vw, 2rem); color: var(--accent); margin-bottom: 4px; }
.stat-item .stat-lbl { font-size: 0.875rem; color: var(--muted); }

/* ---------- Timeline ---------- */
.timeline { position: relative; max-width: 672px; margin: 0 auto; padding-left: 48px; }
.timeline::before { content: ''; position: absolute; left: 16px; top: 0; bottom: 0; width: 1px; background: var(--border); }
.tl-item { position: relative; margin-bottom: 32px; }
.tl-dot { position: absolute; left: -38px; top: 16px; width: 12px; height: 12px; background: var(--accent); border-radius: 50%; border: 4px solid var(--bg); }
.tl-card { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 16px; }
.tl-card .year { font-family: 'Cormorant Garamond', serif; color: var(--accent); font-size: 1.125rem; margin-bottom: 4px; }
.tl-card .event { font-size: 0.875rem; color: var(--muted); }

/* ---------- Press ---------- */
.press-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; }
.press-card { background: var(--surface); border-radius: 16px; overflow: hidden; border: 1px solid var(--border); transition: transform 0.3s; display: block; }
.press-card:hover { transform: translateY(-4px); }
.press-card .press-img { aspect-ratio: 16/9; overflow: hidden; }
.press-card .press-img img { width: 100%; height: 100%; object-fit: cover; }
.press-card .press-body { padding: 20px; }
.press-card .press-date { font-size: 0.75rem; color: var(--accent); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.05em; }
.press-card .press-body h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; margin-bottom: 8px; transition: color 0.2s; }
.press-card:hover .press-body h3 { color: var(--accent); }
.press-card .press-body p { font-size: 0.875rem; color: var(--muted); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* ---------- Image placeholder fallback ---------- */
.img-placeholder {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #1a1a1a, #2a2a2a); color: var(--muted);
  font-size: 0.75rem; text-align: center; padding: 16px;
}

/* ---------- Animations ---------- */
@keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.fade-in { animation: fadeIn 0.6s ease-out forwards; }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.flex-center { display: flex; justify-content: center; }
.flex-wrap { display: flex; flex-wrap: wrap; }

/* ============================================================
   LIGHT THEME OVERRIDES
   Add data-theme="light" to <html> to activate
   ============================================================ */

/* Hero - use subtle dark gradient, NOT white glow */
[data-theme="light"] .hero-slide-bg::after {
  background: linear-gradient(to right, rgba(45,42,38,0.6) 0%, rgba(45,42,38,0.35) 40%, rgba(45,42,38,0.15) 100%);
}
[data-theme="light"] .hero-slide-bg::before {
  background: linear-gradient(to top, rgba(45,42,38,0.5) 0%, transparent 40%);
}
[data-theme="light"] .hero-slide-content .artist-name { color: rgba(255,255,255,0.85); }
[data-theme="light"] .hero-slide-content .desc { color: rgba(255,255,255,0.8); }
[data-theme="light"] .hero-slide-content h1 { color: #fff; }

/* Keep hero text white since we're using dark overlay */
[data-theme="light"] .carousel-dot { background: rgba(255,255,255,0.4); }
[data-theme="light"] .carousel-dot.active { background: var(--accent); }
[data-theme="light"] .carousel-arrow { background: rgba(0,0,0,0.4); color: #fff; border-color: rgba(255,255,255,0.2); }

/* Other components */
[data-theme="light"] .nav-dropdown { box-shadow: 0 8px 32px rgba(0,0,0,0.12); }
[data-theme="light"] .mobile-menu { background: var(--bg); }
[data-theme="light"] .album-card::after { background: linear-gradient(to top, rgba(45,42,38,0.9), transparent); }
[data-theme="light"] .studio-stat-badge { box-shadow: 0 4px 24px rgba(0,0,0,0.08); }
[data-theme="light"] .gallery-item .caption { background: linear-gradient(transparent, rgba(0,0,0,0.6)); color: #fff; }
[data-theme="light"] .img-placeholder { background: linear-gradient(135deg, #E8E2D9, #F0EBE3); }
[data-theme="light"] .player-bar { background: var(--surface); border-top: 1px solid var(--border); }
[data-theme="light"] .badge { background: rgba(184,134,11,0.12); border-color: rgba(184,134,11,0.25); }
[data-theme="light"] .site-header { border-bottom-color: var(--border); }
[data-theme="light"] .section-surface { background: var(--surface); }

/* Tropical Light theme specific overrides */
[data-theme="tropical-light"] .site-header.scrolled { background: rgba(245,245,232,0.98); box-shadow: 0 2px 20px rgba(26,61,26,0.08); }
[data-theme="tropical-light"] .hero-slide-bg::after { background: linear-gradient(to right, rgba(26,61,26,0.9) 0%, rgba(26,61,26,0.7) 50%, rgba(26,61,26,0.4) 100%); }
[data-theme="tropical-light"] .hero-slide-bg::before { background: linear-gradient(transparent, rgba(26,61,26,0.3)); }
[data-theme="tropical-light"] .hero-slide-content .artist-name { color: rgba(255,255,255,0.85); }
[data-theme="tropical-light"] .hero-slide-content .desc { color: rgba(255,255,255,0.8); }
[data-theme="tropical-light"] .hero-slide-content h1 { color: #fff; }
[data-theme="tropical-light"] .carousel-dot { background: rgba(255,255,255,0.4); }
[data-theme="tropical-light"] .carousel-dot.active { background: var(--accent); }
[data-theme="tropical-light"] .carousel-arrow { background: rgba(0,0,0,0.4); color: #fff; border-color: rgba(255,255,255,0.2); }
[data-theme="tropical-light"] .nav-dropdown { box-shadow: 0 8px 32px rgba(26,61,26,0.12); }
[data-theme="tropical-light"] .mobile-menu { background: var(--bg); }
[data-theme="tropical-light"] .album-card::after { background: linear-gradient(to top, rgba(26,61,26,0.9), transparent); }
[data-theme="tropical-light"] .studio-stat-badge { box-shadow: 0 4px 24px rgba(26,61,26,0.1); }
[data-theme="tropical-light"] .gallery-item .caption { background: linear-gradient(transparent, rgba(26,61,26,0.7)); color: #fff; }
[data-theme="tropical-light"] .img-placeholder { background: linear-gradient(135deg, #C5D4A8, #A8C090); }
[data-theme="tropical-light"] .player-bar { background: var(--surface); border-top: 1px solid var(--border); }
[data-theme="tropical-light"] .badge { background: rgba(212,160,23,0.12); border-color: rgba(212,160,23,0.3); }
[data-theme="tropical-light"] .site-header { border-bottom-color: var(--border); }
[data-theme="tropical-light"] .section-surface { background: var(--surface); }
[data-theme="tropical-light"] .site-footer { background: #1A3D1A; color: #F5F5E8; }
[data-theme="tropical-light"] .site-footer .logo { color: #F5F5E8; }
[data-theme="tropical-light"] .site-footer .logo span { color: #D4A017; }
[data-theme="tropical-light"] .footer-brand p { color: rgba(245,245,232,0.7); }
[data-theme="tropical-light"] .footer-col h4 { color: rgba(245,245,232,0.6); }
[data-theme="tropical-light"] .footer-col a { color: #F5F5E8; }
[data-theme="tropical-light"] .footer-col a:hover { color: #D4A017; }
[data-theme="tropical-light"] .footer-bottom { color: rgba(245,245,232,0.5); border-color: rgba(245,245,232,0.15); }
[data-theme="tropical-light"] .social-links a { color: rgba(245,245,232,0.6); }
[data-theme="tropical-light"] .social-links a:hover { color: #D4A017; }

/* ============================================================
   TROPICAL THEME OVERRIDES (Jamaican-inspired)
   Green & Gold - Irie vibes
   ============================================================ */
[data-theme="tropical"] .hero-slide-bg::after {
  background: linear-gradient(to right, rgba(26,47,26,0.75) 0%, rgba(26,47,26,0.5) 40%, rgba(26,47,26,0.25) 100%);
}
[data-theme="tropical"] .hero-slide-bg::before {
  background: linear-gradient(to top, rgba(26,47,26,0.7) 0%, transparent 40%);
}
[data-theme="tropical"] .badge { 
  background: rgba(255,215,0,0.15); 
  border-color: rgba(255,215,0,0.4); 
  color: var(--accent);
}
[data-theme="tropical"] .carousel-dot { background: rgba(255,255,255,0.3); }
[data-theme="tropical"] .carousel-dot.active { background: var(--accent); }
[data-theme="tropical"] .carousel-arrow { background: rgba(26,47,26,0.6); color: var(--accent); border-color: rgba(255,215,0,0.3); }
[data-theme="tropical"] .carousel-arrow:hover { background: rgba(26,47,26,0.8); border-color: var(--accent); }
[data-theme="tropical"] .btn-primary { background: var(--accent); color: #1A2F1A; }
[data-theme="tropical"] .btn-primary:hover { background: var(--accent-hover); }
[data-theme="tropical"] .nav-dropdown { background: var(--surface); box-shadow: 0 8px 32px rgba(0,0,0,0.4); }
[data-theme="tropical"] .album-card::after { background: linear-gradient(to top, rgba(26,47,26,0.95), transparent); }
[data-theme="tropical"] .studio-stat-badge { background: var(--bg); box-shadow: 0 4px 24px rgba(0,0,0,0.3); }
[data-theme="tropical"] .gallery-item .caption { background: linear-gradient(transparent, rgba(26,47,26,0.8)); }
[data-theme="tropical"] .img-placeholder { background: linear-gradient(135deg, #243524, #1A2F1A); }
[data-theme="tropical"] .player-bar { background: var(--surface); border-top: 1px solid var(--border); }
[data-theme="tropical"] .site-header { border-bottom-color: var(--border); }
[data-theme="tropical"] .site-header.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.4); }
[data-theme="tropical"] .section-surface { background: var(--surface); }
[data-theme="tropical"] .cta-block { background: var(--surface); border-color: var(--border); }
[data-theme="tropical"] .service-card { background: var(--surface); border-color: var(--border); }
[data-theme="tropical"] .testimonial { background: var(--surface); border-color: var(--border); }

/* ============================================================
   REGGAE THEME — Jamaican-inspired bold poster style
   Triggered by: <html data-theme="reggae">
   ============================================================ */
[data-theme="reggae"] {
  --bg: #FFD500;            /* Yellow page background */
  --fg: #0A0A0A;            /* Near-black text on yellow */
  --surface: #FFFFFF;       /* White cards on yellow */
  --border: #0A0A0A;        /* Black borders for poster look */
  --muted: #4A4A4A;         /* Dark gray muted text */
  --accent: #DC2626;        /* Reggae red */
  --accent-hover: #B91C1C;
  --reggae-yellow: #FFD500;
  --reggae-red: #DC2626;
  --reggae-green: #2D9E4D;
  --header-bg: rgba(10,10,10,0.92);
  --overlay-gradient: rgba(0,0,0,0.65);
  --overlay-light: rgba(0,0,0,0.4);
  --overlay-fade: rgba(0,0,0,0.2);
  --shadow-color: rgba(0,0,0,0.25);
}

/* Header stays dark in reggae theme so it reads against the hero */
[data-theme="reggae"] .site-header { background: rgba(10,10,10,0.92); }
[data-theme="reggae"] .site-header.scrolled { background: rgba(10,10,10,0.95); }
[data-theme="reggae"] .site-header a { color: #fff; }
[data-theme="reggae"] .btn-connect { background: #DC2626; color: #ffffff; }

/* ----- Reggae fonts (loaded site-wide, only applied to reggae theme) ----- */
[data-theme="reggae"] body {
  font-family: 'Manrope', 'Outfit', system-ui, sans-serif;
  position: relative;
}
/* Vinyl groove texture — fixed overlay on yellow body areas */
[data-theme="reggae"] body::before {
  content: '';
  position: fixed;
  top: -25%; right: -15%;
  width: 130%; height: 150%;
  background-image: repeating-radial-gradient(
    circle at center,
    transparent 0,
    transparent 8px,
    rgba(0,0,0,0.05) 8px,
    rgba(0,0,0,0.05) 9px
  );
  pointer-events: none;
  z-index: 1;
}
/* Ensure content sits above texture */
[data-theme="reggae"] body > * { position: relative; z-index: 2; }
/* Hide texture on dark sections (hero, page headers) — they have their own dot pattern */
[data-theme="reggae"] .hero-carousel,
[data-theme="reggae"] .page-header,
[data-theme="reggae"] .album-hero-wrap,
[data-theme="reggae"] .site-footer,
[data-theme="reggae"] .marquee,
[data-theme="reggae"] .filter-bar-wrap {
  z-index: 3;
}
/* v1.4 #1: Site header wrapper must outrank hero/section stacking contexts so the
   inner fixed .site-header (z-index:100) is not buried by them. Without this, the
   `body > *` rule above pins #site-header to z-index:2, while .hero-carousel and
   later sections render at z-index:3 — hiding the nav entirely. */
[data-theme="reggae"] #site-header { z-index: 1000; }
[data-theme="reggae"] .font-display {
  font-family: 'Bricolage Grotesque', 'Cormorant Garamond', Georgia, serif;
  font-weight: 800;
  letter-spacing: -0.03em;
}
[data-theme="reggae"] .font-poster {
  font-family: 'Anton', Impact, sans-serif;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
[data-theme="reggae"] .logo {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
}

/* ============================================================
   REGGAE HERO — Brand mode (one big tagline + cycling images)
   ============================================================ */
[data-theme="reggae"] .hero-carousel {
  min-height: 100vh;
  background: #0a0a0a;
}
/* v1.4 G2: Disable Ken Burns zoom under reggae — distracts from the bold poster
   aesthetic. Static image background instead. */
[data-theme="reggae"] .hero-slide.active .hero-slide-bg img {
  animation: none !important;
  transform: scale(1) !important;
}
/* v1.4 G2: Single overlay layer. Earlier v1.4 G1 applied the 0.85/0.5/0.3 gradient
   to BOTH ::after and ::before, doubling the darkness. Now ::after carries the full
   gradient (matches tads-mix-final.html .hero-carousel-overlay) and ::before is
   neutralized. */
[data-theme="reggae"] .hero-slide-bg::after {
  background: linear-gradient(
    135deg,
    rgba(0,0,0,0.85) 0%,
    rgba(0,0,0,0.5) 50%,
    rgba(0,0,0,0.3) 100%
  );
}
[data-theme="reggae"] .hero-slide-bg::before {
  background: transparent;
}
[data-theme="reggae"] .hero-slide-content {
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
}
[data-theme="reggae"] .hero-slide-content .badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'DM Mono', 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--reggae-yellow);
  padding: 8px 14px;
  background: rgba(255,213,0,0.1);
  border: 1px solid rgba(255,213,0,0.3);
  border-radius: 999px;
  margin-bottom: 24px;
}
[data-theme="reggae"] .hero-slide-content .badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--reggae-red);
  animation: reggae-pulse 1.6s ease-in-out infinite;
}
@keyframes reggae-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}
[data-theme="reggae"] .hero-slide-content h1 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(3rem, 9vw, 9rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: #fff;
  margin: 0 auto 32px;
  max-width: 1100px;
}
[data-theme="reggae"] .hero-slide-content h1 .yellow {
  color: var(--reggae-yellow);
  font-style: italic;
}
[data-theme="reggae"] .hero-slide-content h1 .underline {
  position: relative;
  display: inline-block;
}
[data-theme="reggae"] .hero-slide-content h1 .underline::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 4%;
  height: 8%;
  background: var(--reggae-red);
  z-index: -1;
}
[data-theme="reggae"] .hero-slide-content .desc,
[data-theme="reggae"] .hero-slide-content .lede {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin: 0 auto 36px;
}
[data-theme="reggae"] .hero-slide-content .hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Reggae buttons */
[data-theme="reggae"] .hero-actions .btn-primary {
  background: var(--reggae-yellow);
  color: #0a0a0a;
  border: none;
  border-radius: 999px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 600;
  padding: 16px 28px;
}
[data-theme="reggae"] .hero-actions .btn-primary:hover {
  background: #fff;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(255,213,0,0.4);
}
[data-theme="reggae"] .hero-actions .btn-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 999px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 600;
  padding: 16px 28px;
}
[data-theme="reggae"] .hero-actions .btn-outline:hover {
  background: #fff;
  color: #0a0a0a;
  border-color: #fff;
}

/* Carousel dots — yellow active state */
[data-theme="reggae"] .carousel-dot.active {
  background: var(--reggae-yellow);
  width: 32px;
  border-radius: 5px;
  transform: none;
}
[data-theme="reggae"] .carousel-arrow {
  background: rgba(0,0,0,0.4);
  border: 1.5px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(6px);
}
[data-theme="reggae"] .carousel-arrow:hover {
  background: var(--reggae-yellow);
  border-color: var(--reggae-yellow);
  color: #0a0a0a;
}

/* ============================================================
   REGGAE MARQUEE BAR — homepage only
   Hidden by default; shown via .reggae-marquee in <body>
   ============================================================ */
.reggae-marquee {
  display: none; /* off by default; reggae theme turns it on */
}
[data-theme="reggae"] .reggae-marquee {
  display: block;
  background: var(--reggae-red);
  color: #fff;
  padding: 14px 0;
  overflow: hidden;
  border-top: 4px solid var(--reggae-yellow);
  border-bottom: 4px solid var(--reggae-yellow);
  position: relative;
  z-index: 6;
}
[data-theme="reggae"] .reggae-marquee-track {
  display: flex;
  gap: 48px;
  animation: reggae-scroll 25s linear infinite;
  white-space: nowrap;
  font-family: 'Anton', Impact, sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
@keyframes reggae-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
[data-theme="reggae"] .reggae-marquee-track .star {
  color: var(--reggae-yellow);
  display: inline-block;
  animation: reggae-star-spin 4s linear infinite;
}
@keyframes reggae-star-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ============================================================
   REGGAE BODY SECTIONS — yellow background, poster style
   ============================================================ */
/* v1.4 G2.2: Section distinction via alternating yellow tints (chosen direction).
   Body bg is #FFD500 (--reggae-yellow). The homepage HTML alternates classes:
     <div class="section section-surface">  NEW RELEASES   → bright (body yellow shows)
     <div class="section">                   CURATED        → deep tint
     <div class="section section-surface">  STUDIO         → bright
     <div class="section">                   CTA            → deep tint
   So `.section.section-surface` stays transparent (body yellow shows = bright),
   and `.section:not(.section-surface)` gets the deeper #F5BD00 tint. Vinyl
   groove texture remains visible on top of both shades.
   Green-body :has(...) rules below override with !important on About/Studio/
   Contact/Connect, so they stay solid green. */
[data-theme="reggae"] .section,
[data-theme="reggae"] .section-surface {
  background: transparent;
  padding: 96px 0;
}
[data-theme="reggae"] .section:not(.section-surface) {
  background: #F5BD00;
}
[data-theme="reggae"] .section {
  color: #0a0a0a;
}
/* v1.4 G2.2: Section header layout. Production HTML is
     <div class="section-head">
       <div><h2>...</h2><p>description</p></div>
       <a class="view-all">View All →</a>
     </div>
   Layout:
     [ green pill description ]    ← centered, ABOVE
            HEADLINE               ← centered Anton, with red box on last word     View All →
                                                                              ↑ baseline-aligned with h2 bottom
   3-col grid (1fr | content | 1fr) keeps headline visually centered in the
   row. align-items: end pulls View All down so its bottom matches the row's
   bottom (== h2 bottom == ≈ h2 baseline given line-height: 0.9).
   Inner div uses flex column-reverse so <p> (description) renders above <h2>.
*/
[data-theme="reggae"] .section-head {
  display: grid !important;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  text-align: center;
  margin-bottom: 64px;
}
[data-theme="reggae"] .section-head > div:first-child {
  grid-column: 2;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 8px;
}
[data-theme="reggae"] .section-head h2 {
  font-family: 'Anton', Impact, sans-serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: #0a0a0a;
  font-weight: 400;
}
/* Red box highlight on .underline-marked words inside the section h2.
   Distinct from .hero-slide-content h1 .underline (which uses a ::after bar).
   Same class name, context-scoped — matches the mockup convention. */
[data-theme="reggae"] .section-head h2 .underline {
  background: var(--reggae-red);
  color: #fff;
  padding: 0 20px;
  display: inline-block;
  transform: rotate(-1deg);
  transition: transform 0.3s ease;
}
[data-theme="reggae"] .section-head h2:hover .underline {
  transform: rotate(-3deg) scale(1.03);
}
/* Legacy class kept for any pages still using it */
[data-theme="reggae"] .section-head h2 .reggae-block {
  background: var(--reggae-red);
  color: #fff;
  padding: 0 20px;
  display: inline-block;
  transform: rotate(-1deg);
}
[data-theme="reggae"] .section-head p {
  font-family: 'DM Mono', 'JetBrains Mono', monospace;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  background: var(--reggae-green);
  color: #fff;
  display: inline-block;
  padding: 6px 14px;
  margin-top: 0;
}
[data-theme="reggae"] .section-head .view-all {
  grid-column: 3;
  justify-self: end;
  align-self: end;
  font-family: 'DM Mono', 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #0a0a0a;
  font-weight: 500;
}
[data-theme="reggae"] .section-head .view-all:hover {
  color: var(--reggae-red);
}
@media (max-width: 768px) {
  [data-theme="reggae"] .section-head {
    grid-template-columns: 1fr;
  }
  [data-theme="reggae"] .section-head > div:first-child { grid-column: 1; }
  [data-theme="reggae"] .section-head .view-all {
    grid-column: 1;
    justify-self: center;
    margin-top: 20px;
  }
}

/* v1.4 G2.2: Wider album grid — base CSS is repeat(auto-fill, minmax(180px, 1fr))
   which gives 6+ tiny cards on a 1280px container. Mockup uses 3 fixed columns
   so cards are large enough to read the rotation + colored shadows. */
/* v0.07 Bug 4 scope fix: v0.06 changed `.album-grid` globally, which incorrectly
   shrunk homepage NEW RELEASES (#newGrid) and the new-releases page (#grid)
   along with catalogue (#albumGrid). Restoring the global `.album-grid` rule
   to the original prominent 3-col / 32px-gap layout (homepage + new-releases
   default). Catalogue gets its own #albumGrid override block: 4-col / 24px gap
   with a 1100px breakpoint. Both pages share the 2-col @900px and 1-col @600px
   collapse, but the breakpoints are duplicated per scope so the higher-
   specificity #albumGrid rules don't get held at 3-col below 900px due to the
   1100px catalogue rule. (Specificity check: `[data-theme="reggae"] .album-grid`
   is (0,2,0); `[data-theme="reggae"] #albumGrid` is (1,1,0). ID wins on
   catalogue. The duplicated #albumGrid breakpoints ensure mobile collapse
   matches behavior on both pages.) */
[data-theme="reggae"] .album-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 900px) {
  [data-theme="reggae"] .album-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  [data-theme="reggae"] .album-grid { grid-template-columns: 1fr; }
}

/* Catalogue-only album grid (uses #albumGrid ID for higher specificity) */
[data-theme="reggae"] #albumGrid {
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 1100px) {
  [data-theme="reggae"] #albumGrid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  [data-theme="reggae"] #albumGrid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  [data-theme="reggae"] #albumGrid { grid-template-columns: 1fr; }
}

/* Album cards — black with red tag, yellow meta strip, slight tilt */
[data-theme="reggae"] .album-card {
  background: #0a0a0a;
  border: 4px solid #0a0a0a;
  overflow: hidden;
  transform: rotate(-1deg);
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.3s;
}
[data-theme="reggae"] .album-grid > .album-card:nth-child(2n) { transform: rotate(1deg); }
[data-theme="reggae"] .album-grid > .album-card:nth-child(3n) { transform: rotate(-0.5deg); }
/* v1.4 G2.1: Poster-style flat colored offset shadows. Cycles red → green → yellow
   so consecutive cards get distinct accents. */
[data-theme="reggae"] .album-grid > .album-card { box-shadow: 8px 8px 0 var(--reggae-red); }
[data-theme="reggae"] .album-grid > .album-card:nth-child(3n+2) { box-shadow: 8px 8px 0 var(--reggae-green); }
[data-theme="reggae"] .album-grid > .album-card:nth-child(3n) { box-shadow: 8px 8px 0 var(--reggae-yellow); }
[data-theme="reggae"] .album-grid > .album-card:hover {
  transform: rotate(0) translateY(-10px) scale(1.03);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
[data-theme="reggae"] .album-card .album-info {
  background: var(--reggae-yellow);
  color: #0a0a0a;
  border-top: 4px solid #0a0a0a;
  padding: 18px;
}
[data-theme="reggae"] .album-card .album-info h3 {
  font-family: 'Anton', Impact, sans-serif;
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 6px;
  color: #0a0a0a;
}
[data-theme="reggae"] .album-card .album-info .artist {
  font-size: 0.9rem;
  font-weight: 700;
  color: #0a0a0a;
  opacity: 0.7;
}
[data-theme="reggae"] .album-card .album-info .meta {
  margin-top: 8px;
}
[data-theme="reggae"] .album-card .album-info .meta span {
  display: inline-block;
  background: var(--reggae-red);
  color: #fff;
  font-family: 'Anton', Impact, sans-serif;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 3px 8px;
  margin-right: 6px;
}

/* CTA block on yellow */
[data-theme="reggae"] .cta-block {
  background: #0a0a0a;
  border: 4px solid var(--reggae-red);
  color: #fff;
}
[data-theme="reggae"] .cta-block h2 { color: #fff; }
[data-theme="reggae"] .cta-block .btn-primary {
  background: var(--reggae-yellow);
  color: #0a0a0a;
  border: none;
  border-radius: 999px;
}

/* Footer stays dark in reggae theme for contrast */
[data-theme="reggae"] .site-footer {
  background: #0a0a0a;
  color: #fff;
}
/* v1.4 #4: Footer inner elements use --muted (#4A4A4A) and --fg (#0A0A0A) under
   reggae, both nearly invisible on the black footer bg. Override to white-on-black
   palette matching the existing tropical-light footer pattern. */
[data-theme="reggae"] .site-footer .logo { color: #fff; }
[data-theme="reggae"] .site-footer .logo span { color: var(--reggae-yellow); }
[data-theme="reggae"] .footer-brand p { color: rgba(255,255,255,0.7); }
[data-theme="reggae"] .footer-col h4 { color: rgba(255,255,255,0.55); }
[data-theme="reggae"] .footer-col a { color: rgba(255,255,255,0.85); }
[data-theme="reggae"] .footer-col a:hover { color: var(--reggae-yellow); }
[data-theme="reggae"] .footer-bottom {
  color: rgba(255,255,255,0.55);
  border-color: rgba(255,255,255,0.12);
}
[data-theme="reggae"] .social-links a { color: rgba(255,255,255,0.6); }
[data-theme="reggae"] .social-links a:hover { color: var(--reggae-yellow); }

/* ============================================================
   REGGAE THEME — SECONDARY PAGES (catalogue, album, about,
   studio, contact, connect, merch, press, new-releases)
   Added: full page redesigns for the reggae theme.
   ============================================================ */

/* ---------- Page Header (dark hero on every secondary page) ---------- */
[data-theme="reggae"] .page-header {
  background-color: #0a0a0a !important;
  color: #fff !important;
  padding: 140px 32px 60px !important;
  position: relative;
  overflow: hidden;
  border: none !important;
}

/* v0.31: Removed [data-theme="reggae"] body:has(#albumGrid) .page-header
   and its ::after overlay. The catalogue hero is now driven via the
   universal .page-header.has-hero-image rule (defined near line 313)
   which the catalogue.html JS opts into when settings.catalogue_header_image
   is non-empty. Setting is seeded to 'images/catalogue-hero.jpg' in DB,
   so the public catalogue looks identical to before — but now editable. */
[data-theme="reggae"] .page-header.section-surface {
  background-color: #0a0a0a !important;
}
[data-theme="reggae"] .page-header::before {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 6px;
  background: linear-gradient(
    to right,
    var(--reggae-green) 0%, var(--reggae-green) 33%,
    var(--reggae-yellow) 33%, var(--reggae-yellow) 66%,
    var(--reggae-red) 66%, var(--reggae-red) 100%
  );
  z-index: 2;
}
/* v0.32: scoped with :not(.has-hero-image) so the universal
   .page-header.has-hero-image::after dark-gradient overlay (defined near
   line 329) wins on hero pages. Same specificity as the universal rule
   (0,2,1) but later in source — without the :not() scope, this reggae
   ::after silently suppresses the dark legibility overlay on every hero
   page, leaving headline text unreadable over bright images. With the
   :not() scope, dot-noise only paints when there is no hero image. */
[data-theme="reggae"] .page-header:not(.has-hero-image)::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at center, rgba(255,213,0,0.04) 1px, transparent 1.5px);
  background-size: 16px 16px;
  pointer-events: none;
}
[data-theme="reggae"] .page-header > .container,
[data-theme="reggae"] .page-header .container {
  position: relative;
  z-index: 1;
  max-width: 1200px !important;
}
[data-theme="reggae"] .page-header h1 {
  font-family: 'Bricolage Grotesque', sans-serif !important;
  font-weight: 800 !important;
  font-size: clamp(3rem, 7vw, 6rem) !important;
  line-height: 0.95 !important;
  letter-spacing: -0.03em !important;
  color: #fff !important;
  text-transform: none !important;
}
[data-theme="reggae"] .page-header h1 .text-accent,
[data-theme="reggae"] .page-header h1 span {
  color: var(--reggae-yellow) !important;
  font-style: italic;
}
[data-theme="reggae"] .page-header p {
  color: rgba(255,255,255,0.75) !important;
  font-size: 1.15rem !important;
  max-width: 720px;
}
[data-theme="reggae"] .page-header .text-muted {
  color: rgba(255,255,255,0.75) !important;
}

/* ---------- GREEN BODY for brand/info pages ----------
   These pages get a green background instead of yellow:
   - about (has #storyGrid)
   - studio (has #gallery)
   - contact (has #contactForm)
   - connect (has #nlForm)
*/
[data-theme="reggae"] body:has(#storyGrid),
[data-theme="reggae"] body:has(#gallery),
[data-theme="reggae"] body:has(#contactForm),
[data-theme="reggae"] body:has(#nlForm) {
  background: var(--reggae-green) !important;
  color: #fff;
}
[data-theme="reggae"] body:has(#storyGrid) .section,
[data-theme="reggae"] body:has(#gallery) .section,
[data-theme="reggae"] body:has(#contactForm) .section,
[data-theme="reggae"] body:has(#nlForm) .section {
  background: transparent !important;
  color: #fff;
}
/* v0.32: :not(.page-header) mirrors the sibling rule at ~line 1961.
   The page-header element on studio/about/contact/connect also carries
   .section-surface, so without this exclusion the `background:` shorthand
   wiped BOTH the dark background-color AND the JS-injected hero
   background-image (shorthand expands to background-image: initial). */
[data-theme="reggae"] body:has(#storyGrid) .section-surface:not(.page-header),
[data-theme="reggae"] body:has(#gallery) .section-surface:not(.page-header),
[data-theme="reggae"] body:has(#contactForm) .section-surface:not(.page-header),
[data-theme="reggae"] body:has(#nlForm) .section-surface:not(.page-header) {
  background: transparent !important;
}
/* Page header stays dark even on green pages — but ONLY when there's no
   CMS hero image. v0.32: :not(.has-hero-image) lets the JS-injected
   background-image survive on studio/about/contact/connect. Without this
   scope, every hero-bearing page on the green-body group was getting
   painted solid #0a0a0a !important over the image. Same pattern that
   fixed the reggae ::after overlay in the previous round. */
[data-theme="reggae"] body:has(#storyGrid) .page-header:not(.has-hero-image),
[data-theme="reggae"] body:has(#gallery) .page-header:not(.has-hero-image),
[data-theme="reggae"] body:has(#contactForm) .page-header:not(.has-hero-image),
[data-theme="reggae"] body:has(#nlForm) .page-header:not(.has-hero-image) {
  background-color: #0a0a0a !important;
}
/* Text on green */
[data-theme="reggae"] body:has(#storyGrid) h2,
[data-theme="reggae"] body:has(#gallery) h2,
[data-theme="reggae"] body:has(#contactForm) h2,
[data-theme="reggae"] body:has(#nlForm) h2 {
  color: #fff !important;
}
[data-theme="reggae"] body:has(#storyGrid) .text-muted,
[data-theme="reggae"] body:has(#gallery) .text-muted,
[data-theme="reggae"] body:has(#contactForm) .text-muted,
[data-theme="reggae"] body:has(#nlForm) .text-muted {
  color: rgba(255,255,255,0.85) !important;
}

/* ---------- ABOUT PAGE — Story section ---------- */
[data-theme="reggae"] #storyGrid {
  gap: 56px !important;
}
[data-theme="reggae"] #storyGrid > div:first-child > div:first-child {
  border: 4px solid #0a0a0a !important;
  border-radius: 0 !important;
  box-shadow: 12px 12px 0 var(--reggae-yellow);
  transform: rotate(-1.5deg);
  transition: transform 0.4s ease;
}
[data-theme="reggae"] #storyGrid > div:first-child > div:first-child:hover {
  transform: rotate(0);
}
[data-theme="reggae"] #storyGrid h2 {
  font-family: 'Anton', sans-serif !important;
  font-size: clamp(2.5rem, 5vw, 4rem) !important;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: #fff !important;
  line-height: 0.95 !important;
}
[data-theme="reggae"] #storyText {
  color: rgba(255,255,255,0.85) !important;
}

/* Est. badge on about page */
[data-theme="reggae"] #storyGrid > div:first-child > div:nth-child(2) {
  background: var(--reggae-red) !important;
  color: #fff !important;
  border-radius: 0 !important;
  transform: rotate(2deg);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* About: stats grid */
[data-theme="reggae"] body:has(#storyGrid) .stats-grid {
  background: #0a0a0a;
  border: 4px solid #0a0a0a;
  box-shadow: 8px 8px 0 var(--reggae-yellow);
  padding: 32px;
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 24px !important;
}
[data-theme="reggae"] body:has(#storyGrid) .stat-item {
  text-align: center;
  padding: 8px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
[data-theme="reggae"] body:has(#storyGrid) .stat-item:last-child {
  border-right: none;
}
[data-theme="reggae"] body:has(#storyGrid) .stat-icon { display: none; }
[data-theme="reggae"] body:has(#storyGrid) .stat-val {
  font-family: 'Bricolage Grotesque', sans-serif !important;
  font-weight: 800 !important;
  font-size: 3rem !important;
  color: var(--reggae-yellow) !important;
  font-style: italic;
}
[data-theme="reggae"] body:has(#storyGrid) .stat-lbl {
  font-family: 'DM Mono', monospace !important;
  font-size: 0.7rem !important;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.6) !important;
  margin-top: 12px;
}

/* About: timeline — production uses .tl-item / .tl-dot / .tl-card / .year / .event */
[data-theme="reggae"] .timeline {
  position: relative;
  padding: 16px 0 16px 0 !important;
  max-width: 900px;
  margin: 0 auto;
}
[data-theme="reggae"] .timeline::before {
  content: '';
  position: absolute;
  left: 32px;
  top: 0; bottom: 0;
  width: 4px;
  background: var(--reggae-yellow);
}
[data-theme="reggae"] .timeline .tl-item {
  position: relative;
  padding-left: 80px;
  margin-bottom: 32px;
  background: transparent !important;
  border: none !important;
}
[data-theme="reggae"] .timeline .tl-item:last-child {
  margin-bottom: 0;
}
/* Hide the original tiny dot, replace with our big red dot via ::before */
[data-theme="reggae"] .timeline .tl-dot {
  display: none !important;
}
[data-theme="reggae"] .timeline .tl-item::before {
  content: '';
  position: absolute;
  left: 22px; top: 12px;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--reggae-red);
  border: 4px solid #0a0a0a;
  z-index: 2;
}
[data-theme="reggae"] .timeline .tl-card {
  background: #0a0a0a;
  border: 4px solid #0a0a0a;
  border-radius: 0 !important;
  padding: 20px 24px !important;
  transform: rotate(-0.3deg);
  transition: transform 0.3s;
  box-shadow: none !important;
}
[data-theme="reggae"] .timeline .tl-item:nth-child(2n) .tl-card {
  transform: rotate(0.4deg);
}
[data-theme="reggae"] .timeline .tl-card:hover {
  transform: rotate(0) translateY(-4px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.3) !important;
}
[data-theme="reggae"] .timeline .tl-card .year {
  font-family: 'Anton', sans-serif !important;
  font-size: 1.5rem !important;
  color: var(--reggae-yellow) !important;
  background: var(--reggae-red);
  padding: 2px 14px !important;
  display: inline-block !important;
  margin-bottom: 10px !important;
  transform: rotate(-1deg);
  letter-spacing: 0.05em;
  border-radius: 0 !important;
}
[data-theme="reggae"] .timeline .tl-card .event {
  color: rgba(255,255,255,0.7) !important;
  font-size: 0.95rem !important;
  line-height: 1.6 !important;
  font-family: 'Manrope', sans-serif !important;
  background: transparent !important;
  padding: 0 !important;
  margin: 0 !important;
  display: block !important;
}

/* ---------- STUDIO PAGE — Rooms gallery ---------- */
[data-theme="reggae"] .gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
  grid-template-areas:
    "featured room2 room3"
    "featured room4 room5";
}
[data-theme="reggae"] .gallery-grid .gallery-item {
  background: #0a0a0a;
  border: 4px solid #0a0a0a;
  border-radius: 0 !important;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s;
  position: relative;
  aspect-ratio: 4/3;
  transform: rotate(0.4deg);
}
[data-theme="reggae"] .gallery-grid .gallery-item:nth-child(1) {
  grid-area: featured;
  aspect-ratio: auto;
  transform: rotate(-0.5deg);
  box-shadow: 12px 12px 0 var(--reggae-yellow);
}
[data-theme="reggae"] .gallery-grid .gallery-item:nth-child(2) { grid-area: room2; transform: rotate(0.5deg); }
[data-theme="reggae"] .gallery-grid .gallery-item:nth-child(3) { grid-area: room3; transform: rotate(-0.3deg); }
[data-theme="reggae"] .gallery-grid .gallery-item:nth-child(4) { grid-area: room4; transform: rotate(-0.5deg); }
[data-theme="reggae"] .gallery-grid .gallery-item:nth-child(5) { grid-area: room5; transform: rotate(0.4deg); }
[data-theme="reggae"] .gallery-grid .gallery-item:hover {
  transform: rotate(0) translateY(-6px);
  box-shadow: 0 16px 32px rgba(0,0,0,0.4);
  z-index: 2;
}
[data-theme="reggae"] .gallery-grid .gallery-item .caption {
  position: absolute !important;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.95), transparent) !important;
  padding: 24px 16px 14px !important;
  font-family: 'Anton', sans-serif !important;
  font-size: 1.1rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em;
  color: #fff !important;
}
[data-theme="reggae"] .gallery-grid .gallery-item:nth-child(1) .caption {
  font-size: 1.6rem !important;
}

/* Studio: services grid */
[data-theme="reggae"] body:has(#gallery) #services {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 24px !important;
}
[data-theme="reggae"] body:has(#gallery) .service-card {
  background: #0a0a0a !important;
  border: 4px solid #0a0a0a !important;
  border-radius: 0 !important;
  padding: 28px 24px !important;
  color: #fff !important;
  transform: rotate(-0.4deg);
  transition: transform 0.3s ease, box-shadow 0.3s;
}
[data-theme="reggae"] body:has(#gallery) #services > .service-card:nth-child(2) { transform: rotate(0.5deg); }
[data-theme="reggae"] body:has(#gallery) #services > .service-card:nth-child(3) { transform: rotate(-0.2deg); }
[data-theme="reggae"] body:has(#gallery) .service-card:hover {
  transform: rotate(0) translateY(-8px);
  box-shadow: 12px 12px 0 var(--reggae-red);
}
[data-theme="reggae"] body:has(#gallery) .service-card h3 {
  font-family: 'Anton', sans-serif !important;
  font-size: 1.6rem !important;
  text-transform: uppercase;
  color: #fff !important;
  margin-bottom: 8px;
}
[data-theme="reggae"] body:has(#gallery) .service-card .price {
  font-family: 'Anton', sans-serif !important;
  font-size: 1.1rem !important;
  color: var(--reggae-yellow) !important;
  background: var(--reggae-red);
  padding: 4px 12px;
  display: inline-block;
  margin-bottom: 16px;
  transform: rotate(-1deg);
  border-radius: 0 !important;
}
[data-theme="reggae"] body:has(#gallery) .service-card .text-muted,
[data-theme="reggae"] body:has(#gallery) .service-card p {
  color: rgba(255,255,255,0.7) !important;
}
[data-theme="reggae"] body:has(#gallery) .service-card ul {
  list-style: none;
  padding: 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 16px;
  margin-top: 16px;
}
[data-theme="reggae"] body:has(#gallery) .service-card ul li {
  color: rgba(255,255,255,0.85) !important;
  font-size: 0.9rem;
  padding: 6px 0 6px 22px !important;
  position: relative;
  border: none !important;
}
[data-theme="reggae"] body:has(#gallery) .service-card ul li::before {
  content: '★';
  position: absolute;
  left: 0; top: 6px;
  color: var(--reggae-yellow);
  font-size: 0.9rem;
}

/* Studio: testimonials */
[data-theme="reggae"] body:has(#gallery) .testimonial {
  background: #0a0a0a !important;
  border: 4px solid #0a0a0a;
  border-radius: 0 !important;
  padding: 32px !important;
  color: #fff !important;
  position: relative;
  transform: rotate(-0.5deg);
}
[data-theme="reggae"] body:has(#gallery) .testimonial:nth-child(2n) {
  transform: rotate(0.5deg);
}
[data-theme="reggae"] body:has(#gallery) .testimonial::before {
  content: '"';
  position: absolute;
  top: 4px; left: 18px;
  font-family: 'Anton', sans-serif;
  font-size: 5rem;
  line-height: 1;
  color: var(--reggae-yellow);
  opacity: 0.4;
}
[data-theme="reggae"] body:has(#gallery) .testimonial p,
[data-theme="reggae"] body:has(#gallery) .testimonial blockquote {
  color: #fff !important;
  font-size: 1.05rem;
  line-height: 1.6;
  font-style: italic;
  padding-left: 24px;
}
[data-theme="reggae"] body:has(#gallery) .testimonial .author {
  font-family: 'Anton', sans-serif !important;
  font-size: 1.2rem !important;
  text-transform: uppercase;
  color: var(--reggae-yellow) !important;
  letter-spacing: 0.05em;
  padding-left: 24px;
}
[data-theme="reggae"] body:has(#gallery) .testimonial .role {
  font-family: 'DM Mono', monospace !important;
  font-size: 0.7rem !important;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.5) !important;
  padding-left: 24px;
}

/* ---------- CONTACT PAGE — 4 info cards in grid, form below ---------- */
[data-theme="reggae"] .contact-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 16px !important;
  margin-bottom: 48px !important;
}
[data-theme="reggae"] .contact-card {
  background: #0a0a0a !important;
  border: 4px solid #0a0a0a;
  border-radius: 0 !important;
  padding: 24px !important;
  color: #fff !important;
  display: flex !important;
  flex-direction: column;
  gap: 12px;
}
[data-theme="reggae"] .contact-grid > .contact-card:nth-child(1) {
  transform: rotate(-0.5deg);
  box-shadow: 6px 6px 0 var(--reggae-yellow);
}
[data-theme="reggae"] .contact-grid > .contact-card:nth-child(2) {
  transform: rotate(0.4deg);
  box-shadow: 6px 6px 0 var(--reggae-red);
}
[data-theme="reggae"] .contact-grid > .contact-card:nth-child(3) {
  transform: rotate(-0.3deg);
  box-shadow: 6px 6px 0 var(--reggae-yellow);
}
[data-theme="reggae"] .contact-grid > .contact-card:nth-child(4) {
  transform: rotate(0.5deg);
  box-shadow: 6px 6px 0 var(--reggae-red);
}
[data-theme="reggae"] .contact-card .icon {
  background: var(--reggae-yellow) !important;
  width: 44px; height: 44px;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  color: #0a0a0a !important;
}
[data-theme="reggae"] .contact-card .icon svg {
  stroke: #0a0a0a !important;
}
[data-theme="reggae"] .contact-card .lbl {
  font-family: 'DM Mono', monospace !important;
  font-size: 0.7rem !important;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--reggae-yellow) !important;
  margin-bottom: 4px;
}
[data-theme="reggae"] .contact-card .val {
  font-family: 'Anton', sans-serif !important;
  font-size: 1rem !important;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #fff !important;
  white-space: pre-line;
  line-height: 1.4;
}

/* The form's wrapper: <div style="max-width:672px;margin:0 auto"> — restyle */
[data-theme="reggae"] body:has(#contactForm) #contactForm {
  background: #0a0a0a !important;
  border: 4px solid #0a0a0a !important;
  box-shadow: 12px 12px 0 var(--reggae-red);
  padding: 40px !important;
}
/* "Send a Message" headline above the form */
[data-theme="reggae"] body:has(#contactForm) h2.font-display {
  font-family: 'Anton', sans-serif !important;
  font-size: clamp(2rem, 4vw, 3rem) !important;
  text-transform: uppercase !important;
  color: #fff !important;
}
[data-theme="reggae"] body:has(#contactForm) #contactForm .btn-primary {
  background: var(--reggae-yellow) !important;
  color: #0a0a0a !important;
  border-radius: 999px !important;
  padding: 16px 32px !important;
  font-family: 'Bricolage Grotesque', sans-serif !important;
  font-weight: 600 !important;
}
[data-theme="reggae"] body:has(#contactForm) #contactForm .btn-primary:hover {
  background: #fff !important;
}
/* Success message after submit */
[data-theme="reggae"] body:has(#contactForm) #contactOk {
  background: #0a0a0a !important;
  border: 4px solid var(--reggae-yellow) !important;
  border-radius: 0 !important;
  color: #fff !important;
}
[data-theme="reggae"] body:has(#contactForm) #contactOk h3 {
  color: var(--reggae-yellow) !important;
  font-family: 'Anton', sans-serif !important;
}

/* Form fields */
[data-theme="reggae"] .form-group label {
  display: block;
  font-family: 'DM Mono', monospace !important;
  font-size: 0.7rem !important;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--reggae-yellow) !important;
  margin-bottom: 8px;
}
[data-theme="reggae"] .form-input,
[data-theme="reggae"] .form-select,
[data-theme="reggae"] .form-textarea {
  width: 100%;
  background: rgba(255,255,255,0.04) !important;
  border: 2px solid rgba(255,255,255,0.15) !important;
  color: #fff !important;
  padding: 14px 16px !important;
  font-family: 'Manrope', sans-serif !important;
  font-size: 1rem !important;
  border-radius: 4px !important;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}
[data-theme="reggae"] .form-input::placeholder,
[data-theme="reggae"] .form-textarea::placeholder {
  color: rgba(255,255,255,0.3);
}
[data-theme="reggae"] .form-input:focus,
[data-theme="reggae"] .form-select:focus,
[data-theme="reggae"] .form-textarea:focus {
  border-color: var(--reggae-yellow) !important;
  background: rgba(255,213,0,0.05) !important;
}
[data-theme="reggae"] .form-textarea {
  resize: vertical;
  min-height: 140px;
}

/* ---------- CONNECT PAGE — Newsletter signup ---------- */
[data-theme="reggae"] body:has(#nlForm) .container {
  max-width: 720px;
}
[data-theme="reggae"] body:has(#nlForm) #nlForm {
  display: flex !important;
  gap: 12px !important;
  max-width: 500px !important;
  margin: 32px auto !important;
}
[data-theme="reggae"] body:has(#nlForm) #nlForm .form-input {
  flex: 1;
  border-radius: 999px !important;
  padding: 14px 20px !important;
  background: rgba(0,0,0,0.5) !important;
  border-color: rgba(0,0,0,0.3) !important;
  color: #fff !important;
}
[data-theme="reggae"] body:has(#nlForm) #nlForm .form-input::placeholder {
  color: rgba(255,255,255,0.5);
}
[data-theme="reggae"] body:has(#nlForm) #nlForm .btn {
  border-radius: 999px;
}

/* ---------- CTA / SECTION HEADERS on secondary pages ---------- */
[data-theme="reggae"] body:has(#storyGrid) .section h2,
[data-theme="reggae"] body:has(#gallery) .section h2 {
  font-family: 'Anton', sans-serif !important;
  font-size: clamp(2rem, 4vw, 3rem) !important;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 0.95 !important;
}

/* CTA blocks on green pages */
[data-theme="reggae"] body:has(#storyGrid) .cta-block,
[data-theme="reggae"] body:has(#gallery) .cta-block {
  background: #0a0a0a;
  border: 4px solid #0a0a0a;
  box-shadow: 12px 12px 0 var(--reggae-red);
  padding: 56px 40px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

/* ---------- SECTION SURFACE FIX on green pages ----------
   v0.02 Bug 1: added :not(.page-header) so this dark-tint rule does not match
   the page-header element on Studio + About pages. Without the exclusion this
   rule (specificity 1,2,1, !important, later in source than line 1304) was
   beating the intended dark-page-header rule and causing the page-header to
   read as green on green-bodied pages. */
[data-theme="reggae"] body:has(#storyGrid) .section-surface:not(.page-header),
[data-theme="reggae"] body:has(#gallery) .section-surface:not(.page-header) {
  background: rgba(0,0,0,0.08) !important;
}

/* ---------- CATALOGUE PAGE — Filter bar & grid ---------- */
[data-theme="reggae"] .filter-bar {
  background: #0a0a0a;
  border-radius: 0 !important;
  border: 4px solid #0a0a0a;
  border-bottom: 4px solid var(--reggae-red) !important;
  padding: 24px 32px !important;
  margin: 0 -32px 32px;
  display: grid !important;
  grid-template-columns: 1fr auto auto !important;
  gap: 12px !important;
}
[data-theme="reggae"] .search-wrap {
  background: #0a0a0a !important; /* v0.02 Bug 3: solid bg prevents native widget bleed-through on adjacent .filter-select dropdowns; matched here for filter-bar visual consistency */
  border: 1.5px solid rgba(255,255,255,0.15) !important;
  border-radius: 999px !important;
}
[data-theme="reggae"] .search-wrap input {
  background: transparent !important;
  border: none !important;
  color: #fff !important;
  padding: 14px 20px 14px 48px !important;
}
[data-theme="reggae"] .search-wrap input::placeholder {
  color: rgba(255,255,255,0.4);
}
[data-theme="reggae"] .search-wrap svg {
  color: rgba(255,255,255,0.5) !important;
}
[data-theme="reggae"] .filter-select {
  background-color: #0a0a0a !important; /* v0.05 fix: changed from 'background:' shorthand to 'background-color:' longhand. The shorthand was implicitly setting background-repeat: repeat !important and background-position: 0% 0% !important, causing the green chevron SVG (set via background-image below) to tile across the entire pill from top-left. Longhand only sets the color and leaves the explicit background-repeat: no-repeat and background-position: right 16px center declarations below free to apply. */
  border: 1.5px solid rgba(255,255,255,0.15) !important;
  border-radius: 999px !important;
  color: #fff !important;
  padding: 13px 20px !important;
  padding-right: 42px !important;
  font-family: 'Manrope', sans-serif !important;
  font-weight: 600;
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%232D9E4D' stroke-width='2.5'><polyline points='6 9 12 15 18 9'/></svg>") !important;
  background-repeat: no-repeat;
  background-position: right 16px center;
}
[data-theme="reggae"] .filter-select option {
  background: #0a0a0a;
  color: #fff;
}

/* v0.06 Bug 5: View toggle + list-mode card layout. Adds a fourth control to
   the filter-bar grid (search, genre, sort, view-toggle). Toggle styling
   matches the search-wrap/filter-select solid-dark surrounds. List view turns
   the album grid into a single-column flow with horizontal cards (small
   thumbnail, info next to it, lighter shadow, no tilt). */
[data-theme="reggae"] .filter-bar {
  grid-template-columns: 1fr auto auto auto !important;
}
[data-theme="reggae"] .view-toggle {
  display: inline-flex;
  background: #0a0a0a;
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: 999px;
  padding: 3px;
}
[data-theme="reggae"] .view-toggle .view-btn {
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.5);
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  padding: 0;
}
[data-theme="reggae"] .view-toggle .view-btn.active {
  background: var(--reggae-yellow);
  color: #0a0a0a;
}
[data-theme="reggae"] .view-toggle .view-btn:not(.active):hover { color: #fff; }

/* List view: single column, cards as horizontal rows. Wins over the grid
   layout via !important on grid-template-columns and gap. */
[data-theme="reggae"] .album-grid.view-list {
  grid-template-columns: 1fr !important;
  gap: 12px !important;
}
[data-theme="reggae"] .album-grid.view-list > .album-card {
  display: grid;
  grid-template-columns: 96px 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 8px 16px 8px 8px;
  transform: rotate(0) !important;
  box-shadow: 4px 4px 0 var(--reggae-red) !important;
}
[data-theme="reggae"] .album-grid.view-list > .album-card:nth-child(3n+2) { box-shadow: 4px 4px 0 var(--reggae-green) !important; }
[data-theme="reggae"] .album-grid.view-list > .album-card:nth-child(3n)   { box-shadow: 4px 4px 0 var(--reggae-yellow) !important; }
[data-theme="reggae"] .album-grid.view-list .album-cover { width: 96px; height: 96px; }
[data-theme="reggae"] .album-grid.view-list .album-info {
  background: transparent;
  border-top: none;
  padding: 0;
}
[data-theme="reggae"] .album-grid.view-list .album-info h3 {
  font-size: 1.2rem;
  color: #fff !important;
}
[data-theme="reggae"] .album-grid.view-list .album-info .artist { color: rgba(255,255,255,0.7); }
[data-theme="reggae"] .album-grid.view-list .album-info .meta { margin-top: 4px; }
[data-theme="reggae"] .album-grid.view-list .album-outbound-label {
  position: static;
  white-space: nowrap;
}

@media (max-width: 700px) {
  [data-theme="reggae"] .filter-bar { grid-template-columns: 1fr 1fr !important; }
  [data-theme="reggae"] .view-toggle { grid-column: 1 / -1; justify-self: end; }
  [data-theme="reggae"] .album-grid.view-list > .album-card {
    grid-template-columns: 72px 1fr;
    gap: 12px;
  }
  [data-theme="reggae"] .album-grid.view-list .album-cover { width: 72px; height: 72px; }
  [data-theme="reggae"] .album-grid.view-list .album-outbound-label { display: none; }
}

/* v0.06 Bug 6: vertically center .nav-center flex items so the .nav-item
   wrapper around "Catalogue" (which contains the dropdown div) aligns with
   the flat <a> siblings rather than drifting due to flex's default
   align-items: stretch + intrinsic height differences. Reggae-only scope. */
[data-theme="reggae"] .nav-center { align-items: center; }

[data-theme="reggae"] .results-count {
  font-family: 'Anton', sans-serif !important;
  font-size: 1.4rem !important;
  text-transform: uppercase;
  color: #0a0a0a !important;
}

/* ---------- ALBUM PAGE — Hero, tracks, related ---------- */
[data-theme="reggae"] .album-hero {
  display: grid !important;
  grid-template-columns: 380px 1fr !important;
  gap: 56px !important;
  align-items: end !important;
}
[data-theme="reggae"] .album-art {
  position: relative;
  aspect-ratio: 1;
  border: 4px solid #0a0a0a;
  border-radius: 0 !important;
  box-shadow: 12px 12px 0 var(--reggae-red);
  overflow: hidden;
  transform: rotate(-1.5deg);
  transition: transform 0.4s ease;
}
[data-theme="reggae"] .album-art:hover {
  transform: rotate(0);
}
[data-theme="reggae"] .album-hero h1 {
  font-family: 'Bricolage Grotesque', sans-serif !important;
  font-weight: 800 !important;
  font-size: clamp(2.5rem, 6vw, 5rem) !important;
  line-height: 0.95 !important;
  letter-spacing: -0.03em !important;
  color: #fff !important;
  text-transform: none !important;
}
[data-theme="reggae"] .album-meta span {
  font-family: 'DM Mono', monospace !important;
  font-size: 0.75rem !important;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.6) !important;
}
[data-theme="reggae"] .track-list {
  background: #0a0a0a;
  border: 4px solid #0a0a0a;
  box-shadow: 8px 8px 0 var(--reggae-red);
  overflow: hidden;
  border-radius: 0 !important;
}
[data-theme="reggae"] .track-row {
  display: grid !important;
  grid-template-columns: 56px 1fr auto auto !important;
  align-items: center;
  gap: 16px;
  padding: 18px 24px !important;
  border-bottom: 1px solid rgba(255,255,255,0.08) !important;
  color: #fff !important;
  background: transparent !important;
  cursor: pointer;
  transition: background 0.15s;
}
[data-theme="reggae"] .track-row:hover {
  background: rgba(255,213,0,0.08) !important;
}
[data-theme="reggae"] .track-row.playing {
  background: rgba(255,213,0,0.15) !important;
}
[data-theme="reggae"] .track-num {
  font-family: 'Anton', sans-serif !important;
  font-size: 1.5rem !important;
  color: rgba(255,255,255,0.4) !important;
  text-align: center;
}
[data-theme="reggae"] .track-row.playing .track-num,
[data-theme="reggae"] .track-row.playing .track-title {
  color: var(--reggae-yellow) !important;
}
[data-theme="reggae"] .track-title {
  font-family: 'Manrope', sans-serif !important;
  font-weight: 600 !important;
  color: #fff;
}
[data-theme="reggae"] .track-duration {
  font-family: 'DM Mono', monospace !important;
  color: rgba(255,255,255,0.5) !important;
}
[data-theme="reggae"] .track-play {
  background: var(--reggae-yellow) !important;
  border: none !important;
  color: #0a0a0a !important;
  border-radius: 50% !important;
}

/* Mini player */
[data-theme="reggae"] .mini-player {
  background: #0a0a0a !important;
  border-top: 3px solid var(--reggae-yellow) !important;
  color: #fff;
}
[data-theme="reggae"] .mini-player .play-btn {
  background: var(--reggae-yellow) !important;
  color: #0a0a0a !important;
}
[data-theme="reggae"] .mini-player .progress-fill {
  background: var(--reggae-yellow) !important;
}

/* ---------- CATALOGUE DROPDOWN in nav ---------- */
[data-theme="reggae"] .nav-dropdown {
  background: rgba(10,10,10,0.97) !important;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,213,0,0.2) !important;
  border-radius: 12px !important;
  padding: 8px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.4);
}
[data-theme="reggae"] .nav-dropdown a {
  display: block;
  padding: 10px 14px !important;
  color: #fff !important;
  font-size: 0.85rem;
  border-radius: 8px;
  opacity: 0.85;
}
[data-theme="reggae"] .nav-dropdown a:hover {
  background: rgba(255,213,0,0.1) !important;
  color: var(--reggae-yellow) !important;
  opacity: 1;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  [data-theme="reggae"] #storyGrid {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
  [data-theme="reggae"] .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    grid-template-areas:
      "featured featured"
      "room2 room3"
      "room4 room5";
  }
  [data-theme="reggae"] .gallery-grid .gallery-item:nth-child(1) { aspect-ratio: 16/10; }
  [data-theme="reggae"] body:has(#gallery) #services {
    grid-template-columns: 1fr !important;
  }
  [data-theme="reggae"] .contact-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 14px !important;
  }
  [data-theme="reggae"] body:has(#contactForm) #contactForm {
    padding: 24px !important;
  }
  [data-theme="reggae"] body:has(#storyGrid) .stats-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  [data-theme="reggae"] .album-hero {
    grid-template-columns: 1fr !important;
  }
  [data-theme="reggae"] .filter-bar {
    grid-template-columns: 1fr !important;
  }
}
@media (max-width: 500px) {
  [data-theme="reggae"] body:has(#storyGrid) .stats-grid {
    grid-template-columns: 1fr !important;
  }
  [data-theme="reggae"] .contact-grid {
    grid-template-columns: 1fr !important;
  }
  [data-theme="reggae"] .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "featured" "room2" "room3" "room4" "room5";
  }
}

/* ---------- THEME-COLOR meta tag handled per-page via JS ---------- */
/* See components.js — sets browser bar color based on body class */


/* ============================================================
   v0.08 SECTION 1: VINYL CAROUSEL
   Horizontal-scroll row of round vinyl records on the homepage.
   Pulled from window.ALBUMS filtered by format === 'vinyl' (rendered
   inline in index.html). Each record: black vinyl with concentric
   grooves (repeating-radial-gradient), circular center label using
   the album cover, alternating red/green/yellow box-shadow per item
   index. Hover: full 360-degree spin. Final tile: dashed-yellow
   "Shop All Vinyl" CTA linking to catalogue.html?format=vinyl.
   ============================================================ */
[data-theme="reggae"] .vinyl-track-wrap {
  overflow-x: auto;
  overflow-y: visible;
  scrollbar-width: thin;
  margin-top: 32px;
  padding: 32px 32px 60px;
}
[data-theme="reggae"] .vinyl-track-wrap::-webkit-scrollbar { height: 8px; }
[data-theme="reggae"] .vinyl-track-wrap::-webkit-scrollbar-track { background: rgba(0,0,0,0.1); }
[data-theme="reggae"] .vinyl-track-wrap::-webkit-scrollbar-thumb { background: #0a0a0a; border-radius: 4px; }

[data-theme="reggae"] .vinyl-track {
  display: flex;
  gap: 56px;
  padding: 0 32px;
  width: max-content;
}
[data-theme="reggae"] .vinyl-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  color: #0a0a0a;
}
[data-theme="reggae"] .vinyl {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background:
    repeating-radial-gradient(circle at center,
      #0a0a0a 0,
      #0a0a0a 2px,
      #1a1a1a 2px,
      #1a1a1a 3px),
    #0a0a0a;
  position: relative;
  box-shadow:
    0 0 0 4px #0a0a0a,
    8px 8px 0 var(--shadow-color, var(--reggae-red)),
    0 12px 32px rgba(0,0,0,0.3);
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
[data-theme="reggae"] .vinyl::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 25%, rgba(255,255,255,0.12) 0%, transparent 30%),
    radial-gradient(circle at 70% 75%, rgba(255,255,255,0.06) 0%, transparent 30%);
  pointer-events: none;
}
[data-theme="reggae"] .vinyl-label {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 42%;
  height: 42%;
  border-radius: 50%;
  background-color: var(--reggae-red);
  background-size: cover;
  background-position: center;
  border: 3px solid #0a0a0a;
  overflow: hidden;
}
[data-theme="reggae"] .vinyl::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 14px; height: 14px;
  background: var(--reggae-yellow);
  border-radius: 50%;
  border: 2px solid #0a0a0a;
  z-index: 5;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.5);
}
[data-theme="reggae"] .vinyl-item:hover .vinyl {
  transform: rotate(360deg);
}
[data-theme="reggae"] .vinyl-info {
  margin-top: 24px;
  text-align: center;
  width: 280px;
  padding: 0 8px;
}
[data-theme="reggae"] .vinyl-info h4 {
  font-family: 'Anton', Impact, sans-serif;
  font-size: 1.1rem;
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 4px;
  color: #0a0a0a;
}
[data-theme="reggae"] .vinyl-info p {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.9rem;
  color: rgba(0,0,0,0.7);
  font-weight: 600;
  margin-bottom: 8px;
}
[data-theme="reggae"] .vinyl-info .price {
  display: inline-block;
  background: #0a0a0a;
  color: var(--reggae-yellow);
  font-family: 'DM Mono', 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 4px 10px;
  font-weight: 700;
}
[data-theme="reggae"] .vinyl-item.view-all {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: #0a0a0a;
  color: var(--reggae-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Anton', Impact, sans-serif;
  font-size: 1.4rem;
  text-transform: uppercase;
  text-align: center;
  line-height: 1;
  border: 4px dashed var(--reggae-yellow);
  transition: transform 0.3s ease, background 0.3s ease;
  flex-shrink: 0;
}
[data-theme="reggae"] .vinyl-item.view-all:hover {
  background: var(--reggae-red);
  color: #fff;
  border-color: #fff;
  transform: scale(1.05);
}
[data-theme="reggae"] .scroll-hint {
  text-align: center;
  margin-top: 8px;
  font-family: 'DM Mono', 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(0,0,0,0.5);
}
@media (max-width: 768px) {
  [data-theme="reggae"] .vinyl,
  [data-theme="reggae"] .vinyl-item.view-all { width: 220px; height: 220px; }
  [data-theme="reggae"] .vinyl-info { width: 220px; }
  [data-theme="reggae"] .vinyl-track { gap: 32px; }
}


/* ============================================================
   v0.08 SECTION 2: TADS TOP 5
   Magazine countdown layout: vertical list of 5 ranked rows. Big
   Anton rank numbers (alternating treatments per slot via :nth-child),
   small album thumbnails (100px desktop, 70px mobile), album info
   inline (Anton title, Bricolage italic artist, DM Mono tag pills).
   Hover: subtle bg tint + arrow slides in from the left.
   ============================================================ */
[data-theme="reggae"] .countdown {
  display: flex;
  flex-direction: column;
}
[data-theme="reggae"] .count-item {
  display: grid;
  grid-template-columns: 140px 100px 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 28px 0;
  border-bottom: 2px solid rgba(0,0,0,0.15);
  text-decoration: none;
  color: #0a0a0a;
  transition: padding 0.3s ease, background 0.3s ease;
  position: relative;
}
[data-theme="reggae"] .count-item:last-child { border-bottom: none; }
[data-theme="reggae"] .count-item:hover {
  background: rgba(0,0,0,0.04);
  padding-left: 16px;
  padding-right: 16px;
}
[data-theme="reggae"] .count-num {
  font-family: 'Anton', Impact, sans-serif;
  font-size: clamp(4rem, 9vw, 7rem);
  line-height: 0.85;
  color: #0a0a0a;
  letter-spacing: -0.02em;
  position: relative;
}
[data-theme="reggae"] .count-num .digit-wrap { display: inline-block; }
/* Slot-specific rank treatments per the editorial mockup */
[data-theme="reggae"] .count-item:nth-child(1) .count-num .digit-wrap {
  background: var(--reggae-red);
  color: #fff;
  padding: 0 6px;
  transform: rotate(-2deg);
}
[data-theme="reggae"] .count-item:nth-child(3) .count-num .digit-wrap {
  background: var(--reggae-green);
  color: #fff;
  padding: 0 6px;
  transform: rotate(1deg);
}
[data-theme="reggae"] .count-item:nth-child(5) .count-num .digit-wrap {
  background: #0a0a0a;
  color: var(--reggae-yellow);
  padding: 0 6px;
  transform: rotate(-1deg);
}
[data-theme="reggae"] .count-cover {
  width: 100px;
  height: 100px;
  border: 3px solid #0a0a0a;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  transform: rotate(-1deg);
  background: #1a1a1a;
}
[data-theme="reggae"] .count-cover img { width: 100%; height: 100%; object-fit: cover; }
[data-theme="reggae"] .count-item:nth-child(2) .count-cover { transform: rotate(0.8deg); }
[data-theme="reggae"] .count-item:nth-child(3) .count-cover { transform: rotate(-0.5deg); }
[data-theme="reggae"] .count-item:nth-child(4) .count-cover { transform: rotate(0.5deg); }
[data-theme="reggae"] .count-item:nth-child(5) .count-cover { transform: rotate(-1deg); }
[data-theme="reggae"] .count-info { min-width: 0; }
[data-theme="reggae"] .count-info h4 {
  font-family: 'Anton', Impact, sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  line-height: 0.95;
  text-transform: uppercase;
  color: #0a0a0a;
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}
[data-theme="reggae"] .count-info .artist {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: rgba(0,0,0,0.7);
  margin-bottom: 8px;
}
[data-theme="reggae"] .count-info .meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
[data-theme="reggae"] .count-info .tag {
  background: #0a0a0a;
  color: var(--reggae-yellow);
  font-family: 'DM Mono', 'JetBrains Mono', monospace;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 3px 8px;
  font-weight: 700;
}
[data-theme="reggae"] .count-info .tag.red { background: var(--reggae-red); color: #fff; }
[data-theme="reggae"] .count-info .tag.outline {
  background: transparent;
  color: #0a0a0a;
  border: 1.5px solid #0a0a0a;
}
[data-theme="reggae"] .count-arrow {
  font-family: 'Anton', Impact, sans-serif;
  font-size: 2rem;
  color: #0a0a0a;
  opacity: 0;
  transform: translateX(-12px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
[data-theme="reggae"] .count-item:hover .count-arrow {
  opacity: 1;
  transform: translateX(0);
}
@media (max-width: 768px) {
  [data-theme="reggae"] .count-item {
    grid-template-columns: 80px 70px 1fr;
    gap: 16px;
    padding: 20px 0;
  }
  [data-theme="reggae"] .count-num { font-size: 3.5rem; }
  [data-theme="reggae"] .count-cover { width: 70px; height: 70px; }
  [data-theme="reggae"] .count-info h4 { font-size: 1.1rem; }
  [data-theme="reggae"] .count-arrow { display: none; }
}

/* ============================================================
   v0.11 PRESS CARDS — reggae theme font overrides.
   Base rules (lines 567-576) set Cormorant Garamond + body
   inheritance from the original dark-theme stack. Under reggae,
   swap to the homepage card-grid pattern: Anton for the title,
   DM Mono for date + read-more, Manrope for the excerpt.
   Requires the reggae font stack to be loaded on press.html
   (sitewide font link consistency = v0.11 Fix 1).
   Scope is .press-card only. press-article.html uses .article-*
   selectors and is not touched by this rule set — its body font
   improves via Fix 1 alone (Manrope kicks in via body inheritance,
   .font-display h1 picks up Bricolage Grotesque).
   ============================================================ */
[data-theme="reggae"] .press-card .press-date {
  font-family: 'DM Mono', 'JetBrains Mono', monospace;
  letter-spacing: 0.15em;
}
[data-theme="reggae"] .press-card .press-body h3 {
  font-family: 'Anton', Impact, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.05;
}
[data-theme="reggae"] .press-card .press-body p {
  font-family: 'Manrope', sans-serif;
}
[data-theme="reggae"] .press-card .read-more {
  font-family: 'DM Mono', 'JetBrains Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

/* ============================================================
   v0.11 MERCH CARDS — reggae theme font overrides.
   Same pattern as press cards: Anton for product name, DM Mono
   for price + category. Base rules at lines 514-523.
   ============================================================ */
[data-theme="reggae"] .merch-card .merch-body h3 {
  font-family: 'Anton', Impact, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.05;
}
[data-theme="reggae"] .merch-card .merch-body .price {
  font-family: 'DM Mono', 'JetBrains Mono', monospace;
  font-weight: 500;
  letter-spacing: 0.05em;
}
[data-theme="reggae"] .merch-card .merch-body .cat {
  font-family: 'DM Mono', 'JetBrains Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

/* ============================================================
   v0.12 ALBUM DETAIL PAGE READABILITY — reggae theme.
   The existing reggae album-hero overrides (lines 2020-2035)
   set white text on the title + meta, designed for a dark page-
   header background this page no longer has. The hero sits in
   .section-surface which under reggae is transparent — yellow
   body bg shows through. White-on-yellow is unreadable.
   Fix: dark text on yellow for hero elements; high-contrast
   badge. Tracklist section (dark wrapper, white text) is left
   alone — already readable.
   ============================================================ */
[data-theme="reggae"] .album-hero h1 {
  color: #0a0a0a !important;
}
[data-theme="reggae"] .album-hero p {
  color: #0a0a0a !important;
}
[data-theme="reggae"] .album-meta span {
  color: #0a0a0a !important;
}
[data-theme="reggae"] .album-hero .back-link {
  color: #0a0a0a !important;
}
[data-theme="reggae"] .album-hero .back-link:hover {
  color: var(--reggae-red) !important;
}
[data-theme="reggae"] .album-hero .badge {
  background: var(--reggae-red) !important;
  border: 2px solid #0a0a0a !important;
  color: #fff !important;
}

/* ============================================================
   v0.15 LOADING SKELETONS — placeholder shapes shown before JS
   renders cards into #newGrid / #vinylCarouselTrack / #tadsTopFiveList.
   JS overwrites innerHTML on render, so skeletons are auto-removed.
   Subtle opacity pulse signals "loading" without being noisy.
   ============================================================ */
.skeleton {
  background: rgba(0, 0, 0, 0.08);
  display: block;
  animation: skeleton-pulse 1.6s ease-in-out infinite;
}
@keyframes skeleton-pulse {
  0%, 100% { opacity: 0.6; }
  50%      { opacity: 1.0; }
}
.skeleton-album-card {
  aspect-ratio: 1;
  border-radius: 16px;
}
.skeleton-vinyl {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  flex-shrink: 0;
  background: rgba(0, 0, 0, 0.12);
}
.skeleton-top5-row {
  height: 100px;
  border-radius: 8px;
  margin-bottom: 12px;
}
@media (max-width: 768px) {
  .skeleton-vinyl { width: 220px; height: 220px; }
}
