/* ============================================================
   KANDACE LINDSEY — Master Stylesheet
   Aesthetic: Luxury Editorial · Bright Gold on Rich Espresso
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Josefin+Sans:wght@200;300;400;600&family=EB+Garamond:ital,wght@0,400;1,400&display=swap');

/* ── RESET & ROOT ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

:root {
  /* ── BRIGHTER GOLD PALETTE ── */
  --gold:        #D9BF82;          /* was #C9A96E — lifted +12%, crisper */
  --gold-light:  #F0E2B4;          /* was #E8D5A3 */
  --gold-dim:    rgba(217,191,130,0.20);
  --cream:       #FBF6EC;          /* was #F5EDD8 — near-white cream */
  --dark:        #0E0B08;          /* was #0A0705 — slightly lighter */
  --deep:        #161009;          /* was #100C08 */
  --mid:         #211709;          /* was #1A1209 */
  --surface:     #2C1E0B;          /* was #221608 */
  --terra:       #A05C38;          /* was #8B4E2F */
  --text:        #F0E2B4;          /* was #E8D5A3 — brighter cream-gold */
  --text-muted:  rgba(240,226,180,0.72);  /* was 0.55 — much more visible */
  --text-dim:    rgba(240,226,180,0.45);  /* was 0.30 */
  --border:      rgba(217,191,130,0.18);  /* was 0.12 */
  --border-gold: rgba(217,191,130,0.50);  /* was 0.35 */

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'EB Garamond', Georgia, serif;
  --font-ui:      'Josefin Sans', sans-serif;

  --nav-h: 80px;
  --section-pad: clamp(80px, 10vw, 140px) clamp(24px, 7vw, 100px);
  --max-w: 1280px;
}

body {
  background: var(--dark);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.75;
  overflow-x: hidden;
  -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 { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

/* ── CURSOR ── */
.cursor      { position: fixed; width: 8px; height: 8px; background: var(--gold); border-radius: 50%; pointer-events: none; z-index: 9999; transform: translate(-50%,-50%); transition: width .2s, height .2s, opacity .2s; }
.cursor-ring { position: fixed; width: 34px; height: 34px; border: 1px solid rgba(217,191,130,.55); border-radius: 50%; pointer-events: none; z-index: 9998; transform: translate(-50%,-50%); transition: all .12s ease; }
body:not(:hover) .cursor,
body:not(:hover) .cursor-ring { opacity: 0; }

/* ── NOISE OVERLAY ── */
.noise {
  position: fixed; inset: 0; z-index: 0; pointer-events: none; opacity: .018;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px;
}

/* ── NAVIGATION ── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(24px, 5vw, 80px);
  transition: background .4s, backdrop-filter .4s;
}
.site-nav.scrolled {
  background: rgba(14,11,8,.94);
  backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: .15em;
  color: var(--gold);
  text-transform: uppercase;
}
.nav-links {
  display: flex; gap: 44px; list-style: none;
}
.nav-links a {
  font-family: var(--font-ui);
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color .3s;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active { color: var(--gold); }
.nav-links a.active::after { transform: scaleX(1); }

/* Merch nav button */
.nav-merch-btn {
  font-family: var(--font-ui);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--dark);
  background: var(--gold);
  padding: 9px 22px;
  transition: background .3s;
  white-space: nowrap;
}
.nav-merch-btn:hover { background: var(--gold-light); }

@media (max-width: 960px) { .nav-merch-btn { display: none; } }

/* Language toggle button */
.nav-lang-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(217,191,130,0.10);
  border: 1.5px solid rgba(217,191,130,0.55);
  border-radius: 100px;
  padding: 7px 16px 7px 10px;
  cursor: pointer;
  transition: all .3s ease;
  white-space: nowrap;
  position: relative;
}
.nav-lang-btn::before {
  content: '';
  position: absolute; inset: -1px;
  border-radius: 100px;
  background: linear-gradient(135deg, rgba(217,191,130,0.18) 0%, transparent 60%);
  pointer-events: none;
}
.nav-lang-btn:hover {
  background: rgba(217,191,130,0.20);
  border-color: var(--gold);
  box-shadow: 0 0 18px rgba(217,191,130,0.28), 0 0 0 1px rgba(217,191,130,0.15);
  transform: translateY(-1px);
}
.nav-lang-flag {
  width: 22px; height: 15px;
  border-radius: 3px;
  object-fit: cover;
  display: block;
  box-shadow: 0 1px 4px rgba(0,0,0,0.35);
  flex-shrink: 0;
}
.nav-lang-label {
  font-family: var(--font-ui);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .28em;
  color: var(--gold);
  line-height: 1;
}

/* Mobile lang button */
.nav-lang-mobile-btn {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--font-display); font-size: clamp(1.6rem, 5vw, 2.4rem);
  font-style: italic; color: var(--text-muted);
  background: none; border: none; cursor: pointer;
  transition: color .3s; padding: 0;
}
.nav-lang-mobile-btn:hover { color: var(--gold); }
.nav-lang-mobile-flag {
  width: 38px; height: 26px;
  border-radius: 4px;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
  flex-shrink: 0;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column; gap: 5px;
  padding: 8px;
}
.nav-toggle span {
  display: block; width: 24px; height: 1px;
  background: var(--gold); transition: all .3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile nav */
.nav-mobile {
  position: fixed; inset: 0; z-index: 490;
  background: rgba(14,11,8,.97);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 40px;
  transform: translateX(100%); transition: transform .5s ease;
}
.nav-mobile.open { transform: translateX(0); }
.nav-mobile a {
  font-family: var(--font-display);
  font-size: clamp(2rem, 8vw, 3.5rem);
  font-style: italic;
  color: var(--text-muted);
  transition: color .3s;
}
.nav-mobile a:hover { color: var(--gold); }

/* ── UTILITY ── */
.section-label {
  display: inline-flex; align-items: center; gap: 16px;
  font-family: var(--font-ui);
  font-size: .55rem;
  font-weight: 300;
  letter-spacing: .5em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.section-label::before {
  content: ''; width: 40px; height: 1px;
  background: var(--gold); opacity: .5;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -.01em;
}
.section-title em { font-style: italic; color: var(--gold); }

.eyebrow {
  font-family: var(--font-ui);
  font-size: .58rem;
  font-weight: 300;
  letter-spacing: .45em;
  text-transform: uppercase;
  color: var(--gold);
}

.gold-line {
  display: block; width: 48px; height: 1px;
  background: var(--gold); margin: 28px 0;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-ui);
  font-size: .6rem;
  font-weight: 300;
  letter-spacing: .3em;
  text-transform: uppercase;
  padding: 15px 38px;
  transition: all .3s;
  cursor: pointer;
}
.btn-gold {
  background: var(--gold); color: var(--dark);
}
.btn-gold:hover { background: var(--gold-light); }
.btn-outline {
  border: 1px solid var(--border-gold); color: var(--gold);
}
.btn-outline:hover { background: var(--gold-dim); border-color: var(--gold); }
.btn-text {
  color: var(--gold); padding: 0;
  border-bottom: 1px solid transparent;
}
.btn-text:hover { border-color: var(--gold); }
.btn svg { width: 14px; height: 14px; }

/* ── REVEAL ANIMATIONS ── */
.reveal {
  opacity: 0; transform: translateY(36px);
  transition: opacity .9s ease, transform .9s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left  { opacity: 0; transform: translateX(-40px); transition: opacity .9s ease, transform .9s ease; }
.reveal-right { opacity: 0; transform: translateX(40px);  transition: opacity .9s ease, transform .9s ease; }
.reveal-left.visible,
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ── HERO (shared base) ── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: flex-end;
  overflow: hidden;
  padding: var(--nav-h) clamp(24px, 7vw, 100px) clamp(60px, 8vh, 100px);
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  filter: brightness(.88) saturate(1.08);
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(14,11,8,.92) 28%, rgba(14,11,8,.42) 65%, rgba(14,11,8,.12) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 680px; }

/* ── UNDERWATER HERO EFFECT ── */
/* Caustic light canvas — sits above image, below text */
.hero-caustic-canvas{display:none}

/* Water surface blue shimmer at top of hero */
.hero-surface-shimmer{display:none}
.hero-surface-shimmer::after {
  content: '';
  position: absolute;
  top: var(--nav-h); left: 0; right: 0;
  height: 2px;
  background: linear-gradient(
    to right,
    transparent 0%,
    rgba(200,235,255,0.70) 25%,
    rgba(230,248,255,0.90) 50%,
    rgba(200,235,255,0.70) 75%,
    transparent 100%
  );
  filter: blur(0.5px);
}

.hero-name {
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 10vw, 8.5rem);
  font-weight: 300;
  line-height: .92;
  letter-spacing: -.02em;
  color: #FFFFFF;
  text-shadow: 0 2px 40px rgba(0,0,0,.4);
}
.hero-name em { font-style: italic; color: var(--gold); display: block; }

.hero-sub {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-style: italic;
  color: var(--text-muted);
  margin-top: 16px;
}
.hero-desc {
  font-family: var(--font-ui);
  font-size: .62rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(240,226,180,.52);
  margin-top: 10px;
}
.hero-cta { margin-top: 44px; display: flex; gap: 18px; flex-wrap: wrap; }

.scroll-hint {
  position: absolute; bottom: 40px; right: clamp(24px, 5vw, 80px); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.scroll-hint span {
  font-family: var(--font-ui); font-size: .5rem; letter-spacing: .35em;
  text-transform: uppercase; color: var(--text-dim);
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px; height: 70px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:1;transform:scaleY(1)} 50%{opacity:.3;transform:scaleY(.7)} }

/* ── QUOTE BAND ── */
.quote-band {
  background: var(--gold);
  padding: 32px clamp(24px, 7vw, 100px);
  text-align: center;
}
.quote-band blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-style: italic;
  color: var(--dark);
  font-weight: 400;
}
.quote-band cite {
  font-family: var(--font-ui);
  font-size: .55rem;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: rgba(14,11,8,.7);
  display: block; margin-top: 10px;
  font-style: normal;
}

/* ── STATS STRIP ── */
.stats-strip {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2px; background: var(--border);
}
.stat-cell {
  background: var(--mid); padding: 44px 30px; text-align: center;
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 300; color: var(--gold);
  display: block; line-height: 1;
}
.stat-lbl {
  font-family: var(--font-ui);
  font-size: .52rem; letter-spacing: .2em;
  text-transform: uppercase; color: var(--text-muted);
  margin-top: 10px; display: block;
}

/* ── SECTION WRAPPER ── */
.section { padding: var(--section-pad); }
.section-inner { max-width: var(--max-w); margin: 0 auto; }

/* ── TWO-COL GRID ── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(50px, 8vw, 120px); align-items: center; }
.three-col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.four-col  { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }

/* ── IMAGE TREATMENT ── */
.img-frame { position: relative; }
.img-frame img {
  width: 100%; height: 100%;
  object-fit: cover; filter: sepia(5%) contrast(1.12) brightness(.96) saturate(1.05);
}
.img-frame::before {
  content: ''; position: absolute;
  top: -18px; left: -18px; right: 18px; bottom: 18px;
  border: 1px solid var(--border-gold); z-index: -1;
}

/* ── PHOTO GRID ── */
.photo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; }
.photo-card {
  position: relative; overflow: hidden;
  aspect-ratio: 3/4; cursor: pointer;
}
.photo-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: sepia(8%) contrast(1.12) brightness(.93) saturate(1.08);
  transition: transform .8s ease, filter .5s ease;
}
.photo-card:hover img { transform: scale(1.07); filter: sepia(4%) contrast(1.15) brightness(.98) saturate(1.12); }
.photo-card-info {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(14,11,8,.88) 0%, transparent 55%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 28px 24px;
}
.photo-card-loc {
  font-family: var(--font-ui);
  font-size: .52rem; letter-spacing: .3em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 6px;
}
.photo-card-venue {
  font-family: var(--font-display);
  font-size: 1.2rem; font-style: italic;
  font-weight: 300; color: var(--cream);
}

/* ── CREDENTIAL LIST ── */
.cred-list { list-style: none; }
.cred-list li {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-body);
  font-size: .95rem; color: var(--text-muted);
  line-height: 1.65;
}
.cred-list li::before {
  content: '◆'; color: var(--gold);
  font-size: .45rem; margin-top: 7px; flex-shrink: 0;
}
.cred-list strong { color: var(--cream); font-weight: 400; }

/* ── TAG CLOUD ── */
.tag-cloud { display: flex; flex-wrap: wrap; gap: 10px; }
.tag {
  padding: 8px 20px;
  border: 1px solid var(--border-gold);
  font-family: var(--font-ui);
  font-size: .58rem; letter-spacing: .2em;
  text-transform: uppercase; color: var(--text-muted);
  transition: all .3s;
}
.tag:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-dim); }

/* ── VENUE LIST ── */
.venue-list { list-style: none; display: flex; flex-direction: column; gap: 18px; }
.venue-list li {
  padding-left: 20px;
  border-left: 2px solid var(--border-gold);
}
.venue-list strong {
  display: block; font-family: var(--font-ui);
  font-size: .7rem; letter-spacing: .15em;
  text-transform: uppercase; color: var(--gold);
  font-weight: 300; margin-bottom: 2px;
}
.venue-list span { font-family: var(--font-body); font-size: .9rem; color: var(--text-muted); }

/* ── FORMAT CARDS ── */
.format-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 60px; }
.format-card {
  background: var(--mid); padding: 52px 40px;
  position: relative; overflow: hidden; transition: background .3s;
}
.format-card:hover { background: var(--surface); }
.format-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform .45s ease;
}
.format-card:hover::after { transform: scaleX(1); }
.format-num {
  font-family: var(--font-display);
  font-size: 4rem; font-weight: 300;
  color: rgba(217,191,130,.18);
  line-height: 1; margin-bottom: 24px;
}
.format-name {
  font-family: var(--font-display);
  font-size: 1.7rem; font-style: italic;
  font-weight: 300; color: var(--cream);
  margin-bottom: 16px;
}
.format-desc {
  font-family: var(--font-body);
  font-size: .9rem; color: var(--text-muted); line-height: 1.8;
}
.format-detail {
  margin-top: 22px;
  font-family: var(--font-ui);
  font-size: .55rem; letter-spacing: .2em;
  text-transform: uppercase; color: var(--gold);
}

/* ── MUSIC PLAYER BLOCK ── */
.player-block {
  background: var(--mid);
  border: 1px solid var(--border);
  padding: 40px;
  display: flex; gap: 36px; align-items: flex-start;
}
.player-album-art {
  width: 160px; height: 160px;
  object-fit: cover; flex-shrink: 0;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
}
.player-info { flex: 1; }
.player-title {
  font-family: var(--font-display);
  font-size: 1.8rem; font-style: italic;
  font-weight: 300; color: var(--cream);
  margin-bottom: 6px;
}
.player-sub {
  font-family: var(--font-ui);
  font-size: .58rem; letter-spacing: .25em;
  text-transform: uppercase; color: var(--text-muted);
  margin-bottom: 16px;
}
.player-desc {
  font-family: var(--font-body);
  font-size: .9rem; color: var(--text-muted);
  line-height: 1.8; margin-bottom: 24px;
}
.spotify-embed { border-radius: 0 !important; margin-top: 24px; }

/* ── CONTACT GRID ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.contact-cell {
  background: var(--mid); padding: 44px 40px;
}
.contact-lbl {
  font-family: var(--font-ui);
  font-size: .52rem; letter-spacing: .4em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 14px;
}
.contact-val {
  font-family: var(--font-display);
  font-size: 1.1rem; font-style: italic;
  color: var(--cream); line-height: 1.6;
}
.contact-val a { transition: color .3s; }
.contact-val a:hover { color: var(--gold); }

/* ── FOOTER ── */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 48px clamp(24px, 7vw, 100px);
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 300;
  letter-spacing: .2em; color: rgba(217,191,130,.55);
}
.footer-nav { display: flex; gap: 30px; list-style: none; }
.footer-nav a {
  font-family: var(--font-ui);
  font-size: .52rem; letter-spacing: .25em;
  text-transform: uppercase; color: var(--text-dim);
  transition: color .3s;
}
.footer-nav a:hover { color: var(--gold); }
.footer-copy {
  font-family: var(--font-ui);
  font-size: .5rem; letter-spacing: .2em;
  text-transform: uppercase; color: var(--text-dim);
  width: 100%; text-align: center; margin-top: 10px;
}

/* ── EPK-SPECIFIC ── */
.epk-watermark {
  position: fixed; bottom: 28px; right: 28px; z-index: 10;
  font-family: var(--font-ui); font-size: .5rem;
  letter-spacing: .3em; text-transform: uppercase;
  color: var(--text-dim); writing-mode: vertical-rl;
  pointer-events: none;
}
.epk-download-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; margin-top: 60px; }
.epk-download-card {
  background: var(--mid); padding: 44px 40px;
  display: flex; flex-direction: column; gap: 16px;
  border: 1px solid var(--border); transition: border-color .3s;
}
.epk-download-card:hover { border-color: var(--border-gold); }
.epk-file-icon {
  font-family: var(--font-display);
  font-size: 2.5rem; color: var(--gold);
  font-weight: 300; font-style: italic;
}
.epk-file-name {
  font-family: var(--font-ui); font-size: .65rem;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--cream);
}
.epk-file-desc {
  font-family: var(--font-body);
  font-size: .85rem; color: var(--text-muted);
  flex: 1;
}

/* ── PAGE HEADER (inner pages) ── */
.page-header {
  padding: calc(var(--nav-h) + 80px) clamp(24px, 7vw, 100px) 80px;
  background: var(--deep);
  border-bottom: 1px solid var(--border);
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .two-col, .three-col { grid-template-columns: 1fr; }
  .four-col { grid-template-columns: repeat(2, 1fr); }
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .photo-grid { grid-template-columns: repeat(2, 1fr); }
  .format-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .epk-download-grid { grid-template-columns: 1fr; }
  .player-block { flex-direction: column; }
  .player-album-art { width: 100%; height: 220px; }
  .site-footer { flex-direction: column; align-items: center; text-align: center; }
}

@media (max-width: 600px) {
  .four-col { grid-template-columns: 1fr; }
  .photo-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; }
  .btn { justify-content: center; }
}

/* ── LOAD ANIMATION ── */
@keyframes fadeUp   { from{opacity:0;transform:translateY(28px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeIn   { from{opacity:0} to{opacity:1} }
@keyframes slideLeft{ from{opacity:0;transform:translateX(30px)} to{opacity:1;transform:translateX(0)} }

.anim-1 { opacity:0; animation: fadeUp .9s ease .2s forwards; }
.anim-2 { opacity:0; animation: fadeUp .9s ease .4s forwards; }
.anim-3 { opacity:0; animation: fadeUp .9s ease .6s forwards; }
.anim-4 { opacity:0; animation: fadeUp .9s ease .8s forwards; }
.anim-5 { opacity:0; animation: fadeUp .9s ease 1s   forwards; }
.anim-6 { opacity:0; animation: fadeUp .9s ease 1.2s forwards; }

/* ── TICKER / MARQUEE ── */
.ticker {
  overflow: hidden; white-space: nowrap;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.ticker-inner {
  display: inline-block;
  animation: tickerScroll 40s linear infinite;
}
.ticker-inner:hover { animation-play-state: paused; }
@keyframes tickerScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.ticker-item {
  display: inline-flex; align-items: center;
  font-family: var(--font-ui); font-size: .55rem;
  letter-spacing: .3em; text-transform: uppercase;
  color: var(--text-muted); padding: 0 36px;
}
.ticker-item em { color: var(--gold); font-style: normal; margin-right: 4px; }
.ticker-dot {
  display: inline-block; width: 3px; height: 3px;
  background: var(--gold); border-radius: 50%;
  opacity: .5; margin: 0 36px; vertical-align: middle;
}

/* ── PRESS STRIP ── */
.press-strip {
  background: var(--surface);
  padding: 40px clamp(24px, 7vw, 100px);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.press-strip-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center; gap: 44px; flex-wrap: wrap;
}
.press-strip-label {
  font-family: var(--font-ui); font-size: .5rem;
  letter-spacing: .4em; text-transform: uppercase;
  color: var(--text-dim); flex-shrink: 0; white-space: nowrap;
}
.press-logos {
  display: flex; align-items: center; gap: 40px;
  flex-wrap: wrap; flex: 1;
}
.press-logo-item {
  font-family: var(--font-ui); font-size: .6rem;
  letter-spacing: .18em; text-transform: uppercase;
  color: rgba(240,226,180,.38);
  transition: color .35s;
}
.press-logo-item:hover { color: rgba(240,226,180,.75); }

/* ── FLOATING BOOK CTA ── */
.float-book {
  position: fixed; bottom: 30px; right: 30px; z-index: 400;
  opacity: 0; transform: translateY(14px);
  transition: opacity .4s ease, transform .4s ease;
  pointer-events: none;
}
.float-book.visible {
  opacity: 1; transform: translateY(0);
  pointer-events: auto;
}
.float-book a {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gold); color: var(--dark);
  font-family: var(--font-ui); font-size: .58rem;
  font-weight: 300; letter-spacing: .25em;
  text-transform: uppercase; padding: 14px 28px;
  box-shadow: 0 8px 40px rgba(217,191,130,.42);
  transition: background .3s, box-shadow .3s;
}
.float-book a:hover {
  background: var(--gold-light);
  box-shadow: 0 12px 50px rgba(217,191,130,.58);
}

/* ── SOCIAL ICONS ── */
.social-links { display: flex; gap: 14px; align-items: center; }
.social-link {
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px;
  border: 1px solid var(--border);
  color: var(--text-dim);
  transition: border-color .3s, color .3s;
}
.social-link:hover { border-color: var(--gold); color: var(--gold); }
.social-link svg { width: 13px; height: 13px; fill: currentColor; }

/* ── VIDEO GRID ── */
.video-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; }
.video-wrap {
  background: var(--mid); border: 1px solid var(--border);
  overflow: hidden; transition: border-color .4s;
}
.video-wrap:hover { border-color: var(--border-gold); }
.video-wrap video {
  width: 100%; display: block;
  aspect-ratio: 16/9; background: var(--dark);
  object-fit: cover;
}
.video-wrap video:focus { outline: 1px solid var(--border-gold); }
.video-caption {
  padding: 22px 26px;
}
.video-caption-title {
  font-family: var(--font-display); font-size: 1.1rem;
  font-style: italic; font-weight: 300; color: var(--cream);
  margin-bottom: 5px;
}
.video-caption-sub {
  font-family: var(--font-ui); font-size: .52rem;
  letter-spacing: .28em; text-transform: uppercase; color: var(--text-dim);
}

/* ── MERCH CAROUSEL ── */
.merch-carousel-wrap { position: relative; }
.merch-carousel { overflow: hidden; }
.merch-track {
  display: flex;
  transition: transform .65s cubic-bezier(.25,.46,.45,.94);
  will-change: transform;
}
.merch-card { flex: 0 0 25%; box-sizing: border-box; padding: 0 2px; }
.merch-card-inner {
  display: block; background: var(--mid);
  border: 1px solid var(--border);
  transition: border-color .35s;
  overflow: hidden;
}
.merch-card-inner:hover { border-color: var(--border-gold); }
.merch-img {
  position: relative; aspect-ratio: 1; overflow: hidden;
  background: var(--surface);
}
.merch-img img {
  width: 100%; height: 100%; object-fit: cover;
  filter: sepia(8%) contrast(1.06) brightness(.92);
  transition: transform .7s ease, filter .4s;
}
.merch-card-inner:hover .merch-img img {
  transform: scale(1.05);
  filter: sepia(4%) contrast(1.08) brightness(.95);
}
.merch-info { padding: 22px 24px; }
.merch-name {
  font-family: var(--font-display); font-size: 1rem;
  font-style: italic; font-weight: 300; color: var(--cream);
  margin-bottom: 8px; line-height: 1.3;
}
.merch-price {
  font-family: var(--font-ui); font-size: .58rem;
  letter-spacing: .22em; text-transform: uppercase; color: var(--gold);
}
.merch-shop-lbl {
  font-family: var(--font-ui); font-size: .52rem;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--text-dim); margin-top: 12px; display: block;
  transition: color .3s;
}
.merch-card-inner:hover .merch-shop-lbl { color: var(--gold); }

.merch-btn {
  position: absolute; top: 40%; transform: translateY(-50%);
  width: 44px; height: 44px;
  background: rgba(14,11,8,.88);
  border: 1px solid var(--border-gold);
  color: var(--gold); font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  z-index: 10; cursor: pointer;
  transition: background .3s;
}
.merch-btn:hover { background: rgba(217,191,130,.18); }
.merch-btn-prev { left: -22px; }
.merch-btn-next { right: -22px; }

.merch-dots {
  display: flex; justify-content: center;
  gap: 10px; margin-top: 30px;
}
.merch-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--border-gold); cursor: pointer;
  transition: background .3s, transform .3s;
}
.merch-dot.active { background: var(--gold); transform: scale(1.4); }

@media (max-width: 960px) {
  .video-grid { grid-template-columns: 1fr; }
  .merch-card { flex: 0 0 50%; }
  .merch-btn-prev { left: 0; }
  .merch-btn-next { right: 0; }
}
@media (max-width: 600px) {
  .merch-card { flex: 0 0 100%; }
}
