:root {
  --twl-color-paper: #fffdf8;
  --twl-color-gold: #c9ac8c;
  --twl-color-gold-rgb: 201 172 140;
  --twl-color-muted: rgba(255, 253, 248, 0.72);
  --twl-accent-color: var(--twl-color-gold);
  --twl-accent-rgb: var(--twl-color-gold-rgb);
  --twl-font-body: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --twl-font-display: Georgia, "Times New Roman", serif;
  --twl-space-sm: 1rem;
  --twl-space-md: 1.5rem;
  --twl-space-lg: 2rem;
  --twl-space-xl: 3rem;
  --twl-space-2xl: 4.5rem;
  --twl-radius-md: 1rem;
  --twl-radius-pill: 999px;
  --twl-shell-width: min(1600px, calc(100vw - 2rem));
  --twl-shell-edge: clamp(1rem, 2.6vw, 2.5rem);
  --twl-header-height: 5rem;
  --twl-scroll-offset: calc(var(--twl-header-height) + 1.5rem);
  --twl-logo-circle: url("../img/logos/TheatreworksLive-circle.webp");
  --twl-logo-circle-mobile: url("../img/logos/TheatreworksLive-circle-mobile.webp");
  --twl-spinner-logo: var(--twl-logo-circle);
}

@media (max-width: 960px) {
  :root {
    --twl-spinner-logo: var(--twl-logo-circle-mobile);
  }
}

html {
  box-sizing: border-box;
  background-color: #151515;
  color-scheme: dark;
  scroll-padding-top: var(--twl-scroll-offset);
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(circle at top, rgba(176, 129, 0, 0.16), transparent 30%),
    linear-gradient(180deg, #151515 0%, #0a0a0a 100%);
  color: var(--twl-color-paper);
  font-family: var(--twl-font-body);
  overflow-wrap: anywhere;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

p {
  margin: 0 0 var(--twl-space-md);
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.twl-site-shell {
  min-height: 100vh;
  display: flex;
  flex: 1 0 auto;
  flex-direction: column;
}

.twl-shell {
  width: var(--twl-shell-width);
  margin: 0 auto;
}

.twl-shell--wide,
.twl-header .twl-shell {
  width: 100%;
  max-width: none;
}

.twl-main {
  flex: 1 0 auto;
  padding: var(--twl-space-xl) 0 var(--twl-space-2xl);
}

.twl-main--home {
  padding: 0 0 var(--twl-space-2xl);
}

.twl-main > .twl-hero,
.home .twl-main > .twl-hero {
  width: 100%;
  max-width: none;
  padding-inline: 0;
}

.twl-header {
  --twl-header-frame-height: clamp(4.5rem, 4.4vw, 4.9rem);
  position: sticky;
  top: 0;
  z-index: 40;
  background: color-mix(in srgb, #080808 92%, rgba(8, 8, 8, 0.82));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(16px);
}

body.twl-nav-float .twl-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 80;
  background: rgba(8, 8, 8, 0.22);
  border-bottom: 1px solid rgba(255, 253, 248, 0.16);
}

body.admin-bar.twl-nav-float .twl-header {
  top: 32px;
}

.twl-header__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.5rem;
  min-height: var(--twl-header-frame-height);
  height: var(--twl-header-frame-height);
  padding: 0 0.8rem;
}

.twl-branding {
  justify-self: start;
}

.twl-branding__link {
  display: inline-flex;
  flex-direction: column;
  gap: 0.2rem;
  text-decoration: none;
}

.twl-branding__logo {
  display: block;
  width: auto;
  max-width: min(16rem, 52vw);
  max-height: 2.8rem;
  object-fit: contain;
}

.twl-branding__title {
  font-family: var(--twl-font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
}

.twl-branding__tagline,
.twl-eyebrow {
  color: var(--twl-color-muted);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.twl-header__actions {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.twl-nav-toggle,
.twl-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.8rem 1.2rem;
  border: 0;
  border-radius: var(--twl-radius-pill);
  text-decoration: none;
}

.twl-nav-toggle {
  min-height: 2.85rem;
  padding: 0.5rem 0.78rem;
  border: 1px solid rgb(var(--twl-accent-rgb) / 0.55);
  background: rgba(0, 0, 0, 0.68);
  color: var(--twl-color-paper);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.06),
    0 0 16px rgb(var(--twl-accent-rgb) / 0.12);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.twl-nav-toggle__label {
  font-size: 0.72rem;
}

.twl-nav-toggle__icon {
  display: inline-flex;
  flex-direction: column;
  gap: 0.28rem;
}

.twl-nav-toggle__line {
  display: block;
  width: 1.35rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.twl-nav {
  display: none;
  position: absolute;
  top: calc(100% + 0.3rem);
  right: 0.8rem;
  left: 0.8rem;
  width: 100%;
  justify-self: stretch;
}

.twl-nav.is-open {
  display: block;
}

.twl-nav__list {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.2rem;
  margin: 0;
  padding: 0.55rem;
  list-style: none;
  border: 1px solid rgb(var(--twl-accent-rgb) / 0.22);
  border-radius: 1.35rem;
  background: linear-gradient(180deg, rgba(14, 14, 14, 0.98), rgba(4, 4, 4, 0.96));
  box-shadow:
    0 22px 50px rgba(0, 0, 0, 0.4),
    0 0 24px rgb(var(--twl-accent-rgb) / 0.18);
}

.twl-nav__list > .menu-item {
  min-width: 0;
}

.twl-nav__list a {
  display: inline-flex;
  align-items: center;
  min-height: 2.5rem;
  color: var(--twl-color-paper);
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
}

.twl-nav__list > .menu-item > a {
  width: 100%;
  justify-content: space-between;
  padding: 0.62rem 0.95rem;
  border: 1px solid rgb(var(--twl-accent-rgb) / 0.58);
  border-radius: 1rem;
  background: linear-gradient(180deg, rgb(var(--twl-accent-rgb) / 0.16), rgb(var(--twl-accent-rgb) / 0.08));
  box-shadow:
    inset 0 0 0 1px rgb(var(--twl-accent-rgb) / 0.18),
    0 0 0 1px rgb(var(--twl-accent-rgb) / 0.32),
    0 10px 24px rgba(0, 0, 0, 0.24),
    0 0 22px rgb(var(--twl-accent-rgb) / 0.18);
  font-size: 0.84rem;
  letter-spacing: 0.06em;
  opacity: 0.72;
}

.twl-nav__list > .current-menu-item > a,
.twl-nav__list > .current_page_item > a,
.twl-nav__list > .current-menu-ancestor > a,
.twl-nav__list > .menu-item:hover > a,
.twl-nav__list > .menu-item:focus-within > a {
  border-color: rgb(var(--twl-accent-rgb) / 0.92);
  background: linear-gradient(180deg, rgb(var(--twl-accent-rgb) / 0.24), rgb(var(--twl-accent-rgb) / 0.13));
  color: #fff;
  opacity: 1;
}

.twl-nav__list .menu-item-has-children {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: stretch;
}

.twl-submenu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.3rem;
  height: 2.7rem;
  margin-left: 0;
  border: 1px solid rgb(var(--twl-accent-rgb) / 0.2);
  border-radius: 1rem;
  background: linear-gradient(180deg, rgb(var(--twl-accent-rgb) / 0.12), rgb(var(--twl-accent-rgb) / 0.05));
  color: rgb(var(--twl-accent-rgb) / 0.9);
  box-shadow: inset 0 0 0 1px rgb(var(--twl-accent-rgb) / 0.16);
}

.twl-submenu-toggle__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 0.95rem;
  height: 0.95rem;
}

.twl-nav__list .sub-menu {
  position: static;
  display: none;
  min-width: 0;
  margin: 0.2rem 0 0;
  padding: 0.2rem 0 0.2rem 0.55rem;
  list-style: none;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  opacity: 1;
  visibility: visible;
  transform: none;
}

.twl-nav__list .menu-item.is-open > .sub-menu {
  display: grid;
  gap: 0.25rem;
}

.twl-nav__list .sub-menu a {
  width: 100%;
  min-height: 2.45rem;
  padding: 0.62rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.9rem;
  background: rgb(var(--twl-accent-rgb) / 0.08);
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  opacity: 1;
}

.twl-menu-cart__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.75rem;
  min-height: 2.75rem;
  padding: 0.68rem;
  border: 1px solid rgb(var(--twl-accent-rgb) / 0.72);
  border-radius: 999px;
  background: linear-gradient(180deg, rgb(var(--twl-accent-rgb) / 0.16), rgb(var(--twl-accent-rgb) / 0.08));
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.06),
    0 0 18px rgb(var(--twl-accent-rgb) / 0.14);
}

.twl-menu-cart__count {
  position: absolute;
  top: -0.18rem;
  right: -0.18rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.35rem;
  min-height: 1.35rem;
  padding: 0 0.36rem;
  border-radius: 999px;
  background: rgba(201, 172, 140, 0.96);
  color: #111;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
}

.twl-button {
  min-width: 13.25rem;
  width: 13.25rem;
  min-height: 2.9rem;
  padding: 0.72rem 1rem;
  background: rgba(0, 0, 0, 0.84);
  color: #fff;
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid color-mix(in srgb, var(--twl-accent-color) 70%, rgba(255, 255, 255, 0.18));
  box-shadow:
    0 0 0 1px color-mix(in srgb, var(--twl-accent-color) 52%, rgba(255, 255, 255, 0.12)),
    0 8px 24px color-mix(in srgb, var(--twl-accent-color) 34%, rgba(0, 0, 0, 0.26));
}

.twl-button--ghost {
  background: transparent;
  color: var(--twl-color-paper);
  box-shadow: inset 0 0 0 1px rgba(255, 253, 248, 0.18);
}

.twl-button__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1rem;
  height: 1rem;
  color: #fff;
}

.twl-button__icon svg {
  display: block;
  width: 1rem;
  height: 1rem;
  fill: currentColor;
}

.twl-hero {
  position: relative;
  min-height: 100svh;
  padding: 0;
  overflow: clip;
  background: #000;
}

.twl-hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
  max-width: none;
  min-height: 100svh;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.twl-hero__content {
  display: none;
}

.twl-hero__media {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  min-height: 100svh;
  overflow: hidden;
  background: #000;
}

.twl-hero--fade-black .twl-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: #000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 1650ms ease;
}

.twl-hero--fade-black.is-transitioning .twl-hero__media::after {
  opacity: 0.82;
}

.twl-hero__media-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.twl-hero__stars {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
}

.twl-hero__star {
  position: absolute;
  display: block;
  color: rgba(240, 200, 75, 0.74);
  font-size: var(--twl-star-size, 18px);
  line-height: 1;
  opacity: 0.35;
  text-shadow: 0 0 14px rgba(240, 200, 75, 0.28);
  transform: translate3d(0, 0, 0);
}

.twl-hero__star--outline {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 227, 159, 0.9);
  text-shadow: 0 0 12px rgba(255, 221, 132, 0.22);
}

.twl-hero__glass-edge {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 4;
  height: 2px;
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0), rgba(255, 255, 255, 0.34) 18%, rgba(255, 255, 255, 0.52) 50%, rgba(255, 255, 255, 0.34) 82%, rgba(255, 253, 248, 0));
  box-shadow:
    0 0 8px rgba(255, 255, 255, 0.2),
    0 1px 14px rgba(255, 255, 255, 0.12);
}

.twl-hero__glass-edge::before,
.twl-hero__glass-edge::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
}

.twl-hero__glass-edge::before {
  height: 6px;
  transform: translateY(-2px);
  background: inherit;
  opacity: 0.82;
  backdrop-filter: saturate(155%) brightness(1.24) blur(1.35px);
  -webkit-backdrop-filter: saturate(155%) brightness(1.24) blur(1.35px);
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 1));
}

.twl-hero__glass-edge::after {
  height: 10px;
  transform: translateY(-6px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.04) 52%, rgba(255, 255, 255, 0.12));
  opacity: 0.34;
  filter: blur(2px);
}

.twl-hero__curtain {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 5;
  width: 50%;
  background:
    linear-gradient(90deg, rgba(14, 4, 4, 0.98), rgba(92, 14, 18, 0.92)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.07) 10px, transparent 10px, transparent 20px);
  box-shadow: inset 0 0 2.5rem rgba(0, 0, 0, 0.55);
  animation: twl-curtain-open 1.9s cubic-bezier(0.16, 0.9, 0.18, 1) forwards;
}

.twl-hero__curtain--left {
  left: 0;
  transform-origin: left center;
  --twl-curtain-direction: -1;
}

.twl-hero__curtain--right {
  right: 0;
  transform-origin: right center;
  --twl-curtain-direction: 1;
}

.twl-hero-card {
  position: absolute;
  inset: 0;
  display: block;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: none;
  opacity: 0;
  transition: opacity 1400ms ease;
  z-index: 1;
}

.twl-hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background-image: linear-gradient(
    to bottom,
    rgba(12, 12, 12, 0) 0%,
    rgba(12, 12, 12, 0.04) 45%,
    rgba(12, 12, 12, 0.26) 100%
  );
}

.twl-hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image: var(--twl-slide-image-mobile, var(--twl-slide-image, linear-gradient(135deg, rgba(255, 253, 248, 0.06), rgba(255, 253, 248, 0.06))));
  background-size: cover;
  background-position: var(--twl-slide-crop, center center);
  background-repeat: no-repeat;
  transform-origin: center center;
}

.twl-hero-card > * {
  position: relative;
  z-index: 5;
}

.twl-hero-card.is-active,
.twl-hero-card.is-leaving {
  display: block;
}

.twl-hero-card.is-active {
  opacity: 1;
}

.twl-hero-card.is-leaving {
  opacity: 0;
}

.twl-hero-card.is-active::after,
.twl-hero-card.is-leaving::after {
  animation: twl-ken-burns-transform 8.8s ease both;
}

.twl-hero-card__content {
  position: absolute;
  inset: 50% 0 auto 0;
  z-index: 5;
  display: grid;
  justify-items: center;
  gap: 1rem;
  max-width: min(100%, 61rem);
  margin: 0 auto;
  padding: 0 1.25rem;
  text-align: center;
  transform: translateY(-82%);
}

.twl-hero-card .twl-eyebrow,
.twl-hero-card h2,
.twl-hero-card p,
.twl-hero-card .twl-actions {
  opacity: 0;
  transition: opacity 760ms ease;
}

.twl-hero-card.is-text-visible .twl-eyebrow,
.twl-hero-card.is-text-visible h2,
.twl-hero-card.is-text-visible p,
.twl-hero-card.is-text-visible .twl-actions {
  opacity: 1;
}

.twl-hero-card .twl-eyebrow {
  color: rgba(240, 200, 75, 0.68);
  font-size: 0.92rem;
}

.twl-hero-card h2 {
  max-width: 10ch;
  margin: 0 auto;
  font-family: var(--twl-font-display);
  font-size: clamp(2.35rem, 12vw, 3.8rem);
  line-height: 0.93;
  text-shadow: 0 8px 26px rgba(0, 0, 0, 0.8), 0 2px 10px rgba(0, 0, 0, 0.7);
}

.twl-hero-card p {
  max-width: 22rem;
  margin: 0;
  color: rgba(255, 253, 248, 0.95);
  font-size: 0.98rem;
  line-height: 1.16;
  text-shadow: 0 6px 16px rgba(0, 0, 0, 0.75);
}

.twl-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
}

.twl-hero__global-actions {
  position: absolute;
  inset: 50% 0 auto 0;
  z-index: 6;
  display: grid;
  justify-items: center;
  padding: 0 1.25rem;
  transform: translateY(8.4rem);
}

.twl-home-intro {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #000;
  pointer-events: none;
}

.twl-home-intro__spinner {
  --twl-spinner-size: 15rem;
  position: relative;
  z-index: 3;
  width: var(--twl-spinner-size);
  height: var(--twl-spinner-size);
  box-shadow:
    0 0 0 1px rgb(var(--twl-accent-rgb) / 0.2),
    0 0 32px rgb(var(--twl-accent-rgb) / 0.3);
}

.twl-home-intro__burst {
  position: fixed;
  inset: -60vmax;
  z-index: 2;
  opacity: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at center, transparent 0 24%, rgba(0, 0, 0, 0.16) 38%, transparent 64%),
    conic-gradient(
      from 180deg,
      rgba(229, 57, 53, 0) 0deg,
      rgba(229, 57, 53, 0.34) 22deg,
      rgba(251, 140, 0, 0.14) 48deg,
      rgba(251, 140, 0, 0) 70deg,
      rgba(253, 216, 53, 0) 72deg,
      rgba(253, 216, 53, 0.34) 94deg,
      rgba(67, 160, 71, 0.14) 118deg,
      rgba(67, 160, 71, 0) 140deg,
      rgba(67, 160, 71, 0) 142deg,
      rgba(67, 160, 71, 0.34) 164deg,
      rgba(30, 136, 229, 0.14) 188deg,
      rgba(30, 136, 229, 0) 210deg,
      rgba(30, 136, 229, 0) 212deg,
      rgba(142, 36, 170, 0.34) 234deg,
      rgba(142, 36, 170, 0.14) 258deg,
      rgba(142, 36, 170, 0) 280deg,
      rgba(229, 57, 53, 0) 282deg,
      rgba(229, 57, 53, 0.34) 304deg,
      rgba(251, 140, 0, 0.14) 328deg,
      rgba(229, 57, 53, 0) 360deg
    );
  clip-path: circle(0 at 50% 50%);
  filter: saturate(1.15) blur(22px);
  mix-blend-mode: screen;
}

.twl-hero.is-home-intro-revealing .twl-home-intro {
  animation: twl-home-intro-overlay-out 1.2s ease forwards;
}

.twl-hero.is-home-intro-revealing .twl-home-intro__spinner {
  animation: twl-home-intro-spinner-out 1.2s cubic-bezier(.2, .82, .22, 1) forwards;
}

.twl-hero.is-home-intro-revealing .twl-home-intro__burst {
  animation: twl-home-intro-burst 1.35s cubic-bezier(.12, .78, .16, 1) forwards;
}

.twl-hero.is-home-intro-done .twl-home-intro {
  display: none;
}

.twl-site-spinner {
  --twl-spinner-size: 150px;
  --twl-spinner-logo-size: 100%;
  --twl-spinner-pulse-size: 105%;
  --twl-spinner-shell: rgba(8, 10, 18, 0.96);
  --twl-spinner-shell-soft: rgba(8, 10, 18, 0.74);
  --twl-spinner-edge-reveal: rgba(255, 255, 255, 0.16);
  position: relative;
  display: block;
  width: var(--twl-spinner-size);
  height: var(--twl-spinner-size);
  overflow: visible;
  border: 0;
  border-radius: 50%;
  isolation: isolate;
  background:
    radial-gradient(circle, var(--twl-spinner-shell) 0 54%, rgba(12, 14, 24, 0.92) 60%, var(--twl-spinner-shell-soft) 68%, transparent 78%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.05),
    inset 0 0 34px rgba(0, 0, 0, 0.42);
}

.twl-site-spinner::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 0;
  width: var(--twl-spinner-pulse-size);
  height: var(--twl-spinner-pulse-size);
  border-radius: 50%;
  opacity: 0.98;
  transform: translate(-50%, -50%);
  background:
    radial-gradient(circle, rgba(0, 0, 0, 0) 0 50%, rgba(0, 0, 0, 0.18) 57%, rgba(0, 0, 0, 0) 69%),
    conic-gradient(from 180deg, #e53935 0deg, #fb8c00 60deg, #fdd835 120deg, #43a047 180deg, #1e88e5 240deg, #8e24aa 300deg, #e53935 360deg);
  filter: blur(7px) saturate(1.15) brightness(1.16);
  animation: twl-site-spinner-pulse 2s ease-in-out infinite;
}

.twl-site-spinner::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(8, 10, 18, 0) 0 56%, var(--twl-spinner-edge-reveal) 61%, rgba(8, 10, 18, 0.08) 65%, rgba(8, 10, 18, 0) 71%),
    var(--twl-spinner-logo),
    radial-gradient(circle, rgba(8, 10, 18, 0.04) 0 52%, rgba(8, 10, 18, 0.9) 60%, rgba(8, 10, 18, 0.68) 68%, transparent 77%);
  background-position: center, center, center;
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-size: 100% 100%, var(--twl-spinner-logo-size) var(--twl-spinner-logo-size), 100% 100%;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    inset 0 10px 18px rgba(255, 255, 255, 0.04),
    inset 0 -18px 24px rgba(0, 0, 0, 0.38);
}

@keyframes twl-curtain-open {
  0% {
    transform: translateX(0);
    opacity: 1;
  }

  100% {
    transform: translateX(calc(var(--twl-curtain-shift, 102%) * (var(--twl-curtain-direction, 1))));
    opacity: 0;
  }
}

@keyframes twl-ken-burns-transform {
  0% {
    transform: scale(1.08);
  }

  100% {
    transform: scale(1.16);
  }
}

@keyframes twl-home-intro-spinner-out {
  0% {
    opacity: 1;
    transform: scale(1);
  }

  100% {
    opacity: 0;
    transform: scale(0.3);
  }
}

@keyframes twl-home-intro-overlay-out {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes twl-home-intro-burst {
  0% {
    opacity: 0;
    clip-path: circle(0 at 50% 50%);
    filter: saturate(1.15) blur(24px);
  }

  12% {
    opacity: 0.95;
  }

  70% {
    opacity: 0.68;
    clip-path: circle(95vmax at 50% 50%);
    filter: saturate(1.2) blur(10px);
  }

  100% {
    opacity: 0;
    clip-path: circle(140vmax at 50% 50%);
    filter: saturate(1.2) blur(0);
  }
}

@keyframes twl-site-spinner-pulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.9;
    filter: blur(7px) saturate(1.05) brightness(1.04);
  }

  50% {
    transform: translate(-50%, -50%) scale(1.045);
    opacity: 1;
    filter: blur(9px) saturate(1.28) brightness(1.26);
  }
}

@media (min-width: 961px) {
  .twl-header__inner {
    grid-template-columns: minmax(0, auto) minmax(0, 1fr) auto;
    gap: clamp(0.65rem, 1.4vw, 1.25rem);
    padding: 0 clamp(1rem, 2vw, 2rem);
  }

  .twl-branding__logo {
    max-width: min(18rem, 48vw);
    max-height: 4.15rem;
  }

  .twl-nav {
    display: block;
    position: static;
    width: auto;
    min-width: 0;
    justify-self: end;
  }

  .twl-nav__list {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0.32rem;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .twl-nav__list > .menu-item > a {
    min-height: 2.5rem;
    width: auto;
    padding: 0.45rem 0.78rem;
    border-radius: 999px;
    font-size: 0.76rem;
    white-space: nowrap;
    opacity: 1;
  }

  .twl-nav-toggle {
    display: none;
  }

  .twl-submenu-toggle {
    display: none;
  }

  .twl-nav__list .menu-item-has-children {
    position: relative;
    display: flex;
    gap: 0;
  }

  .twl-nav__list .sub-menu {
    position: absolute;
    top: calc(100% - 1px);
    left: 0.7rem;
    min-width: 13rem;
    margin-top: 0;
    padding: 0.45rem 0.35rem 0.35rem;
    border: 1px solid rgb(var(--twl-accent-rgb) / 0.58);
    border-radius: 0 1.2rem 1.2rem 1.2rem;
    background: linear-gradient(180deg, rgb(var(--twl-accent-rgb) / 0.14), rgba(4, 4, 4, 0.78));
    box-shadow:
      0 18px 46px rgba(0, 0, 0, 0.34),
      0 0 0 1px rgb(var(--twl-accent-rgb) / 0.22),
      0 0 24px rgb(var(--twl-accent-rgb) / 0.22);
    opacity: 0;
    visibility: hidden;
    transform: translateY(0.4rem);
    transition: opacity 260ms ease, transform 260ms ease, visibility 260ms ease;
  }

  .twl-nav__list .menu-item:hover > .sub-menu,
  .twl-nav__list .menu-item:focus-within > .sub-menu {
    display: grid;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .twl-nav__list .sub-menu a {
    border: 1px solid rgb(var(--twl-accent-rgb) / 0.16);
    background: linear-gradient(180deg, rgb(var(--twl-accent-rgb) / 0.2), rgb(var(--twl-accent-rgb) / 0.12));
  }

  .twl-menu-cart__link {
    min-width: 2.38rem;
    min-height: 2.38rem;
    padding: 0.42rem;
  }

  .twl-hero-card::after {
    background-image: var(--twl-slide-image, var(--twl-slide-image-mobile, linear-gradient(135deg, rgba(255, 253, 248, 0.06), rgba(255, 253, 248, 0.06))));
  }

  .twl-hero-card__content {
    transform: translateY(-72%);
  }

  .twl-hero-card h2 {
    font-size: clamp(2.95rem, 6vw, 5.35rem);
  }

  .twl-hero-card p {
    max-width: 46rem;
    font-size: clamp(1.15rem, 2.05vw, 1.72rem);
  }

  .twl-actions {
    flex-wrap: nowrap;
    gap: 1rem;
  }

  .twl-hero__global-actions {
    transform: translateY(9.75rem);
  }
}
