/* Boston On Camera Acting Intensive — page-specific styles
   Extends on-camera-intensive-styles.css + the-on-camera-acting-intensive.css
   Gold accent: #c9a84c (warm cinematic gold)
*/

/* ─── Scarcity banner ──────────────────────────────────────────────────────── */
.bai-scarcity-banner {
  background: #0a0a0c;
  border-bottom: 1px solid rgba(201, 168, 76, 0.25);
}
.bai-scarcity-banner .scarcity-banner__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 16px;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: #c9a84c;
}
.bai-scarcity-pulse {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #c9a84c;
  animation: baiPulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes baiPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.75); }
}

/* ─── Hero ─────────────────────────────────────────────────────────────────── */
.bai-hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
}
.bai-hero__gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 30%, rgba(42,28,8,0.55) 0%, transparent 70%),
    linear-gradient(170deg, #0a0605 0%, #0d0d10 40%, #080810 100%);
}
/* Film grain via pseudo-element overlay on .hero__grain (already in base styles) */

.bai-hero__eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 14px 0 22px;
  flex-wrap: wrap;
}
.bai-hero__eyebrow-city,
.bai-hero__eyebrow-date,
.bai-hero__eyebrow-time {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #d4b87a;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
}
.bai-hero__eyebrow-sep {
  color: rgba(212, 184, 122, 0.45);
  font-size: 10px;
  line-height: 1;
}

/* Paul's Message link below the top Reserve button */
.bai-hero__message-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding: 10px 6px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  transition: color 0.25s ease, transform 0.25s ease;
}
.bai-hero__message-link:hover {
  color: #c9a84c;
  transform: translateY(-1px);
}
.bai-hero__message-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.18);
  border: 1px solid rgba(201, 168, 76, 0.5);
  color: #c9a84c;
  font-size: 9px;
  padding-left: 2px;
  transition: background 0.25s ease, border-color 0.25s ease;
}
.bai-hero__message-link:hover .bai-hero__message-icon {
  background: rgba(201, 168, 76, 0.32);
  border-color: #c9a84c;
}
.hero__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.bai-hero__headline {
  font-family: 'Anton', Arial Black, sans-serif;
  font-weight: 400;
  font-size: clamp(3.6rem, 12vw, 9rem);
  line-height: 0.92;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 0 0 12px;
  color: #fff;
}
.bai-hero__headline-main {
  display: block;
}
.bai-hero__headline-accent {
  display: block;
  color: #c9a84c;
  text-shadow: 0 0 60px rgba(201, 168, 76, 0.35);
}

.bai-hero__subhead {
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin: 0 0 18px;
}

/* ─── Vimeo section ─────────────────────────────────────────────────────────── */
.bai-vimeo-section {
  padding: 80px 0;
  background: #0a0a0c;
}
.bai-vimeo-block {
  max-width: 720px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 60px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.07);
}
.bai-vimeo-trigger {
  position: relative;
  display: block;
  width: 100%;
  cursor: pointer;
  background: #000;
  border: none;
  padding: 0;
  border-radius: 12px;
  overflow: hidden;
}
.bai-vimeo-thumb {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.4s ease;
}
.bai-vimeo-trigger:hover .bai-vimeo-thumb {
  transform: scale(1.02);
  filter: brightness(0.85);
}
.bai-vimeo-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transition: opacity 0.2s;
}
.bai-vimeo-play svg {
  filter: drop-shadow(0 2px 16px rgba(0,0,0,0.7));
  transition: transform 0.2s;
}
.bai-vimeo-trigger:hover .bai-vimeo-play svg {
  transform: scale(1.12);
}

/* ─── Vimeo modal ────────────────────────────────────────────────────────────── */
.bai-vimeo-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.bai-vimeo-modal.is-open {
  opacity: 1;
  pointer-events: all;
}
.bai-vimeo-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.92);
  cursor: pointer;
}
.bai-vimeo-modal__inner {
  position: relative;
  width: min(860px, 92vw);
  z-index: 1;
}
.bai-vimeo-modal__close {
  position: absolute;
  top: -44px;
  right: 0;
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  padding: 4px 8px;
  transition: color 0.2s;
}
.bai-vimeo-modal__close:hover { color: #fff; }
.bai-vimeo-modal__frame {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 20px 80px rgba(0,0,0,0.8);
}
.bai-vimeo-modal__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

/* ─── Workshop feature cards ─────────────────────────────────────────────────── */
.bai-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 36px;
}
@media (max-width: 640px) {
  .bai-cards-grid { grid-template-columns: 1fr; }
}
.bai-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 22px 20px;
  transition: border-color 0.2s, background 0.2s;
}
.bai-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
  background: rgba(201, 168, 76, 0.04);
}
.bai-card__icon {
  font-size: 24px;
  margin-bottom: 12px;
  display: block;
}
.bai-card__title {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px;
  letter-spacing: 0.01em;
}
.bai-card__body {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  margin: 0;
}
/* Center last card if odd count */
.bai-cards-grid .bai-card:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  max-width: 420px;
  margin: 0 auto;
}

/* ─── Higgsfield promo image section ─────────────────────────────────────────── */
.bai-promo-image-section {
  position: relative;
  overflow: hidden;
  display: block;
}
.bai-promo-image-link {
  display: block;
  position: relative;
  text-decoration: none;
}
.bai-promo-img {
  display: block;
  width: 100%;
  height: clamp(340px, 50vw, 640px);
  object-fit: cover;
  object-position: center 20%;
  transition: transform 0.8s ease, filter 0.4s ease;
}
.bai-promo-image-link:hover .bai-promo-img {
  transform: scale(1.02);
  filter: brightness(0.85);
}
.bai-promo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.75) 0%,
    rgba(0,0,0,0.45) 50%,
    rgba(0,0,0,0.1) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 clamp(24px, 6vw, 80px);
}
.bai-promo-overlay__pre {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #c9a84c;
  margin: 0 0 10px;
}
.bai-promo-overlay__headline {
  font-family: 'Anton', Arial Black, sans-serif;
  font-weight: 400;
  font-size: clamp(2.4rem, 7vw, 5.5rem);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: #fff;
  margin: 0 0 14px;
  text-shadow: 0 2px 32px rgba(0,0,0,0.6);
}
.bai-promo-overlay__sub {
  font-size: clamp(14px, 1.8vw, 17px);
  color: rgba(255,255,255,0.75);
  max-width: 420px;
  margin: 0;
  line-height: 1.5;
}
@media (max-width: 500px) {
  .bai-promo-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
    justify-content: flex-end;
    padding-bottom: 28px;
  }
}

/* ─── Pricing card override (gold accent) ────────────────────────────────────── */
.pricing-card--featured .pricing-card__cta {
  background: linear-gradient(135deg, #c9a84c 0%, #a8832e 100%);
  color: #0a0a0c;
}
.pricing-card--featured .pricing-card__cta:hover {
  background: linear-gradient(135deg, #d4b558 0%, #b8932e 100%);
}
.pricing-card--featured .pricing-badge--popular {
  background: rgba(201, 168, 76, 0.15);
  color: #c9a84c;
  border: 1px solid rgba(201, 168, 76, 0.3);
}

/* ─── Mobile sticky CTA ─────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .bai-hero__headline {
    font-size: clamp(3rem, 14vw, 5.5rem);
  }
}
