:root {
  --bg: #130d10;
  --bg-2: #23131f;
  --gold: #c99b58;
  --gold-soft: #e8c88b;
  --purple: #5c2d88;
  --purple-soft: #8c58bd;
  --text: #f2dfc2;
  --muted: rgba(242, 223, 194, 0.78);
  --panel: rgba(24, 13, 19, 0.88);
  --line: rgba(201, 155, 88, 0.22);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(92, 45, 136, 0.34), transparent 28%),
    radial-gradient(circle at 20% 15%, rgba(201, 155, 88, 0.16), transparent 20%),
    linear-gradient(180deg, #120b0f 0%, #1b0f17 48%, #130d10 100%);
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255,255,255,0.02), rgba(255,255,255,0.02)),
    repeating-linear-gradient(0deg, transparent 0 11px, rgba(255,255,255,0.02) 11px 12px);
  opacity: 0.5;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.flyer-page {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 2rem 0 4rem;
}

.flyer-hero {
  display: grid;
  grid-template-columns: minmax(360px, 430px) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
}

.flyer-hero--posterish {
  align-items: stretch;
}

@media (min-width: 901px) {
  .flyer-hero {
    grid-template-columns: 1fr;
    gap: 0;
    position: relative;
    align-items: stretch;
  }

  .flyer-hero__art {
    position: relative;
    inset: auto;
    order: 1;
  }

  .flyer-hero__art img {
    width: 100%;
    height: auto;
    min-height: 0;
    object-fit: unset;
    object-position: center top;
    border-radius: 0;
    background: transparent;
  }

  .flyer-hero__content {
    order: 2;
    position: absolute;
    top: 50%;
    left: 3rem;
    transform: translateY(-50%);
    max-width: 640px;
    width: min(640px, calc(100% - 6rem));
    margin: 0;
    z-index: 2;
  }
}

.flyer-hero__art {
  position: relative;
}

.flyer-hero__art img,
.flyer-actions-card,
.flyer-panel,
.flyer-copy {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.flyer-hero__art img {
  border-radius: 22px;
  overflow: hidden;
}

.flyer-hero__art--stacked {
  display: grid;
  gap: 1rem;
}

.flyer-hero__insert {
  max-width: 280px;
  margin-left: auto;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.flyer-hero__content,
.flyer-panel,
.flyer-actions-card,
.flyer-copy {
  background: linear-gradient(180deg, rgba(27, 15, 23, 0.95), rgba(19, 13, 16, 0.94));
  border-radius: 22px;
}

.flyer-hero__content {
  padding: 2.4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.flyer-kicker,
.flyer-label {
  margin: 0 0 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.74rem;
  font-weight: 800;
  color: var(--purple-soft);
}

h1, h2 {
  margin: 0 0 1rem;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: 0.02em;
}

h1 {
  font-size: clamp(3.5rem, 8vw, 7rem);
  color: var(--gold-soft);
  text-shadow: 0 4px 18px rgba(0,0,0,0.3);
}

.flyer-ticket-badge {
  display: inline-grid;
  gap: 0.2rem;
  align-self: flex-start;
  margin: 0.35rem 0 0.75rem;
  padding: 0.85rem 1.05rem;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(201,155,88,0.24), rgba(92,45,136,0.24));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.flyer-ticket-badge span {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  line-height: 1;
  color: var(--gold-soft);
}

.flyer-ticket-badge small {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.flyer-poster-strips {
  display: grid;
  gap: 0.8rem;
  margin: 1.25rem 0 1rem;
}

.flyer-strip {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(92, 45, 136, 0.22), rgba(201, 155, 88, 0.12));
}

.flyer-strip span {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.76rem;
  color: var(--purple-soft);
  font-weight: 800;
}

.flyer-strip strong {
  color: var(--text);
}

h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--gold);
}

.flyer-subhead,
.flyer-panel p,
.flyer-copy p,
.flyer-copy li,
.flyer-actions-card p {
  color: var(--muted);
  line-height: 1.8;
}

.flyer-flow-banner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  margin: 1rem 0 0.75rem;
}

.flyer-flow-banner div {
  display: grid;
  gap: 0.25rem;
  padding: 0.85rem 0.95rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(201, 155, 88, 0.18), rgba(92, 45, 136, 0.18));
}

.flyer-flow-banner span {
  width: 1.6rem;
  height: 1.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--gold-soft);
  color: #1a0f0d;
  font-weight: 800;
}

.flyer-flow-banner strong {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.84rem;
}

.flyer-lineup {
  margin: 1rem 0 0.75rem;
  padding-left: 0.1rem;
}

.flyer-lineup__label {
  margin: 0 0 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  color: var(--purple-soft);
  font-weight: 800;
}

.flyer-lineup__headliner {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  line-height: 0.92;
  color: var(--gold-soft);
}

.flyer-lineup__support {
  margin-top: 0.4rem;
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(242, 223, 194, 0.84);
}

.flyer-cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.flyer-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.95rem 1.35rem;
  border: 1px solid transparent;
  font-weight: 800;
}

.flyer-button--primary {
  background: linear-gradient(135deg, var(--gold), #f0ba67);
  color: #1a0f0d;
}

.flyer-button--ghost {
  border-color: rgba(201, 155, 88, 0.35);
  background: rgba(255, 255, 255, 0.03);
}

.flyer-button--full {
  width: 100%;
}

.flyer-ticket-section {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.flyer-ticket-intro,
.flyer-form,
.flyer-payment-card {
  border-radius: 22px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: linear-gradient(180deg, rgba(27, 15, 23, 0.95), rgba(19, 13, 16, 0.94));
}

.flyer-ticket-intro {
  grid-column: 1 / -1;
  padding: 1.5rem;
}

.flyer-form,
.flyer-payment-card {
  padding: 1.5rem;
}

.flyer-form {
  display: grid;
  gap: 1rem;
}

.flyer-form__label {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  color: var(--gold);
  font-weight: 800;
}

.flyer-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.flyer-form label {
  display: grid;
  gap: 0.45rem;
  font-weight: 700;
}

.flyer-form input,
.flyer-form select,
.flyer-form textarea {
  width: 100%;
  border: 1px solid rgba(201, 155, 88, 0.22);
  background: rgba(255,255,255,0.06);
  color: var(--text);
  padding: 0.95rem 1rem;
  font: inherit;
}

.flyer-form input::placeholder,
.flyer-form textarea::placeholder {
  color: rgba(242, 223, 194, 0.42);
}

.flyer-form textarea {
  resize: vertical;
}

.flyer-form-note,
.flyer-payment-card p {
  color: var(--muted);
  line-height: 1.8;
}

.flyer-payment-card {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.flyer-payment-card__poster {
  width: 100%;
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.flyer-payment-card__qr {
  width: min(100%, 320px);
  background: #fff;
  padding: 0.5rem;
  border-radius: 18px;
}

.flyer-pay-card {
  display: grid;
  grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: center;
  margin-top: 2rem;
}

.flyer-pay-card__art img,
.flyer-pay-card__copy {
  border-radius: 22px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.flyer-pay-card__art img {
  width: 100%;
}

.flyer-pay-card__copy {
  padding: 1.7rem;
  background: linear-gradient(180deg, rgba(92, 45, 136, 0.2), rgba(19, 13, 16, 0.94));
}

.flyer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.flyer-grid--posterish .flyer-panel--highlight {
  background: linear-gradient(180deg, rgba(92, 45, 136, 0.34), rgba(19, 13, 16, 0.94));
}

.flyer-panel__support {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.flyer-flow-list {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
  color: var(--muted);
}

.flyer-flow-list li + li {
  margin-top: 0.6rem;
}

.flyer-panel--flow {
  display: grid;
  gap: 0.8rem;
}

.flyer-panel--ghosted {
  background: linear-gradient(180deg, rgba(201, 155, 88, 0.16), rgba(19, 13, 16, 0.94));
}

.flyer-panel--guest-card {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.flyer-panel__image {
  width: 100%;
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.flyer-panel,
.flyer-copy,
.flyer-actions-card {
  padding: 1.5rem;
}

.flyer-details {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.flyer-guest-band {
  display: grid;
  grid-template-columns: minmax(320px, 480px) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
}

.flyer-guest-band__image img {
  border-radius: 22px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.flyer-guest-band__copy {
  padding: 1.5rem;
  border-radius: 22px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: linear-gradient(180deg, rgba(27, 15, 23, 0.95), rgba(19, 13, 16, 0.94));
}

.flyer-guest-band__copy--accent {
  background: linear-gradient(180deg, rgba(92, 45, 136, 0.26), rgba(19, 13, 16, 0.94));
}

.flyer-full-poster {
  margin-top: 1.5rem;
  padding: 1.5rem;
  border-radius: 22px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: linear-gradient(180deg, rgba(27, 15, 23, 0.95), rgba(19, 13, 16, 0.94));
}

.flyer-full-poster__image {
  width: 100%;
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.flyer-footer {
  margin-top: 1.5rem;
  padding: 1rem 0 0.25rem;
  text-align: center;
  display: grid;
  gap: 0.35rem;
}

.flyer-footer__label {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.68rem;
}

.flyer-footer a {
  color: var(--gold-soft);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
}

.flyer-footer__sponsor-link {
  display: inline-flex;
  justify-content: center;
}

.flyer-footer__sponsor-image {
  width: min(100%, 320px);
  border-radius: 22px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.flyer-copy ul {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
}

.flyer-copy li + li {
  margin-top: 0.6rem;
}

@media (max-width: 900px) {
  .flyer-pay-card,
  .flyer-ticket-section,
  .flyer-hero,
  .flyer-grid,
  .flyer-details,
  .flyer-guest-band {
    grid-template-columns: 1fr;
  }

  .flyer-form__grid,
  .flyer-flow-banner {
    grid-template-columns: 1fr;
  }

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

  .flyer-page {
    width: min(100%, calc(100% - 1rem));
    padding-top: 1rem;
  }

  .flyer-hero__content,
  .flyer-panel,
  .flyer-copy,
  .flyer-actions-card {
    padding: 1.2rem;
  }

  .flyer-ticket-badge {
    width: 100%;
  }

  .flyer-lineup__support {
    letter-spacing: 0.04em;
  }
}
