:root {
  --burgundy: #E91E63;
  --burgundy-dark: #B71C5A;
  --burgundy-light: #F06292;
  --cream: #FFFAF0;
  --cream-dark: #FFF3D6;
  --sage: #26A69A;
  --sage-dark: #00897B;
  --gold: #FFC107;
  --gold-dark: #FF9800;
  --charcoal: #212121;
  --gray: #5D4F4F;
  --white: #FFFFFF;
}

* { -webkit-font-smoothing: antialiased; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--charcoal);
  background: var(--white);
}

h1, h2, h3, h4 {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: -0.015em;
}

h1 { font-size: 3.5rem; line-height: 1.05; }
h2 { font-size: 2.5rem; line-height: 1.15; }
h3 { font-size: 1.75rem; line-height: 1.2; }
h4 { font-size: 1.25rem; line-height: 1.3; }

@media (min-width: 768px) {
  h1 { font-size: 5rem; }
  h2 { font-size: 3.25rem; }
  h3 { font-size: 2rem; }
}

.font-display { font-family: 'Fredoka', sans-serif; }
.font-script { font-family: 'Caveat', cursive; }

.bg-cream { background-color: var(--cream); }
.bg-cream-dark { background-color: var(--cream-dark); }
.bg-burgundy { background-color: var(--burgundy); }
.bg-burgundy-dark { background-color: var(--burgundy-dark); }
.bg-sage { background-color: var(--sage); }
.bg-charcoal { background-color: var(--charcoal); }

.text-burgundy { color: var(--burgundy); }
.text-cream { color: var(--cream); }
.text-sage { color: var(--sage); }
.text-gold { color: var(--gold); }
.text-charcoal { color: var(--charcoal); }
.text-gray { color: var(--gray); }

.nav-link {
  color: var(--charcoal);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: color 0.2s ease;
  position: relative;
}
.nav-link:hover { color: var(--burgundy); }
.nav-link.active { color: var(--burgundy); }

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--burgundy);
  color: var(--white);
  font-weight: 500;
  padding: 0.875rem 1.75rem;
  border-radius: 999px;
  border: 2px solid var(--burgundy);
  transition: all 0.2s ease;
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}
.btn-primary:hover {
  background: var(--burgundy-dark);
  border-color: var(--burgundy-dark);
  transform: translateY(-1px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--charcoal);
  font-weight: 500;
  padding: 0.875rem 1.75rem;
  border-radius: 999px;
  border: 2px solid var(--charcoal);
  transition: all 0.2s ease;
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}
.btn-secondary:hover {
  background: var(--charcoal);
  color: var(--white);
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--gold);
  color: var(--charcoal);
  font-weight: 600;
  padding: 0.875rem 1.75rem;
  border-radius: 999px;
  border: 2px solid var(--gold);
  transition: all 0.2s ease;
  text-decoration: none;
}
.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 1rem;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(31,27,26,0.15) 0%, rgba(31,27,26,0.65) 100%);
}

.hero-overlay-burgundy {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(122,46,62,0.85) 0%, rgba(31,27,26,0.75) 100%);
}

.stat-value {
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: 4rem;
  line-height: 1;
  color: var(--burgundy);
  margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--charcoal);
}

.tier-card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: 1rem;
  padding: 2.5rem 2rem;
  transition: all 0.3s ease;
}
.tier-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(31,27,26,0.08);
  border-color: var(--gold);
}
.tier-card.featured {
  background: var(--charcoal);
  color: var(--cream);
  border-color: var(--gold);
}
.tier-card.featured h3,
.tier-card.featured h4 { color: var(--cream); }
.tier-card.featured .tier-price { color: var(--gold); }

.tier-price {
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: 3.5rem;
  color: var(--burgundy);
  line-height: 1;
}

.event-card {
  background: var(--white);
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(31,27,26,0.05);
}
.event-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(31,27,26,0.12);
}
.event-card-img {
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
}

.feature-tag {
  display: inline-block;
  background: var(--cream);
  color: var(--burgundy);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.35rem 0.875rem;
  border-radius: 999px;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
}

.testimonial {
  background: var(--white);
  border-left: 3px solid var(--gold);
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px rgba(31,27,26,0.05);
}

.faq-item {
  border-bottom: 1px solid var(--cream-dark);
  padding: 1.5rem 0;
}
.faq-q {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}
.faq-a {
  color: var(--gray);
  line-height: 1.7;
}

.divider-script {
  font-family: 'Caveat', cursive;
  color: var(--gold);
  font-size: 1.5rem;
  text-align: center;
}

.mobile-menu { display: none; }
.mobile-menu.open { display: block; }

@media (max-width: 767px) {
  h1 { font-size: 2.75rem; }
  .stat-value { font-size: 3rem; }
  .tier-price { font-size: 2.75rem; }
}

footer {
  background: var(--charcoal);
  color: var(--cream);
  padding: 4rem 0 2rem;
}
footer h4 {
  color: var(--cream);
  font-size: 1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  margin-bottom: 1.25rem;
}
footer a {
  color: rgba(245,237,224,0.7);
  transition: color 0.2s ease;
  text-decoration: none;
}
footer a:hover { color: var(--gold); }
footer .footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  background: rgba(245,237,224,0.08);
  color: var(--cream);
  transition: all 0.2s ease;
  margin-right: 0.5rem;
}
footer .footer-social a:hover {
  background: var(--gold);
  color: var(--charcoal);
}
footer input[type="email"] {
  background: rgba(245,237,224,0.08);
  border: 1px solid rgba(245,237,224,0.15);
  color: var(--cream);
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  width: 100%;
  font-size: 0.95rem;
}
footer input[type="email"]::placeholder { color: rgba(245,237,224,0.4); }
footer input[type="email"]:focus {
  outline: none;
  border-color: var(--gold);
}
