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

body {
  font-family: "Montserrat", sans-serif;
  background: #e8e8e8;
  color: #000;
}

.flyer {
  max-width: 576px;
  margin: 0 auto;
  background: #f3f3f3;
  min-height: 100vh;
}

.top-brand {
  background: #000;
  padding: 1px 1px 1px;
  text-align: center;
}

.brand-logo {
  width: min(100%, 200px);
  height: auto;
}

.hero-copy {
  text-align: center;
  padding: 12px 26px 14px;
}

.hero-copy h1 {
  font-size: clamp(1.5rem, 6vw, 4.4rem);
  font-weight: 600;
  letter-spacing: 4px;
  margin-bottom: 4px;
}

.subtitle {
  font-size: 1.06rem;
  letter-spacing: 2.5px;
  margin-bottom: 3px;
}

.quote {
  margin-top: 8px;
  font-size: 1.06rem;
  letter-spacing: 1.8px;
}

.hero-media {
  position: relative;
  min-height: 330px;
  overflow: hidden;
}

.hero-video {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
  display: block;
}

.event-badge {
  position: absolute;
  left: 50%;
  top: 48%;
  transform: translate(-50%, -50%);
  width: min(88%, 350px);
  background: #fff;
  border-radius: 46px 120px 46px 46px;
  text-align: center;
  color: #fff;
  padding: 18px 22px 16px;
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.28);
}

.dates {
  font-weight: 800;
  font-size: 1.6rem;
  line-height: 1.05;
}

.event-title {
  margin-top: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 1.2px;
}

.event-badge h2 {
  margin-top: 8px;
  font-size: 3.1rem;
  line-height: 0.96;
  letter-spacing: 2px;
}

.event-badge h2 span {
  color: #8dd122;
  display: block;
  margin-top: 4px;
}

.cta {
  margin: 12px auto 0;
  display: inline-block;
  background: hsla(41, 94%, 56%, 0);
  color: #191919;
  text-decoration: none;
  font-weight: 500;
  font-size: 2rem;
  letter-spacing: 2px;
  border-radius: 34px;
  padding: 8px 26px;
}

.agenda {
  background: #f3f3f3;
  text-align: center;
  padding: 22px 18px 30px;
}

.agenda h2 {
  font-size: clamp(2rem, 7vw, 3.1rem);
  font-weight: 700;
  margin-bottom: 10px;
}

.agenda-intro {
  max-width: 500px;
  margin: 0 auto 18px;
  line-height: 1.34;
  font-size: 1.08rem;
}

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

.day-card {
  background: #fcfcfc;
  border: 3px solid #5fb4df;
  border-radius: 16px;
  padding: 10px 8px 12px;
  min-height: 230px;
}

.day-card h3 {
  color: #52add8;
  font-size: 1rem;
  margin-bottom: 8px;
}

.day-card p {
  font-size: 0.9rem;
  line-height: 1.34;
  margin-bottom: 6px;
}

.footer-band {
  background: #43a14a;
  min-height: 108px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 10px 18px;
}

.qr-placeholder {
  width: 72px;
  height: 72px;
  background:
    linear-gradient(90deg, #000 8px, transparent 8px) 0 0/18px 18px,
    linear-gradient(#000 8px, transparent 8px) 0 0/18px 18px,
    #fff;
  border: 4px solid #fff;
  display: grid;
  place-items: center;
}

.qr-placeholder span {
  font-size: 0.72rem;
  color: #111;
  background: rgba(255, 255, 255, 0.92);
  padding: 2px 4px;
}

@media (max-width: 560px) {
  .hero-copy h1 {
    letter-spacing: 4px;
  }

  .subtitle,
  .quote {
    font-size: 0.95rem;
    letter-spacing: 1.2px;
  }

  .event-badge h2 {
    font-size: 2.5rem;
  }

  .cta {
    font-size: 1.7rem;
  }
}
