@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700;800&display=swap');

:root {
  --brand: #a0181a;
  --brand-dark: #750f12;
  --ink: #0f172a;
  --muted: #475569;
  --surface: #ffffff;
  --surface-alt: #f5f5f5;
  --accent: #f59e0b;
  --success: #16a34a;
  --shadow: 0 20px 48px rgba(15, 23, 42, 0.08);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', 'Segoe UI', Roboto, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--surface);
}

a {
  color: var(--brand);
  text-decoration: none;
}

a:hover,
a:focus-visible {
  text-decoration: underline;
}

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

.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  z-index: 200;
  padding: 10px 14px;
  background: var(--ink);
  color: #fff;
  border-radius: 6px;
}

.skip-link:focus {
  left: 10px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  --logo-width: 150px;
}

.topbar {
  transition: background-color 200ms ease, box-shadow 200ms ease;
}



.topbar .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 80px;
  padding: 18px 16px;
  transition: min-height 200ms ease, padding 200ms ease;
}

.logo {
  display: block;
  flex-shrink: 0;
}

.logo img {
  display: block;
  width: var(--logo-width);
  height: auto;
  max-width: 100%;
  transition: width 260ms ease;
}

.nav-toggle {
  display: none;
  border: 1px solid rgba(15, 23, 42, 0.2);
  background: transparent;
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 600;
  color: var(--ink);
  gap: 10px;
  align-items: center;
  line-height: 1;
}

.nav-toggle__icon {
  font-size: 1.25rem;
}

.nav-toggle__label {
  font-size: 15px;
}


.topbar--compact {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 18px 30px rgba(15, 23, 42, 0.08);
  --logo-width: 100px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 0px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__item {
  position: relative;
}

.nav__link,
.nav__button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  border: 0;
  background: transparent;
  padding: 10px 12px;
  border-radius: 10px;
  cursor: pointer;
}

.nav__link:hover,
.nav__link:focus-visible,
.nav__button:hover,
.nav__button:focus-visible {
  background: rgba(15, 23, 42, 0.06);
}

.nav__button {
  width: 100%;
}

.nav__caret {
  font-size: 10px;
  transform: translateY(1px);
}

.nav__item--open > .nav__button {
  background: rgba(15, 23, 42, 0.08);
}

.nav__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  padding: 10px;
  border-radius: 14px;
  background: var(--surface);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  gap: 6px;
}

.nav__item--open > .nav__dropdown {
  display: flex;
}

.nav__dropdown a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  font-weight: 500;
  color: var(--ink);
}

.nav__dropdown a:hover,
.nav__dropdown a:focus-visible {
  background: rgba(15, 23, 42, 0.05);
}

.cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cta .btn {
  white-space: nowrap;
  font-size: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 10px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  border: none;
  color: #fff;
  background: var(--brand);
  transition: transform 120ms ease, box-shadow 120ms ease, background 120ms ease;
}

.btn:hover,
.btn:focus-visible {
  text-decoration: none;
  background: var(--brand-dark);
  box-shadow: 0 10px 24px rgba(160, 24, 26, 0.28);
  transform: translateY(-1px);
}

.btn--line {
  background: transparent;
  color: var(--brand);
  border: 2px solid currentColor;
  box-shadow: none;
}

.btn--line:hover,
.btn--line:focus-visible {
  background: rgba(160, 24, 26, 0.06);
  color: var(--brand-dark);
}

main {
  display: block;
}

h1, h2, h3, h4, h5, h6,
.hero__title,
.section__header h2,
.card__body h3,
.hero__kicker,
.nav__link,
.nav__button {
  font-family: 'Montserrat', 'Inter', 'Segoe UI', sans-serif;
}

h1 {
  font-size: 3.1em;
  line-height: normal;
  padding: 0;
  margin: 15px 0;
}

.hero {
  position: relative;
  padding: 96px 0 88px;
  background: var(--hero-bg, linear-gradient(135deg, rgba(20, 16, 44, 0.95) 0%, rgba(124, 21, 62, 0.88) 55%, rgba(249, 116, 44, 0.7) 100%));
}

.hero-swiper {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-bottom: 56px;
}

.hero-swiper .swiper-wrapper {
  align-items: stretch;
}

.hero-swiper .swiper-slide {
  height: auto;
  position: relative;
}

.hero-swiper .swiper-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  /* background: var(--hero-slide-bg, var(--hero-bg,
    linear-gradient(135deg, rgba(20, 16, 44, 0.95) 0%, rgba(124, 21, 62, 0.88) 55%, rgba(249, 116, 44, 0.7) 100%))); */
  z-index: 0;
}

.hero-swiper .swiper-slide > .wrap {
  position: relative;
  z-index: 1;
}

.hero-swiper__btn {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 46px;
  height: 46px;
  margin-top: -23px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(15, 23, 42, 0.35);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
  transform: translateY(-50%);
}

.hero-swiper__btn::after {
  font-size: 16px;
}

.hero-swiper__btn:hover,
.hero-swiper__btn:focus-visible {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.7);
  transform: translateY(-50%) scale(1.05);
}

.hero-swiper__btn:focus-visible {
  outline: 2px solid rgba(250, 204, 21, 0.8);
  outline-offset: 3px;
}

.hero-swiper__btn--prev {
  left: 20px;
}

.hero-swiper__btn--next {
  right: 20px;
}

.hero-swiper__pagination {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 5;
  align-items: center;
  pointer-events: auto;
}

.hero-swiper__bullet {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.28);
  opacity: 1;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.35);
}

.hero-swiper__bullet--active {
  background: #fff;
  border-color: rgba(255, 255, 255, 0.85);
  transform: scale(1.18);
}

.hero-swiper__bullet:focus-visible {
  outline: 2px solid rgba(250, 204, 21, 0.85);
  outline-offset: 3px;
}

@media (max-width: 768px) {
  .hero-swiper__btn {
    top: auto;
    bottom: 20px;
    transform: none;
    margin-top: 0;
  }

  .hero-swiper__btn:hover,
  .hero-swiper__btn:focus-visible {
    transform: none;
  }

  .hero-swiper__btn--prev {
    left: 16px;
  }

  .hero-swiper__btn--next {
    right: 16px;
  }

  .hero-swiper__pagination {
    bottom: 110px;
  }

  .hero-swiper {
    padding-bottom: 110px;
  }
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.18), transparent 55%),
    linear-gradient(180deg, rgba(11, 15, 34, 0.15) 0%, rgba(11, 15, 34, 0.65) 100%);
  mix-blend-mode: normal;
  opacity: 0.92;
}

.hero__layout {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 40px;
  align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(250, 204, 21, 0.25), rgba(217, 47, 106, 0.35));
  color: #fefce8;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 13px;
}

.hero__title {
  margin: 18px 0 12px;
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  line-height: 1.08;
  font-weight: 800;
  color: #fff;
}

.hero__lead {
  margin: 0 0 24px;
  font-size: 18px;
  color: rgba(241, 245, 249, 0.88);
  max-width: 520px;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.hero .badge {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fefce8;
}

.hero .badge--highlight {
  background: rgba(217, 47, 106, 0.85);
  color: #fff;
  border-color: transparent;
}

.hero .badge--alert {
  background: rgba(253, 186, 116, 0.9);
  color: #422006;
  border-color: transparent;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero .btn {
  background: linear-gradient(135deg, #f97316, #d92f6a);
  border: none;
  box-shadow: 0 18px 30px rgba(217, 47, 106, 0.35);
}

.hero .btn:hover,
.hero .btn:focus-visible {
  background: linear-gradient(135deg, #fb923c, #be1656);
  box-shadow: 0 22px 34px rgba(190, 22, 86, 0.4);
}

.hero .btn--line {
  background: transparent;
  color: #fde68a;
  border-color: rgba(253, 230, 138, 0.75);
  box-shadow: none;
}

.btn__icon {
  display: inline-flex;
  margin-left: 10px;
  align-items: center;
  justify-content: center;
}

.btn__icon svg,
.btn__icon i {
  width: 1.05em;
  height: 1.05em;
  font-size: 1.05em;
  display: inline-block;
}

.list-icon i {
  font-size: 1.1em;
}

.btn--line .btn__icon {
  margin-left: 8px;
}

.hero .btn--line:hover,
.hero .btn--line:focus-visible {
  background: rgba(253, 230, 138, 0.15);
  color: #fff7d6;
  border-color: rgba(254, 249, 195, 0.9);
}

.hero__spotlight {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 750px;
  aspect-ratio: 15 / 20;
  border-radius: 28px;
  overflow: hidden;
  margin: 0 auto;
  background-color: #0f172a;
  box-shadow: 0 24px 40px rgba(15, 23, 42, 0.4);
}

.hero__spotlight img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero__media {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero__media img {
  display: block;
}

.hero__media-note {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(15, 23, 42, 0.72);
  color: #fff;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
}


.vip-card {
  padding: 28px;
  border-radius: 28px;
  display: grid;
  gap: 18px;
}

.vip-card__kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(15, 23, 42, 0.72);
}

.vip-card__kicker i {
  color: var(--accent);
}

.vip-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.vip-card__list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: flex-start;
}

.vip-card__list strong {
  display: block;
}

.vip-card__list a {
  color: var(--brand);
  font-weight: 700;
}

.vip-card .vip-card__notice {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  background: transparent;
  border-color: rgba(148, 163, 184, 0.4);
  color: rgba(15, 23, 42, 0.82);
}

.vip-card .vip-card__notice i {
  margin-top: 2px;
}

.vip-card__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

@media (max-width: 1024px) {
  .vip-card {
    padding: 24px;
  }
}

@media (max-width: 768px) {
  .vip-card__cta {
    flex-direction: column;
  }

  .vip-card {
    padding: 22px;
  }
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  background: rgba(15, 23, 42, 0.08);
  color: var(--ink);
}

.badge--highlight {
  background: var(--success);
  color: #fff;
}

.badge--alert {
  background: var(--accent);
  color: #2b1d02;
}

.section {
  position: relative;
  padding: 68px 0;
}

.section--muted {
  background: var(--surface-alt);
}

.section__header {
  margin-bottom: 28px;
}

.section__header h2 {
  margin: 0;
  font-weight: 800;
  font-size: 32px;
  line-height: 1.2;
}

.section__header p {
  margin: 10px 0 0;
  font-size: 18px;
  color: var(--muted);
}

.grid-2 {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

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

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

.breadcrumb {
  position: absolute;
  top: 22px;
  left: 0;
  width: 100%;
  padding: 0;
  margin: 0;
  background: transparent;
  border: 0;
  pointer-events: none;
  z-index: 40;
}

.breadcrumb .wrap {
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
  justify-content: flex-start;
}

.breadcrumb__list {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 8px 16px;
  border-radius: 999px;
  backdrop-filter: blur(10px);
  background: rgba(15, 23, 42, 0.08);
  pointer-events: auto;
  color: #ffffff;
  mix-blend-mode: difference;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.45);
}

.breadcrumb__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.breadcrumb__separator {
  opacity: 0.65;
}

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

.breadcrumb a:hover,
.breadcrumb a:focus-visible {
  text-decoration: underline;
}

.breadcrumb [aria-current='page'] {
  color: inherit;
}

@supports not (backdrop-filter: blur(10px)) {
  .breadcrumb__list {
    background: rgba(15, 23, 42, 0.6);
  }
}

@media (max-width: 960px) {
  .cards.cards--three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .cards.cards--three {
    grid-template-columns: 1fr;
  }
  .cards.cards--two {
    grid-template-columns: 1fr;
  }
  .breadcrumb {
    top: 16px;
  }
  .breadcrumb__list {
    padding: 6px 12px;
    gap: 6px;
    font-size: 11px;
  }
  .breadcrumb .wrap {
    flex-wrap: wrap;
    gap: 6px;
  }
}

.cards.cards--three .card__body {
  flex: 1;
}

.cards.cards--three .card__body .btn {
  margin-top: auto;
  align-self: flex-start;
}

body.has-modal-open {
  overflow: hidden;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 210;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(15, 23, 42, 0.7);
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease;
}

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

.modal__dialog {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  width: auto;
  max-width: min(960px, calc(100vw - 48px));
  max-height: 90vh;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.3);
  background: #000;
}

.modal__content {
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 90vh;
  margin: 0;
  padding: 0;
}

.modal__content img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 90vh;
  height: auto;
}

.modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.85);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  transition: transform 140ms ease, background 140ms ease;
}

.modal__close:hover,
.modal__close:focus-visible {
  background: var(--brand);
  transform: scale(1.05);
}

@media (max-width: 600px) {
  .modal {
    padding: 16px;
  }

  .modal__dialog {
    max-width: calc(100vw - 32px);
  }

  .modal__close {
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
  }
}

.shows-swiper {
  position: relative;
  padding: 12px 0 52px;
}

.shows-swiper .swiper-wrapper {
  align-items: stretch;
}

.shows-swiper .swiper-slide {
  height: auto;
  display: flex;
}

.shows-swiper .card {
  width: 100%;
  height: 100%;
}

.shows-swiper__btn {
  position: absolute;
  top: 50%;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: #fff;
  color: var(--brand);
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
  transform: translateY(-50%);
}

.shows-swiper__btn::after {
  font-size: 16px;
}

.shows-swiper__btn:hover,
.shows-swiper__btn:focus-visible {
  background: var(--brand);
  color: #fff;
  transform: translateY(-50%) scale(1.04);
}

.shows-swiper__btn--prev {
  left: -18px;
}

.shows-swiper__btn--next {
  right: -18px;
}

.shows-swiper__pagination {
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
}

.shows-swiper__pagination .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  background: rgba(15, 23, 42, 0.3);
  opacity: 1;
}

.shows-swiper__pagination .swiper-pagination-bullet-active {
  background: var(--brand);
}

@media (max-width: 1200px) {
  .shows-swiper__btn--prev {
    left: -6px;
  }

  .shows-swiper__btn--next {
    right: -6px;
  }
}

@media (max-width: 1260px) {
  .topbar .wrap {
    gap: 12px;
  }

  .cta {
    gap: 8px;
  }

  .cta .btn {
    padding: 8px 14px;
    font-size: 14px;
  }

  .cta .btn .btn__icon {
    margin-left: 4px;
  }

}

@media (max-width: 1024px) {
  .shows-swiper__btn {
    display: none;
  }

  .shows-swiper {
    padding-bottom: 40px;
  }
}
.card {
  border-radius: 10px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: var(--surface);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.card__cover {
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, rgba(160, 24, 26, 0.88), rgba(245, 158, 11, 0.88));
  margin: 0;
  overflow: hidden;
  display: block;
  width: 100%;
}

.card__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card__cover--photo {
  background: #000;
}

.card--show {
  position: relative;
}

.card__body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.card__body span {
  font-size: 15px;
}

.card__meta {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}

.card__body h3 {
  margin: 0 0 10px;
  font-size: 20px;
}

.card__body ul,
.card__body ol {
  margin: 10px 0 0;
  padding-left: 20px;
}

.card__body ul li,
.card__body ol li {
  margin-bottom: 6px;
}

.notice {
  padding: 16px 18px;
  border-radius: 16px;
  background: #fef3c7;
  color: #7c2d12;
  border: 1px solid rgba(245, 158, 11, 0.4);
  font-size: 15px;
}

.list-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  color: var(--brand);
}

.list-icon svg,
.list-icon i {
  width: 1.1em;
  height: 1.1em;
  font-size: 1.1em;
  display: inline-block;
}

.tabs {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 0 0 20px;
}

.tab {
  border: 1px solid rgba(15, 23, 42, 0.18);
  border-radius: 999px;
  background: #fff;
  padding: 8px 16px;
  font-weight: 600;
  cursor: pointer;
}

.tab[aria-selected='true'] {
  background: var(--brand);
  border-color: transparent;
  color: #fff;
}

.hidden {
  display: none !important;
}

.tab:focus-visible {
  outline: 2px solid rgba(160, 24, 26, 0.5);
  outline-offset: 2px;
}

.table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.table th,
.table td {
  padding: 12px 14px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  vertical-align: top;
  background: #fff;
}

.table th {
  text-align: left;
  font-size: 13px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--muted);
  background: rgba(148, 163, 184, 0.1);
}

.table td em {
  color: var(--muted);
}

.list-inline {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.list-inline li {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.06);
  font-weight: 500;
}

.list-inline--light li {
  background: rgba(255, 255, 255, 0.15);
  }

.footer {
  background: #0f172a;
  color: rgba(226, 232, 240, 0.82);
  padding: 40px 0;
  margin-top: 0px;
}

.footer .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__brand {
  font-weight: 700;
  font-size: 16px;
  flex: 1 1 240px;
}

.footer__credit {
  font-size: 14px;
  flex: 0 0 auto;
  text-align: right;
}

.footer__credit a {
  color: rgba(254, 215, 170, 0.95);
  font-weight: 600;
}

.footer__credit a:hover,
.footer__credit a:focus-visible {
  text-decoration: underline;
}

.footer a {
  color: inherit;
}

@media (max-width: 768px) {
  .footer .wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer__credit {
    text-align: left;
    margin-top: 4px;
  }
}


.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
    display: grid;
  place-items: center;
  box-shadow: 0 18px 35px rgba(15, 23, 42, 0.35);
  border: 1px solid rgba(148, 163, 184, 0.2);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px) scale(0.9);
  transition: opacity 180ms ease, transform 220ms ease;
  z-index: 120;
  color:#FFF;
}

.back-to-top svg {
  width: 22px;
  height: 22px;
  transition: transform 220ms ease;
}

.back-to-top:focus-visible,
.back-to-top:hover {
  background: var(--brand);
  color: #fff;
}

.back-to-top:hover svg,
.back-to-top:focus-visible svg {
  transform: rotate(-180deg) scale(1.05);
}

.back-to-top--visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}
.map-frame {
  width: 100%;
  border: 0;
  border-radius: 20px;
  height: 320px;
  box-shadow: 0 12px 35px rgba(15, 23, 42, 0.18);
}

@media (min-width: 768px) {
  .hero__spotlight {
    max-width: 450px;
  }
}

@media (max-width: 1024px) {
  .topbar .wrap {
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav {
    width: 100%;
    order: 3;
    flex-direction: column;
    align-items: flex-start;
    display: none;
  }

  .nav--open {
    display: flex;
  }

  .nav__list {
    width: 100%;
    flex-direction: column;
    gap: 4px;
  }

  .nav__button,
  .nav__link {
    width: 100%;
    justify-content: space-between;
  }

  .nav__dropdown {
    position: relative;
    top: 0;
    left: 0;
    margin-top: 8px;
    width: 100%;
    box-shadow: none;
  }

  .cta {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    display: none;
  }

  .cta.cta--visible {
    display: flex;
  }

  .hero {
    padding: 88px 0 72px;
  }

  .grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 72px 0 60px;
  }

  .hero__layout {
    grid-template-columns: 1fr;
  }

  .hero__spotlight {
    max-width: min(100%, 420px);
  }

  .cta {
    gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
