:root {
  --bg: #181818;
  --panel: #222222;
  --panel-soft: #2a2a2a;
  --text: #ffffff;
  --muted: #d6d6d6;
  --red: #f11225;
  --red-dark: #c90012;
  --orange: #f26522;
  --line: rgba(255, 255, 255, 0.14);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  letter-spacing: 0;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 78px;
  padding: 14px clamp(18px, 5vw, 72px);
  background: rgba(24, 24, 24, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-right: auto;
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  font-weight: 800;
  line-height: 1;
}

.brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.brand strong {
  color: var(--red);
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.nav a:hover,
.site-footer a:hover {
  color: var(--red);
}

.nav-button,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 2px solid transparent;
  border-radius: 6px;
  font-weight: 900;
  line-height: 1.1;
}

.nav-button,
.button.primary {
  color: #ffffff;
  background: var(--red);
  box-shadow: 0 12px 30px rgba(241, 18, 37, 0.28);
}

.nav-button:hover,
.button.primary:hover {
  background: var(--red-dark);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.28);
  color: #ffffff;
  background: transparent;
}

.button.secondary:hover {
  border-color: var(--red);
  color: var(--red);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: clamp(28px, 6vw, 80px);
  min-height: calc(100vh - 78px);
  padding: clamp(42px, 7vw, 90px) clamp(18px, 5vw, 72px) 48px;
  overflow: hidden;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 0.84rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 12ch;
  margin-bottom: 22px;
  font-size: clamp(3.3rem, 8vw, 7.2rem);
  line-height: 0.94;
  font-weight: 950;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4.2vw, 4.5rem);
  line-height: 1;
  font-weight: 950;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
  line-height: 1.15;
}

.hero-copy > p:not(.eyebrow),
.copy p,
.schedule-copy p,
.contact p {
  color: var(--muted);
  font-size: clamp(1.05rem, 1.5vw, 1.24rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero-stage {
  position: relative;
  display: grid;
  min-height: 520px;
  place-items: end center;
}

.hero-stage img {
  position: relative;
  z-index: 1;
  width: min(84vw, 520px);
  filter: drop-shadow(0 26px 32px rgba(0, 0, 0, 0.42));
}

.price-badge {
  position: absolute;
  right: 0;
  bottom: 52px;
  z-index: 2;
  display: grid;
  gap: 4px;
  width: 190px;
  padding: 18px 20px;
  transform: rotate(14deg);
  color: #ffffff;
  background: var(--red);
  box-shadow: var(--shadow);
  text-align: center;
}

.price-badge span,
.price-badge strong {
  display: block;
}

.price-badge span {
  font-size: 0.92rem;
  font-weight: 900;
}

.price-badge strong {
  font-size: 1.28rem;
  line-height: 1.05;
}

.facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid var(--line);
  background: #111111;
}

.facts div {
  min-height: 138px;
  padding: 28px clamp(18px, 5vw, 72px);
  border-right: 1px solid var(--line);
}

.facts div:last-child {
  border-right: 0;
}

.facts strong {
  display: block;
  margin-bottom: 10px;
  color: var(--red);
  font-size: clamp(1.7rem, 3vw, 3rem);
  line-height: 1;
  font-weight: 950;
}

.facts span {
  color: var(--muted);
  font-weight: 800;
}

.section {
  padding: clamp(62px, 9vw, 116px) clamp(18px, 5vw, 72px);
}

.split,
.schedule,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: clamp(28px, 7vw, 92px);
  align-items: start;
}

.copy {
  display: grid;
  gap: 18px;
}

.copy p:last-child,
.schedule-copy p,
.contact p {
  margin-bottom: 0;
}

.section-head {
  max-width: 780px;
  margin-bottom: 36px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.cards article,
.booking-box,
address {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.cards article {
  min-height: 240px;
  padding: 28px;
}

.cards article span {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--red);
  font-size: 0.9rem;
  font-weight: 950;
}

.cards p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.6;
}

.schedule {
  background: #101010;
  border-block: 1px solid var(--line);
}

.booking-box {
  display: grid;
  gap: 0;
  overflow: hidden;
}

.booking-box div {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding: 22px 26px;
  border-bottom: 1px solid var(--line);
}

.booking-box span {
  color: var(--muted);
  font-weight: 800;
}

.booking-box strong {
  text-align: right;
}

.booking-box .button {
  margin: 26px;
}

address {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 30px;
  font-style: normal;
}

address strong {
  font-size: 1.5rem;
}

address span,
address a:not(.button) {
  color: var(--muted);
}

address a:not(.button):hover {
  color: var(--red);
}

address .button {
  margin-top: 14px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 72px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

@media (max-width: 900px) {
  .site-header {
    flex-wrap: wrap;
    gap: 14px;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero,
  .split,
  .schedule,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 38px;
  }

  h1 {
    max-width: 10ch;
  }

  .hero-stage {
    min-height: 420px;
    place-items: center;
  }

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

  .facts div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .facts div:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 560px) {
  .site-header {
    min-height: 68px;
    padding-inline: 16px;
  }

  .brand span {
    font-size: 1.18rem;
  }

  .brand img {
    width: 40px;
    height: 40px;
  }

  .nav-button {
    min-height: 42px;
    padding-inline: 16px;
  }

  h1 {
    font-size: 3.1rem;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-stage {
    min-height: 340px;
  }

  .price-badge {
    right: 6px;
    bottom: -4px;
    width: 150px;
    padding: 14px;
  }

  .booking-box div {
    display: grid;
    gap: 6px;
  }

  .booking-box strong {
    text-align: left;
  }

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