:root {
  --page-width: 1024px;
  --scale: 1;
  --desktop-max-width: 1920px;
  --hero-radius: 28px;
  --hero-content-max: 1120px;
  --panel-radius: 26px;
  --font-sans:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
  --type-h1: clamp(28px, 3vw, 42px);
  --type-h2: clamp(22px, 2.2vw, 32px);
  --type-h3: clamp(18px, 1.6vw, 24px);
  --type-body: clamp(16px, 1.2vw, 18px);
  --type-meta: clamp(11px, 0.9vw, 13px);
  --lh-heading: 1.22;
  --lh-body: 1.64;
  --ls-heading: 0.018em;
  --section-pad-inline: clamp(16px, 2vw, 28px);
  --section-pad-block: clamp(16px, 2vw, 28px);
  --stack-space: clamp(12px, 1vw, 18px);
  --shell-bg: #1f1f1f;
  --line: rgba(207, 207, 207, 0.72);
  --text: #f0f0f0;
  --muted: #b9b9b9;
  --section-color: #aa1b1d;
  --section-strong: #da0812;
  --section-soft: rgba(170, 27, 29, 0.74);
}

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

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  overflow-x: hidden;
  background: #1f1f1f;
  color: var(--text);
  width: 100%;
  padding: 0;
  font-family: var(--font-sans);
  font-size: var(--type-body);
  line-height: var(--lh-body);
  letter-spacing: 0.008em;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  font-synthesis-weight: none;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2,
h3 {
  font-family: var(--font-sans);
  font-weight: 700;
  line-height: var(--lh-heading);
  letter-spacing: var(--ls-heading);
}

h1 {
  font-size: var(--type-h1);
}

h2 {
  font-size: var(--type-h2);
}

h3 {
  font-size: var(--type-h3);
}

p {
  font-size: var(--type-body);
  line-height: 1.66;
}

body.is-viewport-fitted {
  overflow: hidden;
}

body.is-admin-open {
  overflow: hidden;
}

body.is-map-open {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

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

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

.page-shell {
  min-height: 100vh;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.frame-shell {
  width: 100%;
  max-width: none;
  height: auto;
  margin: 0;
  overflow: hidden;
  position: relative;
}

.site-shell {
  width: 100%;
  max-width: none;
  margin: 0;
  background: var(--shell-bg);
  box-shadow: none;
  transform: none;
  transform-origin: top center;
}

.hero {
  position: relative;
  min-height: 360px;
  border-radius: var(--panel-radius);
  overflow: hidden;
  isolation: isolate;
  background: #1f1f1f;
  box-shadow: inset 0 0 0 2px rgba(10, 12, 18, 0.5);
}

.hero__background,
.hero__overlay {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  overflow: hidden;
}

.hero__background {
  z-index: 0;
  inset: -4%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  border-radius: inherit;
  background-color: #1f1f1f;
  transform: translate3d(-1.05%, -0.72%, 0) scale(1.08);
  transform-origin: center center;
  backface-visibility: hidden;
  will-change: transform;
  animation: hero-background-loop 34s ease-in-out infinite;
}

#hero-bg-a {
  transition: opacity 1.5s ease-in-out;
}

.hero__overlay {
  inset: -3px;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(10, 12, 18, 0.3), rgba(10, 12, 18, 0.3)),
    linear-gradient(90deg, color-mix(in srgb, var(--section-soft) 10%, rgba(8, 10, 16, 0.42)), rgba(8, 10, 16, 0.38));
  backdrop-filter: blur(6px) saturate(1.01);
  -webkit-backdrop-filter: blur(6px) saturate(1.01);
}

.hero__topbar {
  position: relative;
  z-index: 2;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: none;
  margin: 0 auto;
  gap: 0;
  padding: 10px var(--section-pad-inline) 0;
  border-radius: inherit;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.topbar__left,
.topbar__right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.topbar__left,
.main-nav {
  display: none;
}

.topbar__right {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 0;
}

.topbar__logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-height: 0;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  filter: none;
}

.topbar__logo img {
  display: block;
  width: 64px;
  height: auto;
  opacity: 1;
}

.contact-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  padding: 0 12px 0 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.98);
  font-size: var(--type-meta);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 8px 18px rgba(0, 0, 0, 0.12);
}

.contact-chip img,
.footer-contact img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.contact-chip img {
  filter: invert(16%) sepia(95%) saturate(5168%) hue-rotate(350deg)
    brightness(95%) contrast(112%);
  opacity: 0.92;
}

.main-nav {
  display: none;
}

.main-nav__item + .main-nav__item::before {
  content: "";
  position: absolute;
  left: -5px;
  top: 50%;
  width: 1px;
  height: 12px;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.08);
}

.main-nav__item {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 112px;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.085);
  color: rgba(243, 243, 243, 0.98);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-align: center;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.34);
  text-transform: uppercase;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 8px 18px rgba(0, 0, 0, 0.1);
  transition:
    border-color 220ms ease,
    background-color 220ms ease,
    box-shadow 220ms ease,
    filter 220ms ease;
}

.main-nav__item::before,
.main-nav__item:last-child::after {
  content: none;
}

.main-nav__item::before {
  left: 0;
}

.main-nav__item:last-child::after {
  right: 0;
}

.main-nav__item.is-active {
  background: rgba(255, 255, 255, 0.085);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 8px 18px rgba(0, 0, 0, 0.14),
    0 0 14px color-mix(in srgb, currentColor 16%, transparent);
  opacity: 1;
}

.main-nav__item:hover,
.main-nav__item:focus-visible {
  background: color-mix(in srgb, currentColor 12%, rgba(255, 255, 255, 0.055));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 8px 18px rgba(0, 0, 0, 0.12),
    0 0 16px color-mix(in srgb, currentColor 22%, transparent);
  filter: brightness(1.06) saturate(1.04);
  opacity: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  isolation: isolate;
  display: grid;
  justify-items: center;
  width: 100%;
  max-width: none;
  margin: 0;
  padding:
    clamp(18px, 2.1vw, 30px)
    var(--section-pad-inline)
    clamp(22px, 2.5vw, 36px);
  overflow: hidden;
  text-align: center;
  border-radius: inherit;
}

.hero__content::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.hero__logo {
  display: none;
}

.hero__content h1 {
  max-width: var(--hero-title-max, 980px);
  margin: 0 0 var(--stack-space);
  color: rgba(255, 255, 255, 0.99);
  font-size: var(--type-h1);
  font-weight: 720;
  line-height: 1.2;
  letter-spacing: 0.014em;
  text-wrap: balance;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.32);
}

.hero__text {
  display: grid;
  gap: var(--stack-space);
  width: 100%;
  max-width: min(100%, var(--hero-text-max, 1600px));
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
  justify-items: center;
  text-align: center;
  color: rgba(248, 248, 248, 0.98);
  font-size: var(--type-body);
  font-weight: 400;
  line-height: 1.66;
  letter-spacing: 0.01em;
  text-shadow: 0 3px 24px rgba(0, 0, 0, 0.3);
}

.hero__text p {
  display: block;
  width: 100%;
  max-width: min(100%, var(--hero-paragraph-max, 1540px));
  margin: 0 auto;
  font-size: var(--type-body);
  line-height: 1.66;
  letter-spacing: 0.008em;
  text-align: center;
  text-align-last: auto;
  hyphens: none;
  text-wrap: pretty;
}

.hero__text p:first-child {
  width: 100%;
  max-width: min(100%, var(--hero-lead-max, 1480px));
  color: rgba(255, 255, 255, 0.99);
  font-size: clamp(17px, 1.35vw, 20px);
  font-weight: 560;
  line-height: 1.62;
}

.hero__text p:last-child {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .hero__content {
    width: 100%;
    max-width: none;
    padding:
      clamp(22px, 2.4vw, 34px)
      var(--section-pad-inline)
      clamp(26px, 2.8vw, 40px);
  }

  .hero__text {
    max-width: 100%;
    justify-items: stretch;
    padding: 0;
  }

  .hero__text p {
    width: 100%;
    max-width: none;
  }

  .hero__text p:first-child {
    width: 100%;
    max-width: none;
  }
}

.hero__credits {
  position: relative;
  z-index: 2;
  isolation: isolate;
  display: grid;
  gap: 6px;
  width: 100%;
  max-width: none;
  min-height: 0;
  margin: 8px auto 0;
  padding: var(--section-pad-block) var(--section-pad-inline);
  border-radius: var(--panel-radius);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.12),
      rgba(255, 255, 255, 0.03)
    ),
    rgba(10, 14, 20, 0.38);
  color: rgba(232, 232, 232, 0.9);
  font-size: clamp(12px, 0.95vw, 14px);
  line-height: 1.5;
  letter-spacing: 0.008em;
  text-align: left;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.28);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 8px 22px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(12px) saturate(1.02);
  -webkit-backdrop-filter: blur(12px) saturate(1.02);
}

.hero__credits--media {
  grid-column: 1;
  width: 390px;
  max-width: none;
  margin: 0;
  justify-content: flex-start;
  overflow: hidden;
  text-align: left;
  align-self: start;
  justify-self: start;
}

.hero__credit-item {
  display: grid;
  gap: 2px;
  align-items: start;
}

.hero__credit-item span {
  color: rgba(236, 236, 236, 0.86);
  text-wrap: pretty;
}

.hero__credits strong {
  font-style: normal;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.98);
}

.selector-band {
  background: #1f1f1f;
}

.selector-band__inner {
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 12px;
  width: 100%;
  max-width: none;
  margin: 0;
  min-height: 106px;
  padding: clamp(26px, 2.8vw, 38px) var(--section-pad-inline) 10px;
}

.selector-card {
  --lift: 0px;
  --float-delay: 1100ms;
  --entry-x: 0px;
  --card-indicator: var(--card-color, var(--section-strong));
  --card-glow: rgba(255, 255, 255, 0.24);
  --card-label-top: rgba(255, 255, 255, 0.18);
  --card-label-bottom: rgba(30, 30, 30, 0.92);
  --badge-scale: 1;
  position: relative;
  display: grid;
  grid-template-rows: auto auto;
  isolation: isolate;
  width: 95px;
  padding-bottom: 8px;
  color: #f4f4f4;
  opacity: 0;
  filter: saturate(0.92) brightness(0.96);
  transform: translate3d(var(--entry-x), 30px, 0) scale(0.94);
  animation: selector-card-shell 780ms cubic-bezier(0.2, 0.95, 0.28, 1.12)
    forwards;
  animation-delay: var(--delay, 0ms);
  transition: filter 260ms ease;
  will-change: transform, opacity, filter;
}

.selector-card::before {
  content: "";
  position: absolute;
  right: 6px;
  bottom: 4px;
  left: 6px;
  height: 14px;
  border-radius: 999px;
  background: radial-gradient(
    ellipse at center,
    color-mix(in srgb, var(--card-indicator) 62%, rgba(255, 255, 255, 0.22)) 0%,
    color-mix(in srgb, var(--card-indicator) 32%, rgba(255, 255, 255, 0.08)) 34%,
    color-mix(in srgb, var(--card-indicator) 12%, transparent) 58%,
    rgba(255, 255, 255, 0) 78%
  );
  opacity: 0;
  filter: blur(14px);
  transform: scaleX(0.58) translateY(2px);
  transform-origin: center;
  pointer-events: none;
  transition:
    opacity 320ms ease,
    transform 360ms cubic-bezier(0.2, 0.9, 0.25, 1),
    filter 320ms ease;
}

.selector-card__top {
  position: relative;
  display: grid;
  place-items: center;
  height: 87px;
  overflow: hidden;
  border: 1px solid
    color-mix(in srgb, var(--card-color) 44%, rgba(255, 255, 255, 0.18));
  border-radius: 14px 14px 0 0;
  background:
    radial-gradient(
      circle at 50% 10%,
      rgba(255, 255, 255, 0.34) 0%,
      rgba(255, 255, 255, 0.16) 18%,
      rgba(255, 255, 255, 0) 46%
    ),
    linear-gradient(
      180deg,
      color-mix(in srgb, var(--card-color) 82%, rgba(255, 255, 255, 0.22)) 0%,
      color-mix(in srgb, var(--card-color) 64%, rgba(255, 255, 255, 0.08)) 38%,
      color-mix(in srgb, var(--card-color) 54%, rgba(18, 20, 24, 0.22)) 72%,
      color-mix(in srgb, var(--card-color) 50%, rgba(12, 14, 18, 0.12)) 100%
    ),
    rgba(255, 255, 255, 0.05);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.34),
    inset 0 -10px 16px rgba(0, 0, 0, 0.1),
    inset 0 -1px 0 rgba(255, 255, 255, 0.05),
    0 10px 22px color-mix(in srgb, var(--card-color) 18%, transparent),
    0 0 18px color-mix(in srgb, var(--card-color) 10%, transparent);
  backdrop-filter: blur(14px) saturate(1.14);
  -webkit-backdrop-filter: blur(14px) saturate(1.14);
  opacity: 0;
  transform: translateY(12px) scaleY(0.08);
  transform-origin: center bottom;
  animation: selector-card-face 620ms cubic-bezier(0.22, 0.88, 0.24, 1.2)
    forwards;
  animation-delay: calc(var(--delay, 0ms) + 30ms);
  transition:
    box-shadow 280ms ease,
    filter 280ms ease;
}

.selector-card__top::before {
  content: "";
  position: absolute;
  top: -22%;
  bottom: -20%;
  left: -16%;
  width: 52%;
  background: linear-gradient(
    108deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.12) 18%,
    rgba(255, 255, 255, 0.62) 46%,
    rgba(255, 255, 255, 0.2) 66%,
    rgba(255, 255, 255, 0) 100%
  );
  opacity: 0;
  filter: blur(7px);
  mix-blend-mode: screen;
  transform: translate3d(-175%, 0, 0) skewX(-16deg);
}

.selector-card__top::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.26),
      rgba(255, 255, 255, 0.08) 32%,
      rgba(255, 255, 255, 0) 62%
    ),
    radial-gradient(
      circle at 50% 8%,
      rgba(255, 255, 255, 0.34),
      rgba(255, 255, 255, 0) 42%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.18) 0%,
      rgba(255, 255, 255, 0.08) 24%,
      rgba(255, 255, 255, 0.03) 46%,
      rgba(0, 0, 0, 0.03) 100%
    );
  opacity: 1;
}

.selector-card__badge {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
}

.selector-card__badge img {
  width: 68px;
  height: 68px;
  object-fit: contain;
  opacity: 0;
  transform: translateY(6px) scale(calc(var(--badge-scale) * 0.7)) rotate(-8deg);
  transform-origin: center center;
  animation: selector-card-badge 420ms cubic-bezier(0.24, 1, 0.3, 1) forwards;
  animation-delay: calc(var(--delay, 0ms) + 150ms);
}

.selector-card__label {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 22px;
  width: 100%;
  padding: 0 6px;
  box-sizing: border-box;
  overflow: hidden;
  font-size: 8px;
  text-align: center;
  border: 1px solid
    color-mix(in srgb, var(--card-indicator) 22%, rgba(255, 255, 255, 0.08));
  border-top: 0;
  border-radius: 0 0 10px 10px;
  background:
    linear-gradient(
      180deg,
      color-mix(in srgb, var(--card-label-top) 68%, rgba(255, 255, 255, 0.12)) 0%,
      color-mix(in srgb, var(--card-label-bottom) 92%, rgba(18, 20, 24, 0.92)) 100%
    );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 8px 14px rgba(255, 255, 255, 0.03);
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.26);
  text-transform: uppercase;
  backdrop-filter: blur(12px) saturate(1.08);
  -webkit-backdrop-filter: blur(12px) saturate(1.08);
  opacity: 0;
  transform: translateY(8px);
  animation: selector-card-label 260ms ease forwards;
  animation-delay: calc(var(--delay, 0ms) + 250ms);
  transition:
    background 280ms ease,
    box-shadow 280ms ease,
    filter 280ms ease,
    color 240ms ease,
    text-shadow 240ms ease;
}

.selector-card__label-text {
  display: block;
  width: 100%;
  white-space: nowrap;
  text-align: center;
  line-height: 1;
}

.selector-card__label::before {
  content: "";
  position: absolute;
  inset: -22% -28%;
  width: 84%;
  background: linear-gradient(
    104deg,
    rgba(255, 255, 255, 0) 0%,
    color-mix(in srgb, var(--card-indicator) 28%, rgba(255, 255, 255, 0.18)) 18%,
    color-mix(in srgb, var(--card-indicator) 100%, rgba(255, 255, 255, 1)) 50%,
    color-mix(in srgb, var(--card-indicator) 42%, rgba(255, 255, 255, 0.22)) 82%,
    rgba(255, 255, 255, 0) 100%
  );
  opacity: 0;
  filter: blur(15px);
  mix-blend-mode: screen;
  transform: translate3d(-172%, 0, 0) skewX(-18deg);
  pointer-events: none;
}

.selector-card__label::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(
      ellipse at 50% 58%,
      color-mix(in srgb, var(--card-indicator) 34%, rgba(255, 255, 255, 0.18)) 0%,
      color-mix(in srgb, var(--card-indicator) 12%, rgba(255, 255, 255, 0.04)) 42%,
      rgba(255, 255, 255, 0) 78%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.06),
      rgba(255, 255, 255, 0) 42%
    );
  box-shadow:
    inset 0 -1px 0 rgba(0, 0, 0, 0.12),
    inset 0 0 0 1px rgba(255, 255, 255, 0.02);
  opacity: 0.68;
  pointer-events: none;
}

.selector-card.is-active {
  --lift: 0px;
  filter: saturate(1.06) brightness(1.03);
  animation: selector-card-shell 780ms cubic-bezier(0.2, 0.95, 0.28, 1.12)
    forwards;
  animation-delay: var(--delay, 0ms);
}

.selector-card.is-active .selector-card__top {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.38),
    inset 0 -12px 18px rgba(0, 0, 0, 0.12),
    inset 0 -1px 0 rgba(255, 255, 255, 0.06),
    0 10px 20px rgba(0, 0, 0, 0.16),
    0 0 0 1px color-mix(in srgb, var(--card-indicator) 34%, transparent),
    0 0 18px color-mix(in srgb, var(--card-indicator) 26%, transparent),
    0 0 34px color-mix(in srgb, var(--card-indicator) 14%, transparent);
  filter: saturate(1.05) brightness(1.04);
}

.selector-card.is-active .selector-card__label {
  background:
    linear-gradient(
      180deg,
      color-mix(in srgb, var(--card-indicator) 74%, rgba(255, 255, 255, 0.36)),
      color-mix(in srgb, var(--card-indicator) 54%, rgba(255, 255, 255, 0.12))
        38%,
      color-mix(in srgb, var(--card-indicator) 42%, rgba(12, 13, 16, 0.66)) 100%
    ),
    color-mix(in srgb, var(--card-indicator) 26%, rgba(24, 24, 24, 0.26));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    inset 0 10px 18px color-mix(in srgb, var(--card-indicator) 24%, transparent),
    inset 0 0 18px color-mix(in srgb, var(--card-indicator) 18%, transparent),
    0 8px 18px rgba(0, 0, 0, 0.18);
  color: rgba(14, 16, 18, 0.92);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.14);
}

.selector-card.is-active .selector-card__label::before {
  animation: selector-card-sheen 6.4s cubic-bezier(0.18, 0.78, 0.22, 1) infinite;
  animation-delay: calc(var(--delay, 0ms) + var(--float-delay) + 320ms);
  opacity: 1;
}

.selector-card.is-active .selector-card__label::after {
  opacity: 0.92;
  box-shadow:
    inset 0 -1px 0 rgba(0, 0, 0, 0.1),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.selector-card.is-active::before {
  opacity: 0.72;
  filter: blur(16px);
  transform: scaleX(0.88) translateY(1px);
}

.selector-card:hover {
  filter: saturate(1.04) brightness(1.02);
}

.selector-card:hover .selector-card__top,
.selector-card:focus-visible .selector-card__top {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.32),
    inset 0 -10px 16px rgba(0, 0, 0, 0.1),
    inset 0 -1px 0 rgba(255, 255, 255, 0.05),
    0 0 0 1px color-mix(in srgb, var(--card-indicator) 28%, transparent),
    0 0 16px color-mix(in srgb, var(--card-indicator) 18%, transparent),
    0 0 28px color-mix(in srgb, var(--card-indicator) 10%, transparent);
  filter: saturate(1.04) brightness(1.04);
}

.selector-card:hover .selector-card__label,
.selector-card:focus-visible .selector-card__label {
  background:
    linear-gradient(
      180deg,
      color-mix(in srgb, var(--card-indicator) 62%, rgba(255, 255, 255, 0.28)),
      color-mix(in srgb, var(--card-indicator) 42%, rgba(255, 255, 255, 0.1))
        40%,
      color-mix(in srgb, var(--card-indicator) 34%, rgba(12, 13, 16, 0.72)) 100%
    ),
    color-mix(in srgb, var(--card-indicator) 18%, rgba(24, 24, 24, 0.34));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    inset 0 8px 14px color-mix(in srgb, var(--card-indicator) 18%, transparent),
    inset 0 0 14px color-mix(in srgb, var(--card-indicator) 12%, transparent),
    0 8px 18px rgba(0, 0, 0, 0.18);
  color: rgba(18, 20, 22, 0.9);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.12);
}

.selector-card:hover::before,
.selector-card:focus-visible::before {
  opacity: 0.6;
  filter: blur(15px);
  transform: scaleX(0.82) translateY(1px);
}

.selector-card:hover .selector-card__label::before,
.selector-card:focus-visible .selector-card__label::before {
  animation: selector-card-sheen 5.2s cubic-bezier(0.18, 0.78, 0.22, 1) infinite;
  opacity: 0.88;
}

.selector-card:hover .selector-card__label::after,
.selector-card:focus-visible .selector-card__label::after {
  opacity: 0.82;
  box-shadow:
    inset 0 -1px 0 rgba(0, 0, 0, 0.16),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05),
    0 0 14px color-mix(in srgb, var(--card-indicator) 28%, transparent);
}

.media-zone {
  background: #1f1f1f;
  width: 100%;
}

.media-zone__content {
  background: transparent;
  width: 100%;
}

.showcase {
  display: grid;
  gap: 0;
  width: 100%;
  min-height: 248px;
  overflow: hidden;
  border-radius: var(--panel-radius);
  background: transparent;
}

.showcase--single {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 44vw) minmax(0, 1fr);
}

.showcase--double {
  grid-template-columns:
    minmax(0, 0.72fr)
    minmax(320px, 1fr)
    minmax(320px, 1fr)
    minmax(0, 0.72fr);
}

.showcase--quad {
  grid-template-columns:
    minmax(0, 0.72fr)
    repeat(4, minmax(0, 1fr))
    minmax(0, 0.72fr);
}

.showcase__stack {
  display: grid;
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: 0;
  min-height: 0;
  height: 100%;
  background: transparent;
}

.showcase__stack::before,
.showcase__stack::after {
  content: none;
}

.showcase__block {
  background: var(--shade, var(--section-color));
}

.showcase__stack:first-child .showcase__block:first-child {
  border-top-left-radius: 22px;
  border-top-right-radius: 22px;
}

.showcase__stack:first-child .showcase__block:last-child {
  border-bottom-left-radius: 22px;
  border-bottom-right-radius: 22px;
}

.showcase__stack:last-child .showcase__block:first-child {
  border-top-right-radius: 22px;
  border-top-left-radius: 22px;
}

.showcase__stack:last-child .showcase__block:last-child {
  border-bottom-right-radius: 22px;
  border-bottom-left-radius: 22px;
}

.showcase__center {
  background: transparent;
  display: grid;
  place-items: center;
  min-width: 0;
  border-radius: 28px;
  overflow: hidden;
}

.showcase__panel {
  position: relative;
  min-width: 0;
  min-height: 0;
  display: block;
  align-self: center;
  width: 100%;
  padding: 12px;
  border-radius: 28px;
  background: linear-gradient(
    180deg,
    rgba(68, 70, 77, 0.88) 0%,
    rgba(36, 38, 44, 0.94) 44%,
    rgba(21, 22, 27, 0.98) 100%
  );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 -1px 0 rgba(0, 0, 0, 0.42),
    0 20px 34px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.showcase__frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 0;
  display: flex;
  padding: 0;
  background: rgba(11, 12, 15, 0.96);
  overflow: hidden;
  border-radius: 18px;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.03),
    0 16px 32px rgba(0, 0, 0, 0.24);
}

.showcase__center .showcase__panel {
  width: auto;
  max-width: 100%;
  justify-self: center;
}

.showcase--single .showcase__panel {
  padding: 16px;
  border-radius: 30px;
}

.showcase--double .showcase__frame,
.showcase--quad .showcase__frame {
  max-width: none;
}

.showcase--double .showcase__panel,
.showcase--quad .showcase__panel {
  padding: 10px;
  border-radius: 24px;
}

.showcase--double .showcase__frame iframe,
.showcase--double .showcase__frame img,
.showcase--quad .showcase__frame iframe,
.showcase--quad .showcase__frame img {
  border-radius: 12px;
}

.showcase__frame iframe,
.showcase__frame img {
  display: block;
  flex: 1 1 auto;
  width: 100%;
  height: 100%;
  border: 0;
  background: transparent;
  border-radius: 18px;
  box-shadow: none;
  object-fit: cover;
}

@media (max-width: 1180px) {
  .showcase--double {
    grid-template-columns:
      minmax(0, 0.42fr)
      minmax(0, 1fr)
      minmax(0, 1fr)
      minmax(0, 0.42fr);
  }

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

  .showcase--quad .showcase__stack {
    display: none;
  }
}

.site-footer {
  min-height: auto;
  padding: 0;
  background: #1f1f1f;
  position: relative;
}

.site-footer__panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 34vw);
  grid-template-rows: auto 1fr auto;
  width: 100%;
  max-width: none;
  justify-content: space-between;
  align-items: start;
  gap: clamp(18px, 1.6vw, 28px);
  padding:
    clamp(18px, 2vw, 28px)
    var(--section-pad-inline)
    clamp(22px, 2.3vw, 30px);
  border-radius: var(--panel-radius);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.12),
      rgba(255, 255, 255, 0.03)
    ),
    rgba(10, 14, 20, 0.38);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 8px 22px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(12px) saturate(1.02);
  -webkit-backdrop-filter: blur(12px) saturate(1.02);
}

.site-footer__copy {
  position: relative;
  grid-column: 1 / -1;
  width: 100%;
  bottom: auto;
  color: #8e8e8e;
  font-size: clamp(10px, 0.8vw, 12px);
  line-height: 1.45;
  letter-spacing: 0.03em;
  text-align: center;
  transform: none;
  white-space: nowrap;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.orientation-guard {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(7, 10, 16, 0.92);
  backdrop-filter: blur(16px) saturate(1.04);
  -webkit-backdrop-filter: blur(16px) saturate(1.04);
}

.orientation-guard__card {
  display: grid;
  gap: 10px;
  width: min(100%, 320px);
  padding: 22px 18px;
  border-radius: 24px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.12),
      rgba(255, 255, 255, 0.03)
    ),
    rgba(10, 14, 20, 0.56);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 36px rgba(0, 0, 0, 0.28);
  color: rgba(244, 244, 244, 0.96);
  text-align: center;
}

.orientation-guard__card strong {
  font-size: var(--type-h3);
  line-height: 1.24;
  letter-spacing: var(--ls-heading);
}

.orientation-guard__card span {
  color: rgba(232, 232, 232, 0.74);
  font-size: var(--type-body);
  line-height: 1.6;
}

.site-footer__contact {
  width: auto;
  max-width: none;
  justify-self: end;
  align-self: start;
  display: grid;
  gap: 10px;
}

.footer-contact {
  display: grid;
  grid-template-columns: 31px 1fr;
  align-items: center;
  gap: 8px;
  min-height: 26px;
  color: rgba(232, 232, 232, 0.9);
  font-size: clamp(12px, 0.95vw, 14px);
  line-height: 1.42;
  letter-spacing: 0.008em;
  text-decoration: none;
}

.footer-contact span {
  padding-bottom: 0;
}

.footer-contact img {
  filter: saturate(2.4) hue-rotate(-10deg);
}

.site-footer__panel .hero__credits {
  width: auto;
  min-width: 0;
  margin: 0;
  padding: 0;
  border-radius: var(--panel-radius);
  background: none;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.map-overlay {
  position: fixed;
  inset: 0;
  z-index: 9998;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(5, 8, 14, 0.56);
  backdrop-filter: blur(16px) saturate(1.02);
  -webkit-backdrop-filter: blur(16px) saturate(1.02);
}

.map-overlay[hidden] {
  display: none;
}

.map-card {
  position: relative;
  width: min(1160px, 100%);
  padding: 26px;
  border-radius: 28px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.12),
      rgba(255, 255, 255, 0.03)
    ),
    rgba(12, 15, 22, 0.9);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 24px 52px rgba(0, 0, 0, 0.34);
}

.map-card__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
  padding-right: 52px;
}

.map-kicker {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.56);
  font-size: var(--type-meta);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.map-title {
  margin: 0 0 10px;
  color: #fff;
  font-size: var(--type-h2);
  line-height: 1.22;
  letter-spacing: 0.014em;
}

.map-copy {
  margin: 0;
  max-width: 720px;
  color: rgba(236, 236, 236, 0.8);
  font-size: var(--type-body);
  line-height: 1.66;
}

.map-open {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  background: linear-gradient(
    180deg,
    rgba(255, 104, 77, 0.95),
    rgba(199, 40, 23, 0.92)
  );
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 12px 24px rgba(170, 35, 22, 0.28);
}

  font-size: clamp(12px, 0.95vw, 14px);
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  font-size: 28px;
  line-height: 1;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 10px 20px rgba(0, 0, 0, 0.16);
}

.map-frame {
  overflow: hidden;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 16px 34px rgba(0, 0, 0, 0.22);
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: min(66vh, 620px);
  border: 0;
}

.admin-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(5, 8, 14, 0.58);
  backdrop-filter: blur(16px) saturate(1.02);
  -webkit-backdrop-filter: blur(16px) saturate(1.02);
}

.admin-overlay[hidden] {
  display: none;
}

.admin-panel {
  position: relative;
  width: min(1140px, 100%);
  max-height: min(88vh, 920px);
  padding: 28px;
  overflow-x: hidden;
  overflow-y: auto;
  border-radius: 28px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.12),
      rgba(255, 255, 255, 0.03)
    ),
    rgba(12, 15, 22, 0.9);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 22px 48px rgba(0, 0, 0, 0.34);
  scrollbar-width: thin;
  scrollbar-color: rgba(225, 74, 43, 0.75) rgba(255, 255, 255, 0.08);
}

.admin-panel::-webkit-scrollbar {
  width: 12px;
}

.admin-panel::-webkit-scrollbar-track {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.admin-panel::-webkit-scrollbar-thumb {
  border: 2px solid rgba(10, 14, 20, 0.5);
  border-radius: 999px;
  background: linear-gradient(
    180deg,
    rgba(255, 116, 87, 0.92),
    rgba(196, 48, 25, 0.9)
  );
  box-shadow: 0 0 10px rgba(214, 55, 32, 0.22);
}

.admin-overlay[data-mode="login"] .admin-panel {
  width: min(720px, 100%);
  max-height: min(76vh, 680px);
}

.admin-overlay[data-mode="login"] .admin-editor {
  display: none !important;
}

.admin-overlay[data-mode="editor"] .admin-login {
  display: none !important;
}

.admin-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  font-size: 28px;
  line-height: 1;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 10px 20px rgba(0, 0, 0, 0.16);
}

.admin-login {
  display: grid;
  gap: 14px;
  align-content: start;
  padding: 6px 0 2px;
}

.admin-kicker {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.admin-title {
  margin: 0 0 10px;
  color: #fff;
  font-size: 28px;
  line-height: 1.1;
}

.admin-copy {
  margin: 0 0 22px;
  color: rgba(236, 236, 236, 0.78);
  font-size: 14px;
  line-height: 1.5;
}

.admin-form {
  display: grid;
  gap: 14px;
  max-width: 460px;
}

.admin-label {
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.admin-input {
  width: 100%;
  min-height: 50px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  font-size: 14px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 10px 22px rgba(0, 0, 0, 0.08);
}

.admin-input.is-invalid {
  border-color: rgba(255, 95, 95, 0.8);
  box-shadow: 0 0 0 1px rgba(255, 95, 95, 0.5);
}

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

.admin-primary,
.admin-secondary {
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.admin-primary {
  background: linear-gradient(
    180deg,
    rgba(255, 104, 77, 0.95),
    rgba(199, 40, 23, 0.92)
  );
  color: #fff;
  box-shadow: 0 12px 24px rgba(170, 35, 22, 0.28);
}

.admin-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.92);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 10px 22px rgba(0, 0, 0, 0.08);
}

.admin-editor {
  display: grid;
  gap: 18px;
}

.admin-editor__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  padding-right: 40px;
}

.admin-message {
  min-height: 20px;
  margin: 0;
  color: rgba(255, 210, 98, 0.96);
  font-size: 13px;
}

.admin-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}

.admin-card {
  display: grid;
  gap: 10px;
  padding: 16px 16px 18px;
  border-radius: 20px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.08),
      rgba(255, 255, 255, 0.02)
    ),
    rgba(255, 255, 255, 0.03);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 10px 22px rgba(0, 0, 0, 0.18);
}

.admin-card__section {
  margin: 0;
  color: rgba(120, 199, 255, 0.92);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.admin-card__title {
  margin: 0;
  color: #fff;
  font-size: 18px;
  line-height: 1.2;
}

@keyframes hero-background-loop {
  0% {
    transform: translate3d(-1.05%, -0.72%, 0) scale(1.08);
  }

  50% {
    transform: translate3d(0.96%, 0.66%, 0) scale(1.06);
  }

  100% {
    transform: translate3d(-1.05%, -0.72%, 0) scale(1.08);
  }
}

@keyframes selector-card-shell {
  from {
    opacity: 0;
    filter: saturate(0.92) brightness(0.96);
    transform: translate3d(var(--entry-x), 30px, 0) scale(0.94);
  }

  54% {
    opacity: 1;
    filter: saturate(1.08) brightness(1.03);
    transform: translate3d(
        calc(var(--entry-x) * -0.08),
        calc(var(--lift) - 7px),
        0
      )
      scale(1.022);
  }

  78% {
    opacity: 1;
    filter: saturate(1.01) brightness(1.01);
    transform: translate3d(
        calc(var(--entry-x) * 0.03),
        calc(var(--lift) + 2px),
        0
      )
      scale(0.995);
  }

  to {
    opacity: 1;
    filter: saturate(1) brightness(1);
    transform: translate3d(0, var(--lift), 0) scale(1);
  }
}

@keyframes selector-card-face {
  from {
    opacity: 0;
    transform: translateY(12px) scaleY(0.08);
  }

  62% {
    opacity: 1;
    transform: translateY(-3px) scaleY(1.04);
  }

  to {
    opacity: 1;
    transform: translateY(0) scaleY(1);
  }
}

@keyframes selector-card-badge {
  from {
    opacity: 0;
    transform: translateY(6px) scale(calc(var(--badge-scale) * 0.7))
      rotate(-8deg);
  }

  68% {
    opacity: 1;
    transform: translateY(-2px) scale(calc(var(--badge-scale) * 1.05))
      rotate(2deg);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(var(--badge-scale)) rotate(0deg);
  }
}

@keyframes selector-card-label {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes selector-card-idle {
  0%,
  100% {
    transform: translateY(var(--lift)) scale(1);
  }

  50% {
    transform: translateY(calc(var(--lift) - 1.5px)) scale(1.004);
  }
}

@keyframes selector-card-sheen {
  0%,
  22%,
  100% {
    opacity: 0;
    transform: translate3d(-175%, 0, 0) skewX(-16deg);
  }

  30% {
    opacity: 0.32;
  }

  40% {
    opacity: 0.82;
  }

  56% {
    opacity: 0;
    transform: translate3d(250%, 0, 0) skewX(-16deg);
  }
}

@media (max-width: 767px) {
  body {
    background: #1f1f1f;
  }

  body {
    overflow-x: hidden;
  }

  .page-shell {
    min-width: 0;
    padding: 0;
  }

  .frame-shell {
    width: min(100%, var(--page-width));
    height: auto !important;
  }

  .site-shell {
    width: min(100%, var(--page-width));
    transform: none;
    transform-origin: top center;
  }

  .hero {
    min-height: 0;
  }

  .hero__topbar {
    flex-wrap: nowrap;
    gap: 0;
    margin: 8px auto 0;
    padding: 8px;
    border-radius: 18px;
  }

  .topbar__right {
    justify-content: center;
    margin-left: 0;
  }

  .hero__content {
    max-width: 840px;
    padding: 38px 24px 30px;
  }

  .hero__content h1 {
    margin: 18px 0 14px;
    font-size: clamp(32px, 2.9vw, 44px);
    line-height: 1.18;
  }

  .hero__text {
    max-width: 820px;
    font-size: clamp(16px, 1.3vw, 18px);
    line-height: 1.62;
  }

  .hero__text p:first-child {
    font-size: clamp(18px, 1.45vw, 20px);
    line-height: 1.58;
  }

  .hero__credits {
    width: min(100%, 1120px);
    margin-top: 6px;
    padding: 12px 16px;
  }

  .hero__credits--media {
    width: min(100%, 560px);
    margin: 0;
  }

  .selector-band__inner {
    flex-wrap: wrap;
    min-height: 0;
    padding: 24px 14px 16px;
  }

  .showcase {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.764fr) minmax(0, 1fr);
  }

  .showcase__stack {
    grid-template-rows: repeat(3, minmax(72px, 1fr));
    min-height: 0;
  }

  .showcase__center {
    min-width: 0;
    padding: 0;
  }

  .showcase__frame {
    max-width: none;
  }

  .site-footer {
    min-height: 0;
    position: static;
    text-align: center;
  }

  .site-footer__panel {
    grid-template-columns: 1fr;
    width: min(100%, 560px);
    gap: 14px;
  }

  .site-footer__copy {
    position: static;
    left: auto;
    bottom: auto;
    transform: none;
  }

  .site-footer__copy {
    width: 100%;
    text-align: center;
  }

  .site-footer__contact {
    width: min(100%, 560px);
    justify-self: center;
  }

  .site-footer__copy {
    white-space: normal;
  }

  .admin-overlay {
    padding: 16px;
  }

  .admin-panel {
    padding: 20px 16px;
    border-radius: 22px;
  }

  .admin-editor__head {
    align-items: stretch;
    flex-direction: column;
  }

  .admin-actions {
    flex-wrap: wrap;
  }

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

  .map-overlay {
    padding: 16px;
  }

  .map-card {
    padding: 22px 16px 16px;
    border-radius: 24px;
  }

  .map-card__head {
    align-items: stretch;
    flex-direction: column;
    padding-right: 42px;
  }

  .map-title {
    font-size: 24px;
  }
}

@media (max-width: 767px) {
  .hero__topbar,
  .topbar__right {
    justify-content: center;
  }

  .topbar__logo img {
    width: 56px;
  }

  .hero__content {
    max-width: 100%;
    padding: 30px 18px 24px;
  }

  .hero__content h1 {
    margin: 16px 0 12px;
    font-size: clamp(30px, 7.2vw, 40px);
    line-height: 1.2;
  }

  .hero__text {
    gap: 10px;
    padding: 12px 14px;
    font-size: clamp(16px, 4.4vw, 18px);
    line-height: 1.66;
  }

  .hero__text p:first-child {
    font-size: clamp(18px, 5vw, 20px);
    line-height: 1.6;
  }

  .hero__credits {
    margin-top: 5px;
    gap: 7px;
    padding: 11px 12px;
    font-size: 9px;
    line-height: 1.28;
  }

  .hero__credits--media {
    width: calc(100% - 24px);
    margin: 0;
  }

  .showcase {
    grid-template-columns: 1fr;
    gap: 10px;
    min-height: 0;
    background: transparent;
  }

  .showcase__stack {
    display: none;
  }

  .showcase__center {
    border-radius: var(--panel-radius);
    overflow: visible;
  }

  .showcase__panel {
    padding: 10px;
    border-radius: 24px;
  }

  .showcase--single .showcase__panel {
    padding: 10px;
    border-radius: 24px;
  }

  .site-footer {
    padding: 14px 10px 18px;
  }

  .site-footer__panel {
    grid-template-columns: 1fr;
    width: 100%;
    gap: 14px;
    padding: 14px 12px 30px;
    border-radius: 22px;
  }

  .hero__credits {
    gap: 8px;
    padding: 0;
    font-size: 10px;
    line-height: 1.34;
    text-align: center;
  }

  .hero__credits--media {
    width: 100%;
    max-width: 320px;
    display: grid;
    grid-template-columns: repeat(2, minmax(132px, 1fr));
    gap: 10px 12px;
    align-items: start;
    justify-items: center;
    justify-content: center;
    justify-self: center;
  }

  .hero__credit-item {
    width: 100%;
    justify-items: center;
    text-align: center;
  }

  .hero__credit-item:last-child {
    grid-column: 1 / -1;
    width: min(100%, 200px);
    justify-self: center;
  }

  .site-footer__contact {
    width: 100%;
    max-width: 320px;
    justify-self: start;
    gap: 10px;
  }

  .footer-contact {
    grid-template-columns: 28px 1fr;
    align-items: start;
    gap: 8px;
    font-size: 11px;
    line-height: 1.22;
  }

  .map-frame iframe {
    height: min(56vh, 420px);
  }

  .footer-contact span {
    align-self: center;
    padding-bottom: 0;
    text-align: left;
  }

  .site-footer__copy {
    bottom: 8px;
    font-size: 8px;
    white-space: normal;
  }
}

@media (min-width: 768px) and (max-width: 1180px) {
  .site-footer__panel {
    width: 100%;
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
    gap: 16px;
    padding: 12px 14px 26px;
  }

  .hero__credits--media,
  .site-footer__contact {
    width: auto;
    max-width: none;
  }

  .hero__credits {
    font-size: 10.5px;
    line-height: 1.3;
  }

  .footer-contact {
    grid-template-columns: 28px 1fr;
    gap: 8px;
    font-size: 10.5px;
  }
}

@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  .site-footer__panel {
    grid-template-columns: 1fr;
    width: min(100%, 760px);
    gap: 16px;
  }

  .hero__credits--media {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 14px;
  }

  .hero__credit-item:last-child {
    grid-column: 1 / -1;
    justify-self: center;
    width: min(100%, 280px);
  }

  .site-footer__contact {
    width: min(100%, 420px);
    justify-self: center;
  }
}

@media (max-width: 767px) and (orientation: landscape) {
  body {
    overflow: hidden;
  }

  .page-shell {
    visibility: hidden;
  }

  .orientation-guard {
    display: grid;
  }
}

@media (min-width: 768px) and (max-height: 980px) {
  .hero {
    min-height: 330px;
  }

  .hero__content {
    padding: 18px 24px 16px;
  }

  .hero__content h1 {
    margin: 8px 0 10px;
    font-size: clamp(30px, 3vw, 38px);
    line-height: 1.18;
  }

  .hero__text {
    gap: 8px;
    font-size: clamp(16px, 1.35vw, 18px);
    line-height: 1.6;
  }

  .hero__text p:first-child {
    font-size: clamp(18px, 1.5vw, 20px);
    line-height: 1.56;
  }

  .selector-band__inner {
    min-height: 96px;
    padding: 12px 16px 6px;
  }

  .selector-card {
    width: 84px;
    padding-bottom: 6px;
  }

  .selector-card__top {
    height: 82px;
  }

  .selector-card__top img {
    width: 60px;
    height: 60px;
  }

  .selector-card__label {
    min-height: 24px;
    font-size: 10px;
  }

  .showcase {
    min-height: 224px;
  }

  .site-footer {
    min-height: 96px;
    padding: 2px 0 16px;
  }

  .site-footer__panel {
    gap: 12px;
    padding: 8px 12px;
  }

  .hero__credits {
    gap: 4px;
    font-size: 10px;
    line-height: 1.22;
  }

  .hero__credits--media,
  .site-footer__contact {
    width: 372px;
  }

  .footer-contact {
    min-height: 24px;
    font-size: 10px;
  }
}

@media (min-width: 768px) and (max-height: 900px) {
  .hero {
    min-height: 304px;
  }

  .hero__content {
    padding: 14px 22px 12px;
  }

  .hero__content h1 {
    margin: 6px 0 8px;
    font-size: clamp(28px, 2.8vw, 34px);
    line-height: 1.16;
  }

  .hero__text {
    gap: 6px;
    font-size: clamp(16px, 1.3vw, 17px);
    line-height: 1.56;
  }

  .hero__text p:first-child {
    font-size: clamp(18px, 1.45vw, 19px);
    line-height: 1.52;
  }

  .selector-band__inner {
    min-height: 88px;
    padding: 10px 14px 4px;
  }

  .selector-card {
    width: 80px;
  }

  .selector-card__top {
    height: 76px;
  }

  .selector-card__top img {
    width: 56px;
    height: 56px;
  }

  .selector-card__label {
    min-height: 22px;
    font-size: 9px;
  }

  .showcase {
    min-height: 208px;
  }

  .site-footer {
    min-height: 88px;
    padding: 0 0 14px;
  }

  .site-footer__panel {
    padding: 8px 10px;
  }

  .hero__credits {
    font-size: 9px;
    line-height: 1.16;
  }

  .hero__credits--media,
  .site-footer__contact {
    width: 352px;
  }

  .footer-contact {
    min-height: 22px;
    font-size: 9px;
    line-height: 1.1;
  }
}

@media (max-width: 640px) {
  .hero__topbar {
    margin: 8px 10px 0;
    padding: 7px;
  }

  .footer-contact img {
    width: 26px;
    height: 26px;
  }

  .hero__content {
    padding: 18px 16px 18px;
  }

  .hero__content h1 {
    margin: 8px 0 8px;
    font-size: clamp(28px, 8vw, 34px);
    line-height: 1.18;
  }

  .hero__text {
    gap: 9px;
    padding: 10px 12px;
    font-size: clamp(16px, 4.6vw, 17px);
    line-height: 1.62;
  }

  .hero__text p:first-child {
    font-size: clamp(18px, 5.2vw, 19px);
    line-height: 1.58;
  }

  .hero__credits {
    margin-top: 4px;
    gap: 6px;
    padding: 10px;
    font-size: 8px;
    line-height: 1.24;
  }

  .hero__credits--media {
    width: calc(100% - 20px);
    margin: 0;
  }

  .selector-band__inner {
    gap: 10px;
    padding: 18px 10px 14px;
  }

  .selector-card {
    width: 78px;
  }

  .selector-card__top {
    height: 76px;
    border-radius: 12px 12px 0 0;
  }

  .selector-card__top img {
    width: 58px;
    height: 58px;
  }

  .selector-card__label {
    min-height: 24px;
    padding: 0 5px;
    border-radius: 0 0 10px 10px;
    font-size: 8px;
    line-height: 1.15;
  }

  .showcase__stack {
    min-height: 68px;
  }

  .topbar__logo img {
    width: 46px;
  }

  .footer-contact {
    gap: 6px;
    font-size: 10px;
  }

  .footer-contact span {
    padding-bottom: 4px;
  }
}

@media (min-width: 768px) {
  html,
  body,
  .page-shell,
  .frame-shell,
  .site-shell {
    height: 100dvh;
    min-height: 100dvh;
  }

  body {
    overflow: hidden;
  }

  .page-shell,
  .frame-shell {
    overflow: hidden;
  }

  .site-shell {
    display: grid;
    grid-template-rows: auto auto minmax(0, 1fr) auto;
    align-content: stretch;
  }

  .hero {
    min-height: clamp(200px, 27dvh, 300px);
    padding-top: clamp(12px, 1.5vw, 22px);
  }

  .hero__topbar {
    margin-top: 8px;
  }

  .hero__content {
    padding:
      clamp(14px, 1.6vw, 20px)
      var(--section-pad-inline)
      clamp(16px, 1.8vw, 24px);
  }

  .hero__content h1 {
    font-size: var(--type-h1);
    line-height: 1.22;
    margin-bottom: clamp(8px, 0.8vw, 12px);
  }

  .hero__text {
    font-size: var(--type-body);
    line-height: 1.66;
    gap: clamp(6px, 0.7vw, 10px);
  }

  .hero__text p:first-child {
    font-size: clamp(17px, 1.35vw, 20px);
    line-height: 1.62;
  }

  .selector-band {
    overflow: hidden;
  }

  .selector-band__inner {
    min-height: clamp(74px, 9dvh, 92px);
    padding: clamp(24px, 2.6vw, 34px) var(--section-pad-inline) 2px;
  }

  .media-zone {
    min-height: 0;
    overflow: hidden;
    display: grid;
    align-items: start;
  }

  .media-zone__content {
    height: 100%;
    min-height: 0;
    display: grid;
    align-items: stretch;
  }

  .showcase {
    height: 100%;
    min-height: 0;
    align-self: stretch;
    overflow: visible;
  }

  .showcase--single {
    grid-template-columns:
      minmax(0, 1fr)
      minmax(320px, min(38vw, 560px))
      minmax(0, 1fr);
  }

  .showcase--double {
    grid-template-columns:
      minmax(0, 0.82fr)
      minmax(220px, 0.9fr)
      minmax(220px, 0.9fr)
      minmax(0, 0.82fr);
  }

  .showcase--single .showcase__stack,
  .showcase--double .showcase__stack {
    grid-template-rows: repeat(3, minmax(0, 1fr));
    align-self: stretch;
    height: 100%;
  }

  .showcase__center {
    align-self: stretch;
    display: grid;
    place-items: center;
    overflow: visible;
  }

  .showcase__panel {
    padding: clamp(8px, 0.8vw, 10px);
    border-radius: 22px;
  }

  .showcase--single .showcase__panel {
    padding: clamp(8px, 0.8vw, 10px);
    border-radius: 22px;
  }

  .showcase__frame {
    max-height: clamp(170px, 25dvh, 250px);
    border-radius: 14px;
  }

  .showcase--single .showcase__frame {
    width: min(100%, calc(clamp(185px, 29dvh, 285px) * 16 / 9));
    max-height: clamp(185px, 29dvh, 285px);
  }

  .showcase--single .showcase__panel {
    width: min(100%, calc(clamp(185px, 29dvh, 285px) * 16 / 9 + 20px));
    justify-self: center;
  }

  .site-footer__panel {
    width: 100%;
    max-width: none;
    gap: clamp(12px, 1vw, 18px);
    padding:
      clamp(12px, 1.2vw, 18px)
      var(--section-pad-inline)
      clamp(12px, 1.4vw, 18px);
  }

  .hero__credits {
    padding: 0;
    font-size: clamp(11px, 0.8vw, 12px);
    line-height: 1.36;
  }

  .hero__credits--media,
  .site-footer__contact {
    width: auto;
    max-width: none;
  }

  .site-footer__contact {
    justify-self: end;
    gap: 8px;
  }

  .footer-contact {
    font-size: clamp(11px, 0.82vw, 12px);
    line-height: 1.28;
  }

  .site-footer__copy {
    margin-top: 6px;
    padding-top: 8px;
  }
}

@media (min-width: 1600px) and (min-height: 900px) {
  .selector-band__inner {
    gap: 14px;
    min-height: 118px;
    padding: 28px var(--section-pad-inline) 8px;
  }

  .selector-card {
    width: 108px;
    padding-bottom: 10px;
  }

  .selector-card__top {
    height: 98px;
    border-radius: 16px 16px 0 0;
  }

  .selector-card__badge,
  .selector-card__badge img {
    width: 78px;
    height: 78px;
  }

  .selector-card__label {
    min-height: 24px;
    padding: 0 8px;
    font-size: 9px;
  }
}

@media (max-width: 640px) {
  .hero__content h1 {
    font-size: var(--type-h1);
    line-height: 1.22;
  }

  .hero__text {
    font-size: var(--type-body);
    line-height: 1.66;
  }

  .hero__text p:first-child {
    font-size: clamp(17px, 4.2vw, 19px);
    line-height: 1.62;
  }
}

@media (min-width: 768px) and (max-height: 920px) {
  .hero {
    min-height: clamp(170px, 22dvh, 235px);
    padding-top: 14px;
  }

  .hero__content {
    padding: 12px var(--section-pad-inline) 14px;
  }

  .hero__content h1 {
    margin-bottom: 8px;
    font-size: clamp(26px, 2.2vw, 34px);
  }

  .hero__text {
    gap: 6px;
    font-size: clamp(14px, 1vw, 16px);
    line-height: 1.48;
  }

  .hero__text p,
  .hero__text p:first-child {
    font-size: clamp(14px, 1vw, 16px);
    line-height: 1.46;
  }

  .selector-band__inner {
    min-height: 70px;
    padding: 20px var(--section-pad-inline) 0;
  }

  .selector-card {
    width: 84px;
    padding-bottom: 4px;
  }

  .selector-card__top {
    height: 72px;
  }

  .selector-card__badge,
  .selector-card__badge img {
    width: 56px;
    height: 56px;
  }

  .selector-card__label {
    min-height: 20px;
    font-size: 8px;
  }

  .showcase--single {
    grid-template-columns:
      minmax(0, 1fr)
      minmax(220px, min(26vw, 360px))
      minmax(0, 1fr);
  }

  .showcase--double {
    grid-template-columns:
      minmax(0, 0.95fr)
      minmax(180px, 0.84fr)
      minmax(180px, 0.84fr)
      minmax(0, 0.95fr);
  }

  .showcase--single .showcase__stack,
  .showcase--double .showcase__stack {
    grid-template-rows: repeat(3, minmax(0, 1fr));
    align-self: stretch;
    height: 100%;
  }

  .showcase__panel,
  .showcase--single .showcase__panel {
    padding: 6px;
    border-radius: 18px;
  }

  .showcase__panel,
  .showcase--single .showcase__panel,
  .showcase--double .showcase__panel,
  .showcase--quad .showcase__panel {
    display: grid;
    place-items: center;
    border-radius: 10px;
  }

  .showcase__frame {
    width: min(100%, calc(clamp(120px, 18dvh, 180px) * 16 / 9));
    max-height: clamp(120px, 18dvh, 180px);
    margin: 0 auto;
  }

  .showcase--single .showcase__frame {
    width: min(100%, calc(clamp(132px, 19.5dvh, 192px) * 16 / 9));
    max-height: clamp(132px, 19.5dvh, 192px);
  }

  .site-footer__panel {
    gap: 10px;
    padding: 10px var(--section-pad-inline) 12px;
  }

  .hero__credits,
  .hero__credits--inline {
    font-size: 10px;
    line-height: 1.24;
  }

  .site-footer__contact {
    gap: 6px;
  }

  .footer-contact {
    font-size: 10px;
    line-height: 1.18;
  }

  .site-footer__copy {
    margin-top: 4px;
    padding-top: 6px;
    font-size: 9px;
  }
}

@media (min-width: 768px) and (max-height: 780px) {
  .hero {
    min-height: clamp(150px, 20dvh, 200px);
    padding-top: 12px;
  }

  .hero__content {
    padding: 10px var(--section-pad-inline) 12px;
  }

  .hero__content h1 {
    font-size: clamp(24px, 2vw, 30px);
  }

  .hero__text {
    gap: 4px;
  }

  .hero__text p,
  .hero__text p:first-child {
    font-size: clamp(13px, 0.92vw, 15px);
    line-height: 1.38;
  }

  .selector-band__inner {
    min-height: 62px;
    padding: 18px var(--section-pad-inline) 0;
  }

  .selector-card {
    width: 78px;
  }

  .selector-card__top {
    height: 66px;
  }

  .selector-card__badge,
  .selector-card__badge img {
    width: 50px;
    height: 50px;
  }

  .showcase--single {
    grid-template-columns:
      minmax(0, 1fr)
      minmax(200px, min(24vw, 320px))
      minmax(0, 1fr);
  }

  .showcase--single .showcase__stack,
  .showcase--double .showcase__stack {
    grid-template-rows: repeat(3, minmax(0, 1fr));
    align-self: stretch;
    height: 100%;
  }

  .showcase__panel,
  .showcase--single .showcase__panel,
  .showcase--double .showcase__panel,
  .showcase--quad .showcase__panel {
    display: grid;
    place-items: center;
  }

  .showcase__frame {
    width: min(100%, calc(clamp(108px, 16dvh, 154px) * 16 / 9));
    max-height: clamp(108px, 16dvh, 154px);
    margin: 0 auto;
  }

  .showcase--single .showcase__frame {
    width: min(100%, calc(clamp(118px, 17dvh, 166px) * 16 / 9));
    max-height: clamp(118px, 17dvh, 166px);
  }

  .site-footer__panel {
    padding: 8px var(--section-pad-inline) 10px;
  }

  .hero__credits,
  .footer-contact,
  .site-footer__copy {
    font-size: 9px;
  }
}

.site-footer {
  display: grid;
  grid-template-rows: auto auto auto;
}

.site-footer__panel {
  grid-template-columns: 1fr;
  grid-template-rows: auto;
}

.hero__credits--inline {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 6px var(--section-pad-inline) 4px;
  border-radius: var(--panel-radius);
  background: none;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  color: rgba(222, 222, 222, 0.82);
  font-size: clamp(9px, 0.72vw, 11px);
  line-height: 1.28;
  letter-spacing: 0.01em;
  text-align: center;
  text-shadow: none;
  white-space: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
}

.hero__credits--inline::-webkit-scrollbar {
  display: none;
}

.hero__credits--inline .hero__credit-line {
  display: inline-block;
  white-space: nowrap;
}

.hero__credits-track {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
}

.hero__credit-gap {
  display: block;
  width: 28px;
  flex: 0 0 28px;
}

.hero__credits--inline.is-ticker {
  text-align: left;
  overflow: hidden;
}

.hero__credits--inline.is-ticker .hero__credits-track {
  animation: hero-credits-marquee var(--credits-duration, 22s) ease-in-out
    infinite alternate;
}

@media (max-width: 767px) {
  .hero__credits--inline {
    text-align: left;
    padding: 6px 10px 4px;
    overflow: hidden;
  }
}

@keyframes hero-credits-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-1 * var(--credits-shift, 0px)));
  }
}

/* Keep multi-video layouts strictly 16:9 so cards do not look overly wide. */
@media (min-width: 768px) {
  .showcase--single .showcase__center {
    place-items: start center;
  }

  .showcase--single .showcase__panel {
    align-self: start;
  }

  .showcase--double {
    grid-template-columns:
      minmax(0, 1fr)
      max-content
      max-content
      minmax(0, 1fr);
    column-gap: clamp(6px, 0.9vw, 14px);
  }

  .showcase--double .showcase__frame {
    width: min(100%, calc(clamp(184px, 26dvh, 278px) * 16 / 9));
    max-height: clamp(184px, 26dvh, 278px);
    aspect-ratio: 16 / 9;
    height: auto;
    margin: 0 auto;
  }

  .showcase--double .showcase__panel {
    width: min(100%, calc(clamp(184px, 26dvh, 278px) * 16 / 9 + 12px));
  }

  .showcase--double .showcase__panel:nth-child(2) {
    justify-self: end;
  }

  .showcase--double .showcase__panel:nth-child(3) {
    justify-self: start;
  }

  .showcase--quad .showcase__frame {
    width: min(100%, calc(clamp(140px, 20dvh, 208px) * 16 / 9));
    max-height: clamp(140px, 20dvh, 208px);
    aspect-ratio: 16 / 9;
    height: auto;
    margin: 0 auto;
  }

  .showcase--quad .showcase__panel {
    width: min(100%, calc(clamp(140px, 20dvh, 208px) * 16 / 9 + 12px));
    justify-self: center;
  }
}

@media (min-width: 768px) and (max-height: 780px) {
  .showcase--double .showcase__frame {
    width: min(100%, calc(clamp(144px, 19.5dvh, 190px) * 16 / 9));
    max-height: clamp(144px, 19.5dvh, 190px);
  }

  .showcase--double .showcase__panel {
    width: min(100%, calc(clamp(144px, 19.5dvh, 190px) * 16 / 9 + 10px));
  }

  .showcase--quad .showcase__frame {
    width: min(100%, calc(clamp(112px, 16dvh, 156px) * 16 / 9));
    max-height: clamp(112px, 16dvh, 156px);
  }

  .showcase--quad .showcase__panel {
    width: min(100%, calc(clamp(112px, 16dvh, 156px) * 16 / 9 + 10px));
  }
}

@media (min-width: 768px) {
  body.is-viewport-fitted .hero {
    min-height: clamp(140px, 19dvh, 190px);
    padding-top: 14px;
  }

  body.is-viewport-fitted .hero__content {
    padding: 10px var(--section-pad-inline) 12px;
  }

  body.is-viewport-fitted .hero__content h1 {
    margin-bottom: 8px;
    font-size: clamp(24px, 2vw, 30px);
    line-height: 1.16;
  }

  body.is-viewport-fitted .hero__text {
    gap: 4px;
    font-size: clamp(13px, 0.94vw, 15px);
    line-height: 1.4;
  }

  body.is-viewport-fitted .hero__text p,
  body.is-viewport-fitted .hero__text p:first-child {
    font-size: clamp(13px, 0.94vw, 15px);
    line-height: 1.38;
  }

  body.is-viewport-fitted .selector-band__inner {
    min-height: 60px;
    padding: 18px var(--section-pad-inline) 0;
  }

  body.is-viewport-fitted .selector-card {
    width: 78px;
  }

  body.is-viewport-fitted .selector-card__top {
    height: 66px;
  }

  body.is-viewport-fitted .selector-card__badge,
  body.is-viewport-fitted .selector-card__badge img {
    width: 50px;
    height: 50px;
  }

  body.is-viewport-fitted .site-footer__panel {
    gap: 10px;
    padding: 8px var(--section-pad-inline) 10px;
  }

  body.is-viewport-fitted .hero__credits,
  body.is-viewport-fitted .hero__credits--inline,
  body.is-viewport-fitted .footer-contact,
  body.is-viewport-fitted .site-footer__copy {
    font-size: 9px;
    line-height: 1.2;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__background,
  .selector-card,
  .selector-card__top,
  .selector-card__top img,
  .selector-card__label,
  .selector-card.is-active .selector-card__top::before {
    animation: none !important;
  }
}
