:root {
  /* Figma design tokens */
  --bg-black: #000;
  --bg-01: #0D0D0D;
  --bg-02: #0D0B09;
  --bg-hero-tint: #1A140F;
  --panel: #121212;

  --accent: #FDB30C;
  --accent-soft: #ffd04d;

  --text-90: rgba(255, 255, 255, 0.90);
  --text-80: rgba(255, 255, 255, 0.80);
  --text-70: rgba(255, 255, 255, 0.70);
  --text-60: rgba(255, 255, 255, 0.60);
  --text-50: rgba(255, 255, 255, 0.50);
  --text-45: rgba(255, 255, 255, 0.45);
  --text-42: rgba(255, 255, 255, 0.42);
  --text-38: rgba(255, 255, 255, 0.38);
  --text-35: rgba(255, 255, 255, 0.35);
  --text-30: rgba(255, 255, 255, 0.30);
  --text-28: rgba(255, 255, 255, 0.28);
  --text-22: rgba(255, 255, 255, 0.22);
  --text-18: rgba(255, 255, 255, 0.18);
  --text-10: rgba(255, 255, 255, 0.10);
  --text-06: rgba(255, 255, 255, 0.06);
  --text-04: rgba(255, 255, 255, 0.04);

  --font-display: "DIN Next LT Arabic", "DIN Next", "Barlow Condensed", sans-serif;
  --font-body: "Barlow", "Helvetica Neue", sans-serif;
  --font-arabic: "Tajawal", "DIN Next LT Arabic", sans-serif;

  /* Legacy aliases (kept so older rules still resolve) */
  --bg: var(--bg-black);
  --bg-soft: var(--bg-01);
  --text: var(--text-90);
  --muted: var(--text-50);
  --border: var(--text-06);
  --gold: var(--accent);
  --gold-soft: var(--accent-soft);
}

/* Local DIN Next fonts (files in assets/fonts/din-next/) */
@font-face {
  font-family: "DIN Next LT Arabic";
  src: url("../fonts/din-next/din-next-lt-arabic-regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "DIN Next";
  src: url("../fonts/din-next/DINNextW1G-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "DIN Next";
  src: url("../fonts/din-next/DINNextW1G-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "DIN Next";
  src: url("../fonts/din-next/DINNextW1G-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  max-width: 100%;
}

body {
  background: var(--bg-black);
  color: var(--text-90);
  font-family: var(--font-body);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
  max-width: 100%;
  width: 100%;
}

body.nav-open {
  overflow: hidden;
}

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

.small, small {
    font-size: .5em;
}

.newsletter-section,
#about-artist {
  background-color: var(--bg-01);
}

/* ——— SITE HEADER / NAV ——— */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1050;
  background: rgba(0, 0, 0, 0.96);
  outline: 1px solid var(--text-06);
  outline-offset: -1px;
}

.site-nav {
  position: relative;
  height: 76px;
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 0 2.5rem;
}

.site-nav__brand {
  display: inline-flex;
  width: 52px;
  height: 52px;
  flex-shrink: 0;
}

.site-nav__brand img {
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 9999px;
  border: 2px solid rgba(253, 179, 12, 0.35);
  object-fit: contain;
}

.site-nav__mobile-actions {
  display: none;
}

.site-nav__search--mobile {
  display: none;
  width: 40px;
  height: 40px;
  font-size: 1.1rem;
  color: var(--text-70);
}

.site-nav__toggle {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  padding: 0;
  color: var(--text-80);
  cursor: pointer;
  transition: color 0.2s ease;
}

.site-nav__toggle:hover,
.site-nav__toggle:focus-visible {
  color: var(--accent);
}

.site-nav__toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  margin: 3px auto;
  background: currentColor;
  transform-origin: center;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.site-nav__menu {
  display: flex;
  flex: 1;
  align-items: center;
  gap: 2rem;
}

.site-nav__links {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
  min-width: 0;
}

.site-nav__item {
  position: relative;
}

.site-nav__link {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.125em;
  text-transform: uppercase;
  color: var(--text-60);
  padding: 0.25rem 0;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.site-nav__link:hover,
.site-nav__link:focus,
.site-nav__item.show > .site-nav__link {
  color: var(--accent);
}

.site-nav__link[data-bs-toggle="dropdown"]::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  border-top: 3px solid currentColor;
  opacity: 0.7;
  margin-left: 0.15rem;
  transition: transform 0.2s ease;
}

.site-nav__item.show > .site-nav__link[data-bs-toggle="dropdown"]::after {
  transform: rotate(180deg);
}

.site-nav__dropdown.dropdown-menu {
  background: #0F0F0F;
  border: 0;
  outline: 1px solid rgba(255, 255, 255, 0.08);
  outline-offset: -1px;
  border-radius: 0;
  padding: 0;
  margin-top: 0.85rem;
  min-width: 240px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

.site-nav__dropdown .dropdown-item {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0;
  color: var(--text-50);
  padding: 14px 20px;
  text-transform: none;
  white-space: normal;
  transition: color 0.15s ease, background-color 0.15s ease;
}

.site-nav__dropdown .dropdown-item:hover,
.site-nav__dropdown .dropdown-item:focus,
.site-nav__dropdown .dropdown-item.active {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-90);
}

.site-nav__dropdown--events {
  min-width: 280px;
}

.site-nav__dropdown .nav-event {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 20px;
}

.site-nav__dropdown .nav-event__date {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
}

.site-nav__dropdown .nav-event__title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.site-nav__dropdown .dropdown-divider {
  border-color: rgba(255, 255, 255, 0.08);
  margin: 0;
}

.site-nav__dropdown .dropdown-item--all {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--accent);
}

.site-nav__utilities {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.site-nav__utility {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-45);
  background: transparent;
  border: 0;
  padding: 0;
  text-decoration: none;
  transition: color 0.15s ease;
}

.site-nav__search {
  width: 28px;
  height: 28px;
  font-size: 0.95rem;
  cursor: pointer;
  overflow: hidden;
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.2s ease,
              margin 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.site-nav.is-search-active .site-nav__search {
  width: 0;
  opacity: 0;
  margin: 0 -0.375rem 0 0;
  pointer-events: none;
}

.site-nav__search-form {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: 0;
  height: 38px;
  background: #141414;
  outline: 1px solid rgba(255, 255, 255, 0.10);
  outline-offset: -1px;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.25s ease 0.05s;
}

.site-nav.is-search-active .site-nav__search-form {
  width: 260px;
  opacity: 1;
  pointer-events: auto;
}

.site-nav__search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.40);
  font-size: 1rem;
  pointer-events: none;
}

.site-nav__search-input {
  flex: 1;
  height: 100%;
  background: transparent;
  border: 0;
  outline: 0;
  padding: 0 36px 0 39px;
  color: var(--text-90);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.8125rem;
  letter-spacing: 0;
}

.site-nav__search-input::placeholder {
  color: rgba(255, 255, 255, 0.28);
}

.site-nav__search-input::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
}

.site-nav__search-close {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  border: 0;
  background: transparent;
  color: var(--text-45);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}

.site-nav__search-close:hover {
  color: var(--accent);
}

.site-nav__search-form--mobile {
  display: none;
}

.site-nav__lang {
  font-family: var(--font-arabic), "Tajawal", sans-serif;
  font-size: 0.75rem;
  color: var(--text-35);
  padding: 0 0.15rem;
  line-height: 1;
}

.site-nav__utility:hover,
.site-nav__utility:focus {
  color: var(--accent);
}

.site-nav__social {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin: 0 0.25rem;
}

/* Hide social icons in the header below xxl — they collide with the
   centered nav links on mid-size desktops, and they're duplicated in
   the footer and the off-canvas drawer. */
@media (min-width: 992px) and (max-width: 1399.98px) {
  .site-nav__utilities .site-nav__social {
    display: none;
  }
}

.site-nav__social a {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-80);
  font-size: 0.9rem;
  transition: color 0.15s ease;
}

.site-nav__social a:hover,
.site-nav__social a:focus {
  color: var(--accent);
}

@media (max-width: 991.98px) {
  .site-nav {
    padding: 0 1.25rem;
    gap: 1rem;
  }
  .site-nav__mobile-actions {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: auto;
  }
  .site-nav.is-search-active .site-nav__search--mobile {
    visibility: hidden;
  }
  /* Mobile search overlay: when active, the search field takes the full
     nav width; brand + hamburger fade out so the field has the entire
     row and stays usable down to the smallest viewports. */
  .site-nav__search-form--mobile {
    position: absolute;
    top: 50%;
    left: 1.25rem;
    right: 1.25rem;
    transform: translateY(-50%);
    display: inline-flex;
    width: auto;
    height: 40px;
    opacity: 0;
    pointer-events: none;
    z-index: 5;
    transition: opacity 0.25s ease;
  }

  .site-nav.is-search-active .site-nav__brand,
  .site-nav.is-search-active .site-nav__toggle {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
  }

  .site-nav__brand,
  .site-nav__toggle {
    transition: opacity 0.25s ease;
  }

  .site-nav__search-form--mobile .site-nav__search-input {
    font-size: 0.875rem;
    padding: 0 36px 0 38px;
  }

  .site-nav__search-form--mobile .site-nav__search-icon {
    left: 12px;
    font-size: 0.95rem;
  }

  .site-nav__search-form--mobile .site-nav__search-close {
    width: 22px;
    height: 22px;
    font-size: 1.05rem;
    right: 8px;
  }
}

@media (max-width: 991.98px) {
  .site-nav.is-search-active .site-nav__search-form--mobile {
    opacity: 1;
    pointer-events: auto;
  }
  .site-nav__search--mobile {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 0;
    padding: 0;
  }
  .site-nav__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    z-index: 1040;
    margin-left: 0;
  }
  .site-nav__menu {
    position: fixed;
    top: 76px;
    right: 0;
    left: 0;
    bottom: 0;
    background: #141414;
    padding: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    overflow-y: auto;
    display: flex;
    z-index: 1040;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0s linear 0.4s;
  }
  .site-nav__menu.is-open {
    transform: translateX(0);
    visibility: visible;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0s;
  }
  .site-nav__links {
    position: static;
    transform: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
    max-width: 560px;
    margin: 2rem auto 1.5rem;
    padding: 0 1.5rem;
  }
  .site-nav__item {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .site-nav__item:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
  .site-nav__link {
    justify-content: center;
    width: 100%;
    padding: 1.25rem 0;
    font-size: 0.85rem;
    letter-spacing: 0.22em;
    color: var(--text-80);
  }
  .site-nav__link[data-bs-toggle="dropdown"]::after {
    display: none;
  }
  .site-nav__utilities {
    margin: auto auto 2rem;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: stretch;
    gap: 1.5rem;
    width: 100%;
    max-width: 560px;
    padding: 1.5rem 1.5rem 0;
  }
  .site-nav__menu > .site-nav__utilities > .site-nav__search,
  .site-nav__menu > .site-nav__utilities > .site-nav__search-form {
    display: none;
  }
  .site-nav__social {
    order: 1;
    justify-content: center;
    gap: 1.5rem;
    margin: 0;
  }
  .site-nav__lang {
    order: 2;
    align-self: center;
  }
  .site-nav__dropdown.dropdown-menu {
    position: static !important;
    transform: none !important;
    margin: 0;
    min-width: 100%;
    background: transparent;
    outline: 0;
    box-shadow: none;
  }
  .site-nav__dropdown .dropdown-item {
    text-align: center;
    color: var(--text-60);
  }
}

/* ——— HERO ——— */
.hero-section {
  position: relative;
  min-height: calc(100vh - 76px);
  background: var(--bg-01);
  overflow: hidden;
  color: var(--text-90);
}

.hero-carousel {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: var(--bg-hero-tint);
}

.hero-carousel .carousel-inner,
.hero-carousel .carousel-item {
  height: 100%;
}

.hero-slide-backdrop {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: var(--bg-hero-tint);
  opacity: 0.55;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-carousel .carousel-item {
  transition: transform 0.9s ease-in-out;
}

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.95) 0%,
    rgba(0, 0, 0, 0.55) 38%,
    rgba(0, 0, 0, 0.12) 65%,
    rgba(0, 0, 0, 0.40) 100%
  );
}

.hero-slide-content {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 4.5rem 3.5rem 4.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 2rem;
}

.hero-carousel__indicators {
  position: absolute;
  left: 50%;
  bottom: 1.75rem;
  transform: translateX(-50%);
  margin: 0;
  padding: 0;
  display: inline-flex;
  gap: 0.55rem;
  z-index: 3;
}

.hero-carousel__indicators [data-bs-target] {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.30);
  padding: 0;
  opacity: 1;
  cursor: pointer;
  transition: background-color 0.3s ease, width 0.3s ease, border-radius 0.3s ease;
}

.hero-carousel__indicators [data-bs-target]:hover {
  background: rgba(255, 255, 255, 0.55);
}

.hero-carousel__indicators [data-bs-target].active {
  background: var(--accent);
  width: 28px;
  border-radius: 6px;
}

.hero-breadcrumb {
  position: absolute;
  top: 1.75rem;
  left: 3.5rem;
  z-index: 4;
  font-family: var(--font-display);
  font-size: 0.6875rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-35);
  pointer-events: none;
}

.hero-breadcrumb .crumb-current {
  color: var(--accent);
}

/* ——— Event slide (concert / e-sports / special event) ——— */
.hero-event {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
}

.hero-event__kicker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 10px;
  line-height: 1;
  letter-spacing: 3.8px;
  color: var(--accent);
  text-transform: uppercase;
}

.hero-event__rule {
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--accent);
}

.hero-event__title {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--text-90);
  font-size: clamp(2.25rem, 5vw, 62px);
  line-height: 1;
  letter-spacing: 10px;
  margin: 0 -10px 0 0;
  text-transform: uppercase;
  white-space: nowrap;
  text-box-trim: trim-both;
  text-box-edge: cap alphabetic;
}

.hero-event__date {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 14px;
  color: var(--text-80);
  margin: 0;
}

.hero-tabs {
  display: inline-flex;
  gap: 1rem;
}

.hero-tab {
  height: 50px;
  min-width: 207px;
  padding: 0 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.21em;
  text-transform: uppercase;
  text-decoration: none;
  transition: filter 0.2s ease, background-color 0.2s ease;
  border: 0;
  border-radius: 0;
}

.hero-tab--primary {
  background:
    linear-gradient(180deg, rgba(102, 102, 102, 0) 0%, rgba(0, 0, 0, 0.17) 100%),
    var(--accent);
  color: #000;
  letter-spacing: 0.22em;
}

.hero-tab--primary:hover {
  filter: brightness(1.05);
  color: #000;
}

.hero-tab--secondary {
  background: var(--bg-02);
  color: var(--text-70);
  outline: 1px solid var(--text-22);
  outline-offset: -1px;
  letter-spacing: 0.18em;
}

.hero-tab--secondary:hover {
  color: var(--accent);
  outline-color: var(--accent);
}

.hero-title-group {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  margin-top: 2.5rem;
}

.hero-kicker {
  position: absolute;
  top: -34px;
  left: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 16.86px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 6.41px;
  color: var(--accent);
  text-transform: uppercase;
}

.hero-kicker::before {
  content: "";
  display: inline-block;
  width: 54px;
  height: 1.69px;
  background: var(--accent);
}

.hero-eyebrow {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--text-90);
  font-size: clamp(2.25rem, 5vw, 72px);
  line-height: 0.85;
  letter-spacing: -0.06em;
  margin: 0;
  text-transform: uppercase;
  white-space: nowrap;
  text-box-trim: trim-both;
  text-box-edge: cap alphabetic;
}

.hero-headline {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--accent);
  font-size: clamp(2.25rem, 5vw, 72px);
  line-height: 0.85;
  letter-spacing: -0.06em;
  margin: 0.75rem 0 0 0;
  text-transform: uppercase;
  white-space: nowrap;
  text-box-trim: trim-both;
  text-box-edge: cap alphabetic;
  transform-origin: left center;
  transform: scaleX(1.22);
}

.hero-subtitle {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--text-80);
  font-size: 20px;
  letter-spacing: 0.1em;
  line-height: 1.35;
  margin: 1rem 0 0;
}

@media (max-width: 767.98px) {
  .hero-slide-content {
    padding: 3rem 1.5rem 3rem;
  }
  .hero-breadcrumb {
    top: 1.25rem;
    left: 1.5rem;
  }
  .hero-tabs {
    flex-wrap: wrap;
  }
  .hero-tab {
    min-width: 160px;
    padding: 0 1.5rem;
    height: 44px;
    font-size: 0.7rem;
  }
  .hero-title-group {
    margin-top: 1.75rem;
  }
  .hero-kicker {
    top: -22px;
    font-size: 0.7rem;
    letter-spacing: 0.3em;
  }
  .hero-kicker::before {
    width: 28px;
  }
  .hero-eyebrow {
    font-size: clamp(1.5rem, 9vw, 2.25rem);
    line-height: 0.9;
  }
  .hero-headline {
    font-size: clamp(1.5rem, 9vw, 2.25rem);
    line-height: 0.9;
    margin-top: 0.45rem;
    transform: scaleX(1.15);
  }
  .hero-subtitle {
    font-size: 0.875rem;
    letter-spacing: 0.08em;
    margin-top: 0.75rem;
  }
  .hero-event__title {
    font-size: clamp(1.5rem, 8.5vw, 2.25rem);
    letter-spacing: 4px;
    margin-right: -4px;
    white-space: normal;
    line-height: 1.05;
  }
  .hero-event__date {
    font-size: 0.8125rem;
  }
}

/* ——— Shared section helpers ——— */
.text-gold {
  color: var(--accent);
}

.lead-copy,
.newsletter-note,
.footer-bottom,
.footer-contact li {
  color: var(--text-50);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.75;
}

.lead-copy br {
  display: none;
}

.footer-links a {
  color: var(--text-42);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.8125rem;
  line-height: 1.5;
}

.section-title,
.newsletter-title {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.05;
  color: var(--text-90);
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.section-kicker,
.section-highlighted {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  color: var(--accent);
  text-transform: uppercase;
}

.section-kicker::before,
.section-highlighted::before {
  content: "";
  width: 3.25rem;
  height: 2px;
  background: var(--accent);
}

.section-highlighted-light {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  color: var(--text-38);
  text-transform: uppercase;
}

.btn-brand {
  background-color: var(--accent);
  border: 0;
  color: #000;
  font-family: var(--font-display);
  font-size: 12.79px;
  letter-spacing: 2.33px;
  text-transform: uppercase;
  padding: 16.28px 37.2px;
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-brand:hover,
.btn-brand:focus {
  background-color: var(--accent-soft);
  color: #000;
}

.btn-outline-light {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.95rem 2.25rem;
  border-radius: 0;
  color: var(--text-70);
  border-color: var(--text-22);
}

.ticker-strip {
  overflow: hidden;
  background-color: var(--gold);
  color: #111;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ticker-track {
  display: flex;
  gap: 2rem;
  white-space: nowrap;
  padding: 0.85rem 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.28em;
  animation: ticker 28s linear infinite;
}

.ticker-track span::after {
  content: "•";
  margin-left: 2rem;
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-40%);
  }
}

.content-section {
  padding: 7rem 0;
}

.portrait-frame,
.venue-visual {
  position: relative;
  overflow: hidden;
  background-color: #1F1F1F;
}

.portrait-frame {
  aspect-ratio: 270 / 352;
  border-radius: 4.95px;
}

.venue-visual {
  aspect-ratio: 4 / 5.4;
}

.venue-visual::after,
.portrait-frame::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 4rem;
  height: 0.25rem;
  background-color: var(--gold);
}

.mini-badge {
  width: 93px;
  height: 93px;
  border-radius: 50%;
  background: #fff;
  border: 2.33px solid rgba(253, 179, 12, 0.35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.mini-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
}

.section-title {
  font-size: clamp(1.75rem, 3.2vw, 37.2px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.031em;
}

.copy-panel {
  max-width: 54rem;
}


.venue-section .section-highlighted {
  font-size: 12.54px;
  letter-spacing: 3.76px;
}

.venue-section .section-title {
  font-size: clamp(1.75rem, 3.4vw, 40.14px);
  letter-spacing: 0.63px;
  line-height: 1.12;
}

.venue-section .lead-copy {
  font-size: 17.56px;
  line-height: 30.73px;
}

.venue-section .btn-brand {
  font-size: 13.8px;
  letter-spacing: 2.51px;
  padding: 17.56px 40.14px;
}

.stats-row .col {
  min-width: 0;
}

.stat-number {
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.75rem, 2.6vw, 30.11px);
  line-height: 1;
}

.stat-label {
  color: rgba(255, 255, 255, 0.30);
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 11.29px;
  letter-spacing: 2.51px;
  margin-top: 2.51px;
  text-transform: uppercase;
}

.newsletter-section {
  padding: 80px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.newsletter-shell {
  max-width: 64rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.newsletter-section .section-highlighted-light {
  font-size: 10px;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.38);
  gap: 0;
  margin: 0;
}

.newsletter-note {
  max-width: 50rem;
  margin: 0 auto;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.38);
}

.newsletter-title {
  font-size: clamp(2.25rem, 5vw, 50px);
  font-weight: 400;
  line-height: 1;
  margin: 0;
}

.newsletter-form {
  width: 460px;
  max-width: 100%;
  margin-top: 1.25rem;
  outline: 1px solid rgba(255, 255, 255, 0.10);
  outline-offset: -1px;
  --bs-gutter-x: 0;
  flex-wrap: nowrap;
}

.newsletter-form > [class*="col-"]:not(.col-auto) {
  flex: 1 1 auto;
  max-width: none;
}

.newsletter-form .form-control {
  height: 52px;
  min-height: 52px;
  background: transparent;
  border: 0;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 13px;
  padding: 0 18.5px;
}

.newsletter-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.28);
}

.newsletter-form .form-control:focus {
  background: transparent;
  color: var(--text);
  border: 0;
  box-shadow: none;
}

.newsletter-btn {
  width: 60px;
  min-width: 60px;
  height: 52px;
  min-height: 52px;
  padding: 0;
  font-size: 1.2rem;
}

.site-footer {
  padding: 18px 0 28px;
  outline: 1px solid rgba(255, 255, 255, 0.05);
  outline-offset: -1px;
}

.site-footer > .container {
  padding-left: 56px;
  padding-right: 56px;
}

.footer-top {
  padding: 0 10px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-top .brand-mark,
.footer-top .navbar-brand {
  width: 64px;
  height: 64px;
  padding: 0;
}

.footer-top .brand-mark img {
  width: 64px;
  height: 64px;
  background: #fff;
  border-radius: 9999px;
  border: 2px solid rgba(253, 179, 12, 0.35);
  object-fit: contain;
  padding: 6px;
}

.footer-top .icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: #fff;
  font-size: 1.1rem;
  transition: color 0.15s ease;
}

.footer-top .icon-link:hover {
  color: var(--accent);
}

.footer-grid {
  padding: 30px 0;
}

.footer-heading {
  color: #fff;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-item + .footer-item {
  margin-top: 20px;
}

.footer-date {
  display: block;
  color: rgba(255, 255, 255, 0.28);
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.footer-item h3 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 4px;
}

.footer-item a {
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.42);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 13px;
}

.footer-links a:hover,
.footer-links a:focus,
.footer-bottom a:hover {
  color: var(--gold);
}

.footer-links li + li {
  margin-top: 8px;
}

.footer-contact li + li {
  margin-top: 11px;
}

.footer-contact li {
  display: flex;
  gap: 17px;
  align-items: center;
  color: rgba(255, 255, 255, 0.42);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 13px;
  line-height: 1.5;
}

.footer-contact i {
  color: #fff;
  font-size: 13px;
  flex-shrink: 0;
}

/* ——— Footer accordion (mobile) ——— */
.footer-accordion > summary {
  list-style: none;
  cursor: pointer;
}

.footer-accordion > summary::-webkit-details-marker {
  display: none;
}

@media (min-width: 992px) {
  /* On desktop the accordion behaves like a normal column —
     summary is just a heading, content always visible. */
  .footer-accordion > summary {
    cursor: default;
    pointer-events: none;
  }
}

@media (max-width: 991.98px) {
  .footer-grid {
    --bs-gutter-y: 0;
    margin-left: 0;
    margin-right: 0;
    padding: 0;
  }

  .footer-accordion {
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
    padding: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .footer-accordion:last-of-type {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .footer-accordion > summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.15rem 0.25rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    user-select: none;
  }

  .footer-accordion > summary::after {
    content: "\F282"; /* bi-chevron-down */
    font-family: "bootstrap-icons";
    font-size: 0.85rem;
    line-height: 1;
    color: rgba(255, 255, 255, 0.45);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), color 0.2s ease;
  }

  .footer-accordion[open] > summary::after {
    transform: rotate(180deg);
    color: var(--accent);
  }

  .footer-accordion[open] > summary {
    color: #fff;
  }

  .footer-accordion__content {
    padding: 0.25rem 0.25rem 1.5rem;
  }

  .footer-accordion .footer-item + .footer-item {
    margin-top: 14px;
  }
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.18);
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    padding-top: 1.5rem;
  }

  .hero-copy {
    padding-top: 8rem;
  }

  .section-path {
    margin-bottom: 3rem;
  }

  .content-section {
    padding: 5rem 0;
  }

}

@media (max-width: 767.98px) {
  .navbar {
    min-height: 78px;
  }

  .brand-mark {
    width: 50px;
    height: 50px;
    font-size: 0.9rem;
  }

  .display-title {
    font-size: clamp(3.35rem, 18vw, 5rem);
  }

  .hero-description,
  .lead-copy {
    font-size: 1rem;
    line-height: 1.8;
  }

  .section-kicker {
    font-size: 0.95rem;
    letter-spacing: 0.24em;
  }

  .section-kicker::before {
    width: 2.25rem;
  }

  .ticker-track {
    font-size: 0.9rem;
    letter-spacing: 0.18em;
  }

  .newsletter-section {
    padding: 4.5rem 0;
  }

  .newsletter-form .col-auto,
  .newsletter-form .col-md-6,
  .newsletter-form .col-lg-5 {
    width: 100%;
  }

  .newsletter-btn {
    width: 100%;
  }

  .footer-bottom {
    font-size: 0.88rem;
  }
}

/* ——— OFFCANVAS MENU ——— */
.site-offcanvas {
  width: 100%;
  max-width: 420px;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.32) 0%, rgba(10, 10, 10, 0.32) 100%);
  -webkit-backdrop-filter: blur(28px) saturate(140%);
  backdrop-filter: blur(28px) saturate(140%);
  color: var(--text-90);
  border-left: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: -28px 0 60px rgba(0, 0, 0, 0.55);
  overflow: hidden;
}

/* Faint diagonal sheen overlay for depth */
.site-offcanvas::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(255, 255, 255, 0) 45%,
    rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
  z-index: 0;
}

.site-offcanvas > * {
  position: relative;
  z-index: 2;
}

.site-offcanvas__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.75rem 2rem 2rem;
}

.site-offcanvas__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 0.62rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.site-offcanvas__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: -2px;
  padding: 0.35rem 0;
  padding-left: 0.6rem;
  background: transparent;
  border: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.95rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s ease;
}

.site-offcanvas__close:hover,
.site-offcanvas__close:focus-visible {
  color: var(--accent);
}

.site-offcanvas__body {
  padding: 1rem 0 2rem;
  display: flex;
  flex-direction: column;
}

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

.site-offcanvas__links li + li {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.site-offcanvas__link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 2rem;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-90);
  transition: color 0.35s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.site-offcanvas__link i {
  font-size: 0.85rem;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), color 0.35s ease;
}

.site-offcanvas__link:hover,
.site-offcanvas__link:focus-visible {
  color: var(--accent);
  transform: translateX(6px);
}

.site-offcanvas__link:hover i,
.site-offcanvas__link:focus-visible i {
  opacity: 1;
  transform: translateX(0);
  color: var(--accent);
}

@media (max-width: 575.98px) {
  .site-offcanvas {
    max-width: 88vw;
  }
  .site-offcanvas__header,
  .site-offcanvas__link {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .site-offcanvas__link:hover,
  .site-offcanvas__link:focus-visible {
    padding-left: 1.85rem;
  }
}