:root {
  --bg: #efe5cf;
  --paper: #f7f0df;
  --paper-2: #f1e8d6;
  --ink: #11110f;
  --muted: #4f473c;
  --red: #d75a42;
  --red-dark: #b54233;
  --shadow: 0 20px 50px rgba(45, 27, 17, 0.12);
  --line: rgba(17, 17, 15, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.26), transparent 35%),
    linear-gradient(180deg, #f3ead8 0%, var(--bg) 40%, #eadfc7 100%);
  overflow-x: hidden;
  position: relative;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

body::before {
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(0,0,0,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,.03) 1px, transparent 1px);
  background-size: 28px 28px;
}

body::after {
  opacity: 0.06;
  background: radial-gradient(circle at 20% 10%, rgba(0,0,0,.45) 0, transparent 28%),
              radial-gradient(circle at 85% 30%, rgba(0,0,0,.35) 0, transparent 26%),
              radial-gradient(circle at 10% 90%, rgba(0,0,0,.28) 0, transparent 24%);
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.055;
  background-image: radial-gradient(#000 0.55px, transparent 0.55px);
  background-size: 8px 8px;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.site-header,
main,
.site-footer,
.mobile-bar {
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(10px);
  background: rgba(239, 229, 207, 0.88);
  border-bottom: 1px solid var(--line);
}

.site-header.is-scrolled {
  box-shadow: 0 10px 25px rgba(17,17,15,0.08);
}

.header-inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
}

.brand {
  font-weight: 950;
  font-size: clamp(1.05rem, 1rem + 0.8vw, 1.55rem);
  letter-spacing: -0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  gap: 26px;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  flex: 1;
}

.main-nav a {
  opacity: 0.86;
}

.main-nav a:hover,
.site-footer a:hover {
  opacity: 1;
}

.header-cta,
.btn,
.mobile-bar a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.header-cta {
  white-space: nowrap;
  background: var(--ink);
  color: var(--paper);
  padding: 13px 18px;
  border: 2px solid var(--ink);
}

.header-cta:hover,
.btn:hover,
.mobile-bar a:hover {
  transform: translateY(-2px);
}

.section-shell {
  max-width: 1360px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.hero {
  padding-top: 24px;
  padding-bottom: 34px;
}

.hero-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 610px);
  gap: clamp(24px, 4vw, 42px);
  align-items: stretch;
  background: linear-gradient(135deg, var(--red) 0%, #df6548 68%, #ce523a 100%);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.12) 1px, transparent 1px);
  background-size: 10px 10px;
  opacity: .22;
  pointer-events: none;
}

.hero-copy {
  padding: clamp(30px, 4vw, 62px);
  color: var(--paper);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.scribble-label,
.section-kicker,
.light {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 16px;
}

.scribble-label {
  font-family: "Comic Sans MS", "Bradley Hand", cursive;
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 6px;
  transform: rotate(-2deg);
}

.hero-copy h1 {
  font-size: clamp(3rem, 2rem + 3.6vw, 6.5rem);
  line-height: 0.88;
  letter-spacing: -0.07em;
  text-transform: uppercase;
  margin-bottom: 28px;
  color: #12110f;
  text-shadow: 0 1px 0 rgba(255,255,255,0.15);
}

.title-ribbon {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.title-ribbon span {
  display: inline-block;
  background: #0f0f0e;
  color: var(--paper);
  font-size: clamp(1.8rem, 1.1rem + 2.6vw, 4rem);
  font-weight: 950;
  letter-spacing: -0.06em;
  line-height: 1;
  padding: 14px 18px 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.18);
}

.title-ribbon span:nth-child(1) { transform: rotate(-1.5deg); }
.title-ribbon span:nth-child(2) { transform: rotate(1deg); }
.title-ribbon span:nth-child(3) { transform: rotate(-0.6deg); }

.hero-lead {
  font-size: clamp(1.1rem, 0.95rem + 0.9vw, 1.55rem);
  line-height: 1.38;
  max-width: 620px;
  margin-bottom: 28px;
  color: rgba(247, 240, 223, 0.96);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.btn {
  min-height: 56px;
  padding: 0 22px;
  border: 2px solid var(--ink);
}

.btn-dark {
  background: var(--ink);
  color: var(--paper);
  box-shadow: 0 12px 24px rgba(17,17,15,.18);
}

.btn-light {
  background: transparent;
  color: var(--paper);
  border-color: var(--paper);
}

.btn-cream {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
  margin-top: 10px;
}

.mini-note {
  align-self: flex-start;
  margin-top: 6px;
  background: var(--paper);
  color: var(--ink);
  padding: 10px 14px;
  font-family: "Comic Sans MS", "Bradley Hand", cursive;
  font-size: 1rem;
  font-weight: 700;
  transform: rotate(-1.4deg);
  box-shadow: 8px 10px 0 rgba(0,0,0,.12);
}

.hero-visual {
  padding: clamp(18px, 2vw, 22px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.hero-visual img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 18px 36px rgba(17,17,15,0.18);
  border: 1px solid rgba(255,255,255,0.18);
}

.ticket-note {
  position: absolute;
  right: 10px;
  bottom: 24px;
  background: var(--paper);
  color: var(--ink);
  padding: 16px 18px;
  box-shadow: 0 10px 24px rgba(17,17,15,0.18);
  transform: rotate(-2deg);
  max-width: 280px;
}

.ticket-note strong,
.ticket-note span {
  display: block;
}

.ticket-note strong {
  font-size: 1rem;
  line-height: 1.1;
}

.ticket-note span {
  margin-top: 8px;
  font-size: 0.95rem;
}

.marquee-band {
  background: var(--ink);
  color: var(--paper);
  padding: 16px 0;
  overflow: hidden;
  transform: rotate(-1deg);
  margin: 14px 0 26px;
}

.marquee-track {
  display: flex;
  gap: 22px;
  align-items: center;
  white-space: nowrap;
  width: max-content;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  animation: marquee 28s linear infinite;
}

@keyframes marquee {
  to { transform: translateX(-35%); }
}

.show-section,
.facts-strip {
  padding-top: clamp(52px, 6vw, 96px);
  padding-bottom: clamp(52px, 6vw, 96px);
}

.show-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  gap: clamp(24px, 4vw, 52px);
  align-items: start;
}

.paper-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.36), rgba(255,255,255,0.06));
  border: 1px solid rgba(17,17,15,0.1);
  border-radius: 26px;
  padding: clamp(26px, 3.2vw, 46px);
  box-shadow: var(--shadow);
}

.show-copy h2,
.facts-header h2,
.cta-inner h2 {
  font-size: clamp(2.2rem, 1.65rem + 2.4vw, 4.8rem);
  line-height: 0.96;
  letter-spacing: -0.055em;
  margin-bottom: 20px;
}

.show-copy .lead,
.cta-inner p {
  font-size: clamp(1.1rem, 1rem + .55vw, 1.4rem);
}

.show-copy p {
  color: var(--muted);
  line-height: 1.58;
  max-width: 760px;
}

.poster-stack {
  display: grid;
  gap: 18px;
}

.poster-frame {
  background: var(--paper);
  padding: 16px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  transform: rotate(1.5deg);
}

.poster-frame img {
  width: 100%;
  border-radius: 10px;
}

.quote-card {
  background: var(--ink);
  color: var(--paper);
  padding: 18px 20px;
  border-radius: 16px;
  font-weight: 900;
  font-size: clamp(1.15rem, 0.95rem + 0.6vw, 1.5rem);
  line-height: 1.2;
  box-shadow: 0 14px 30px rgba(17,17,15,.14);
  transform: rotate(-2deg);
}

.facts-header {
  margin-bottom: 28px;
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.fact-card {
  background: var(--paper);
  border: 1px solid rgba(17,17,15,0.1);
  border-radius: 18px;
  padding: 24px 22px 26px;
  box-shadow: var(--shadow);
}

.fact-no {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 900;
  opacity: 0.55;
  margin-bottom: 28px;
}

.fact-card h3 {
  font-size: clamp(1.3rem, 1.15rem + 0.6vw, 2rem);
  letter-spacing: -0.05em;
  margin-bottom: 10px;
}

.fact-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.45;
}

.cta-section {
  background: linear-gradient(140deg, var(--red-dark), var(--red));
  color: var(--paper);
  margin-top: 16px;
  position: relative;
  overflow: hidden;
}

.cta-section::before,
.cta-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(247, 240, 223, 0.08);
}

.cta-section::before {
  width: 380px;
  height: 380px;
  right: -120px;
  top: -130px;
}

.cta-section::after {
  width: 280px;
  height: 280px;
  left: -80px;
  bottom: -80px;
}

.cta-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: clamp(70px, 8vw, 120px) 24px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-inner p {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px 24px 110px;
  max-width: 1360px;
  margin: 0 auto;
  font-size: 0.95rem;
}

.site-footer div {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.site-footer strong {
  font-size: 1.08rem;
}

.mobile-bar {
  display: none;
}

@media (max-width: 1100px) {
  .hero-card,
  .show-grid,
  .facts-grid {
    grid-template-columns: 1fr 1fr;
  }

  .show-grid {
    grid-template-columns: 1fr;
  }

  .poster-stack {
    max-width: 460px;
  }
}

@media (max-width: 880px) {
  .main-nav {
    display: none;
  }

  .header-inner {
    padding: 14px 16px;
  }

  .hero-card {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .hero-visual {
    padding: 22px;
  }

  .ticket-note {
    right: 24px;
    bottom: 34px;
  }

  .facts-grid {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer {
    padding-bottom: 106px;
  }

  .mobile-bar {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background: var(--ink);
    color: var(--paper);
    padding: 12px 12px 12px 16px;
    border-radius: 14px;
    box-shadow: 0 16px 40px rgba(17,17,15,0.28);
    z-index: 60;
  }

  .mobile-bar div {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
  }

  .mobile-bar div strong {
    font-size: 0.95rem;
  }

  .mobile-bar div span {
    margin-top: 4px;
    font-size: 0.76rem;
    opacity: .8;
  }

  .mobile-bar a {
    background: var(--paper);
    color: var(--ink);
    padding: 13px 16px;
    border-radius: 10px;
    font-size: 0.8rem;
  }
}

@media (max-width: 620px) {
  .header-cta {
    padding: 10px 12px;
    font-size: 0.78rem;
  }

  .hero {
    padding-top: 12px;
  }

  .hero-copy h1 {
    font-size: clamp(2.8rem, 13vw, 4.6rem);
  }

  .title-ribbon span {
    font-size: clamp(1.7rem, 8vw, 3rem);
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }

  .ticket-note {
    position: static;
    transform: rotate(-1deg);
    max-width: none;
    margin-top: 14px;
  }

  .facts-grid {
    grid-template-columns: 1fr;
  }

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .marquee-track {
    animation: none;
  }

  .header-cta,
  .btn,
  .mobile-bar a {
    transition: none;
  }
}
