/* ═══════════════════════════════════════════════════════════
   styles.css — Kirill Zeynalov Website
   Shared stylesheet for all pages
   ═══════════════════════════════════════════════════════════ */

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

/* ── DESIGN TOKENS ── */
:root {
  --black:      #161616;
  --black-light:#262626;
  --black-dark: #050505;
  --input-bg:   #303030;
  --grey:       #D0D0D0;
  --muted:      #a1a1a1;
  --white:      #FFFFFF;
  --orange:     #FF6000;
  --orange-dark:#bf4800;
  --font:       'Montserrat', sans-serif;
}

/* ── BASE ── */
html { scroll-behavior: smooth; }

body {
  background-color: var(--black);
  color: var(--white);
  font-family: var(--font);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

/* ── GLOBAL HYPERLINKS ── */
a {
  color: var(--orange);
  text-decoration: none; /* Removes the underline */
  transition: opacity 0.2s ease;
}

a:hover {
  opacity: 0.8;
}

/* ── GOOGLE SITES OFFSET ── */
.page-wrap {
  margin-top: -56px;
  padding-top: 56px;
}

/* ══════════════════════════════════
   HEADER
   ══════════════════════════════════ */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(22, 22, 22, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(208,208,208,0.08);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 72px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.nav-left, .nav-right {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.nav-right { justify-content: flex-end; }

.logo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-wrap img {
  height: 24px;
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
}

nav a {
  font-family: var(--font);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--white);
  transition: color 0.22s ease, transform 0.22s ease;
  white-space: nowrap;
  display: inline-block;
}

nav a:hover { color: var(--grey); transform: scale(0.88); }
nav a.active { color: var(--orange); font-weight: 700; }
nav a.active:hover { color: var(--grey); transform: scale(0.88); }

/* ── HAMBURGER BUTTON ── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: 8px;
  transition: background 0.2s ease;
  z-index: 200;
}

.hamburger:hover { background: rgba(255,255,255,0.06); }

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
  transform-origin: center;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE MENU DRAWER ── */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 150;
  pointer-events: none;
}

.mobile-menu-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5,5,5,0.7);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.mobile-menu-panel {
  position: absolute;
  top: 0; left: 0; right: 0;
  background: var(--black-light);
  border-bottom: 1px solid rgba(208,208,208,0.1);
  padding: 88px 2rem 2rem;
  transform: translateY(-100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 32px rgba(0,0,0,0.6);
}

.mobile-menu.open { pointer-events: all; }
.mobile-menu.open .mobile-menu-backdrop { opacity: 1; pointer-events: all; }
.mobile-menu.open .mobile-menu-panel { transform: translateY(0); }

.mobile-menu-links { display: flex; flex-direction: column; }

.mobile-menu-links a {
  font-family: var(--font);
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--white);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(208,208,208,0.08);
  transition: color 0.2s ease, transform 0.2s ease;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.mobile-menu-links a:last-child { border-bottom: none; }
.mobile-menu-links a:hover { color: var(--grey); transform: translateX(4px); }
.mobile-menu-links a.active { color: var(--orange); font-weight: 700; }
.mobile-menu-links a.active:hover { color: var(--orange); transform: translateX(4px); }

.mobile-menu-links a .link-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--orange);
  opacity: 0;
  transition: opacity 0.2s ease;
  flex-shrink: 0;
}

.mobile-menu-links a.active .link-dot { opacity: 1; }

/* ══════════════════════════════════
   HERO BANNER
   ══════════════════════════════════ */
.hero {
  width: 100%;
  height: 180px;         /* default; Blog & Resources use 360px via inline style or page class */
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(22,22,22,0.35) 0%, rgba(22,22,22,0.72) 100%);
}

.hero-text {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.4rem;
}

.hero-label {
  font-family: var(--font);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
  text-shadow: 0 2px 16px rgba(0,0,0,0.7);
}

.hero-rule {
  width: 40px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

/* Hero height modifiers — add these classes to <section class="hero hero--tall"> */
.hero--tall { height: 360px; }

/* ══════════════════════════════════
   SHARED MAIN / CONTENT
   ══════════════════════════════════ */
main {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 2rem 5rem;
}

.intro-text {
  text-align: center;
  font-size: 0.92rem;
  line-height: 1.8;
  color: var(--grey);
  max-width: 640px;
  margin: 0 auto 3rem;
  letter-spacing: 0.01em;
}

.intro-text--wide {
  max-width: 100%;
}

/* ── TOOL CARD (shared card wrapper) ── */
.tool-card {
  background: var(--black-light);
  border-radius: 20px;
  padding: 2rem;
  box-shadow:
    8px 8px 28px var(--black-dark),
    -2px -2px 12px rgba(255,255,255,0.03),
    inset 1px 1px 0 rgba(255,255,255,0.06);
}

/* ── DEV CARD (Blog "under development") ── */
.dev-card {
  width: 100%;
  background: var(--black-light);
  border-radius: 20px;
  padding: 3.5rem 2.5rem;
  text-align: center;
  box-shadow:
    8px 8px 28px var(--black-dark),
    -2px -2px 12px rgba(255,255,255,0.03),
    inset 1px 1px 0 rgba(255,255,255,0.06);
}

.dev-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,96,0,0.1);
}

.dev-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--orange);
}

.dev-title {
  font-family: var(--font);
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
}

.dev-text {
  font-family: var(--font);
  font-weight: 400;
  font-size: 0.92rem;
  line-height: 1.8;
  color: var(--grey);
  max-width: 480px;
  margin: 0 auto 2.6rem;
}

.dev-divider {
  width: 48px;
  height: 1px;
  background: rgba(208,208,208,0.15);
  margin: 0 auto 2.6rem;
}

.dev-cta-label {
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.6rem;
}

.dev-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  width: 100%;
  max-width: 600px; 
  margin: 0 auto;   
}

.dev-btn {
  display: inline-flex;     /* Changed to flex to easily center text */
  justify-content: center;  /* Centers text horizontally */
  align-items: center;      /* Centers text vertically */
  
  width: 140px;             /* Forces all buttons to have an identical width */
  padding: 0.85rem 0;       /* Changed horizontal padding to 0 since width is fixed */
  
  background: rgba(208,208,208,0.12);
  color: var(--white);
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 50px;
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
  box-shadow:
    4px 4px 12px var(--black-dark),
    -1px -1px 6px rgba(255,255,255,0.04);
}

.dev-btn:hover {
  background: var(--orange);
  transform: scale(0.94);
  box-shadow: 0 4px 16px rgba(255,96,0,0.4);
}

/* Mobile Responsive Scale down */
@media (max-width: 500px) {
  .dev-buttons { 
    gap: 0.5rem; 
  }
  .dev-btn { 
    width: 100px;           /* Shrinks uniformly so all 3 fit on one line on mobile screens */
    font-size: 0.7rem; 
  }
}


/* ══════════════════════════════════
   BPM CALCULATOR
   ══════════════════════════════════ */
.tool-wrap {
  display: flex;
  justify-content: center;
}

.bpm-container {
  background-color: var(--black-light);
  border-radius: 20px;
  padding: 2.4rem 2rem;
  width: 100%;
  max-width: 380px;
  text-align: center;
  box-shadow:
    8px 8px 28px var(--black-dark),
    -2px -2px 12px rgba(255,255,255,0.03),
    inset 1px 1px 0 rgba(255,255,255,0.06);
}

.bpm-title {
  margin: 0 0 1.4rem 0;
  color: var(--white);
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.bpm-display {
  font-family: var(--font);
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--white);
  line-height: 1;
}

.bpm-display .bpm-unit {
  font-size: 1rem;
  margin-left: 0.4rem;
  color: var(--grey);
  vertical-align: middle;
  font-weight: 500;
  letter-spacing: 0.08em;
}

#tap-button {
  width: 100%;
  aspect-ratio: 1 / 1;
  background-color: var(--orange);
  border-radius: 18px;
  border: none;
  cursor: pointer;
  outline: none;
  position: relative;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.1s;
  -webkit-tap-highlight-color: transparent;
  box-shadow:
    8px 8px 24px var(--black-dark),
    -2px -2px 10px rgba(255,255,255,0.04),
    inset 1px 1px 0 rgba(255,255,255,0.12),
    0 6px 18px rgba(255,96,0,0.3);
  margin-bottom: 1.4rem;
  max-height: 240px;
}

#tap-button .button-text {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font);
  font-weight: 700;
  font-size: 1.8rem;
  letter-spacing: 0.08em;
  color: var(--white);
  pointer-events: none;
}

#tap-button:hover {
  transform: translateY(-2px);
  box-shadow:
    10px 10px 28px var(--black-dark),
    -2px -2px 10px rgba(255,255,255,0.04),
    inset 1px 1px 0 rgba(255,255,255,0.12),
    0 8px 22px rgba(255,96,0,0.4);
}

#tap-button:active,
#tap-button.tap-active {
  transform: translateY(1px) scale(0.98);
  background-color: var(--orange-dark);
  box-shadow:
    4px 4px 14px var(--black-dark),
    inset 2px 2px 6px rgba(0,0,0,0.25);
}

.instructions {
  color: var(--grey);
  margin-bottom: 1.4rem;
  font-family: var(--font);
  font-weight: 400;
  font-size: 0.82rem;
  line-height: 1.6;
}

#reset-button {
  background: none;
  border: 1px solid rgba(208,208,208,0.3);
  color: var(--grey);
  padding: 0.55rem 1.6rem;
  border-radius: 50px;
  cursor: pointer;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

#reset-button:hover {
  background-color: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  transform: scale(0.94);
}

/* ══════════════════════════════════
   DRUM FILL CREATOR
   ══════════════════════════════════ */
/* Controls */
.ctrl { margin-bottom: 1.4rem; }

.ctrl label {
  font-family: var(--font);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey);
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.ctrl-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ctrl-row input[type=range] {
  flex: 1;
  -webkit-appearance: none;
  appearance: none;
  height: 4px;
  border-radius: 4px;
  background: rgba(208,208,208,0.15);
  cursor: pointer;
  outline: none;
}

.ctrl-row input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--orange);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(255,96,0,0.4);
  transition: transform 0.15s ease;
}

.ctrl-row input[type=range]::-webkit-slider-thumb:hover { transform: scale(1.15); }

.ctrl-row input[type=range]::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--orange);
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 8px rgba(255,96,0,0.4);
}

.val {
  font-family: var(--font);
  font-size: 0.82rem;
  font-weight: 700;
  min-width: 28px;
  text-align: right;
  color: var(--orange);
}

/* Genre grid */
.genre-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 8px;
}

.genre-btn {
  padding: 8px 4px;
  font-family: var(--font);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid rgba(208,208,208,0.12);
  background: rgba(255,255,255,0.04);
  color: var(--grey);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.15s ease;
}

.genre-btn:hover {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border-color: rgba(208,208,208,0.25);
}

.genre-btn.active {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  box-shadow: 0 3px 10px rgba(255,96,0,0.35);
}

/* Divider */
hr.divider {
  border: none;
  border-top: 1px solid rgba(208,208,208,0.08);
  margin: 1.8rem 0;
}

/* Preview section */
.preview {
  background: rgba(0,0,0,0.25);
  border-radius: 12px;
  padding: 1.2rem;
  margin-bottom: 1.4rem;
  border: 1px solid rgba(208,208,208,0.06);
}

.preview-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.preview-title {
  font-family: var(--font);
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(208,208,208,0.4);
  font-weight: 500;
}

.play-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.play-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 14px;
  font-family: var(--font);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  border: 1px solid rgba(208,208,208,0.2);
  background: rgba(255,255,255,0.06);
  color: var(--white);
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.15s ease;
}

.play-btn:hover { background: rgba(255,255,255,0.1); border-color: rgba(208,208,208,0.35); }
.play-btn.playing {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  box-shadow: 0 3px 10px rgba(255,96,0,0.35);
}

.loop-btn {
  padding: 6px 12px;
  font-family: var(--font);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid rgba(208,208,208,0.15);
  background: transparent;
  color: rgba(208,208,208,0.5);
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.15s ease;
}

.loop-btn:hover { color: var(--grey); border-color: rgba(208,208,208,0.3); }
.loop-btn.active { background: rgba(208,208,208,0.1); color: var(--white); border-color: rgba(208,208,208,0.3); }

/* Info pills */
.info-row { display: flex; gap: 6px; margin-bottom: 14px; flex-wrap: wrap; }

.info-pill {
  font-family: var(--font);
  font-size: 0.62rem;
  padding: 3px 10px;
  border-radius: 99px;
  background: rgba(255,255,255,0.05);
  color: var(--grey);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(208,208,208,0.1);
  font-weight: 500;
}

/* Drum grid */
.grid-wrap { overflow-x: auto; padding-bottom: 4px; }

.drum-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 5px;
}

.drum-label {
  font-family: var(--font);
  font-size: 0.62rem;
  color: rgba(208,208,208,0.45);
  width: 58px;
  flex-shrink: 0;
  letter-spacing: 0.04em;
  font-weight: 500;
  text-transform: uppercase;
}

.cells { display: flex; gap: 3px; }

.cell {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(208,208,208,0.1);
  flex-shrink: 0;
  transition: background 0.06s;
}

.cell.on { background: var(--orange); border-color: var(--orange); box-shadow: 0 0 6px rgba(255,96,0,0.4); }
.cell.vel-mid { background: rgba(255,96,0,0.55); border-color: rgba(255,96,0,0.55); }
.cell.vel-low { background: rgba(255,96,0,0.25); border-color: rgba(255,96,0,0.25); }
.cell.playhead { outline: 2px solid var(--white); outline-offset: -1px; }

.beat-sep { width: 1px; background: rgba(208,208,208,0.12); height: 18px; flex-shrink: 0; }

/* Action buttons */
.actions { display: flex; gap: 10px; }

.btn {
  flex: 1;
  padding: 12px;
  font-family: var(--font);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  border: 1px solid rgba(208,208,208,0.15);
  background: rgba(255,255,255,0.05);
  color: var(--grey);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.18s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  box-shadow:
    4px 4px 12px var(--black-dark),
    -1px -1px 6px rgba(255,255,255,0.03);
}

.btn:hover {
  background: rgba(255,255,255,0.09);
  color: var(--white);
  border-color: rgba(208,208,208,0.25);
  transform: translateY(-1px);
}

.btn.primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  box-shadow:
    4px 4px 14px var(--black-dark),
    0 4px 14px rgba(255,96,0,0.3),
    inset 1px 1px 0 rgba(255,255,255,0.1);
}

.btn.primary:hover {
  background: #ff7a2b;
  border-color: #ff7a2b;
  transform: translateY(-1px);
  box-shadow:
    6px 6px 18px var(--black-dark),
    0 6px 18px rgba(255,96,0,0.4),
    inset 1px 1px 0 rgba(255,255,255,0.1);
}

/* ══════════════════════════════════
   RGB COLOUR PICKER
   ══════════════════════════════════ */
.color-canvas-wrap {
  width: 100%;
  height: 240px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06);
}

#color-canvas {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 12px;
  cursor: crosshair;
}

.hue-wrap {
  margin-top: 12px;
  height: 24px;
  width: 100%;
  position: relative;
  border-radius: 50px;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06);
}

#hue-canvas {
  width: 100%;
  height: 100%;
  display: block;
  cursor: pointer;
}

.field-label {
  font-family: var(--font);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey);
  font-weight: 500;
  margin-bottom: 6px;
  display: block;
}

.field-row {
  position: relative;
  margin-bottom: 12px;
}

.field {
  background: var(--input-bg);
  color: var(--white);
  border-radius: 10px;
  border: 1px solid rgba(208,208,208,0.08);
  padding: 12px 52px 12px 14px;
  box-sizing: border-box;
  font-family: var(--font);
  font-weight: 400;
  font-size: 0.88rem;
  outline: none;
  width: 100%;
  transition: border-color 0.2s ease;
}

.field:focus { border-color: rgba(255,96,0,0.4); }

.copy-btn {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--muted);
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.2s ease;
  padding: 4px;
}

.copy-btn:hover { color: var(--orange); }

.row { display: flex; gap: 12px; margin-bottom: 0; }
.col { flex: 1; }

.tool-divider {
  width: 100%;
  height: 1px;
  background: rgba(208,208,208,0.08);
  margin: 1.4rem 0;
}

/* ══════════════════════════════════
   RESOURCES PAGE
   ══════════════════════════════════ */
.section-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.section-header .dot { color: var(--orange); font-weight: 700; font-size: 1rem; }

.section-header h2 {
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
}

.section-header--center {
  justify-content: center;
}

.section-divider {
  width: 100%;
  height: 1px;
  background: rgba(208,208,208,0.1);
  margin: 4rem 0;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--black-light);
  box-shadow:
    8px 8px 24px var(--black-dark),
    -2px -2px 10px rgba(255,255,255,0.03),
    inset 1px 1px 0 rgba(255,255,255,0.06);
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

/* 1. Modify the overlay behavior */
.card-overlay {
  position: absolute;
  inset: 0;
  
  /* Change the linear-gradient from covering just the bottom half to covering the entire card evenly */
  background: rgba(0, 0, 0, 0.6);
  
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  box-sizing: border-box;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
}

/* 2. Target the base image when the card is hovered */
.card:hover > img {
  transform: scale(1.05); /* Keeps your smooth zoom animation */
  filter: blur(1px);      /* Adds the blur effect. Adjust '4px' to be stronger or weaker! */
}

.card:hover .card-overlay { opacity: 1; }

.card-title {
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
  text-align: center;
  text-shadow: 0 1px 8px rgba(0,0,0,0.8);
  align-self: center;
}

.card-btn {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  transition: background 0.2s ease, transform 0.2s ease;
  box-shadow: 0 4px 16px rgba(255,96,0,0.4);
}

.card-btn:hover { background: #ff7a2b; transform: translateY(-2px); }

.card .card-hover-icon {
  width: 72px;          /* Adjust this value to scale your icon larger or smaller */
  height: 72px;         /* Keep this matching the width to maintain aspect ratio */
  object-fit: contain;  /* Ensures the icon doesn't distort */
  margin-bottom: 0;     /* Removed since it's now centered in the middle */
}


.banner-link {
  display: block;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-shadow:
    8px 8px 24px var(--black-dark),
    -2px -2px 10px rgba(255,255,255,0.03),
    inset 1px 1px 0 rgba(255,255,255,0.06);
}

.banner-link img {
  width: 100%;
  height: auto;
  max-height: 260px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.banner-link:hover img { transform: scale(1.04); }

/* ══════════════════════════════════
   FOOTER
   ══════════════════════════════════ */
footer {
  background: #1a1a1a;
  border-top: 1px solid rgba(208,208,208,0.08);
  padding: 3.5rem 2rem;
  text-align: center;
}

.footer-social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-social a {
  font-family: var(--font);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--white);
  display: inline-block;
  transition: color 0.22s ease, transform 0.22s ease;
}

.footer-social a:hover { color: var(--orange); transform: scale(0.88); }

.footer-cta { margin-bottom: 1rem; }

.footer-cta h3 {
  font-family: var(--font);
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.8rem;
}

.footer-cta a {
  font-family: var(--font);
  font-size: 0.85rem;
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.2s;
}

.footer-cta a:hover { opacity: 0.8; }

.footer-copy {
  font-family: var(--font);
  font-size: 0.72rem;
  color: rgba(208,208,208,0.4);
  line-height: 1.8;
  margin-top: 2rem;
  letter-spacing: 0.04em;
}

/* ══════════════════════════════════
   RESPONSIVE — DESKTOP ONLY
   ══════════════════════════════════ */
@media (min-width: 769px) {
  .mobile-menu { display: none !important; }
  .hamburger   { display: none !important; }
}

/* ══════════════════════════════════
   RESPONSIVE — MOBILE
   ══════════════════════════════════ */
@media (max-width: 768px) {
  .header-inner {
    height: 60px;
    padding: 0 1rem;
    grid-template-columns: 44px 1fr 44px;
    grid-template-areas: "left logo right";
  }

  .nav-left  { display: none; }
  .nav-right { display: none; }

  .logo-wrap { grid-area: logo; justify-content: center; }
  .logo-wrap a { display: flex; justify-content: center; width: 100%; }
  .logo-wrap img { height: 22px; }

  .hamburger { display: flex; grid-area: right; justify-self: end; }
  .mobile-menu { display: block; }

  /* Hero */
  .hero       { height: 130px; }
  .hero--tall { height: 220px; }
  .hero-label { font-size: 1rem; }

  /* Main */
  main { padding: 2.5rem 1.2rem 4rem; }

  /* Dev card */
  .dev-card  { padding: 2.6rem 1.6rem; }
  .dev-title { font-size: 1.1rem; }
  .dev-buttons { flex-direction: column; gap: 0.8rem; }
  .dev-btn { width: 100%; }

  /* BPM */
  .bpm-container { padding: 2rem 1.5rem; }
  .bpm-display   { font-size: 3.2rem; }
  #tap-button    { max-height: 200px; }

  /* Drum Fill */
  .genre-grid { grid-template-columns: repeat(4, 1fr); gap: 6px; }
  .genre-btn  { font-size: 0.6rem; padding: 7px 2px; }
  .actions    { flex-direction: column; }

  /* RGB Picker */
  .color-canvas-wrap { height: 180px; }
  .row { flex-direction: column; gap: 0; }

  /* Resources */
  .cards-grid { grid-template-columns: 1fr; gap: 1.2rem; }

  /* Footer */
  .footer-social { gap: 1.4rem; flex-wrap: wrap; }
  .footer-cta h3 { font-size: 0.8rem; }
}

/* ══════════════════════════════════
   TIMECODE CALCULATOR
   Append these rules to styles.css
   ══════════════════════════════════ */

/* Card max-width (narrower than tool-card default) */
.tc-card {
  max-width: 480px;
  margin: 0 auto;
  width: 100%;
}

/* Two-column row: timecode 1 + operation dropdown */
.tc-input-group {
  display: flex;
  gap: 12px;
  margin-bottom: 0;
  align-items: flex-end;
}

/* Timecode 1 takes most of the space */
.tc-col { flex: 1; }

/* Operation dropdown column is narrow */
.tc-col--op { flex: 0 0 72px; }

/* Full-width fields (Timecode 2, FPS) */
.tc-field-full {
  display: block;
  margin-top: 10px;
  margin-bottom: 0;
  padding-right: 14px; /* no copy button, so no extra right padding needed */
}

/* Space above labels that follow a field (not the very first label) */
.tc-card .field-label + * + .field-label,
.tc-card .tc-input-group + .field-label {
  margin-top: 1.4rem;
}

/* Select wrapper — custom arrow, matches .field style */
.tc-select-wrap {
  position: relative;
}

.tc-select-wrap::after {
  content: "▾";
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--grey);
  pointer-events: none;
  font-size: 0.8rem;
}

.tc-select {
  width: 100%;
  height: 44px;
  padding: 0 32px 0 14px;
  background: var(--input-bg);
  color: var(--white);
  border: 1px solid rgba(208,208,208,0.08);
  border-radius: 10px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color 0.2s ease;
}

.tc-select:focus { border-color: rgba(255,96,0,0.4); }

.tc-select option {
  background: var(--black-light);
  color: var(--white);
}

/* Result display */
.tc-result {
  margin-top: 1.4rem;
  padding: 1rem 1.4rem;
  background: var(--orange);
  border-radius: 12px;
  text-align: center;
  font-family: var(--font);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--white);
  letter-spacing: 0.04em;
  box-shadow:
    4px 4px 14px var(--black-dark),
    0 4px 14px rgba(255,96,0,0.3);
}



/* Mobile adjustments */
@media (max-width: 480px) {
  .tc-input-group { flex-direction: column; gap: 0; }
  .tc-col--op { flex: 1; }
}

/* ══════════════════════════════════
   FREE MUSIC PAGE COMPONENTS
   Append these rules to styles.css
   ══════════════════════════════════ */

.music-page-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem 5rem;
}

/* ── MUSIC CARDS GRID ── */
.music-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.music-card {
  background: var(--black-light);
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    8px 8px 24px var(--black-dark),
    -2px -2px 10px rgba(255,255,255,0.03),
    inset 1px 1px 0 rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.music-card:hover {
  transform: translateY(-4px);
  box-shadow:
    12px 12px 32px var(--black-dark),
    -2px -2px 10px rgba(255,255,255,0.04),
    0 0 0 1px rgba(255,96,0,0.2);
}

.music-art-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  position: relative;
}

.music-art-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.music-card:hover .music-art-wrap img {
  transform: scale(1.04);
}

.music-info {
  padding: 1.1rem 1.2rem 0.4rem;
}

.music-song {
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--white);
  letter-spacing: 0.01em;
  line-height: 1.3;
}

.music-album {
  font-family: var(--font);
  font-weight: 400;
  font-size: 0.74rem;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.25rem;
}

.music-desc {
  font-family: var(--font);
  font-weight: 400;
  font-size: 0.76rem;
  line-height: 1.6;
  color: var(--grey);
  margin-top: 0.6rem;
}

/* ── PLAYER ROW ── */
.music-player {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.9rem 1.2rem 1.2rem;
  margin-top: auto;
}

.play-btn {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--orange);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
  box-shadow: 0 3px 10px rgba(255,96,0,0.35);
  padding: 0;
}

.play-btn:hover {
  background: #ff7a2b;
  transform: scale(1.06);
}

.play-btn svg {
  width: 18px;
  height: 18px;
  fill: var(--white);
  display: block;
}



.play-btn .icon-pause { display: none; }
.play-btn.is-playing .icon-play { display: none; }
.play-btn.is-playing .icon-pause { display: block; }

.player-track {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.player-progress-wrap {
  flex: 1;
  height: 4px;
  background: rgba(208,208,208,0.15);
  border-radius: 4px;
  cursor: pointer;
  position: relative;
}

.player-progress-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  background: var(--orange);
  border-radius: 4px;
  transition: width 0.1s linear;
}

.player-time {
  font-family: var(--font);
  font-size: 0.62rem;
  color: var(--grey);
  white-space: nowrap;
  min-width: 32px;
}

.download-btn {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(208,208,208,0.08);
  border: 1px solid rgba(208,208,208,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.download-btn:hover {
  background: var(--orange);
  border-color: var(--orange);
  transform: scale(1.06);
}

.download-btn svg {
  width: 14px;
  height: 14px;
  fill: var(--white);
}

/* ── ADDITIONAL MEDIA QUERY VIEWPORTS ── */
@media (max-width: 1024px) and (min-width: 769px) {
  .music-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .music-page-container { padding: 2.5rem 1rem 4rem; }
  .music-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}



  /* ══════════════════════════════════
     ABOUT PAGE — local styles
     ══════════════════════════════════ */

  /* ── Carousel ── */
  .about-carousel {
    position: relative;
    width: 100%;
    max-width: 680px;
    margin: 0 auto 3.5rem;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    box-shadow:
      8px 8px 28px var(--black-dark),
      -2px -2px 12px rgba(255,255,255,0.03),
      inset 1px 1px 0 rgba(255,255,255,0.06);
  }

  .carousel-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease;
  }

  .carousel-slide.active { opacity: 1; }

  .carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 1rem;
    margin-bottom: 3.5rem;
  }

  .carousel-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(208,208,208,0.25);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
  }

  .carousel-dot.active {
    background: var(--orange);
    transform: scale(1.3);
  }

  /* ── Biography ── */
  .about-bio {
    max-width: 680px;
    margin: 0 auto 3.5rem;
  }

  .about-bio p {
    font-family: var(--font);
    font-size: 0.92rem;
    line-height: 1.9;
    color: var(--grey);
    margin-bottom: 1.2rem;
    letter-spacing: 0.01em;
  }

  .about-bio p:last-child { margin-bottom: 0; }

  /* ── Collapsibles ── */
  .about-collapsibles {
    max-width: 680px;
    margin: 0 auto 3.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .collapsible {
    background: var(--black-light);
    border-radius: 14px;
    box-shadow:
      8px 8px 28px var(--black-dark),
      -2px -2px 12px rgba(255,255,255,0.03),
      inset 1px 1px 0 rgba(255,255,255,0.06);
    overflow: hidden;
  }

  .collapsible-trigger {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    padding: 1.2rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
  }

  .collapsible-title {
    display: flex;
    align-items: center;
    gap: 0.55rem;
  }

  .collapsible-dot {
    color: var(--orange);
    font-weight: 700;
    font-size: 1rem;
    line-height: 1;
    flex-shrink: 0;
  }

  .collapsible-label {
    font-family: var(--font);
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--white);
  }

  .collapsible-arrow {
    color: var(--muted);
    font-size: 1.1rem;
    transition: transform 0.35s ease;
    flex-shrink: 0;
  }

  .collapsible.open .collapsible-arrow { transform: rotate(180deg); }

  .collapsible-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .collapsible.open .collapsible-body { max-height: 1200px; }

  .collapsible-inner {
    padding: 0 1.5rem 1.4rem;
    border-top: 1px solid rgba(208,208,208,0.07);
    padding-top: 1.2rem;
  }

  .collapsible-inner ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
  }

  .collapsible-inner li {
    font-family: var(--font);
    font-size: 0.84rem;
    line-height: 1.6;
    color: var(--grey);
    padding-left: 1rem;
    position: relative;
    letter-spacing: 0.01em;
  }

  .collapsible-inner li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--white);
    font-weight: 700;
  }

  .collapsible-inner li strong {
    color: var(--white);
    font-weight: 500;
  }

  /* ── Contact form ── */
  .about-contact {
    max-width: 680px;
    margin: 0 auto;
  }

  .contact-card {
    background: var(--black-light);
    border-radius: 20px;
    padding: 2.4rem 2rem;
    box-shadow:
      8px 8px 28px var(--black-dark),
      -2px -2px 12px rgba(255,255,255,0.03),
      inset 1px 1px 0 rgba(255,255,255,0.06);
  }

  .contact-heading {
    font-family: var(--font);
    font-weight: 700;
    font-size: 1.4rem;
    letter-spacing: 0.04em;
    color: var(--white);
    margin-bottom: 0.4rem;
  }

  .contact-sub {
    font-family: var(--font);
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 1.8rem;
    letter-spacing: 0.01em;
  }

  .contact-required-note {
    font-family: var(--font);
    font-size: 0.68rem;
    color: var(--muted);
    letter-spacing: 0.08em;
    margin-bottom: 1.6rem;
    display: block;
  }

  .contact-required-note span { color: var(--orange); }

  .contact-field-wrap {
    margin-bottom: 1.2rem;
  }

  .contact-field-wrap .field-label {
    margin-bottom: 6px;
  }

  .contact-field-wrap .field-label .req {
    color: var(--orange);
    margin-left: 2px;
  }

  .contact-textarea {
    background: var(--input-bg);
    color: var(--white);
    border-radius: 10px;
    border: 1px solid rgba(208,208,208,0.08);
    padding: 12px 14px;
    box-sizing: border-box;
    font-family: var(--font);
    font-weight: 400;
    font-size: 0.88rem;
    outline: none;
    width: 100%;
    min-height: 130px;
    resize: vertical;
    transition: border-color 0.2s ease;
    line-height: 1.6;
  }

  .contact-textarea:focus { border-color: rgba(255,96,0,0.4); }

  .contact-submit {
    display: inline-block;
    background: var(--orange);
    color: var(--white);
    font-family: var(--font);
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border: none;
    padding: 0.9rem 2.2rem;
    border-radius: 50px;
    cursor: pointer;
    margin-top: 0.4rem;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow:
      4px 4px 14px var(--black-dark),
      0 4px 14px rgba(255,96,0,0.3);
  }

  .contact-submit:hover {
    background: #ff7a2b;
    transform: translateY(-2px);
    box-shadow:
      6px 6px 18px var(--black-dark),
      0 6px 18px rgba(255,96,0,0.4);
  }

  .contact-submit:active { transform: translateY(0); }

  .contact-status {
    margin-top: 1rem;
    font-family: var(--font);
    font-size: 0.82rem;
    line-height: 1.6;
    display: none;
  }

  .contact-status.success { color: #5ccc7a; display: block; }
  .contact-status.error   { color: #ff6b6b; display: block; }

  /* ── Section divider reuse ── */
  .about-divider {
    width: 100%;
    height: 1px;
    background: rgba(208,208,208,0.1);
    margin: 3.5rem 0;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
  }

  /* ── Mobile ── */
  @media (max-width: 768px) {
    .collapsible-trigger { padding: 1rem 1.2rem; }
    .collapsible-inner { padding: 1rem 1.2rem 1.2rem; }
    .contact-card { padding: 1.8rem 1.4rem; }
    .contact-heading { font-size: 1.15rem; }
  }


* ══════════════════════════════════
   HOME PAGE
   Append these rules to styles.css
   ══════════════════════════════════ */

/* Override shared .main padding — sections handle their own spacing */
.home-main {
  max-width: none;
  padding: 0;
}

/* ── FULL-SCREEN VIDEO HERO ── */
.home-hero {
  position: relative;
  width: 100%;
  height: calc(100vh - 72px);
  height: calc(100svh - 72px);
  min-height: 488px;
  max-height: 1008px;
  overflow: hidden;
  display: block;
}

.home-hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.home-hero-overlay {
  display: none;
}

.home-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

.home-hero-text-block {
  max-width: 33%;
  text-align: left;
}

.home-hero-rule {
  width: 40px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
  margin-bottom: 1.2rem;
}

.home-hero-h1 {
  font-family: var(--font);
  font-weight: 700;
  font-size: clamp(1.5rem, 2.4vw, 2.2rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.1;
  text-shadow: 0 4px 24px rgba(0,0,0,0.6);
  margin-bottom: 0.8rem;
}

.home-hero-sub {
  font-family: var(--font);
  font-weight: 400;
  font-size: clamp(0.78rem, 1.8vw, 1rem);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--grey);
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}

.home-hero-sub span {
  color: var(--white);
  margin: 0 0.3em;
}

/* Scroll arrow */
.home-scroll-arrow {
  position: absolute;
  bottom: 0.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  color: rgba(208,208,208,0.5);
  transition: color 0.3s ease, transform 0.3s ease;
  animation: arrowBob 2s ease-in-out infinite;
}

.home-scroll-arrow:hover {
  color: var(--white);
  animation: none;
  transform: translateX(-50%) translateY(4px);
}

.home-scroll-arrow svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@keyframes arrowBob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ── SHARED SECTION WRAPPER ── */
.home-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

.home-section + .home-section {
  padding-top: 0;
}

/* ── NEWS SECTION ── */
.news-image-wrap {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  margin-bottom: 2rem;
  box-shadow:
    8px 8px 28px var(--black-dark),
    -2px -2px 12px rgba(255,255,255,0.03),
    inset 1px 1px 0 rgba(255,255,255,0.06);
}

.news-image-wrap img {
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: cover;
  display: block;
}

/* ── STREAMING BUTTONS ── */
.stream-buttons {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.4rem;
  width: 100%;
}

.stream-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(208,208,208,0.12);
  border: none;
  border-radius: 14px;
  text-decoration: none;
  flex: 1 1 0;
  height: 48px;
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
  box-shadow:
    4px 4px 12px var(--black-dark),
    -1px -1px 6px rgba(255,255,255,0.04);
}

.stream-btn:hover {
  background: var(--orange);
  transform: scale(0.94);
  box-shadow: 0 4px 16px rgba(255,96,0,0.4);
}

.stream-btn img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  display: block;
}

/* ── SECTION DIVIDER ── */
.home-section-divider {
  width: 100%;
  height: 1px;
  background: rgba(208,208,208,0.1);
  max-width: 900px;
  margin: 0 auto;
}

/* ── WHAT I DO — 3×2 cards grid ── */
.home-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* ── SELECTED WORK — 3×3 image grid ── */
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.work-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--black-light);
  display: block;
  text-decoration: none;
  box-shadow:
    8px 8px 24px var(--black-dark),
    -2px -2px 10px rgba(255,255,255,0.03),
    inset 1px 1px 0 rgba(255,255,255,0.06);
}

.work-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.work-item:hover {
  opacity: 1; /* Keeps the text at full brightness */
}

.work-item:hover img {
  transform: scale(1.04);
  opacity: 0.85; /* Dims only the background image slightly */
}

.work-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,5,5,0.90) 0%, rgba(5,5,5,0.1) 60%);
  display: flex;
  align-items: flex-end;
  padding: 1.2rem 1.4rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.work-item:hover .work-item-overlay { opacity: 1; }

.work-item-title {
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
  text-shadow: 0 1px 8px rgba(0,0,0,0.8);
}

/* ── NAVIGATE SECTION (Audio / Video / Visuals) ── */
.home-nav-divider {
  width: 100%;
  height: 1px;
  background: rgba(208,208,208,0.1);
  max-width: 900px;
  margin: 0 auto 0;
}

.home-nav-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 3.5rem 2rem 5rem;
}

.home-nav-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ── HOME — MOBILE ── */
@media (max-width: 768px) {
  .home-hero {
    height: calc(100vh - 60px);
    height: calc(100svh - 60px);
    min-height: 420px;
  }

  .home-hero-content { padding: 0 1.2rem; }
  .home-section { padding: 3.5rem 1.2rem; }
  .home-cards-grid { grid-template-columns: 1fr; gap: 1.2rem; }
  .work-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .stream-buttons { gap: 0.6rem; flex-wrap: wrap; }
  .stream-btn { flex: 1 1 calc(33.333% - 0.6rem); }
  .home-nav-section { padding: 3rem 1.2rem 4rem; }
  .home-nav-buttons { flex-direction: column; gap: 0.8rem; }
  .home-nav-buttons .dev-btn { width: 100%; }
}

@media (max-width: 480px) {
  .work-grid { grid-template-columns: 1fr; }
}


/* ══════════════════════════════════
   PROJECT PAGE (e.g. Echoes Of Highlands)
   Append these rules to styles.css
   ══════════════════════════════════ */

.project-page-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 2rem 5rem;
}

/* ── VIDEO PLAYER ── */
.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  overflow: hidden;
  background: var(--black-light);
  box-shadow:
    8px 8px 28px var(--black-dark),
    -2px -2px 12px rgba(255,255,255,0.03),
    inset 1px 1px 0 rgba(255,255,255,0.06);
}

.video-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.video-frame:hover .video-thumb { transform: scale(1.03); }

.video-thumb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(5,5,5,0.0) 0%, rgba(5,5,5,0.1) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.video-play-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--orange);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(255,96,0,0.5);
  transition: transform 0.25s ease, background 0.25s ease;
}

.video-play-btn:hover { transform: scale(1.08); background: #ff7a2b; }

.video-play-btn svg {
  width: 30px;
  height: 30px;
  fill: var(--white);
  margin-left: 4px;
}

.yt-player-host {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: none;
}

.video-frame.is-active .video-thumb,
.video-frame.is-active .video-thumb-overlay { display: none; }

.video-frame.is-active .yt-player-host { display: block; }

/* Sits over the iframe so our page — not YouTube's cross-origin iframe —
   keeps receiving mousemove events (needed to reliably show/hide controls,
   especially in fullscreen where there's no bezel around the video). */
.video-hover-catcher {
  position: absolute;
  inset: 0;
  z-index: 3;
  cursor: pointer;
  pointer-events: none;
}

.video-frame.is-active .video-hover-catcher { pointer-events: auto; }

.video-frame.hide-cursor,
.video-frame.hide-cursor .video-hover-catcher {
  cursor: none;
}

/* ── CUSTOM VIDEO CONTROLS (brand styled) ──
   Lives inside .video-frame, overlaid on the bottom edge,
   hidden until the frame is hovered (or a control has focus). */
.video-controls {
  position: absolute;
  left: 0.7rem;
  right: 0.7rem;
  bottom: 0.7rem;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: rgba(22,22,22,0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 0.7rem 1rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

.video-frame.is-active.show-controls .video-controls,
.video-frame.is-active .video-controls:focus-within {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.vc-btn {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(208,208,208,0.08);
  border: 1px solid rgba(208,208,208,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  padding: 0;
}

.vc-btn:hover { background: var(--orange); border-color: var(--orange); transform: scale(1.06); }

.vc-btn svg { width: 16px; height: 16px; fill: var(--white); display: block; }

.vc-btn .icon-vol-off { display: none; }
.vc-btn.is-muted .icon-vol-on { display: none; }
.vc-btn.is-muted .icon-vol-off { display: block; }

.vc-volume {
  -webkit-appearance: none;
  appearance: none;
  width: 70px;
  height: 4px;
  background: rgba(208,208,208,0.15);
  border-radius: 4px;
  cursor: pointer;
  outline: none;
}

.vc-volume::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--orange);
  cursor: pointer;
  border: none;
}

.vc-volume::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--orange);
  cursor: pointer;
  border: none;
}

.vc-volume::-webkit-slider-runnable-track { background: transparent; }
.vc-volume::-moz-range-track { background: rgba(208,208,208,0.15); border-radius: 4px; height: 4px; }

/* ── SUB-HEADER ── */
.project-subheader {
  text-align: center;
  font-family: var(--font);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  max-width: 760px;
  line-height: 1.55;
  margin: 3.5rem auto 2.5rem;
}

/* Use when .project-subheader sits inside a .tool-card instead of alone under the hero */
.project-subheader--boxed {
  margin: 0 0 1.8rem;
}

/* ── PROJECT INFO / CREDITS BLOCK ── */
.credit-list {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1.6rem;
}

.tool-card .credit-list:last-child {
  margin-bottom: 0;
}

.credit-line {
  font-size: 0.88rem;
  color: var(--grey);
  line-height: 1.6;
}

.credit-line em {
  font-style: italic;
  color: var(--muted);
  font-weight: 400;
  margin-right: 0.3rem;
}

.project-desc {
  font-size: 0.92rem;
  line-height: 1.85;
  color: var(--grey);
  margin-bottom: 1.8rem;
}

.tool-card .project-desc:last-child {
  margin-bottom: 0;
}

.project-desc strong { color: var(--white); font-weight: 700; }

.gear-title {
  font-weight: 700;
  color: var(--white);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.7rem;
}

.gear-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.gear-list li {
  font-size: 0.88rem;
  color: var(--grey);
  padding-left: 1rem;
  position: relative;
}

.gear-list lit {
  font-style: italic;
  color: var(--muted);
  font-weight: 400;
  margin-right: 0.5rem;
}

.gear-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--white);
}

/* ── PLAYLIST ── */
.playlist {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.playlist-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--black-light);
  border-radius: 14px;
  padding: 0.7rem 1.2rem;
  box-shadow:
    6px 6px 18px var(--black-dark),
    -2px -2px 8px rgba(255,255,255,0.03),
    inset 1px 1px 0 rgba(255,255,255,0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.playlist-row:hover {
  transform: translateY(-2px);
  box-shadow:
    8px 8px 22px var(--black-dark),
    -2px -2px 8px rgba(255,255,255,0.04),
    0 0 0 1px rgba(255,96,0,0.2);
}

.playlist-index {
  width: 20px;
  flex-shrink: 0;
  text-align: center;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.74rem;
  color: var(--muted);
}

.playlist-name {
  flex: 1;
  font-family: var(--font);
  font-weight: 500;
  font-size: 0.86rem;
  color: var(--white);
  letter-spacing: 0.01em;
}

.play-btn--sm { width: 30px; height: 30px; }
.play-btn--sm svg { width: 15px; height: 15px; }

.playlist-row .player-track { flex: 1 1 160px; max-width: 260px; }

/* ── GALLERY ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  cursor: pointer;
  box-shadow:
    8px 8px 24px var(--black-dark),
    -2px -2px 10px rgba(255,255,255,0.03),
    inset 1px 1px 0 rgba(255,255,255,0.06);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-item:hover img { transform: scale(1.06); }

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5,5,5,0.18);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item:hover .gallery-item-overlay { opacity: 1; }

.gallery-zoom-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(22,22,22,0.55);
  border: 1px solid rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}

.gallery-zoom-icon svg { width: 18px; height: 18px; fill: var(--white); }

/* ── LIGHTBOX ── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(5,5,5,0.94);
  padding: 2rem;
}

.lightbox.open { display: flex; }

.lightbox-img-wrap {
  position: relative;
  width: min(92vw, 1200px);
  max-height: 88vh;
}

.lightbox img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 88vh;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

.lightbox-close,
.lightbox-nav {
  position: fixed;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(208,208,208,0.08);
  border: 1px solid rgba(208,208,208,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.lightbox-close:hover,
.lightbox-nav:hover { background: var(--orange); border-color: var(--orange); }

.lightbox-close { top: 1.5rem; right: 1.5rem; }
.lightbox-nav { top: 50%; transform: translateY(-50%); }
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }

.lightbox-close svg,
.lightbox-nav svg { width: 18px; height: 18px; fill: var(--white); }

@media (max-width: 1024px) and (min-width: 769px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── PROJECT PAGE — MOBILE ── */
@media (max-width: 768px) {
  .project-page-container { padding: 2.5rem 1rem 4rem; }
  .video-play-btn { width: 64px; height: 64px; }
  .video-play-btn svg { width: 24px; height: 24px; }
  .video-controls { left: 0.5rem; right: 0.5rem; bottom: 0.5rem; flex-wrap: wrap; gap: 0.5rem; padding: 0.6rem 0.8rem; }
  .vc-volume { width: 44px; }
  .project-subheader { font-size: 0.95rem; margin: 2.5rem auto 2rem; }
  .project-subheader--boxed { margin: 0 0 1.4rem; }
  .gallery-grid { grid-template-columns: 1fr; gap: 1rem; }
  .playlist-row { flex-wrap: wrap; }
  .playlist-row .player-track { order: 3; flex-basis: 100%; max-width: 100%; margin-top: 0.3rem; }
  .lightbox-nav { width: 38px; height: 38px; }
  .lightbox-prev { left: 0.6rem; }
  .lightbox-next { right: 0.6rem; }
  .lightbox-close { top: 0.8rem; right: 0.8rem; }
}

/* ══════════════════════════════════
   EPISODE SERIES PAGE
   Hero player + Netflix-style episode selector
   ══════════════════════════════════ */

.series-subheader {
  text-align: center;
  font-family: var(--font);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  color: var(--white);
  max-width: 760px;
  line-height: 1.5;
  margin: 0 auto;
}

.now-playing-tag {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-top: 1.75rem;
  margin-bottom: 0.4rem;
}

.now-playing-tag .dot-sm {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
}

/* ── EPISODE LIST ── */
.episode-list {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.episode-row {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  background: var(--black-light);
  border-radius: 14px;
  padding: 0.7rem;
  cursor: pointer;
  border: none;
  text-align: left;
  width: 100%;
  font-family: var(--font);
  box-shadow:
    6px 6px 18px var(--black-dark),
    -2px -2px 8px rgba(255,255,255,0.03),
    inset 1px 1px 0 rgba(255,255,255,0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.episode-row:hover {
  transform: translateY(-2px);
  box-shadow:
    8px 8px 22px var(--black-dark),
    -2px -2px 8px rgba(255,255,255,0.04),
    0 0 0 1px rgba(255,96,0,0.2);
}

.episode-row.is-current {
  box-shadow:
    0 0 0 2px var(--orange),
    8px 8px 22px var(--black-dark);
}

.episode-thumb-wrap {
  position: relative;
  width: 168px;
  flex-shrink: 0;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  overflow: hidden;
  background: var(--black-dark);
}

.episode-thumb-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.episode-play-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5,5,5,0.3);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.episode-row:hover .episode-play-icon,
.episode-row.is-current .episode-play-icon { opacity: 1; }

.episode-play-icon svg { width: 26px; height: 26px; fill: var(--white); }

.episode-row.is-current .episode-play-icon svg.icon-play { display: none; }
.episode-row.is-current .episode-play-icon svg.icon-playing { display: block; }
.episode-row:not(.is-current) .episode-play-icon svg.icon-playing { display: none; }

.episode-info {
  flex: 1;
  min-width: 0;
}

.episode-num {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 0.25rem;
}

.episode-row.is-current .episode-num { color: var(--orange); }

.episode-title {
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.3rem;
  line-height: 1.35;
}

.episode-desc {
  font-size: 0.8rem;
  color: var(--grey);
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.episode-duration {
  flex-shrink: 0;
  font-size: 0.76rem;
  font-weight: 500;
  color: var(--muted);
  align-self: flex-start;
  margin-top: 0.15rem;
}

/* ── EPISODE PAGE — MOBILE ── */
@media (max-width: 640px) {
  .episode-row { align-items: flex-start; gap: 0.8rem; padding: 0.6rem; }
  .episode-thumb-wrap { width: 112px; }
  .episode-desc { -webkit-line-clamp: 2; }
  .episode-duration { display: none; }
}

/* ══════════════════════════════════
   AUDIO-ONLY PLAYLIST (YouTube-backed)
   Used on EP / album pages where tracks are
   hosted on YouTube but shown as an audio playlist
   ══════════════════════════════════ */
.yt-audio-host {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

/* ══════════════════════════════════
   VIDEO GRID (multiple hero-style players side by side)
   Each .video-grid-item wraps a full .video-frame + .video-controls
   (identical component to the single hero player), just laid out 2-up.
   ══════════════════════════════════ */
.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6rem;
}

.video-grid-item .video-frame {
  margin-bottom: 0;
}

.video-grid-caption {
  text-align: center;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.86rem;
  color: var(--white);
  margin-top: 0.9rem;
}

.video-grid-caption span {
  display: block;
  font-weight: 400;
  font-size: 0.74rem;
  color: var(--muted);
  margin-top: 0.2rem;
  letter-spacing: 0.03em;
}

@media (max-width: 768px) {
  .video-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* ══════════════════════════════════
   PLAIN TRACKLIST (no players — used when tracks
   aren't individually available to embed/play)
   ══════════════════════════════════ */
.tracklist-plain {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(5, auto);
  grid-auto-flow: column;
  gap: 0.6rem 2rem;
}

.tracklist-plain li {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
  font-family: var(--font);
  font-size: 0.9rem;
  color: var(--white);
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(208,208,208,0.08);
}

.tracklist-plain .track-num {
  font-weight: 700;
  color: var(--muted);
  font-size: 0.78rem;
  flex-shrink: 0;
  width: 1.4rem;
}

@media (max-width: 640px) {
  .tracklist-plain { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════
   HYPERMODE / BAND PAGE
   ══════════════════════════════════ */

/* Paragraphs inside a collapsible (lore chapters etc.) — mirrors .about-bio p */
.collapsible-inner p {
  font-family: var(--font);
  font-size: 0.88rem;
  line-height: 1.85;
  color: var(--grey);
  margin-bottom: 1.1rem;
  letter-spacing: 0.01em;
}

.collapsible-inner p:last-child { margin-bottom: 0; }

/* Band member list — reuses the gear-list dot-bullet pattern */
.member-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0 1.8rem;
}

.member-list li {
  font-size: 0.88rem;
  color: var(--grey);
  padding-left: 1rem;
  position: relative;
}

.member-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--orange);
}

.member-list li strong {
  color: var(--white);
  font-weight: 600;
}

/* Releases grid — scales to any multiple of 3; reuses .work-item card styling */
.release-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 900px) {
  .release-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .release-grid { grid-template-columns: 1fr; }
}

/* Inline SVG icons inside .stream-btn (used when no icon image asset exists yet,
   e.g. Instagram / YouTube / SoundCloud — generic glyphs, swap for brand assets later) */
.stream-btn svg {
  width: 26px;
  height: 26px;
  fill: var(--white);
  display: block;
  transition: fill 0.25s ease;
}

.stream-btn:hover svg { fill: var(--white); }
