:root {
  --navy:    #0f0f1a;
  --navy2:   #161625;
  --orange:  #f7931e;
  --blue:    #29abe2;
  --green:   #8cc63f;
  --cream:   #f5f0e8;
  --gray:    #888;
  --light:   #ccc;
  --white:   #fff;
  --nav-h:   70px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--navy);
  color: var(--cream);
  font-family: 'DM Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  padding-top: var(--nav-h);
}

body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.03; pointer-events: none; z-index: 999;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h); z-index: 100;
  padding: 0 6vw;
  display: flex; justify-content: space-between; align-items: center;
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(247,147,30,0.12);
  background: rgba(15,15,26,0.88);
}
.nav-logo { height: 36px; width: auto; display: block; }
.nav-links { display: flex; gap: 2.5rem; list-style: none; align-items: center; }
.nav-links a {
  font-family: 'DM Mono', monospace; font-size: 0.65rem; letter-spacing: 0.2em;
  color: var(--gray); text-decoration: none; text-transform: uppercase;
  transition: color 0.2s; padding-bottom: 2px;
  border-bottom: 1px solid transparent; transition: color 0.2s, border-color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--orange); border-color: var(--orange); }
.nav-booking {
  padding: 0.5rem 1.2rem;
  border: 1px solid var(--orange);
  color: var(--orange) !important;
  border-bottom: 1px solid var(--orange) !important;
  transition: background 0.2s !important;
}
.nav-booking:hover { background: rgba(247,147,30,0.1) !important; }

/* Hamburger */
.nav-hamburger {
  display: none; cursor: pointer; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 4px;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px; background: var(--cream);
  transition: all 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: rgba(15,15,26,0.98); backdrop-filter: blur(16px);
  padding: 2rem 6vw 3rem; flex-direction: column; gap: 0;
  border-bottom: 1px solid rgba(247,147,30,0.1); z-index: 99;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: 'DM Mono', monospace; font-size: 0.8rem; letter-spacing: 0.2em;
  color: var(--gray); text-decoration: none; text-transform: uppercase;
  padding: 1.1rem 0; border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: color 0.2s;
}
.nav-mobile a:hover, .nav-mobile a.active { color: var(--orange); }

/* ── COLOR BAR ── */
.color-bar { display: flex; height: 3px; }
.color-bar span:nth-child(1) { flex:1; background: var(--orange); box-shadow: 0 0 10px rgba(247,147,30,0.5); }
.color-bar span:nth-child(2) { flex:1; background: var(--blue);   box-shadow: 0 0 10px rgba(41,171,226,0.5); }
.color-bar span:nth-child(3) { flex:1; background: var(--green);  box-shadow: 0 0 10px rgba(140,198,63,0.5); }

/* ── HERO – full height (index) ── */
.hero {
  min-height: calc(100vh - var(--nav-h));
  display: grid; grid-template-rows: 1fr auto;
  position: relative; overflow: hidden; padding: 0 6vw;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 85% 45%, rgba(247,147,30,0.09) 0%, transparent 65%),
    radial-gradient(ellipse 50% 50% at 15% 70%, rgba(41,171,226,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 50% 5%,  rgba(140,198,63,0.04) 0%, transparent 55%);
}
.hero-lines {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(0deg, transparent, transparent 79px, rgba(255,255,255,0.02) 79px, rgba(255,255,255,0.02) 80px);
  pointer-events: none;
}
.hero-content {
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 0 60px; position: relative; z-index: 2; max-width: 900px;
}
.hero-logo {
  width: min(700px, 90%); margin-bottom: 3rem;
  opacity: 0; animation: fadeUp 1s 0.3s forwards;
}
.hero-eyebrow {
  font-family: 'DM Mono', monospace; font-size: 0.68rem; letter-spacing: 0.35em;
  color: var(--orange); text-transform: uppercase; margin-bottom: 1.5rem;
  opacity: 0; animation: fadeUp 0.8s 0.15s forwards;
}
.hero-tagline {
  max-width: 520px; font-size: clamp(1rem, 1.8vw, 1.2rem); line-height: 1.65;
  color: var(--light); font-style: italic;
  border-left: 2px solid var(--orange); padding-left: 1.5rem;
  opacity: 0; animation: fadeUp 0.9s 0.65s forwards;
}
.hero-sub {
  margin-top: 1.8rem;
  font-family: 'DM Mono', monospace; font-size: 0.7rem; letter-spacing: 0.22em;
  color: var(--gray); text-transform: uppercase;
  opacity: 0; animation: fadeUp 0.9s 0.85s forwards;
}
.hero-ctas {
  margin-top: 2.5rem; display: flex; gap: 1rem; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 0.9s 1.05s forwards;
}
.hero-scroll {
  position: relative; z-index: 2;
  display: flex; align-items: center; gap: 1rem; padding-bottom: 2.5rem;
  opacity: 0; animation: fadeUp 0.9s 1.3s forwards;
}
.scroll-line { width: 60px; height: 1px; background: var(--orange); animation: expandX 1s 1.6s both; }
.scroll-text { font-family: 'DM Mono', monospace; font-size: 0.62rem; letter-spacing: 0.28em; color: var(--gray); text-transform: uppercase; }

/* ── HERO – small (inner pages) ── */
.hero-sm {
  min-height: 32vh; display: flex; align-items: flex-end;
  padding: 3rem 6vw 4rem; position: relative; overflow: hidden;
}
.hero-sm .hero-bg { position: absolute; inset: 0; }
.hero-sm .hero-lines { position: absolute; inset: 0; background-image: repeating-linear-gradient(0deg, transparent, transparent 79px, rgba(255,255,255,0.02) 79px, rgba(255,255,255,0.02) 80px); pointer-events: none; }
.hero-sm-content { position: relative; z-index: 2; }
.hero-sm-eyebrow {
  font-family: 'DM Mono', monospace; font-size: 0.65rem; letter-spacing: 0.3em;
  color: var(--orange); text-transform: uppercase; margin-bottom: 0.75rem;
}
.hero-sm-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.9; color: var(--white);
}

/* ── BUTTONS ── */
.btn {
  display: inline-block; padding: 0.85rem 2rem;
  font-family: 'DM Mono', monospace; font-size: 0.68rem; letter-spacing: 0.18em;
  text-decoration: none; text-transform: uppercase; transition: all 0.25s;
  cursor: pointer; border: none;
}
.btn-primary {
  background: var(--orange); color: var(--navy);
  box-shadow: 0 0 20px rgba(247,147,30,0.25);
}
.btn-primary:hover { background: #ffa93e; box-shadow: 0 0 30px rgba(247,147,30,0.45); }
.btn-outline {
  background: transparent; color: var(--cream);
  border: 1px solid rgba(255,255,255,0.2);
}
.btn-outline:hover { border-color: var(--orange); color: var(--orange); }

/* ── SECTIONS ── */
section { padding: 6rem 6vw; position: relative; }
section.alt { background: rgba(255,255,255,0.012); }

.section-label {
  font-family: 'DM Mono', monospace; font-size: 0.62rem; letter-spacing: 0.32em;
  color: var(--orange); text-transform: uppercase; margin-bottom: 0.8rem;
}
.section-label.blue  { color: var(--blue); }
.section-label.green { color: var(--green); }
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  line-height: 1; color: var(--white); margin-bottom: 1.5rem;
}
.section-rule { width: 40px; height: 2px; background: var(--orange); margin-bottom: 2.5rem; }
.section-rule.blue  { background: var(--blue); }
.section-rule.green { background: var(--green); }
.section-intro { max-width: 640px; font-size: 1.05rem; line-height: 1.8; color: var(--light); font-weight: 300; margin-bottom: 3rem; }

/* ── KONZEPT STEPS ── */
.steps-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: rgba(247,147,30,0.08); }
.step { background: var(--navy); padding: 2.5rem 2rem; transition: background 0.3s; }
.step:hover { background: rgba(247,147,30,0.04); }
.step-num { font-family: 'Bebas Neue', sans-serif; font-size: 3.5rem; color: rgba(247,147,30,0.13); line-height: 1; margin-bottom: 1.5rem; transition: color 0.3s; }
.step:hover .step-num { color: rgba(247,147,30,0.3); }
.step-icon { margin-bottom: 1rem; }
.step-icon svg { display: block; stroke: var(--orange); opacity: 0.75; }
.step-text { font-size: 0.95rem; line-height: 1.6; color: var(--light); font-weight: 300; }
.step-text strong { color: var(--orange); font-weight: 500; }

/* ── ARTIST CARDS ── */
.artists-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: rgba(41,171,226,0.08); }
.artist-card { background: var(--navy); padding: 3rem 2.5rem; position: relative; overflow: hidden; transition: background 0.3s; }
.artist-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: var(--blue); transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease; }
.artist-card:hover { background: rgba(41,171,226,0.03); }
.artist-card:hover::after { transform: scaleX(1); }
.artist-img { width: 100%; aspect-ratio: 3/4; object-fit: cover; display: block; margin-bottom: 1.5rem; }
.artist-img-ph {
  width: 100%; aspect-ratio: 3/4; margin-bottom: 1.5rem;
  background: rgba(41,171,226,0.04); border: 1px dashed rgba(41,171,226,0.2);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.6rem;
  color: rgba(41,171,226,0.3); font-family: 'DM Mono', monospace; font-size: 0.6rem; letter-spacing: 0.15em; text-transform: uppercase;
}
.artist-img-ph svg { stroke: var(--blue); opacity: 0.3; }
.artist-role { font-family: 'DM Mono', monospace; font-size: 0.62rem; letter-spacing: 0.25em; color: var(--blue); text-transform: uppercase; margin-bottom: 0.7rem; }
.artist-name { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2rem,4vw,3rem); color: var(--white); line-height: 1; margin-bottom: 1.2rem; }
.artist-bio { font-size: 0.95rem; line-height: 1.78; color: var(--light); font-weight: 300; }
.artist-tag { display: inline-block; margin-top: 1.2rem; padding: 0.35rem 0.9rem; border: 1px solid rgba(41,171,226,0.35); font-family: 'DM Mono', monospace; font-size: 0.58rem; letter-spacing: 0.18em; color: var(--blue); text-transform: uppercase; }

/* ── IMAGE PLACEHOLDER ── */
.img-ph {
  width: 100%; aspect-ratio: 16/9;
  background: rgba(247,147,30,0.03); border: 1px dashed rgba(247,147,30,0.25);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.75rem;
  color: rgba(247,147,30,0.3); font-family: 'DM Mono', monospace; font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase;
}
.img-ph svg { stroke: var(--orange); opacity: 0.4; }

/* ── VIDEOS ── */
.video-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.video-card { display: flex; flex-direction: column; gap: 0.9rem; }
.video-embed { position: relative; width: 100%; aspect-ratio: 16/9; background: #000; overflow: hidden; }
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }
.video-label { font-family: 'DM Mono', monospace; font-size: 0.62rem; letter-spacing: 0.15em; color: var(--gray); text-transform: uppercase; }

/* ── PHOTO GALLERY ── */
.gallery-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0.5rem; }
.gallery-item { aspect-ratio: 1; overflow: hidden; background: rgba(255,255,255,0.04); border: 1px dashed rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-ph { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.4rem; color: rgba(255,255,255,0.1); font-family: 'DM Mono', monospace; font-size: 0.55rem; letter-spacing: 0.15em; text-transform: uppercase; width: 100%; height: 100%; }
.gallery-ph svg { stroke: rgba(255,255,255,0.15); }

/* ── SHOWS / CALENDAR ── */
.show-list { display: flex; flex-direction: column; gap: 1px; background: rgba(255,255,255,0.05); }
.show-item {
  background: var(--navy); padding: 1.8rem 2.5rem;
  display: grid; grid-template-columns: 80px 1fr auto;
  align-items: center; gap: 2rem; transition: background 0.3s;
}
.show-item:hover { background: rgba(247,147,30,0.04); }
.show-item.past { opacity: 0.45; }
.show-date { text-align: center; }
.show-day { display: block; font-family: 'Bebas Neue', sans-serif; font-size: 2.5rem; color: var(--orange); line-height: 1; }
.show-month { display: block; font-family: 'DM Mono', monospace; font-size: 0.6rem; letter-spacing: 0.15em; color: var(--gray); text-transform: uppercase; margin-top: 2px; }
.show-year { display: block; font-family: 'DM Mono', monospace; font-size: 0.55rem; letter-spacing: 0.1em; color: rgba(136,136,136,0.6); }
.show-info {}
.show-title { font-family: 'Bebas Neue', sans-serif; font-size: 1.4rem; color: var(--white); margin-bottom: 0.3rem; letter-spacing: 0.03em; }
.show-location { font-family: 'DM Mono', monospace; font-size: 0.62rem; letter-spacing: 0.12em; color: var(--gray); text-transform: uppercase; }
.show-type { display: inline-block; margin-top: 0.5rem; padding: 0.2rem 0.7rem; border: 1px solid rgba(247,147,30,0.2); font-family: 'DM Mono', monospace; font-size: 0.55rem; letter-spacing: 0.1em; color: rgba(247,147,30,0.6); text-transform: uppercase; }
.show-cta a { display: inline-block; padding: 0.5rem 1.2rem; border: 1px solid rgba(255,255,255,0.12); font-family: 'DM Mono', monospace; font-size: 0.6rem; letter-spacing: 0.15em; color: var(--light); text-decoration: none; text-transform: uppercase; transition: all 0.2s; }
.show-cta a:hover { border-color: var(--orange); color: var(--orange); }
.shows-empty { padding: 3rem; text-align: center; font-family: 'DM Mono', monospace; font-size: 0.7rem; letter-spacing: 0.15em; color: var(--gray); text-transform: uppercase; }

/* ── BOOKING FORM ── */
.booking-grid { display: grid; grid-template-columns: 3fr 2fr; gap: 6rem; align-items: start; }
.form-group { margin-bottom: 1.5rem; }
.form-label { display: block; font-family: 'DM Mono', monospace; font-size: 0.6rem; letter-spacing: 0.22em; color: var(--orange); text-transform: uppercase; margin-bottom: 0.6rem; }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 0.9rem 1.1rem;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  color: var(--cream); font-family: 'DM Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; font-size: 0.95rem; font-weight: 300;
  outline: none; transition: border-color 0.2s, background 0.2s;
  -webkit-appearance: none; border-radius: 0;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--orange); background: rgba(247,147,30,0.04); }
.form-select { cursor: pointer; }
.form-textarea { resize: vertical; min-height: 140px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-note { font-size: 0.8rem; color: var(--gray); margin-top: 0.4rem; }

.contact-box { display: flex; flex-direction: column; gap: 2rem; }
.contact-item { padding: 1.8rem 2rem; border: 1px solid rgba(255,255,255,0.06); position: relative; }
.contact-item::before { content: ''; position: absolute; top: 0; left: 0; width: 2px; height: 100%; background: var(--orange); }
.contact-key { font-family: 'DM Mono', monospace; font-size: 0.58rem; letter-spacing: 0.25em; color: var(--orange); text-transform: uppercase; margin-bottom: 0.5rem; }
.contact-val { font-size: 1rem; color: var(--cream); font-style: italic; display: flex; align-items: center; gap: 0.6rem; }
.contact-val svg { stroke: var(--orange); opacity: 0.75; flex-shrink: 0; }
.contact-val a { color: var(--cream); text-decoration: none; }
.contact-val a:hover { color: var(--orange); }

/* ── STAT CARDS ── */
.stats-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: rgba(255,255,255,0.05); margin-top: 4rem; }
.stat-card { background: var(--navy); padding: 2.5rem 2rem; position: relative; }
.stat-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 2px; }
.stat-card:nth-child(1)::before { background: var(--orange); }
.stat-card:nth-child(2)::before { background: var(--blue); }
.stat-card:nth-child(3)::before { background: var(--green); }
.stat-num { font-family: 'Bebas Neue', sans-serif; font-size: 3.5rem; line-height: 1; margin-bottom: 0.4rem; }
.stat-card:nth-child(1) .stat-num { color: var(--orange); }
.stat-card:nth-child(2) .stat-num { color: var(--blue); }
.stat-card:nth-child(3) .stat-num { color: var(--green); }
.stat-label { font-size: 0.85rem; color: var(--gray); line-height: 1.5; }

/* ── CTA BANNER ── */
.cta-banner {
  background: rgba(247,147,30,0.06);
  border: 1px solid rgba(247,147,30,0.15);
  padding: 4rem 6vw; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 1.5rem;
}
.cta-banner h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2rem,5vw,4rem); color: var(--white); }
.cta-banner p { font-size: 1rem; color: var(--light); max-width: 460px; }

/* ── GENRE PILLS ── */
.genre-list { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.genre-pill { padding: 0.6rem 1.5rem; border: 1px solid rgba(255,255,255,0.08); font-family: 'DM Mono', monospace; font-size: 0.65rem; letter-spacing: 0.13em; color: var(--light); text-transform: uppercase; transition: all 0.25s; cursor: default; }
.genre-pill:hover { border-color: var(--green); color: var(--green); }

/* ── FOOTER ── */
footer {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 3rem 6vw;
  display: grid; grid-template-columns: auto 1fr auto;
  align-items: center; gap: 3rem;
}
.footer-logo { height: 30px; width: auto; opacity: 0.5; transition: opacity 0.3s; }
.footer-logo:hover { opacity: 0.9; }
.footer-nav { display: flex; gap: 2rem; justify-content: center; }
.footer-nav a { font-family: 'DM Mono', monospace; font-size: 0.6rem; letter-spacing: 0.15em; color: rgba(255,255,255,0.2); text-decoration: none; text-transform: uppercase; transition: color 0.2s; }
.footer-nav a:hover { color: var(--orange); }
.footer-copy { font-family: 'DM Mono', monospace; font-size: 0.58rem; letter-spacing: 0.12em; color: rgba(255,255,255,0.15); text-transform: uppercase; text-align: right; }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:translateY(0); } }
@keyframes expandX { from { transform:scaleX(0); transform-origin:left; } to { transform:scaleX(1); transform-origin:left; } }
.reveal { opacity:0; transform:translateY(32px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity:1; transform:translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .video-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(3,1fr); }
  .booking-grid { grid-template-columns: 1fr; gap: 3rem; }
}
@media (max-width: 900px) {
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .artists-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr; }
  .show-item { grid-template-columns: 60px 1fr; }
  .show-cta { display: none; }
  footer { grid-template-columns: 1fr; text-align: center; }
  .footer-nav { flex-wrap: wrap; }
  .footer-copy { text-align: center; }
  .footer-logo { margin: 0 auto; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
}
@media (max-width: 600px) {
  .steps-grid { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
}

/* ── COOKIE BANNER ── */
#jbh-cb {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: rgba(13,13,22,0.97); backdrop-filter: blur(16px);
  border-top: 1px solid rgba(247,147,30,0.2);
  padding: 1.5rem 6vw;
}
.jbh-cb-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; max-width: 1400px; margin: 0 auto;
}
.jbh-cb-text { flex: 1; }
.jbh-cb-title { font-family: 'DM Mono', 'Courier New', monospace; font-size: 0.65rem; letter-spacing: 0.25em; color: var(--orange,#f7931e); text-transform: uppercase; margin-bottom: 0.5rem; }
.jbh-cb-body { font-size: 0.85rem; color: var(--light,#ccc); line-height: 1.5; }
.jbh-cb-body a { color: var(--orange,#f7931e); }
.jbh-cb-btns { display: flex; gap: 0.75rem; flex-shrink: 0; }
.jbh-cb-btn { padding: 0.65rem 1.5rem; font-family: 'DM Mono','Courier New',monospace; font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; border: none; cursor: pointer; transition: all 0.2s; white-space: nowrap; }
.jbh-cb-decline { background: transparent; color: var(--gray,#888); border: 1px solid rgba(255,255,255,0.12); }
.jbh-cb-decline:hover { border-color: rgba(255,255,255,0.3); color: var(--cream,#f5f0e8); }
.jbh-cb-accept { background: var(--orange,#f7931e); color: #0f0f1a; }
.jbh-cb-accept:hover { background: #ffa93e; }
@media (max-width: 700px) {
  .jbh-cb-inner { flex-direction: column; align-items: flex-start; }
  .jbh-cb-btns { width: 100%; }
  .jbh-cb-btn { flex: 1; text-align: center; }
}

/* ── YOUTUBE CONSENT PLACEHOLDER ── */
.yt-ph {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1rem; background: #0a0a14;
  border: 1px solid rgba(255,255,255,0.05);
  color: var(--gray,#888); text-align: center; padding: 2rem;
}
.yt-ph-icon { opacity: 0.3; }
.yt-ph-icon svg { display: block; }
.yt-ph p { font-size: 0.8rem; line-height: 1.5; color: var(--gray,#888); max-width: 220px; }
.yt-ph a { color: var(--orange,#f7931e); font-size: 0.75rem; text-decoration: underline; cursor: pointer; }

/* ── YOUTUBE PLACEHOLDER BUTTON ── */
.yt-ph-btn {
  margin-top: 0.25rem; padding: 0.6rem 1.4rem;
  background: var(--orange,#f7931e); color: #0f0f1a;
  border: none; cursor: pointer;
  font-family: 'DM Sans',system-ui,sans-serif; font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.04em; transition: background 0.2s;
}
.yt-ph-btn:hover { background: #ffa93e; }
.yt-ph small { font-size: 0.7rem; color: rgba(136,136,136,0.7); display: block; margin-top: 0.3rem; }
