:root {
  color-scheme: dark;
  --bg-main: #111111;
  --bg-soft: #1a1a1a;
  --bg-panel: #1f1f1f;
  --bg-panel-2: #171717;
  --text-main: #f7f7f7;
  --text-muted: #c2c2c2;
  --text-dim: #8a8a8a;
  --brand-red: #cb292b;
  --brand-blue: #3aa0ff;
  --accent: var(--brand-red);
  --accent-2: var(--brand-red);
  --line: rgba(255, 255, 255, 0.12);
  --radius: 18px;
  --radius-soft: 14px;
  --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.35);
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
  --speed-fast: 160ms;
  --speed-med: 320ms;
  --speed-slow: 600ms;
  --reveal-duration: 520ms;
  --reveal-blur: 3px;
  --reveal-distance: 26px;
  --reveal-scale: 0.98;
}

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

html {
  background: var(--bg-main);
  scroll-behavior: smooth;
}

body {
  font-family: "Space Grotesk", sans-serif;
  color: var(--text-main);
  line-height: 1.6;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
  background: #111111;
}

img,
video {
  display: block;
  width: 100%;
  height: auto;
}

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

h1,
h2,
h3,
h4 {
  font-weight: 600;
  letter-spacing: 0.01em;
  margin: 0;
  color: var(--text-main);
}

h1 {
  font-size: clamp(32px, 6vw, 56px);
  line-height: 1.05;
}

h2 {
  font-size: clamp(26px, 4vw, 40px);
  line-height: 1.12;
}

h3 {
  font-size: 22px;
  line-height: 1.16;
}

.container {
  width: min(1240px, 92vw);
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

section {
  scroll-margin-top: 96px;
}

.section {
  padding: 64px 0;
}

.section-emphasis {
  background: #141414;
}

#contact.section,
#contacts.section {
  padding-top: 40px;
}

.section + #contact.section,
.section + #contacts.section {
  padding-top: 32px;
}

#contact .section-head,
#contacts .section-head {
  margin-bottom: 16px;
}

@supports (content-visibility: auto) {
  .section {
    content-visibility: auto;
    contain-intrinsic-size: 800px;
  }

  .site-footer {
    content-visibility: auto;
    contain-intrinsic-size: 240px;
  }
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 12px;
}

.subtitle,
.muted {
  color: var(--text-muted);
  max-width: 65ch;
}

.section-head {
  display: grid;
  gap: 8px;
  margin-bottom: 28px;
}

.mode-label {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(180deg, #0f0f0f, #1a1a1a);
  backdrop-filter: none;
  border-bottom: 1px solid #2b2b2b;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0;
  height: 80px;
}

.site-header .container {
  width: 100%;
  margin: 0;
  padding-inline: max((100vw - 1240px) / 2, 12px);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  height: 100%;
  width: 200px;
  font-size: 28px;
  margin-left: -12px;
}

.logo-mark {
  height: 100%;
  width: 100%;
  background-image: url("assets/images/header.png");
  background-size: cover;
  background-position: left center;
  background-repeat: no-repeat;
}

.logo-text {
  display: none;
}

.nav {
  display: flex;
  gap: 18px;
}

.nav a {
  color: var(--text-dim);
  position: relative;
  transition: color var(--speed-fast) var(--ease-out);
}

.nav a:hover {
  color: var(--brand-red);
}

.nav a:not(.nav-link)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  opacity: 0.85;
  transition: transform var(--speed-fast) var(--ease-out);
}

@media (hover: hover) {
  .nav a:not(.nav-link):hover::after,
  .nav a:not(.nav-link):focus-visible::after {
    transform: scaleX(1);
  }
}

.nav-switch {
  gap: 0;
  padding: 6px;
  background: #151515;
  border: 1px solid #242424;
  border-radius: 16px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.35);
}

.nav-switch .nav-divider {
  width: 1px;
  height: 42px;
  margin: 0 6px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.02));
  border-radius: 999px;
}

.nav-link {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 10px 14px;
  min-width: 160px;
  border-radius: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 12px;
  line-height: 1.2;
  border: 1px solid transparent;
  transition: background var(--speed-med) var(--ease-out), border-color var(--speed-fast) var(--ease-out), color var(--speed-fast) var(--ease-out), box-shadow var(--speed-med) var(--ease-out), transform var(--speed-med) var(--ease-out);
}

.nav-link__title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-dim);
}

.nav-link__title::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--brand-red);
  opacity: 0.9;
}

.nav-link__note {
  text-transform: none;
  letter-spacing: 0.01em;
  font-size: 12px;
  color: var(--text-muted);
}

.nav-link:hover {
  border-color: rgba(255, 255, 255, 0.08);
  color: #fff;
}

@media (hover: hover) {
  .nav-link:hover {
    transform: translateY(-2px);
  }
}

.nav-link.is-active {
  background: linear-gradient(135deg, #1e1e1e, #2a2a2a);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  color: #fff;
}

.nav-link.is-active .nav-link__title {
  color: #fff;
}

.nav-link--club.is-active {
  border-color: rgba(203, 41, 43, 0.6);
  background: linear-gradient(135deg, rgba(203, 41, 43, 0.16), rgba(203, 41, 43, 0.05)), #1f1f1f;
  box-shadow: 0 10px 32px rgba(203, 41, 43, 0.18);
}

.nav-link--rent .nav-link__title::before {
  background: var(--brand-blue);
}

.nav-link--rent.is-active {
  border-color: rgba(58, 160, 255, 0.55);
  background: linear-gradient(135deg, rgba(58, 160, 255, 0.16), rgba(58, 160, 255, 0.05)), #1f1f1f;
  box-shadow: 0 10px 32px rgba(58, 160, 255, 0.18);
}

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

.header-contact {
  display: grid;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #f5f5f5;
  text-align: left;
  line-height: 1.2;
  white-space: normal;
}

.header-contact__item {
  display: grid;
  gap: 2px;
  justify-items: start;
}

.header-contact__value {
  font-size: 14px;
  font-weight: 600;
  color: #f5f5f5;
  white-space: nowrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: var(--radius-soft);
  transition: background var(--speed-fast) var(--ease-out), color var(--speed-fast) var(--ease-out), border-color var(--speed-fast) var(--ease-out), transform var(--speed-fast) var(--ease-out), box-shadow var(--speed-med) var(--ease-out);
}

.btn-primary {
  background: var(--accent);
  color: #ffffff;
  border: none;
}

.btn-primary:hover {
  transform: translateY(-1px);
}

.btn-outline,
.btn-ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--text-main);
}

.btn-outline:hover,
.btn-ghost:hover {
  border-color: var(--accent);
  color: #ffffff;
}

.card {
  background: var(--bg-panel);
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-soft);
  transition: transform var(--speed-med) var(--ease-out), box-shadow var(--speed-med) var(--ease-out), border-color var(--speed-med) var(--ease-out);
}

@media (hover: hover) {
  .card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.45);
  }
}

.media-frame {
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0;
  background: transparent;
  transition: transform var(--speed-med) var(--ease-out), box-shadow var(--speed-med) var(--ease-out), border-color var(--speed-med) var(--ease-out);
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--speed-slow) var(--ease-out);
}

.split-media {
  padding: 0;
  aspect-ratio: auto;
  height: auto;
}

.split-media-grid {
  display: flex;
  gap: 12px;
  padding: 6px;
  align-items: start;
  height: auto;
  flex-direction: column;
}

.split-media-item {
  border: 0;
  padding: 0;
  background: transparent;
  display: block;
  width: 100%;
  height: auto;
  cursor: pointer;
  align-self: start;
  aspect-ratio: 16 / 9;
  background: #0b0b0b;
  border-radius: calc(var(--radius) - 10px);
  overflow: hidden;
}

.split-media-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.split-media img {
  height: auto;
  object-fit: contain;
}

@media (hover: hover) {
  .media-frame:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
  }

  .media-frame:hover img {
    transform: scale(1.04);
  }

  .split-media:hover {
    transform: none;
    box-shadow: none;
    border-color: rgba(255, 255, 255, 0.08);
  }

  .split-media:hover img {
    transform: none;
  }
}

.hero {
  position: relative;
  padding: 88px 0 72px;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 11, 11, 0.6);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  align-items: center;
}

.hero-copy {
  display: grid;
  gap: 14px;
  max-width: 640px;
  align-self: start;
  text-align: left;
}


.hero-title {
  display: grid;
  gap: 6px;
}

.hero-title__small {
  font-size: clamp(20px, 2.4vw, 28px);
  letter-spacing: 0.3em;
  color: var(--text-dim);
}

.hero-title__strong {
  display: block;
  font-size: clamp(34px, 6vw, 82px);
  line-height: 0.95;
  background: transparent;
}

.hero-copy h1 {
  font-size: clamp(36px, 6vw, 84px);
  line-height: 0.95;
  margin-bottom: 18px;
}

.lead {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 600px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.stat-card {
  background: rgba(18, 18, 18, 0.82);
  border-radius: var(--radius-soft);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 14px;
}

.stat-value {
  font-family: "Bebas Neue", sans-serif;
  font-size: 32px;
  letter-spacing: 0.08em;
}

.stat-prefix {
  font-family: "Space Grotesk", sans-serif;
  font-size: 18px;
  letter-spacing: 0.02em;
  margin-right: 6px;
  position: relative;
  top: -2px;
}


.stat-label {
  font-size: 13px;
  color: var(--text-muted);
}

.hero-panel {
  background: rgba(18, 18, 18, 0.82);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-soft);
  margin-left: 0;
  width: min(480px, 100%);
  justify-self: end;
}

.hero-panel h3 {
  font-size: 32px;
  margin-bottom: 12px;
}

.panel-tag {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 12px;
  padding-left: 12px;
  border-left: 2px solid var(--brand-red);
}

.panel-list {
  list-style: none;
  display: grid;
  gap: 10px;
  margin: 16px 0 20px;
  color: var(--text-muted);
}

.tabs {
  padding-top: 40px;
  padding-bottom: 20px;
}

.tab-controls {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.tab-btn {
  padding: 16px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: var(--radius-soft);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--text-main);
  cursor: pointer;
  transition: background var(--speed-fast) var(--ease-out), border-color var(--speed-fast) var(--ease-out), color var(--speed-fast) var(--ease-out), box-shadow var(--speed-med) var(--ease-out), transform var(--speed-fast) var(--ease-out);
}

.tab-btn.is-active {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.16);
  color: #fff;
  box-shadow: inset 0 -2px 0 var(--brand-red);
}

@media (hover: hover) {
  .tab-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
  }
}

.tab-content {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity var(--speed-med) var(--ease-out), transform var(--speed-med) var(--ease-out);
}

.tab-content.is-active {
  opacity: 1;
  transform: translateY(0);
}

.tab-content.is-leaving {
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
}

.tab-content[hidden] {
  display: none;
}

.split-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.7fr);
  gap: 24px;
  margin-bottom: 32px;
  align-items: center;
}

.split-content {
  display: grid;
  gap: 16px;
}

.stats {
  list-style: none;
  display: grid;
  gap: 8px;
  font-size: 14px;
  color: var(--text-muted);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-bottom: 24px;
  align-items: stretch;
}

.price-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
  align-items: stretch;
}

button.lightbox-trigger {
  border: none;
  background: transparent;
  padding: 0;
  width: 100%;
  display: block;
  cursor: zoom-in;
}

.price-media {
  aspect-ratio: auto;
  height: auto;
  padding: 0;
  background: transparent;
}

.price-media img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.price-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.price-head {
  display: grid;
  gap: 6px;
  min-height: 170px; /* фиксируем высоту шапки для выравнивания таблиц */
  align-content: start;
}

.price-sub,
.price-equip,
.price-note,
.price-desc {
  font-size: 13px;
  color: var(--text-muted);
}

.price-matrix {
  --col-1: 1.6fr;
  --col-2: 0.6fr;
  --col-3: 1fr;
  --col-4: 1fr;
  display: grid;
  gap: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid #2b2b2b;
  padding: 12px 0;
  margin-top: 4px;
}

.price-matrix--race {
  --col-1: 1.6fr;
  --col-2: 0.6fr;
  --col-3: 1fr;
  --col-4: 1fr;
}

.price-row {
  display: grid;
  grid-template-columns: var(--col-1) var(--col-2) var(--col-3) var(--col-4);
  gap: 10px;
  font-size: 14px;
  align-items: center;
  min-height: 32px;
}

.price-row-head {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.price-row span {
  display: block;
}

.price-cell-empty {
  opacity: 0;
}

.price-notes {
  display: grid;
  gap: 6px;
  margin-top: auto;
}

.event-system {
  display: grid;
  gap: 18px;
  margin-bottom: 24px;
}

.event-shell {
  display: grid;
  gap: 16px;
  padding: 16px;
  border-radius: calc(var(--radius) + 6px);
  background: #121212;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-soft);
}

.event-hero {
  position: relative;
  width: 100%;
  min-height: clamp(320px, 42vw, 520px);
  border-radius: var(--radius);
  padding: 0;
  text-align: left;
  font-family: inherit;
  background: #d8d8d8;
  border: 1px solid rgba(0, 0, 0, 0.12);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.32);
  appearance: none;
  display: grid;
  align-items: start;
  color: #1d1d1d;
  overflow: hidden;
}

.event-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transform: scale(1.05);
  z-index: 1;
  pointer-events: none;
  filter: drop-shadow(0 16px 26px rgba(0, 0, 0, 0.22));
}

.event-hero__copy {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 2;
  max-width: min(360px, 86vw);
  display: grid;
  gap: 10px;
  padding: 12px 14px;
  background: rgba(224, 224, 224, 0.92);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 14px;
}

.event-hero .mode-label {
  color: #6a6a6a;
}

.event-hero h2 {
  color: #1d1d1d;
}

.event-lead {
  margin: 0;
  color: #3a3a3a;
  font-size: 15px;
}

.event-details {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px 18px;
  align-items: start;
  background: #131313;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 22px 24px;
  box-shadow: none;
}

.event-details .actions {
  margin-top: 0;
  align-self: stretch;
  justify-self: end;
  grid-column: 2 / 3;
  grid-row: 2;
  display: flex;
  height: 100%;
}

.event-details .actions .btn {
  height: 100%;
  min-height: 100%;
  padding: 12px 28px;
}

.event-info {
  display: contents;
}

.event-tagline {
  margin: 0;
  font-size: clamp(12px, 1.3vw, 14px);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-red);
  white-space: nowrap;
  grid-column: 1 / -1;
  grid-row: 1;
}

.event-points {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  color: var(--text-main);
  font-size: 15px;
  grid-column: 1 / 2;
  grid-row: 2;
}

.event-points li {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 12px 14px;
  line-height: 1.5;
}

@supports not (display: contents) {
  .event-info {
    display: grid;
    gap: 14px;
  }
}

.event-carousel {
  margin: 0;
  background: #101010;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: none;
  padding: 14px;
}

.event-carousel .carousel-track {
  grid-auto-columns: minmax(220px, 1fr);
}

.event-carousel__item {
  border-radius: var(--radius-soft);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #0b0b0b;
  height: 220px;
}

.event-carousel__item img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.event-adv .card {
  background: #111111;
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.adv-grid .card p {
  margin: 0;
  display: grid;
  gap: 6px;
}

.adv-grid .card .strong {
  display: block;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-main);
}

.adv-grid .card .adv-text {
  color: var(--text-muted);
}

.event-capabilities {
  margin: 0;
  padding: 14px;
  border-radius: var(--radius);
  background: #e9e9e9;
  border: 1px solid rgba(0, 0, 0, 0.12);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.2);
}

.event-capabilities img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: calc(var(--radius) - 6px);
}

.section-photo {
  margin: 12px 0 28px;
  height: 320px;
}

.section-photo img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.adv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin: 12px 0 32px;
}

.case-card {
  display: grid;
  gap: 10px;
}

.case-photo {
  height: 160px;
}

.case-photo img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.grand-finals {
  display: grid;
  gap: 18px;
  margin: 8px 0 32px;
}

.grand-row {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 22px;
  align-items: center;
}

.grand-row--reverse .grand-media {
  order: 2;
}

.grand-row--reverse .grand-copy {
  order: 1;
}

.grand-media {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #0b0b0b;
  padding: 0;
  aspect-ratio: 16 / 9;
  display: block;
  width: 100%;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  appearance: none;
}

.grand-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.grand-copy {
  display: grid;
  gap: 10px;
}

.grand-copy h3 {
  margin: 0;
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.2;
}

.carousel {
  position: relative;
  overflow: hidden;
  margin: 8px 0 32px;
  background: rgba(255, 255, 255, 0.75);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(6px);
}

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(8, 8, 8, 0.6);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 0;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 2;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.35);
  transition: background var(--speed-fast) var(--ease-out), transform var(--speed-fast) var(--ease-out), border-color var(--speed-fast) var(--ease-out), opacity var(--speed-fast) var(--ease-out), box-shadow var(--speed-fast) var(--ease-out);
}

.carousel-prev {
  left: 14px;
}

.carousel-next {
  right: 14px;
}

.carousel-nav__icon {
  font-size: 28px;
  line-height: 1;
  display: block;
  transform: translateY(-1px);
}

@media (hover: hover) {
  .carousel-nav:hover {
    background: rgba(0, 0, 0, 0.78);
    border-color: rgba(255, 255, 255, 0.45);
    transform: translateY(-50%) scale(1.03);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.45);
  }
}

.carousel-nav:disabled {
  opacity: 0.35;
  cursor: default;
  transform: translateY(-50%);
}

.carousel--captions {
  background: rgba(255, 255, 255, 0.7);
  overflow: visible;
  padding-bottom: 28px;
}

.carousel--captions .media-frame {
  border: none;
  background: transparent;
  box-shadow: none;
}

.carousel--captions .carousel-item {
  border-radius: var(--radius);
  overflow: hidden;
}

.carousel-figure {
  display: grid;
  gap: 8px;
  scroll-snap-align: start;
}

.carousel-caption {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #1a1a1a;
}

.carousel-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 1fr);
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 4px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.carousel-item {
  height: 240px;
  scroll-snap-align: start;
  transition: transform var(--speed-med) var(--ease-out), box-shadow var(--speed-med) var(--ease-out);
}

.carousel-item img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform var(--speed-slow) var(--ease-out);
}

@media (hover: hover) {
  .carousel-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
  }

  .carousel-item:hover img {
    transform: scale(1.04);
  }
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--speed-med) var(--ease-out), backdrop-filter var(--speed-med) var(--ease-out);
  backdrop-filter: blur(0);
  z-index: 2000;
  padding: 16px;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
  backdrop-filter: blur(4px);
}

.lightbox img {
  width: auto;
  height: auto;
  max-width: 92vw;
  max-height: 92vh;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  opacity: 0;
  transform: translateY(12px) scale(0.98);
  transition: opacity var(--speed-slow) var(--ease-out), transform var(--speed-slow) var(--ease-out);
}

.lightbox.is-open img {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.lightbox--light #lightbox-img {
  background: #f4f4f4;
  padding: 14px;
  box-sizing: border-box;
  width: auto;
  height: auto;
  max-width: calc(92vw - 28px);
  max-height: calc(92vh - 28px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  width: 38px;
  height: 38px;
  font-size: 20px;
  cursor: pointer;
  transition: transform var(--speed-fast) var(--ease-out), background var(--speed-fast) var(--ease-out), border-color var(--speed-fast) var(--ease-out);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 22px;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background var(--speed-fast) var(--ease-out), transform var(--speed-fast) var(--ease-out), border-color var(--speed-fast) var(--ease-out);
}

.lightbox-nav:hover {
  background: rgba(0, 0, 0, 0.8);
}

@media (hover: hover) {
  .lightbox-nav:hover {
    transform: translateY(-50%) scale(1.03);
    border-color: rgba(255, 255, 255, 0.4);
  }

  .lightbox-close:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.4);
  }
}

.lightbox-prev {
  left: 18px;
}

.lightbox-next {
  right: 18px;
}

.strong {
  color: var(--text-main);
  font-weight: 600;
}

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

.package-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(160px, 240px) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
  padding: 18px;
}

.package-full {
  grid-column: 1 / -1;
}

.package-left {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: start;
}

.package-middle {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 0 0 16px;
}

.package-middle img {
  width: 100%;
  max-width: 220px;
  height: auto;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  object-fit: contain;
  margin-top: -24px;
}

.package-copy h3 {
  margin-bottom: 8px;
}

.package-list {
  list-style: none;
  display: grid;
  gap: 6px;
  margin: 12px 0 16px;
  color: var(--text-muted);
  font-size: 15px;
}

/* Центруем блок списка в левом столбце, текст остаётся выровнен влево */
.package-left .package-list {
  width: 100%;
  max-width: 520px;
}

.package-left .package-copy {
  justify-self: center;
  width: 100%;
  max-width: 520px;
}

.package-list--compact {
  gap: 4px;
  font-size: 14px;
}

.small-note {
  font-size: 12px;
  color: var(--text-dim);
}

.price-line {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin: 4px 0 12px;
  text-align: center;
}


.package-right {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
  border: 1px dashed rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-soft);
  padding: 18px;
  color: var(--text-muted);
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 0;
  align-self: start;
}

.package-right .muted {
  margin: 0;
}

.package-card {
  display: grid;
  gap: 16px;
  height: 100%;
}

.package-card ul {
  list-style: none;
  display: grid;
  gap: 8px;
  color: var(--text-muted);
  font-size: 14px;
}

.package-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 26px;
  letter-spacing: 0.06em;
}

.package-card.highlight {
  border: 1px solid rgba(203, 41, 43, 0.5);
  background: #1f1f1f;
}

.package-photo {
  padding: 0;
  border: none;
  background: transparent;
}

.package-photo img {
  height: 180px;
  width: 100%;
  object-fit: cover;
  display: block;
}

.package-split .package-photo img {
  height: 100%;
  min-height: 260px;
  object-fit: contain;
  background: transparent;
}

.package-split .package-photo {
  height: 340px;
  max-height: 340px;
}

.package-hero-carousel {
  grid-column: 1 / -1;
  margin: 0 0 18px;
}

.package-hero-grid {
  grid-column: 1 / -1;
  margin: 0 0 18px;
  display: grid;
  grid-template-columns: 1.45fr 0.55fr;
  gap: 12px;
  align-items: stretch;
}

.package-hero-main,
.package-hero-mini {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
  background: #0d0d0d;
  padding: 0;
}

.package-hero-main {
  min-height: 360px;
}

.package-hero-side {
  display: grid;
  gap: 12px;
}

.package-hero-mini {
  min-height: 174px;
}

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

.premium-hero {
  width: 100%;
  margin: 16px 0 20px;
  padding: 24px;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.06), rgba(0, 0, 0, 0) 70%);
}

.premium-hero img {
  width: 100%;
  max-height: 420px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.location-row {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: center;
}

.location-content {
  display: grid;
  gap: 12px;
  align-content: start;
}

.location-lead {
  color: var(--text-muted);
  font-size: 15px;
  max-width: 520px;
}

.location-meta {
  gap: 10px;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-main);
  font-size: 13px;
  letter-spacing: 0.01em;
}

.map-card {
  display: grid;
  gap: 10px;
  margin-top: 10px;
}

.map-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-soft);
}

.map-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.map-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--text-muted);
  font-size: 13px;
}

.map-note {
  color: var(--text-muted);
}

.map-note__accent {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(203, 41, 43, 0.45), rgba(203, 41, 43, 0.12));
  border: 1px solid rgba(203, 41, 43, 0.5);
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow: 0 10px 24px rgba(203, 41, 43, 0.18);
  white-space: nowrap;
}

.location-map {
  max-width: 360px;
  grid-column: auto;
  align-self: start;
}

.sim-showcase {
  position: relative;
  padding: 20px;
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: visible;
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 16px;
}

.sim-copy {
  display: grid;
  gap: 8px;
  align-content: start;
}

.sim-copy h4 {
  margin: 0;
  font-size: 18px;
}

.sim-note {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
  max-width: 480px;
}

.sim-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill--ghost {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}

.sim-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(210px, 1fr));
  gap: 14px;
  align-items: stretch;
}

.sim-card {
  position: relative;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-soft);
  padding: 14px;
  display: grid;
  gap: 10px;
  align-items: end;
  min-height: 360px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 18px 34px rgba(0, 0, 0, 0.35);
}

.sim-image {
  width: 100%;
  height: 280px;
  object-fit: contain;
  filter: drop-shadow(0 18px 36px rgba(0, 0, 0, 0.55));
  transition: transform 0.3s var(--ease);
}

.sim-card:hover .sim-image {
  transform: translateY(-6px) scale(1.02);
}

.sim-badge {
  position: absolute;
  left: 12px;
  top: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(140deg, #c5282c, #f1432e);
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.sim-caption {
  margin: 0;
  text-align: left;
  color: var(--text-main);
  font-size: 14px;
  line-height: 1.45;
  padding-top: 4px;
  white-space: normal;
  overflow: visible;
  text-overflow: unset;
}

.meta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin: 16px 0;
}

.meta-label {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 6px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.contact-form {
  display: grid;
  gap: 18px;
  align-self: start;
}

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

.form-grid label {
  display: grid;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.form-grid label.full {
  grid-column: span 2;
}

.form-status {
  font-size: 12px;
  color: var(--text-muted);
  min-height: 18px;
}

.form-status.success {
  color: #50c878;
}

.form-status.error {
  color: #f06c6c;
}

input,
textarea,
select {
  background: #0e0e0e;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-main);
  padding: 12px;
  font-size: 14px;
  border-radius: var(--radius-soft);
  resize: none;
}

.contact-info {
  font-size: 14px;
  color: var(--text-muted);
  display: grid;
  gap: 6px;
}

.contact-block .contact-info {
  font-size: 16px;
  gap: 12px;
  line-height: 1.4;
}

.contact-block .contact-info__item {
  font-size: 16px;
  color: var(--text-main);
}

.contact-block .contact-info__label {
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--text-dim);
}

.contact-info__item {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: baseline;
}

.contact-info__label {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 600;
}

.premium-section {
  background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.08), transparent 42%),
    radial-gradient(circle at 80% 0%, rgba(255, 255, 255, 0.08), transparent 40%),
    #f3f3f3;
  color: #0f0f0f;
  padding: 70px 0;
}

.premium-inline {
  margin-top: 18px;
}

.premium-box {
  background: rgba(255, 255, 255, 0.75);
  border-radius: 18px;
  padding: 28px 24px 32px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(6px);
}

.premium-title {
  color: #0f0f0f;
  text-align: center;
  margin-bottom: 22px;
}

.premium-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.premium-item {
  position: relative;
  text-align: center;
  padding: 6px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.premium-item::after {
  content: "+";
  position: absolute;
  right: -12px;
  top: 50%;
  transform: translate(50%, -50%);
  color: var(--brand-red);
  font-weight: 700;
  font-size: 26px;
  opacity: 0.9;
}

.premium-item:last-child::after {
  display: none;
}

.premium-item:hover {
  transform: translateY(-4px) scale(1.03);
}

.premium-img {
  background: transparent;
  border-radius: 12px;
  overflow: hidden;
  height: 170px;
  display: grid;
  place-items: center;
}

.premium-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.premium-caption {
  margin-top: 10px;
  font-size: 14px;
  color: #1a1a1a;
  line-height: 1.4;
}

.site-footer {
  background: #0d0d0d;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 32px 0 48px;
}

.clients-section {
  background: #141414;
  padding: 56px 0;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 14px;
  align-items: stretch;
}

.client-logo {
  margin: 0;
  background: #cfcfcf;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 14px;
  padding: 14px;
  display: grid;
  place-items: center;
  height: 110px;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), border-color 0.2s var(--ease);
}

.client-logo img {
  max-height: 60px;
  width: 100%;
  object-fit: contain;
  filter: brightness(1) contrast(1);
}

.client-logo:hover {
  transform: translateY(-4px);
  border-color: rgba(203, 41, 43, 0.35);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  font-size: 13px;
  color: var(--text-muted);
}

.reveal {
  opacity: 0;
  transform: translateY(var(--reveal-distance)) scale(var(--reveal-scale));
  filter: blur(var(--reveal-blur));
  transition: opacity var(--reveal-duration) var(--ease-out), transform var(--reveal-duration) var(--ease-out), filter var(--reveal-duration) var(--ease-out);
  transition-delay: var(--reveal-delay, 0s);
  will-change: transform, opacity;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.delay-1 {
  --reveal-delay: 0.08s;
}

.delay-2 {
  --reveal-delay: 0.16s;
}

.delay-3 {
  --reveal-delay: 0.24s;
}

@media (min-width: 901px) {
  :root {
    --reveal-duration: 520ms;
    --reveal-blur: 4px;
    --reveal-distance: 32px;
    --reveal-scale: 0.97;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .reveal.is-visible {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }

  .tab-content,
  .tab-content.is-active,
  .tab-content.is-leaving {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .card,
  .media-frame,
  .media-frame img,
  .carousel-item,
  .carousel-item img,
  .btn,
  .nav-link,
  .tab-btn,
  .lightbox,
  .lightbox img,
  .lightbox-nav,
  .lightbox-close {
    transition: none;
  }
}

@media (max-width: 900px) {
  :root {
    --reveal-blur: 0px;
  }
}

@media (max-width: 1100px) {
  .hero-grid,
  .split-card,
  .location-row,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .header-cta {
    flex-direction: column;
    align-items: flex-end;
  }

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

  .premium-item::after {
    display: none;
  }

  .hero-panel {
    justify-self: stretch;
    width: 100%;
  }

  .event-details {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .event-details .actions {
    grid-column: 1 / -1;
    grid-row: 3;
    justify-self: start;
    height: auto;
  }

  .event-details .actions .btn {
    height: auto;
    min-height: 0;
    width: auto;
  }

  .event-points {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .event-points {
    grid-template-columns: 1fr;
  }

  .event-shell {
    padding: 12px;
  }

  .event-carousel {
    padding: 12px;
  }

  .event-carousel__item {
    height: 200px;
  }

  .event-capabilities {
    padding: 10px;
  }
}

@media (max-width: 900px) {
  .event-tagline {
    white-space: normal;
    letter-spacing: 0.08em;
  }

  .grand-row {
    grid-template-columns: 1fr;
  }

  .grand-row--reverse .grand-media,
  .grand-row--reverse .grand-copy {
    order: initial;
  }

  .split-media-grid {
    flex-direction: column;
  }

  .nav {
    display: none;
  }

  .header-cta {
    align-items: flex-end;
  }

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

  .package-split {
    grid-template-columns: 1fr;
  }

.package-left {
  grid-template-columns: 1fr;
}

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

  .package-hero-image {
    margin: 10px 0 16px;
    height: 280px;
  }

  .package-hero-grid {
    grid-template-columns: 1fr;
  }

  .package-hero-main {
    min-height: 260px;
  }

  .package-hero-mini {
    min-height: 200px;
  }

  .sim-showcase {
    min-height: 320px;
    padding: 16px;
    gap: 12px;
  }

  .event-hero {
    min-height: 320px;
  }

  .event-hero__copy {
    top: 16px;
    left: 16px;
    max-width: calc(100% - 32px);
  }

  .sim-gallery {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
  }

  .location-row {
    grid-template-columns: 1fr;
  }

  .map-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .map-card {
    max-height: none;
  }

  .location-map {
    max-width: none;
  }
}

@media (max-width: 720px) {
  .site-header {
    background: linear-gradient(180deg, #0f0f0f, #1a1a1a);
  }

  .header-inner {
    height: 64px;
    padding: 0 12px;
    align-items: center;
  }

  .logo {
    height: 100%;
    width: 180px;
    gap: 8px;
    margin-left: -8px;
  }

  .logo-mark {
    height: 100%;
    width: auto;
    aspect-ratio: 429 / 172;
    background-size: contain;
    background-color: transparent;
  }

  .logo-text {
    font-size: 18px;
    line-height: 1;
  }

  .header-contact {
    display: none;
  }

  .btn {
    padding: 10px 16px;
    font-size: 11px;
    height: 40px;
    align-self: center;
  }

  .section {
    padding: 52px 0;
  }

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

  .hero-actions,
  .panel-actions,
  .actions {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .form-grid label.full {
    grid-column: span 1;
  }

  .footer-inner {
    flex-direction: column;
  }

  .tab-controls {
    grid-template-columns: 1fr;
  }

  .sim-showcase {
    padding: 18px;
  }

  .sim-card {
    min-height: 300px;
  }

  .sim-image {
    height: 240px;
  }

  .sim-caption {
    white-space: normal;
    text-overflow: unset;
  }

  .split-media-grid {
    flex-direction: column;
  }
}

.hero-copy h1,
.hero-copy h1 span {
  background: transparent;
  box-shadow: none;
}

main h1,
main h2,
main h3,
main h4,
main p,
main li,
main span {
  background: transparent;
  box-shadow: none;
}
