/* =====================
   ROOT & RESET
   ===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0e0e0e;
  --bg2: #141414;
  --bg3: #1a1a1a;
  --surface: #1e1e1e;
  --border: #2a2a2a;
  --gold: #c9a96e;
  --gold-light: #e0c08a;
  --white: #f5f0e8;
  --muted: #888;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --radius: 4px;
  --radius-lg: 12px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
  outline: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* =====================
   TYPOGRAPHY
   ===================== */
h1, h2, h3 { font-family: var(--font-serif); font-weight: 400; line-height: 1.15; }
h1 { font-size: clamp(2.8rem, 7vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.35rem; }

.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 3.5rem;
}

.section-header h2 { margin-bottom: 0.75rem; }

.section-desc {
  color: var(--muted);
  font-size: 1rem;
}

/* =====================
   BUTTONS
   ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: var(--transition);
}

.btn-primary {
  background: var(--gold);
  color: #0e0e0e;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }

.btn-outline {
  border: 1px solid rgba(201,169,110,0.4);
  color: var(--gold);
}
.btn-outline:hover {
  border-color: var(--gold);
  background: rgba(201,169,110,0.08);
  transform: translateY(-2px);
}

.btn-full { width: 100%; }

/* =====================
   NAVBAR
   ===================== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: var(--transition);
}

#navbar.scrolled {
  background: rgba(14,14,14,0.92);
  backdrop-filter: blur(16px);
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 48px;
  width: auto;
  display: block;
  object-fit: contain;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.7);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--gold); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: var(--transition);
}

/* =====================
   HERO
   ===================== */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

#hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 180px;
  background: linear-gradient(to bottom, transparent, var(--bg));
  pointer-events: none;
  z-index: 2;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0e0e0e 0%, #1a1208 40%, #0a0a0a 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(201,169,110,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 50% 80% at 20% 80%, rgba(201,169,110,0.04) 0%, transparent 60%);
}

.hero-shapes { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }

.shape {
  position: absolute;
  border: 1px solid rgba(201,169,110,0.12);
  animation: shapeFloat 8s ease-in-out infinite;
}
.shape-1 { width: 400px; height: 400px; top: 10%; right: 5%; border-radius: 50%; animation-delay: 0s; }
.shape-2 { width: 200px; height: 200px; bottom: 20%; right: 20%; border-radius: 50%; animation-delay: -3s; }
.shape-3 { width: 600px; height: 600px; top: -10%; right: -10%; border-radius: 50%; opacity: 0.4; animation-delay: -6s; }

@keyframes shapeFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(3deg); }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  padding-top: 6rem;
  padding-bottom: 10rem;
}

.hero-logo {
  height: 120px;
  width: auto;
  margin-bottom: 2rem;
  display: block;
}

.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.hero-title {
  color: var(--white);
  margin-bottom: 1.25rem;
  max-width: 700px;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: 1rem;
  color: rgba(245,240,232,0.6);
  max-width: 480px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.4);
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(201,169,110,0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* =====================
   ABOUT
   ===================== */
#about {
  padding: 8rem 0;
  background: var(--bg);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-image-wrap { position: relative; }

.about-image {
  position: relative;
  aspect-ratio: 3/4;
  max-width: 420px;
}

.about-img-placeholder {
  width: 100%;
  height: 100%;
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
}

.about-img-placeholder svg { width: 60%; height: 60%; opacity: 0.5; }
.about-img-placeholder img { width: 100%; height: 100%; object-fit: cover; display: block; }

.img-placeholder-hint {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--gold);
  color: #0e0e0e;
  padding: 1.25rem;
  border-radius: var(--radius-lg);
  text-align: center;
  min-width: 90px;
}

.badge-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
}

.badge-txt {
  font-size: 0.7rem;
  font-weight: 500;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.about-text h2 { margin-bottom: 1.25rem; }
.about-text p { color: rgba(245,240,232,0.65); margin-bottom: 1rem; font-size: 1rem; }

.about-stats {
  display: flex;
  gap: 2rem;
  margin: 2rem 0;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stat-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--gold);
}

.stat-label {
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* =====================
   PORTFOLIO
   ===================== */
#portfolio {
  padding: 8rem 0;
  background: var(--bg2);
}

.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.55rem 1.5rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--muted);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--gold);
  color: #0e0e0e;
  border-color: var(--gold);
}

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

.portfolio-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}

.portfolio-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.portfolio-card.hidden { display: none; }

.card-image {
  position: relative;
  overflow: hidden;
}

.img-ph {
  width: 100%;
  aspect-ratio: 4/3;
}

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

.card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(14,14,14,0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  opacity: 0;
  transition: opacity var(--transition);
}

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

.card-cat {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 0.3rem 0.9rem;
  border-radius: 100px;
}

.card-view {
  padding: 0.6rem 1.5rem;
  background: var(--gold);
  color: #0e0e0e;
  border-radius: var(--radius);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: background var(--transition);
}
.card-view:hover { background: var(--gold-light); }

.card-info {
  padding: 1.25rem;
}

.card-info h3 {
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
  color: var(--white);
}

.card-info p {
  font-size: 0.8rem;
  color: var(--muted);
}

/* =====================
   SERVICES
   ===================== */
#services {
  padding: 8rem 0;
  background: var(--bg);
}

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

.service-card {
  padding: 2rem;
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.service-card:hover {
  border-color: rgba(201,169,110,0.3);
  background: var(--bg3);
  transform: translateY(-4px);
}

.service-icon {
  width: 48px;
  height: 48px;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.service-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.7;
}

/* =====================
   CONTACT
   ===================== */
#contact {
  padding: 8rem 0;
  background: var(--bg2);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 600px;
}

.contact-info h2 { margin-bottom: 1rem; }
.contact-info > p { color: rgba(245,240,232,0.6); margin-bottom: 2rem; }

.contact-items { display: flex; flex-direction: column; gap: 1.25rem; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  width: 40px;
  height: 40px;
  background: rgba(201,169,110,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.contact-icon svg { width: 18px; height: 18px; }

.contact-item strong { display: block; font-size: 0.8rem; color: var(--muted); margin-bottom: 0.2rem; text-transform: uppercase; letter-spacing: 0.1em; }
.contact-item p { font-size: 0.9rem; color: var(--white); }

/* FORM */
.contact-form {
  background: var(--surface);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--white);
  transition: border-color var(--transition);
}

.form-group select option { background: var(--bg2); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

.form-group textarea { resize: vertical; }

.form-success {
  display: none;
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  background: rgba(201,169,110,0.12);
  border: 1px solid rgba(201,169,110,0.3);
  border-radius: var(--radius);
  font-size: 0.875rem;
  color: var(--gold);
  text-align: center;
}
.form-success.show { display: block; }

/* =====================
   FOOTER
   ===================== */
footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 3rem 0 1.5rem;
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.75rem;
  max-width: 240px;
}

.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  align-items: center;
}

.footer-links a {
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }

.footer-social {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.social-link {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--muted);
  transition: var(--transition);
}
.social-link svg { width: 16px; height: 16px; }
.social-link:hover { color: var(--gold); border-color: var(--gold); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  text-align: center;
}
.footer-bottom p { font-size: 0.8rem; color: var(--muted); }

/* =====================
   MODAL
   ===================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  max-width: 700px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: scale(0.95);
  transition: transform var(--transition);
}

.modal-overlay.open .modal {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg3);
  border-radius: var(--radius);
  color: var(--muted);
  transition: var(--transition);
  z-index: 1;
}
.modal-close:hover { color: var(--white); background: var(--border); }
.modal-close svg { width: 18px; height: 18px; }

.modal-body {
  padding: 2.5rem;
}

.modal-body .modal-img svg { width: 100%; height: auto; display: block; border-radius: var(--radius); }
.modal-body .modal-img img { width: 100%; height: auto; max-height: 400px; object-fit: cover; display: block; border-radius: var(--radius); }

.modal-body h3 { font-size: 1.6rem; margin: 1.25rem 0 0.5rem; }

.modal-meta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.modal-meta span {
  font-size: 0.78rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.modal-meta span strong { color: var(--gold); }

.modal-desc { font-size: 0.95rem; color: rgba(245,240,232,0.65); line-height: 1.8; }

.modal-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 1.25rem;
}

.modal-tags span {
  font-size: 0.75rem;
  padding: 0.3rem 0.85rem;
  background: rgba(201,169,110,0.1);
  border: 1px solid rgba(201,169,110,0.2);
  border-radius: 100px;
  color: var(--gold);
}

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-image { max-width: 360px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
}

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

  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 260px;
    height: 100vh;
    background: rgba(14,14,14,0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
    gap: 2rem;
    border-left: 1px solid var(--border);
    transition: right var(--transition);
  }

  .nav-links.open { right: 0; }
  .nav-links a { font-size: 1rem; }

  .nav-toggle { display: flex; }

  .portfolio-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }

  #about, #portfolio, #services, #contact { padding: 5rem 0; }

  .about-stats { gap: 1.25rem; }

  .form-row { grid-template-columns: 1fr; }

  .hero-content { padding-top: 7rem; }

  .footer-inner { flex-direction: column; gap: 1.5rem; }
  .footer-links { gap: 1rem; }
}

@media (max-width: 480px) {
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { text-align: center; }
  .contact-form { padding: 1.5rem; }
  .modal-body { padding: 1.5rem; }
}

/* =====================
   MUSIC PLAYER
   ===================== */
.music-widget {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1500;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
}

.music-fab {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gold);
  color: #0e0e0e;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(201,169,110,0.35);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  flex-shrink: 0;
}

.music-fab:hover {
  background: var(--gold-light);
  transform: scale(1.07);
  box-shadow: 0 6px 28px rgba(201,169,110,0.5);
}

.music-note-icon { width: 22px; height: 22px; }

.music-eq-fab {
  align-items: flex-end;
  gap: 3px;
  height: 18px;
}

.music-eq-fab span {
  display: block;
  width: 3px;
  background: #0e0e0e;
  border-radius: 2px;
  animation: eqBounce 0.9s ease infinite;
}

.music-eq-fab span:nth-child(1) { animation-delay: 0s; }
.music-eq-fab span:nth-child(2) { animation-delay: 0.15s; }
.music-eq-fab span:nth-child(3) { animation-delay: 0.3s; }

@keyframes eqBounce {
  0%, 100% { height: 5px; }
  50% { height: 18px; }
}

.music-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  width: 268px;
  overflow: hidden;
  transform: translateY(12px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), opacity 0.3s ease;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
}

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

.music-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1rem 0.5rem;
}

.music-panel-label {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.music-panel-close {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  border-radius: var(--radius);
  transition: color var(--transition);
}
.music-panel-close:hover { color: var(--white); }
.music-panel-close svg { width: 14px; height: 14px; }

.music-panel-body {
  padding: 0 1rem 0.85rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.music-panel-info {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.music-eq-sm {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 14px;
}

.music-eq-sm span {
  display: block;
  width: 3px;
  background: var(--gold);
  border-radius: 2px;
}

.music-eq-sm span:nth-child(1) { height: 6px; }
.music-eq-sm span:nth-child(2) { height: 14px; }
.music-eq-sm span:nth-child(3) { height: 4px; }
.music-eq-sm span:nth-child(4) { height: 10px; }

.music-eq-sm.playing span:nth-child(1) { animation: eqBounce 0.7s ease infinite 0s; }
.music-eq-sm.playing span:nth-child(2) { animation: eqBounce 0.7s ease infinite 0.1s; }
.music-eq-sm.playing span:nth-child(3) { animation: eqBounce 0.7s ease infinite 0.25s; }
.music-eq-sm.playing span:nth-child(4) { animation: eqBounce 0.7s ease infinite 0.35s; }

.music-song-name {
  font-size: 0.82rem;
  color: var(--white);
  max-width: 110px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.music-panel-ctrls { display: flex; gap: 0.25rem; }

.music-ctrl-btn {
  width: 32px;
  height: 32px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: color var(--transition), background var(--transition);
}
.music-ctrl-btn:hover { color: var(--gold); background: rgba(201,169,110,0.1); }
.music-ctrl-btn svg { width: 18px; height: 18px; }

.music-yt-frame {
  border-top: 1px solid var(--border);
  line-height: 0;
}

.music-yt-frame iframe {
  width: 268px !important;
  height: 151px !important;
  display: block;
  border: none;
}

@media (max-width: 480px) {
  .music-widget { bottom: 1rem; right: 1rem; }
  .music-panel { width: 240px; }
  .music-yt-frame iframe { width: 240px !important; height: 135px !important; }
}
