/* ============================================================
   SHARON HURVITZ v2 — style.css
   Aesthetic: refined editorial — Zodiak + Satoshi
   ============================================================ */

:root {
  /* WARMER BACKGROUNDS */
  --bg:           #F9F7F3; 
  --bg-card:      #FFFFFF;
  --bg-muted:     #F0EDE6; 

  /* RICHER TEXT */
  --text:         #2A2826; 
  --text-mid:     #4A4440; 
  --text-muted:   #6B6460;

  /* WARMER BORDERS */
  --border:       #E8E3DB; 
  --border-mid:   #D4CFC6;

  /* THE ORGANIC ACCENT (Botanical Green) */
  --accent:       #2A3B2C; 
  
  --font-display: 'Zodiak', Georgia, serif;
  --font-body:    'Satoshi', system-ui, sans-serif;
  
  --radius:       10px;
  --radius-lg:    16px;
  --ease:         cubic-bezier(0.25,0.46,0.45,0.94);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font-family: var(--font-body); }

/* ── PAGES ── */
.page { display: none; }
.page.active { display: block; animation: fadeUp 0.4s var(--ease) both; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: none; }
}

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }

/* ── NAV ── */
.nav {
  position: sticky; top: 0; z-index: 100;
  display: flex; justify-content: space-between; 
  align-items: center; 
  padding: 20px 48px 16px;
  background: rgba(249,247,243,0.94); 
  backdrop-filter: blur(10px);
  border-bottom: 0.5px solid var(--border);
  transition: box-shadow 0.3s;
}
.nav-logo { display: block; }
.nav-logo-img { height: 48px; width: auto; display: block; }

.nav-links { display: flex; gap: 28px; }
.nav-links a {
  font-size: 12px; color: var(--text-muted);
  letter-spacing: 0.06em; text-transform: uppercase;
  transition: color 0.2s; padding-bottom: 1px;
}
.nav-links a:hover { color: var(--text); }
.nav-links a.active { color: var(--text); border-bottom: 0.5px solid var(--border-mid); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px; z-index: 200;
}
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--text); transition: 0.3s var(--ease); }

/* ── SECTIONS ── */
.sec { padding: 56px 48px; border-bottom: 0.5px solid var(--border); }
.sec-label {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.09em;
  color: var(--text-muted); margin-bottom: 32px;
}

/* ── HERO ── */
.hero {
  padding: 72px 48px 64px;
  border-bottom: 0.5px solid var(--border);
  min-height: 80vh; display: flex; flex-direction: column; justify-content: center;
}
.eyebrow {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.09em;
  color: var(--text-muted); margin-bottom: 18px;
}
.hero-name {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.5vw, 60px);
  font-weight: 300; line-height: 1.12;
  color: var(--text); margin-bottom: 22px;
  letter-spacing: -0.01em;
}
.hero-name em { font-style: italic; font-weight: 300; color: var(--text-mid); }
.hero-meta {
  font-size: 14px; color: var(--text-mid);
  line-height: 1.8; max-width: 520px; margin-bottom: 36px;
}
.btn-row { display: flex; gap: 12px; flex-wrap: wrap; }
.btn {
  display: inline-block; font-size: 12px; letter-spacing: 0.04em;
  padding: 11px 22px; border-radius: var(--radius);
  border: 0.5px solid transparent; cursor: pointer;
  transition: all 0.2s var(--ease);
}

/* Updated to use the green accent color */
.btn-primary { background: var(--accent); color: var(--bg-card); font-weight: 500; }
.btn-primary:hover { background: #1E2A1F; }

.btn-secondary { background: transparent; color: var(--text); border-color: var(--border-mid); }
.btn-secondary:hover { background: var(--bg-muted); }
/* ── HERO ── */
.hero {
  padding: 72px 48px 64px;
  border-bottom: 0.5px solid var(--border);
  min-height: 80vh; display: flex; flex-direction: column; justify-content: center;
}
.eyebrow {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.09em;
  color: var(--text-muted); margin-bottom: 18px;
}
.hero-name {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.5vw, 60px);
  font-weight: 300; line-height: 1.12;
  color: var(--text); margin-bottom: 22px;
  letter-spacing: -0.01em;
}
.hero-name em { font-style: italic; font-weight: 300; color: var(--text-mid); }
.hero-meta {
  font-size: 14px; color: var(--text-mid);
  line-height: 1.8; max-width: 520px; margin-bottom: 36px;
}
.btn-row { display: flex; gap: 12px; flex-wrap: wrap; }
.btn {
  display: inline-block; font-size: 12px; letter-spacing: 0.04em;
  padding: 11px 22px; border-radius: var(--radius);
  border: 0.5px solid transparent; cursor: pointer;
  transition: all 0.2s var(--ease);
}
.btn-primary { background: var(--text); color: var(--bg); font-weight: 500; }
.btn-primary:hover { background: #3A3632; }
.btn-secondary { background: transparent; color: var(--text); border-color: var(--border-mid); }
.btn-secondary:hover { background: var(--bg-muted); }

/* ── DISC GRID ── */
.disc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
}
.album-card {
  cursor: pointer; border-radius: var(--radius-lg);
  overflow: hidden; border: 0.5px solid var(--border);
  background: var(--bg-card);
  transition: border-color 0.2s, transform 0.2s var(--ease);
}
.album-card:hover { border-color: var(--border-mid); transform: translateY(-3px); }
.album-card img { width: 100%; aspect-ratio: 1; object-fit: cover; display: block; }
.album-card-body { padding: 10px 13px 14px; }
.album-card-title {
  font-size: 13px; font-weight: 500; color: var(--text);
  line-height: 1.3; margin-bottom: 3px;
}
.album-card-subtitle { font-size: 11px; color: var(--text-muted); font-style: italic; }
.album-card-artist { font-size: 12px; color: var(--text-mid); margin-top: 2px; }
.album-card-role {
  font-size: 10px; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.05em; margin-top: 5px;
}

/* ── ALBUM DETAIL MODAL (MINIMALIST) ── */
.album-detail-minimal {
  margin-bottom: 72px;
  animation: fadeUp 0.3s var(--ease) both;
}
.detail-back {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--text-muted); cursor: pointer; margin-bottom: 40px;
  background: none; border: none; transition: color 0.2s;
}
.detail-back:hover { color: var(--text); }
.detail-back::before { content: '←'; font-size: 13px; }

/* The side-by-side layout for art and text */
.album-hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 48px;
}
.album-hero-img {
  width: 100%;
  max-width: 500px;
  aspect-ratio: 1;
  object-fit: cover;
  justify-self: end; /* Pushes the image toward the center */
}
.album-hero-text {
  justify-self: start; /* Pushes the text toward the center */
}

/* Typography matching the editorial style */
.album-hero-artist {
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--text-mid);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.album-hero-title {
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 300;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 24px;
}
.album-hero-credits p {
  font-size: 15px;
  color: var(--text-mid);
  margin-bottom: 8px;
}

/* The condensed tags row */
.album-hero-tags {
  text-align: center;
  font-size: 13px;
  color: var(--text-mid);
  border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
  padding: 16px 0;
  max-width: 800px;
  margin: 0 auto;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .album-hero-split {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  .album-hero-img, .album-hero-text {
    justify-self: center;
  }
}
/* ── BIO ── */
.bio-body { max-width: 640px; }
.bio-body p {
  font-size: 14px; color: var(--text-mid); line-height: 1.85;
}
.bio-body p + p { margin-top: 16px; }
.bio-body em { font-style: italic; }

/* ── COMPOSITION ── */
.comp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.comp-card {
  border: 0.5px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; background: var(--bg-card);
}
.comp-card img { width: 100%; aspect-ratio: 1; object-fit: cover; display: block; }
.comp-card-body { padding: 16px; }
.comp-title {
  font-family: var(--font-display);
  font-size: 18px; font-weight: 400; color: var(--text); margin-bottom: 4px;
}
.comp-sub { font-size: 12px; color: var(--text-muted); margin-bottom: 4px; }
.comp-roles {
  font-size: 11px; color: var(--text-muted); letter-spacing: 0.04em;
  text-transform: uppercase; margin-bottom: 14px;
}
.tracklist { border-top: 0.5px solid var(--border); padding-top: 10px; margin-bottom: 14px; }

.player-placeholder {
  background: var(--bg-muted); border-radius: var(--radius);
  padding: 12px 14px; font-size: 12px; color: var(--text-muted);
  border: 0.5px dashed var(--border-mid); text-align: center;
}
.comp-card--cta {
  display: flex; align-items: center; justify-content: center;
  min-height: 300px; border-style: dashed; cursor: pointer;
  background: var(--bg-muted);
  transition: border-color 0.2s;
}
.comp-card--cta:hover { border-color: var(--border-mid); }
.cta-inner { text-align: center; }
.cta-plus { font-size: 28px; color: var(--text-muted); display: block; margin-bottom: 10px; }
.cta-text { font-size: 13px; color: var(--text-mid); margin-bottom: 4px; }
.cta-sub { font-size: 11px; color: var(--text-muted); }

/* ── CONTACT FORM REFINED ── */
.contact-wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 0 100px;
}
.contact-intro {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 40px;
  color: var(--text-mid);
}
.contact-intro a {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* THE NEW OUTER BOX */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 48px;
  border: 1px solid var(--border-mid); /* Creates the document box */
  background: var(--bg-card); /* Pops it off the background slightly */
}

.split-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.input-wrap {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* Labels */
.contact-form label, 
.group-label {
  font-size: 13px;
  color: var(--text);
}
.contact-form .req {
  font-size: 11px;
  color: var(--text-muted);
  margin-left: 4px;
}

/* TEXT BOXES - THINNER PROFILES */
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea,
.contact-form select {
  width: 100%;
  background: transparent;
  border: 1px solid var(--border-mid);
  padding: 8px 12px; /* Drastically reduced to match Heba's thin look */
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text);
  outline: none;
  border-radius: 0;
  transition: border-color 0.2s var(--ease);
  -webkit-appearance: none;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--text);
}
.contact-form textarea {
  resize: vertical;
  min-height: 100px; /* Shortened to match the thinner vibe */
}

/* Custom Dropdown Arrow */
.contact-form select {
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%235C554D%22%20stroke-width%3D%221.5%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpolyline%20points%3D%226%209%2012%2015%2018%209%22%3E%3C%2Fpolyline%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 14px;
}

/* Checkboxes */
.checkbox-group {
  display: flex;
  flex-direction: column;
}
.checkbox-group .sub-label {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
  margin-bottom: 16px;
}
.check-container {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  cursor: pointer;
}

/* Force Custom Square Checkboxes */
.check-container input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 14px; /* Slightly smaller */
  height: 14px;
  border: 1px solid var(--border-mid);
  border-radius: 0;
  background: transparent;
  cursor: pointer;
  position: relative;
  margin: 0;
}
.check-container input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  top: 2px; left: 2px;
  width: 8px; height: 8px;
  background: var(--text);
}
.check-text {
  font-size: 13px;
  color: var(--text);
}

.submit-btn {
  align-self: flex-start;
  padding: 10px 36px;
  margin-top: 12px;
}

@media (max-width: 600px) {
  .split-inputs { grid-template-columns: 1fr; }
  .contact-form { padding: 24px; } /* Slightly less box padding on mobile */
}
/* ── FOOTER ── */
.footer {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 48px;
  font-size: 11px; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.05em;
  border-top: 0.5px solid var(--border);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav { padding: 16px 24px; }
  
  /* 1. Compact Editorial Dropdown Menu */
  .nav-links { 
    display: flex; flex-direction: column; gap: 0;
    position: absolute; 
    top: calc(100% + 8px); 
    right: 24px; /* Anchored neatly to the right, under the hamburger */
    width: 200px; /* Very compact width */
    background: var(--bg-card); /* Crisp white/oat to match the contact form */
    border: 1px solid var(--border-mid); /* The outer box */
    border-radius: 4px; /* Slight, elegant softening of the corners */
    box-shadow: 0 12px 32px rgba(0,0,0,0.06); /* Soft, elevated shadow */
    z-index: 150; 
    opacity: 0; pointer-events: none;
    transform-origin: top right;
    transform: translateY(-8px) scale(0.96); /* Drops and snaps into place */
    transition: all 0.3s var(--ease);
    overflow: hidden; /* Keeps the internal borders tidy */
  }

  /* 2. Fade and scale in */
  .nav-links.open {
    opacity: 1; pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  /* 3. Small, spaced editorial typography inside stacked boxes */
  .nav-links a { 
    font-family: var(--font-body); 
    font-size: 11px; 
    text-transform: uppercase; 
    letter-spacing: 0.08em;
    color: var(--text-mid);
    padding: 16px 20px;
    border-bottom: 0.5px solid var(--border); /* Creates the internal box lines */
    transition: background 0.2s, color 0.2s;
    text-align: right; /* Aligns text cleanly to the hamburger side */
  }
  
  /* Removes the line from the very last item so it doesn't double up with the outer border */
  .nav-links a:last-child {
    border-bottom: none;
  }
  
  .nav-links a:hover {
    background: var(--bg-muted);
  }

  /* Active page state styling */
  .nav-links a.active { 
    color: var(--text); 
    font-weight: 500;
    background: var(--bg);
    border-bottom: 0.5px solid var(--border); /* overrides original active border */
  }
  .nav-links a:last-child.active {
    border-bottom: none; 
  }
  
  .hamburger { display: flex; z-index: 200; }
  
  .hero { padding: 56px 24px 48px; min-height: auto; }
  .hero-name { font-size: 36px; }
  .sec { padding: 48px 24px; }
  .disc-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }
  .album-detail-inner { grid-template-columns: 1fr; }
  .album-detail-img { max-height: 260px; width: 100%; object-fit: cover; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .comp-grid { grid-template-columns: 1fr; }
  .footer { padding: 16px 24px; flex-direction: column; gap: 6px; text-align: center; }
}
@media (max-width: 520px) {
  .disc-grid { grid-template-columns: 1fr 1fr; }
  .check-grid { grid-template-columns: 1fr; }
  .form-row-2 { grid-template-columns: 1fr; }
  .hero-name { font-size: 30px; }
}

/* ── HOME SPLIT LAYOUT (ADDED FOR V2) ── */
.home-split-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr; 
  max-width: 1500px; /* Stops the layout from separating infinitely on large monitors */
  margin: 0 auto;    /* Centers the layout if the screen is wider than 1500px */
  min-height: 85vh;
  border-bottom: 0.5px solid var(--border);
  align-items: stretch; 
}

.home-split-layout .hero {
  /* The 15% left padding pushes your text to the right, closing the gap */
  padding: 80px 48px 80px 15%; 
  border-bottom: none;
  min-height: auto;
  display: block; 
}

.home-split-layout .home-discography-section {
  /* The 15% right padding squeezes the grid, making the albums smaller */
  padding: 80px 15% 80px 48px; 
  border-bottom: none;
  border-left: 0.5px solid var(--border); 
  background: var(--bg-card); 
}

/* Pull the albums a little closer to the title to reduce clunkiness */
/* Upgrade the Discography Highlights label to a full section header */
.home-split-layout .sec-label {
  font-family: 'Satoshi', sans-serif; /* Adds the new font */
  font-size: 24px;          
  font-weight: 500;         /* Satoshi looks great a bit bolder */
  color: var(--text);       
  letter-spacing: 0.04em;   /* Tightened up slightly for a sans-serif */
  margin-bottom: 32px;      
  text-align: center;       
}

#home-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 16px; /* Slightly tighter gap to match the newly condensed cards */
}

/* Smooth adjustments for laptops and tablets */
@media (max-width: 1200px) {
  .home-split-layout .hero { padding: 80px 48px 80px 8%; }
  .home-split-layout .home-discography-section { padding: 80px 8% 80px 48px; }
}

@media (max-width: 1024px) {
  .home-split-layout { grid-template-columns: 1fr; }
  .home-split-layout .hero { padding: 60px 24px 40px; }
  .home-split-layout .home-discography-section {
    padding: 40px 24px 60px;
    border-left: none;
    border-top: 0.5px solid var(--border);
  }
}

@media (max-width: 520px) {
  #home-grid { grid-template-columns: 1fr !important; }
}
/* ── AUDIO TRACKLIST PLAYER ── */
.track {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  font-size: 12px;
  color: var(--text-mid);
  border-bottom: 0.5px solid var(--border);
  cursor: pointer;
  transition: color 0.15s;
  flex-wrap: wrap;
  position: relative;
}
.track:last-child { border-bottom: none; }
.track:hover { color: var(--text); }
.track:hover .track-play { color: var(--text); }

.track.playing {
  color: var(--accent);
}
.track.playing .tn,
.track.playing .track-play {
  color: var(--accent);
}

.track-play {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 9px;
  color: var(--text-muted);
  padding: 0;
  width: 16px;
  flex-shrink: 0;
  transition: color 0.15s;
  line-height: 1;
}

.track-name {
  flex: 1;
}

.track-duration {
  font-size: 11px;
  color: var(--text-muted);
  min-width: 32px;
  text-align: right;
}

/* Progress bar — only visible on the active track */
.track-progress-bar {
  width: 100%;
  height: 2px;
  background: var(--border);
  border-radius: 1px;
  margin-top: 4px;
  flex-basis: 100%;
  cursor: pointer;
  display: none;
  position: relative;
}

.track-progress-bar::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  bottom: -10px;
}
.track-progress-bar.visible {
  display: block;
}
.track-progress-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 1px;
  width: 0%;
  transition: width 0.1s linear;
  pointer-events: none;
}
/* ── FOOTER SOCIAL ICONS ── */
.footer-links {
  display: flex;
  gap: 20px;
  align-items: center;
}
.footer-links a {
  color: var(--text-muted);
  transition: color 0.2s;
  display: flex;
  align-items: center;
}
.footer-links a:hover {
  color: var(--text);
}
/* ── COMPOSITION LAYOUT ── */
.comp-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 20px;
  align-items: start;
}

.comp-main {
  height: auto;
}

.comp-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: auto;
}
.comp-sidebar .single-card {
  flex: 1;
}
.comp-sidebar .single-art-wrap {
  width: 160px;
}
.comp-card--cta {
  flex: 1;
  min-height: 120px;
}

/* Singles */
.single-card {
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
  display: flex;
  flex-direction: row;
  transition: border-color 0.2s, transform 0.2s var(--ease);
}
.single-card:hover { border-color: var(--border-mid); transform: translateY(-2px); }
.single-art-wrap {
  width: 160px;
  flex-shrink: 0;
}
.single-art {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.single-art-placeholder {
  background: var(--bg-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 110px;
}
.placeholder-icon {
  font-size: 24px;
  color: var(--text-muted);
}
.single-body {
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
}
.single-badge {
  font-size: 9px; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--text-muted); border: 0.5px solid var(--border-mid);
  border-radius: 100px; padding: 2px 8px;
  width: fit-content; margin-bottom: 4px;
}
.single-title {
  font-family: var(--font-display);
  font-size: 15px; font-weight: 400;
  color: var(--text); line-height: 1.2;
}
.single-sub {
  font-size: 11px; color: var(--text-muted);
}
.single-roles {
  list-style: none; margin-top: 5px;
  display: flex; flex-direction: column; gap: 2px;
}
.single-roles li {
  font-size: 11px; color: var(--text-mid);
}
.single-roles li:last-child {
  color: var(--text-muted);
  font-style: italic;
}

@media (max-width: 900px) {
  .comp-layout { grid-template-columns: 1fr; }
  .comp-main { height: auto; }
  .comp-sidebar { height: auto; flex-direction: column; }
  .comp-card--cta { min-height: 200px; flex: none; }
}
/* ── SINGLE AUDIO PLAYER ── */
.single-player {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.single-play-btn {
  background: none;
  border: 0.5px solid var(--border-mid);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--text-mid);
  padding: 5px 12px;
  cursor: pointer;
  width: fit-content;
  transition: color 0.15s, border-color 0.15s;
}
.single-play-btn:hover { color: var(--text); border-color: var(--border-mid); }
.single-card.playing .single-play-btn { color: var(--accent); border-color: var(--accent); }
.single-progress-bar {
  width: 100%;
  height: 2px;
  background: var(--border);
  border-radius: 1px;
  cursor: pointer;
  display: none;
  position: relative;
}
.single-progress-bar::before {
  content: '';
  position: absolute;
  top: -10px; left: 0; right: 0; bottom: -10px;
}
.single-progress-bar.visible { display: block; }
.single-progress-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 1px;
  width: 0%;
  transition: width 0.1s linear;
  pointer-events: none;
}
.single-duration {
  font-size: 11px;
  color: var(--text-muted);
}
