:root {
  --red: #e0201b;
  --red-dark: #b81813;
  --pink: #f8c9cf;
  --pink-light: #fbe0e4;
  --cream: #fffdfb;
  --ink: #1a1a1a;
  --white: #ffffff;
  --shadow: 0 12px 40px rgba(224, 32, 27, 0.18);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: "Poppins", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  line-height: 1.6;
  background: var(--white);
}

/* ---------- Candy stripe background ---------- */
.stripes {
  background-image: repeating-linear-gradient(
    180deg,
    var(--red) 0px,
    var(--red) 46px,
    var(--pink) 46px,
    var(--pink) 92px
  );
}

/* ---------- Script font utility ---------- */
.script { font-family: "Caveat", cursive; font-weight: 700; }

/* ---------- Nav ---------- */
header.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  border-bottom: 3px solid var(--red);
  box-shadow: 0 4px 18px rgba(0,0,0,0.06);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.85rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  font-family: "Caveat", cursive;
  font-weight: 700;
  font-size: 1.9rem;
  color: var(--red);
  text-decoration: none;
  line-height: 1;
}
.nav-links { display: flex; gap: 0.4rem; align-items: center; }
.nav-links a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  transition: background 0.2s, color 0.2s;
}
.nav-links a:hover { background: var(--pink-light); color: var(--red-dark); }
.nav-links a.btn { background: var(--red); color: var(--white); }
.nav-links a.btn:hover { background: var(--red-dark); color: var(--white); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 3.5rem 1.5rem;
  text-align: center;
}
.hero-card {
  max-width: 760px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 90px / 60px;
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow);
}
.hero .edition {
  color: var(--red);
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 0.95rem;
}
.hero h1 {
  font-family: "Caveat", cursive;
  font-weight: 700;
  font-size: clamp(4rem, 14vw, 8rem);
  line-height: 0.82;
  color: var(--ink);
  margin: 0.4rem 0;
}
.hero .subtitle {
  color: var(--red);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 1.05rem;
  margin-bottom: 1.6rem;
}
.hero .datebar {
  font-size: 1.35rem;
  font-weight: 700;
}
.hero .datebar .day-num {
  font-family: "Caveat", cursive;
  font-size: 2.6rem;
  color: var(--red);
  vertical-align: -0.35rem;
  margin: 0 0.2rem;
}
.hero .when { font-weight: 600; margin-top: 0.4rem; }
.hero .where {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.2rem;
  font-size: 0.95rem;
}
.hero .tagline {
  color: #555;
  font-style: italic;
  margin-top: 1.2rem;
  font-size: 1.05rem;
}

/* ---------- Buttons ---------- */
.cta-row {
  margin-top: 1.8rem;
  display: flex;
  gap: 0.8rem;
  justify-content: center;
  flex-wrap: wrap;
}
.button {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  transition: transform 0.15s, background 0.2s;
  box-shadow: 0 6px 18px rgba(224,32,27,0.3);
}
.button:hover { background: var(--red-dark); transform: translateY(-2px); }
.button.ghost {
  background: transparent;
  color: var(--red);
  border: 2px solid var(--red);
  box-shadow: none;
}
.button.ghost:hover { background: var(--red); color: var(--white); }

/* ---------- Info cards ---------- */
.section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 3.5rem 1.5rem;
}
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.card {
  background: var(--white);
  border: 2px solid var(--pink);
  border-radius: 22px;
  padding: 2rem 1.6rem;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card h3 {
  font-family: "Caveat", cursive;
  font-size: 2rem;
  color: var(--red);
  margin-bottom: 0.6rem;
}
.card .price { font-weight: 700; font-size: 1.2rem; }
.card .muted { color: var(--red); font-weight: 600; font-size: 0.85rem; }
.card p { margin-top: 0.6rem; font-size: 0.98rem; }
.card .warn {
  display: inline-block;
  margin-top: 0.8rem;
  font-weight: 700;
  color: var(--white);
  background: var(--red);
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-size: 0.85rem;
}

/* ---------- Partners ---------- */
.partners { text-align: center; }
.partners h2 {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--red);
  font-size: 1rem;
  margin-bottom: 1.4rem;
}
.partner-list {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}
.partner-chip {
  background: var(--white);
  border: 2px solid var(--pink);
  border-radius: 16px;
  padding: 1rem 1.6rem;
  font-weight: 700;
  max-width: 300px;
}

/* ---------- Section heading ---------- */
.section-title {
  text-align: center;
  margin-bottom: 2rem;
}
.section-title h2 {
  font-family: "Caveat", cursive;
  font-size: clamp(2.5rem, 7vw, 3.8rem);
  color: var(--ink);
}
.section-title p { color: #666; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border: 2px solid var(--pink);
  border-radius: 16px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.open { border-color: var(--red); }
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: 1.2rem 1.4rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: inherit;
}
.faq-q:hover { color: var(--red-dark); }
.faq-q .icon {
  flex: 0 0 auto;
  font-size: 1.5rem;
  color: var(--red);
  transition: transform 0.25s;
  line-height: 1;
}
.faq-item.open .faq-q .icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-a-inner { padding: 0 1.4rem 1.3rem; color: #444; }
.faq-a a { color: var(--red); font-weight: 600; }

/* ---------- Footer ---------- */
footer.site-footer {
  background: var(--red);
  color: var(--white);
  text-align: center;
  padding: 2.5rem 1.5rem;
}
footer.site-footer .brand-foot {
  font-family: "Caveat", cursive;
  font-size: 2.2rem;
  display: block;
  margin-bottom: 0.4rem;
}
footer.site-footer a { color: var(--white); }
footer.site-footer .small { opacity: 0.85; font-size: 0.85rem; margin-top: 0.8rem; }

/* ---------- Decorative tomatoes ---------- */
.tomato {
  position: absolute;
  width: 120px;
  opacity: 0.9;
  pointer-events: none;
}
.tomato.tl { top: 10px; left: 10px; }
.tomato.br { bottom: 10px; right: 10px; transform: rotate(180deg); }

@media (max-width: 640px) {
  .tomato { display: none; }
  .hero-card { padding: 2.2rem 1.3rem; border-radius: 40px; }
  .nav-links a:not(.btn) { display: none; }
}
