.a94us,
.a94us *{box-sizing:border-box}

.a94us{
  --a94-surface:#080808;
  --a94-surface-raised:#151515;
  --a94-surface-soft:#222;
  --a94-border:rgba(255,255,255,.13);
  --a94-text:#fff;
  --a94-muted:rgba(255,255,255,.64);
  --a94-accent:#ff6600;
  --a94-accent-hover:#ff7a1a;
  --a94-button-text:#fff;
  --a94-button-hover-text:#fff;
  --a94-radius:22px;
  --a94-pad-top:22px;
  --a94-pad-right:22px;
  --a94-pad-bottom:22px;
  --a94-pad-left:22px;
  --a94-gap:14px;
  position:relative;
  z-index:1;
  width:100%;
  min-width:0;
  padding:var(--a94-pad-top) var(--a94-pad-right) var(--a94-pad-bottom) var(--a94-pad-left);
  border:1px solid var(--a94-border);
  border-radius:var(--a94-radius);
  background:var(--a94-surface);
  color:var(--a94-text);
  overflow:visible;
  container-type:inline-size;
  container-name:a94schedule;
  font-family:inherit;
}

.a94us.is-book-menu-open{z-index:1000}
.a94us a,
.a94us button{font:inherit;text-decoration:none!important;-webkit-tap-highlight-color:transparent}
.a94us button{cursor:pointer}

/* Header */
.a94us__top{
  position:relative;
  z-index:40;
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  align-items:end;
  gap:16px;
  margin:0 0 14px;
  overflow:visible;
}
.a94us__heading{min-width:0}
.a94us__kicker,
.a94us__modal-kicker{
  display:block;
  margin:0 0 6px;
  color:var(--a94-accent);
  font-size:10px;
  line-height:1.2;
  font-weight:850;
  letter-spacing:.15em;
  text-transform:uppercase;
}
.a94us__title{
  margin:0;
  color:var(--a94-text);
  font-size:clamp(27px,3vw,40px);
  line-height:1;
  font-weight:850;
  letter-spacing:-.045em;
}
.a94us__subtitle{
  max-width:600px;
  margin:8px 0 0;
  color:var(--a94-muted);
  font-size:13px;
  line-height:1.4;
  font-weight:560;
}
.a94us__actions{
  position:relative;
  z-index:45;
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:7px;
  min-width:0;
  overflow:visible;
}
.a94us__header-button,
.a94us__book-trigger,
.a94us__join-button,
.a94us__empty-button,
.a94us__row-action{
  appearance:none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:36px;
  border:1px solid transparent;
  border-radius:11px;
  color:var(--a94-button-text)!important;
  font-size:11px;
  line-height:1;
  font-weight:800;
  white-space:nowrap;
  transition:transform .18s ease,background .18s ease,border-color .18s ease,color .18s ease,box-shadow .18s ease;
}
.a94us__header-button{
  padding:0 14px;
  border-color:var(--a94-border);
  background:var(--a94-surface-raised);
  color:var(--a94-text)!important;
}
.a94us__header-button::after{content:'›';margin-left:7px;color:var(--a94-accent);font-size:17px;line-height:0}
.a94us__book{position:relative;z-index:60;overflow:visible}
.a94us__book-trigger{
  width:38px;
  min-width:38px;
  height:38px;
  min-height:38px;
  padding:0;
  background:var(--a94-accent);
  border-color:color-mix(in srgb,var(--a94-accent) 75%,white 25%);
}
.a94us__book-trigger svg,
.a94us__book-trigger i{width:16px;height:16px;font-size:16px;fill:currentColor;stroke:currentColor}
.a94us__book-trigger:has(.a94us__book-trigger-label){width:auto;padding:0 13px;gap:7px}
.a94us__header-button:hover,
.a94us__header-button:focus-visible,
.a94us__book-trigger:hover,
.a94us__book-trigger:focus-visible,
.a94us__book-trigger[aria-expanded='true'],
.a94us__join-button:hover,
.a94us__join-button:focus-visible,
.a94us__empty-button:hover,
.a94us__empty-button:focus-visible,
.a94us__row-action:hover,
.a94us__row-action:focus-visible{
  transform:translateY(-1px);
  background:var(--a94-accent-hover);
  color:var(--a94-button-hover-text)!important;
  border-color:var(--a94-accent-hover);
  box-shadow:0 9px 22px rgba(255,102,0,.14);
  outline:none;
}

/* Anchored booking dropdown — intentionally not a modal. */
.a94us__book-menu{
  position:absolute;
  z-index:10000;
  top:calc(100% + 9px);
  right:0;
  display:grid;
  grid-template-columns:1fr;
  gap:6px;
  width:min(340px,calc(100vw - 32px));
  padding:8px;
  border:1px solid var(--a94-border);
  border-radius:14px;
  background:#111;
  color:var(--a94-text);
  box-shadow:0 24px 65px rgba(0,0,0,.62);
  transform-origin:top right;
  animation:a94us-menu-in .14s ease both;
}
.a94us__book-menu[hidden]{display:none!important}
.a94us__book-option{
  appearance:none;
  display:grid;
  grid-template-columns:30px minmax(0,1fr) auto;
  align-items:center;
  gap:9px;
  width:100%;
  min-height:54px;
  padding:9px 10px;
  border:1px solid var(--a94-border);
  border-radius:10px;
  background:var(--a94-surface-raised);
  color:var(--a94-text);
  text-align:left;
  transition:transform .18s ease,border-color .18s ease,background .18s ease;
}
.a94us__book-option:hover,
.a94us__book-option:focus-visible{
  transform:translateY(-1px);
  border-color:color-mix(in srgb,var(--a94-accent) 48%,var(--a94-border));
  background:color-mix(in srgb,var(--a94-surface-raised) 90%,var(--a94-accent) 10%);
  outline:none;
}
.a94us__book-option-icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:30px;
  height:30px;
  border-radius:9px;
  background:color-mix(in srgb,var(--a94-accent) 14%,transparent);
  color:var(--a94-accent);
}
.a94us__book-option-icon svg,
.a94us__book-option-icon i{width:15px;height:15px;font-size:15px;fill:currentColor;stroke:currentColor}
.a94us__book-option-copy{display:flex;flex-direction:column;gap:3px;min-width:0}
.a94us__book-option-copy strong{color:var(--a94-text);font-size:12px;line-height:1.2;font-weight:780}
.a94us__book-option-copy span{color:var(--a94-muted);font-size:10px;line-height:1.3;font-weight:560}
.a94us__book-option-arrow{color:var(--a94-accent);font-size:20px;line-height:1}
.a94us__shortcode-template{display:none!important}
@keyframes a94us-menu-in{from{opacity:0;transform:translateY(-5px) scale(.985)}to{opacity:1;transform:none}}

/* Next booking */
.a94us__featured{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:56px minmax(0,1fr) auto;
  align-items:center;
  gap:12px;
  min-height:0;
  padding:10px 12px;
  border:1px solid var(--a94-border);
  border-radius:14px;
  background:linear-gradient(145deg,var(--a94-surface-raised) 0%,var(--a94-surface-raised) 76%,color-mix(in srgb,var(--a94-accent) 8%,var(--a94-surface-raised)) 100%);
  overflow:hidden;
}
.a94us__featured::before{content:'';position:absolute;inset:0 auto 0 0;width:3px;background:var(--a94-accent)}
.a94us__featured-content,
.a94us__row-content{min-width:0}
.a94us__datebox{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  width:56px;
  min-width:56px;
  height:56px;
  padding:6px;
  border:1px solid color-mix(in srgb,var(--a94-accent) 70%,white 30%);
  border-radius:11px;
  background:var(--a94-accent);
  color:#090909;
  text-align:center;
}
.a94us__datebox span,
.a94us__datebox em{font-size:7px;line-height:1;font-weight:900;letter-spacing:.09em;text-transform:uppercase;font-style:normal}
.a94us__datebox strong{margin:3px 0;font-size:20px;line-height:.9;font-weight:900}
.a94us__badges{display:flex;align-items:center;flex-wrap:wrap;gap:6px;margin:0 0 4px}
.a94us__badge{
  display:inline-flex;
  align-items:center;
  min-height:21px;
  padding:0 8px;
  border:1px solid var(--a94-border);
  border-radius:999px;
  background:rgba(255,255,255,.045);
  color:var(--a94-muted);
  font-size:7.5px;
  line-height:1;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.a94us__badge--type{border-color:transparent;background:transparent;padding-left:0;color:var(--a94-accent)}
.a94us__badge--relative{color:var(--a94-text)}
.a94us__featured-title{margin:0;color:var(--a94-text);font-size:clamp(18px,2vw,24px);line-height:1.05;font-weight:820;letter-spacing:-.03em;overflow-wrap:anywhere}
.a94us__featured-meta{margin:4px 0 0;color:var(--a94-muted);font-size:11.5px;line-height:1.35;font-weight:580;overflow-wrap:anywhere}
.a94us__featured-actions{display:flex;align-items:center;justify-content:flex-end;min-width:0}
.a94us__join-button{padding:0 12px;background:var(--a94-accent);border-color:var(--a94-accent);font-size:10px}

/* Later bookings */
.a94us__coming-up{margin-top:12px}
.a94us__section-head{display:flex;align-items:center;justify-content:space-between;gap:12px;margin:0 0 7px}
.a94us__section-head h4{margin:0;color:var(--a94-text);font-size:13px;line-height:1.2;font-weight:800;letter-spacing:.08em;text-transform:uppercase}
.a94us__section-head span{color:var(--a94-muted);font-size:10.5px;line-height:1.2;font-weight:650}
.a94us__list{display:grid;gap:8px}
.a94us__row{
  display:grid;
  grid-template-columns:42px minmax(0,1fr) auto;
  align-items:center;
  gap:10px;
  min-height:58px;
  padding:8px 10px;
  border:1px solid var(--a94-border);
  border-radius:11px;
  background:color-mix(in srgb,var(--a94-surface-raised) 92%,transparent);
  transition:transform .18s ease,border-color .18s ease,background .18s ease;
}
.a94us__row:hover{transform:translateY(-1px);border-color:color-mix(in srgb,var(--a94-accent) 42%,var(--a94-border));background:color-mix(in srgb,var(--a94-surface-raised) 92%,var(--a94-accent) 8%)}
.a94us__row .a94us__datebox{width:42px;min-width:42px;height:42px;border-radius:9px;padding:4px}
.a94us__row .a94us__datebox strong{font-size:16px;margin:2px 0}
.a94us__row .a94us__datebox span,
.a94us__row .a94us__datebox em{font-size:6px}
.a94us__row .a94us__badges{margin-bottom:2px}
.a94us__row .a94us__badge{min-height:17px;padding:0 6px;font-size:6.5px}
.a94us__row-title{margin:0;color:var(--a94-text);font-size:13.5px;line-height:1.15;font-weight:760}
.a94us__row-meta{margin:2px 0 0;color:var(--a94-muted);font-size:10px;line-height:1.3;font-weight:560;overflow-wrap:anywhere}
.a94us__row-action{min-height:31px;padding:0 10px;background:var(--a94-accent);border-color:var(--a94-accent);font-size:9px}

.a94us__empty{padding:20px;border:1px dashed var(--a94-border);border-radius:14px;background:var(--a94-surface-raised)}
.a94us__empty-eyebrow{display:block;margin:0 0 6px;color:var(--a94-accent);font-size:9px;font-weight:850;letter-spacing:.12em;text-transform:uppercase}
.a94us__empty-text{max-width:620px;margin:0 0 13px;color:var(--a94-muted);font-size:13px;line-height:1.45}
.a94us__empty-button{padding:0 14px;background:var(--a94-accent);border-color:var(--a94-accent)}

/* Native top-layer dialog is retained only for full schedule and the selected booking flow. */
.a94us__modal{
  width:min(780px,calc(100vw - 32px));
  max-width:780px;
  max-height:min(84vh,820px);
  margin:auto;
  padding:0;
  border:0;
  border-radius:20px;
  background:transparent;
  color:var(--a94-text);
  overflow:visible;
}
.a94us__modal::backdrop{background:rgba(0,0,0,.78);backdrop-filter:blur(8px);-webkit-backdrop-filter:blur(8px)}
.a94us__modal:not([open]){display:none}
.a94us__modal.is-fallback-open{position:fixed;inset:0;z-index:2147483000;display:grid;place-items:center;width:100vw;max-width:none;height:100vh;max-height:none;background:rgba(0,0,0,.78)}
.a94us__modal-box{display:flex;flex-direction:column;width:100%;max-height:min(84vh,820px);border:1px solid var(--a94-border);border-radius:20px;background:var(--a94-surface);color:var(--a94-text);box-shadow:0 30px 100px rgba(0,0,0,.58);overflow:hidden}
.a94us__modal-head{display:flex;align-items:center;justify-content:space-between;gap:16px;padding:16px 18px;border-bottom:1px solid var(--a94-border);background:var(--a94-surface-raised)}
.a94us__modal-head>div{min-width:0}
.a94us__modal-kicker{margin-bottom:3px;font-size:8px}
.a94us__modal-title{display:block;color:var(--a94-text);font-size:20px;line-height:1.1;font-weight:820;letter-spacing:-.025em;overflow-wrap:anywhere}
.a94us__modal-close{appearance:none;display:inline-flex;align-items:center;justify-content:center;width:36px;min-width:36px;height:36px;padding:0;border:1px solid var(--a94-border);border-radius:50%;background:var(--a94-surface-soft);color:var(--a94-text);font-size:23px;line-height:1;cursor:pointer;transition:background .18s ease,border-color .18s ease,transform .18s ease}
.a94us__modal-close:hover,
.a94us__modal-close:focus-visible{transform:rotate(4deg);border-color:var(--a94-accent);background:color-mix(in srgb,var(--a94-accent) 14%,var(--a94-surface-soft));outline:none}
.a94us__modal-body{min-height:0;padding:16px 18px 18px;overflow:auto;overscroll-behavior:contain}
.a94us__modal-frame{display:block;width:100%;height:min(66vh,650px);border:0;border-radius:12px;background:#fff}
.a94us__modal-shortcode{min-height:300px}
.a94us__modal-schedule{min-width:0}
.a94us__modal-note{margin:0 0 12px;color:var(--a94-muted);font-size:12px;line-height:1.4}
.a94us__modal .is-hidden{display:none!important}
.a94us__list--modal{gap:7px}
.a94us__list--modal .a94us__row{grid-template-columns:46px minmax(0,1fr) auto;min-height:62px;padding:8px 10px}
.a94us__list--modal .a94us__row-meta{font-size:10.5px}
.a94us__empty--modal{padding:18px}

@container a94schedule (max-width:760px){
  .a94us__top{grid-template-columns:1fr;align-items:start;gap:11px}
  .a94us__actions{justify-content:flex-start}
  .a94us__book-menu{left:0;right:auto;transform-origin:top left}
  .a94us__featured{grid-template-columns:52px minmax(0,1fr);gap:11px;padding:10px}
  .a94us__featured .a94us__datebox{width:50px;min-width:50px;height:52px}
  .a94us__featured-actions{grid-column:1/-1;justify-content:flex-start}
  .a94us__join-button{width:100%}
}

@container a94schedule (max-width:520px){
  .a94us{--a94-pad-top:16px;--a94-pad-right:16px;--a94-pad-bottom:16px;--a94-pad-left:16px;--a94-radius:18px}
  .a94us__title{font-size:27px}
  .a94us__subtitle{font-size:12.5px}
  .a94us__actions{display:grid;grid-template-columns:minmax(0,1fr) auto;width:100%}
  .a94us__header-button{width:100%}
  .a94us__book-menu{width:min(320px,calc(100vw - 32px))}
  .a94us__featured{grid-template-columns:46px minmax(0,1fr);padding:9px}
  .a94us__featured .a94us__datebox{width:44px;min-width:44px;height:48px}
  .a94us__featured-title{font-size:20px}
  .a94us__featured-meta{font-size:10.5px}
  .a94us__row{grid-template-columns:38px minmax(0,1fr);gap:8px;padding:7px 8px;min-height:52px}
  .a94us__row .a94us__datebox{width:36px;min-width:36px;height:38px}
  .a94us__row-action{grid-column:2;justify-self:start}
  .a94us__section-head{align-items:center}
  .a94us__section-head h4{font-size:11px}
  .a94us__section-head span{font-size:9px}
}

@media (max-width:700px){
  .a94us__modal{width:100vw;max-width:none;max-height:100dvh;margin:auto 0 0;border-radius:20px 20px 0 0}
  .a94us__modal-box{max-height:92dvh;border-radius:20px 20px 0 0;border-bottom:0}
  .a94us__modal-head{padding:14px 16px}
  .a94us__modal-body{padding:14px 16px 18px}
  .a94us__modal-frame{height:75dvh;border-radius:10px}
}

@media (prefers-reduced-motion:reduce){
  .a94us *,
  .a94us__modal *{scroll-behavior:auto!important;transition:none!important;animation:none!important}
}


/* v5.26 responsive action placement. The full-schedule and booking
   controls remain grouped, with desktop actions right-aligned and
   responsive actions inside the expanded widget content. */
@media (min-width:1025px){
  .a94us[data-a94us] .a94us__top{
    grid-template-columns:minmax(0,1fr) auto!important;
    align-items:end!important;
  }
  .a94us[data-a94us] .a94us__actions{
    justify-self:end!important;
    justify-content:flex-end!important;
    width:auto!important;
  }
}
@media (max-width:1024px){
  .a94us[data-a94us].is-a94-expanded .a94us__actions{
    display:flex!important;
    flex-wrap:wrap!important;
    align-items:center!important;
    justify-content:flex-start!important;
    width:100%!important;
  }
  .a94us[data-a94us].is-a94-expanded .a94us__header-button{
    min-width:0!important;
  }
}
@media (max-width:520px){
  .a94us[data-a94us].is-a94-expanded .a94us__actions{
    display:grid!important;
    grid-template-columns:minmax(0,1fr) auto!important;
  }
  .a94us[data-a94us].is-a94-expanded .a94us__header-button{
    width:100%!important;
  }
}
