/* shared components: nav, concierge, modal sheet, sticky cta, forms, brand strip */

/* ============================================================
   brand strip - thin lockup across the top showing the 3 sites
   ============================================================ */
.brand-strip {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  gap: 24px;
  padding: 8px 16px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: none;
  background: rgba(0, 0, 0, 0.92);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  color: rgba(255, 255, 255, 0.5);
}
.brand-strip a {
  transition: color 200ms var(--ease);
}
.brand-strip a.active {
  color: #fff;
  font-weight: 600;
}
.brand-strip a:hover {
  color: #fff;
}
.brand-strip .sep {
  opacity: 0.4;
}

/* light variant on kids@kings */
.brand-strip.light {
  background: rgba(255, 255, 255, 0.92);
  color: rgba(28, 42, 58, 0.5);
}
.brand-strip.light a.active {
  color: #1c2a3a;
}

/* ============================================================
   nav - top bar inside each brand
   ============================================================ */
.nav {
  position: fixed;
  top: 32px;
  left: 0;
  right: 0;
  z-index: 90;
  padding: 18px var(--pad-x);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 300ms var(--ease), backdrop-filter 300ms var(--ease), padding 300ms var(--ease);
}
@media (min-width: 900px) {
  .nav {
    padding: 22px var(--pad-x-lg);
  }
}
.nav.scrolled {
  background: rgba(0, 0, 0, 0.7);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  padding-top: 14px;
  padding-bottom: 14px;
}
.nav.light.scrolled {
  background: rgba(255, 255, 255, 0.85);
}
.nav .brand {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  text-transform: none;
}
.nav .brand.italic {
  font-style: italic;
}
.nav .menu {
  display: none;
  gap: 32px;
  font-size: 15px;
  font-weight: 400;
  text-transform: none;
}
@media (min-width: 900px) {
  .nav .menu {
    display: flex;
  }
}
.nav .menu a {
  opacity: 0.78;
  transition: opacity 200ms var(--ease);
}
.nav .menu a:hover,
.nav .menu a.active {
  opacity: 1;
  font-weight: 600;
}
.nav .right {
  display: flex;
  gap: 12px;
  align-items: center;
}
.nav .cta {
  padding: 10px 18px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.02em;
  border: 1px solid currentColor;
  transition: background 200ms var(--ease), color 200ms var(--ease);
}
.nav .cta.solid {
  background: #fff;
  color: #121212;
  border-color: #fff;
}
.nav .cta.solid:hover {
  background: rgba(255, 255, 255, 0.85);
}
.nav .cta:hover {
  background: rgba(255, 255, 255, 0.08);
}
.nav.light .cta {
  color: #1c2a3a;
}
.nav.light .cta.solid {
  background: #1c2a3a;
  color: #fff;
  border-color: #1c2a3a;
}
.nav.light .cta:hover {
  background: rgba(28, 42, 58, 0.08);
}

/* mobile burger */
.nav .burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  height: 28px;
  justify-content: center;
  align-items: center;
}
@media (min-width: 900px) {
  .nav .burger {
    display: none;
  }
}
.nav .burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: currentColor;
  transition: transform 280ms var(--ease), opacity 280ms var(--ease);
}
.nav .burger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav .burger.open span:nth-child(2) {
  opacity: 0;
}
.nav .burger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}
.nav .cta.mobile-hide {
  display: none;
}
@media (min-width: 600px) {
  .nav .cta.mobile-hide {
    display: inline-block;
  }
}

/* mobile menu drawer */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: var(--kings-bg);
  padding: 100px 28px 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-20px);
  transition: opacity 300ms var(--ease), transform 300ms var(--ease);
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.mobile-menu a {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.015em;
  text-transform: none;
  color: #fff;
}
.mobile-menu .small {
  margin-top: auto;
  font-size: 14px;
  font-weight: 300;
  opacity: 0.6;
}
body.mobile-menu-open {
  overflow: hidden;
}

/* ============================================================
   buttons + ctas
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 28px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
  transition: background 200ms var(--ease), color 200ms var(--ease), transform 200ms var(--ease);
  cursor: pointer;
}
.btn-primary {
  background: #fff;
  color: #121212;
}
.btn-primary:hover {
  background: rgba(255, 255, 255, 0.86);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: currentColor;
  border: 1px solid currentColor;
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
}
.btn-dark {
  background: #121212;
  color: #fff;
}
.btn-dark:hover {
  background: #2a2a2a;
}
.btn-ghost {
  background: transparent;
  padding: 14px 0;
  border-bottom: 1px solid currentColor;
  border-radius: 0;
}

/* sticky cta pill - appears on scroll past hero */
.sticky-cta {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  background: rgba(18, 18, 18, 0.95);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  color: #fff;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
  white-space: nowrap;
  z-index: 70;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  transition: transform 380ms var(--ease);
}
.sticky-cta.in {
  transform: translateX(-50%) translateY(0);
}
.sticky-cta.light {
  background: rgba(28, 42, 58, 0.96);
  color: #fff;
}
@media (min-width: 900px) {
  .sticky-cta {
    bottom: 36px;
  }
}

/* ============================================================
   concierge bubble - bottom right, three states
   ============================================================ */
.concierge {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 95;
}
@media (min-width: 900px) {
  .concierge {
    bottom: 36px;
    right: 36px;
  }
}
.concierge-bubble {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  color: #121212;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  transition: transform 240ms var(--ease), box-shadow 240ms var(--ease);
  position: relative;
}
.concierge-bubble:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.5);
}
.concierge-bubble::after {
  content: "";
  position: absolute;
  top: 4px;
  right: 6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #4ade80;
  border: 2px solid #fff;
}
.concierge-bubble svg {
  width: 26px;
  height: 26px;
}
.concierge.light .concierge-bubble {
  background: #1c2a3a;
  color: #fff;
}

/* concierge sheet */
.concierge-sheet {
  position: fixed;
  z-index: 110;
  background: #fff;
  display: flex;
  flex-direction: column;
  transform: translateY(100%);
  transition: transform 420ms var(--ease);
  pointer-events: none;
  /* mobile - bottom sheet */
  bottom: 0;
  left: 0;
  right: 0;
  height: 90vh;
  border-radius: 20px 20px 0 0;
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.3);
}
@media (min-width: 900px) {
  .concierge-sheet {
    /* desktop - right sheet */
    top: 0;
    bottom: 0;
    left: auto;
    right: 0;
    height: 100vh;
    width: 420px;
    border-radius: 0;
    transform: translateX(100%);
  }
}
.concierge-sheet.open {
  transform: translateY(0);
  pointer-events: auto;
}
@media (min-width: 900px) {
  .concierge-sheet.open {
    transform: translateX(0);
  }
}
.sheet-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  z-index: 105;
  opacity: 0;
  pointer-events: none;
  transition: opacity 320ms var(--ease);
}
.sheet-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.sheet-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(28, 42, 58, 0.08);
  flex-shrink: 0;
}
.sheet-header .ttl {
  font-size: 18px;
  font-weight: 600;
  text-transform: none;
}
.sheet-header .close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #1c2a3a;
  transition: background 200ms var(--ease);
}
.sheet-header .close:hover {
  background: rgba(28, 42, 58, 0.08);
}
.sheet-body {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
}

/* concierge messages */
.chat-messages {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  flex: 1;
  overflow-y: auto;
}
.chat-msg {
  max-width: 78%;
  padding: 10px 14px;
  font-size: 15px;
  line-height: 1.45;
  border-radius: 16px;
  animation: msgIn 380ms var(--ease) both;
}
@keyframes msgIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.chat-msg.ai {
  background: #f0f0ee;
  color: #1c1c1c;
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}
.chat-msg.user {
  background: #1c1c1c;
  color: #fff;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}
.chat-msg.human {
  background: #fff4e6;
  border: 1px solid #ffd9b3;
  color: #1c1c1c;
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}
.chat-msg .who {
  display: block;
  font-size: 11px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.08em;
  color: rgba(0, 0, 0, 0.5);
  margin-bottom: 4px;
}
.chat-msg.user .who {
  color: rgba(255, 255, 255, 0.6);
}
.chat-msg.human .who {
  color: #b04a00;
}
.chat-input-row {
  display: flex;
  gap: 8px;
  padding: 16px 20px 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.chat-input {
  flex: 1;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 100px;
  padding: 10px 16px;
  font-family: inherit;
  font-size: 15px;
  background: #f7f7f5;
}
.chat-input:focus {
  outline: none;
  border-color: #1c1c1c;
  background: #fff;
}
.chat-send {
  background: #1c1c1c;
  color: #fff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.chat-quick {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding: 8px 20px 4px;
}
.chat-quick button {
  padding: 6px 12px;
  border-radius: 100px;
  background: rgba(0, 0, 0, 0.06);
  font-size: 13px;
  color: #1c1c1c;
  text-transform: none;
  transition: background 180ms var(--ease);
}
.chat-quick button:hover {
  background: rgba(0, 0, 0, 0.12);
}

/* ============================================================
   modal sheet (reserve, book, enquire)
   uses .sheet-backdrop + .sheet pattern
   ============================================================ */
.sheet {
  position: fixed;
  z-index: 110;
  background: #fff;
  display: flex;
  flex-direction: column;
  pointer-events: none;
  /* mobile - bottom */
  left: 0;
  right: 0;
  bottom: 0;
  height: 92vh;
  border-radius: 20px 20px 0 0;
  transform: translateY(100%);
  transition: transform 420ms var(--ease);
  overflow: hidden;
}
@media (min-width: 900px) {
  .sheet {
    /* desktop - right slide */
    top: 0;
    left: auto;
    bottom: 0;
    height: 100vh;
    width: 460px;
    border-radius: 0;
    transform: translateX(100%);
  }
}
.sheet.open {
  transform: translateY(0);
  pointer-events: auto;
}
@media (min-width: 900px) {
  .sheet.open {
    transform: translateX(0);
  }
}
.sheet-grab {
  width: 36px;
  height: 4px;
  background: rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  margin: 10px auto 0;
}
@media (min-width: 900px) {
  .sheet-grab {
    display: none;
  }
}

/* ============================================================
   form fields - clean, generous
   ============================================================ */
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}
.field label {
  font-size: 13px;
  text-transform: none;
  letter-spacing: 0.04em;
  color: rgba(28, 42, 58, 0.65);
  font-weight: 600;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(28, 42, 58, 0.18);
  background: #fff;
  border-radius: 6px;
  padding: 14px 16px;
  font-family: inherit;
  font-size: 16px;
  color: #1c2a3a;
  transition: border-color 180ms var(--ease), box-shadow 180ms var(--ease);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: #1c2a3a;
  box-shadow: 0 0 0 3px rgba(28, 42, 58, 0.08);
}
.field textarea {
  resize: vertical;
  min-height: 90px;
}
.field-row {
  display: grid;
  gap: 14px;
}
@media (min-width: 600px) {
  .field-row.two {
    grid-template-columns: 1fr 1fr;
  }
}
.choice-grid {
  display: grid;
  gap: 8px;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 18px;
}
.choice {
  border: 1px solid rgba(28, 42, 58, 0.18);
  background: #fff;
  padding: 12px 14px;
  border-radius: 6px;
  font-size: 15px;
  text-transform: none;
  text-align: left;
  transition: border-color 180ms var(--ease), background 180ms var(--ease);
}
.choice:hover {
  border-color: #1c2a3a;
}
.choice.selected {
  border-color: #1c2a3a;
  background: #1c2a3a;
  color: #fff;
}

/* time slots */
.slot-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-bottom: 18px;
}
@media (min-width: 600px) {
  .slot-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}
.slot {
  padding: 10px 6px;
  border: 1px solid rgba(28, 42, 58, 0.18);
  border-radius: 6px;
  font-size: 14px;
  text-align: center;
  transition: all 180ms var(--ease);
}
.slot:hover {
  border-color: #1c2a3a;
}
.slot.selected {
  background: #1c2a3a;
  border-color: #1c2a3a;
  color: #fff;
}
.slot.unavailable {
  opacity: 0.3;
  pointer-events: none;
}

/* success state */
.success-state {
  text-align: center;
  padding: 60px 24px;
}
.success-state .tick {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #1c2a3a;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 28px;
}
.success-state h3 {
  font-size: 32px;
  margin-bottom: 12px;
  letter-spacing: -0.018em;
}
.success-state p {
  font-size: 16px;
  opacity: 0.7;
  max-width: 360px;
  margin: 0 auto;
}

/* ============================================================
   accordion (faqs)
   ============================================================ */
.accordion {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.accordion.light {
  border-top-color: rgba(28, 42, 58, 0.12);
}
.acc-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.accordion.light .acc-item {
  border-bottom-color: rgba(28, 42, 58, 0.12);
}
.acc-q {
  width: 100%;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 28px 0;
  font-size: 19px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: -0.005em;
  color: inherit;
  transition: opacity 200ms var(--ease);
}
@media (min-width: 600px) {
  .acc-q {
    font-size: 24px;
  }
}
.acc-q:hover {
  opacity: 0.7;
}
.acc-q .plus {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 300;
  opacity: 0.7;
  transition: transform 300ms var(--ease);
}
.acc-item.open .acc-q .plus {
  transform: rotate(45deg);
}
.acc-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 400ms var(--ease);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
  opacity: 0.75;
}
.acc-item.open .acc-a {
  max-height: 400px;
}
.acc-a > div {
  padding-bottom: 28px;
  max-width: 720px;
}

/* ============================================================
   tier toggle
   ============================================================ */
.toggle-wrap {
  display: inline-flex;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  padding: 4px;
  position: relative;
}
.toggle-wrap.light {
  background: rgba(28, 42, 58, 0.08);
}
.toggle-btn {
  position: relative;
  z-index: 2;
  padding: 12px 24px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.02em;
  color: currentColor;
  opacity: 0.55;
  transition: opacity 240ms var(--ease), color 240ms var(--ease);
}
.toggle-btn.active {
  opacity: 1;
}
.toggle-wrap::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: calc(50% - 4px);
  height: calc(100% - 8px);
  background: #fff;
  border-radius: 100px;
  z-index: 1;
  transition: transform 340ms var(--ease);
}
.toggle-wrap[data-active="12"]::after {
  transform: translateX(100%);
}
.toggle-wrap[data-active="12"] .toggle-btn.t-3 {
  color: #fff;
}
.toggle-wrap[data-active="3"] .toggle-btn.t-12 {
  color: #fff;
}
.toggle-wrap[data-active="3"] .toggle-btn.t-3 {
  color: #121212;
  opacity: 1;
}
.toggle-wrap[data-active="12"] .toggle-btn.t-12 {
  color: #121212;
  opacity: 1;
}
.toggle-wrap.light::after {
  background: #1c2a3a;
}
.toggle-wrap.light[data-active="3"] .toggle-btn.t-3,
.toggle-wrap.light[data-active="12"] .toggle-btn.t-12 {
  color: #fff;
}
.toggle-wrap.light[data-active="3"] .toggle-btn.t-12,
.toggle-wrap.light[data-active="12"] .toggle-btn.t-3 {
  color: #1c2a3a;
}

/* price animator */
.price-num {
  display: inline-block;
  transition: transform 240ms var(--ease), opacity 240ms var(--ease);
}
.price-num.flip {
  transform: translateY(-8px);
  opacity: 0;
}

/* ============================================================
   confirmation theatre - shared by 1857, kids, tour, enquiry
   ============================================================ */
.confirm-theatre {
  padding: 24px 4px 12px;
  animation: confirmIn 600ms var(--ease) both;
}
@keyframes confirmIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.ct-tick {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #1c2a3a;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 24px;
  animation: tickPop 720ms cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
.ct-tick svg { width: 28px; height: 28px; }
@keyframes tickPop {
  0% { transform: scale(0); opacity: 0; }
  60% { transform: scale(1.1); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}
.ct-eye {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: none;
  color: rgba(28, 42, 58, 0.55);
  margin-bottom: 14px;
  font-weight: 600;
  animation: confirmRow 600ms var(--ease) 200ms both;
}
.confirm-theatre h3 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 600;
  letter-spacing: -0.022em;
  line-height: 1.05;
  text-transform: none;
  margin-bottom: 14px;
  color: #1c2a3a;
  animation: confirmRow 600ms var(--ease) 280ms both;
}
.confirm-theatre p {
  font-size: 15px;
  line-height: 1.55;
  font-weight: 300;
  color: rgba(28, 42, 58, 0.72);
  margin-bottom: 28px;
  max-width: 360px;
  animation: confirmRow 600ms var(--ease) 360ms both;
}
.ct-detail {
  background: rgba(28, 42, 58, 0.04);
  border: 1px solid rgba(28, 42, 58, 0.08);
  border-radius: 10px;
  padding: 18px 20px;
  margin-bottom: 24px;
  animation: confirmRow 600ms var(--ease) 440ms both;
}
.ct-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(28, 42, 58, 0.08);
}
@media (min-width: 480px) {
  .ct-row {
    flex-direction: row;
    align-items: baseline;
    gap: 16px;
  }
}
.ct-row:last-child { border-bottom: none; padding-bottom: 0; }
.ct-row:first-child { padding-top: 0; }
.ct-l {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: none;
  color: rgba(28, 42, 58, 0.55);
  font-weight: 600;
  flex: 0 0 140px;
}
.ct-r {
  font-size: 14px;
  font-weight: 400;
  color: #1c2a3a;
  line-height: 1.45;
  flex: 1;
}
.ct-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  animation: confirmRow 600ms var(--ease) 520ms both;
}
.ct-actions .btn { flex: 1; min-width: 140px; }
@keyframes confirmRow {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* dark variant for portal context */
.confirm-theatre.dark {
  color: #fff;
}
.confirm-theatre.dark .ct-tick { background: #fff; color: #0c0a08; }
.confirm-theatre.dark .ct-eye { color: rgba(255, 255, 255, 0.55); }
.confirm-theatre.dark h3 { color: #fff; }
.confirm-theatre.dark p { color: rgba(255, 255, 255, 0.7); }
.confirm-theatre.dark .ct-detail { background: rgba(255, 255, 255, 0.06); border-color: rgba(255, 255, 255, 0.1); }
.confirm-theatre.dark .ct-row { border-bottom-color: rgba(255, 255, 255, 0.1); }
.confirm-theatre.dark .ct-l { color: rgba(255, 255, 255, 0.55); }
.confirm-theatre.dark .ct-r { color: #fff; }

/* ============================================================
   apple wallet pass - the theatrical moment in join step 3
   ============================================================ */
.wallet-stage {
  position: relative;
  width: 100%;
  max-width: 360px;
  height: 230px;
  margin: 0 auto 40px;
  perspective: 1200px;
}
.wallet-pass {
  position: absolute;
  inset: 0;
  border-radius: 18px;
  padding: 22px 24px;
  background: linear-gradient(160deg, #0c0a08 0%, #2a2520 100%);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.55), 0 4px 12px rgba(0, 0, 0, 0.35);
  color: #fff;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(-200%) rotate(-8deg);
  animation: passDrop 1400ms cubic-bezier(0.34, 1.32, 0.64, 1) 600ms both;
}
.wallet-pass::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(at 75% 30%, rgba(220, 140, 70, 0.22) 0%, transparent 55%),
    radial-gradient(at 10% 95%, rgba(220, 140, 70, 0.1) 0%, transparent 50%);
}
.wallet-pass > * { position: relative; z-index: 2; }
@keyframes passDrop {
  0% { transform: translateY(-200%) rotate(-8deg); opacity: 0; }
  40% { opacity: 1; }
  70% { transform: translateY(8px) rotate(1deg); }
  85% { transform: translateY(-2px) rotate(0); }
  100% { transform: translateY(0) rotate(0); opacity: 1; }
}
.wallet-pass .wp-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
}
.wallet-pass .wp-brand {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.025em;
}
.wallet-pass .wp-tier {
  text-align: right;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: none;
  opacity: 0.65;
}
.wallet-pass .wp-name {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: none;
  opacity: 0.5;
  margin-bottom: 4px;
}
.wallet-pass .wp-member {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.015em;
  text-transform: none;
  margin-bottom: 18px;
}
.wallet-pass .wp-foot {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: auto;
}
.wallet-pass .wp-since {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: none;
  opacity: 0.5;
}
.wallet-pass .wp-qr {
  width: 56px;
  height: 56px;
  background:
    repeating-conic-gradient(#fff 0% 25%, transparent 0% 50%) 50% / 9px 9px,
    #fff;
  border-radius: 6px;
  padding: 4px;
}
.wallet-pass .wp-qr::before {
  content: "";
  display: block;
  width: 100%; height: 100%;
  background:
    linear-gradient(#0c0a08 0 100%) 0 0 / 30% 30% no-repeat,
    linear-gradient(#0c0a08 0 100%) 100% 0 / 30% 30% no-repeat,
    linear-gradient(#0c0a08 0 100%) 0 100% / 30% 30% no-repeat;
}
.wallet-glow {
  position: absolute;
  inset: -30%;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.12) 0%, transparent 60%);
  pointer-events: none;
  opacity: 0;
  animation: walletGlow 2400ms var(--ease) 1800ms both;
}
@keyframes walletGlow {
  0%, 100% { opacity: 0; }
  40%, 60% { opacity: 1; }
}
