/* ── RESET & TOKENS ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --green: #1a6b2e;
  --green-dark: #0b3d18;
  --yellow: #f5c518;
  --yellow-pale: #ffd84d;
  --black: #0d0d0d;
  --off-white: #f9f6f0;
  --grey: #5a5a5a;
  --white: #ffffff;
  --r: 6px;
  --nav-h: 60px;
  --px: 20px;
}
html { scroll-behavior: smooth; }
body { font-family: 'Outfit', sans-serif; background: var(--off-white); color: var(--black); overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { text-decoration: none; }

/* ── TYPOGRAPHY HELPERS ── */
.eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--green);
  display: flex; align-items: center; gap: 10px; margin-bottom: 14px;
}
.eyebrow::before { content: ''; width: 20px; height: 2px; background: var(--yellow); flex-shrink: 0; }
.eyebrow--light { color: var(--yellow-pale); }
.eyebrow--light::before { background: var(--yellow); }
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 8vw, 68px); line-height: 1;
  margin-bottom: 16px;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--yellow); color: var(--black);
  padding: 14px 28px; border-radius: var(--r);
  font-weight: 700; font-size: 14px;
  transition: transform .15s, box-shadow .15s;
  border: none; cursor: pointer; font-family: 'Outfit', sans-serif;
  min-height: 48px;
}
.btn-primary:active { transform: scale(0.97); }
@media (hover: hover) {
  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(245,197,24,0.4); }
}
.btn-outline {
  display: inline-flex; align-items: center; justify-content: center;
  border: 2px solid rgba(255,255,255,0.4); color: var(--white);
  padding: 14px 28px; border-radius: var(--r);
  font-weight: 600; font-size: 14px;
  transition: border-color .2s, color .2s;
  min-height: 48px;
}
@media (hover: hover) { .btn-outline:hover { border-color: var(--yellow); color: var(--yellow); } }

/* ══════════════════════════════
   NAV
══════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--px);
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(10px);
}
.nav-logo {
  display: flex; align-items: center; gap: 10px; z-index: 201;
}
.logo-badge {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--yellow); border: 3px solid var(--green);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', sans-serif; font-size: 15px; color: var(--green);
  flex-shrink: 0;
}
.logo-text {
  font-family: 'Bebas Neue', sans-serif; font-size: 18px; color: var(--white);
  letter-spacing: 0.05em; line-height: 1;
}
.logo-text small { display: block; font-size: 10px; letter-spacing: 0.2em; color: var(--yellow); font-family: 'Outfit', sans-serif; font-weight: 600; }

/* Desktop nav links */
.nav-links {
  display: none; list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.8); font-size: 12px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; transition: color .2s;
  padding: 8px 0;
}
@media (hover: hover) { .nav-links a:hover { color: var(--yellow); } }
.nav-cta-desktop { display: none; }

/* Hamburger */
.hamburger {
  width: 44px; height: 44px; border: none; background: none; cursor: pointer;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 5px; z-index: 201; padding: 0;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer — sidebar style */
.mobile-menu {
  position: fixed; inset: 0; z-index: 199;
  background: var(--off-white);
  display: flex; flex-direction: column;
  width: min(86vw, 360px); height: 100%;
  transform: translateX(-100%);
  transition: transform .3s ease;
  padding: 96px 24px 28px;
  box-shadow: 0 0 60px rgba(0,0,0,0.25);
  pointer-events: none;
}
.mobile-menu.open { transform: translateX(0); pointer-events: all; }
.m-backdrop {
  position: fixed; inset: 0; z-index: 198;
  background: rgba(0,0,0,0.4);
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
.m-backdrop.open { opacity: 1; pointer-events: all; }
.m-nav { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu a.m-link {
  display: flex; align-items: center; gap: 14px;
  font-family: 'Outfit', sans-serif; font-size: 16px; font-weight: 600;
  color: var(--black); letter-spacing: normal;
  padding: 13px 12px; border-radius: var(--r); transition: background .2s, color .2s;
}
.mobile-menu a.m-link:active { background: rgba(26,107,46,0.08); color: var(--green); }
.m-link-icon { font-size: 18px; width: 24px; text-align: center; flex-shrink: 0; }
.m-divider { height: 1px; background: rgba(13,13,13,0.08); margin: 28px 0 24px; }

/* Auto-sliding ads marquee */
.m-ads-marquee {
  background: var(--black); border-radius: var(--r);
  padding: 11px 0; overflow: hidden; white-space: nowrap;
}
.m-ads-marquee-inner { display: inline-block; animation: marquee 18s linear infinite; }
.m-ads-marquee-inner span {
  font-size: 12px; font-weight: 600; color: var(--yellow);
  padding: 0 14px; letter-spacing: 0.02em;
}

/* GIF / media ad block */
.m-gif-ad {
  margin-top: 24px; border-radius: var(--r-lg);
  aspect-ratio: 4/3; overflow: hidden;
  background: linear-gradient(150deg, #1a4a2b 0%, #0a2010 60%, var(--yellow) 150%);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.m-gif-ad-content {
  display: flex; flex-direction: column; align-items: center; gap: 6px; text-align: center;
  color: var(--white);
}
.m-gif-ad-emoji { font-size: 40px; }
.m-gif-ad-label { font-family: 'Bebas Neue', sans-serif; font-size: 20px; letter-spacing: 0.04em; }
.m-gif-ad-sub { font-size: 12px; color: rgba(255,255,255,0.65); }

.m-spacer { flex: 1; }

/* WhatsApp CTA */
.m-whatsapp {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--black); color: var(--white);
  font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 15px;
  padding: 14px 20px; border-radius: 100px; min-height: 50px;
  margin-top: 16px;
}
.m-whatsapp-icon { width: 22px; height: 22px; flex-shrink: 0; }
.m-whatsapp-icon svg { width: 100%; height: 100%; }

.m-copyright {
  text-align: center; font-size: 12px; color: var(--grey);
  margin-top: 14px;
}

/* Desktop breakpoint — nav */
@media (min-width: 768px) {
  nav { padding: 0 40px; }
  .hamburger { display: none; }
  .nav-links { display: flex; gap: 28px; }
  .nav-cta-desktop {
    display: block; background: var(--yellow); color: var(--black);
    border: none; padding: 9px 22px; font-family: 'Outfit', sans-serif;
    font-weight: 700; font-size: 13px; border-radius: var(--r); cursor: pointer;
    min-height: 40px; white-space: nowrap;
  }
}

/* ══════════════════════════════
   HERO
══════════════════════════════ */
.hero {
  min-height: 100svh; position: relative; overflow: hidden;
  display: flex; flex-direction: column; justify-content: center;
  background: linear-gradient(135deg, #0b1e0f 0%, #113320 50%, #1a4a2b 100%);
  padding-top: var(--nav-h);
}
.hero-bg-pattern {
  position: absolute; inset: 0; opacity: 0.05;
  background-image: repeating-linear-gradient(45deg, var(--yellow) 0, var(--yellow) 1px, transparent 0, transparent 50%);
  background-size: 20px 20px;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto;
  padding: 48px var(--px) 80px;
  display: flex; flex-direction: column; gap: 32px;
}
.hero-badge {
  display: inline-block; align-self: flex-start;
  background: rgba(245,197,24,0.12); border: 1px solid var(--yellow);
  color: var(--yellow); font-size: 10px; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 100px;
}
.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 14vw, 96px); line-height: 0.93;
  color: var(--white);
}
.hero-title em { font-style: normal; color: var(--yellow); text-shadow: 0 0 40px rgba(245,197,24,0.35); }
.hero-subtitle {
  color: rgba(255,255,255,0.65); font-size: 15px; line-height: 1.75;
  max-width: 520px;
}
.hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-artists {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px;
}
.artist-card {
  border-radius: 8px; overflow: hidden; position: relative;
  aspect-ratio: 3/4; background: #1a3825;
}
.artist-card:first-child { grid-column: 1 / -1; aspect-ratio: 16/7; }
.artist-placeholder {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  font-size: 36px;
  background: linear-gradient(135deg, #1a4a2b 0%, #0a2010 100%);
}
.artist-grad {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 55%);
}
.artist-name {
  position: absolute; bottom: 10px; left: 12px;
  font-family: 'Bebas Neue', sans-serif; font-size: 18px; color: var(--white);
  letter-spacing: 0.04em;
}
.hero-scroll {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.35); font-size: 10px; letter-spacing: 0.12em;
  text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: 6px;
  animation: bob 2s ease-in-out infinite;
}
.scroll-line { width: 1px; height: 32px; background: rgba(255,255,255,0.2); }
@keyframes bob { 0%,100%{ transform:translateX(-50%) translateY(0) } 50%{ transform:translateX(-50%) translateY(6px) } }

/* Hero desktop: side-by-side */
@media (min-width: 900px) {
  .hero-content {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 60px; align-items: center;
    padding: 80px 40px 60px;
  }
  .hero-badge, .hero-title, .hero-subtitle, .hero-buttons { grid-column: 1; }
  .hero-artists { grid-column: 2; grid-row: 1 / span 4; align-self: center; }
  .artist-placeholder { font-size: 48px; }
  .artist-name { font-size: 22px; }
}

/* ══════════════════════════════
   MARQUEE
══════════════════════════════ */
.marquee-strip { background: var(--yellow); padding: 11px 0; overflow: hidden; white-space: nowrap; }
.marquee-inner { display: inline-block; animation: marquee 22s linear infinite; }
.marquee-inner span {
  font-family: 'Bebas Neue', sans-serif; font-size: 16px;
  color: var(--black); padding: 0 24px; letter-spacing: 0.06em;
}
.marquee-inner .dot { color: var(--green); padding: 0 4px; }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ══════════════════════════════
   SHARED SECTION SHELL
══════════════════════════════ */
.section {
  padding: 72px var(--px);
  max-width: 1200px; margin: 0 auto;
}
.section--full { max-width: none; padding-left: 0; padding-right: 0; }
@media (min-width: 768px) {
  .section { padding: 100px 40px; }
  .section--full { padding: 100px 0; }
}

/* ══════════════════════════════
   ABOUT
══════════════════════════════ */
.about-grid { display: flex; flex-direction: column; gap: 48px; }
.about-image-wrap { position: relative; }
.about-img-main {
  width: 100%; aspect-ratio: 4/3; border-radius: 12px;
  background: linear-gradient(160deg, #1a4a2b 0%, #0d2a17 100%);
  display: flex; align-items: center; justify-content: center; font-size: 64px;
}
.about-stat-card {
  position: absolute; bottom: -20px; right: -8px;
  background: var(--yellow); color: var(--black);
  padding: 16px 22px; border-radius: 10px;
  box-shadow: 0 10px 32px rgba(0,0,0,0.18);
}
.about-stat-card .num { font-family: 'Bebas Neue', sans-serif; font-size: 44px; line-height: 1; }
.about-stat-card .lbl { font-size: 12px; font-weight: 700; opacity: 0.7; }
.about-body { font-size: 16px; line-height: 1.8; color: var(--grey); margin-bottom: 18px; }
.about-accent { display: flex; gap: 32px; margin-top: 28px; flex-wrap: wrap; }
.about-accent-item .num { font-family: 'Bebas Neue', sans-serif; font-size: 34px; color: var(--green); }
.about-accent-item .lbl { font-size: 12px; color: var(--grey); }

@media (min-width: 768px) {
  .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
  .about-img-main { aspect-ratio: 4/5; font-size: 80px; }
  .about-stat-card { bottom: -24px; right: -24px; }
  .about-stat-card .num { font-size: 52px; }
}

/* ══════════════════════════════
   MISSION
══════════════════════════════ */
.mission-bg {
  background: linear-gradient(135deg, #0b1e0f 0%, #113320 100%);
  color: var(--white);
}
.mission-inner {
  display: flex; flex-direction: column; gap: 48px;
  padding: 72px var(--px);
  max-width: 1200px; margin: 0 auto;
}
.mission-inner .section-title { color: var(--white); }
.mission-body { color: rgba(255,255,255,0.65); font-size: 16px; line-height: 1.8; margin-bottom: 20px; }
.mission-values { display: flex; flex-direction: column; gap: 14px; }
.mission-value {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 18px; border-radius: 8px;
  background: rgba(255,255,255,0.06); border-left: 3px solid var(--yellow);
}
.mission-value-icon { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.mission-value-text strong { display: block; font-size: 14px; margin-bottom: 3px; }
.mission-value-text span { font-size: 13px; color: rgba(255,255,255,0.5); }
@media (min-width: 768px) {
  .mission-inner {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center; padding: 100px 40px;
  }
}

/* ══════════════════════════════
   EVENTS — horizontal scroll on mobile
══════════════════════════════ */
.events-scroll-wrap {
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  padding-bottom: 12px; margin: 32px calc(-1 * var(--px)) 0;
  padding-left: var(--px); padding-right: var(--px);
  /* hide scrollbar */
  scrollbar-width: none;
}
.events-scroll-wrap::-webkit-scrollbar { display: none; }
.events-grid {
  display: flex; gap: 16px;
  width: max-content;
}
.event-card {
  width: 280px; flex-shrink: 0;
  border-radius: 10px; overflow: hidden; background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.07);
}
.event-card-img {
  width: 100%; aspect-ratio: 16/9;
  background: linear-gradient(135deg, #1a4a2b 0%, #0d2a17 100%);
  display: flex; align-items: center; justify-content: center; font-size: 44px;
}
.event-card-body { padding: 18px; }
.event-tag {
  display: inline-block; background: rgba(26,107,46,0.1); color: var(--green);
  font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 100px; margin-bottom: 8px;
}
.event-card-title { font-weight: 700; font-size: 16px; margin-bottom: 7px; }
.event-card-desc { font-size: 13px; color: var(--grey); line-height: 1.6; margin-bottom: 12px; }
.event-card-meta { font-size: 12px; color: var(--grey); display: flex; gap: 14px; flex-wrap: wrap; }
.scroll-hint {
  margin-top: 12px; font-size: 12px; color: var(--grey);
  display: flex; align-items: center; gap: 6px;
}
.scroll-hint svg { flex-shrink: 0; }

/* Desktop: grid */
@media (min-width: 768px) {
  .events-scroll-wrap {
    overflow: visible; margin: 0; padding: 0;
    margin-top: 48px;
  }
  .events-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 24px; width: auto;
  }
  .event-card { width: auto; }
  .scroll-hint { display: none; }
}

/* ══════════════════════════════
   JOURNEY
══════════════════════════════ */
.journey-bg { background: var(--off-white); }
.journey-inner {
  display: flex; flex-direction: column; gap: 48px;
  padding: 72px var(--px);
  max-width: 1200px; margin: 0 auto;
}
.journey-timeline { position: relative; padding-left: 36px; }
.journey-timeline::before {
  content: ''; position: absolute; left: 0; top: 8px; bottom: 8px;
  width: 2px; background: linear-gradient(to bottom, var(--yellow), var(--green));
}
.journey-step { margin-bottom: 40px; position: relative; }
.journey-step:last-child { margin-bottom: 0; }
.journey-dot {
  position: absolute; left: -43px; top: 5px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--yellow); border: 3px solid var(--green);
  box-shadow: 0 0 0 4px rgba(245,197,24,0.12);
}
.journey-year { font-family: 'Bebas Neue', sans-serif; font-size: 12px; letter-spacing: 0.14em; color: var(--green); margin-bottom: 4px; }
.journey-step-title { font-weight: 700; font-size: 18px; margin-bottom: 6px; }
.journey-step-desc { font-size: 14px; color: var(--grey); line-height: 1.7; }
@media (min-width: 768px) {
  .journey-inner {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: start; padding: 100px 40px;
  }
}

/* ══════════════════════════════
   NEWSLETTER
══════════════════════════════ */
.newsletter-bg { background: var(--yellow); padding: 60px var(--px); }
.newsletter-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 28px;
}
.newsletter-inner h2 {
  font-family: 'Bebas Neue', sans-serif; font-size: clamp(28px, 7vw, 52px);
  color: var(--black); line-height: 1.05;
}
.newsletter-form { display: flex; width: 100%; max-width: 480px; }
.newsletter-form input {
  flex: 1; min-width: 0; padding: 14px 16px;
  border: 2px solid var(--black); border-right: none;
  border-radius: var(--r) 0 0 var(--r);
  font-family: 'Outfit', sans-serif; font-size: 14px;
  background: var(--white); outline: none;
}
.newsletter-form button {
  background: var(--black); color: var(--white);
  border: 2px solid var(--black); padding: 14px 20px;
  font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 14px;
  border-radius: 0 var(--r) var(--r) 0; cursor: pointer;
  white-space: nowrap; min-height: 48px;
  transition: background .2s;
}
@media (min-width: 768px) {
  .newsletter-bg { padding: 70px 40px; }
  .newsletter-inner { flex-direction: row; align-items: center; justify-content: space-between; gap: 40px; }
  .newsletter-inner h2 { max-width: 440px; }
}

/* ══════════════════════════════
   GALLERY
══════════════════════════════ */
.gallery-bg { background: var(--black); padding: 72px var(--px); }
.gallery-inner { max-width: 1200px; margin: 0 auto; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px; margin-top: 40px;
}
.gallery-item {
  border-radius: 8px; overflow: hidden;
  background: linear-gradient(135deg, #1a4a2b 0%, #0d2a17 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 36px; aspect-ratio: 1/1;
  transition: transform .2s; cursor: pointer;
}
.gallery-item:active { transform: scale(0.97); }
.gallery-item.tall { aspect-ratio: 1/2; }
.gallery-item.wide { grid-column: span 2; aspect-ratio: 2/1; font-size: 56px; }
@media (min-width: 600px) {
  .gallery-bg { padding: 100px 40px; }
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 200px);
    gap: 10px;
  }
  .gallery-item { aspect-ratio: auto; }
  .gallery-item.tall { aspect-ratio: auto; }
  .gallery-item.large { grid-column: span 2; grid-row: span 2; font-size: 80px; }
  .gallery-item.wide { grid-column: span 2; aspect-ratio: auto; font-size: 44px; }
}

/* ══════════════════════════════
   PARTNERS
══════════════════════════════ */
.partners-bg { background: var(--white); padding: 52px var(--px); }
.partners-inner { max-width: 1200px; margin: 0 auto; text-align: center; }
.partners-label { font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--grey); margin-bottom: 28px; }
.partners-logos { display: flex; gap: 28px; justify-content: center; align-items: center; flex-wrap: wrap; }
.partner-logo { font-family: 'Bebas Neue', sans-serif; font-size: 18px; color: #bbb; letter-spacing: 0.05em; transition: color .2s; }

/* ══════════════════════════════
   REVIEWS — scroll on mobile
══════════════════════════════ */
.reviews-bg { background: var(--off-white); padding: 72px 0; }
.reviews-inner { max-width: 1200px; margin: 0 auto; padding: 0 var(--px); }
.reviews-scroll-wrap {
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  padding-bottom: 12px; margin: 32px calc(-1 * var(--px)) 0;
  padding-left: var(--px); padding-right: var(--px);
  scrollbar-width: none;
}
.reviews-scroll-wrap::-webkit-scrollbar { display: none; }
.reviews-grid { display: flex; gap: 16px; width: max-content; }
.review-card {
  width: 300px; flex-shrink: 0;
  background: var(--white); border-radius: 10px; padding: 24px 22px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06); border-top: 4px solid var(--yellow);
}
.review-stars { color: var(--yellow); font-size: 15px; margin-bottom: 12px; }
.review-text { font-size: 14px; line-height: 1.75; color: var(--grey); margin-bottom: 16px; font-style: italic; }
.review-author strong { display: block; font-size: 14px; }
.review-author span { font-size: 12px; color: var(--grey); }
@media (min-width: 768px) {
  .reviews-bg { padding: 100px 0; }
  .reviews-inner { padding: 0 40px; }
  .reviews-scroll-wrap { overflow: visible; margin: 0; padding: 0; margin-top: 48px; }
  .reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; width: auto; }
  .review-card { width: auto; }
}

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
.footer-bg { background: var(--black); color: var(--white); }
.footer-top {
  max-width: 1200px; margin: 0 auto;
  padding: 64px var(--px) 48px;
  display: flex; flex-direction: column; gap: 48px;
}
.footer-brand p { color: rgba(255,255,255,0.5); font-size: 14px; line-height: 1.75; margin-top: 14px; }
.footer-logo-large { display: flex; align-items: center; gap: 12px; }
.footer-logo-badge {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--yellow); display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', sans-serif; font-size: 20px; color: var(--green);
  border: 3px solid var(--green); flex-shrink: 0;
}
.footer-logo-text { font-family: 'Bebas Neue', sans-serif; font-size: 26px; color: var(--green); letter-spacing: 0.04em; line-height: 1; }
.footer-logo-text small { display: block; font-size: 10px; letter-spacing: 0.2em; color: var(--yellow); font-family: 'Outfit', sans-serif; font-weight: 600; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.social-btn {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center;
  font-size: 16px; transition: background .2s; cursor: pointer;
}
@media (hover: hover) { .social-btn:hover { background: var(--yellow); } }
.footer-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.footer-col h4 { font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--yellow); margin-bottom: 14px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: rgba(255,255,255,0.55); font-size: 14px; transition: color .2s; display: block; }
.footer-col a:active { color: var(--yellow); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 8px; color: rgba(255,255,255,0.55); font-size: 13px; margin-bottom: 10px; }
.footer-bar {
  border-top: 1px solid rgba(255,255,255,0.08); padding: 20px var(--px);
}
.footer-bar-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 6px;
}
.footer-bar-inner p { color: rgba(255,255,255,0.3); font-size: 12px; }

@media (min-width: 768px) {
  .footer-top {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 60px; padding: 80px 40px 60px;
  }
  .footer-cols { display: contents; }
  .footer-bar { padding: 20px 40px; }
  .footer-bar-inner { flex-direction: row; justify-content: space-between; align-items: center; }
}

/* ══════════════════════════════
   FAB
══════════════════════════════ */
.fab {
  position: fixed; bottom: 24px; right: 20px; z-index: 190;
  background: var(--yellow); color: var(--white);
  width: 54px; height: 54px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; box-shadow: 0 6px 24px rgba(0,0,0,0.3);
  transition: transform .2s, box-shadow .2s;
}
.fab:active { transform: scale(0.94); }
@media (hover: hover) {
  .fab:hover { transform: scale(1.1); box-shadow: 0 10px 36px rgba(0,0,0,0.35); }
}

/* ── reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  .marquee-inner, .hero-scroll { animation: none; }
}
/* ══════════════════════════════
   2026 REFRESH — TOKENS
══════════════════════════════ */
:root {
  --r-lg: 16px;
  --r-xl: 22px;
  --shadow-soft: 0 4px 24px rgba(13,13,13,0.06);
  --shadow-med: 0 12px 40px rgba(13,13,13,0.10);
  --glass-border: 1px solid rgba(13,13,13,0.06);
}

/* Verified badge */
.verified-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 16px; height: 16px; border-radius: 50%;
  background: #1d9bf0; flex-shrink: 0; vertical-align: middle;
}
.verified-badge svg { width: 10px; height: 10px; }
.name-row { display: flex; align-items: center; gap: 6px; }

/* ══════════════════════════════
   FEATURED ARTISTS — auto-slide
══════════════════════════════ */
.artists-bg { background: var(--off-white); padding: 64px 0 72px; overflow: hidden; }
.artists-head { max-width: 1200px; margin: 0 auto; padding: 0 var(--px); }
.artists-track-wrap {
  margin-top: 36px; overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.artists-track {
  display: flex; gap: 18px; width: max-content;
  animation: artist-scroll 36s linear infinite;
}
.artists-track-wrap:hover .artists-track,
.artists-track-wrap:active .artists-track { animation-play-state: paused; }
@keyframes artist-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.artist-slide {
  width: 220px; flex-shrink: 0;
  background: var(--white); border-radius: var(--r-lg);
  border: var(--glass-border); box-shadow: var(--shadow-soft);
  overflow: hidden; transition: transform .25s, box-shadow .25s;
}
@media (hover: hover) {
  .artist-slide:hover { transform: translateY(-6px); box-shadow: var(--shadow-med); }
}
.artist-slide-img {
  width: 100%; aspect-ratio: 4/5;
  background: linear-gradient(150deg, #1a4a2b 0%, #0a2010 100%);
  position: relative; overflow: hidden;
}
.artist-slide-img img { width: 100%; height: 100%; object-fit: cover; }
.verified-badge-img { width: 16px; height: 16px; vertical-align: middle; }
.artist-slide-tag {
  position: absolute; top: 12px; left: 12px;
  background: rgba(0,0,0,0.45); color: var(--yellow);
  font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 100px; backdrop-filter: blur(6px);
}
.artist-slide-body { padding: 14px 16px 18px; }
.artist-slide-body .name-row { font-weight: 700; font-size: 15px; }
.artist-slide-genre { font-size: 12px; color: var(--grey); margin-top: 3px; }

/* ══════════════════════════════
   BOOKING SECTION
══════════════════════════════ */
.booking-bg { background: var(--white); }
.booking-grid { display: flex; flex-direction: column; gap: 24px; margin-top: 40px; }
.booking-card {
  background: var(--off-white); border: var(--glass-border);
  border-radius: var(--r-xl); padding: 32px 24px;
  box-shadow: var(--shadow-soft);
}
.booking-card-head { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.booking-icon {
  width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0;
  background: var(--green); color: var(--white);
  display: flex; align-items: center; justify-content: center; font-size: 22px;
}
.booking-card.alt .booking-icon { background: var(--black); }
.booking-card-head h3 { font-family: 'Bebas Neue', sans-serif; font-size: 24px; letter-spacing: 0.02em; }
.booking-card-head p { font-size: 13px; color: var(--grey); margin-top: 2px; }

.form-grid { display: flex; flex-direction: column; gap: 14px; }
.form-row-2 { display: grid; grid-template-columns: 1fr; gap: 14px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label { font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--black); }
.form-field input, .form-field select, .form-field textarea {
  font-family: 'Outfit', sans-serif; font-size: 14px;
  padding: 13px 14px; border-radius: var(--r); border: 1.5px solid rgba(13,13,13,0.12);
  background: var(--white); outline: none; transition: border-color .2s, box-shadow .2s;
  width: 100%;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  border-color: var(--green); box-shadow: 0 0 0 3px rgba(26,107,46,0.12);
}
.form-field textarea { resize: vertical; min-height: 90px; font-family: 'Outfit', sans-serif; }
.form-submit {
  margin-top: 4px; align-self: flex-start;
}
@media (min-width: 768px) {
  .booking-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
  .form-row-2 { grid-template-columns: 1fr 1fr; }
  .booking-card { padding: 40px; }
}

/* ══════════════════════════════
   LEADERSHIP
══════════════════════════════ */
.leadership-bg { background: var(--off-white); }
.leadership-grid { display: flex; flex-direction: column; gap: 24px; margin-top: 40px; }
.leader-card {
  background: var(--white); border-radius: var(--r-xl);
  border: var(--glass-border); box-shadow: var(--shadow-soft);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .25s, box-shadow .25s;
}
@media (hover: hover) {
  .leader-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-med); }
}
.leader-photo {
  width: 100%; aspect-ratio: 5/4;
  background: linear-gradient(150deg, #1a4a2b 0%, #0a2010 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.leader-photo .leader-initials {
  font-family: 'Bebas Neue', sans-serif; font-size: 56px; color: var(--yellow);
  letter-spacing: 0.05em;
}
.leader-body { padding: 22px 24px 26px; }
.leader-name-row { display: flex; align-items: center; gap: 8px; }
.leader-name-row h3 { font-family: 'Bebas Neue', sans-serif; font-size: 24px; letter-spacing: 0.02em; }
.leader-role {
  display: inline-block; margin-top: 6px; margin-bottom: 12px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--green); background: rgba(26,107,46,0.08);
  padding: 4px 12px; border-radius: 100px;
}
.leader-bio { font-size: 14px; line-height: 1.75; color: var(--grey); }
.leader-social { display: flex; gap: 10px; margin-top: 16px; }
.leader-social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--off-white); border: var(--glass-border);
  display: flex; align-items: center; justify-content: center; font-size: 14px;
  transition: background .2s;
}
@media (hover: hover) { .leader-social a:hover { background: var(--yellow); } }

@media (min-width: 768px) {
  .leadership-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
  .leader-card { flex-direction: row; }
  .leader-photo { width: 42%; aspect-ratio: auto; }
  .leader-body { flex: 1; padding: 32px; display: flex; flex-direction: column; justify-content: center; }
}

/* ══════════════════════════════
   LOADER
══════════════════════════════ */
.loader {
  position: fixed; inset: 0; z-index: 999;
  background: var(--black);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 22px;
  transition: opacity .6s ease, visibility .6s ease;
}
.loader.loader-hide { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-inner {
  position: relative; height: 56px; display: flex; align-items: center; justify-content: center;
}
.loader-line {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.08em;
  font-size: clamp(24px, 7vw, 40px); white-space: nowrap;
  opacity: 0;
}
.loader-line-1 { color: var(--yellow); animation: loader-fade-1 2.6s ease forwards; }
.loader-line-2 { color: var(--white); animation: loader-fade-2 2.6s ease forwards; }
@keyframes loader-fade-1 {
  0% { opacity: 0; transform: translate(-50%,-50%) translateY(8px); }
  12% { opacity: 1; transform: translate(-50%,-50%) translateY(0); }
  45% { opacity: 1; }
  60% { opacity: 0; transform: translate(-50%,-50%) translateY(-8px); }
  100% { opacity: 0; }
}
@keyframes loader-fade-2 {
  0% { opacity: 0; transform: translate(-50%,-50%) translateY(8px); }
  60% { opacity: 0; transform: translate(-50%,-50%) translateY(8px); }
  75% { opacity: 1; transform: translate(-50%,-50%) translateY(0); }
  100% { opacity: 1; }
}
.loader-bar { width: 160px; height: 3px; background: rgba(255,255,255,0.1); border-radius: 100px; overflow: hidden; }
.loader-bar span {
  display: block; height: 100%; width: 40%; border-radius: 100px;
  background: linear-gradient(90deg, var(--yellow), var(--green));
  animation: loader-bar 2.6s ease-in-out infinite;
}
@keyframes loader-bar {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(250%); }
}

/* ══════════════════════════════
   HERO — background photo + overlay + centered text
══════════════════════════════ */
.hero-bg-photo {
  position: absolute; inset: 0; z-index: 0;
  background-image: url('https://images.unsplash.com/photo-1470229722913-7c0e2dbbafd3?auto=format&fit=crop&w=1600&q=60');
  background-size: cover; background-position: center;
  filter: blur(3px) brightness(0.4) saturate(1.1);
  transform: scale(1.05);
}
.hero-bg-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(11,30,15,0.85) 0%, rgba(17,51,32,0.8) 50%, rgba(26,74,43,0.78) 100%);
}
.hero-bg-pattern { z-index: 1; }
.hero-content { text-align: center; align-items: center; }
.hero-badge { align-self: center; }
.hero-buttons { justify-content: center; }
.hero-subtitle { margin: 0 auto; }
@media (min-width: 900px) {
  .hero-content { text-align: center; }
  .hero-badge, .hero-title, .hero-subtitle, .hero-buttons { justify-self: center; }
}

/* ══════════════════════════════
   GLASS NAV (desktop + mobile bar)
══════════════════════════════ */
nav#nav {
  background: rgba(13,13,13,0.35);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* ══════════════════════════════
   GLASS MOBILE DRAWER
══════════════════════════════ */
.mobile-menu {
  background: rgba(249,246,240,0.7);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  border-right: 1px solid rgba(255,255,255,0.4);
}
.m-divider { background: rgba(13,13,13,0.1); }
.m-ads-marquee { background: rgba(13,13,13,0.55); backdrop-filter: blur(6px); }
.mobile-menu a.m-link:active { background: rgba(255,255,255,0.4); }
.m-whatsapp { background: rgba(13,13,13,0.7); backdrop-filter: blur(6px); }

/* extra spacing: push ads ticker + gif block further from menu */
.m-divider { margin: 36px 0 28px; }
.m-gif-ad { margin-top: 28px; }

/* Hero artist images */
.artist-placeholder-img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.artist-card { position: relative; }

/* ══════════════════════════════
   EVENT CARDS — real images
══════════════════════════════ */
.event-card-img {
  position: relative; width: 100%;
  aspect-ratio: 16/9; overflow: hidden;
  background: #0a1a10;
}
.event-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.event-card:hover .event-card-img img { transform: scale(1.06); }
.event-card-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 40%, rgba(0,0,0,0.55) 100%);
}

/* ══════════════════════════════
   VIDEO SECTION
══════════════════════════════ */
.video-section-bg { background: var(--black); padding: 72px 0; }
.video-section-bg .section-title { color: var(--white); }
.video-section-bg .eyebrow { color: var(--yellow); border-color: rgba(245,197,24,0.3); }
.video-section-sub {
  font-size: 15px; color: rgba(255,255,255,0.55);
  max-width: 520px; line-height: 1.75; margin-bottom: 36px;
}
.video-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px) {
  .video-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }
  .video-card-featured { grid-column: 1 / -1; }
}
@media (min-width: 1024px) {
  .video-grid { grid-template-columns: 1fr 1fr 1fr; }
  .video-card-featured { grid-column: 1 / 2; grid-row: 1 / 3; }
}
.video-card { border-radius: var(--r-lg); overflow: hidden; }
.video-thumb {
  position: relative; width: 100%;
  aspect-ratio: 16/9; background-size: cover; background-position: center;
  cursor: pointer; overflow: hidden;
}
.video-card-featured .video-thumb {
  aspect-ratio: 4/3;
}
@media (min-width: 1024px) {
  .video-card-featured .video-thumb { aspect-ratio: unset; height: 100%; min-height: 320px; }
}
.video-thumb-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.65) 100%);
  transition: background .3s;
}
.video-card:hover .video-thumb-overlay { background: linear-gradient(to bottom, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.75) 100%); }
.video-play-btn {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -60%);
  width: 52px; height: 52px;
  background: rgba(245,197,24,0.9);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: transform .25s, background .2s;
}
.video-play-btn img { width: 22px; height: 22px; filter: invert(0); }
.video-card:hover .video-play-btn {
  transform: translate(-50%, -60%) scale(1.1);
  background: var(--yellow);
}
.video-duration {
  position: absolute; top: 12px; right: 12px;
  background: rgba(0,0,0,0.7); color: #fff;
  font-size: 11px; font-weight: 700; padding: 3px 8px;
  border-radius: 6px; letter-spacing: 0.05em;
}
.video-label {
  position: absolute; bottom: 14px; left: 14px; right: 14px;
  display: flex; flex-direction: column; gap: 4px;
}
.video-label-tag {
  font-size: 10px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--yellow);
}
.video-label-title {
  font-size: 14px; font-weight: 700; color: #fff; line-height: 1.35;
}
.video-card-featured .video-label-title { font-size: 17px; }

/* ══════════════════════════════
   NAV — REAL LOGO IMAGE
══════════════════════════════ */
.nav-logo-img {
  width: 38px; height: 38px; object-fit: contain; border-radius: 50%;
}
.footer-logo-img {
  width: 52px; height: 52px; object-fit: contain; border-radius: 50%;
}

/* ══════════════════════════════
   MOBILE MENU — GLASSY + "MENU" LABEL
══════════════════════════════ */
.m-menu-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px; letter-spacing: 0.12em;
  color: var(--black); margin-bottom: 4px;
}

/* ══════════════════════════════
   LEADER PHOTO — REAL IMAGE
══════════════════════════════ */
.leader-photo-real {
  background-size: cover;
  background-position: center top;
}

/* ══════════════════════════════
   GALLERY — REAL IMAGES
══════════════════════════════ */
.gallery-item {
  border-radius: 8px; overflow: hidden;
  min-height: 180px;
  background-color: rgba(255,255,255,0.05);
}

/* ══════════════════════════════
   YOUTUBE MODAL
══════════════════════════════ */
.yt-modal {
  position: fixed; inset: 0; z-index: 900;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .3s ease;
}
.yt-modal.open { opacity: 1; pointer-events: all; }
.yt-modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.85); backdrop-filter: blur(6px);
}
.yt-modal-box {
  position: relative; z-index: 1;
  width: min(90vw, 900px);
  background: var(--black); border-radius: 12px; overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
}
.yt-modal-close {
  position: absolute; top: 12px; right: 12px; z-index: 10;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.15); border: none; cursor: pointer;
  color: #fff; font-size: 15px;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.yt-modal-close:hover { background: var(--yellow); color: var(--black); }
.yt-iframe-wrap { position: relative; width: 100%; aspect-ratio: 16/9; }
.yt-iframe-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }

/* Video card click cursor */
.video-thumb { cursor: pointer; }

/* ══════════════════════════════
   FAB — updated to phone icon
══════════════════════════════ */
.fab {
  position: fixed; bottom: 24px; right: 20px; z-index: 150;
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--yellow); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; box-shadow: 0 6px 24px rgba(0,0,0,0.25);
  transition: transform .2s, background .2s;
}
.fab:hover { transform: scale(1.08); background: var(--yellow); }

/* ══════════════════════════════
   FOOTER — logo text update
══════════════════════════════ */
.footer-logo-large {
  display: flex; align-items: center; gap: 12px; margin-bottom: 18px;
}

/* ══════════════════════════════
   ARTIST CAROUSEL — REAL PHOTOS FIX
══════════════════════════════ */

/* Reset track animation so JS controls it */
.artists-track {
  animation: none !important;
}

/* Image fills card properly */
.artist-slide-img {
  aspect-ratio: 3/4 !important;
  background: #111 !important;
}
.artist-slide-img img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center top !important;
  display: block !important;
}

/* Dark gradient over bottom of image */
.artist-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.1) 45%, transparent 70%);
  pointer-events: none;
}

/* Tag badge stays on top */
.artist-slide-tag {
  position: absolute !important;
  top: 10px !important; left: 10px !important;
  z-index: 2 !important;
  background: rgba(0,0,0,0.6) !important;
  backdrop-filter: blur(8px) !important;
  font-size: 9px !important;
  padding: 3px 9px !important;
}

/* Name + verified */
.artist-slide-name {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 15px;
  font-family: 'Outfit', sans-serif;
  color: var(--black);
}
.verified-svg {
  flex-shrink: 0;
  display: inline-block;
  vertical-align: middle;
}

/* JS-driven infinite scroll keyframe */
@keyframes artistScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Pause on hover via wrapper (CSS fallback) */
.artists-track-wrap:hover .artists-track {
  animation-play-state: paused !important;
}

/* ── ABOUT IMAGE — concept art fix ── */
.about-img-main {
  padding: 0 !important;
  font-size: 0 !important;
  overflow: hidden !important;
  background: #0a0a0f !important;
}
.about-img-main img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  border-radius: 12px !important;
}

/* ══════════════════════════════
   ARTIST CAROUSEL — CLEAN REWRITE (ac-*)
   Uses RAF scroll + base64 images
══════════════════════════════ */

/* Kill ALL old conflicting artist animations */
.artists-track {
  animation: none !important;
  transform: translateX(0);
  will-change: transform;
  display: flex !important;
  gap: 16px !important;
  width: max-content !important;
}

/* Card */
.ac-card {
  width: 210px;
  flex-shrink: 0;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.10);
  border: 1px solid rgba(0,0,0,0.06);
  transition: box-shadow .25s;
}

/* Image wrapper — portrait ratio */
.ac-img-wrap {
  position: relative;
  width: 100%;
  height: 260px;
  background: #111;
  overflow: hidden;
}

/* The actual photo */
.ac-img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center top !important;
  display: block !important;
}

/* Fallback initials */
.ac-initials {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 56px; font-weight: 900;
  color: rgba(245,197,24,0.5);
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.05em;
}

/* Dark gradient at bottom of image */
.ac-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 55%);
  pointer-events: none;
}

/* Tag badge */
.ac-tag {
  position: absolute;
  top: 10px; left: 10px;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  font-size: 9px; font-weight: 800;
  letter-spacing: 0.12em;
  padding: 3px 10px; border-radius: 100px;
}

/* Info row */
.ac-info {
  padding: 12px 14px 16px;
}
.ac-name {
  font-weight: 700; font-size: 15px;
  display: flex; align-items: center; gap: 5px;
  font-family: 'Outfit', sans-serif;
  color: #0d0d0d;
}
.ac-genre {
  font-size: 12px; color: #666; margin-top: 3px;
  font-family: 'Outfit', sans-serif;
}
