:root {
  --bg: #f8f7ff;
  --ink: #191b2d;
  --muted: #62647a;
  --berry: #b7245c;
  --navy: #243a73;
  --lime: #c7e36f;
  --white: #ffffff;
  --line: #deddf0;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}

a {
  color: var(--berry);
  font-weight: 800;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

.wrap {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1.15fr);
  gap: 56px;
  align-items: center;
  min-height: 100vh;
  padding: 56px 0 68px;
}

.hero-media {
  display: grid;
  min-height: 500px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(199, 227, 111, 0.92), rgba(255, 255, 255, 0.82)),
    repeating-linear-gradient(135deg, rgba(36, 58, 115, 0.12) 0 2px, transparent 2px 18px);
}

.ticket {
  display: grid;
  width: min(300px, 78vw);
  min-height: 330px;
  align-content: center;
  justify-items: center;
  gap: 12px;
  border: 2px dashed rgba(36, 58, 115, 0.35);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
  padding: 28px;
  text-align: center;
}

.ticket p,
.ticket span {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
}

.ticket strong {
  color: var(--berry);
  font-size: clamp(42px, 8vw, 70px);
  line-height: 0.95;
}

.label {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(42px, 8vw, 90px);
  line-height: 0.96;
  letter-spacing: 0;
}

.text {
  max-width: 650px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.58;
}

.main-link {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 8px;
  background: var(--navy);
  color: var(--white);
  text-decoration: none;
}

.details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  padding: 48px 0 74px;
  border-top: 1px solid var(--line);
}

article {
  min-width: 0;
}

h2 {
  margin-bottom: 12px;
  font-size: 23px;
  line-height: 1.2;
  letter-spacing: 0;
}

article p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

@media (max-width: 820px) {
  .hero,
  .details {
    grid-template-columns: 1fr;
  }

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

  .hero-media {
    min-height: 380px;
  }

  .hero-copy {
    order: -1;
  }
}

@media (max-width: 430px) {
  .wrap {
    width: min(100% - 24px, 1120px);
  }

  .main-link {
    width: 100%;
  }

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

  .ticket {
    min-height: 260px;
  }
}
