:root {
  color-scheme: dark;
  --bg: #0b1110;
  --panel: rgba(18, 22, 20, 0.78);
  --panel-strong: rgba(18, 22, 20, 0.92);
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.2);
  --text: #fbfbf6;
  --muted: rgba(251, 251, 246, 0.76);
  --soft: rgba(251, 251, 246, 0.08);
  --gold: #f4cc73;
  --green: #9bb78a;
  --coral: #ff927e;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "SF Pro Text", "SF Pro Display", -apple-system, BlinkMacSystemFont,
    "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--text);
  background:
    linear-gradient(rgba(11, 17, 16, 0.5), rgba(11, 17, 16, 0.94)),
    url("https://voda-club.com.ua/wp-content/uploads/2025/04/photo_2025-04-05_10-45-02.jpg")
      center top / cover fixed,
    var(--bg);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.28), transparent 34%),
    radial-gradient(circle at 50% 20%, rgba(244, 204, 115, 0.14), transparent 42%);
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.07;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 34px 34px;
}

.page {
  position: relative;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 44px;
}

.hero {
  min-height: calc(100vh - 36px);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 22px;
  align-items: end;
  position: relative;
  overflow: hidden;
  background: #090d0c;
  box-shadow: var(--shadow);
}

.hero::before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.22)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.64)),
    url("https://voda-club.com.ua/wp-content/uploads/2025/06/DJI_20250614_145536_970_68570be326372-2_68570e38c5f8a.jpg")
      center 68% / cover;
  border-radius: inherit;
}

.hero > * {
  position: relative;
  z-index: 1;
}

.hero__content {
  padding-bottom: 12px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1,
.price h2,
.location h2 {
  margin: 0;
  font-family: "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont,
    "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(3.2rem, 9vw, 7rem);
  line-height: 0.92;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero__lead,
.price__text,
.feature p,
.ticket__note,
.qr__text,
.location p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.65;
}

.hero__lead {
  max-width: 42rem;
  margin: 20px 0 0;
  font-size: 1.12rem;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.pill {
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.92rem;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  color: #11100c;
  background: linear-gradient(135deg, var(--gold), #fff0ba);
  box-shadow: 0 16px 30px rgba(244, 204, 115, 0.2);
}

.button--ghost {
  color: var(--text);
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.07);
}

.card,
.ticket,
.countdown,
.qr,
.feature,
.price,
.location,
.contacts {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(24, 27, 24, 0.82), rgba(12, 15, 14, 0.88));
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.hero__panel {
  display: grid;
  gap: 14px;
  align-content: start;
}

.ticket,
.countdown,
.qr,
.feature {
  padding: 20px;
}

.ticket__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.ticket__label,
.countdown__label,
.qr__title,
.feature__num,
.pricebox span,
.photo__caption {
  color: rgba(251, 251, 246, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.ticket__old {
  color: rgba(251, 251, 246, 0.52);
  text-decoration: line-through;
  text-decoration-color: var(--coral);
  text-decoration-thickness: 3px;
  font-weight: 800;
}

.ticket__price {
  font-size: clamp(3rem, 6vw, 4.8rem);
  font-weight: 900;
  letter-spacing: 0;
  color: var(--gold);
}

.ticket__note {
  margin: 6px 0 0;
}

.countdown__value {
  margin-top: 10px;
  font-size: clamp(1.8rem, 3.2vw, 2.7rem);
  font-weight: 850;
  letter-spacing: 0;
}

.countdown__sub {
  margin-top: 6px;
  color: rgba(251, 251, 246, 0.62);
  font-size: 0.93rem;
}

.qr {
  display: grid;
  grid-template-columns: 164px 1fr;
  gap: 18px;
  align-items: center;
}

.qr img {
  display: block;
  width: 100%;
  max-width: 164px;
  aspect-ratio: 1;
  border-radius: 8px;
  padding: 10px;
  background: #fff;
}

.qr__title {
  color: var(--gold);
  margin-bottom: 8px;
}

.gallery {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: repeat(2, 230px);
  gap: 14px;
}

.photo {
  position: relative;
  min-height: 220px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #111;
  box-shadow: var(--shadow);
}

.photo--large {
  grid-row: span 2;
}

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

.photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(0, 0, 0, 0.72));
}

.photo__caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 1;
  color: var(--text);
}

.features {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.feature__num {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--gold);
}

.feature h2 {
  margin: 0 0 10px;
  font-size: 1.45rem;
  letter-spacing: 0;
}

.price,
.location,
.contacts {
  margin-top: 18px;
  padding: 24px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
  align-items: center;
}

.price h2,
.location h2,
.contacts h2 {
  font-size: clamp(2.3rem, 5vw, 4.4rem);
  line-height: 0.98;
}

.price__text,
.location p,
.contacts p {
  margin: 14px 0 0;
  max-width: 42rem;
}

.price__boxes {
  display: grid;
  gap: 12px;
}

.pricebox {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 18px 20px;
  border-radius: 8px;
  background: var(--soft);
  border: 1px solid var(--line);
}

.pricebox strong {
  font-size: 1.3rem;
  color: var(--text);
}

.location__copy .button {
  margin-top: 22px;
}

.location__map {
  min-height: 360px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
}

.location__map iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  display: block;
  border: 0;
  filter: saturate(0.8) contrast(1.03);
}

.contacts__list {
  display: grid;
  gap: 12px;
}

.contact-card {
  display: grid;
  gap: 8px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  color: var(--text);
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.contact-card:hover {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  background: rgba(251, 251, 246, 0.11);
}

.contact-card span {
  color: rgba(251, 251, 246, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-card strong {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.22rem;
}

.contact-phone::before {
  content: "";
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background:
    linear-gradient(rgba(244, 204, 115, 0.18), rgba(244, 204, 115, 0.04)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 24 24' fill='none' stroke='%23f4cc73' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6A19.79 19.79 0 0 1 2.11 4.18 2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.13.96.35 1.89.67 2.78a2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.3-1.24a2 2 0 0 1 2.11-.45c.89.32 1.82.54 2.78.67A2 2 0 0 1 22 16.92Z'/%3E%3C/svg%3E")
      center / 18px 18px no-repeat;
}

@media (max-width: 980px) {
  .hero,
  .price,
  .location,
  .contacts,
  .features,
  .gallery {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 40vh;
  }

  .hero::before {
    background-position: center 62%;
  }

  .gallery {
    grid-template-rows: none;
  }

  .photo--large {
    grid-row: auto;
  }

  .qr {
    grid-template-columns: 150px 1fr;
  }
}

@media (max-width: 640px) {
  body {
    background-attachment: scroll;
  }

  .page {
    width: min(100% - 20px, 1180px);
    padding-top: 10px;
  }

  .hero,
  .price,
  .location,
  .contacts {
    padding: 16px;
  }

  .hero {
    gap: 14px;
    min-height: auto;
    padding-top: 32vh;
  }

  .hero::before {
    background-position: center 58%;
  }

  .hero h1 {
    font-size: clamp(3rem, 17vw, 4.5rem);
  }

  .hero__lead,
  .price__text,
  .feature p,
  .ticket__note,
  .qr__text,
  .location p,
  .contacts p {
    font-size: 0.98rem;
  }

  .hero__meta {
    gap: 8px;
    margin-top: 18px;
  }

  .pill {
    padding: 9px 11px;
    font-size: 0.86rem;
  }

  .button {
    width: 100%;
    min-height: 50px;
    padding: 0 14px;
    text-align: center;
  }

  .hero__cta {
    gap: 10px;
  }

  .qr {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .qr img {
    max-width: 150px;
  }

  .gallery {
    gap: 10px;
  }

  .photo {
    min-height: 240px;
  }

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

  .location__map,
  .location__map iframe {
    min-height: 300px;
  }

  .contact-card strong {
    font-size: 1.05rem;
    overflow-wrap: anywhere;
  }

  .contact-phone::before {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
    background-size: 16px 16px;
  }
}

@media (max-width: 380px) {
  .hero h1 {
    font-size: 2.75rem;
  }

  .ticket__price {
    font-size: 2.75rem;
  }

  .countdown__value {
    font-size: 1.65rem;
  }
}
