/* =========================================================
   MONIQUE TOGARA — luxury R&B artist hero
   Mobile-first; desktop above 992px.
   ========================================================= */

:root {
  --black:        #050505;
  --charcoal:     #11100E;
  --brown:        #24180F;
  --cream:        #F4EFE6;
  --cream-dim:    #E5DECF;
  --gold:         #C99A4A;
  --gold-soft:    #B8873D;
  --gold-deep:    #8B6629;
  --olive:        #35401F;
  --shade:        rgba(0, 0, 0, 0.55);

  --font-script:  "Parisienne", "Brush Script MT", cursive;
  --font-quote:   "Style Script", "Parisienne", cursive;
  --font-serif:   "Playfair Display", "Didot", "Bodoni Moda", Georgia, serif;
  --font-sans:    "Inter", "Helvetica Neue", Arial, sans-serif;

  --maxw: 1600px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  background: var(--black);
  color: var(--cream);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }
button { background: none; border: 0; color: inherit; font: inherit; cursor: pointer; }

/* ---------- film grain overlay (subtle, fixed) ---------- */
.grain {
  position: fixed; inset: 0; z-index: 50;
  pointer-events: none;
  opacity: .08;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.96  0 0 0 0 0.94  0 0 0 0 0.90  0 0 0 0.6 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: absolute; inset: 0 0 auto 0;
  z-index: 20;
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 24px 10px;
  height: 74px;
  overflow: visible;
  background: linear-gradient(to bottom, rgba(5,5,5,0.72), rgba(5,5,5,0.18) 70%, rgba(5,5,5,0));
}

.nav__logo {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;   /* top-align so logo overflows downward only */
  line-height: 0;
  flex-shrink: 0;
  overflow: visible;
}
.nav__logo img {
  height: 92px;
  width: auto;
  display: block;
}

/* Mobile: hide desktop links & "listen now" pill, show hamburger */
.nav__links,
.nav__listen { display: none; }

.nav__menu {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  flex-shrink: 0;
}
.nav__menu-icon {
  display: inline-flex; flex-direction: column; gap: 4px;
  width: 22px;
}
.nav__menu-icon i {
  display: block; height: 1.5px; width: 100%;
  background: var(--gold);
  border-radius: 1px;
}
.nav__menu-icon i:nth-child(2) { width: 70%; align-self: flex-end; }

/* =========================================================
   HERO LAYOUT (mobile-first)
   ========================================================= */
.hero {
  position: relative;
  height: 980px;
  min-height: 100svh;
  overflow: hidden;
  background: radial-gradient(ellipse at left center, var(--charcoal) 0%, var(--black) 70%);
  padding: 0 24px 0;
}

/* main hero image — weighted to right on mobile */
.hero__photo {
  position: absolute;
  top: 0; right: -10%;
  width: 110%;
  height: 60%;
  z-index: 0;
}
.hero__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 75% 22%;
  filter: brightness(0.96) contrast(1.04);
}

/* left-to-right dark gradient making the copy readable */
.hero__overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 60%;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(5,5,5,0.55) 0%, rgba(5,5,5,0) 22%, rgba(5,5,5,0) 55%, var(--black) 100%),
    linear-gradient(90deg, rgba(5,5,5,0.95) 0%, rgba(5,5,5,0.65) 35%, rgba(5,5,5,0.1) 75%, rgba(5,5,5,0) 100%);
}

/* hero text block sits on the gradient */
.hero__copy {
  position: relative;
  z-index: 2;
  padding-top: 160px;  /* clears the oversized overflowing logo with breathing room */
}

.hero__eyebrow {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 11.5px;
  color: var(--gold);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.hero__eyebrow span { padding: 0 6px; opacity: 0.85; }

.hero__title {
  font-family: var(--font-serif);
  font-weight: 500;
  color: var(--cream);
  line-height: 0.98;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 28px;
  font-size: clamp(42px, 12.4vw, 56px);
}
.hero__title .line {
  display: block;
  white-space: nowrap;
}
.hero__title .line--accent {
  color: var(--gold);
  font-weight: 500;
  letter-spacing: -0.025em;
  margin-top: 6px;
  text-shadow: 0 2px 14px rgba(5, 5, 5, 0.55);
}

.hero__lede {
  color: var(--cream);
  font-weight: 300;
  font-size: 15.5px;
  line-height: 1.75;
  max-width: 26ch;
  margin-bottom: 36px;
}

/* CTA */
.cta {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 16px 28px;
  border: 1px solid var(--gold);
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 12.5px;
  font-weight: 500;
  background: rgba(5,5,5,0.35);
  transition: background 250ms ease, color 250ms ease, border-color 250ms ease;
}
.cta svg { width: 14px; height: 14px; display: block; }
.cta:hover { background: var(--gold); color: var(--black); }

/* =========================================================
   SUPPORTING IMAGES + QUOTE (lower section)
   ========================================================= */
.ghost-portrait,
.polaroid,
.quote,
.signature,
.scroll { position: relative; z-index: 2; }

.ghost-portrait {
  position: absolute;
  left: 16px;
  bottom: 110px;
  width: 42%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  z-index: 2;
  /* soft vignette fade into the black background */
  -webkit-mask-image: radial-gradient(ellipse at 55% 45%, #000 38%, transparent 85%);
          mask-image: radial-gradient(ellipse at 55% 45%, #000 38%, transparent 85%);
}
.ghost-portrait img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 28%;
  filter: grayscale(1) brightness(0.78) contrast(1.08);
}

/* polaroid: lower-right — image already has cream border + tape baked in */
.polaroid {
  position: absolute;
  right: 18px;
  bottom: 175px;
  width: 46%;
  transform: rotate(3.2deg);
  box-shadow:
    0 22px 38px rgba(0,0,0,0.55),
    0 4px 10px rgba(0,0,0,0.45);
  z-index: 3;
}
.polaroid img {
  width: 100%;
  height: auto;
  display: block;
}
.polaroid__tape { display: none; }

/* handwritten quote sits beneath/beside the polaroid */
.quote {
  position: absolute;
  right: 22px;
  bottom: 60px;
  max-width: 56%;
  text-align: left;
  z-index: 4;
}
.quote blockquote {
  font-family: var(--font-quote);
  color: var(--gold);
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.3px;
}
.quote__rule {
  position: absolute;
  left: -16px; top: 6px;
  width: 1px; height: 78%;
  background: linear-gradient(to bottom, transparent, var(--gold-soft) 25%, var(--gold-soft) 75%, transparent);
  opacity: 0.55;
}
.quote__underline {
  display: block;
  margin-top: 10px;
  width: 70%;
  height: 1px;
  background: linear-gradient(to right, var(--gold), transparent);
  opacity: 0.6;
}

/* MJ signature lower-left of hero (decorative) */
.signature {
  position: absolute;
  left: 24px; bottom: 90px;
  font-family: var(--font-script);
  color: var(--gold);
  opacity: 0.5;
  font-size: 56px;
  line-height: 1;
  letter-spacing: -2px;
  pointer-events: none;
  display: none;   /* hidden on mobile; shown on desktop */
}
.signature__t { margin-left: -10px; }

/* SCROLL indicator (bottom-centered) */
.scroll {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.scroll__line {
  width: 1px; height: 32px;
  background: linear-gradient(to bottom, transparent, var(--gold-soft));
  opacity: 0.7;
}
.scroll__label {
  color: var(--cream);
  font-size: 11px;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  font-weight: 400;
}

/* =========================================================
   DESKTOP — 992px and up
   ========================================================= */
@media (min-width: 992px) {

  .nav {
    padding: 16px 56px 14px;
    height: 94px;
  }
  .nav__logo img { height: 120px; }

  .nav__menu { display: none; }
  .nav__links {
    display: flex; align-items: center; gap: 56px;
    color: var(--cream);
    font-size: 12.5px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    position: absolute;
    left: 50%; top: 50%;
    transform: translate(-50%, -50%);
  }
  .nav__links a {
    transition: color 200ms ease;
    padding: 4px 0;
  }
  .nav__links a:hover { color: var(--gold); }

  .nav__listen {
    display: inline-flex; align-items: center; gap: 14px;
    color: var(--gold);
    font-size: 12px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
  }
  .nav__listen svg { width: 26px; height: 16px; display: block; }

  /* Hero re-composition */
  .hero {
    padding: 0;
    min-height: 100vh;
    height: 100vh;
  }

  .hero__photo {
    top: 0;
    right: 14%;
    left: auto;
    width: 52%;
    height: 100%;
    /* Soft transparent fade on left + right (and a little top/bottom)
       so the photo dissolves into the dark page background. */
    -webkit-mask-image: radial-gradient(
      ellipse 62% 78% at 50% 50%,
      #000 40%,
      rgba(0,0,0,0.92) 58%,
      rgba(0,0,0,0.55) 78%,
      rgba(0,0,0,0.15) 92%,
      transparent 100%
    );
            mask-image: radial-gradient(
      ellipse 62% 78% at 50% 50%,
      #000 40%,
      rgba(0,0,0,0.92) 58%,
      rgba(0,0,0,0.55) 78%,
      rgba(0,0,0,0.15) 92%,
      transparent 100%
    );
  }
  .hero__photo img {
    object-position: 50% 22%;
  }

  .hero__overlay {
    height: 100%;
    background:
      linear-gradient(180deg, rgba(5,5,5,0.45) 0%, rgba(5,5,5,0) 18%, rgba(5,5,5,0) 80%, rgba(5,5,5,0.75) 100%),
      linear-gradient(90deg, rgba(5,5,5,0.92) 0%, rgba(5,5,5,0.6) 22%, rgba(5,5,5,0.0) 42%, rgba(5,5,5,0.0) 70%, rgba(5,5,5,0.85) 100%);
  }

  .hero__copy {
    position: absolute;
    top: 54%;
    left: 6%;
    transform: translateY(-50%);
    padding-top: 0;
    z-index: 3;
  }
  .hero__eyebrow { font-size: 12.5px; margin-bottom: 30px; }
  .hero__title  {
    margin-bottom: 40px;
    line-height: 0.95;
    font-size: clamp(72px, 6.6vw, 112px);
  }
  .hero__title .line--accent { margin-top: 6px; }
  .hero__lede   {
    font-size: 17px;
    font-weight: 400;
    max-width: 40ch;
    margin-bottom: 44px;
    color: var(--cream);
    opacity: 0.92;
  }
  .cta          { padding: 18px 38px; font-size: 12.5px; }

  /* Ghost portrait — moody dark photo in upper-right, fades via radial mask
     into the dark page background so the rectangular edges dissolve. */
  .ghost-portrait {
    position: absolute;
    margin: 0;
    inset: 4% -1% auto auto;  /* slight bleed off right edge */
    width: 26%;
    height: 78%;
    aspect-ratio: auto;
    z-index: 1;
    overflow: hidden;
    -webkit-mask-image: radial-gradient(ellipse 80% 95% at 60% 40%, #000 30%, rgba(0,0,0,0.85) 55%, rgba(0,0,0,0.35) 80%, transparent 100%);
            mask-image: radial-gradient(ellipse 80% 95% at 60% 40%, #000 30%, rgba(0,0,0,0.85) 55%, rgba(0,0,0,0.35) 80%, transparent 100%);
  }
  .ghost-portrait img {
    object-fit: cover;
    object-position: 55% 35%;
    opacity: 0.7;
    filter: brightness(0.95) contrast(1.05);
  }

  /* Polaroid bottom-right */
  .polaroid {
    right: 4%;
    bottom: 9%;
    width: 240px;
    transform: rotate(2deg);
    z-index: 4;
  }

  /* Quote, sized & placed beneath the polaroid */
  .quote {
    right: calc(4% + 240px);
    bottom: 10%;
    max-width: 280px;
    text-align: left;
  }
  .quote blockquote { font-size: 22px; line-height: 1.5; }
  .quote__rule      { left: -20px; height: 80%; }
  .quote__underline { width: 60%; }

  /* MJ signature visible on desktop */
  .signature {
    display: block;
    left: 4%;
    bottom: 30px;
    font-size: 88px;
    opacity: 0.42;
  }

  /* scroll indicator: keep centered bottom */
  .scroll { bottom: 28px; }
  .scroll__line  { height: 38px; }
  .scroll__label { font-size: 11.5px; }
}

/* =========================================================
   Very wide screens
   ========================================================= */
@media (min-width: 1500px) {
  .nav { padding-left: 88px; padding-right: 88px; }
  .hero__copy { left: 7%; }
  .signature  { left: 5%;  font-size: 120px; }
  .ghost-portrait { width: 16%; }
}

/* =========================================================
   ABOUT — "The Woman Behind the Voice"
   Mobile-first.
   ========================================================= */
.about {
  background: var(--black);
  color: var(--cream);
  padding: 0 24px 60px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.about__photo {
  display: none;  /* hidden on mobile, restored on desktop */
  order: -1;   /* photo above text on mobile */
  margin: 0 -24px 36px;  /* full-bleed on mobile */
  /* Softer edge fade only — photo stays vivid in the center. */
  -webkit-mask-image: radial-gradient(ellipse closest-side at 50% 50%, #000 55%, rgba(0,0,0,0.85) 78%, rgba(0,0,0,0.4) 92%, transparent 100%);
          mask-image: radial-gradient(ellipse closest-side at 50% 50%, #000 55%, rgba(0,0,0,0.85) 78%, rgba(0,0,0,0.4) 92%, transparent 100%);
}
.about__photo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 5 / 4;
  object-position: 50% 35%;
  opacity: 1;
  filter: brightness(1) contrast(1.04) saturate(1.08);
}

.about__copy {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
  padding-top: 4px;
}

.about__eyebrow {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 11.5px;
  color: var(--gold);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.about__title {
  font-family: var(--font-serif);
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: -0.005em;
  font-size: clamp(36px, 9vw, 46px);
  color: var(--cream);
  margin-bottom: 26px;
}
.about__title .line { display: block; white-space: nowrap; }
.about__title .line--accent {
  color: var(--gold);
  font-weight: 500;
}

.about__lede {
  color: var(--cream);
  font-weight: 300;
  font-size: 15.5px;
  line-height: 1.7;
  margin-bottom: 22px;
  opacity: 0.9;
}

.about__tagline {
  color: var(--cream);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 22px;
}

.about__signature {
  text-align: center;
  margin: 18px auto 8px;
  width: max-content;
}
.about__signature-text {
  display: block;
  font-family: var(--font-quote);
  color: var(--gold);
  font-size: 24px;
  line-height: 1;
  letter-spacing: 0.5px;
}
.about__signature-rule {
  display: block;
  margin: 8px auto 0;
  width: 75%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-soft), transparent);
  opacity: 0.7;
}

/* Pillars: bordered container, divided rows on mobile */
.pillars {
  list-style: none;
  margin: 40px 0 0;
  padding: 6px 14px;
  border: 1px solid rgba(201, 154, 74, 0.32);
  display: flex;
  flex-direction: column;
  background: rgba(17, 16, 14, 0.55);
}
.pillar {
  text-align: center;
  padding: 22px 8px;
  border-bottom: 1px solid rgba(201, 154, 74, 0.18);
}
.pillar:last-child { border-bottom: 0; }

.pillar__title {
  font-family: var(--font-sans);
  color: var(--gold);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin: 4px 0 8px;
}
.pillar__copy {
  color: var(--cream);
  font-weight: 300;
  font-size: 14.5px;
  line-height: 1.55;
  opacity: 0.92;
}

/* =========================================================
   Polaroid row — 3 editorial photos with sellotape, slight
   rotation, light overlap. Mobile-first.
   ========================================================= */
.polaroids {
  margin: 40px -8px 0;
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.snap {
  position: relative;
  margin: 14px 0 0;
  flex: 0 1 30%;
  max-width: 130px;
  filter: drop-shadow(0 12px 22px rgba(0,0,0,0.45));
}
.snap img {
  display: block;
  width: 100%;
  height: auto;
}
.snap__tape {
  position: absolute;
  top: -10px; left: 50%;
  transform: translateX(-50%) rotate(-4deg);
  width: 46px; height: 16px;
  background: rgba(244, 239, 230, 0.18);
  border: 1px solid rgba(244, 239, 230, 0.22);
  box-shadow: 0 2px 5px rgba(0,0,0,0.4);
  z-index: 2;
  pointer-events: none;
}
.snap--1 { transform: rotate(-5deg); z-index: 1; }
.snap--2 { transform: rotate(2deg) translateY(-6px); z-index: 3; }
.snap--3 { transform: rotate(4deg); z-index: 2; }

/* ---------- About desktop ---------- */
@media (min-width: 992px) {
  .about {
    padding: 80px 0 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "copy       polaroids"
      "pillars    pillars";
    grid-template-rows: auto auto;
    column-gap: 0;
    row-gap: 80px;
    align-items: center;
  }

  .about__copy {
    grid-area: copy;
    text-align: left;
    max-width: 560px;
    margin: 0 0 0 auto;
    padding: 0 64px 0 7%;
  }

  .about__eyebrow { font-size: 12.5px; margin-bottom: 26px; }
  .about__title {
    font-size: clamp(50px, 4.4vw, 72px);
    margin-bottom: 32px;
    line-height: 1.05;
  }
  .about__lede {
    font-size: 16.5px;
    line-height: 1.7;
    margin-bottom: 26px;
    max-width: 32em;
  }
  .about__tagline { font-size: 16px; margin-bottom: 28px; }
  .about__signature { margin: 24px 0 30px; }
  .about__signature-text { font-size: 30px; }
  .about__signature-rule { width: 60%; margin: 10px 0 0; }

  /* Polaroid row sits beside the text on the right */
  .polaroids {
    grid-area: polaroids;
    margin: 0;
    padding: 0 7% 0 40px;
    gap: 0;
    justify-content: center;
    flex-wrap: nowrap;
  }
  .snap {
    flex: 0 0 auto;
    width: 28%;
    max-width: 200px;
    margin: 0;
  }
  .snap--1 { transform: rotate(-6deg);  margin-right: -24px;  z-index: 1; }
  .snap--2 { transform: rotate(2deg) translateY(-12px); margin-right: -24px; z-index: 3; }
  .snap--3 { transform: rotate(5deg);   z-index: 2; }
  .snap__tape { width: 60px; height: 20px; top: -12px; }

  /* Pillars: full-width 4-column row below */
  .pillars {
    grid-area: pillars;
    margin: 0 7%;
    padding: 36px 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 0;
    grid-row-gap: 0;
    background: rgba(5, 5, 5, 0.78);
    position: relative;
    z-index: 2;
    border: 1px solid rgba(201, 154, 74, 0.22);
  }
  .pillar {
    text-align: center;
    padding: 14px 28px;
    border-bottom: 0;
    border-right: 1px solid rgba(201, 154, 74, 0.16);
  }
  .pillar:last-child { border-right: 0; }
  .pillar__title { font-size: 12.5px; margin: 2px 0 10px; }
  .pillar__copy  { font-size: 14px; max-width: 24ch; margin: 0 auto; }
}

@media (min-width: 1500px) {
  .about__copy { padding-left: 9%; }
  .pillars { margin-left: 9%; margin-right: 9%; }
}

/* =========================================================
   FEATURED IN — auto-scrolling marquee of press logos
   ========================================================= */
.featured {
  background: var(--black);
  padding: 36px 0 44px;
  overflow: hidden;
}

.featured__label {
  text-align: center;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  opacity: 0.85;
}

.featured__marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
          mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
}

.featured__track {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0;                       /* spacing handled per-item via margin-right so -50% lines up exactly */
  width: max-content;
  animation: featured-scroll 28s linear infinite;
}

.featured__track li {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  margin-right: 72px;           /* applied after every item (including the last), so two halves are identical */
}
.featured__track img {
  height: 38px;
  width: auto;
  display: block;
  opacity: 0.85;
  transition: opacity 200ms ease;
}
.featured__track li:hover img { opacity: 1; }

/* Track = 2 identical halves (set + set). Translating by exactly -50% maps the
   start of set 2 onto where set 1 started — perfectly seamless, no jump or gap. */
@keyframes featured-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (min-width: 992px) {
  .featured { padding: 48px 0 56px; }
  .featured__label { font-size: 12px; margin-bottom: 32px; }
  .featured__track { animation-duration: 36s; }
  .featured__track li  { margin-right: 110px; }
  .featured__track img { height: 44px; }
}

/* =========================================================
   Shared section header for Videos / Music / Shows
   ========================================================= */
.videos,
.music,
.shows {
  background: var(--black);
  color: var(--cream);
  padding: 80px 24px;
}

.videos__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}
.videos__eyebrow {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 11.5px;
  color: var(--gold);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.videos__title {
  font-family: var(--font-serif);
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: -0.005em;
  font-size: clamp(38px, 9vw, 64px);
  color: var(--cream);
  margin-bottom: 16px;
}
.videos__title .line { display: block; }
.videos__title .line--accent { color: var(--gold); font-weight: 500; }
.videos__lede {
  color: var(--cream);
  font-weight: 300;
  font-size: 15.5px;
  line-height: 1.6;
  opacity: 0.85;
  max-width: 36ch;
  margin: 0 auto;
}

/* =========================================================
   VIDEOS — Tabs + uniform 16:9 grid
   ========================================================= */
.tabs {
  max-width: 1280px;
  margin: 0 auto 32px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  border-bottom: 1px solid rgba(201, 154, 74, 0.18);
}
.tab {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.55;
  background: transparent;
  border: 0;
  padding: 14px 22px;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: color 200ms ease, opacity 200ms ease, border-color 200ms ease;
}
.tab:hover { opacity: 1; color: var(--cream); }
.tab.is-active {
  color: var(--gold);
  opacity: 1;
  border-bottom-color: var(--gold);
}

.video-grid {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 1280px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.video-grid[hidden],
.video-grid:not(.is-active) { display: none; }
.video-grid.is-active { display: grid; }

.vcard {
  background: var(--charcoal);
  border: 1px solid rgba(201, 154, 74, 0.18);
  overflow: hidden;
  transition: border-color 200ms ease;
}
.vcard:hover { border-color: rgba(201, 154, 74, 0.4); }

.vcard__frame--link {
  display: block;
  background-size: cover;
  background-position: center;
  position: relative;
  cursor: pointer;
}
.vcard__frame--link::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0.7));
}
.vcard__sounds {
  position: absolute;
  bottom: 12px; left: 14px;
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cream);
  padding: 4px 8px;
  border: 1px solid var(--cream);
  z-index: 1;
}

.vcard__frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
}
.vcard__frame iframe,
.vcard__frame video,
.vcard__frame .ytlite {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  object-fit: cover;
  object-position: center 25%;
  background: #000;
}

/* Lite YouTube facade — static thumbnail with play button */
.ytlite {
  background-color: #000;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  transition: filter 200ms ease;
}
.ytlite::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 60%, rgba(0,0,0,0.55));
  pointer-events: none;
}
.ytlite:hover { filter: brightness(1.08); }
.ytlite__play {
  position: absolute;
  top: 50%; left: 50%;
  width: 60px; height: 42px;
  border-radius: 10px;
  background: rgba(15, 15, 15, 0.75);
  transform: translate(-50%, -50%);
  transition: background 200ms ease, transform 200ms ease;
  z-index: 2;
}
.ytlite__play::before {
  content: "";
  position: absolute;
  top: 50%; left: 55%;
  width: 0; height: 0;
  border-style: solid;
  border-width: 9px 0 9px 14px;
  border-color: transparent transparent transparent #fff;
  transform: translate(-50%, -50%);
}
.ytlite:hover .ytlite__play { background: var(--gold); transform: translate(-50%, -50%) scale(1.05); }
.ytlite:hover .ytlite__play::before { border-left-color: var(--black); }

.vcard__meta { padding: 14px 16px 16px; }
.vcard__tag {
  display: block;
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.vcard__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 17px;
  color: var(--cream);
  line-height: 1.2;
}

@media (min-width: 640px)  { .video-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px)  { .video-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1280px) { .tab { font-size: 12px; padding: 16px 26px; } }

/* =========================================================
   MUSIC — Spotify embed
   ========================================================= */
.music__embed {
  max-width: 920px;
  margin: 0 auto;
  border: 1px solid rgba(201, 154, 74, 0.18);
  background: var(--charcoal);
  padding: 14px;
}
.music__embed iframe {
  display: block;
  width: 100%;
  border: 0;
  border-radius: 0;
}

/* =========================================================
   SHOWS — gold rule between rows
   ========================================================= */
.show-list {
  list-style: none;
  max-width: 760px;
  margin: 0 auto;
  padding: 0;
}
.show {
  display: grid;
  grid-template-columns: 88px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(201, 154, 74, 0.18);
}
.show:last-child { border-bottom: 0; }

.show__date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  line-height: 1;
}
.show__day {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -0.02em;
}
.show__mo {
  font-family: var(--font-sans);
  font-size: 10.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-top: 4px;
  opacity: 0.85;
}
.show__venue {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 20px;
  color: var(--cream);
  margin-bottom: 4px;
}
.show__loc {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 13px;
  color: var(--cream);
  opacity: 0.7;
  letter-spacing: 0.04em;
}
.show__tag {
  font-family: var(--font-sans);
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-soft);
  border: 1px solid var(--gold-soft);
  padding: 6px 10px;
  white-space: nowrap;
}

@media (max-width: 540px) {
  .show { grid-template-columns: 72px 1fr; row-gap: 6px; }
  .show__tag { grid-column: 1 / -1; justify-self: start; }
  .show__day { font-size: 28px; }
}

/* =========================================================
   CONTACT FORM
   ========================================================= */
.contact {
  background: var(--black);
  color: var(--cream);
  padding: 80px 24px 60px;
}
.contact__form {
  max-width: 720px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 24px;
  border: 1px solid rgba(201, 154, 74, 0.22);
  padding: 36px 32px 32px;
  background: rgba(17, 16, 14, 0.55);
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-family: var(--font-sans);
  font-size: 10.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.9;
}
.field input,
.field select,
.field textarea {
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--cream);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(201, 154, 74, 0.35);
  padding: 10px 2px;
  outline: none;
  transition: border-color 200ms ease;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}
.field textarea {
  border: 1px solid rgba(201, 154, 74, 0.35);
  padding: 12px 14px;
  resize: vertical;
  min-height: 140px;
  font-family: var(--font-sans);
}
.field select {
  background-image: linear-gradient(45deg, transparent 50%, var(--gold) 50%),
                    linear-gradient(135deg, var(--gold) 50%, transparent 50%);
  background-position: calc(100% - 16px) 50%, calc(100% - 10px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 30px;
  cursor: pointer;
}
.field select option { background: var(--charcoal); color: var(--cream); }
.field input::placeholder,
.field textarea::placeholder { color: rgba(244, 239, 230, 0.4); }
.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--gold); }

.contact__actions {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.cta--filled {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 32px;
  border: 1px solid var(--gold);
  background: var(--gold);
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-family: var(--font-sans);
  font-size: 12.5px;
  font-weight: 500;
  cursor: pointer;
  transition: background 200ms ease, color 200ms ease;
}
.cta--filled:hover { background: transparent; color: var(--gold); }
.cta--filled svg { width: 16px; height: 16px; }
.contact__or {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.55;
}
.contact__or a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(201, 154, 74, 0.4);
}

@media (max-width: 640px) {
  .contact__form { grid-template-columns: 1fr; padding: 28px 22px 24px; }
  .field--half { grid-column: 1 / -1; }
}

/* =========================================================
   SITE FOOTER
   ========================================================= */
.site-foot {
  background: var(--black);
  color: var(--cream);
  padding: 56px 24px 40px;
  text-align: center;
  border-top: 1px solid rgba(201, 154, 74, 0.18);
}
.site-foot__brand img {
  display: inline-block;
  height: 72px;
  width: auto;
}
.site-foot__social {
  margin: 24px auto 22px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px 28px;
  max-width: 600px;
}
.site-foot__social a {
  font-family: var(--font-sans);
  font-size: 11.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.85;
  transition: color 200ms ease;
}
.site-foot__social a:hover { color: var(--gold); }
.site-foot__copy {
  font-family: var(--font-sans);
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.45;
}

/* =========================================================
   MOBILE DRAWER
   ========================================================= */
html.no-scroll, html.no-scroll body { overflow: hidden; }

.drawer {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(5, 5, 5, 0.98);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 260ms ease;
}
.drawer[hidden] { display: none !important; }
.drawer.is-open { opacity: 1; }

.drawer__brand {
  position: absolute;
  top: 22px; left: 50%;
  transform: translateX(-50%);
  width: 70px; height: auto;
  opacity: 0.32;
  pointer-events: none;
  user-select: none;
}
.drawer__close {
  position: absolute;
  top: 18px; right: 24px;
  background: transparent;
  border: 0;
  color: var(--cream);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  cursor: pointer;
}
.drawer__x {
  position: relative;
  width: 22px;
  height: 22px;
}
.drawer__x::before,
.drawer__x::after {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 100%;
  height: 1.5px;
  background: var(--gold);
  border-radius: 1px;
}
.drawer__x::before { transform: rotate(45deg); }
.drawer__x::after  { transform: rotate(-45deg); }

.drawer__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.drawer__nav a {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 36px;
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: color 200ms ease;
}
.drawer__nav a:hover { color: var(--gold); }

.drawer__cta {
  margin-top: 44px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 32px;
  border: 1px solid var(--gold);
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-family: var(--font-sans);
  font-size: 12.5px;
  font-weight: 500;
  text-decoration: none;
}
.drawer__cta svg { width: 14px; height: 14px; }

@media (min-width: 992px) {
  .drawer { display: none !important; }   /* hidden on desktop */
}

/* =========================================================
   MICRO-ANIMATIONS
   - Smooth scroll for in-page links
   - Scroll-reveal: elements fade + lift in as they enter the viewport
   - Hover micro-interactions on cards, links, buttons, pillars
   - Subtle continuous motion: scroll indicator bob
   - Tab content fade-in
   All wrapped in prefers-reduced-motion guard at the bottom.
   ========================================================= */
html { scroll-behavior: smooth; }

/* ---- Scroll-reveal base state (set by JS adding .reveal class) ---- */
.reveal {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition:
    opacity 700ms cubic-bezier(0.2, 0.6, 0.2, 1),
    transform 700ms cubic-bezier(0.2, 0.6, 0.2, 1);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }

/* Stagger children — JS adds .reveal__stagger to parents */
.reveal__stagger > * {
  opacity: 0;
  transform: translate3d(0, 20px, 0);
  transition:
    opacity 600ms cubic-bezier(0.2, 0.6, 0.2, 1),
    transform 600ms cubic-bezier(0.2, 0.6, 0.2, 1);
}
.reveal__stagger.is-visible > *           { opacity: 1; transform: none; }
.reveal__stagger.is-visible > *:nth-child(1) { transition-delay: 40ms; }
.reveal__stagger.is-visible > *:nth-child(2) { transition-delay: 110ms; }
.reveal__stagger.is-visible > *:nth-child(3) { transition-delay: 180ms; }
.reveal__stagger.is-visible > *:nth-child(4) { transition-delay: 250ms; }
.reveal__stagger.is-visible > *:nth-child(5) { transition-delay: 320ms; }
.reveal__stagger.is-visible > *:nth-child(6) { transition-delay: 390ms; }
.reveal__stagger.is-visible > *:nth-child(7) { transition-delay: 460ms; }
.reveal__stagger.is-visible > *:nth-child(8) { transition-delay: 530ms; }

/* ---- Tabs: fade panel in when activated ---- */
.video-grid {
  transition: opacity 320ms ease;
}
.video-grid.is-active { animation: panel-fade 360ms ease both; }
@keyframes panel-fade {
  from { opacity: 0; transform: translate3d(0, 8px, 0); }
  to   { opacity: 1; transform: none; }
}

/* ---- Hover micro-interactions ---- */
/* Listen Now CTA (hero + drawer) gets a soft glow */
.cta {
  transition:
    background-color 250ms ease,
    color 250ms ease,
    border-color 250ms ease,
    transform 250ms cubic-bezier(0.2, 0.6, 0.2, 1),
    box-shadow 250ms ease;
}
.cta:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(201,154,74,0.18); }
.cta:active { transform: translateY(0); }

.cta--filled {
  transition:
    background 250ms ease,
    color 250ms ease,
    transform 250ms cubic-bezier(0.2, 0.6, 0.2, 1),
    box-shadow 250ms ease;
}
.cta--filled:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(201,154,74,0.32); }
.cta--filled:active { transform: translateY(0); }

/* Nav listen pill: gold underline shimmer */
.nav__listen { position: relative; }
.nav__listen svg { transition: transform 250ms ease; }
.nav__listen:hover svg { transform: translateX(3px); }

/* Nav links: animated underline */
.nav__links a {
  position: relative;
  transition: color 200ms ease;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 280ms cubic-bezier(0.2, 0.6, 0.2, 1);
}
.nav__links a:hover::after { transform: scaleX(1); }

/* Mobile drawer nav links — letter-lift + gold tint */
.drawer__nav a {
  position: relative;
  transition: color 220ms ease, transform 220ms cubic-bezier(0.2,0.6,0.2,1), letter-spacing 220ms ease;
}
.drawer__nav a:hover { transform: translateY(-2px); letter-spacing: 0.06em; }

/* Pillar cards — slight lift + gold border glow */
.pillar {
  transition: background 280ms ease, transform 280ms cubic-bezier(0.2,0.6,0.2,1);
}
.pillar:hover { background: rgba(201,154,74,0.04); transform: translateY(-2px); }
.pillar__title { transition: color 220ms ease; }
.pillar:hover .pillar__title { color: var(--cream); }

/* Polaroid + ghost-portrait: gentle scale on hover */
.polaroid,
.snap,
.ghost-portrait {
  transition: transform 360ms cubic-bezier(0.2,0.6,0.2,1), filter 360ms ease;
}
.polaroid:hover,
.snap:hover         { transform: scale(1.03) rotate(0deg); }
.snap--1:hover      { transform: scale(1.05) rotate(-2deg); }
.snap--2:hover      { transform: scale(1.05) translateY(-16px); }
.snap--3:hover      { transform: scale(1.05) rotate(2deg); }
.ghost-portrait:hover { transform: translateY(-4px); }

/* Video cards: card lift + tag color shift */
.vcard {
  transition:
    border-color 250ms ease,
    transform 280ms cubic-bezier(0.2,0.6,0.2,1),
    box-shadow 280ms ease;
}
.vcard:hover {
  transform: translateY(-4px);
  border-color: rgba(201,154,74,0.55);
  box-shadow: 0 18px 36px rgba(0,0,0,0.45);
}
.vcard__tag   { transition: color 220ms ease, letter-spacing 220ms ease; }
.vcard:hover .vcard__tag { letter-spacing: 0.34em; color: var(--cream); }

/* Show list rows: row indicator slides in from the left */
.show {
  transition: background 250ms ease, padding-left 280ms cubic-bezier(0.2,0.6,0.2,1);
  position: relative;
}
.show::before {
  content: "";
  position: absolute;
  left: -16px; top: 50%;
  width: 6px; height: 6px;
  background: var(--gold);
  transform: translateY(-50%) scale(0);
  transition: transform 280ms cubic-bezier(0.2,0.6,0.2,1);
}
.show:hover { padding-left: 12px; background: rgba(201,154,74,0.04); }
.show:hover::before { transform: translateY(-50%) scale(1); }
.show__venue { transition: color 220ms ease; }
.show:hover .show__venue { color: var(--gold); }

/* Footer social links: animated underline */
.site-foot__social a {
  position: relative;
  transition: color 220ms ease, transform 220ms cubic-bezier(0.2,0.6,0.2,1);
}
.site-foot__social a:hover { transform: translateY(-2px); }
.site-foot__social a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 260ms cubic-bezier(0.2,0.6,0.2,1);
}
.site-foot__social a:hover::after { transform: scaleX(1); }

/* Tab triggers: subtle slide-in underline */
.tab {
  position: relative;
  transition:
    color 200ms ease,
    opacity 200ms ease,
    transform 200ms cubic-bezier(0.2,0.6,0.2,1);
}
.tab:hover { transform: translateY(-1px); }
.tab::after {
  content: "";
  position: absolute;
  left: 22px; right: 22px; bottom: -1px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 320ms cubic-bezier(0.2,0.6,0.2,1);
}
.tab:hover::after        { transform: scaleX(0.4); opacity: .6; }
.tab.is-active::after    { transform: scaleX(1); opacity: 1; }
.tab.is-active           { border-bottom-color: transparent; }   /* replaced by ::after */

/* Featured-in logos: gentle lift */
.featured__track li img { transition: opacity 220ms ease, transform 280ms cubic-bezier(0.2,0.6,0.2,1); }
.featured__track li:hover img { transform: translateY(-3px) scale(1.04); }

/* Form fields: label nudge on focus */
.field input:focus + *,
.field textarea:focus + *,
.field:focus-within label { color: var(--cream); }
.field label { transition: color 220ms ease; }

/* Scroll indicator bob */
.scroll__line { animation: scroll-bob 2.2s ease-in-out infinite; transform-origin: top center; }
@keyframes scroll-bob {
  0%, 100% { transform: scaleY(1) translateY(0); opacity: 0.65; }
  50%      { transform: scaleY(1.4) translateY(2px); opacity: 1; }
}

/* Quote rule shimmer */
.quote__rule {
  animation: rule-pulse 4s ease-in-out infinite;
}
@keyframes rule-pulse {
  0%, 100% { opacity: 0.45; }
  50%      { opacity: 0.8; }
}

/* Logo hover: subtle tilt */
.nav__logo img,
.site-foot__brand img {
  transition: transform 350ms cubic-bezier(0.2,0.6,0.2,1), filter 350ms ease;
}
.nav__logo:hover img,
.site-foot__brand:hover img { transform: rotate(-1.5deg) scale(1.03); }

/* =========================================================
   Reduce motion
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
  .reveal, .reveal__stagger > * { opacity: 1 !important; transform: none !important; }
  .featured__track { animation: none; }
  .scroll__line, .quote__rule { animation: none; }
}
