/* ============================================================
   OPTIMO ENTERTAINMENT — ARTIST PAGE V2 "STAGE EXPERIENCE"
   ============================================================ */

/* ── Restore gold palette on artist pages (overrides global blue) ── */
.ap2-page {
  --gold:      #D4A017;
  --gold-dk:   #B8880F;
  --gold-lt:   #E8C030;
  --gold-glow: rgba(212,160,23,.22);
  --lime:      #D4A017;
  --lime-dk:   #B8880F;
  --lime-lt:   #E8C030;
}

/* ── Page base ─────────────────────────────────────────────── */
.ap2-page { background: #080808; color: #f0ece4; }
.ap2-page #float-book-btn { display: none; }

/* ── Logo intro splash ──────────────────────────────────────── */
.ap2-intro {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: ap2IntroOut .55s ease 2.8s forwards;
  pointer-events: all;
}
@keyframes ap2IntroOut {
  to { opacity: 0; pointer-events: none; visibility: hidden; }
}
.ap2-intro-logo {
  width: clamp(180px, 26vw, 300px);
  opacity: 0;
  animation: ap2LogoIn .65s ease .25s forwards;
}
@keyframes ap2LogoIn {
  from { opacity: 0; transform: scale(.94); }
  to   { opacity: 1; transform: scale(1); }
}

/* ── YouTube video hero ─────────────────────────────────────── */
.ap2-hero-video-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #000;
  pointer-events: none;
}
.ap2-hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;
  min-height: 100vh;
  min-width: 177.78vh;
  transform: translate(-50%, -50%);
  border: none;
  pointer-events: none;
}

/* ── Shared eyebrow label ──────────────────────────────────── */
.ap2-label {
  display: inline-block;
  font-family: var(--font-h);
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .38em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

/* ── Shared section heading ────────────────────────────────── */
.ap2-sh {
  font-family: var(--font-h);
  font-weight: 900;
  line-height: 1.02;
  color: #fff;
  margin: 10px 0 0;
}


/* ═══════════════════════════════════════════════════════════
   HERO — CINEMATIC FULL SCREEN
   ═══════════════════════════════════════════════════════════ */
.ap2-hero {
  position: relative;
  height: 100vh;
  min-height: 660px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.ap2-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  animation: ap2KenBurns 28s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes ap2KenBurns {
  from { transform: scale(1)    translate( 0%,  0%); }
  to   { transform: scale(1.10) translate(-2%, -1%); }
}

.ap2-hero-fog {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(8,8,8,.8) 0%, rgba(8,8,8,.3) 60%, transparent 100%),
    linear-gradient(to top, rgba(8,8,8,1) 0%, rgba(8,8,8,.75) 28%, rgba(8,8,8,.2) 60%, transparent 100%);
}

.ap2-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='.045'/%3E%3C/svg%3E");
  background-size: 300px;
  pointer-events: none;
  z-index: 1;
}

.ap2-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 clamp(28px, 7vw, 110px) clamp(56px, 9vh, 96px);
}

/* EQ bars */
.ap2-eq {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 30px;
  margin-bottom: 22px;
}

.ap2-eq-bar {
  width: 3px;
  border-radius: 3px;
  background: var(--gold);
  transform-origin: bottom;
  animation: ap2EQPulse 1s ease-in-out infinite alternate;
}

.ap2-eq-bar:nth-child(1)  { height:  9px; animation-duration: .68s; }
.ap2-eq-bar:nth-child(2)  { height: 20px; animation-duration: .91s; animation-delay: .06s; }
.ap2-eq-bar:nth-child(3)  { height: 14px; animation-duration: .64s; animation-delay: .13s; }
.ap2-eq-bar:nth-child(4)  { height: 25px; animation-duration: 1.1s;  animation-delay: .08s; }
.ap2-eq-bar:nth-child(5)  { height: 17px; animation-duration: .79s;  animation-delay: .21s; }
.ap2-eq-bar:nth-child(6)  { height: 28px; animation-duration: .97s;  animation-delay: .04s; }
.ap2-eq-bar:nth-child(7)  { height: 13px; animation-duration: .73s;  animation-delay: .17s; }
.ap2-eq-bar:nth-child(8)  { height: 22px; animation-duration: 1.18s; animation-delay: .09s; }
.ap2-eq-bar:nth-child(9)  { height:  8px; animation-duration: .61s;  animation-delay: .26s; }
.ap2-eq-bar:nth-child(10) { height: 19px; animation-duration: .86s;  animation-delay: .14s; }
.ap2-eq-bar:nth-child(11) { height: 16px; animation-duration: .74s;  animation-delay: .31s; }
.ap2-eq-bar:nth-child(12) { height: 11px; animation-duration: 1.02s; animation-delay: .19s; }

@keyframes ap2EQPulse {
  from { transform: scaleY(.2);  opacity: .5; }
  to   { transform: scaleY(1);   opacity: 1; }
}

.ap2-genre {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-h);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: 16px;
  animation: ap2FadeUp .5s ease .1s both;
}

.ap2-genre-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  animation: ap2DotPulse 2.2s ease-in-out infinite;
}

@keyframes ap2DotPulse {
  0%,100% { box-shadow: 0 0 6px rgba(212,160,23,.6); }
  50%      { box-shadow: 0 0 20px rgba(212,160,23,.9), 0 0 40px rgba(212,160,23,.3); }
}

.ap2-title {
  font-family: var(--font-h);
  font-size: clamp(3.4rem, 10vw, 8rem);
  font-weight: 900;
  line-height: .92;
  letter-spacing: -.03em;
  color: #fff;
  margin: 0 0 20px;
}

.ap2-title .ap2-letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(60px);
  animation: ap2LetterIn .52s cubic-bezier(.22,1.1,.36,1) forwards;
}

.ap2-title .ap2-space { display: inline-block; width: .22em; }

@keyframes ap2LetterIn {
  to { opacity: 1; transform: translateY(0); }
}

.ap2-tagline {
  font-family: var(--font-h);
  font-size: clamp(.85rem, 1.5vw, 1.05rem);
  font-weight: 400;
  letter-spacing: .1em;
  color: rgba(255,255,255,.42);
  margin: 0 0 32px;
  animation: ap2FadeUp .55s ease .85s both;
}

/* Hero stats */
.ap2-hero-stats {
  display: flex;
  align-items: stretch;
  margin-bottom: 36px;
  animation: ap2FadeUp .55s ease 1s both;
}

.ap2-hs {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 clamp(16px, 3.5vw, 36px) 0 0;
}

.ap2-hs + .ap2-hs {
  padding-left: clamp(16px, 3.5vw, 36px);
  border-left: 1px solid rgba(212,160,23,.22);
}

.ap2-hs-val {
  font-family: var(--font-h);
  font-size: clamp(1.6rem, 3.8vw, 2.6rem);
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.ap2-hs-label {
  font-family: var(--font-h);
  font-size: .55rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 5px;
}

/* ── Hero CTA Buttons ── */
.ap2-hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: ap2FadeUp .55s ease 1.18s both;
}

.ap2-hero-btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: #000;
  font-family: var(--font-h);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 36px;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}

.ap2-hero-btn-gold::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 55%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(255,255,255,.3), transparent);
  transform: skewX(-18deg);
  transition: left .55s ease;
}

.ap2-hero-btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(212,160,23,.5);
}

.ap2-hero-btn-gold:hover::after { left: 170%; }

.ap2-hero-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: rgba(255,255,255,.75);
  font-family: var(--font-h);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 15px 32px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 4px;
  transition: color .2s, border-color .2s, background .2s;
}

.ap2-hero-btn-outline:hover {
  color: #fff;
  border-color: rgba(255,255,255,.55);
  background: rgba(255,255,255,.05);
}

/* Scroll hint */
.ap2-scroll-hint {
  position: absolute;
  bottom: 28px;
  right: clamp(28px, 6vw, 100px);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.ap2-scroll-line {
  width: 1px;
  height: 64px;
  background: linear-gradient(to bottom, transparent, rgba(212,160,23,.7));
  animation: ap2ScrollDrop 2.2s ease-in-out infinite;
}

.ap2-scroll-hint span {
  font-family: var(--font-h);
  font-size: .52rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(255,255,255,.22);
  writing-mode: vertical-rl;
}

@keyframes ap2ScrollDrop {
  0%,100% { opacity: .4; transform: translateY(0); }
  50%      { opacity: .9; transform: translateY(8px); }
}

@keyframes ap2FadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}


/* ═══════════════════════════════════════════════════════════
   STICKY NAV
   ═══════════════════════════════════════════════════════════ */
.ap2-sticky {
  position: fixed;
  top: -70px;
  left: 0;
  right: 0;
  z-index: 800;
  background: rgba(8,8,8,.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(212,160,23,.12);
  transition: top .38s cubic-bezier(.22,1,.36,1);
}

.ap2-sticky.ap2-visible { top: 92px; }

.ap2-sticky-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 50px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 52px);
}

.ap2-sticky-name {
  font-family: var(--font-h);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
  flex-shrink: 0;
}

.ap2-sticky-links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.5vw, 30px);
}

.ap2-sticky-links a {
  font-family: var(--font-h);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  text-decoration: none;
  transition: color .2s;
}

.ap2-sticky-links a:hover,
.ap2-sticky-links a.ap2-active { color: var(--gold); }

.ap2-sticky-book {
  background: var(--gold) !important;
  color: #000 !important;
  padding: 8px 20px !important;
  border-radius: 4px;
  font-weight: 800 !important;
}

.ap2-sticky-book:hover { background: var(--gold-lt) !important; color: #000 !important; }


/* ═══════════════════════════════════════════════════════════
   BIO — PHOTO SPLIT LAYOUT
   ═══════════════════════════════════════════════════════════ */
.ap2-bio {
  display: grid;
  grid-template-columns: 44% 56%;
  min-height: 90vh;
  background: #0d0a06;
}

.ap2-bio-photo {
  position: relative;
  background-size: cover;
  background-position: center top;
  min-height: 55vh;
}

.ap2-bio-photo-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, transparent 55%, #0d0a06 100%),
    linear-gradient(to top, #0d0a06 0%, transparent 25%);
}

.ap2-bio-content {
  padding: clamp(80px, 12vh, 130px) clamp(40px, 6vw, 80px) clamp(80px, 12vh, 130px) clamp(32px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ap2-bio-heading {
  font-family: var(--font-h);
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.05;
  color: #fff;
  margin: 0 0 22px;
}

.ap2-bio-text {
  font-size: clamp(.88rem, 1vw, .97rem);
  line-height: 1.8;
  color: rgba(240,236,228,.6);
  margin-bottom: 15px;
}

.ap2-bio-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 24px 0 28px;
}

.ap2-bio-feat {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .86rem;
  color: rgba(240,236,228,.72);
  opacity: 0;
  transform: translateX(-14px);
  transition: opacity .4s ease, transform .4s ease;
}

.ap2-bio-feat.ap2-feat-in { opacity: 1; transform: translateX(0); }

.ap2-feat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(212,160,23,.12);
  border: 1px solid rgba(212,160,23,.35);
  color: var(--gold);
  font-size: .68rem;
  flex-shrink: 0;
}

.ap2-social-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.ap2-social-link {
  font-family: var(--font-h);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  text-decoration: none;
  padding: 8px 18px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 100px;
  transition: color .2s, border-color .2s;
}

.ap2-social-link:hover { color: var(--gold); border-color: rgba(212,160,23,.45); }

.ap2-btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  background: var(--gold);
  color: #000;
  font-family: var(--font-h);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 15px 34px;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  transition: transform .22s, box-shadow .22s;
}

.ap2-btn-gold::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 55%; height: 100%;
  background: linear-gradient(to right, transparent, rgba(255,255,255,.28), transparent);
  transform: skewX(-18deg);
  transition: left .55s ease;
}

.ap2-btn-gold:hover { transform: translateY(-2px); box-shadow: 0 10px 36px rgba(212,160,23,.38); }
.ap2-btn-gold:hover::after { left: 170%; }

/* Bio video embed (inside bio content) */
.ap2-video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  border-radius: 8px;
  overflow: hidden;
  background: #111;
  border: 1px solid rgba(255,255,255,.07);
  margin-top: 32px;
}

.ap2-video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}


/* ═══════════════════════════════════════════════════════════
   PULL QUOTE — PACING BREAK
   ═══════════════════════════════════════════════════════════ */
.ap2-pull-quote {
  background: #060606;
  border-top: 1px solid rgba(212,160,23,.18);
  border-bottom: 1px solid rgba(212,160,23,.18);
  padding: clamp(56px, 9vh, 96px) clamp(28px, 10vw, 180px);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.ap2-pull-quote::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(212,160,23,.04) 0%, transparent 65%);
  pointer-events: none;
}

.ap2-pq-mark {
  font-family: Georgia, serif;
  font-size: 6rem;
  line-height: .7;
  color: var(--gold);
  opacity: .6;
  display: block;
  margin-bottom: 20px;
}

.ap2-pq-text {
  font-family: var(--font-h);
  font-size: clamp(1.3rem, 3vw, 2.2rem);
  font-weight: 700;
  font-style: italic;
  color: #fff;
  max-width: 780px;
  margin: 0 auto 22px;
  line-height: 1.45;
  letter-spacing: -.01em;
}

.ap2-pq-source {
  font-family: var(--font-h);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
}


/* ═══════════════════════════════════════════════════════════
   SETLIST — PHOTO BACKDROP
   ═══════════════════════════════════════════════════════════ */
.ap2-setlist {
  position: relative;
  background: #0a0a0a;
  padding: clamp(80px, 12vh, 140px) 0;
  overflow: hidden;
}

.ap2-setlist-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .14;
  pointer-events: none;
}

/* Huge watermark text */
.ap2-setlist::before {
  content: 'SET';
  position: absolute;
  top: 50%;
  right: -1%;
  transform: translateY(-50%);
  font-family: var(--font-h);
  font-size: 30vw;
  font-weight: 900;
  color: rgba(255,255,255,.02);
  pointer-events: none;
  user-select: none;
  line-height: 1;
  z-index: 0;
}

.ap2-setlist-inner {
  position: relative;
  z-index: 1;
  max-width: 920px;
  margin: 0 auto;
  padding: 0 clamp(28px, 5vw, 80px);
}

.ap2-setlist-header { margin-bottom: 44px; }

.ap2-setlist-title {
  font-family: var(--font-h);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 900;
  letter-spacing: -.03em;
  color: #fff;
  line-height: 1;
  margin: 10px 0 14px;
}

.ap2-setlist-sub {
  font-size: .9rem;
  color: rgba(240,236,228,.38);
  max-width: 480px;
  line-height: 1.68;
}

.ap2-track-list { border-top: 1px solid rgba(255,255,255,.07); }

.ap2-track {
  position: relative;
  display: grid;
  grid-template-columns: 52px 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
  cursor: default;
  opacity: 0;
  transform: translateX(-18px);
  transition: opacity .4s ease, transform .4s ease, padding-left .25s ease, background .25s;
}

.ap2-track.ap2-track-in { opacity: 1; transform: translateX(0); }

.ap2-track:hover {
  padding-left: 12px;
  background: rgba(212,160,23,.04);
  border-radius: 4px;
}

.ap2-track:hover .ap2-track-num { color: var(--gold); }
.ap2-track:hover .ap2-track-title { color: #fff; }

.ap2-track::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  height: 1px; width: 0;
  background: linear-gradient(to right, var(--gold), transparent);
  transition: width .3s ease;
}
.ap2-track:hover::after { width: 140px; }

.ap2-track-num {
  font-family: var(--font-h);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .18em;
  color: rgba(212,160,23,.35);
  transition: color .25s;
}

.ap2-track-title {
  font-family: var(--font-h);
  font-size: clamp(1rem, 1.9vw, 1.2rem);
  font-weight: 700;
  color: rgba(255,255,255,.82);
  transition: color .25s;
}

.ap2-track-artist {
  font-size: .78rem;
  color: rgba(240,236,228,.28);
  text-align: right;
  font-style: italic;
  white-space: nowrap;
}

.ap2-setlist-note {
  margin-top: 40px;
  font-size: .8rem;
  color: rgba(240,236,228,.28);
  text-align: center;
  font-style: italic;
}


/* ═══════════════════════════════════════════════════════════
   EVENTS — BOLD CARDS
   ═══════════════════════════════════════════════════════════ */
.ap2-events {
  background: #0f0d0a;
  padding: clamp(80px, 12vh, 140px) 0;
}

.ap2-events-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(28px, 5vw, 80px);
}

.ap2-events-title {
  font-family: var(--font-h);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: #fff;
  margin: 10px 0 44px;
}

.ap2-event-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.ap2-event-card {
  position: relative;
  background: #161410;
  border: 1px solid rgba(255,255,255,.07);
  border-top: 2px solid rgba(212,160,23,.35);
  border-radius: 8px;
  padding: 40px 28px 32px;
  overflow: hidden;
  cursor: default;
  transition: border-color .3s, box-shadow .3s, transform .25s, background .25s;
  transform-style: preserve-3d;
}

/* Watermark abbreviation */
.ap2-event-card::after {
  content: attr(data-wm);
  position: absolute;
  bottom: -18px;
  right: -6px;
  font-family: var(--font-h);
  font-size: 5.5rem;
  font-weight: 900;
  color: rgba(255,255,255,.045);
  letter-spacing: -.05em;
  pointer-events: none;
  user-select: none;
  line-height: 1;
}

.ap2-event-card:hover {
  border-color: rgba(212,160,23,.5);
  border-top-color: var(--gold);
  box-shadow: 0 20px 60px rgba(0,0,0,.5), 0 0 0 1px rgba(212,160,23,.12);
  background: #1c1a14;
}

.ap2-event-abbr {
  display: inline-block;
  font-family: var(--font-h);
  font-size: .56rem;
  font-weight: 800;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.ap2-event-name {
  font-family: var(--font-h);
  font-size: clamp(1.1rem, 1.9vw, 1.45rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.2;
}

.ap2-event-desc {
  font-size: .82rem;
  color: rgba(240,236,228,.38);
  line-height: 1.55;
}


/* ═══════════════════════════════════════════════════════════
   DETAILS — SPECS PANEL
   ═══════════════════════════════════════════════════════════ */
.ap2-details {
  background: #080808;
  padding: clamp(80px, 12vh, 140px) 0;
  border-top: 1px solid rgba(255,255,255,.04);
}

.ap2-details-inner {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: clamp(48px, 6vw, 96px);
  align-items: start;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(28px, 5vw, 80px);
}

.ap2-details-title {
  font-family: var(--font-h);
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  font-weight: 900;
  color: #fff;
  margin: 10px 0 32px;
}

.ap2-spec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 28px;
}

.ap2-spec {
  background: #111;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 7px;
  padding: 18px 20px;
}

.ap2-spec.ap2-spec-wide { grid-column: 1 / -1; }

.ap2-spec-label {
  display: block;
  font-family: var(--font-h);
  font-size: .56rem;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 7px;
}

.ap2-spec-val {
  font-size: .87rem;
  color: rgba(240,236,228,.65);
  line-height: 1.55;
}

.ap2-includes { display: flex; flex-direction: column; }

.ap2-include-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .84rem;
  color: rgba(240,236,228,.6);
  padding: 11px 0;
  border-bottom: 1px solid rgba(255,255,255,.04);
}

.ap2-include-row::before {
  content: '→';
  color: var(--gold);
  font-size: .72rem;
  flex-shrink: 0;
}

.ap2-details-posters {}

.ap2-posters-label {
  font-family: var(--font-h);
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
}

.ap2-posters-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.ap2-posters-grid img {
  width: 100%;
  border-radius: 7px;
  border: 1px solid rgba(255,255,255,.06);
  transition: transform .35s, border-color .3s;
  display: block;
}

.ap2-posters-grid img:hover { transform: scale(1.025); border-color: rgba(212,160,23,.2); }


/* ═══════════════════════════════════════════════════════════
   TESTIMONIALS — SCROLLING CAROUSEL
   ═══════════════════════════════════════════════════════════ */
.ap2-testimonials {
  background: #0d0a06;
  padding: clamp(72px, 10vh, 120px) 0;
  overflow: hidden;
}

.ap2-testimonials-header {
  text-align: center;
  margin-bottom: 44px;
  padding: 0 24px;
}

.ap2-testimonials-title {
  font-family: var(--font-h);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900;
  color: #fff;
  margin: 10px 0 0;
}

.ap2-tscroll-wrap { position: relative; overflow: hidden; }

.ap2-tscroll-wrap::before,
.ap2-tscroll-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 140px;
  z-index: 2;
  pointer-events: none;
}

.ap2-tscroll-wrap::before { left: 0;  background: linear-gradient(to right, #0d0a06, transparent); }
.ap2-tscroll-wrap::after  { right: 0; background: linear-gradient(to left,  #0d0a06, transparent); }

.ap2-tscroll-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: ap2ScrollTrack 38s linear infinite;
}

.ap2-tscroll-track:hover { animation-play-state: paused; }

@keyframes ap2ScrollTrack {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.ap2-tcard {
  flex-shrink: 0;
  width: 320px;
  background: #181410;
  border: 1px solid rgba(255,255,255,.06);
  border-bottom: 2px solid rgba(212,160,23,.2);
  border-radius: 8px;
  padding: 30px 26px 26px;
  position: relative;
}

.ap2-tcard::before {
  content: '\201C';
  position: absolute;
  top: 8px; right: 18px;
  font-family: Georgia, serif;
  font-size: 5rem;
  color: rgba(212,160,23,.1);
  line-height: 1;
  pointer-events: none;
}

.ap2-tcard-stars {
  color: var(--gold);
  font-size: .85rem;
  letter-spacing: 3px;
  margin-bottom: 14px;
}

.ap2-tcard-quote {
  font-size: .88rem;
  line-height: 1.72;
  color: rgba(240,236,228,.65);
  margin-bottom: 20px;
}

.ap2-tcard-cite {
  font-family: var(--font-h);
  font-size: .7rem;
  font-weight: 700;
  color: #fff;
}

.ap2-tcard-meta {
  font-size: .7rem;
  color: rgba(240,236,228,.28);
  margin-top: 3px;
}


/* ═══════════════════════════════════════════════════════════
   GALLERY — LIGHTBOX GRID
   ═══════════════════════════════════════════════════════════ */
.ap2-gallery {
  background: #060606;
  padding: clamp(80px, 12vh, 140px) 0;
}

.ap2-gallery-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(28px, 5vw, 80px);
}

.ap2-gallery-header { margin-bottom: 36px; }

.ap2-gallery-title {
  font-family: var(--font-h);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: #fff;
  margin: 10px 0 0;
}

.ap2-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 8px;
}

.ap2-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  cursor: pointer;
}

.ap2-gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.ap2-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .55s cubic-bezier(.22,1,.36,1);
}

.ap2-gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.75) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 14px;
  opacity: 0;
  transition: opacity .3s;
}

.ap2-gallery-zoom {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(212,160,23,.9);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 1rem;
  font-weight: 700;
}

.ap2-gallery-item:hover img { transform: scale(1.07); }
.ap2-gallery-item:hover .ap2-gallery-overlay { opacity: 1; }

/* Lightbox */
.ap2-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,.96);
  align-items: center;
  justify-content: center;
}

.ap2-lightbox.ap2-lb-open { display: flex; }

.ap2-lb-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
}

.ap2-lb-close,
.ap2-lb-prev,
.ap2-lb-next {
  position: absolute;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.7);
  cursor: pointer;
  transition: color .2s, background .2s;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.ap2-lb-close { top: 20px; right: 20px; font-size: 1.4rem; }
.ap2-lb-prev  { left: 20px;  top: 50%; transform: translateY(-50%); }
.ap2-lb-next  { right: 20px; top: 50%; transform: translateY(-50%); }

.ap2-lb-close:hover,
.ap2-lb-prev:hover,
.ap2-lb-next:hover {
  color: var(--gold);
  background: rgba(212,160,23,.1);
  border-color: rgba(212,160,23,.3);
}


/* ═══════════════════════════════════════════════════════════
   UPSELL STRIP
   ═══════════════════════════════════════════════════════════ */
.ap2-upsell {
  background: #0d0a06;
  border-top: 2px solid rgba(212,160,23,.18);
  border-bottom: 1px solid rgba(255,255,255,.04);
  padding: clamp(44px, 6vh, 72px) clamp(28px, 5vw, 80px);
  text-align: center;
}

.ap2-upsell h3 {
  font-family: var(--font-h);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 800;
  color: #fff;
  margin: 12px 0 10px;
}

.ap2-upsell p {
  font-size: .88rem;
  color: rgba(240,236,228,.4);
  max-width: 600px;
  margin: 0 auto 24px;
  line-height: 1.68;
}

.ap2-upsell-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}


/* ═══════════════════════════════════════════════════════════
   CTA — BOOK NOW
   ═══════════════════════════════════════════════════════════ */
.ap2-cta {
  background: #080808;
  padding: clamp(80px, 14vh, 160px) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.ap2-cta::before {
  content: '';
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 900px;
  background: radial-gradient(ellipse, rgba(212,160,23,.07) 0%, transparent 58%);
  pointer-events: none;
}

.ap2-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 28px;
}

.ap2-cta-heading {
  font-family: var(--font-h);
  font-size: clamp(3rem, 8vw, 6.2rem);
  font-weight: 900;
  letter-spacing: -.025em;
  line-height: .96;
  color: #fff;
  margin: 16px 0 24px;
}

.ap2-cta-sub {
  font-size: .95rem;
  color: rgba(240,236,228,.4);
  line-height: 1.72;
  margin-bottom: 44px;
}

.ap2-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: #000;
  font-family: var(--font-h);
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 18px 52px;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  transition: transform .22s, box-shadow .22s;
}

.ap2-cta-btn::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 55%; height: 100%;
  background: linear-gradient(to right, transparent, rgba(255,255,255,.3), transparent);
  transform: skewX(-18deg);
  transition: left .55s ease;
}

.ap2-cta-btn:hover { transform: translateY(-3px); box-shadow: 0 14px 44px rgba(212,160,23,.45); }
.ap2-cta-btn:hover::after { left: 170%; }

.ap2-cta-phone {
  display: block;
  margin-top: 24px;
  font-family: var(--font-h);
  font-size: .9rem;
  font-weight: 600;
  color: rgba(255,255,255,.3);
  text-decoration: none;
  letter-spacing: .05em;
  transition: color .2s;
}

.ap2-cta-phone:hover { color: rgba(255,255,255,.65); }

.ap2-cta-back {
  display: inline-block;
  margin-top: 12px;
  font-family: var(--font-h);
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.18);
  text-decoration: none;
  transition: color .2s;
}

.ap2-cta-back:hover { color: rgba(255,255,255,.45); }


/* ═══════════════════════════════════════════════════════════
   FLOATING BOOK BUTTON
   ═══════════════════════════════════════════════════════════ */
.ap2-float-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 700;
  background: var(--gold);
  color: #000;
  font-family: var(--font-h);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 13px 24px;
  border-radius: 100px;
  box-shadow: 0 4px 24px rgba(212,160,23,.45);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity .3s, transform .3s, box-shadow .22s;
}

.ap2-float-btn.ap2-float-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.ap2-float-btn:hover { box-shadow: 0 8px 32px rgba(212,160,23,.65); transform: translateY(-2px); }


/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 960px) {
  .ap2-bio { grid-template-columns: 1fr; }
  .ap2-bio-photo { min-height: 50vw; }
  .ap2-bio-photo-overlay {
    background: linear-gradient(to top, #0d0a06 0%, transparent 40%);
  }

  .ap2-details-inner { grid-template-columns: 1fr; }

  .ap2-event-grid { grid-template-columns: repeat(2, 1fr); }

  .ap2-gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .ap2-gallery-item:first-child { grid-column: 1 / -1; grid-row: span 1; }
}

@media (max-width: 640px) {
  .ap2-hero-btns { gap: 10px; }
  .ap2-hero-btn-gold,
  .ap2-hero-btn-outline { padding: 13px 24px; font-size: .7rem; }

  .ap2-hs { padding: 0 12px 0 0; }
  .ap2-hs + .ap2-hs { padding-left: 12px; }
  .ap2-hs-val { font-size: 1.55rem; }

  .ap2-sticky-links a:not(.ap2-sticky-book) { display: none; }

  .ap2-spec-grid { grid-template-columns: 1fr; }

  .ap2-gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }

  .ap2-tcard { width: 270px; }

  .ap2-lb-prev { left: 6px; }
  .ap2-lb-next { right: 6px; }

  .ap2-scroll-hint { display: none; }

  .ap2-pull-quote { padding-left: 28px; padding-right: 28px; }
}


/* ═══════════════════════════════════════════════════════════
   BIO — inline facts strip
   ═══════════════════════════════════════════════════════════ */
.ap2-bio-facts {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  margin: 28px 0 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.07);
}
.ap2-bio-facts span {
  font-family: var(--font-h);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .05em;
  color: rgba(240,236,228,.4);
}
.ap2-bio-facts strong {
  color: #fff;
  font-weight: 900;
}


/* ═══════════════════════════════════════════════════════════
   EVENT CARDS — 2×2 grid
   ═══════════════════════════════════════════════════════════ */
.ap2-event-cards {
  background: #060606;
  padding: clamp(64px, 9vh, 100px) 0;
}
.ap2-ec-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(28px, 5vw, 80px);
}
.ap2-ec-kicker {
  font-family: var(--font-h);
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.ap2-ec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.05);
}
.ap2-ec-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 44px 40px 40px;
  background: #0a0a0a;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: background .22s;
}
.ap2-ec-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 40px; right: 40px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s cubic-bezier(.22,1,.36,1);
}
.ap2-ec-card:hover { background: #111; }
.ap2-ec-card:hover::after { transform: scaleX(1); }
.ap2-ec-type {
  font-family: var(--font-h);
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: -.02em;
  color: #fff;
}
.ap2-ec-desc {
  font-size: .87rem;
  color: rgba(240,236,228,.38);
  line-height: 1.65;
  flex: 1;
  margin: 0;
}
.ap2-ec-cta {
  font-family: var(--font-h);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.2);
  transition: color .2s;
  margin-top: 4px;
}
.ap2-ec-card:hover .ap2-ec-cta { color: var(--gold); }
@media (max-width: 640px) {
  .ap2-ec-grid { grid-template-columns: 1fr; }
  .ap2-ec-card { padding: 32px 28px; }
}


/* ═══════════════════════════════════════════════════════════
   BIO — watermark initials
   ═══════════════════════════════════════════════════════════ */
.ap2-bio {
  position: relative;
  overflow: hidden;
}
.ap2-bio::after {
  content: 'LMJ';
  position: absolute;
  top: 50%; right: -8%;
  transform: translateY(-50%);
  font-family: var(--font-h);
  font-size: 42vw;
  font-weight: 900;
  color: rgba(255,255,255,.025);
  letter-spacing: -.06em;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.ap2-bio-photo, .ap2-bio-content { position: relative; z-index: 1; }


/* ═══════════════════════════════════════════════════════════
   MARQUEE STRIP
   ═══════════════════════════════════════════════════════════ */
.ap2-marquee-strip {
  background: var(--gold);
  padding: 13px 0;
  overflow: hidden;
  white-space: nowrap;
}
.ap2-ms-track {
  display: inline-flex;
  animation: ap2MS 28s linear infinite;
}
@keyframes ap2MS {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ap2-ms-track span {
  font-family: var(--font-h);
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #000;
  padding: 0 18px;
  flex-shrink: 0;
}
.ap2-ms-sep { color: rgba(0,0,0,.28) !important; padding: 0 4px !important; }


/* ═══════════════════════════════════════════════════════════
   EDITORIAL QUOTE
   ═══════════════════════════════════════════════════════════ */
.ap2-editorial-quote {
  background: #020202;
  padding: clamp(64px, 10vh, 100px) 0 clamp(56px, 8vh, 88px);
  overflow: hidden;
}
.ap2-editorial-inner {
  padding: 0 clamp(22px, 6vw, 72px);
  line-height: .9;
}
.ap2-eq-l1 {
  font-family: var(--font-h);
  font-weight: 900;
  font-size: clamp(1.8rem, 4.5vw, 3.8rem);
  letter-spacing: -.04em;
  color: rgba(255,255,255,.18);
  display: block;
  margin-bottom: 4px;
}
.ap2-eq-l2 {
  font-family: var(--font-h);
  font-weight: 900;
  font-size: clamp(5rem, 16vw, 13rem);
  letter-spacing: -.05em;
  color: var(--gold);
  display: block;
  line-height: .85;
  margin-bottom: 12px;
}
.ap2-eq-l3 {
  font-family: var(--font-h);
  font-weight: 900;
  font-size: clamp(1.4rem, 3.5vw, 2.8rem);
  letter-spacing: -.03em;
  color: #fff;
  line-height: 1.1;
  display: block;
  max-width: 820px;
}
.ap2-eq-l3 em {
  color: var(--gold);
  font-style: normal;
}
.ap2-editorial-attr {
  margin-top: 44px;
  padding: 0 clamp(22px, 6vw, 72px);
  font-family: var(--font-h);
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.16);
}


/* ═══════════════════════════════════════════════════════════
   VIBE SLIDER
   ═══════════════════════════════════════════════════════════ */
.ap2-vibe {
  background: #06050a;
  padding: clamp(80px, 12vh, 130px) 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: background-color .9s ease;
}

/* Ambient watermark — current mode name */
.ap2-vibe::before {
  content: attr(data-mode);
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-h);
  font-size: 22vw;
  font-weight: 900;
  letter-spacing: -.05em;
  white-space: nowrap;
  color: rgba(255,255,255,.028);
  pointer-events: none;
  user-select: none;
  z-index: 0;
  line-height: 1;
  transition: opacity .4s;
}

.ap2-vibe-inner {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.ap2-vibe-heading {
  font-family: var(--font-h);
  font-weight: 900;
  letter-spacing: -.03em;
  line-height: 1.05;
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin: 12px 0 14px;
}

.ap2-vibe-sub {
  font-size: .88rem;
  color: rgba(240,236,228,.38);
  line-height: 1.7;
  margin-bottom: 52px;
}

.ap2-vibe-poles {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-h);
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-bottom: 10px;
}

.ap2-vibe-track-wrap {
  position: relative;
  height: 48px;
  display: flex;
  align-items: center;
  margin-bottom: 44px;
}

.ap2-vibe-track-wrap::before {
  content: '';
  position: absolute;
  left: 0; right: 0; height: 4px;
  border-radius: 2px;
  background: linear-gradient(to right, #1a2a4a 0%, #3a2200 50%, #D4A017 100%);
  pointer-events: none;
}

.ap2-vibe-input {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  outline: none;
  cursor: pointer;
  position: relative;
  z-index: 2;
  padding: 0;
  margin: 0;
  height: 48px;
}

.ap2-vibe-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid #000;
  box-shadow: 0 0 0 3px rgba(212,160,23,.35), 0 4px 16px rgba(0,0,0,.7);
  cursor: grab;
  transition: transform .15s, box-shadow .15s;
}

.ap2-vibe-input::-webkit-slider-thumb:active {
  cursor: grabbing;
  transform: scale(1.2);
  box-shadow: 0 0 0 7px rgba(212,160,23,.18), 0 6px 24px rgba(0,0,0,.8);
}

.ap2-vibe-input::-moz-range-thumb {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid #000;
  box-shadow: 0 0 0 3px rgba(212,160,23,.35);
  cursor: grab;
}

.ap2-vibe-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 8px;
  padding: 30px 32px;
  text-align: left;
  transition: border-color .4s;
}

.ap2-vibe-card.is-changing { border-color: rgba(212,160,23,.2); }

.ap2-vibe-mode-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.ap2-vibe-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--gold);
  transition: background .4s;
  box-shadow: 0 0 8px rgba(212,160,23,.5);
}

.ap2-vibe-mode {
  font-family: var(--font-h);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  transition: opacity .25s;
}

.ap2-vibe-desc {
  font-size: .9rem;
  color: rgba(240,236,228,.55);
  line-height: 1.78;
  margin-bottom: 20px;
  min-height: 52px;
  transition: opacity .25s;
}

.ap2-vibe-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ap2-vibe-tag {
  font-family: var(--font-h);
  font-size: .55rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  padding: 6px 14px;
  border-radius: 100px;
}


/* ═══════════════════════════════════════════════════════════
   EVENT TYPE TABS
   ═══════════════════════════════════════════════════════════ */
.ap2-for-events {
  background: #f7f6f2;
  padding: clamp(80px, 12vh, 130px) 0;
}

.ap2-fe-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(28px, 5vw, 80px);
}

.ap2-fe-header { margin-bottom: 36px; }

.ap2-fe-heading {
  font-family: var(--font-h);
  font-weight: 900;
  letter-spacing: -.03em;
  line-height: 1.05;
  color: #080808;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin: 10px 0 0;
}

/* Tab buttons */
.ap2-fe-tabs {
  display: flex;
  border-bottom: 2px solid #e0ddd4;
  margin-bottom: 48px;
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.ap2-fe-tabs::-webkit-scrollbar { display: none; }

.ap2-fe-tab {
  font-family: var(--font-h);
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #aaa;
  background: transparent;
  border: none;
  padding: 14px 26px;
  cursor: pointer;
  position: relative;
  white-space: nowrap;
  transition: color .2s;
}

.ap2-fe-tab::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0; height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s ease;
}

.ap2-fe-tab.active { color: #080808; }
.ap2-fe-tab.active::after { transform: scaleX(1); }
.ap2-fe-tab:hover:not(.active) { color: #444; }

/* Panels */
.ap2-fe-panels { position: relative; }

.ap2-fe-panel {
  display: none;
  grid-template-columns: 1fr 300px;
  gap: 64px;
  align-items: start;
}

.ap2-fe-panel.active {
  display: grid;
  animation: ap2PanelIn .3s ease;
}

@keyframes ap2PanelIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.ap2-fe-panel-content h3 {
  font-family: var(--font-h);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 900;
  letter-spacing: -.03em;
  color: #080808;
  margin: 0 0 14px;
}

.ap2-fe-panel-content p {
  font-size: .9rem;
  color: #555;
  line-height: 1.78;
  margin-bottom: 24px;
}

.ap2-fe-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.ap2-fe-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .88rem;
  color: #333;
  line-height: 1.55;
}

.ap2-fe-list li::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 7px;
}

/* Aside stats + quote */
.ap2-fe-panel-aside {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ap2-fe-stat {
  padding: 28px 24px;
  background: #080808;
  border-radius: 6px;
  text-align: center;
}

.ap2-fe-stat-num {
  display: block;
  font-family: var(--font-h);
  font-size: 3.2rem;
  font-weight: 900;
  letter-spacing: -.04em;
  color: var(--gold);
  line-height: 1;
}

.ap2-fe-stat-num span { font-size: 2rem; }

.ap2-fe-stat-label {
  display: block;
  font-family: var(--font-h);
  font-size: .56rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-top: 8px;
}

.ap2-fe-quote {
  background: #fff;
  border: 1px solid #e0ddd4;
  border-left: 4px solid var(--gold);
  border-radius: 0 6px 6px 0;
  padding: 20px 22px;
  margin: 0;
  font-size: .87rem;
  color: #444;
  font-style: normal;
  line-height: 1.68;
}

.ap2-fe-quote cite {
  display: block;
  font-size: .65rem;
  font-weight: 700;
  color: #999;
  margin-top: 10px;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: .1em;
}

/* Responsive — event tabs */
@media (max-width: 860px) {
  .ap2-fe-panel,
  .ap2-fe-panel.active { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 640px) {
  .ap2-fe-tab { padding: 12px 16px; font-size: .6rem; }
  .ap2-vibe { padding-left: 20px; padding-right: 20px; }
  .ap2-vibe-card { padding: 22px 20px; }
}
