/* =====================================================================
   Mohammed Shahbaz Hassan Qadri — Nasheed Artist
   Dark Luxury · Gold · Slate White
   ===================================================================== */

:root {
  --ink: #0a0a0a;
  --ink-soft: #101010;
  --ink-card: #141414;
  --gold: #d4af37;
  --gold-soft: #e8c96a;
  --gold-bright: #f4e5a8;
  --gold-deep: #a67c1a;
  --white: #f5f5f5;
  --muted: #a8a29a;

  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Inter', system-ui, -apple-system, sans-serif;
  --arabic: 'Amiri', 'Playfair Display', serif;

  --maxw: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ----------------------------- Reset ----------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  /* clip (not hidden) contains AOS off-screen transforms without
     creating a scroll container that would break position: fixed/sticky */
  overflow-x: clip;
  /* keep section tops clear of the fixed nav when jumping via anchors */
  scroll-padding-top: 88px;
}

body {
  background: var(--ink);
  color: var(--white);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -webkit-tap-highlight-color: transparent;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

::selection {
  background: rgba(212, 175, 55, 0.28);
  color: #fff;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #0a0a0a;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--gold-deep), var(--gold));
  border-radius: 999px;
  border: 2px solid #0a0a0a;
}

.arabic {
  font-family: var(--arabic);
  color: var(--gold-soft);
  font-weight: 400;
}

/* --------------------- Ambient background ------------------------ */
.bg-ambient {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background:
    radial-gradient(1200px 600px at 50% -10%, rgba(212, 175, 55, 0.08), transparent 60%),
    var(--ink);
}
.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.5;
}
.glow--one {
  width: 45vw;
  height: 45vw;
  top: -10%;
  left: -8%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.16), transparent 70%);
  animation: float-slow 12s ease-in-out infinite;
}
.glow--two {
  width: 40vw;
  height: 40vw;
  bottom: -12%;
  right: -8%;
  background: radial-gradient(circle, rgba(166, 124, 26, 0.14), transparent 70%);
  animation: float-slow 15s ease-in-out infinite reverse;
}
.grain {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ----------------------- Shared utilities ------------------------ */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}

.section {
  position: relative;
  padding-block: clamp(5rem, 12vw, 9rem);
}

.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.35em;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section__title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2.1rem, 5.5vw, 3.6rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.section__title.center {
  text-align: center;
}
.section__title .gold,
.gold {
  color: var(--gold);
}

.section__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section__sub {
  color: var(--muted);
  margin-top: 1.25rem;
  font-size: 1.02rem;
}

/* Gold shimmering text */
.gold-shimmer {
  background: linear-gradient(
    100deg,
    var(--gold-deep) 0%,
    var(--gold) 25%,
    var(--gold-bright) 50%,
    var(--gold) 75%,
    var(--gold-deep) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 6s linear infinite;
}

/* Diamond divider echoing the logo — thin gold line with a centred diamond */
.diamond-divider {
  position: relative;
  height: 1px;
  width: min(220px, 55%);
  margin: 1.5rem auto;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.7), transparent);
}
.diamond-divider::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 8px;
  height: 8px;
  translate: -50% -50%;
  rotate: 45deg;
  background: var(--gold);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.7);
}

/* -------------------------- Buttons ------------------------------ */
.btn {
  --pad-y: 0.9rem;
  --pad-x: 1.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: var(--pad-y) var(--pad-x);
  border-radius: 999px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease),
    background 0.4s var(--ease), color 0.4s var(--ease);
  border: 1px solid transparent;
}
.btn i,
.btn svg {
  width: 18px;
  height: 18px;
}
.btn--gold {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold) 45%, var(--gold-deep));
  color: #1a1400;
  box-shadow: 0 10px 30px -8px rgba(212, 175, 55, 0.55);
}
.btn--gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 44px -10px rgba(212, 175, 55, 0.7);
}
.btn--ghost {
  border-color: rgba(212, 175, 55, 0.4);
  color: var(--white);
}
.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
}

/* ========================= NAVIGATION ============================= */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  transition: background 0.4s var(--ease), backdrop-filter 0.4s var(--ease),
    border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(10, 10, 10, 0.72);
  backdrop-filter: blur(14px);
  border-bottom-color: rgba(212, 175, 55, 0.14);
}
.nav__inner {
  max-width: var(--maxw);
  margin-inline: auto;
  padding: 1.1rem clamp(1.25rem, 5vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__brand {
  display: inline-flex;
  align-items: center;
}
.nav__logo {
  height: 50px;
  width: auto;
  display: block;
  border-radius: 10px;
  transition: transform 0.4s var(--ease);
}
.nav__brand:hover .nav__logo {
  transform: scale(1.05);
}
.nav__links {
  display: flex;
  gap: clamp(1.3rem, 2.2vw, 2.4rem);
}
.nav__links a {
  position: relative;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  color: var(--white);
  padding-block: 0.25rem;
  transition: color 0.3s var(--ease);
}
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 0;
  background: var(--gold);
  transition: width 0.35s var(--ease);
}
.nav__links a:hover {
  color: var(--gold);
}
.nav__links a:hover::after {
  width: 100%;
}
.nav__toggle {
  display: none;
  background: none;
  border: none;
  color: var(--gold);
  cursor: pointer;
  padding: 0.35rem;
}
.nav__toggle i,
.nav__toggle svg {
  width: 26px;
  height: 26px;
}
.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 0.4rem;
  padding: 0.5rem clamp(1.25rem, 5vw, 3rem) 1.4rem;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.14);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease);
}
.nav__mobile a {
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 1rem;
  letter-spacing: 0.04em;
  color: var(--white);
  transition: color 0.3s var(--ease), padding-left 0.3s var(--ease);
}
.nav__mobile a:hover {
  color: var(--gold);
  padding-left: 0.5rem;
}
.nav.is-open .nav__mobile {
  display: flex;
  max-height: 500px;
}

/* ============================= HERO ============================== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 7rem 1.25rem 5rem;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0.32;
  animation: float-slow 18s ease-in-out infinite;
  transform-origin: center;
  scale: 1.08;
}
.hero__bg::after {
  /* soft dark + gold overlay keeps text legible and the logo dominant */
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(80% 60% at 50% 40%, rgba(212, 175, 55, 0.12), transparent 70%),
    linear-gradient(180deg, rgba(10, 10, 10, 0.82) 0%, rgba(10, 10, 10, 0.6) 42%, rgba(10, 10, 10, 0.96) 100%);
}
.hero__halo {
  position: absolute;
  top: 42%;
  left: 50%;
  translate: -50% -50%;
  width: min(720px, 90vw);
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.22), rgba(212, 175, 55, 0.05) 45%, transparent 68%);
  filter: blur(10px);
  animation: pulse-glow 6s ease-in-out infinite;
  pointer-events: none;
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 2rem;
}
.hero__eyebrow .line {
  height: 1px;
  width: 2.5rem;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.hero__eyebrow .line:last-child {
  background: linear-gradient(90deg, var(--gold), transparent);
}
.hero__portrait {
  position: relative;
  width: clamp(250px, 44vw, 420px);
  aspect-ratio: 5 / 4;
  margin: 0 auto 2.2rem;
  padding: 8px;
  border-radius: 24px;
  background: linear-gradient(160deg, rgba(212, 175, 55, 0.6), rgba(212, 175, 55, 0.05) 45%, rgba(212, 175, 55, 0.4));
  box-shadow: 0 34px 80px -28px rgba(0, 0, 0, 0.75);
  animation: float-slow 8s ease-in-out infinite;
}
.hero__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  border-radius: 17px;
}
.hero__portrait-ring {
  position: absolute;
  inset: -22px;
  z-index: -1;
  border-radius: 34px;
  background: radial-gradient(circle at 50% 42%, rgba(212, 175, 55, 0.28), transparent 68%);
  filter: blur(8px);
  animation: pulse-glow 6s ease-in-out infinite;
}

/* ---- Hero photo slider (cross-fade) ---- */
.slider {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 17px;
  overflow: hidden;
}
.slider .slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 0.9s var(--ease);
}
.slider .slide.is-active {
  opacity: 1;
}
.slider .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  border-radius: 17px;
}
/* bottom scrim so dots stay legible over bright photos */
.slider::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 42%;
  background: linear-gradient(transparent, rgba(10, 10, 10, 0.5));
  pointer-events: none;
  z-index: 2;
}
.slider__nav {
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  z-index: 3;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: none;
  border-radius: 50%;
  background: rgba(10, 10, 10, 0.45);
  backdrop-filter: blur(4px);
  color: #fff;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.35s var(--ease), background 0.35s var(--ease), color 0.35s var(--ease);
}
.slider:hover .slider__nav {
  opacity: 1;
}
.slider__nav--prev {
  left: 8px;
}
.slider__nav--next {
  right: 8px;
}
.slider__nav:hover {
  background: var(--gold);
  color: #0a0a0a;
}
.slider__nav i,
.slider__nav svg {
  width: 20px;
  height: 20px;
}
.slider__dots {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 11px;
  translate: -50% 0;
  display: flex;
  gap: 7px;
}
.slider__dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: width 0.35s var(--ease), background 0.35s var(--ease), border-radius 0.35s var(--ease);
}
.slider__dot.is-active {
  width: 20px;
  border-radius: 4px;
  background: var(--gold);
}
/* touch devices: keep arrows visible (no hover) */
@media (hover: none) {
  .slider__nav {
    opacity: 0.9;
  }
}
.hero__name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2.2rem, 7vw, 4.6rem);
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin-bottom: 1.4rem;
}
.hero__tagline {
  max-width: 620px;
  margin: 0 auto 2.6rem;
  color: var(--muted);
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  line-height: 1.8;
}
.hero__cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  translate: -50% 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.3s var(--ease);
}
.hero__scroll:hover {
  color: var(--gold);
}
.hero__scroll i,
.hero__scroll svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
}

/* =========================== ABOUT ============================== */
.about__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
.about__visual {
  display: flex;
  justify-content: center;
}
/* Biography image in a gold corner-frame (Unsplash placeholder) */
.about__frame {
  position: relative;
  width: min(380px, 88%);
  aspect-ratio: 4 / 5;
  padding: 10px;
  border-radius: 18px;
  background: linear-gradient(160deg, rgba(212, 175, 55, 0.5), rgba(212, 175, 55, 0.05) 45%, rgba(212, 175, 55, 0.28));
  box-shadow: 0 30px 70px -30px rgba(0, 0, 0, 0.85);
}
.about__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  filter: saturate(1.05) contrast(1.02);
}
.about__frame::after {
  /* subtle dark vignette so the image sits in the palette */
  content: '';
  position: absolute;
  inset: 10px;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.05), rgba(10, 10, 10, 0.45));
  pointer-events: none;
}
.about__frame-tag {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 20px;
  translate: -50% 0;
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  background: rgba(10, 10, 10, 0.72);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: var(--gold);
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  white-space: nowrap;
}
.about__frame-corner {
  position: absolute;
  width: 26px;
  height: 26px;
  border: 2px solid var(--gold);
  z-index: 2;
}
.about__frame-corner.tl {
  top: -7px;
  left: -7px;
  border-right: none;
  border-bottom: none;
}
.about__frame-corner.tr {
  top: -7px;
  right: -7px;
  border-left: none;
  border-bottom: none;
}
.about__frame-corner.bl {
  bottom: -7px;
  left: -7px;
  border-right: none;
  border-top: none;
}
.about__frame-corner.br {
  bottom: -7px;
  right: -7px;
  border-left: none;
  border-top: none;
}
.about__text {
  color: #d8d4cc;
  font-size: 1.05rem;
  margin-top: 1.3rem;
  max-width: 56ch;
}
.about__text strong {
  color: var(--white);
  font-weight: 500;
}
.about__text em {
  color: var(--gold-soft);
  font-style: italic;
}
.about__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  margin-top: 2.6rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
}
.stat {
  display: flex;
  flex-direction: column;
}
.stat__num {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.stat__label {
  margin-top: 0.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  color: var(--muted);
  max-width: 16ch;
}

/* =========================== LISTEN ============================= */
.listen {
  background: linear-gradient(180deg, transparent, rgba(212, 175, 55, 0.03), transparent);
}
.listen__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.platform {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 1.6rem 1.5rem;
  border-radius: 18px;
  background: linear-gradient(150deg, var(--ink-card), var(--ink-soft));
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  transition: transform 0.45s var(--ease), border-color 0.45s var(--ease),
    box-shadow 0.45s var(--ease);
}
.platform::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(400px 120px at 0% 0%, rgba(212, 175, 55, 0.12), transparent 70%);
  opacity: 0;
  transition: opacity 0.45s var(--ease);
}
.platform:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 24px 50px -22px rgba(212, 175, 55, 0.35);
}
.platform:hover::before {
  opacity: 1;
}
.platform__icon {
  position: relative;
  z-index: 1;
  flex: none;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.18);
  color: var(--gold);
  transition: background 0.45s var(--ease), color 0.45s var(--ease);
}
.platform__icon svg {
  width: 28px;
  height: 28px;
}
.platform:hover .platform__icon {
  background: var(--gold);
  color: #0a0a0a;
}
.platform__meta {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}
.platform__label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
}
.platform__name {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
}
.platform__go {
  position: relative;
  z-index: 1;
  margin-left: auto;
  width: 20px;
  height: 20px;
  color: var(--muted);
  transition: color 0.4s var(--ease), transform 0.4s var(--ease);
}
.platform:hover .platform__go {
  color: var(--gold);
  transform: translate(3px, -3px);
}

/* ---- Biography bullet points ---- */
.about__points {
  list-style: none;
  margin-top: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 60ch;
}
.about__points li {
  position: relative;
  padding-left: 1.9rem;
  color: #d8d4cc;
  font-size: 1rem;
  line-height: 1.65;
}
.about__points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  translate: 0 -50%;
  rotate: 45deg;
  background: var(--gold);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.6);
}
.about__points strong {
  color: var(--white);
  font-weight: 500;
}
.about__points em {
  color: var(--gold-soft);
  font-style: italic;
}

/* Image crop helper — keep faces in view when covering a frame */
.about__frame img.img-pos-top {
  object-position: center top;
}

/* ---- Auto cross-fade slider inside a gold frame ------------------ */
/* Stage fills the frame's content box and clips every slide to it. */
.frame-slider {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
}
.about__frame .frame-slider .frame-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  opacity: 0;
  transition: opacity 1.1s ease-in-out;
}
.about__frame .frame-slider .frame-slide.is-active {
  opacity: 1;
}
@media (prefers-reduced-motion: reduce) {
  .about__frame .frame-slider .frame-slide {
    transition: none;
  }
}

/* ========================= FATHER / TRIBUTE ==================== */
.tribute {
  background: linear-gradient(180deg, transparent, rgba(212, 175, 55, 0.035), transparent);
}
.about__grid--reverse {
  grid-template-columns: 1.15fr 0.85fr;
}
.tribute__quote {
  margin-top: 2rem;
  padding: 1.1rem 1.5rem;
  border-left: 3px solid var(--gold);
  border-radius: 0 12px 12px 0;
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.07), transparent);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.08rem;
  line-height: 1.6;
  color: var(--gold-soft);
  max-width: 54ch;
}

/* =========================== MUSIC ============================== */
.music__player {
  max-width: 860px;
  margin: 0 auto;
  padding: 10px;
  border-radius: 20px;
  background: linear-gradient(160deg, rgba(212, 175, 55, 0.35), rgba(212, 175, 55, 0.04));
  box-shadow: 0 30px 70px -30px rgba(0, 0, 0, 0.9);
}
.music__player iframe {
  display: block;
  width: 100%;
  border: 0;
  border-radius: 12px;
}
/* ordered track list (fixed order — not Spotify's auto "top tracks") */
.music__player--list {
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.music__also {
  text-align: center;
  margin: 3rem 0 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.72rem;
  color: var(--muted);
}

/* ========================= RELEASES ============================ */
.releases__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 1.1rem;
}
.release {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  padding: 1.4rem 1.3rem;
  border-radius: 16px;
  background: linear-gradient(150deg, var(--ink-card), var(--ink-soft));
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease),
    box-shadow 0.4s var(--ease);
}
.release::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(320px 120px at 100% 0%, rgba(212, 175, 55, 0.12), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.release:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 20px 44px -20px rgba(212, 175, 55, 0.32);
}
.release:hover::before {
  opacity: 1;
}
.release.is-new {
  border-color: rgba(212, 175, 55, 0.32);
}
.release__top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.release__year {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--gold);
}
.release__badge {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  background: var(--gold);
  color: #1a1400;
}
.release__badge--album {
  background: transparent;
  color: var(--gold-soft);
  border: 1px solid rgba(212, 175, 55, 0.4);
}
.release__title {
  position: relative;
  z-index: 1;
  font-family: var(--serif);
  font-size: 1.22rem;
  font-weight: 600;
  line-height: 1.25;
  color: var(--white);
  margin-top: auto;
}
.release__play {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  color: var(--muted);
  transition: color 0.4s var(--ease);
}
.release__play i,
.release__play svg {
  width: 15px;
  height: 15px;
}
.release:hover .release__play {
  color: var(--gold);
}
.releases__cta {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}
.platform__icon-inline {
  display: inline-grid;
  place-items: center;
}
.platform__icon-inline svg {
  width: 18px;
  height: 18px;
}

/* =========================== WATCH ============================= */
.watch__player {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  padding: 10px;
  border-radius: 20px;
  background: linear-gradient(160deg, rgba(212, 175, 55, 0.35), rgba(212, 175, 55, 0.04));
  box-shadow: 0 30px 70px -30px rgba(0, 0, 0, 0.9);
}
.watch__player iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 12px;
  display: block;
}
.watch__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.4rem;
  max-width: 960px;
  margin: 1.8rem auto 0;
}
.vcard__badge {
  position: absolute;
  z-index: 2;
  top: 10px;
  left: 10px;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  background: var(--gold);
  color: #1a1400;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.vcard {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.vcard__thumb {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.vcard__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.vcard:hover .vcard__thumb img {
  transform: scale(1.06);
}
.vcard__thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10, 10, 10, 0.55));
}
.vcard__play {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.92);
  color: #0a0a0a;
  box-shadow: 0 10px 26px -8px rgba(212, 175, 55, 0.7);
  transition: transform 0.4s var(--ease), background 0.4s var(--ease);
}
.vcard__play i,
.vcard__play svg {
  width: 24px;
  height: 24px;
  margin-left: 2px;
}
.vcard:hover .vcard__play {
  transform: translate(-50%, -50%) scale(1.12);
}
.vcard__title {
  font-family: var(--serif);
  font-size: 1.16rem;
  font-weight: 600;
  color: var(--white);
  transition: color 0.3s var(--ease);
}
.vcard:hover .vcard__title {
  color: var(--gold);
}
.watch__cta {
  display: flex;
  justify-content: center;
  margin-top: 2.6rem;
}

/* =========================== BOOKING =========================== */
.booking__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: stretch;
  max-width: 1000px;
  margin: 0 auto;
}
.booking__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0.5rem;
}
.booking__points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.booking__points li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  color: #d8d4cc;
  font-size: 0.98rem;
  line-height: 1.5;
}
.booking__points i,
.booking__points svg {
  flex: none;
  width: 20px;
  height: 20px;
  color: var(--gold);
  margin-top: 2px;
}
.booking__or {
  margin-top: 2rem;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: var(--muted);
}
.booking__socials {
  display: flex;
  gap: 0.8rem;
  margin-top: 1rem;
}
.booking__socials a {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.25);
  color: var(--white);
  transition: transform 0.4s var(--ease), background 0.4s var(--ease),
    color 0.4s var(--ease), border-color 0.4s var(--ease);
}
.booking__socials a:hover {
  transform: translateY(-4px);
  background: var(--gold);
  color: #0a0a0a;
  border-color: var(--gold);
}
.booking__socials .social__icon svg {
  width: 20px;
  height: 20px;
}

/* Form card */
.booking__form {
  position: relative;
  padding: clamp(1.5rem, 4vw, 2.4rem);
  border-radius: 22px;
  background: linear-gradient(160deg, rgba(212, 175, 55, 0.08), rgba(20, 20, 20, 0.65) 45%);
  border: 1px solid rgba(212, 175, 55, 0.22);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.field label {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.field label span {
  color: var(--gold);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  background: rgba(10, 10, 10, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.98rem;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease),
    background 0.3s var(--ease);
}
.field textarea {
  resize: vertical;
  min-height: 110px;
}
.field input::placeholder,
.field textarea::placeholder {
  color: #6b6b6b;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(10, 10, 10, 0.8);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.14);
}
/* style the select dropdown arrow area */
.field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23d4af37' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.6rem;
  cursor: pointer;
}
.field select option {
  background: #141414;
  color: var(--white);
}
/* date picker icon tint */
.field input[type='date']::-webkit-calendar-picker-indicator {
  filter: invert(78%) sepia(48%) saturate(560%) hue-rotate(1deg) brightness(92%);
  cursor: pointer;
}
.field.has-error input,
.field.has-error textarea {
  border-color: #e2574c;
  box-shadow: 0 0 0 3px rgba(226, 87, 76, 0.14);
}
.field__error {
  font-size: 0.78rem;
  color: #e98b83;
  min-height: 0;
}
/* honeypot */
.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.booking__submit {
  position: relative;
  margin-top: 0.4rem;
  justify-content: center;
}
.booking__submit .btn__label {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}
.booking__submit .btn__spinner {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid rgba(26, 20, 0, 0.35);
  border-top-color: #1a1400;
  opacity: 0;
  animation: spin 0.7s linear infinite;
}
.booking__submit.is-loading .btn__label {
  opacity: 0;
}
.booking__submit.is-loading .btn__spinner {
  opacity: 1;
}
.booking__submit[disabled] {
  cursor: default;
  opacity: 0.9;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.form__status {
  min-height: 1.2rem;
  font-size: 0.9rem;
  text-align: center;
  transition: color 0.3s var(--ease);
}
.form__status.is-success {
  color: #7ddf9a;
}
.form__status.is-error {
  color: #e98b83;
}

/* ========================= BACK TO TOP ========================= */
.to-top {
  position: fixed;
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  z-index: 60;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.4);
  background: rgba(10, 10, 10, 0.72);
  backdrop-filter: blur(8px);
  color: var(--gold);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease),
    background 0.4s var(--ease), color 0.4s var(--ease);
}
.to-top i,
.to-top svg {
  width: 22px;
  height: 22px;
}
.to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.to-top:hover {
  background: var(--gold);
  color: #0a0a0a;
}

/* active nav link (scroll-spy) */
.nav__links a.active {
  color: var(--gold);
}
.nav__links a.active::after {
  width: 100%;
}

/* =========================== FOOTER ============================= */
.footer {
  position: relative;
  padding: clamp(4rem, 9vw, 6.5rem) 0 3rem;
  border-top: 1px solid rgba(212, 175, 55, 0.14);
  background: linear-gradient(180deg, transparent, rgba(212, 175, 55, 0.04));
}
.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.footer__logo-img {
  height: 92px;
  width: auto;
  margin-inline: auto;
  border-radius: 16px;
  box-shadow: 0 18px 40px -20px rgba(212, 175, 55, 0.4);
}
.footer__name {
  margin-top: 0.5rem;
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--white);
  letter-spacing: 0.02em;
}
.footer__prompt {
  margin-top: 2.4rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.75rem;
  color: var(--gold);
}
.socials {
  list-style: none;
  display: flex;
  gap: 1.1rem;
  margin-top: 1.4rem;
  flex-wrap: wrap;
  justify-content: center;
}
.socials a {
  position: relative;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.25);
  color: var(--white);
  transition: transform 0.4s var(--ease), background 0.4s var(--ease),
    color 0.4s var(--ease), border-color 0.4s var(--ease),
    box-shadow 0.4s var(--ease);
}
.socials a i,
.socials a svg {
  width: 22px;
  height: 22px;
}
.socials a:hover {
  transform: translateY(-5px);
  background: var(--gold);
  color: #0a0a0a;
  border-color: var(--gold);
  box-shadow: 0 14px 30px -10px rgba(212, 175, 55, 0.6);
}
/* Tooltip with handle */
.socials a::after {
  content: attr(data-tip);
  position: absolute;
  bottom: calc(100% + 12px);
  left: 50%;
  translate: -50% 0;
  padding: 0.4rem 0.7rem;
  border-radius: 8px;
  background: #1a1a1a;
  border: 1px solid rgba(212, 175, 55, 0.25);
  color: var(--gold-soft);
  font-size: 0.72rem;
  letter-spacing: 0.03em;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
  transform: translateY(6px);
}
.socials a:hover::after {
  opacity: 1;
  transform: translateY(0);
}
.footer__divider {
  width: 100%;
  margin-top: 3rem;
}
.footer__copy {
  color: var(--muted);
  font-size: 0.85rem;
  letter-spacing: 0.03em;
}
.footer__made {
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: var(--gold-deep);
  letter-spacing: 0.05em;
}

/* Brand icon SVGs inherit currentColor */
.social__icon,
.platform__icon[data-brand] {
  display: grid;
  place-items: center;
}
.social__icon svg {
  width: 22px;
  height: 22px;
}

/* =========================== Keyframes ========================== */
@keyframes float-slow {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-16px) scale(1.03);
  }
}
@keyframes shimmer {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}
@keyframes pulse-glow {
  0%,
  100% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.85;
    transform: translate(-50%, -50%) scale(1.06);
  }
}
@keyframes bounce-soft {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(7px);
  }
}
.animate-bounce-soft {
  animation: bounce-soft 2.4s ease-in-out infinite;
}

/* ========================= Responsive =========================== */
@media (max-width: 860px) {
  .nav__links {
    display: none;
  }
  .nav__toggle {
    display: inline-flex;
  }
  .about__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .about__body {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .about__text {
    text-align: center;
  }
  .about__stats {
    justify-content: center;
    gap: 2rem;
  }
  .stat {
    align-items: center;
    text-align: center;
  }
  .stat__label {
    text-align: center;
  }
  .listen__grid {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin-inline: auto;
  }
  .watch__grid {
    grid-template-columns: 1fr;
    max-width: 460px;
  }
  .booking__grid {
    grid-template-columns: 1fr;
    max-width: 560px;
  }
  .booking__info {
    align-items: center;
    text-align: center;
  }
  .booking__points li {
    text-align: left;
  }
  .booking__socials {
    justify-content: center;
  }
  /* tribute quote reads better centred once the column stacks */
  .tribute__quote {
    text-align: center;
    border-left: none;
    border-top: 2px solid rgba(212, 175, 55, 0.5);
    border-radius: 12px;
    padding-top: 1.3rem;
  }
}

/* ---- Phones ---- */
@media (max-width: 600px) {
  .nav__logo {
    height: 42px;
  }
  .nav__inner {
    padding-block: 0.85rem;
  }
  .section {
    padding-block: clamp(3.25rem, 11vw, 5rem);
  }
  .hero {
    padding-top: 6rem;
  }
  .hero__portrait {
    width: min(76vw, 320px);
  }
  .hero__eyebrow {
    margin-bottom: 1.4rem;
  }
  /* lighten heavy blurs so mid-range phones stay smooth */
  .glow {
    filter: blur(55px);
    opacity: 0.4;
  }
  .music__player,
  .watch__player {
    padding: 6px;
    border-radius: 16px;
  }
  .vcard__play {
    width: 48px;
    height: 48px;
  }
  .vcard__play i,
  .vcard__play svg {
    width: 20px;
    height: 20px;
  }
  .about__points li {
    font-size: 0.95rem;
  }
  .section__sub {
    font-size: 0.96rem;
  }
  .to-top {
    width: 44px;
    height: 44px;
  }
  .diamond-divider {
    margin-block: 1.2rem;
  }
}

@media (max-width: 560px) {
  .hero__cta {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
    margin-inline: auto;
  }
  .hero__cta .btn {
    justify-content: center;
    width: 100%;
  }
  /* full-width, easy-to-tap action buttons */
  .form__row {
    grid-template-columns: 1fr;
  }
  .watch__cta .btn,
  .releases__cta .btn {
    width: 100%;
    max-width: 340px;
    justify-content: center;
  }
  .socials {
    gap: 0.8rem;
  }
  .socials a {
    width: 48px;
    height: 48px;
  }
  /* tooltips can overflow tiny screens — hide, links still labelled via aria */
  .socials a::after {
    display: none;
  }
}

@media (max-width: 380px) {
  .nav__inner {
    padding-inline: 1rem;
  }
  .hero__name {
    font-size: 2rem;
  }
  .section__title {
    font-size: 1.9rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
