:root {
  --ink: #000000;
  --ink-soft: #111111;
  --panel: #ffffff;
  --line: rgba(0, 0, 0, 0.14);
  --text: #111111;
  --muted: #5c5c5c;
  --accent: #c8102e;
  --accent-deep: #9a0c24;
  --live: #c8102e;
  --radius: 0px;
  --card-radius: 0px;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font: "Canela", Georgia, "Times New Roman", serif;
  --font-display: "Canela", Georgia, "Times New Roman", serif;
  --font-ar-display: "29LT Zeyn", "Segoe UI", Tahoma, sans-serif;
  --font-ar-body: "29LT Zarid", "Segoe UI", Tahoma, sans-serif;
  --font-ar: var(--font-ar-body);
  --font-body: "Staff", "Segoe UI", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--text);
  background: #ffffff;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: 0;
  background: none;
  color: inherit;
}

.noise {
  display: none;
}

.shell {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 2.5rem));
  margin: 0 auto;
}

/* â€”â€”â€” Home â€”â€”â€” */
.topbar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--line);
  animation: rise 0.8s var(--ease) both;
}

.detail-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 1rem 0;
  animation: rise 0.7s var(--ease) both;
}

.detail-top--static {
  position: relative;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.detail-top__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  width: min(1180px, calc(100% - 2.5rem));
  margin: 0 auto;
}

.header-side--start {
  grid-column: 1;
  justify-self: start;
  min-height: 42px;
  display: flex;
  align-items: center;
}

.header-side--end,
.topbar__actions,
.detail-top__end {
  grid-column: 3;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand {
  grid-column: 2;
  justify-self: center;
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.brand-logo {
  height: clamp(80px, 14vw, 110px);
  width: auto;
  object-fit: contain;
  filter: none;
}

.detail-top .brand-logo {
  height: clamp(72px, 16vw, 100px);
  filter: brightness(0) invert(1);
}

.detail-top--static .brand-logo {
  filter: none;
}

.live-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.topbar__actions {
  flex-wrap: wrap;
  justify-content: flex-end;
}

.lang-select {
  font: inherit;
  color: #9d8656;
  padding: 0.5rem 0.85rem;
  border: 0px solid #00000000;
  border-radius: 0;
  background: #ffffff00;
  outline: none;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  font-weight: 600;
}

.lang-select option {
  color: #111;
  background: #fff;
}

.theme-toggle {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  color: #c0a773;
  transition: background 0.25s ease, color 0.25s ease;
}

.theme-toggle:hover {
  background: #000;
  color: #fff;
}

.theme-toggle__moon {
  display: none;
}

html[data-theme="light"] .theme-toggle__sun {
  display: none;
}

html[data-theme="light"] .theme-toggle__moon {
  display: block;
}

html[data-theme="dark"] .theme-toggle__sun {
  display: block;
}

html[data-theme="dark"] .theme-toggle__moon {
  display: none;
}

.site-footer {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--line);
  background: #000;
  color: #fff;
  padding: 1.35rem 0;
  margin-top: 0;
}

.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.3rem;
  flex-wrap: wrap;
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-style: italic;
  font-family: 'Canela';
}

.site-footer a {
  color: #fff;
  font-size: 0.65rem;
  font-weight: 200;
  /* text-transform: uppercase; */
  letter-spacing: 0.06em;
}

.site-footer a:hover {
  text-decoration: underline;
}

.legal-page {
  padding-bottom: 2rem;
}

.legal-content {
  max-width: 720px;
  padding: 2rem 0 3rem;
}

.legal-content h1 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 400;
}

.legal-content p {
  margin: 0 0 1rem;
  color: var(--muted);
  line-height: 1.7;
}

.legal-content--warning {
  max-width: 640px;
  margin: 0 auto;
  padding: 2.5rem 0 3rem;
  text-align: center;
}

.legal-warning h1 {
  margin: 0 0 1.25rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
}

.legal-warning[lang="ar"] h1 {
  text-transform: none;
  letter-spacing: 0;
}

.legal-warning p {
  margin: 0;
  color: var(--text);
  line-height: 1.75;
  font-size: clamp(0.95rem, 2.2vw, 1.05rem);
}

.legal-divider {
  width: min(280px, 60%);
  margin: 2rem auto;
  border: 0;
  border-top: 1px solid var(--line);
}

.hero {
  padding: 1.5rem 0 1.25rem;
  text-align: center;
  animation: rise 0.9s var(--ease) 0.08s both;
}

.hero h1 {
  margin: 0 auto;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.15;
  letter-spacing: 0;
  max-width: 20ch;
  color: #000;
}

.hero p {
  margin: 0.75rem auto 0;
  max-width: 42ch;
  font-size: 0.95rem;
  font-style: italic;
  font-family: var(--font-display);
  line-height: 1.55;
  color: var(--muted);
}

.events {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  padding: 0.5rem 0 2rem;
}

.event-card {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: left;
  height: 100%;
  min-height: 0;
  border-radius: 0;
  overflow: hidden;
  transform: translateY(12px);
  opacity: 0;
  animation: rise 0.85s var(--ease) both;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
  color: #fff;
  cursor: pointer;
  text-decoration: none;
  background: #111;
}

.event-card__circle {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 0;
  overflow: hidden;
  flex-shrink: 0;
}

.event-card:nth-child(1) {
  animation-delay: 0.18s;
}
.event-card:nth-child(2) {
  animation-delay: 0.28s;
}
.event-card:nth-child(3) {
  animation-delay: 0.38s;
}

.event-card:hover,
.event-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.event-card:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.event-card__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.event-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.7s var(--ease);
}

.event-card:hover .event-card__circle .event-card__media img {
  transform: scale(1.08);
}

.event-card__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.25) 45%, rgba(0, 0, 0, 0.88) 100%);
}

.event-card__body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  width: 100%;
  padding: 1.35rem 1.15rem 1.4rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  pointer-events: none;
  text-align: left;
}

.event-card__actions {
  position: relative;
  z-index: 2;
  pointer-events: auto;
}

.event-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.85rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.65rem;
  border-radius: 0;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.pill--accent {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.event-card h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.2;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.55);
  color: #fff;
}

.event-card__tagline {
  margin: 0.45rem 0 1rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.92rem;
  font-style: italic;
  font-family: var(--font-display);
  line-height: 1.45;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.55);
}

.event-card__actions {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
  justify-content: flex-start;
}

/* Home: one viewport, no scroll */
.page-home {
  height: 100dvh;
  max-height: 100dvh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #fff;
}

.page-home .shell {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.page-home .topbar {
  padding: 0.75rem 0;
  flex-shrink: 0;
}

.page-home .brand-logo {
  height: clamp(72px, 11vh, 100px);
}

.home-intro {
  flex-shrink: 0;
  padding: 0.8rem 0 0.25rem;
  text-align: center;
}

.home-intro h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 400;
  line-height: 1.1;
}

.home-intro p {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: clamp(0.85rem, 1.3vw, 1rem);
  font-style: italic;
  font-family: var(--font-display);
  line-height: 1.4;
}

.page-home .events {
  flex: 1;
  min-height: 0;
  padding: 0.75rem 0 0.85rem;
  gap: 1rem;
  align-items: stretch;
}

.page-home .site-footer {
  flex-shrink: 0;
  padding: 0.75rem 0;
}

.card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 108px;
  padding: 0.7rem 1.15rem;
  border-radius: 0;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.card-btn:hover {
  transform: none;
}

.card-btn--ghost {
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
}

.card-btn--ghost:hover {
  background: #fff;
  color: #000;
}

.card-btn--primary {
  border: 1px solid #cfbc94;
  background: #b79b5f;
  color: #fff;
}

.card-btn--primary:hover {
  background: var(--accent-deep);
  border-color: var(--accent-deep);
}

/* â€”â€”â€” Detail â€”â€”â€” */
.detail-page {
  background: #fff;
}

#event-root {
  position: relative;
  z-index: 1;
  min-height: 100vh;
}

.detail-page-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.detail-page-bg__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.detail-page-bg__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.35) 40%, rgba(0, 0, 0, 0.82) 100%);
}

.detail-hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
}

.section-jump {
  position: absolute;
  left: max(1rem, calc((100% - min(1180px, calc(100% - 2.5rem))) / 2));
  top: 50%;
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  max-height: calc(100vh - 10rem);
  padding: 0.5rem 0;
  transform: translateY(-50%);
  overflow-y: auto;
  scrollbar-width: thin;
}

.section-jump a {
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.35;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.2rem 0 0.2rem 0.85rem;
  border-left: 2px solid rgba(255, 255, 255, 0.22);
  transition: color 0.25s ease, border-color 0.25s ease;
}

.section-jump a:hover,
.section-jump a:focus-visible {
  color: #fff;
  border-left-color: var(--accent);
  outline: none;
}

#programme,
#acts,
#programme-details,
#flipbook,
#gallery {
  scroll-margin-top: 6rem;
}

.content-text {
  max-width: none;
  width: 100%;
}

.content-block .tab-text,
.content-block .programme-intro__text,
.content-block .programme-note__text,
.content-block .act-block__text {
  max-width: none;
}

.back-link {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border-radius: 0;
  /* border: 1px solid #fff; */
  background: transparent;
  color: #aa9366;
  transition: background 0.25s ease, color 0.25s ease;
}

.back-link svg {
  display: block;
}

.back-link:hover {
  background: #fff;
  color: #000;
}

.topbar .back-link,
.detail-top--static .back-link {
  border-color: #000;
  color: #000;
  background: transparent;
}

.topbar .back-link:hover,
.detail-top--static .back-link:hover {
  background: #000;
  color: #fff;
}

.detail-center {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 6rem 1.25rem 5rem;
  animation: rise 0.9s var(--ease) 0.1s both;
}

.detail-center .pill {
  margin-bottom: 1rem;
}

.detail-center h1 {
  margin: 0 auto;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.2rem, 7vw, 4rem);
  letter-spacing: 0;
  line-height: 1.12;
  max-width: 18ch;
  color: #fff;
  text-shadow: 0 12px 40px rgba(0, 0, 0, 0.55);
}

.detail-center .tagline {
  margin: 1rem auto 0;
  max-width: 34ch;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.1rem;
  font-style: italic;
  font-family: var(--font-display);
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
}

.play-btn {
  margin: 2.25rem auto 0;
  width: 110px;
  height: 110px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: transparent;
  color: inherit;
  text-decoration: none;
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.45));
  transition: transform 0.35s var(--ease), filter 0.3s ease;
  animation: pulseGold 2.4s ease-out infinite;
}

.play-btn img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
  filter: none;
}

.play-btn:hover {
  transform: scale(1.06);
  background: transparent;
  border-color: transparent;
  filter: drop-shadow(0 20px 44px rgba(0, 0, 0, 0.55))
    drop-shadow(0 0 18px rgba(212, 175, 55, 0.25));
}

.play-label {
  margin-top: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: #fff;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.scroll-hint {
  position: absolute;
  bottom: 1.6rem;
  left: 50%;
  z-index: 2;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  animation: floatY 2.2s ease-in-out infinite;
}

.detail-body {
  position: relative;
  z-index: 2;
  background: #fff;
  color: var(--text);
  backdrop-filter: none;
  padding: 3rem 0 4.5rem;
  font-family: var(--font-body);
  font-weight: 400;
}

.detail-body .event-intro p,
.detail-body .tab-text,
.detail-body .programme-intro__text,
.detail-body .programme-note__text,
.detail-body .act-block__text,
.detail-body .act-card__text,
.detail-body .profile-card__bio,
.detail-body .credit-list li,
.detail-body .cast-list li,
.detail-body .meta-list li,
.detail-body .meta-list span,
.detail-body .meta-list .cast-list__name,
.detail-body .cast-list span,
.detail-body .cast-list__name {
  font-weight: 300;
}

.event-intro {
  /* border: 1px solid var(--line); */
  /* border-radius: 0; */
  background: #fff;
  /* padding: 1.6rem 1.7rem; */
  margin-bottom: 1.5rem;
  animation: rise 0.8s var(--ease) both;
}

.synopsis-section {
  margin-bottom: 2.5rem;
  animation: rise 0.85s var(--ease) 0.05s both;
}

.act-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}

.act-cards--duo {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.act-card {
  position: relative;
  border: 0;
  border-radius: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #111;
}

.act-card__video {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  aspect-ratio: 3 / 4;
  background: #000;
  cursor: pointer;
  overflow: hidden;
}

.act-card__poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s var(--ease);
}

.act-card__video:hover .act-card__poster {
  transform: scale(1.04);
}

.act-card__play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.28) 45%, rgba(0, 0, 0, 0.86) 100%);
  transition: background 0.3s ease;
  pointer-events: none;
}

.act-card__video:hover .act-card__play {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.35) 45%, rgba(0, 0, 0, 0.9) 100%);
}

.act-card__play img {
  width: 56px;
  height: 56px;
  filter: brightness(0) invert(1);
  transition: transform 0.35s var(--ease);
}

.act-card__video:hover .act-card__play img {
  transform: scale(1.06);
}

.act-card__body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  padding: 1.1rem 1rem 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  width: 100%;
  pointer-events: none;
  text-align: left;
}

.act-card__body h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: #fff;
}

.event-intro p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.02rem;
  font-family: var(--font-body);
  font-weight: 400;
}

.programme-section {
  margin-bottom: 2.5rem;
  animation: rise 0.85s var(--ease) 0.05s both;
}

.programme-intro,
.programme-note {
  margin-bottom: 2rem;
}

.programme-intro__text,
.programme-note__text {
  margin: 0;
  max-width: none;
  width: 100%;
  color: var(--muted);
  line-height: 1.6;
  font-size: 1.12rem;
  font-family: var(--font-body);
  font-weight: 400;
}

.programme-section .tabs {
  margin-top: 0.5rem;
}

.tabs {
  border: 1px solid var(--line);
  border-radius: 0;
  background: #fff;
  overflow: hidden;
  animation: rise 0.85s var(--ease) 0.08s both;
}

.tabs__nav {
  display: flex;
  gap: 0;
  padding: 0;
  overflow-x: auto;
  border-bottom: 1px solid var(--line);
  scrollbar-width: thin;
}

.tabs__btn {
  flex: 0 0 auto;
  padding: 0.9rem 1.15rem;
  border-radius: 0;
  border: 0;
  border-bottom: 2px solid transparent;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.tabs__btn:hover {
  color: var(--text);
  background: transparent;
}

.tabs__btn.is-active {
  color: var(--accent);
  background: transparent;
  border-bottom-color: var(--accent);
}

.tabs__panels {
  padding: 1.5rem 1.6rem 1.7rem;
}

.tabs__panel[hidden] {
  display: none;
}

.tab-text {
  margin: 0;
  max-width: none;
  width: 100%;
  color: var(--muted);
  line-height: 1.75;
  font-size: 1.02rem;
  font-family: var(--font-body);
  font-weight: 400;
}

.tabs--programme:not(.tabs--programme-trio) .tabs__nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.tabs--programme.tabs--programme-trio .tabs__nav {
  display: flex;
  flex-wrap: nowrap;
}

.tabs--programme.tabs--programme-trio .tabs__btn {
  display: flex;
  flex: 1 1 0;
  min-width: 0;
  align-items: center;
  justify-content: center;
  padding-inline: 0.5rem;
}

.tabs--programme.tabs--programme-trio .tabs__label {
  width: 100%;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: clamp(0.68rem, 1.6vw, 0.95rem);
}

.programme-cast {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.5rem, 4vw, 2.5rem);
}

.programme-cast__heading {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.cast-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.cast-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-body);
  font-size: 0.95rem;
}

.cast-list li:last-child {
  border-bottom: 0;
}

.cast-list span {
  color: var(--muted);
}

.cast-list strong,
.cast-list__name {
  color: var(--text);
  font-weight: 400;
  text-align: end;
}

.programme-cast--solo {
  grid-template-columns: minmax(0, 1fr);
  max-width: none;
}

.programme-cast--solo .cast-list li {
  padding: 0.65rem 0;
}

.act-blocks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.act-block {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  background: #fff;
  min-height: 100%;
  overflow: hidden;
}

.act-block__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #111;
}

.act-block__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.act-block__play--media {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  margin: 0;
  padding: 0;
  border: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.35) 100%);
  cursor: pointer;
  transition: background 0.3s ease;
}

.act-block__play--media img {
  width: 56px;
  height: 56px;
  filter: brightness(0) invert(1);
  transition: transform 0.35s var(--ease);
}

.act-block__play--media:hover {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.45) 100%);
}

.act-block__play--media:hover img {
  transform: scale(1.06);
}

.act-block__content {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.act-block__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem 0.85rem;
}

.act-block__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.act-block__play {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.85rem;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.25s ease, color 0.25s ease;
}

.act-block__play img {
  width: 14px;
  height: 14px;
}

.act-block__play:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.act-block__body {
  padding: 1.15rem 1.25rem 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.act-block__text-wrap.is-collapsed .act-block__text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}

.act-block__text {
  margin: 0;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 0.98rem;
  line-height: 1.75;
  font-weight: 400;
}

.act-block__toggle {
  align-self: flex-start;
  margin-top: 0.85rem;
  padding: 0;
  border: 0;
  background: none;
  color: var(--accent);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
}

.act-block__toggle:hover {
  text-decoration: underline;
}

.synopsis-section .section-title {
  margin-bottom: 1.25rem;
}

.profile-card {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}

.profile-card:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.profile-card__name {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.profile-card__role {
  margin: 0.35rem 0 0;
  color: var(--accent);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.profile-card__bio {
  margin: 0.9rem 0 0;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 0.98rem;
  line-height: 1.75;
}

.act-card__text {
  margin: 0.85rem 0 0;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.7;
}

@media (max-width: 960px) {
  .detail-hero {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 100dvh;
    padding-top: 4.5rem;
  }

  .detail-top {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 12;
    padding: 0.65rem 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.35) 70%, transparent 100%);
  }

  .detail-top__inner {
    width: min(1180px, calc(100% - 1.25rem));
  }

  .detail-top .brand-logo {
    height: clamp(48px, 12vw, 64px);
  }

  .section-jump {
    position: relative;
    left: auto;
    top: 15px;
    transform: none;
    flex-shrink: 0;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 0.75rem;
    width: 100%;
    max-width: 100%;
    max-height: none;
    padding: 0.35rem 0 0.65rem;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .section-jump::-webkit-scrollbar {
    display: none;
  }

  .section-jump a {
    flex: 0 0 auto;
    padding: 0.15rem 0 0.35rem;
    border-left: 0;
    border-bottom: 2px solid rgba(255, 255, 255, 0.22);
    white-space: nowrap;
    font-size: 0.62rem;
  }

  .section-jump a:hover,
  .section-jump a:focus-visible {
    border-left-color: transparent;
    border-bottom-color: var(--accent);
  }

  .detail-center {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0.75rem 1rem 3.5rem;
  }

  .detail-center h1 {
    max-width: none;
    font-size: clamp(1.85rem, 7.5vw, 2.75rem);
  }

  .detail-center .tagline {
    max-width: none;
    font-size: 0.98rem;
  }

  html[dir="rtl"] .section-jump {
    left: auto;
    right: auto;
  }

  html[dir="rtl"] .section-jump a {
    border-right: 0;
    text-align: right;
  }

  .page-home {
    display: block;
    height: auto;
    min-height: 100dvh;
    max-height: none;
    overflow: visible;
  }

  .page-home .shell {
    display: block;
    flex: none;
    min-height: 0;
    height: auto;
  }

  .page-home .events {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    width: 100%;
    max-width: 420px;
    margin-inline: auto;
    padding: 0.75rem 0 1.5rem;
    flex: none;
    min-height: 0;
  }

  .page-home .event-card,
  .event-card {
    display: block;
    width: 100%;
    height: auto;
    min-height: 380px;
    aspect-ratio: 3 / 4;
    max-height: 520px;
    max-width: 420px;
    margin-inline: auto;
    opacity: 1;
    transform: none;
    animation: none;
  }

  .events {
    grid-template-columns: 1fr;
    max-width: 520px;
  }

  .act-cards {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .topbar,
  .detail-top {
    gap: 0.5rem;
  }

  .detail-body {
    padding: 2rem 0 3rem;
  }

  .tabs--programme.tabs--programme-trio .tabs__nav {
    overflow-x: auto;
    scrollbar-width: thin;
  }

  .tabs--programme.tabs--programme-trio .tabs__btn {
    flex: 0 0 auto;
    min-width: max-content;
  }
}

@media (max-width: 767px) {
  .act-blocks {
    grid-template-columns: 1fr;
  }

  .programme-cast {
    grid-template-columns: 1fr;
  }

  .cast-list li {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
  }

  .cast-list strong,
  .cast-list__name {
    text-align: start;
  }
}

.gallery-section {
  margin-top: 2.5rem;
  animation: rise 0.85s var(--ease) 0.08s both;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.gallery-item {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 1px solid var(--line);
  background: #eee;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  cursor: zoom-in;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.04);
}

.flipbook-section {
  margin-top: 0;
  margin-bottom: 2.5rem;
  padding: 0;
  animation: rise 0.9s var(--ease) 0.1s both;
}

.flipbook-section__head {
  margin-bottom: 1rem;
}

.playbill-books {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: clamp(2.5rem, 8vw, 5rem);
  flex-wrap: wrap;
  width: 100%;
  padding: 2.5rem 1rem 3.5rem;
}

.playbill-book {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  color: inherit;
  font: inherit;
}

.playbill-book__scene {
  display: block;
  position: relative;
  flex-shrink: 0;
  width: min(226px, 72vw);
  height: min(305px, 101vw);
  min-width: 198px;
  min-height: 288px;
  perspective: 1400px;
}

.playbill-book__model {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transform: rotateY(-22deg);
  transition: transform 0.45s var(--ease);
}

.playbill-book:hover .playbill-book__model,
.playbill-book:focus-visible .playbill-book__model {
  transform: rotateY(-10deg) translateY(-8px);
}

.playbill-book__pages {
  position: absolute;
  top: 3%;
  left: 4%;
  width: 96%;
  height: 94%;
  background: linear-gradient(90deg, #e8e2d6 0%, #f7f3eb 100%);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow:
    6px 0 0 #d8d0c4,
    10px 0 0 #ccc4b8,
    14px 0 0 #c4bbb0;
  transform: translateZ(-12px);
}

.playbill-book__cover {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  transform-origin: left center;
  transition: transform 0.45s var(--ease);
}

.playbill-book:hover .playbill-book__cover {
  transform: rotateY(-12deg);
}

.playbill-book__front {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    inset 0 0 0 1px rgba(0, 0, 0, 0.1),
    8px 10px 28px rgba(0, 0, 0, 0.28);
  transform: translateZ(2px);
}

.playbill-book__photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.playbill-book__front::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.16) 0%, transparent 12%),
    linear-gradient(180deg, transparent 75%, rgba(0, 0, 0, 0.18) 100%);
}

.playbill-book__badge {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  z-index: 2;
  padding: 0.28rem 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(0, 0, 0, 0.55);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
}

.playbill-book__spine {
  position: absolute;
  top: 0;
  left: 0;
  width: 16px;
  height: 100%;
  background: linear-gradient(90deg, #c4baa8, #d0c49a);
  transform: rotateY(-90deg) translateX(-8px);
  transform-origin: left center;
}

.playbill-book__caption {
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.playbill-book--ar .playbill-book__caption {
  font-family: var(--font-ar-body);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  background: rgba(4, 6, 5, 0.9);
  backdrop-filter: blur(10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox__figure {
  margin: 0;
  max-width: min(920px, 100%);
  max-height: min(86vh, 100%);
  display: grid;
  gap: 0.75rem;
  justify-items: center;
}

.lightbox__figure img {
  display: block;
  max-width: 100%;
  max-height: min(78vh, 900px);
  object-fit: contain;
  background: #000;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
}

.lightbox__counter {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
}

.lightbox__close,
.lightbox__nav {
  position: absolute;
  border: 1px solid var(--line);
  background: rgba(10, 15, 13, 0.7);
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
}

.lightbox__close {
  top: 1.25rem;
  right: 1.25rem;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 1.5rem;
  line-height: 1;
}

.lightbox__nav {
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 1.8rem;
  line-height: 1;
}

.lightbox__nav--prev {
  left: 1.25rem;
}

.lightbox__nav--next {
  right: 1.25rem;
}

html[dir="rtl"] .lightbox__close {
  right: auto;
  left: 1.25rem;
}

html[dir="rtl"] .lightbox__nav--prev {
  left: auto;
  right: 1.25rem;
}

html[dir="rtl"] .lightbox__nav--next {
  right: auto;
  left: 1.25rem;
}

.lightbox--flipbook {
  padding: 0.75rem;
}

.lightbox--flipbook .flipbook-lightbox__panel {
  position: relative;
  width: min(1280px, calc(100vw - 1.5rem));
  height: min(calc(100vh - 5rem), 920px);
  min-height: min(72vh, 920px);
  display: flex;
  flex-direction: column;
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
  overflow: hidden;
}

.lightbox--flipbook iframe {
  flex: 1;
  width: 100%;
  min-height: 0;
  border: 0;
  background: #111;
}

.synopsis-list {
  display: grid;
  gap: 1rem;
}

.synopsis-act {
  padding: 1rem 1.1rem;
  border-radius: 0;
  border: 1px solid var(--line);
  background: #fff;
}

.synopsis-act h3 {
  margin: 0 0 0.55rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent);
}

.synopsis-act p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.credit-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.credit-list li {
  padding: 0.75rem 0.9rem;
  border-radius: 0;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--muted);
  font-family: var(--font-body);
  font-weight: 400;
}

.section-title {
  margin: 0 0 1.1rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 400;
  letter-spacing: 0;
}

.player-modal__frame video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background: #000;
  border: 0;
}

.meta-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.85rem;
}

.meta-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-family: var(--font-body);
  font-weight: 400;
}

.meta-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.meta-list span {
  color: #333940;
  font-weight: 400;
}

.meta-list .cast-list__name {
  color: var(--text);
  font-weight: 400;
  text-align: end;
}

.meta-list strong {
  font-weight: 400;
  text-align: right;
}

.player-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  background: rgba(4, 6, 5, 0.82);
  backdrop-filter: blur(10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.player-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.player-modal__frame {
  width: min(960px, 100%);
  aspect-ratio: 16 / 9;
  border-radius: 0;
  overflow: hidden;
  background: #000;
  border: 1px solid var(--line);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
  transform: scale(0.96);
  transition: transform 0.35s var(--ease);
}

.player-modal.is-open .player-modal__frame {
  transform: scale(1);
}

.player-modal__frame iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.player-modal__frame [hidden] {
  display: none !important;
}

.player-modal__close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(10, 15, 13, 0.7);
  display: grid;
  place-items: center;
  font-size: 1.25rem;
}

.error-state {
  min-height: 70vh;
  display: grid;
  place-content: center;
  text-align: center;
  gap: 1rem;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 77, 77, 0.55);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(255, 77, 77, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 77, 77, 0);
  }
}

@keyframes pulseGold {
  0% {
    box-shadow:
      0 0 0 0 rgba(240, 180, 41, 0.4),
      0 18px 40px rgba(0, 0, 0, 0.4);
  }
  70% {
    box-shadow:
      0 0 0 18px rgba(240, 180, 41, 0),
      0 18px 40px rgba(0, 0, 0, 0.4);
  }
  100% {
    box-shadow:
      0 0 0 0 rgba(240, 180, 41, 0),
      0 18px 40px rgba(0, 0, 0, 0.4);
  }
}

@keyframes floatY {
  0%,
  100% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, 6px);
  }
}

@keyframes slowZoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.08);
  }
}

@media (max-width: 640px) {
  .shell,
  .detail-top__inner {
    width: min(1180px, calc(100% - 1.25rem));
  }

  .hero {
    padding-top: 1.5rem;
  }

  .page-home .topbar {
    padding: 0.5rem 0;
  }

  .page-home .brand-logo,
  .topbar .brand-logo {
    height: 52px;
  }

  .page-home .home-intro {
    padding: 0.45rem 0 0.15rem;
  }

  .page-home .home-intro h1 {
    font-size: clamp(1.35rem, 6vw, 1.65rem);
  }

  .page-home .home-intro p {
    font-size: 0.82rem;
  }

  .page-home .event-card,
  .event-card {
    min-height: 340px;
    max-height: 460px;
  }

  .page-home .site-footer {
    padding: 0.55rem 0 0.85rem;
  }

  .lang-select {
    padding: 0.35rem 0.45rem;
    font-size: 0.72rem;
  }

  .theme-toggle {
    width: 38px;
    height: 38px;
  }

  .card-btn {
    min-width: 88px;
    padding: 0.58rem 0.85rem;
    font-size: 0.72rem;
  }

  .detail-hero {
    padding-top: 4rem;
  }

  .detail-center {
    padding-top: 0;
  }

  .detail-center h1 {
    font-size: clamp(1.55rem, 8.5vw, 2.15rem);
  }

  .detail-center .tagline {
    font-size: 0.88rem;
    margin-top: 0.75rem;
  }

  .play-btn {
    width: 88px;
    height: 88px;
    margin-top: 1.5rem;
  }

  .play-label {
    font-size: 0.68rem;
  }

  .scroll-hint {
    bottom: 0.65rem;
    font-size: 0.62rem;
  }

  .section-jump a {
    font-size: 0.58rem;
  }

  .act-block__head {
    flex-wrap: wrap;
    gap: 0.65rem;
  }

  .act-block__play {
    margin-inline-start: auto;
  }

  .playbill-books {
    gap: 1.5rem;
    padding: 1.5rem 0.5rem 2rem;
  }

  .legal-content--warning {
    padding: 1.75rem 0 2.5rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .brand-logo {
    height: 64px;
  }

  .tabs__panels {
    padding: 1.2rem 1rem 1.3rem;
  }

  .player-modal {
    padding: 0.75rem;
  }

  .player-modal__close {
    top: 0.75rem;
    right: 0.75rem;
  }

  .site-footer__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
  }
}

html[dir="ltr"] .detail-center h1,
html[dir="ltr"] .home-intro h1,
html[dir="ltr"] .section-title,
html[dir="ltr"] .event-card h2,
html[dir="ltr"] .act-block__title,
html[dir="ltr"] .act-card__body h3,
html[dir="ltr"] .tabs__label {
  font-family: var(--font-display);
  font-weight: 400;
}

html[dir="ltr"] .detail-center .tagline,
html[dir="ltr"] .event-card__tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
}

html[dir="rtl"] body {
  font-family: var(--font-ar-body);
}

html[dir="rtl"] .section-title,
html[dir="rtl"] .home-intro h1,
html[dir="rtl"] .detail-center h1,
html[dir="rtl"] .detail-center .tagline,
html[dir="rtl"] .tabs__label,
html[dir="rtl"] .event-card__body h2,
html[dir="rtl"] .event-card__tagline,
html[dir="rtl"] .scroll-hint,
html[dir="rtl"] .play-label,
html[dir="rtl"] .detail-kicker,
html[dir="rtl"] .act-block__title,
html[dir="rtl"] .act-card__body h3,
html[dir="rtl"] .programme-cast__heading,
html[dir="rtl"] .profile-card__name {
  font-family: var(--font-ar-display);
}

html[dir="rtl"] .home-intro p,
html[dir="rtl"] .site-footer,
html[dir="rtl"] .lang-select,
html[dir="rtl"] .card-btn,
html[dir="rtl"] .tabs__btn,
html[dir="rtl"] .event-intro p,
html[dir="rtl"] .programme-intro__text,
html[dir="rtl"] .programme-note__text,
html[dir="rtl"] .tab-text,
html[dir="rtl"] .act-block__text,
html[dir="rtl"] .act-block__toggle,
html[dir="rtl"] .act-block__play,
html[dir="rtl"] .cast-list,
html[dir="rtl"] .cast-list span,
html[dir="rtl"] .cast-list strong,
html[dir="rtl"] .cast-list__name,
html[dir="rtl"] .profile-card__role,
html[dir="rtl"] .profile-card__bio,
html[dir="rtl"] .section-jump a {
  font-family: var(--font-ar-body);
}

html[dir="rtl"] .section-jump {
  left: auto;
  right: max(1rem, calc((100% - min(1180px, calc(100% - 2.5rem))) / 2));
}

html[dir="rtl"] .section-jump a {
  padding: 0.2rem 0.85rem 0.2rem 0;
  border-left: 0;
  border-right: 2px solid rgba(255, 255, 255, 0.22);
  text-align: right;
}

html[dir="rtl"] .section-jump a:hover,
html[dir="rtl"] .section-jump a:focus-visible {
  border-left-color: transparent;
  border-right-color: var(--accent);
}

html[dir="rtl"] .detail-body .section-title,
html[dir="rtl"] .detail-body .content-text,
html[dir="rtl"] .detail-body .tab-text,
html[dir="rtl"] .detail-body .programme-intro__text,
html[dir="rtl"] .act-block__head,
html[dir="rtl"] .act-block__body,
html[dir="rtl"] .act-block__title {
  text-align: right;
}

html[dir="rtl"] .detail-center h1,
html[dir="rtl"] .detail-center .tagline,
html[dir="rtl"] .detail-kicker {
  direction: rtl;
}

html[dir="rtl"] .detail-center .tagline {
  font-style: normal;
  font-weight: 400;
}

html[dir="rtl"] .cast-list strong,
html[dir="rtl"] .cast-list__name {
  text-align: start;
}

html[dir="rtl"] .back-link svg {
  transform: scaleX(-1);
}

html[dir="rtl"] .tabs__btn,
html[dir="rtl"] .event-card__body,
html[dir="rtl"] .act-card__body,
html[dir="rtl"] .event-facts {
  text-align: right;
  align-items: flex-end;
}

html[dir="rtl"] .event-card__actions,
html[dir="rtl"] .tabs__btn {
  align-items: flex-end;
}

html[dir="rtl"] .page-home {
  direction: rtl;
}

html[dir="rtl"] .page-home .home-intro,
html[dir="rtl"] .page-home .home-intro h1,
html[dir="rtl"] .page-home .home-intro p {
  direction: rtl;
  text-align: center;
}

html[dir="rtl"] .page-home .home-intro p {
  font-style: normal;
}

html[dir="rtl"] .page-home .event-card {
  text-align: right;
  direction: rtl;
}

html[dir="rtl"] .page-home .event-card__body h2,
html[dir="rtl"] .page-home .event-card__tagline {
  direction: rtl;
  text-align: right;
}

html[dir="rtl"] .page-home .event-card__tagline {
  font-style: normal;
}

html[dir="rtl"] .page-home .event-card__actions {
  direction: rtl;
  justify-content: flex-start;
}

html[dir="rtl"] .page-home .site-footer,
html[dir="rtl"] .page-home .site-footer__inner,
html[dir="rtl"] .page-home .site-footer p,
html[dir="rtl"] .page-home .site-footer a {
  direction: rtl;
  text-align: right;
}
