/* ============================================================
   audition.css
   Audition surfaces on dancewithdixon.com:
     1. Triptych — two equal-weight event cards (audition + a-muse)
     2. Sibling-of-hero Audition CTA card (.audition-cta-card)
     3. Dedicated full-bleed Audition Day band (#audition)
     4. Sitewide sticky audition ticker (.audition-ticker)
   Token names kept as --oh-* (poster-pages.css consumes them).
   ============================================================ */

:root {
  --oh-green-deep: #0d2820;
  --oh-green-dark: #14352a;
  --oh-green-ink:  #0a1f18;
  --oh-coral:      #d97757;
  --oh-coral-deep: #c25b46;
  --oh-coral-ink:  #a4452f;
  --oh-cream:      #f6efe2;
  --oh-cream-warm: #faeee0;
  --oh-blush:      #f4d8c4;
  --oh-blush-soft: #f0c4b0;
  --oh-mute:       rgba(246, 239, 226, 0.55);
  --oh-rule:       rgba(246, 239, 226, 0.18);
}

/* Scoped font stacks — DO NOT change global body font. */
.audition-cta-card,
.audition-band,
.audition-ticker {
  font-family: "Manrope", "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.oh-serif { font-family: "Cormorant Garamond", "Cormorant", Georgia, serif; }
.oh-block { font-family: "Anton", "Archivo Narrow", "Oswald", Impact, sans-serif; }

/* Square corners everywhere on these surfaces. */
.audition-cta-card,
.audition-cta-card *,
.audition-band,
.audition-band *,
.audition-ticker,
.audition-ticker * {
  border-radius: 0 !important;
}

/* ============================================================
   KEYFRAMES
   ============================================================ */
@keyframes oh-auditionPulse {
  0%, 100% {
    box-shadow:
      0 0 25px rgba(217,119,87,.5),
      0 0 60px rgba(217,119,87,.25),
      0 0 100px rgba(217,119,87,.1),
      inset 0 0 30px rgba(217,119,87,.08);
  }
  50% {
    box-shadow:
      0 0 35px rgba(217,119,87,.65),
      0 0 80px rgba(217,119,87,.35),
      0 0 130px rgba(217,119,87,.18),
      inset 0 0 40px rgba(217,119,87,.12);
  }
}

@keyframes oh-shimmer {
  0%   { transform: translateX(-120%); opacity: 0; }
  20%  { opacity: .6; }
  60%  { opacity: .6; }
  100% { transform: translateX(120%); opacity: 0; }
}

@keyframes oh-dotPulse {
  0%, 100% { transform: scale(1);   opacity: 1; }
  50%      { transform: scale(0.6); opacity: .6; }
}

@keyframes oh-edgeGlow {
  0%, 100% { opacity: .3; }
  50%      { opacity: 1; }
}

@keyframes oh-btnGlow {
  0%, 100% { box-shadow: 0 0 0 rgba(217,119,87,0), 0 0 18px rgba(217,119,87,.45); }
  50%      { box-shadow: 0 0 0 rgba(217,119,87,0), 0 0 28px rgba(217,119,87,.7); }
}

/* ============================================================
   DIRECTION 1 — Editorial Hybrid homepage hero
   Tighter split (photo | brand text | big DWD logo).
   The audition CTA is now its OWN sibling section below .hero
   so it doesn't compete with the headline + animated logo.
   ============================================================ */

#page-home .hero {
  grid-template-columns: 7fr 10fr 7fr;
  min-height: 0;
  max-height: none;
  padding: 0 !important;
}
#page-home .hero-logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  min-height: 0;
  background: var(--rb-bg-base) !important;
}
#page-home .hero-photo {
  background: var(--rb-bg-base);
}
#page-home .hero-logo-mark video,
#page-home .hero-logo-mark img {
  display: block;
  width: min(360px, 90%);
  aspect-ratio: 1 / 1;
  object-fit: contain;
}
/* See feedback_transparent_video_ios.md for why mix-blend-mode: lighten. */
#page-home .hero-logo-mark video {
  mix-blend-mode: lighten;
}
@media (max-width: 1100px) {
  #page-home .hero { grid-template-columns: 7fr 13fr; }
  #page-home .hero-logo-mark { display: none; }
}
#page-home .hero-photo {
  min-height: 480px;
  max-height: 620px;
}
#page-home .hero-text {
  padding: 56px 64px 56px 72px;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  gap: 22px;
}
#page-home .hero h1,
#page-home .hero .subtitle,
#page-home .hero-eyebrow,
#page-home .hero-foot { text-align: left; }
#page-home .hero h1 .line { display: block; }
#page-home .hero-foot {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
#page-home .hero h1 {
  font-size: clamp(40px, 4.5vw, 72px);
  line-height: 0.94;
  letter-spacing: -0.018em;
}
#page-home .hero .subtitle {
  font-size: clamp(15px, 1.05vw, 18px);
  max-width: 480px;
}
#page-home .hero-foot { margin-top: 12px; }
#page-home .hero::before,
#page-home .hero::after { display: none !important; }

@media (max-width: 1024px) {
  #page-home .hero { grid-template-columns: 1fr; }
  #page-home .hero-photo {
    min-height: 320px; max-height: 420px; order: 1;
  }
  #page-home .hero-photo img { object-position: 55% 35% !important; }
  #page-home .hero-text { order: 2; padding: 40px 32px 40px; gap: 18px; align-items: center; text-align: center; }
  #page-home .hero-text::before { display: none; }
  #page-home .hero h1 { font-size: clamp(44px, 10vw, 72px); }
  #page-home .hero .subtitle { max-width: 100%; }
  #page-home .hero-foot { width: 100%; justify-content: space-between; }
}

/* ============================================================
   AUDITION CTA — sibling-of-hero, single dominant call-to-action
   Glowing, pulsing, shimmering — the loudest element on the page.
   ============================================================ */
.audition-cta {
  background: var(--oh-green-deep);
  padding: 36px 56px 28px;
  border-top: 1px solid var(--oh-rule);
}
.audition-cta-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px 28px;
  border: 2px solid var(--oh-coral);
  background:
    linear-gradient(135deg, rgba(217,119,87,.14), rgba(217,119,87,.06), rgba(217,119,87,.14));
  color: var(--oh-cream);
  text-decoration: none;
  overflow: hidden;
  isolation: isolate;
  animation: oh-auditionPulse 2.5s ease-in-out infinite;
}
.audition-cta-card:focus-visible { outline: 2px solid var(--oh-coral); outline-offset: 3px; }

.ac-stack {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
  position: relative;
  z-index: 2;
}
.ac-eyebrow {
  font-family: "Manrope", sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .22em;
  color: var(--oh-coral);
  text-transform: uppercase;
}
.ac-headline {
  font-family: "Cormorant Garamond", "Cormorant", Georgia, serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.05;
  color: var(--oh-cream);
  text-shadow: 0 1px 14px rgba(217,119,87,.35);
  letter-spacing: .005em;
}
.ac-meta {
  font-family: "Manrope", sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: .02em;
  color: var(--oh-cream);
  opacity: .92;
}

.ac-date {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
  padding: 0 24px;
  border-left: 1px solid rgba(217,119,87,.32);
  border-right: 1px solid rgba(217,119,87,.32);
  text-align: center;
}
.ac-date-day {
  font-family: "Anton", "Archivo Narrow", Impact, sans-serif;
  font-size: 24px;
  letter-spacing: .04em;
  color: var(--oh-cream);
  line-height: 1;
}
.ac-date-time {
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  color: var(--oh-coral);
  text-transform: uppercase;
}
.ac-countdown {
  margin-top: 4px;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 16px;
  color: var(--oh-cream);
  opacity: .85;
}

.ac-cta {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  padding: 16px 28px;
  background: var(--oh-coral);
  color: var(--oh-cream);
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  animation: oh-btnGlow 2s ease-in-out infinite;
  transition: background .2s ease;
}
.ac-cta em {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 16px;
  letter-spacing: 0;
}
.audition-cta-card:hover .ac-cta { background: var(--oh-coral-ink); }

.ac-sub {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 14px auto 0;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.ac-sub a {
  color: var(--oh-mute);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color .2s ease, border-color .2s ease;
}
.ac-sub a:hover {
  color: var(--oh-cream);
  border-bottom-color: var(--oh-coral);
}
.ac-sub-sep { color: var(--oh-mute); opacity: .55; }

@media (max-width: 980px) {
  .audition-cta { padding: 28px 32px 22px; }
  .audition-cta-card { flex-direction: column; align-items: stretch; gap: 16px; padding: 22px 22px; }
  .ac-date {
    flex-direction: row;
    border-left: 0;
    border-right: 0;
    border-top: 1px solid rgba(217,119,87,.32);
    border-bottom: 1px solid rgba(217,119,87,.32);
    padding: 12px 0;
    gap: 12px;
    justify-content: center;
  }
  .ac-countdown { margin-top: 0; }
  .ac-cta { justify-content: center; }
}
@media (max-width: 520px) {
  .audition-cta { padding: 22px 22px 18px; }
  .ac-headline { font-size: 24px; }
  .ac-date-day { font-size: 20px; }
}

/* ============================================================
   TRIPTYCH — two equal-weight event cards (audition + a-muse)
   ============================================================ */

.triptych {
  background: var(--oh-green-deep);
  padding: 48px 56px 56px;
  border-top: 1px solid var(--oh-rule);
  border-bottom: 1px solid var(--oh-rule);
}
.triptych-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}
.triptych-eyebrow {
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .28em;
  color: var(--oh-coral);
  text-transform: uppercase;
}
.triptych-sub {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 15px;
  color: var(--oh-mute);
}
.triptych-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}
/* Two-up variant — used when the triptych carries 2 cards instead of 3. */
.triptych-grid--two {
  grid-template-columns: repeat(2, 1fr);
  max-width: 900px;
  margin: 0 auto;
}

/* Card skeleton — all cards share these properties */
.tri-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px 28px 24px;
  background: #143126;
  border: 1px solid rgba(246,239,226,.10);
  color: var(--oh-cream);
  text-decoration: none;
  isolation: isolate;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease;
}
.tri-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--oh-coral);
  transition: height .25s ease;
}
.tri-card:hover { transform: translateY(-2px); }
.tri-card:hover::before { height: 5px; }
.tri-card:focus-visible { outline: 2px solid var(--oh-coral); outline-offset: 4px; }

.tri-row-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.tri-eyebrow {
  font-family: "Manrope", sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--oh-coral);
}
.tri-pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 9px;
  background: rgba(217,119,87,.12);
  color: var(--oh-coral);
  font-family: "Manrope", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  white-space: nowrap;
  border: 1px solid rgba(217,119,87,.32);
}

.tri-date {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 4px 0 2px;
  color: var(--oh-cream);
  line-height: 1;
}
.tri-date-mon {
  font-family: "Anton", sans-serif;
  font-size: 22px;
  letter-spacing: .04em;
  color: var(--oh-cream);
  opacity: .92;
}
.tri-date-day {
  font-family: "Anton", sans-serif;
  font-size: clamp(64px, 5vw, 84px);
  line-height: 0.85;
  color: var(--oh-cream);
  letter-spacing: .005em;
}

.tri-headline {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 500;
  font-size: 26px;
  line-height: 1.1;
  color: var(--oh-cream);
  letter-spacing: .005em;
}
.tri-meta {
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  line-height: 1.45;
  color: var(--oh-mute);
}

.tri-spacer { flex: 1; }

.tri-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Manrope", sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--oh-cream);
  padding-top: 6px;
  border-top: 1px solid var(--oh-rule);
  transition: color .2s ease, border-color .2s ease;
}
.tri-cta em {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 16px;
  letter-spacing: 0;
  transition: transform .2s ease;
}
.tri-card:hover .tri-cta { color: var(--oh-coral); border-color: var(--oh-coral); }
.tri-card:hover .tri-cta em { transform: translateX(4px); }

/* --- Variant: Audition (the conversion target — coral glow) --- */
.tri-card--audition {
  border: 1px solid rgba(217,119,87,.55);
  box-shadow:
    0 0 0 1px rgba(217,119,87,.18) inset,
    0 0 24px rgba(217,119,87,.22),
    0 0 60px rgba(217,119,87,.10);
}
.tri-card--audition::before { background: var(--oh-coral); }
.tri-card--audition .tri-pill {
  background: var(--oh-coral);
  color: var(--oh-cream-warm);
  border-color: var(--oh-coral);
}
.tri-card--audition:hover {
  box-shadow:
    0 0 0 1px rgba(217,119,87,.32) inset,
    0 0 32px rgba(217,119,87,.36),
    0 0 80px rgba(217,119,87,.18);
}

/* --- Variant: A·Muse (stage, prestige, DWDC) --- */
.tri-card--amuse::before { background: var(--oh-cream-warm); }
.tri-card--amuse .tri-eyebrow { color: var(--oh-cream-warm); }
.tri-card--amuse .tri-pill {
  background: rgba(246,239,226,.10);
  color: var(--oh-cream-warm);
  border-color: rgba(246,239,226,.32);
}
.tri-card--amuse .tri-headline { color: var(--oh-cream-warm); }

/* --- Responsive --- */
@media (max-width: 980px) {
  .triptych { padding: 40px 32px 48px; }
  .triptych-grid,
  .triptych-grid--two { grid-template-columns: 1fr; gap: 14px; max-width: 100%; }
  .tri-card { padding: 24px 24px 20px; }
  .tri-date-day { font-size: 64px; }
  .tri-headline { font-size: 22px; }
}
@media (max-width: 520px) {
  .triptych { padding: 32px 22px 40px; }
  .triptych-head { flex-direction: column; align-items: flex-start; gap: 6px; }
  .tri-card { padding: 22px 20px 18px; gap: 10px; }
  .tri-date-day { font-size: 56px; }
}

/* ============================================================
   AUDITION DAY BAND — dedicated full-bleed section (#audition)
   Four bands: coral header / green date / cream what-to-expect / split footer.
   IG-poster aesthetic, square corners.
   ============================================================ */
.audition-band {
  display: block;
  margin: 40px 0 0;
  color: var(--oh-green-ink);
  font-family: "Manrope", sans-serif;
}

/* --- Band 1 · Coral header (AUDITION / DAY) ------------------- */
.ab-coral {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--oh-coral-deep);
  color: var(--oh-cream-warm);
}
.ab-coral-text {
  padding: 40px 56px 36px;
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: flex-start;
  justify-content: center;
}
.ab-eyebrow {
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .24em;
  color: rgba(250,238,224,.85);
  margin-bottom: 18px;
  text-transform: uppercase;
}
.ab-open {
  font-size: clamp(80px, 9vw, 140px);
  line-height: .84;
  color: var(--oh-cream-warm);
  letter-spacing: .005em;
}
.ab-house {
  display: inline-block;
  background: var(--oh-blush);
  color: var(--oh-green-ink);
  padding: 0 14px 6px;
  margin-top: -2px;
  font-size: clamp(80px, 9vw, 140px);
  line-height: .84;
  letter-spacing: .005em;
}
/* Right poster panel — intentional brand statement (photo-free). */
.ab-coral-photo {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  padding: 44px 52px;
  background:
    repeating-linear-gradient(135deg, rgba(246,239,226,.018) 0 2px, transparent 2px 10px),
    radial-gradient(ellipse at 78% 22%, rgba(217,119,87,.20), transparent 60%),
    linear-gradient(155deg, var(--oh-green-dark), var(--oh-green-ink));
}
.ab-cp-eyebrow {
  position: relative;
  z-index: 1;
  font-size: 13px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--oh-blush);
}
.ab-cp-statement {
  position: relative;
  z-index: 1;
  font-size: clamp(44px, 6vw, 86px);
  line-height: .9;
  text-transform: uppercase;
  color: var(--oh-cream);
}

/* --- Band 2 · Green date bar ---------------------------------- */
.ab-greenbar {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px 20px;
  background: var(--oh-green-ink);
  color: var(--oh-cream-warm);
  padding: 18px 56px;
}
.ab-date {
  font-size: clamp(32px, 3.5vw, 52px);
  line-height: 1;
  letter-spacing: .005em;
}
.ab-time, .ab-place {
  font-size: clamp(22px, 2.2vw, 32px);
  line-height: 1;
  opacity: .85;
  letter-spacing: .005em;
}
.ab-sep {
  font-size: 28px;
  opacity: .5;
  line-height: 1;
}

/* --- Band 3 · Cream "what to expect" strip -------------------- */
.ab-schedule {
  display: grid;
  grid-template-columns: auto 1fr 1fr 1fr 1fr;
  gap: 36px;
  align-items: center;
  background: var(--oh-cream-warm);
  color: var(--oh-green-ink);
  padding: 22px 56px;
}
.ab-sched-label {
  font-size: 32px;
  color: var(--oh-coral-deep);
  line-height: 1;
}
.ab-slot { display: flex; flex-direction: column; gap: 4px; }
.ab-slot-time {
  font-size: 30px;
  line-height: 1;
  color: var(--oh-green-ink);
  letter-spacing: .005em;
}
.ab-slot-label {
  font-family: "Manrope", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  line-height: 1.45;
  text-transform: uppercase;
}

/* --- Band 4 · Bottom split (What to Bring + Three Tracks) ----- */
.ab-split {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
}

.ab-dropin {
  background: var(--oh-blush);
  color: var(--oh-green-ink);
  padding: 28px 56px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.ab-dropin-title {
  font-size: clamp(36px, 3.8vw, 56px);
  line-height: .92;
  letter-spacing: .005em;
}
.ab-dropin-row {
  font-family: "Manrope", sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
}
.oh-dot { opacity: .55; }
.ab-addr-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.ab-addr, .ab-ages {
  font-size: 18px;
  line-height: 1;
  letter-spacing: .005em;
}
.ab-addr-rule {
  flex: 1;
  height: 1px;
  background: rgba(10,31,24,.15);
  min-width: 24px;
}
.ab-btn-row { display: flex; gap: 10px; flex-wrap: wrap; }
.ab-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  font-family: "Manrope", sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}
.ab-btn-primary {
  background: var(--oh-green-ink);
  color: var(--oh-cream-warm);
}
.ab-btn-primary:hover { background: #000; }
.ab-btn-primary .oh-arrow { font-style: italic; font-size: 14px; letter-spacing: 0; }
.ab-btn-secondary {
  background: transparent;
  color: var(--oh-green-ink);
  border: 1px solid var(--oh-green-ink);
  padding: 13px 21px;
}
.ab-btn-secondary:hover { background: var(--oh-green-ink); color: var(--oh-cream-warm); }

.ab-win {
  background: var(--oh-coral-deep);
  color: var(--oh-cream-warm);
  padding: 28px 40px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0;
}
.ab-win-eyebrow {
  font-family: "Manrope", sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .22em;
  opacity: .85;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.ab-win-prize {
  font-size: 36px;
  line-height: .95;
  letter-spacing: .005em;
}
.ab-win-prize--prices {
  font-size: 28px;
  margin-top: 6px;
  opacity: .92;
}
.ab-win-more {
  font-size: 18px;
  font-style: italic;
  margin-top: 14px;
  opacity: .85;
}
.ab-win-url {
  font-family: "Manrope", sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .08em;
  opacity: .85;
  margin-top: 16px;
}

/* --- Responsive collapses --- */
@media (max-width: 1024px) {
  .ab-coral-text { padding: 32px 32px 28px; }
  .ab-greenbar { padding: 18px 32px; }
  .ab-schedule { padding: 22px 32px; gap: 24px; }
  .ab-dropin { padding: 28px 32px; }
  .ab-win { padding: 28px 28px; }
}
@media (max-width: 840px) {
  .ab-split { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .ab-coral { grid-template-columns: 1fr; }
  .ab-coral-photo { display: none; }
  .ab-schedule {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: minmax(0, auto);
  }
  .ab-sched-label { grid-column: 1 / -1; font-size: 28px; }
}
@media (max-width: 520px) {
  .ab-coral-text { padding: 28px 22px 22px; }
  .ab-greenbar { padding: 16px 22px; gap: 6px 14px; }
  .ab-schedule { padding: 20px 22px; gap: 18px; }
  .ab-dropin, .ab-win { padding: 24px 22px; }
  .ab-addr-rule { display: none; }
  .ab-open,
  .ab-house {
    font-size: clamp(56px, 16vw, 88px);
    line-height: .9;
  }
  .ab-win-prize {
    font-size: clamp(24px, 7vw, 32px);
    line-height: 1;
    word-break: break-word;
    overflow-wrap: anywhere;
  }
  .ab-win-prize--prices { font-size: clamp(18px, 5vw, 24px); }
  .ab-win-more { font-size: 16px; }
}

/* ============================================================
   AUDITION TICKER — sticky bottom bar, sitewide
   ============================================================ */
.audition-ticker {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: stretch;
  background: var(--oh-green-ink);
  color: var(--oh-cream-warm);
  border-top: 1px solid rgba(0,0,0,.35);
  box-shadow: 0 -6px 18px rgba(0,0,0,.35);
  font-family: "Manrope", sans-serif;
  padding-bottom: env(safe-area-inset-bottom);
}
/* Compensator so submit buttons / page-foot don't get covered */
body.has-audition-ticker { padding-bottom: calc(56px + env(safe-area-inset-bottom)); }

/* Dismissed via the ✕ button (or auto-hidden post-event). !important
   survives the campaign.js polling reveal handler that resets inline display. */
.audition-ticker.audition-ticker--dismissed { display: none !important; }

/* Cell 1 · Coral tag with countdown */
.at-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--oh-coral-deep);
  color: var(--oh-cream-warm);
  padding: 0 20px;
}
.at-dot {
  width: 8px;
  height: 8px;
  background: var(--oh-cream-warm);
  flex-shrink: 0;
  animation: oh-dotPulse 2s ease-in-out infinite;
}
.at-tag-text {
  font-size: 18px;
  line-height: 1;
  letter-spacing: .005em;
  white-space: nowrap;
}

/* Cell 2 · Green main strip */
.at-main {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-wrap: nowrap;
  padding: 12px 24px;
  color: var(--oh-cream-warm);
  min-width: 0;
}
.at-head {
  font-size: 22px;
  line-height: 1;
  letter-spacing: .005em;
  white-space: nowrap;
}
.at-when {
  font-size: 13px;
  line-height: 1.1;
  white-space: nowrap;
  opacity: .92;
}
.at-sep {
  opacity: .5;
  font-size: 13px;
}

/* Cell 3 · Blush register */
.at-rsvp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--oh-blush);
  color: var(--oh-green-ink);
  padding: 0 22px;
  font-family: "Manrope", sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .2s ease;
}
.at-rsvp:hover { background: var(--oh-blush-soft); }
.at-rsvp .oh-arrow { font-style: italic; font-size: 14px; letter-spacing: 0; }

/* Cell 4 · Coral close ✕ */
.at-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  padding: 0 16px;
  background: var(--oh-coral-deep);
  color: var(--oh-cream-warm);
  border: 0;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  transition: background .2s ease;
}
.at-close:hover { background: var(--oh-coral-ink); }

/* Below 520px — compress to: tag + headline + register + ✕ only */
@media (max-width: 520px) {
  .audition-ticker { grid-template-columns: auto 1fr auto auto; }
  .at-tag { padding: 0 12px; }
  .at-tag-text { font-size: 13px; }
  .at-main { padding: 10px 14px; gap: 8px; overflow: hidden; }
  .at-head { font-size: 15px; }
  .at-when, .at-sep { display: none; }
  .at-rsvp { padding: 0 14px; font-size: 10px; letter-spacing: .18em; }
}

/* Below 360px — drop the countdown text but keep the dot */
@media (max-width: 360px) {
  .at-tag-text { display: none; }
}

/* ============================================================
   BIG AUDITION COUNTDOWN — #audition-clock
   Live ticker band between hero and the audition CTA card.
   Deep-green band, coral numerals (Anton), cream labels.
   ============================================================ */
.audition-clock {
  font-family: "Manrope", "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 48px 24px 52px;
  margin: 0;
  background:
    radial-gradient(120% 140% at 50% -20%, rgba(217,119,87,.14), transparent 60%),
    var(--oh-green-ink);
  color: var(--oh-cream);
  text-align: center;
  border-radius: 0 !important;
}
.audition-clock * { border-radius: 0 !important; }

.aclk-eyebrow {
  font-family: "Anton", "Archivo Narrow", "Oswald", Impact, sans-serif;
  font-size: clamp(13px, 1.4vw, 17px);
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--oh-blush);
}

.aclk-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 4vw, 56px);
  align-items: start;
  width: 100%;
  max-width: 760px;
}

.aclk-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  position: relative;
}
/* Colon-style separators between units */
.aclk-unit + .aclk-unit::before {
  content: ":";
  position: absolute;
  left: calc(-1 * (clamp(14px, 4vw, 56px) / 2));
  top: 0;
  transform: translateX(-50%);
  font-family: "Anton", "Archivo Narrow", "Oswald", Impact, sans-serif;
  font-size: clamp(40px, 8vw, 88px);
  line-height: 1;
  color: rgba(244, 216, 196, 0.3);
}

.aclk-num {
  font-family: "Anton", "Archivo Narrow", "Oswald", Impact, sans-serif;
  font-size: clamp(52px, 12vw, 110px);
  line-height: .9;
  color: var(--oh-coral);
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
}

.aclk-lbl {
  font-size: clamp(10px, 1.2vw, 13px);
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--oh-mute);
}

.aclk-now {
  font-family: "Anton", "Archivo Narrow", "Oswald", Impact, sans-serif;
  font-size: clamp(40px, 8vw, 88px);
  line-height: 1;
  color: var(--oh-coral);
  text-transform: uppercase;
  letter-spacing: .04em;
}

.aclk-foot {
  font-family: "Cormorant Garamond", "Cormorant", Georgia, serif;
  font-size: clamp(16px, 2vw, 22px);
  font-style: italic;
  color: var(--oh-cream-warm);
}

.aclk-cta {
  font-family: "Anton", "Archivo Narrow", "Oswald", Impact, sans-serif;
  font-size: 13px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--oh-green-ink);
  background: var(--oh-blush);
  padding: 14px 28px;
  text-decoration: none;
  transition: background .2s ease, transform .2s ease;
}
.aclk-cta em { font-style: normal; }
.aclk-cta:hover { background: var(--oh-cream-warm); transform: translateY(-1px); }

@media (max-width: 600px) {
  .audition-clock { padding: 36px 16px 40px; gap: 14px; }
  /* Keep 4-up but tighten the separators so they don't collide. */
  .aclk-grid { gap: clamp(10px, 6vw, 24px); }
  .aclk-unit + .aclk-unit::before { display: none; }
}
