/* =============================================
   KRISHOOL — Global Stylesheet
   ============================================= */

/* ── VARIABLES ── */
:root {
  --black:        #0a0a0a;
  --dark:         #111111;
  --dark2:        #161410;
  --dark3:        #1f1e1b;
  --gold:         #C9A84C;
  --gold-light:   #e8c96d;
  --gold-dim:     rgba(201,168,76,0.15);
  --white:        #ffffff;
  --off-white:    #F4EFE4;
  --text:         #C8C0AE;
  --muted:        #8A8068;
  --border:       rgba(201,168,76,0.15);
  --border-mid:   rgba(201,168,76,0.3);
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'DM Sans', sans-serif;
  --transition:   0.25s ease;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }
body {
  background: var(--black); color: var(--text);
  font-family: var(--font-body); font-size: 15px;
  line-height: 1.75; overflow-x: hidden;
}
::selection { background: var(--gold); color: var(--black); }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--dark3); border-radius: 3px; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.05; letter-spacing: 0.02em; color: var(--white); }
h1 { font-size: clamp(70px, 12vw, 150px); font-weight: 800; text-transform: uppercase; }
h2 { font-size: clamp(36px, 5vw, 62px); font-weight: 700; text-transform: uppercase; }
h3 { font-size: clamp(20px, 2.5vw, 28px); font-weight: 700; }
p { color: var(--text); line-height: 1.8; }
em { font-style: italic; color: var(--gold); }
strong { font-weight: 600; color: var(--off-white); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; font-family: var(--font-body); font-size: 13px;
  font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  text-decoration: none; border-radius: 2px; border: 1px solid transparent;
  cursor: pointer; transition: all var(--transition); white-space: nowrap;
}
.btn-gold { background: var(--gold); color: var(--black); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(201,168,76,0.3); }
.btn-outline { background: transparent; color: var(--off-white); border-color: rgba(255,255,255,0.25); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.full-width { width: 100%; justify-content: center; }

/* ── NAVBAR ── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  height: 68px; display: flex; align-items: center;
  transition: background var(--transition), border-color var(--transition);
}
#navbar.scrolled {
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1400px; margin: 0 auto; padding: 0 40px;
  width: 100%; display: flex; align-items: center;
  justify-content: space-between; gap: 20px;
}
.nav-logo {
  font-family: 'Barlow Condensed', sans-serif; font-size: 20px; font-weight: 800;
  letter-spacing: 0.14em; color: var(--white); text-transform: uppercase;
  text-decoration: none; white-space: nowrap; flex-shrink: 0;
  transition: color var(--transition);
}
.nav-logo:hover { color: var(--gold); }
.nav-links {
  display: flex; align-items: center; gap: 0; list-style: none;
  flex: 1; justify-content: center;
}
.nav-links a {
  font-family: var(--font-body); font-size: 11px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.6);
  padding: 8px 10px; transition: color var(--transition); white-space: nowrap; display: block;
}
.nav-links a:hover { color: var(--white); }
.nav-links .nav-cta {
  background: var(--gold); color: var(--black);
  border-radius: 2px; padding: 8px 18px; margin-left: 8px;
}
.nav-links .nav-cta:hover { background: var(--gold-light); color: var(--black); }
.nav-social { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.nav-social a {
  color: rgba(255,255,255,0.5); font-size: 15px; line-height: 1;
  transition: color var(--transition); display: flex; align-items: center;
}
.nav-social a:hover { color: var(--gold); }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px; z-index: 10;
}
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--off-white); transition: all var(--transition); }
.hamburger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.nav-links.open {
  display: flex; flex-direction: column; position: absolute;
  top: 68px; left: 0; right: 0;
  background: rgba(10,10,10,0.98); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border); padding: 16px 0; gap: 0;
}
.nav-links.open li a { padding: 12px 24px; font-size: 14px; }
.nav-links.open .nav-cta { margin: 12px 24px 0; text-align: center; display: block; }

/* ── LAYOUT ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.section { padding: 100px 0; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.centered { text-align: center; }
.mt-lg { margin-top: 2.5rem; }
.section-eyebrow {
  font-family: var(--font-body); font-size: 11px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px;
}
.section-title { margin-bottom: 24px; }
.section-title em { display: block; color: var(--gold); font-style: italic; }
.section-intro { font-size: 16px; color: var(--muted); max-width: 640px; line-height: 1.8; margin-bottom: 0; }
.section-intro.centered { margin: 0 auto; }
.accent-line { width: 40px; height: 2px; background: var(--gold); margin-bottom: 24px; }
.centered .accent-line { margin: 0 auto 24px; }

/* ── HERO ── */
.hero {
  position: relative; min-height: 100vh; display: flex;
  flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 120px 32px 80px; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('hero_banner2.jpg');
  background-size: cover; background-position: center 30%; z-index: 0;
  animation: heroZoom 18s ease-out forwards;
}
@keyframes heroZoom { from { transform: scale(1.08); } to { transform: scale(1); } }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.45) 60%, transparent 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 900px; }
.hero-eyebrow { font-size: 11px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.hero-title {
  font-size: clamp(80px, 14vw, 160px); font-weight: 800;
  letter-spacing: 0.06em; color: var(--white); line-height: 0.95;
  margin-bottom: 24px; font-family: 'Barlow Condensed', sans-serif; text-transform: uppercase;
  text-shadow: 0 4px 40px rgba(0,0,0,0.6);
}
.hero-subtitle { font-size: 16px; font-weight: 300; color: var(--off-white); margin-bottom: 10px; letter-spacing: 0.04em; text-shadow: 0 2px 16px rgba(0,0,0,0.7); }
.hero-tagline { font-size: 13px; color: var(--text); margin-bottom: 40px; text-shadow: 0 2px 16px rgba(0,0,0,0.7); }
.hero-content > * { opacity: 0; animation: heroRise 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards; }
.hero-content .hero-ctas { animation-delay: 0.3s; }
@keyframes heroRise { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.hero-scroll span { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }
.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--muted), transparent); }

/* ── CINEMATIC VIDEO BG SECTION ── */
.video-bg-section { position: relative; width: 100%; height: 560px; overflow: hidden; background: #000; display: flex; align-items: center; justify-content: center; }
.video-bg-iframe-wrap { position: absolute; inset: 0; width: 100%; height: 100%; }
.video-bg-iframe { position: absolute; top: 50%; left: 50%; width: 177.78vh; min-width: 100%; height: 56.25vw; min-height: 100%; transform: translate(-50%, -50%); pointer-events: none; }
.video-bg-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.35); z-index: 1; }
.video-bg-text { position: relative; z-index: 2; text-align: center; }
.video-bg-text .section-eyebrow { color: var(--gold); margin-bottom: 12px; }
.video-bg-heading { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(42px, 7vw, 88px); font-weight: 700; color: #fff; letter-spacing: 0.04em; text-transform: uppercase; margin: 0; }

/* ── ABOUT ── */
.about-section { background: var(--black); }
.about-text-centered { max-width: 760px; margin: 0 auto; text-align: left; }
.about-actions-centered { justify-content: flex-start; }
.about-showreel-wrap { max-width: 820px; margin: 52px auto 0; }
.about-text p { font-size: 15px; color: var(--text); line-height: 1.8; margin-bottom: 16px; }
.about-text p:first-of-type { font-size: 16px; color: var(--off-white); }
.cred-list { display: flex; flex-direction: column; gap: 10px; margin: 28px 0; }
.cred-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px; background: var(--dark2);
  border: 1px solid var(--border); border-left: 2px solid var(--gold);
  border-radius: 3px; font-size: 14px; color: var(--text);
}
.cred-icon { font-size: 16px; flex-shrink: 0; }

/* ── SERVICES ── */
.services-section { background: var(--dark); }
.services-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 380px)); gap: 16px; margin-top: 48px; justify-content: center; }
.service-card {
  background: var(--dark2); border: 1px solid var(--border); border-radius: 3px;
  padding: 32px 24px; text-decoration: none; transition: border-color 0.3s, transform 0.3s;
  display: flex; flex-direction: column; gap: 12px;
}
.service-card:hover { border-color: var(--border-mid); transform: translateY(-4px); }
.service-icon { font-size: 28px; }
.service-card h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 22px; font-weight: 700; text-transform: uppercase; color: var(--white); }
.service-card p { font-size: 14px; color: var(--muted); line-height: 1.7; flex: 1; }
.card-link { font-size: 12px; font-weight: 600; color: var(--gold); letter-spacing: 0.04em; }

/* ── WEDDINGS ── */
.weddings-section { background: var(--black); }
.packages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.package-card {
  background: var(--dark2); border: 1px solid var(--border); border-radius: 3px;
  padding: 36px 30px; position: relative; display: flex; flex-direction: column; gap: 0;
  transition: border-color 0.3s, transform 0.3s;
}
.package-card:hover { border-color: var(--border-mid); transform: translateY(-4px); }
.package-card.featured { border-color: var(--gold-dim); }
.package-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--black); font-family: var(--font-body);
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 5px 16px; border-radius: 100px; white-space: nowrap;
}
.package-card h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 26px; font-weight: 700; text-transform: uppercase; color: var(--white); margin-bottom: 6px; }
.package-tagline { font-size: 12px; font-weight: 500; letter-spacing: 0.06em; color: var(--muted); text-transform: uppercase; margin-bottom: 20px; }
.package-price { font-family: 'Barlow Condensed', sans-serif; font-size: 40px; font-weight: 800; color: var(--white); line-height: 1; margin-bottom: 4px; }
.package-price span { font-size: 13px; font-weight: 400; color: var(--muted); font-family: var(--font-body); }
.package-duration { font-size: 12px; color: var(--gold); font-weight: 600; margin-bottom: 20px; letter-spacing: 0.03em; }
.package-features { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; flex: 1; }
.package-features li { font-size: 14px; color: var(--text); padding-left: 18px; position: relative; line-height: 1.5; }
.package-features li::before { content: ''; position: absolute; left: 0; top: 7px; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); opacity: 0.7; }
.package-extras { font-size: 13px; color: var(--muted); margin-bottom: 24px; }
.package-extras strong { color: var(--text); }
.why-section { margin-top: 64px; padding-top: 64px; border-top: 1px solid var(--border); }
.why-title { font-family: 'Barlow Condensed', sans-serif; font-size: 32px; font-weight: 700; text-transform: uppercase; color: var(--white); margin-bottom: 32px; text-align: center; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-item { padding: 24px; background: var(--dark2); border: 1px solid var(--border); border-radius: 3px; }
.why-num { font-family: 'Barlow Condensed', sans-serif; font-size: 40px; font-weight: 800; color: var(--gold); opacity: 0.5; line-height: 1; display: block; margin-bottom: 8px; }
.why-item h4 { font-family: var(--font-body); font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 8px; letter-spacing: 0.02em; }
.why-item p { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ── CORPORATE ── */
.corporate-section { background: var(--dark); }
.corporate-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 480px)); gap: 20px; margin-top: 48px; justify-content: center; }
.corporate-card {
  background: var(--dark2); border: 1px solid var(--border); border-radius: 3px;
  padding: 36px 28px; display: flex; flex-direction: column; gap: 14px;
  transition: border-color 0.3s, transform 0.3s;
}
.corporate-card:hover { border-color: var(--border-mid); transform: translateY(-4px); }
.corp-icon { font-size: 32px; }
.corporate-card h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 24px; font-weight: 700; text-transform: uppercase; color: var(--white); }
.corporate-card > p { font-size: 14px; color: var(--text); line-height: 1.75; flex: 1; }
.corporate-card ul { display: flex; flex-direction: column; gap: 6px; }
.corporate-card ul li { font-size: 13px; color: var(--muted); padding-left: 16px; position: relative; }
.corporate-card ul li::before { content: ''; position: absolute; left: 0; top: 7px; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); opacity: 0.6; }

/* ── ALBUM ── */
.album-section { background: var(--black); position: relative; overflow: hidden; }
.album-section::before {
  content: ''; position: absolute; top: 50%; left: 30%; transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
}
.album-section .container { position: relative; z-index: 1; }
.album-layout { display: grid; grid-template-columns: 400px 1fr; gap: 64px; align-items: start; margin-top: 48px; }
.album-cover-wrap { position: relative; }
.album-cover-img { width: 100%; border-radius: 3px; box-shadow: 0 24px 64px rgba(0,0,0,0.6), 0 0 0 1px var(--border); }
.album-available { font-family: var(--font-body); font-size: 11px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.album-title-text { font-family: 'Barlow Condensed', sans-serif; font-size: 36px; font-weight: 800; text-transform: uppercase; color: var(--white); margin-bottom: 4px; line-height: 1; }
.album-artist-name { font-family: var(--font-body); font-size: 14px; color: var(--muted); margin-bottom: 20px; }
.album-desc { font-size: 15px; color: var(--text); line-height: 1.8; margin-bottom: 24px; }
.album-format { display: flex; align-items: center; gap: 20px; background: var(--dark2); border: 1px solid var(--border); border-radius: 3px; padding: 18px 22px; margin-bottom: 24px; }
.format-badge { display: flex; align-items: center; gap: 12px; flex: 1; }
.format-icon { font-size: 24px; }
.format-label { font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 2px; }
.format-name { font-size: 14px; font-weight: 600; color: var(--off-white); }
.album-price-tag { font-family: 'Barlow Condensed', sans-serif; font-size: 36px; font-weight: 800; color: var(--white); }
.album-price-tag span { font-size: 14px; font-family: var(--font-body); color: var(--muted); }
.album-ctas { display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; }
.album-note { font-size: 12px; color: var(--muted); }

/* ── GALLERY ── */
.gallery-section { background: var(--dark); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: 240px 240px; gap: 12px; margin-top: 48px; }
.gallery-item { position: relative; overflow: hidden; border-radius: 3px; background: var(--dark3); }
.gallery-item.gallery-wide { grid-column: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0); display: flex; align-items: flex-end; padding: 20px; transition: background 0.35s; }
.gallery-item:hover .gallery-overlay { background: rgba(0,0,0,0.5); }
.gallery-overlay span { font-family: var(--font-body); font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--white); opacity: 0; transform: translateY(8px); transition: all 0.35s; }
.gallery-item:hover .gallery-overlay span { opacity: 1; transform: translateY(0); }

/* ── MEDIA / VIDEOS ── */
.media-section { background: var(--black); }
.media-category-label {
  font-family: 'Barlow Condensed', sans-serif; font-size: 18px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted);
  margin-bottom: 24px; margin-top: 56px;
}
.media-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.video-card { cursor: pointer; position: relative; background: var(--dark); border-radius: 3px; overflow: hidden; transition: transform 0.25s; }
.video-card:hover { transform: scale(1.025); }
.video-card:hover .play-btn { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.video-thumb { position: relative; aspect-ratio: 16/9; overflow: hidden; }
.video-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.play-btn {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%) scale(0.9);
  width: 54px; height: 54px; background: rgba(201,168,76,0.9); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--black); opacity: 0.75;
  transition: opacity 0.25s, transform 0.25s; pointer-events: none; border: none;
}
.video-title { padding: 12px 14px 4px; font-size: 13px; font-weight: 500; color: var(--off-white); }
.video-sub { padding: 0 14px 14px; font-size: 12px; color: var(--muted); }
.more-videos-link {
  display: block; text-align: center; margin: 40px auto 0;
  font-size: 12px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold); transition: color var(--transition);
}
.more-videos-link:hover { color: var(--gold-light); }

/* ── VIDEO PLAYER (usherworld-style) ── */
.video-player { margin-top: 48px; }
.vp-featured {
  position: relative; cursor: pointer; border-radius: 4px; overflow: hidden;
  background: var(--dark2); border: 1px solid var(--border);
  box-shadow: 0 12px 48px rgba(0,0,0,0.5);
}
.vp-featured-img {
  width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block;
  transition: transform 0.5s ease;
}
.vp-featured:hover .vp-featured-img { transform: scale(1.02); }
.vp-featured-overlay {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; pointer-events: none;
}
.vp-featured-play {
  width: 76px; height: 76px; border-radius: 50%;
  background: rgba(0,0,0,0.55); border: 2px solid rgba(255,255,255,0.8);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.vp-featured-play::after {
  content: ''; width: 0; height: 0; border-style: solid;
  border-width: 13px 0 13px 24px;
  border-color: transparent transparent transparent #fff; margin-left: 6px;
}
.vp-featured:hover .vp-featured-play { background: rgba(201,168,76,0.85); border-color: var(--gold); }
.vp-featured-meta {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 80px 28px 24px;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
}
.vp-featured-label {
  font-family: var(--font-body); font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px;
}
.vp-featured-title {
  font-family: 'Barlow Condensed', sans-serif; font-size: clamp(22px,3vw,34px);
  font-weight: 700; text-transform: uppercase; color: #fff; line-height: 1.1;
}
.vp-strip {
  display: flex; gap: 8px; margin-top: 10px;
  overflow-x: auto; padding-bottom: 4px;
  scrollbar-width: thin; scrollbar-color: rgba(201,168,76,0.3) transparent;
}
.vp-strip::-webkit-scrollbar { height: 3px; }
.vp-strip::-webkit-scrollbar-thumb { background: rgba(201,168,76,0.3); border-radius: 2px; }
.vp-thumb {
  flex: 0 0 calc(12.5% - 7px); min-width: 110px; cursor: pointer;
  position: relative; border-radius: 3px; overflow: hidden;
  border: 2px solid transparent; transition: border-color 0.2s ease;
}
.vp-thumb.active { border-color: var(--gold); }
.vp-thumb img { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; }
.vp-thumb-play {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0); transition: background 0.2s;
  display: flex; align-items: center; justify-content: center;
}
.vp-thumb-play::after {
  content: ''; width: 0; height: 0; border-style: solid;
  border-width: 7px 0 7px 12px;
  border-color: transparent transparent transparent rgba(255,255,255,0.85);
  opacity: 0; transition: opacity 0.2s;
}
.vp-thumb:hover .vp-thumb-play { background: rgba(0,0,0,0.4); }
.vp-thumb:hover .vp-thumb-play::after { opacity: 1; }
.vp-thumb.active .vp-thumb-play::after { opacity: 1; }

/* ── LIGHTBOX ── */
.video-modal {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.video-modal.active { opacity: 1; pointer-events: all; }
.video-modal-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.92); }
.video-modal-inner { position: relative; z-index: 2; width: min(90vw, 900px); }
.video-modal-close {
  position: absolute; top: -44px; right: 0; background: none;
  border: none; color: var(--white); font-size: 32px; cursor: pointer;
  line-height: 1; transition: color var(--transition);
}
.video-modal-close:hover { color: var(--gold); }
.video-modal-frame { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; }
.video-modal-frame iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }

/* ── STREAMING ── */
.streaming-links { margin-top: 48px; padding-top: 40px; border-top: 1px solid var(--border); }
.streaming-label { font-family: var(--font-body); font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 20px; }
.streaming-btns { display: flex; flex-wrap: wrap; gap: 10px; }
.stream-btn {
  display: inline-flex; align-items: center; gap: 8px; padding: 10px 18px;
  background: var(--dark2); border: 1px solid var(--border); border-radius: 3px;
  font-family: var(--font-body); font-size: 13px; font-weight: 500;
  color: var(--text); text-decoration: none; transition: all var(--transition);
}
.stream-btn:hover { border-color: var(--gold); color: var(--gold); }
.stream-btn svg { flex-shrink: 0; }

/* ── EVENTS ── */
.events-section { background: var(--dark); }
.events-list { display: flex; flex-direction: column; gap: 0; }
.event-card {
  display: flex; align-items: center; gap: 32px;
  padding: 24px 0; border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
.event-card:hover { background: rgba(201,168,76,0.03); }
.event-date-block { display: flex; flex-direction: column; align-items: center; min-width: 64px; text-align: center; }
.event-day { font-family: 'Barlow Condensed', sans-serif; font-size: 36px; font-weight: 800; color: var(--gold); line-height: 1; }
.event-month { font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.event-year { font-size: 10px; color: var(--muted); }
.event-details { flex: 1; }
.event-type-badge {
  font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold); background: var(--gold-dim); padding: 3px 10px;
  border-radius: 50px; display: inline-block; margin-bottom: 6px;
}
.event-title { font-family: 'Barlow Condensed', sans-serif; font-size: 20px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.event-meta { display: flex; gap: 16px; font-size: 13px; color: var(--muted); }
.event-desc { font-size: 13px; color: var(--muted); margin-top: 6px; }
.event-ticket-btn { margin-left: auto; white-space: nowrap; }
.no-events-msg { text-align: center; padding: 60px 20px; color: var(--muted); font-size: 15px; }
.no-events-msg a { color: var(--gold); text-decoration: underline; text-decoration-color: var(--border); }

/* ── PODCAST ── */
.podcast-section { background: var(--black); }
.podcast-layout { display: grid; grid-template-columns: 1fr 380px; gap: 72px; align-items: center; }
.podcast-text p { font-size: 15px; color: var(--text); margin-bottom: 16px; }
.podcast-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.podcast-card {
  background: linear-gradient(135deg, var(--dark3), var(--dark2));
  border: 1px solid var(--border-mid); border-radius: 12px;
  padding: 40px 32px; text-align: center; position: relative; overflow: hidden;
}
.podcast-card::before { content: ''; position: absolute; top: -60px; right: -60px; width: 200px; height: 200px; background: var(--gold); opacity: 0.04; border-radius: 50%; }
.podcast-mic { font-size: 48px; margin-bottom: 16px; }
.podcast-name { font-family: 'Barlow Condensed', sans-serif; font-size: 26px; font-weight: 700; text-transform: uppercase; color: var(--white); margin-bottom: 8px; }
.podcast-sub { font-size: 13px; color: var(--muted); letter-spacing: 0.04em; margin-bottom: 28px; }
.podcast-waves { display: flex; align-items: center; justify-content: center; gap: 4px; height: 36px; }
.podcast-waves span { display: block; width: 3px; border-radius: 2px; background: var(--gold); animation: wave 1.2s ease-in-out infinite; }
.podcast-waves span:nth-child(1) { height: 10px; animation-delay: 0s; }
.podcast-waves span:nth-child(2) { height: 22px; animation-delay: 0.1s; }
.podcast-waves span:nth-child(3) { height: 28px; animation-delay: 0.2s; }
.podcast-waves span:nth-child(4) { height: 18px; animation-delay: 0.3s; }
.podcast-waves span:nth-child(5) { height: 32px; animation-delay: 0.4s; }
.podcast-waves span:nth-child(6) { height: 20px; animation-delay: 0.5s; }
.podcast-waves span:nth-child(7) { height: 26px; animation-delay: 0.6s; }
.podcast-waves span:nth-child(8) { height: 14px; animation-delay: 0.7s; }
.podcast-waves span:nth-child(9) { height: 30px; animation-delay: 0.8s; }
.podcast-waves span:nth-child(10) { height: 12px; animation-delay: 0.9s; }
@keyframes wave { 0%, 100% { transform: scaleY(0.5); opacity: 0.5; } 50% { transform: scaleY(1); opacity: 1; } }

/* ── VIDEO MESSAGES ── */
.video-messages-section { background: var(--dark3); }
.vmsg-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; max-width: 900px; margin: 48px auto 0; }
.vmsg-card {
  background: var(--dark2); border: 1px solid var(--border); border-radius: 3px;
  padding: 28px 24px; text-align: center; text-decoration: none;
  transition: border-color 0.3s, transform 0.3s; display: block;
}
.vmsg-card:hover { border-color: var(--border-mid); transform: translateY(-4px); }
.vmsg-emoji { font-size: 32px; margin-bottom: 12px; }
.vmsg-title { font-family: var(--font-body); font-size: 13px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--off-white); margin-bottom: 8px; }
.vmsg-desc { font-size: 13px; font-weight: 300; color: var(--muted); margin-bottom: 16px; line-height: 1.6; }
.vmsg-price { font-family: 'Barlow Condensed', sans-serif; font-size: 20px; font-weight: 700; color: var(--gold); }
.vmsg-note { text-align: center; font-size: 13px; color: var(--muted); margin-top: 24px; }
.vmsg-cta { text-align: center; margin-top: 28px; }

/* ── CONTACT ── */
.contact-section { background: var(--black); }
.contact-layout { display: grid; grid-template-columns: 340px 1fr; gap: 64px; align-items: start; margin-top: 48px; }
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-detail { display: flex; align-items: flex-start; gap: 14px; padding: 18px 20px; background: var(--dark2); border: 1px solid var(--border); border-radius: 3px; }
.contact-icon { font-size: 20px; flex-shrink: 0; }
.contact-label { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.contact-value { font-size: 15px; font-weight: 500; color: var(--off-white); text-decoration: none; transition: color var(--transition); display: block; }
.contact-value:hover { color: var(--gold); }
.contact-value small { display: block; font-size: 12px; color: var(--muted); margin-top: 2px; }
.donation-box { background: var(--dark2); border: 1px solid var(--border); border-radius: 3px; padding: 20px; }
.donation-label { font-family: var(--font-body); font-size: 13px; font-weight: 700; color: var(--off-white); margin-bottom: 8px; }
.donation-desc { font-size: 13px; color: var(--muted); line-height: 1.6; margin-bottom: 14px; }
.donation-btn { font-size: 12px; padding: 10px 20px; }
.social-links { display: flex; gap: 10px; flex-wrap: wrap; }
.social-links a { width: 38px; height: 38px; background: var(--dark2); border: 1px solid var(--border); border-radius: 3px; display: flex; align-items: center; justify-content: center; color: var(--muted); transition: all var(--transition); }
.social-links a:hover { border-color: var(--gold); color: var(--gold); }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-family: var(--font-body); font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.form-group input, .form-group select, .form-group textarea {
  background: var(--dark2); border: 1px solid var(--border); border-radius: 3px;
  padding: 12px 16px; color: var(--off-white); font-size: 14px; font-family: var(--font-body);
  outline: none; transition: border-color var(--transition); -webkit-appearance: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--muted); }
.form-group select { cursor: pointer; }
.form-group select option { background: var(--dark2); color: var(--off-white); }
.form-group textarea { resize: vertical; min-height: 120px; line-height: 1.6; }
.form-note { font-size: 12px; color: var(--muted); text-align: center; }

/* ── FOOTER ── */
.footer { background: var(--dark); border-top: 1px solid var(--border); padding: 60px 0 0; }
.footer-social { display: flex; justify-content: center; gap: 20px; margin-bottom: 28px; }
.footer-social a { color: var(--muted); font-size: 18px; transition: color var(--transition); }
.footer-social a:hover { color: var(--gold); }
.footer-logo-text {
  font-family: 'Barlow Condensed', sans-serif; font-size: 28px; font-weight: 800;
  letter-spacing: 0.14em; color: var(--white); text-align: center;
  margin-bottom: 20px; display: block;
}
.footer-links-row { display: flex; justify-content: center; gap: 0; flex-wrap: wrap; margin-bottom: 40px; }
.footer-links-row a { font-size: 11px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); padding: 6px 14px; transition: color var(--transition); }
.footer-links-row a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid var(--border); padding: 20px 40px; text-align: center; font-size: 12px; color: var(--muted); }

/* ── ANIMATIONS ── */
@keyframes spin { to { transform: rotate(360deg); } }

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-bg { animation: none; }
  .hero-content > * { opacity: 1; animation: none; }
  html { scroll-behavior: auto; }
}

/* ── SONGLIST ── */
.songlist-hero { position: relative; padding: 160px 0 80px; overflow: hidden; background: var(--black); }
.songlist-hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,10,10,0.4) 0%, rgba(10,10,10,0.85) 100%); }
.songlist-hero .container { position: relative; z-index: 2; }
.songlist-intro { max-width: 640px; margin: 0 auto; font-size: 16px; color: var(--muted); line-height: 1.8; text-align: center; }
.legend { display: flex; gap: 28px; justify-content: center; flex-wrap: wrap; margin-top: 28px; }
.legend-item { display: flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 500; color: var(--muted); }
.legend-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.legend-dot.acoustic { background: var(--gold); }
.legend-dot.original { background: #a78bfa; }
.legend-dot.dj { background: rgba(255,255,255,0.35); border: 1px solid rgba(255,255,255,0.3); }
.filter-bar { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin: 40px 0 0; }
.filter-btn {
  padding: 9px 20px; font-family: var(--font-body); font-size: 11px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; border: 1px solid var(--border);
  background: transparent; color: var(--muted); border-radius: 100px;
  cursor: pointer; transition: all var(--transition);
}
.filter-btn:hover, .filter-btn.active { border-color: var(--gold); color: var(--gold); background: var(--gold-dim); }
.search-box { max-width: 420px; margin: 20px auto 0; position: relative; }
.search-box input {
  width: 100%; background: var(--dark2); border: 1px solid var(--border);
  border-radius: 3px; padding: 13px 20px 13px 48px;
  color: var(--off-white); font-family: var(--font-body); font-size: 14px;
  outline: none; transition: border-color var(--transition);
}
.search-box input:focus { border-color: var(--gold); }
.search-box input::placeholder { color: var(--muted); }
.search-icon { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); color: var(--muted); pointer-events: none; }
.song-categories { padding: 48px 0 80px; }
.song-category { margin-bottom: 48px; }
.category-header { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.category-icon { font-size: 22px; }
.category-title { font-family: 'Barlow Condensed', sans-serif; font-size: 28px; font-weight: 700; text-transform: uppercase; color: var(--white); }
.category-count {
  font-family: var(--font-body); font-size: 10px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gold); background: var(--gold-dim);
  border: 1px solid var(--border); padding: 4px 12px; border-radius: 100px; white-space: nowrap;
}
.songs-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 8px; }
.song-item {
  background: var(--dark2); border: 1px solid var(--border);
  border-radius: 3px; padding: 12px 14px; display: flex; flex-direction: column; gap: 3px;
  transition: all var(--transition);
}
.song-item:hover { border-color: var(--border-mid); background: var(--dark3); }
.song-title { font-family: var(--font-body); font-size: 13px; font-weight: 600; color: var(--off-white); }
.song-artist { font-size: 12px; color: var(--muted); }
.song-tag { font-family: var(--font-body); font-size: 10px; font-weight: 600; letter-spacing: 0.06em; color: var(--gold); text-transform: uppercase; margin-top: 4px; }
.song-tag.original { color: #a78bfa; }
.no-results { text-align: center; color: var(--muted); padding: 48px; display: none; font-size: 15px; }
.no-results a { color: var(--gold); }
.song-request-banner {
  background: linear-gradient(135deg, var(--dark3), var(--dark2));
  border: 1px solid var(--border); border-radius: 3px;
  padding: 48px 40px; text-align: center; margin-top: 32px; position: relative; overflow: hidden;
}
.song-request-banner::before { content: ''; position: absolute; top: -80px; right: -80px; width: 280px; height: 280px; background: var(--gold); opacity: 0.03; border-radius: 50%; }
.song-request-banner h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 36px; font-weight: 700; text-transform: uppercase; color: var(--white); margin-bottom: 12px; }
.song-request-banner p { color: var(--muted); margin-bottom: 24px; font-size: 15px; max-width: 560px; margin-left: auto; margin-right: auto; line-height: 1.75; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .two-col { grid-template-columns: 1fr; }
  .media-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .packages-grid { grid-template-columns: 1fr; }
  .corporate-grid { grid-template-columns: 1fr; }
  .album-layout { grid-template-columns: 260px 1fr; gap: 40px; }
  .podcast-layout { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links { display: none; }
  .nav-social { display: none; }
  .media-grid { grid-template-columns: 1fr; }
  .vp-thumb { min-width: 140px; flex: 0 0 40%; }
  .vp-featured-title { font-size: 20px; }
  .vp-featured-meta { padding: 50px 18px 18px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-item.gallery-wide { grid-column: span 2; }
  .hero-title { font-size: clamp(60px, 16vw, 100px); }
  .container { padding: 0 20px; }
  .section { padding: 70px 0; }
  .event-card { flex-wrap: wrap; gap: 16px; }
  .event-ticket-btn { margin-left: 0; }
  .album-layout { grid-template-columns: 1fr; }
  .footer-bottom { padding: 20px; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .video-bg-section { height: 300px; }
  .songs-grid { grid-template-columns: 1fr 1fr; }
  .category-title { font-size: 22px; }
}
@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.gallery-wide { grid-column: span 1; }
  .why-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .songs-grid { grid-template-columns: 1fr; }
}
