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

html {
  scroll-behavior: smooth;
}

body {
  background: #000;
  color: #e8e8e8;
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  min-height: 100vh;
}

a {
  color: #e8e8e8;
  text-decoration: none;
  transition: opacity 0.3s;
}

a:hover {
  opacity: 0.7;
}

img {
  max-width: 100%;
  display: block;
}

/* ===== Navigation ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.nav-logo a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

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

.nav-links a {
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-links a.active {
  border-bottom: 1px solid #e8e8e8;
  padding-bottom: 2px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #e8e8e8;
  transition: transform 0.3s, opacity 0.3s;
}

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

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

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

/* Mobile overlay */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 99;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ===== Banner / Hero ===== */
.banner {
  padding: 8rem 2rem 3rem;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.banner h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}

.banner .tagline {
  font-size: 0.95rem;
  color: #aaa;
  letter-spacing: 0.03em;
}

.banner .divider {
  width: 60px;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin: 1rem auto;
}

/* ===== Video Grid ===== */
.video-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.video-card {
  cursor: pointer;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.video-card a {
  display: block;
}

.thumbnail-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 4px;
  background: #111;
}

.thumbnail-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.video-card:hover .thumbnail-wrap img {
  transform: scale(1.05);
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.play-btn::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 0 8px 14px;
  border-color: transparent transparent transparent #fff;
  margin-left: 3px;
}

.video-card:hover .play-btn {
  opacity: 1;
}

.video-info {
  padding: 0.75rem 0.25rem;
}

.video-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 0.2rem;
}

.video-info p {
  font-size: 0.8rem;
  color: #999;
}

/* ===== Page Content (About / Contact) ===== */
.page-content {
  max-width: 700px;
  margin: 0 auto;
  padding: 8rem 2rem 4rem;
}

.page-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 400;
  margin-bottom: 1.5rem;
  letter-spacing: 0.03em;
}

.page-content p {
  margin-bottom: 1.2rem;
  color: #ccc;
  line-height: 1.8;
  font-size: 0.95rem;
}

.page-content a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Contact form */
.contact-form {
  margin-top: 2rem;
}

.contact-form label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.4rem;
  color: #aaa;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1.5rem;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  color: #e8e8e8;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.3);
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form button {
  padding: 0.75rem 2rem;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #e8e8e8;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.3s, color 0.3s;
}

.contact-form button:hover {
  background: #e8e8e8;
  color: #000;
}

/* ===== Footer ===== */
.footer {
  text-align: center;
  padding: 3rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 4rem;
}

.footer p {
  font-size: 0.75rem;
  color: #666;
}

.footer .social-links {
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.footer .social-links a {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #888;
}

/* ===== Lightbox / Video Modal ===== */
.video-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.92);
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

.video-modal.open {
  display: flex;
}

.video-modal-inner {
  width: 100%;
  max-width: 900px;
  aspect-ratio: 16 / 9;
  position: relative;
}

.video-modal-inner iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 4px;
}

.video-modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: #e8e8e8;
  font-size: 1.8rem;
  cursor: pointer;
  transition: opacity 0.3s;
}

.video-modal-close:hover {
  opacity: 0.6;
}

/* ===== Music Link Card (home page) ===== */
.music-link-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem 3rem;
}

.music-link-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  background: #0a0a0a;
  transition: background 0.3s, border-color 0.3s;
  text-decoration: none;
}

.music-link-card:hover {
  background: #111;
  border-color: rgba(255, 255, 255, 0.25);
  opacity: 1;
}

.music-link-thumb {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
}

.music-link-text h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 0.15rem;
}

.music-link-text p {
  font-size: 0.8rem;
  color: #999;
}

.music-link-arrow {
  margin-left: auto;
  font-size: 1.2rem;
  color: #666;
  transition: transform 0.3s, color 0.3s;
}

.music-link-card:hover .music-link-arrow {
  transform: translateX(4px);
  color: #aaa;
}

/* ===== Music Page ===== */
.music-header {
  padding: 7rem 2rem 2rem;
  max-width: 800px;
  margin: 0 auto;
}

/* Album hero block */
.album-hero {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1.5rem 0 1rem;
}

.album-cover {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.6);
  flex-shrink: 0;
}

.album-hero-text {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.album-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #666;
}

.album-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 1.1;
}

.album-subtext {
  font-size: 0.82rem;
  color: #777;
  margin-top: 0.2rem;
}

/* Sticky player bar */
.music-player-bar {
  position: sticky;
  top: 60px;
  z-index: 50;
  background: #0d0d0d;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 0.85rem 2rem;
  max-width: 100%;
}

.music-player-bar.hidden {
  display: none;
}

.player-bar-inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.player-bar-btn {
  background: none;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  color: #e8e8e8;
  font-size: 0.8rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
}

.player-bar-btn:hover {
  background: rgba(255,255,255,0.1);
}

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

.player-bar-title {
  font-size: 0.85rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 0.3rem;
}

.player-bar-progress {
  width: 100%;
  height: 3px;
  background: rgba(255,255,255,0.12);
  border-radius: 2px;
  cursor: pointer;
  position: relative;
}

.player-bar-progress-fill {
  height: 100%;
  background: #e8e8e8;
  border-radius: 2px;
  width: 0%;
  pointer-events: none;
}

.player-bar-time {
  font-size: 0.75rem;
  color: #888;
  flex-shrink: 0;
  white-space: nowrap;
}

/* Track list */
.track-list {
  max-width: 800px;
  margin: 1rem auto 0;
  padding: 0 2rem 4rem;
  list-style: none;
}

.track-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 0.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.2s;
}

.track-item:hover {
  background: rgba(255,255,255,0.04);
}

.track-item.playing {
  background: rgba(255,255,255,0.06);
}

.track-num {
  font-size: 0.8rem;
  color: #555;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}

.track-item.playing .track-num {
  display: none;
}

.track-play-icon {
  display: none;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
  color: #e8e8e8;
  font-size: 0.7rem;
}

.track-item.playing .track-play-icon {
  display: block;
}

.track-icon-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  background: none;
  color: #e8e8e8;
  font-size: 0.65rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s;
}

.track-icon-btn:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.3);
}

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

.track-title {
  font-size: 0.9rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.track-item.playing .track-title {
  color: #fff;
}

.track-thumb {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
}

.track-duration {
  font-size: 0.78rem;
  color: #666;
  flex-shrink: 0;
}

/* Player bar artwork */
.player-bar-art {
  width: 36px;
  height: 36px;
  object-fit: cover;
  border-radius: 3px;
  flex-shrink: 0;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .video-grid {
    grid-template-columns: 1fr;
    padding: 1.5rem;
    gap: 1.5rem;
  }

  .banner {
    padding: 7rem 1.5rem 2rem;
  }

  .page-content {
    padding: 7rem 1.5rem 3rem;
  }

  .play-btn {
    opacity: 1;
    width: 48px;
    height: 48px;
  }

  .album-hero {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }

  .album-cover {
    width: 130px;
    height: 130px;
  }

  .music-header {
    padding: 6rem 1.5rem 1rem;
  }

  .track-list {
    padding: 0 1.5rem 3rem;
  }

  .player-bar-time {
    display: none;
  }

  .music-link-wrap {
    padding: 0 1.5rem 2.5rem;
  }
}
