:root {
  --bg: #f6ecda;
  --bg-accent: #f2b134;
  --paper: rgba(255, 248, 236, 0.92);
  --text: #24160c;
  --muted: #704f30;
  --button: #d94b2b;
  --button-hover: #b93d21;
  --shadow: 0 20px 60px rgba(62, 28, 0, 0.22);
  --radius-lg: 28px;
  --radius-md: 20px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 209, 102, 0.95), transparent 34%),
    radial-gradient(circle at top right, rgba(217, 75, 43, 0.35), transparent 28%),
    linear-gradient(180deg, #f7eddc 0%, #f2dca9 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.4) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.35) 1px, transparent 1px);
  background-size: 28px 28px;
}

.page-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 56px;
}

.landing-page {
  position: relative;
  z-index: 1;
}

.hero {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  animation: rise-in 700ms ease-out both;
}

.hero-image {
  display: block;
  width: 100%;
  height: auto;
}

.cta-panel,
.content-card {
  backdrop-filter: blur(12px);
  background: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: var(--shadow);
}

.cta-panel {
  width: min(760px, calc(100% - 28px));
  margin: -52px auto 0;
  padding: 28px;
  border-radius: var(--radius-lg);
  text-align: center;
  animation: rise-in 900ms ease-out both;
}

.eyebrow {
  margin: 0 0 10px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

h1,
h2 {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.03em;
  font-weight: 400;
}

h1 {
  font-size: clamp(2.6rem, 7vw, 5rem);
  line-height: 0.95;
}

.intro {
  max-width: 42rem;
  margin: 14px auto 0;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--muted);
}

.ticket-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  padding: 16px 28px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fffaf4;
  background: linear-gradient(135deg, var(--button) 0%, #ef7a3a 100%);
  box-shadow: 0 16px 30px rgba(217, 75, 43, 0.34);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.ticket-button:hover,
.ticket-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 34px rgba(217, 75, 43, 0.4);
  background: linear-gradient(135deg, var(--button-hover) 0%, #d96525 100%);
}

.content-card {
  margin-top: 28px;
  padding: 32px;
  border-radius: var(--radius-lg);
  animation: rise-in 1100ms ease-out both;
}

.content-card p {
  margin: 0 0 18px;
  font-size: 1.02rem;
  line-height: 1.85;
}

.content-card a {
  color: #8b2a17;
  font-weight: 800;
}

.signature {
  font-weight: 800;
  color: var(--muted);
}

.event-details {
  margin-top: 28px;
  padding: 22px 24px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.58);
}

.event-details h2 {
  margin-bottom: 10px;
  font-size: clamp(2rem, 5vw, 3rem);
}

.event-details p:last-child,
.content-card p:last-child {
  margin-bottom: 0;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: min(100% - 20px, 1120px);
    padding-top: 10px;
    padding-bottom: 28px;
  }

  .cta-panel {
    width: calc(100% - 16px);
    margin-top: -24px;
    padding: 22px 18px;
  }

  .content-card {
    padding: 24px 18px;
  }

  .content-card p {
    font-size: 0.98rem;
    line-height: 1.75;
  }

  .ticket-button {
    width: 100%;
    padding: 16px 20px;
  }
}
