:root {
  --color-bg: #0f0d0e;
  --color-surface: #1a1517;
  --color-surface-alt: #241c1f;
  --color-primary: #5c1a2b;
  --color-primary-light: #7a2438;
  --color-accent: #d4af7a;
  --color-accent-bright: #e8caa0;
  --color-text: #f5efe6;
  --color-text-muted: #cbb9a8;
  --color-tsm: #d4af7a;
  --color-pop: #c98a8a;
  --color-ilahi: #8fb3a3;
  --color-spotify: #3fcf78;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --max-width: 1120px;
  --shadow-card: 0 10px 30px -12px rgba(0, 0, 0, 0.6);
  --shadow-card-hover: 0 20px 40px -14px rgba(0, 0, 0, 0.75);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  background:
    radial-gradient(ellipse 900px 600px at 15% -10%, rgba(92, 26, 43, 0.35), transparent 60%),
    radial-gradient(ellipse 700px 500px at 100% 20%, rgba(212, 175, 122, 0.08), transparent 55%),
    var(--color-bg);
  background-attachment: fixed;
  color: var(--color-text);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--color-primary);
  color: var(--color-text);
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--color-bg);
}

::-webkit-scrollbar-thumb {
  background: var(--color-surface-alt);
  border-radius: 999px;
  border: 2px solid var(--color-bg);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary);
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

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

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1.2;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin: 0 0 1rem;
  text-align: center;
  position: relative;
}

h2::after {
  content: '';
  display: block;
  width: 56px;
  height: 2px;
  margin: 1rem auto 2.5rem;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
}

a {
  color: var(--color-accent);
}

section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 5rem 1.5rem;
}

.btn {
  display: inline-block;
  padding: 0.8rem 1.85rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary));
  color: var(--color-text);
  box-shadow: 0 8px 24px -8px rgba(92, 26, 43, 0.7);
}

.btn--primary:hover {
  box-shadow: 0 12px 28px -8px rgba(92, 26, 43, 0.85);
}

.btn--ghost {
  background: transparent;
  border: 1px solid var(--color-accent);
  color: var(--color-accent);
}

.btn--ghost:hover {
  background: rgba(212, 175, 122, 0.08);
}

.btn--subscribe {
  background: linear-gradient(135deg, var(--color-accent-bright), var(--color-accent));
  color: var(--color-bg);
  padding: 0.55rem 1.35rem;
  font-size: 0.9rem;
  box-shadow: 0 6px 18px -6px rgba(212, 175, 122, 0.5);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(15, 13, 14, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-surface-alt);
}

.site-header__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.site-header__name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--color-text);
  text-decoration: none;
}

.site-header__nav {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.site-header__nav a {
  position: relative;
  color: var(--color-text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  padding-bottom: 2px;
}

.site-header__nav a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--color-accent);
  transition: right 0.2s ease;
}

.site-header__nav a:hover {
  color: var(--color-accent);
}

.site-header__nav a:hover::after {
  right: 0;
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  min-height: 80vh;
  padding-top: 3rem;
}

.hero__media {
  position: relative;
}

.hero__media::before {
  content: '';
  position: absolute;
  inset: -6%;
  background: radial-gradient(circle, rgba(212, 175, 122, 0.18), transparent 70%);
  z-index: -1;
}

.hero__media img {
  border-radius: 16px;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: top center;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(212, 175, 122, 0.15);
}

.hero__content h1 {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  margin: 0;
  background: linear-gradient(135deg, var(--color-accent-bright), var(--color-accent) 60%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__tagline {
  color: var(--color-text-muted);
  font-size: 1.2rem;
  margin: 0.75rem 0 2rem;
  letter-spacing: 0.02em;
}

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

.about {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3rem;
  align-items: start;
}

.about__media img {
  border-radius: 16px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(212, 175, 122, 0.15);
}

.about blockquote {
  border-left: 3px solid var(--color-accent);
  margin: 1.5rem 0;
  padding: 0.25rem 0 0.25rem 1.25rem;
  font-style: italic;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--color-text);
}

.about blockquote cite {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  font-style: normal;
}

@media (max-width: 800px) {
  .hero, .about {
    grid-template-columns: 1fr;
  }
  .site-header__nav {
    display: none;
  }
}

.works__tabs {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.tab {
  background: transparent;
  border: 1px solid var(--color-surface-alt);
  color: var(--color-text-muted);
  padding: 0.5rem 1.25rem;
  border-radius: 999px;
  cursor: pointer;
  font-family: var(--font-body);
}

.tab.is-active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-text);
}

.works__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.work-card {
  transition: transform 0.25s ease;
}

.work-card:hover {
  transform: translateY(-4px);
}

.work-card.is-hidden {
  display: none;
}

.work-card h3 {
  font-size: 1.1rem;
  margin: 0.75rem 0 0.5rem;
}

.work-card__meta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.video-embed {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  overflow: hidden;
  background: var(--color-surface);
  cursor: pointer;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.25s ease;
}

.work-card:hover .video-embed {
  box-shadow: var(--shadow-card-hover);
}

.video-embed img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: var(--color-surface-alt);
  transition: transform 0.3s ease;
}

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

.video-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-embed .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  background: rgba(212, 175, 122, 0.92);
  color: var(--color-bg);
  font-size: 1.3rem;
  cursor: pointer;
  box-shadow: 0 6px 18px -4px rgba(0, 0, 0, 0.5);
  transition: transform 0.2s ease;
}

.work-card:hover .play-btn {
  transform: translate(-50%, -50%) scale(1.08);
}

.spotify-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-spotify);
  background: rgba(63, 207, 120, 0.1);
  border: 1px solid rgba(63, 207, 120, 0.35);
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  text-decoration: none;
}

.spotify-link:hover {
  background: rgba(63, 207, 120, 0.18);
}

.video-embed--small {
  max-width: 320px;
}

.video-embed--wide {
  aspect-ratio: 21 / 9;
}

.tag {
  display: inline-block;
  font-size: 0.75rem;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  background: var(--color-surface-alt);
  color: var(--color-accent);
}

.tag--tsm {
  color: var(--color-tsm);
}

.tag--pop {
  color: var(--color-pop);
}

.tag--ilahi {
  color: var(--color-ilahi);
}

.works__more {
  text-align: center;
  margin-top: 3rem;
}

.lyrics__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.lyrics-card {
  background: linear-gradient(160deg, var(--color-surface), var(--color-surface-alt));
  border: 1px solid rgba(212, 175, 122, 0.1);
  border-radius: 14px;
  padding: 1.75rem;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.lyrics-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
}

.lyrics-card__meta {
  color: var(--color-text-muted);
  font-size: 0.85rem;
  margin: 0.25rem 0 1rem;
}

.lyrics-card__text {
  white-space: normal;
  margin: 1rem 0;
  color: var(--color-text);
}

.lyrics-card__nota {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.nota-thumb {
  border: none;
  padding: 0;
  background: none;
  cursor: pointer;
  width: 80px;
}

.nota-thumb img {
  border-radius: 4px;
  border: 1px solid var(--color-surface-alt);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.nota-thumb:hover img {
  transform: translateY(-2px);
  border-color: var(--color-accent);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
}

.gallery__item {
  border: none;
  padding: 0;
  cursor: pointer;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.25s ease;
}

.gallery__item:hover {
  box-shadow: var(--shadow-card-hover);
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform 0.3s ease;
}

.gallery__item:hover img {
  transform: scale(1.06);
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: 2rem;
}

.lightbox.is-open {
  display: flex;
}

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 8px;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--color-text);
  font-size: 2rem;
  cursor: pointer;
}

.trt-highlight {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2rem;
  align-items: center;
  background: linear-gradient(135deg, var(--color-surface), var(--color-surface-alt));
  border: 1px solid var(--color-accent);
  border-radius: 14px;
  padding: 2rem;
  margin-bottom: 3rem;
  box-shadow: var(--shadow-card);
}

.trt-highlight__badge {
  display: inline-block;
  background: var(--color-accent);
  color: var(--color-bg);
  font-weight: 600;
  font-size: 0.8rem;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
}

.press__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.press-card {
  background: var(--color-surface);
  border: 1px solid rgba(212, 175, 122, 0.08);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.press-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
}

.press-card__outlet {
  color: var(--color-accent);
  font-weight: 600;
  font-size: 0.85rem;
  margin: 0 0 0.75rem;
}

.press-card__quote {
  font-style: italic;
  color: var(--color-text-muted);
}

.contact {
  text-align: center;
}

.contact__links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  font-size: 1.1rem;
}

.site-footer {
  border-top: 1px solid var(--color-surface-alt);
  padding: 2rem 1.5rem;
  text-align: center;
  color: var(--color-text-muted);
  font-size: 0.85rem;
}

.site-footer__links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 0.75rem;
}

@media (max-width: 800px) {
  .trt-highlight {
    grid-template-columns: 1fr;
  }
}
