:root {
  --forest: #17795e;
  --deep: #0d4d3f;
  --amber: #efa83a;
  --coral: #df684f;
  --cream: #fff8ec;
  --paper: #fffdf8;
  --oat: #e8dac0;
  --ink: #22302c;
  --muted: #717b74;
  --mint: #dff3e8;
  --sky: #dceff5;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 14%, rgba(239, 168, 58, 0.18), transparent 26%),
    radial-gradient(circle at 85% 10%, rgba(223, 104, 79, 0.12), transparent 24%),
    var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 18px 24px;
}

.brand img {
  width: 188px;
  height: auto;
  display: block;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

nav a,
.legal-grid a {
  color: var(--deep);
  font-weight: 850;
  text-decoration: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(310px, 0.98fr);
  align-items: center;
  gap: 36px;
  max-width: 1120px;
  min-height: calc(100vh - 86px);
  margin: 0 auto;
  padding: 28px 24px 46px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--coral);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 620px;
  margin: 0;
  color: var(--deep);
  font-size: clamp(48px, 7vw, 92px);
  line-height: 0.96;
}

.lead {
  max-width: 570px;
  color: var(--muted);
  font-size: 20px;
  font-weight: 750;
  line-height: 1.55;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 8px;
  font-weight: 950;
  text-decoration: none;
}

.button.primary {
  color: white;
  background: var(--forest);
}

.button.secondary {
  color: var(--deep);
  background: var(--paper);
  border: 1px solid var(--oat);
}

.hero-stage {
  position: relative;
  min-height: 520px;
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(13, 77, 63, 0.96), rgba(23, 121, 94, 0.9)),
    var(--forest);
  overflow: hidden;
  box-shadow: 0 22px 70px rgba(13, 77, 63, 0.18);
}

.hero-stage::before {
  content: "";
  position: absolute;
  inset: 38px 34px auto auto;
  width: 180px;
  height: 250px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  transform: rotate(11deg);
}

.hero-character {
  position: absolute;
  left: 50%;
  bottom: 16px;
  width: min(440px, 92%);
  transform: translateX(-50%);
  filter: drop-shadow(0 18px 36px rgba(0, 0, 0, 0.24));
}

.ticket {
  position: absolute;
  min-width: 84px;
  padding: 12px 16px;
  color: var(--deep);
  background: var(--paper);
  border: 1px solid rgba(232, 218, 192, 0.9);
  border-radius: 8px;
  font-weight: 950;
  text-align: center;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

.ticket-one {
  top: 52px;
  left: 42px;
  transform: rotate(-8deg);
}

.ticket-two {
  right: 42px;
  bottom: 70px;
  transform: rotate(8deg);
}

.spark {
  position: absolute;
  width: 22px;
  height: 22px;
  background: var(--amber);
  transform: rotate(45deg);
  border-radius: 4px;
}

.spark-one {
  top: 118px;
  right: 92px;
}

.spark-two {
  bottom: 130px;
  left: 68px;
}

.tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 1120px;
  margin: 0 auto 64px;
  padding: 0 24px;
}

article,
.legal,
.band {
  padding: 22px;
  background: rgba(255, 253, 248, 0.86);
  border: 1px solid var(--oat);
  border-radius: 8px;
}

article span {
  color: var(--amber);
  font-weight: 950;
}

article h2,
.band h2,
.legal h2 {
  margin: 8px 0;
  color: var(--deep);
}

article p,
.band p,
.legal p {
  color: var(--muted);
  font-weight: 720;
  line-height: 1.55;
}

.band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.72fr);
  gap: 22px;
  max-width: 1120px;
  margin: 0 auto 64px;
}

.legal {
  max-width: 1120px;
  margin: 0 auto 64px;
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 18px;
}

.legal-grid a {
  padding: 13px 14px;
  background: var(--mint);
  border-radius: 8px;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 28px 24px 42px;
  color: var(--muted);
  font-weight: 800;
}

@media (max-width: 820px) {
  .topbar,
  nav,
  .actions,
  footer {
    align-items: flex-start;
  }

  .topbar,
  footer {
    flex-direction: column;
  }

  .hero,
  .tiles,
  .band,
  .legal-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

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