/* ============================================================
   SLOKA REDDY — Website Styles
   ============================================================ */

/* ── TOKENS ── */
:root {
  --pink-bg:      #faf3ee;   /* was #fce8ee — now cream */
  --pink-light:   #f4e6e0;   /* was #fad4e0 — warm blush */
  --pink-mid:     #cf9aa6;   /* was #e8a0b8 — muted rose */
  --pink-deep:    #9e4a5e;   /* was #c84870 — dusty rose accent */
  --pink-hover:   #843d4e;   /* was #a83860 — deeper rose */
  --pink-border:  #e3d3cb;   /* was #e0b0c0 — warm neutral line */
  --white:        #ffffff;
  --text-dark:    #1a1a1a;
  --text-body:    #4a4a4a;
  --text-muted:   #888;
  --font-serif:   'Playfair Display', Georgia, serif;
  --font-sans:    'Montserrat', system-ui, sans-serif;
  --nav-h:        72px;
  --radius:       6px;
  --transition:   0.25s ease;
  --shadow-card:  0 4px 24px rgba(180, 60, 100, 0.10);
  --cream:        #faf3ee;
  --ink:          #2b2421;
  --rose:         #9e4a5e;
  --rose-line:    #bf7388;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-label:   'Jost', system-ui, sans-serif;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── UTILITY ── */
.container {
  width: min(1100px, 92%);
  margin-inline: auto;
}
.section { padding-block: 80px; }
.section-label {
  display: block;
  font-family: var(--font-label);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  color: var(--rose);
  text-transform: uppercase;
  margin-bottom: 14px;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--font-label);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  border-radius: 1px;
  border: 1.5px solid var(--ink);
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition);
}
.btn-primary:hover {
  background: #3d322d;
  border-color: #3d322d;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: transparent;
  color: var(--ink);
  font-family: var(--font-label);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: 1px;
  border: 1.5px solid var(--ink);
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}
.btn-outline:hover {
  background: var(--ink);
  color: var(--cream);
}


/* ============================================================
   HEADER / NAV
   ============================================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}
/* soft cinematic scrim so nav links stay legible over the hero photo */
.header::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 150px;
  background: linear-gradient(180deg, rgba(43,36,33,0.38), transparent);
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.3s ease;
}
.header.scrolled {
  background: #faf3ee;
  border-bottom-color: #ecd9d0;
  box-shadow: 0 2px 20px rgba(180, 90, 110, 0.07);
}
.header.scrolled::before { opacity: 0; }
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
}
.nav-logo {
  font-family: var(--font-label);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  color: var(--cream);
  flex-shrink: 0;
  transition: color 0.3s ease;
}
.header.scrolled .nav-logo { color: var(--ink); }
.nav-links {
  display: flex;
  gap: 36px;
}
.nav-link {
  font-family: var(--font-label);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--cream);
  text-transform: uppercase;
  padding-bottom: 3px;
  border-bottom: 1.5px solid transparent;
  transition: border-color var(--transition), color var(--transition);
}
.header.scrolled .nav-link { color: var(--ink); }
.nav-link:hover,
.nav-link.active {
  border-bottom-color: var(--rose);
  color: #f3b9c4;
}
.header.scrolled .nav-link:hover,
.header.scrolled .nav-link.active {
  color: var(--rose);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition), background 0.3s ease;
}
.header.scrolled .hamburger span { background: var(--ink); }


/* ============================================================
   MOBILE MENU
   ============================================================ */
.mobile-menu {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(320px, 85vw);
  background: var(--pink-bg);
  z-index: 200;
  display: flex;
  flex-direction: column;
  padding: 32px 40px 48px;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -4px 0 32px rgba(180, 60, 100, 0.15);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.3);
  z-index: 150;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.mobile-overlay.visible {
  opacity: 1;
  pointer-events: all;
}
.mobile-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: var(--text-dark);
  cursor: pointer;
  padding: 4px;
  margin-bottom: 40px;
}
.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
}
.mobile-nav-links li {
  border-bottom: 1px solid var(--pink-border);
}
.mobile-link {
  display: block;
  padding: 18px 0;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--text-dark);
  text-transform: uppercase;
  transition: color var(--transition);
}
.mobile-link:hover { color: var(--pink-deep); }
.mobile-social {
  display: flex;
  gap: 20px;
  margin-top: 40px;
  color: var(--text-dark);
}
.mobile-social a {
  color: var(--text-dark);
  transition: color var(--transition);
}
.mobile-social a:hover { color: var(--pink-deep); }


/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  background: #e9c4bf;
  overflow: hidden;
}
.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 2%;
  transform: scale(1.14) translate(5%, 6%);
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg,
    rgba(250,243,238,0.30) 0%,
    rgba(250,243,238,0.06) 26%,
    transparent 46%,
    rgba(43,36,33,0.26) 80%,
    rgba(43,36,33,0.50) 100%);
}
.hero-text {
  position: absolute;
  left: 8%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 30px;
}
.hero-rule {
  width: 38px;
  height: 1px;
  background: var(--rose-line);
}
.hero-eyebrow span:last-child {
  font-family: var(--font-label);
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--rose);
  white-space: nowrap;
}
.hero-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(3.4rem, 8.2vw, 7.4rem);
  line-height: 0.96;
  color: var(--ink);
  letter-spacing: 0.01em;
  margin: 0;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 42px;
}
.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--font-label);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  border-radius: 1px;
  transition: background var(--transition);
}
.btn-hero:hover { background: #3d322d; }
.hero-watch {
  font-family: var(--font-label);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--rose-line);
  padding-bottom: 4px;
  white-space: nowrap;
  transition: border-color var(--transition);
}
.hero-watch:hover { border-bottom-color: var(--ink); }

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(250,243,238,0.65);
  z-index: 3;
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}


/* ============================================================
   LATEST RELEASE
   ============================================================ */
.release { background: var(--cream); }
.release .container { max-width: 560px; }

/* Pre-save state */
.release-presave { text-align: center; }
.presave-badge {
  display: inline-block;
  font-family: var(--font-label);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--pink-deep);
  border: 1px solid var(--pink-border);
  border-radius: 100px;
  padding: 7px 16px;
  margin-bottom: 22px;
  white-space: nowrap;
}
.presave-subtext {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--text-body);
  max-width: 440px;
  margin: 14px auto 30px;
}
.presave-cta {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font-label);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 16px 34px;
  border-radius: 1px;
  background: var(--ink);
  color: var(--cream);
  border: 1.5px solid var(--ink);
  transition: background var(--transition), color var(--transition);
}
.presave-cta:hover { background: var(--pink-deep); border-color: var(--pink-deep); }

.release-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.4vw, 3.2rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.05;
  margin-bottom: 8px;
}
.release-out {
  font-family: var(--font-label);
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--rose);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 34px;
}

/* Player card */
.player-card {
  display: flex;
  gap: 0;
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #efe1da;
  box-shadow: 0 10px 40px rgba(120, 70, 80, 0.08);
  margin-bottom: 28px;
}

.player-album {
  position: relative;
  width: 120px;
  min-width: 120px;
  aspect-ratio: 1;
  flex-shrink: 0;
}
.player-album img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.album-placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(150deg, #b56676 0%, #7c3a4b 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 12px;
  text-align: center;
}
.album-placeholder span {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--cream);
  line-height: 1.1;
}
.album-placeholder small {
  font-family: var(--font-label);
  font-size: 0.5rem;
  color: rgba(250,243,238,0.78);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.player-album img:not([style*="display:none"]) ~ .album-placeholder { display: none; }

.player-body {
  flex: 1;
  padding: 18px 20px 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.player-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 14px;
}
.player-track-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 3px;
}
.player-artist-name {
  font-size: 0.75rem;
  color: var(--text-muted);
}
.player-platform-icon { color: var(--rose); }

.player-controls {
  display: flex;
  align-items: center;
  gap: 14px;
}
.player-play-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--ink);
  border: none;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition), transform var(--transition);
}
.player-play-btn:hover {
  background: #3d322d;
  transform: scale(1.05);
}

.player-progress-wrap {
  flex: 1;
  cursor: pointer;
}
.player-progress-track {
  height: 4px;
  background: #ecdcd5;
  border-radius: 4px;
  position: relative;
}
.player-progress-fill {
  height: 100%;
  background: var(--rose);
  border-radius: 4px;
  width: 0%;
  transition: width 0.1s linear;
}
.player-progress-thumb {
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--rose);
  transition: left 0.1s linear;
}

.player-time {
  font-size: 0.68rem;
  color: var(--text-muted);
  white-space: nowrap;
  flex-shrink: 0;
}
.player-duration { color: var(--text-muted); }

/* Streaming links */
.streaming-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.streaming-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  border: 1.5px solid #e3d3cc;
  border-radius: 1px;
  font-family: var(--font-label);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  background: transparent;
  transition: border-color var(--transition), background var(--transition), color var(--transition);
}
.streaming-btn:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--cream);
}
.streaming-btn svg { flex-shrink: 0; }


/* ============================================================
   ABOUT
   ============================================================ */
.about { background: #f4e6e0; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}
.about-image {
  position: relative;
  aspect-ratio: 4/5;
  padding: 16px;
  border: 1px solid rgba(43, 36, 33, 0.16);
  border-radius: 2px;
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  position: relative;
  z-index: 1;
}
.about-photo-placeholder { display: none; }

.about-content { display: flex; flex-direction: column; gap: 22px; }
.about-bio {
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--text-body);
}
.about-bio em { font-style: italic; color: var(--rose); }


/* ============================================================
   FEATURED VIDEOS
   ============================================================ */
.videos { background: var(--cream); }
.videos-label { text-align: center; }
.videos-heading {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  font-weight: 700;
  letter-spacing: 0;
  text-align: center;
  margin-bottom: 40px;
  color: var(--ink);
}

/* Carousel */
.vcarousel {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}
.vstage {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: 6px;
  overflow: hidden;
  background: linear-gradient(135deg, #c89aa6 0%, #8a5266 100%);
  box-shadow: 0 20px 50px rgba(120,40,70,0.22);
}
.vstage-iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.vstage-facade { position: absolute; inset: 0; animation: vfade 0.35s ease both; }
@keyframes vfade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.vstage-thumb { width: 100%; height: 100%; object-fit: cover; }

/* Coming-soon premiere slide */
.vstage-soon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  background:
    radial-gradient(120% 120% at 50% 18%, #f4dbe1 0%, #e3adb9 52%, #b87d8d 100%);
}
.vsoon-kicker {
  font-family: var(--font-label);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--pink-deep);
  margin-bottom: 12px;
}
.vsoon-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.05;
}
.vsoon-premiere {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  color: var(--text-body);
  margin-top: 10px;
}
.vsoon-countdown {
  display: flex;
  gap: clamp(14px, 3vw, 30px);
  margin: 22px 0 24px;
}
.vsoon-unit { display: flex; flex-direction: column; align-items: center; }
.vsoon-num {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.vsoon-lab {
  font-family: var(--font-label);
  font-size: 0.56rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pink-deep);
  margin-top: 7px;
}
.vsoon-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-label);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 13px 28px;
  border-radius: 1px;
  background: var(--ink);
  color: var(--cream);
  border: 1.5px solid var(--ink);
  transition: background var(--transition), color var(--transition);
}
.vsoon-cta:hover { background: var(--pink-deep); border-color: var(--pink-deep); }
.vstage-placeholder {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(135deg, #c89aa6 0%, #8a5266 100%);
}
.vstage-shade {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,12,16,0.72) 0%, rgba(20,12,16,0.12) 42%, rgba(20,12,16,0.28) 100%);
}
.vstage-play {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: none; background: transparent; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.vstage-play-ring {
  width: 84px; height: 84px; border-radius: 50%;
  background: rgba(255,255,255,0.95);
  box-shadow: 0 8px 28px rgba(0,0,0,0.28);
  display: flex; align-items: center; justify-content: center;
  color: var(--pink-deep);
  transition: transform var(--transition);
}
.vstage-play-ring svg { margin-left: 5px; }
.vstage-play:hover .vstage-play-ring { transform: scale(1.08); }
.vstage-caption { position: absolute; left: 0; right: 0; bottom: 0; padding: 26px 30px; pointer-events: none; }
.vstage-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--pink-deep); color: #fff;
  font-family: var(--font-label); font-size: 0.6rem;
  letter-spacing: 0.16em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 2px; margin-bottom: 10px;
}
.vstage-title {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.4vw, 1.9rem);
  font-weight: 700; color: #fff; line-height: 1.15;
}
.vstage-subtitle {
  font-family: var(--font-label); font-size: 0.82rem;
  color: rgba(255,255,255,0.82); margin-top: 4px; letter-spacing: 0.02em;
}
.vcarousel-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 5; width: 52px; height: 52px; border-radius: 50%;
  border: none; background: #fff; color: var(--ink); cursor: pointer;
  box-shadow: 0 6px 22px rgba(150,50,90,0.18);
  display: flex; align-items: center; justify-content: center;
  transition: transform var(--transition), background var(--transition), color var(--transition);
}
.vcarousel-prev { left: -22px; }
.vcarousel-next { right: -22px; }
.vcarousel-arrow:hover { background: var(--ink); color: var(--cream); transform: translateY(-50%) scale(1.06); }

/* Subscribe / follow CTA */
.videos-cta {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 16px; margin-top: 46px;
}
.btn-subscribe {
  display: inline-flex; align-items: center; gap: 11px;
  padding: 15px 30px; background: var(--pink-deep); color: #fff;
  font-family: var(--font-label); font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  border-radius: 2px; border: 1.5px solid var(--pink-deep);
  transition: background var(--transition), border-color var(--transition);
}
.btn-subscribe:hover { background: var(--pink-hover); border-color: var(--pink-hover); }
.btn-follow { gap: 11px; }
.videos-note {
  text-align: center; font-family: var(--font-label);
  font-size: 0.74rem; color: var(--text-muted);
  letter-spacing: 0.03em; margin-top: 18px;
}


/* ============================================================
   PRESS & EPK
   ============================================================ */
.press { background: #f4e6e0; }
.press-inner {
  display: flex;
  align-items: center;
  gap: 36px;
  background: var(--ink);
  border-radius: 4px;
  padding: 44px 48px;
  box-shadow: 0 18px 50px rgba(43, 36, 33, 0.18);
}
.press-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  color: #cf8b99;
}
.press-icon-label {
  font-family: var(--font-label);
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  color: rgba(250,243,238,0.5);
}
.press-text { flex: 1; }
.press-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0;
  color: var(--cream);
  margin-bottom: 10px;
}
.press-text p {
  font-size: 0.84rem;
  color: rgba(250,243,238,0.72);
  line-height: 1.65;
}
.press-btn {
  flex-shrink: 0;
  background: var(--cream);
  color: var(--ink);
  border-color: var(--cream);
}
.press-btn:hover {
  background: #ffffff;
  border-color: #ffffff;
}


/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--cream);
  border-top: 1px solid #e6d5cd;
  padding-top: 64px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-heading {
  font-family: var(--font-label);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 22px;
}
.footer-social {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-social a {
  color: var(--ink);
  transition: color var(--transition), transform var(--transition);
}
.footer-social a:hover {
  color: var(--rose);
  transform: translateY(-2px);
}
.footer-contact p {
  font-size: 0.82rem;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 20px;
}
.footer-contact-btn { font-size: 0.72rem; padding: 12px 22px; }
.footer-bottom {
  border-top: 1px solid #e6d5cd;
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}


/* ============================================================
   RESPONSIVE — TABLET  (≤ 900px)
   ============================================================ */
@media (max-width: 900px) {
  :root { --nav-h: 64px; }

  .nav-links { display: none; }
  .hamburger { display: flex; }

  /* Hero: full-bleed photo, text anchored bottom-left over a cream fade */
  .hero { min-height: 100svh; }
  .hero-photo {
    object-position: 50% 8%;
    transform: scale(1.12);
  }
  .hero-overlay {
    background: linear-gradient(180deg,
      rgba(43,36,33,0.32) 0%,
      transparent 22%,
      transparent 40%,
      rgba(250,243,238,0.55) 68%,
      var(--cream) 96%);
  }
  .hero-text {
    left: 6%;
    right: 6%;
    top: auto;
    bottom: 7%;
    transform: none;
  }
  .hero-name {
    font-size: clamp(3rem, 14vw, 5rem);
  }
  .scroll-indicator { display: none; }

  /* About stacks — keep the portrait aspect so her head isn't cropped */
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-image { aspect-ratio: 4/5; max-width: 340px; margin-inline: auto; }
  .about-image img { object-position: 50% 22%; }

  /* Videos: arrows tuck inside the stage */
  .vcarousel-prev { left: 10px; }
  .vcarousel-next { right: 10px; }

  /* Press wraps */
  .press-inner { flex-wrap: wrap; gap: 24px; text-align: center; flex-direction: column; align-items: center; }
  .press-btn { width: 100%; text-align: center; justify-content: center; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }

  .section { padding-block: 60px; }
}


/* ============================================================
   RESPONSIVE — MOBILE  (≤ 560px)
   ============================================================ */
@media (max-width: 560px) {
  :root { --nav-h: 58px; }

  .hero-name { font-size: clamp(2.8rem, 15vw, 4.4rem); }
  .hero-eyebrow span:last-child { font-size: 0.6rem; letter-spacing: 0.24em; white-space: normal; }

  .player-card { flex-direction: column; }
  .player-album { width: 100%; min-width: unset; aspect-ratio: 1; max-height: 180px; }

  .streaming-links { flex-direction: column; }
  .streaming-btn { justify-content: center; width: 100%; }

  .vcarousel-arrow { width: 42px; height: 42px; }
  .videos-cta { flex-direction: column; }
  .btn-subscribe, .btn-follow { justify-content: center; width: 100%; }

  .release .container { max-width: 100%; }
  .section { padding-block: 48px; }

  .press-inner { padding: 28px 24px; }
  .footer-social { gap: 14px; }
}




/* ============================================================
   COOKIE CONSENT BANNER
   ============================================================ */
.consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 300;
  display: none;
  background: var(--cream);
  border-top: 1px solid var(--pink-border);
  box-shadow: 0 -6px 28px rgba(43, 36, 33, 0.10);
}
.consent-banner.show {
  display: block;
  animation: consentUp 0.4s ease;
}
@keyframes consentUp {
  from { transform: translateY(100%); }
  to   { transform: translateY(0); }
}
.consent-inner {
  width: min(1100px, 92%);
  margin-inline: auto;
  padding: 18px 0;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.consent-text {
  flex: 1;
  min-width: 240px;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  line-height: 1.65;
  color: var(--text-body);
}
.consent-actions {
  display: flex;
  gap: 12px;
}
.consent-btn {
  font-family: var(--font-label);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 11px 26px;
  border-radius: 1px;
  border: 1.5px solid var(--ink);
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}
.consent-accept { background: var(--ink); color: var(--cream); }
.consent-accept:hover { background: #3d322d; }
.consent-decline { background: transparent; color: var(--ink); }
.consent-decline:hover { background: var(--ink); color: var(--cream); }
@media (max-width: 560px) {
  .consent-inner { padding: 16px 0; }
  .consent-actions { width: 100%; }
  .consent-btn { flex: 1; text-align: center; }
}
