/* ============================================================
   TASTE OF SANTA ANA — "Frights & Bites"
   Shared stylesheet · ST Halloween-inspired theme
   Creepster display · burnt-orange #F55227 · deep purple
   ============================================================ */

@import url('https://fonts.cdnfonts.com/css/agnets-type');
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

:root {
  /* Core palette — burnt orange on haunted purple */
  --bg:         #150a29;
  --bg-2:       #0f0720;
  --panel:      #251044;
  --panel-2:    #1c0c38;
  --panel-line: rgba(245,82,39,0.18);
  --accent:     #f55227;   /* signature ST orange */
  --accent-2:   #ff8a3d;   /* lighter orange */
  --gold:       #ffb43d;   /* amber/star */
  --violet:     #7d3cff;   /* electric violet glow */
  --text:       #ece4f7;   /* soft lavender white */
  --text-dim:   #b6a6d0;
  --white:      #ffffff;

  --font-display: 'Agnets Type', system-ui, sans-serif;
  --font-head:    'Outfit', system-ui, sans-serif;
  --font-body:    'Outfit', system-ui, sans-serif;

  --maxw: 1200px;
  --radius: 16px;
  --glow-orange: 0 0 40px rgba(245,82,39,0.45);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--text);
  background:
    radial-gradient(1100px 700px at 78% -8%, rgba(125,60,255,0.35), transparent 60%),
    radial-gradient(900px 600px at 12% 4%, rgba(245,82,39,0.18), transparent 55%),
    linear-gradient(180deg, var(--bg) 0%, #130826 48%, var(--bg-2) 100%);
  background-attachment: fixed;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* Faint grain */
body::after {
  content: "";
  position: fixed; inset: 0; pointer-events: none; z-index: 9999;
  opacity: 0.04; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---------- Typography ---------- */
h1, h2, h3 { font-family: var(--font-display); font-weight: 400; line-height: 1.02; }
.eyebrow {
  font-family: var(--font-head);
  text-transform: uppercase; letter-spacing: 0.3em;
  font-size: 0.8rem; color: var(--accent); font-weight: 600;
}
.section-title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  color: var(--white); letter-spacing: 0.02em;
  text-shadow: 0 3px 0 rgba(0,0,0,0.25);
}
.section-title .glow { color: var(--accent); text-shadow: 0 0 26px rgba(245,82,39,0.6); }
.lede { font-family: var(--font-body); font-size: 1.18rem; color: var(--text-dim); max-width: 62ch; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.5em;
  font-family: var(--font-head);
  text-transform: uppercase; letter-spacing: 0.08em;
  font-size: 0.9rem; font-weight: 700;
  padding: 0.95em 2em; border-radius: 10px;
  cursor: pointer; border: none;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  box-shadow: 0 10px 26px rgba(245,82,39,0.4);
}
.btn-primary:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(245,82,39,0.6); }
.btn-ghost {
  background: transparent; color: var(--text);
  border: 2px solid rgba(245,82,39,0.5);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-4px); }
.btn-poison {
  background: linear-gradient(135deg, var(--gold), var(--accent));
  color: #2a1004;
  box-shadow: 0 10px 26px rgba(255,180,61,0.32);
}
.btn-poison:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(255,180,61,0.5); }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  backdrop-filter: blur(12px);
  background: linear-gradient(180deg, rgba(21,10,41,0.94), rgba(21,10,41,0.55));
  border-bottom: 1px solid rgba(245,82,39,0.16);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 78px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark { width: 44px; height: 44px; flex: none; filter: drop-shadow(0 0 8px rgba(245,82,39,0.7)); }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text b {
  font-family: var(--font-display); font-weight: 400; font-size: 1.4rem;
  letter-spacing: 0.03em; color: var(--white);
}
.brand-text span {
  font-family: var(--font-head); font-size: 0.6rem; letter-spacing: 0.32em;
  text-transform: uppercase; color: var(--accent); margin-top: 4px; font-weight: 600;
}
.brand-logo { height: 42px; width: auto; display: block; }
@media (max-width: 480px) { .brand-logo { height: 34px; } }
.nav-links { display: flex; align-items: center; gap: 30px; list-style: none; }
.nav-links a {
  font-family: var(--font-head); font-size: 0.86rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-dim); font-weight: 600;
  position: relative; transition: color 0.25s;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px;
  background: var(--accent); transition: width 0.3s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 26px; height: 2px; background: var(--text); margin: 5px 0; transition: 0.3s; }

@media (max-width: 900px) {
  .nav-links {
    position: fixed; inset: 78px 0 auto 0; flex-direction: column; gap: 0;
    background: rgba(21,10,41,0.98); backdrop-filter: blur(14px);
    padding: 10px 0 24px; border-bottom: 1px solid rgba(245,82,39,0.2);
    transform: translateY(-140%); transition: transform 0.4s var(--ease);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: 16px 24px; width: 100%; text-align: center; font-size: 1rem; }
  .nav-links a::after { display: none; }
  .nav-toggle { display: block; }
  .nav-cta .btn { display: none; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; overflow: hidden;
  min-height: 94vh; display: flex; align-items: center;
  padding: 70px 0 150px; text-align: center;
}
.hero-moon {
  position: absolute; top: 8%; left: 50%; transform: translateX(-50%);
  width: min(620px, 92vw); aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle at 50% 45%, rgba(255,138,61,0.25), rgba(125,60,255,0.12) 45%, transparent 70%);
  z-index: 0; animation: moonGlow 7s ease-in-out infinite alternate;
}
@keyframes moonGlow { from { opacity: 0.7; } to { opacity: 1; } }

.hero-inner { position: relative; z-index: 3; max-width: 940px; margin: 0 auto; }
.hero .tag-row { display: flex; align-items: center; justify-content: center; gap: 14px; margin-bottom: 26px; flex-wrap: wrap; }
.chip {
  font-family: var(--font-head); font-size: 0.72rem; letter-spacing: 0.18em; font-weight: 600;
  text-transform: uppercase; padding: 8px 16px; border-radius: 100px;
  border: 1px solid rgba(255,180,61,0.4); color: var(--gold); background: rgba(255,180,61,0.07);
}
.chip.orange { border-color: rgba(245,82,39,0.5); color: var(--accent-2); background: rgba(245,82,39,0.08); }

.hero h1 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(3.2rem, 11vw, 8rem);
  color: var(--white); letter-spacing: 0.02em; line-height: 0.98;
  text-shadow: 0 4px 0 rgba(0,0,0,0.3);
}
.hero h1 .frights {
  display: block; color: var(--accent);
  text-shadow: 0 0 44px rgba(245,82,39,0.7), 0 0 8px rgba(245,82,39,0.9);
  animation: flicker 4.5s infinite;
}
@keyframes flicker {
  0%,18%,22%,25%,53%,57%,100% { opacity: 1; }
  20%,24%,55% { opacity: 0.74; }
}
.hero .lede { margin: 22px auto 12px; }
.hero-meta {
  display: flex; gap: 26px; flex-wrap: wrap; justify-content: center; margin: 26px 0 0;
  font-family: var(--font-head); color: var(--text); font-weight: 500;
}
.hero-meta .m { display: flex; align-items: center; gap: 10px; font-size: 0.98rem; letter-spacing: 0.02em; }
.hero-meta .m svg { width: 22px; height: 22px; color: var(--accent); flex: none; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; margin-top: 34px; }

/* Big date + tagline (ST style) */
.hero-date {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(2.4rem, 6vw, 4rem); color: var(--gold);
  letter-spacing: 0.05em; margin-top: 20px;
  text-shadow: 0 0 30px rgba(255,180,61,0.45);
}
.hero-tagline {
  font-family: var(--font-head); text-transform: uppercase; letter-spacing: 0.34em;
  font-size: 0.82rem; color: var(--text-dim); margin-top: 6px;
}

/* Fog + cue */
.fog {
  position: absolute; left: 0; right: 0; bottom: -2px; height: 220px; z-index: 2;
  background: linear-gradient(180deg, transparent, rgba(37,16,68,0.55) 55%, var(--bg-2) 100%);
  pointer-events: none;
}
.scroll-cue {
  position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%); z-index: 4;
  font-family: var(--font-head); font-size: 0.68rem; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--text-dim); text-align: center;
}
.scroll-cue .dot { display: block; width: 2px; height: 44px; margin: 12px auto 0;
  background: linear-gradient(var(--accent), transparent); animation: cue 1.8s infinite; }
@keyframes cue { 0%{opacity:0; transform:scaleY(0.3) translateY(-10px);} 50%{opacity:1;} 100%{opacity:0; transform:scaleY(1) translateY(10px);} }

/* Floating bats */
.bat { position: absolute; z-index: 1; opacity: 0.9; animation: fly 9s ease-in-out infinite; }
.bat svg { width: 100%; height: 100%; fill: #0c0518; }
.bat.b1 { width: 62px; top: 16%; left: 10%; animation-delay: 0s; }
.bat.b2 { width: 40px; top: 26%; left: 82%; animation-delay: 1.4s; }
.bat.b3 { width: 50px; top: 12%; left: 68%; animation-delay: 2.6s; }
.bat.b4 { width: 32px; top: 40%; left: 20%; animation-delay: 3.5s; }
@keyframes fly {
  0%,100% { transform: translate(0,0) rotate(-3deg); }
  25% { transform: translate(24px,-18px) rotate(4deg); }
  50% { transform: translate(-16px,10px) rotate(-2deg); }
  75% { transform: translate(18px,14px) rotate(3deg); }
}

/* ============================================================
   SECTIONS  (ST centered header pattern)
   ============================================================ */
section.block { padding: 92px 0; position: relative; }
.section-head { max-width: 760px; margin: 0 auto 54px; text-align: center; }
.section-head.center { text-align: center; }
.section-head .eyebrow { margin-bottom: 14px; display: block; }
.section-head .lede { margin-left: auto; margin-right: auto; }
.divider-bones {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  color: var(--accent); font-size: 1.4rem; margin: 14px 0 0;
}
.divider-bones::before, .divider-bones::after {
  content: ""; height: 2px; flex: 1; max-width: 120px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.tint { background: linear-gradient(180deg, rgba(37,16,68,0.34), rgba(15,7,32,0.05)); }

/* ---------- Feature strip (image-box style) ---------- */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.feature {
  background: linear-gradient(165deg, var(--panel), var(--panel-2));
  border: 1px solid var(--panel-line); border-radius: var(--radius);
  padding: 38px 28px; text-align: center;
  transition: transform 0.4s var(--ease), border-color 0.3s, box-shadow 0.3s;
}
.feature:hover { transform: translateY(-8px); border-color: var(--accent); box-shadow: 0 20px 44px rgba(0,0,0,0.4); }
.feature .ico {
  width: 92px; height: 92px; margin: 0 auto 18px; border-radius: 50%;
  display: grid; place-items: center; font-size: 2.6rem;
  background: radial-gradient(circle at 50% 40%, rgba(245,82,39,0.25), rgba(21,10,41,0.4));
  border: 1px solid rgba(245,82,39,0.35);
}
.feature h3 { font-family: var(--font-head); font-weight: 700; font-size: 1.4rem; color: var(--white); margin-bottom: 10px; }
.feature p { color: var(--text-dim); font-size: 1.02rem; }

/* ---------- Restaurant grid ---------- */
.rgrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.rcard {
  position: relative; display: flex; flex-direction: column;
  border-radius: var(--radius); overflow: hidden; color: inherit;
  background: linear-gradient(160deg, var(--panel), var(--panel-2));
  border: 1px solid var(--panel-line);
  transition: transform 0.4s var(--ease), box-shadow 0.4s, border-color 0.3s;
}
.rcard:hover { transform: translateY(-6px); border-color: var(--accent); box-shadow: 0 18px 40px rgba(0,0,0,0.5); }
.rcard-media { position: relative; aspect-ratio: 4 / 3; overflow: hidden;
  background: linear-gradient(160deg, var(--panel-2), #0c0518); }
.rcard-photo { width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.5s var(--ease); }
.rcard:hover .rcard-photo { transform: scale(1.07); }
.rcard-fallback { width: 100%; height: 100%; display: grid; place-items: center; font-size: 3rem; opacity: 0.55;
  background-image: radial-gradient(circle at 30% 25%, rgba(245,82,39,0.28), transparent 55%),
                    radial-gradient(circle at 80% 90%, rgba(125,60,255,0.28), transparent 55%); }
.rcard-logo {
  position: absolute; top: 12px; left: 12px; width: 52px; height: 52px;
  border-radius: 12px; object-fit: contain; background: #fff; padding: 6px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.45); border: 1px solid rgba(255,255,255,0.6);
}
.rcard-body { padding: 16px 18px 18px; }
.rcard-body h4 { font-family: var(--font-head); font-weight: 700; font-size: 1.14rem; color: var(--white); line-height: 1.2; }
.rcard-body span { display: block; margin-top: 4px; font-family: var(--font-head); font-size: 0.92rem; color: var(--gold); letter-spacing: 0.02em; }
.rgrid-note { text-align: center; margin-top: 34px; color: var(--text-dim); font-size: 1.08rem; }

/* ---------- Sponsor grid ---------- */
.sgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.scard {
  background: linear-gradient(160deg, rgba(255,255,255,0.05), rgba(21,10,41,0.35));
  border: 1px solid rgba(236,228,247,0.14); border-radius: var(--radius);
  min-height: 156px; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px; padding: 28px; text-align: center;
  transition: transform 0.4s var(--ease), border-color 0.3s, background 0.3s;
}
.scard:hover { transform: translateY(-6px); border-color: var(--accent); background: linear-gradient(160deg, rgba(245,82,39,0.12), rgba(21,10,41,0.35)); }
.scard .logo-emoji { font-size: 2.8rem; }
.scard b { font-family: var(--font-head); font-weight: 700; font-size: 1.2rem; color: var(--white); }
.scard small { font-family: var(--font-head); text-transform: uppercase; letter-spacing: 0.2em; font-size: 0.66rem; color: var(--accent); font-weight: 600; }

/* ---------- Entertainment / bands ---------- */
.bgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.bcard {
  position: relative; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--panel-line); min-height: 330px;
  display: flex; flex-direction: column; justify-content: flex-end; padding: 30px;
  background: linear-gradient(180deg, rgba(37,16,68,0.5), rgba(15,7,32,0.92));
  transition: transform 0.4s var(--ease), box-shadow 0.4s, border-color 0.3s;
}
.bcard::before {
  content: ""; position: absolute; inset: 0; z-index: 0; opacity: 0.55;
  background: radial-gradient(circle at 50% 20%, rgba(245,82,39,0.35), transparent 62%);
}
.bcard:hover { transform: translateY(-8px); border-color: var(--accent); box-shadow: 0 22px 52px rgba(0,0,0,0.55); }
.bcard .b-ico { position: relative; z-index: 1; font-size: 3.4rem; margin-bottom: auto; }
.bcard .b-time { position: relative; z-index: 1; font-family: var(--font-head); font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; font-size: 0.72rem; color: var(--gold); }
.bcard h3 { position: relative; z-index: 1; font-family: var(--font-display); font-weight: 400; font-size: 2rem; color: var(--white); margin: 8px 0; letter-spacing: 0.02em; }
.bcard p { position: relative; z-index: 1; color: var(--text-dim); font-size: 1rem; }

/* ---------- When / details ---------- */
.when { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: center; }
.when .section-head, .when-col-head { text-align: left; }
.when-card {
  background: linear-gradient(160deg, var(--panel), var(--panel-2));
  border: 1px solid var(--panel-line); border-radius: 20px; padding: 40px;
}
.when-list { list-style: none; display: flex; flex-direction: column; gap: 22px; }
.when-list li { display: flex; gap: 18px; align-items: flex-start; }
.when-list .ic {
  width: 52px; height: 52px; flex: none; border-radius: 14px; display: grid; place-items: center; font-size: 1.5rem;
  background: rgba(245,82,39,0.14); border: 1px solid rgba(245,82,39,0.34);
}
.when-list b { font-family: var(--font-head); color: var(--gold); font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; display: block; margin-bottom: 3px; font-weight: 600; }
.when-list span { font-size: 1.16rem; color: var(--text); }
.countdown { display: flex; gap: 14px; margin-top: 8px; }
.cd-box {
  flex: 1; text-align: center; padding: 22px 10px; border-radius: 14px;
  background: linear-gradient(180deg, rgba(245,82,39,0.16), rgba(15,7,32,0.5));
  border: 1px solid rgba(245,82,39,0.24);
}
.cd-box .num { font-family: var(--font-head); font-weight: 800; font-size: 2.5rem; color: var(--accent); line-height: 1; text-shadow: 0 0 18px rgba(245,82,39,0.5); }
.cd-box .lbl { font-family: var(--font-head); font-size: 0.64rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-dim); margin-top: 8px; font-weight: 600; }

/* Hero countdown (bigger, glassy) */
.hero-countdown { display: flex; gap: 16px; justify-content: center; margin: 30px auto 0; max-width: 560px; }
.hero-countdown .cd-box {
  flex: 1; background: linear-gradient(180deg, rgba(37,16,68,0.7), rgba(15,7,32,0.6));
  border: 1px solid rgba(245,82,39,0.3); backdrop-filter: blur(6px);
}
.hero-countdown .cd-box .num { font-size: 3rem; }

/* ---------- CTA banner ---------- */
.cta-banner {
  text-align: center; border-radius: 24px; padding: 74px 30px; position: relative; overflow: hidden;
  background: linear-gradient(135deg, rgba(245,82,39,0.28), rgba(125,60,255,0.28));
  border: 1px solid rgba(245,82,39,0.28);
}
.cta-banner h2 { font-family: var(--font-display); font-weight: 400; font-size: clamp(2.4rem, 6vw, 4rem); color: var(--white); margin-bottom: 16px; letter-spacing: 0.02em; }
.cta-banner .actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 28px; }

/* ============================================================
   PAGE HERO (interior pages)
   ============================================================ */
.page-hero { padding: 88px 0 54px; text-align: center; position: relative; }
.page-hero .eyebrow { margin-bottom: 18px; display: inline-block; }
.page-hero h1 { font-family: var(--font-display); font-weight: 400; font-size: clamp(3rem, 9vw, 6rem); color: var(--white); letter-spacing: 0.02em; }
.page-hero h1 .glow { color: var(--accent); text-shadow: 0 0 30px rgba(245,82,39,0.6); }
.page-hero p { margin: 22px auto 0; max-width: 64ch; color: var(--text-dim); font-size: 1.2rem; }

/* ============================================================
   FORMS
   ============================================================ */
.form-wrap { max-width: 800px; margin: 0 auto; }
.form-card {
  background: linear-gradient(160deg, var(--panel), var(--panel-2));
  border: 1px solid var(--panel-line); border-radius: 20px; padding: 44px;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { font-family: var(--font-head); font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.field label .req { color: var(--accent); }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 1.04rem; color: var(--text);
  background: rgba(15,7,32,0.6); border: 1px solid rgba(236,228,247,0.18);
  border-radius: 10px; padding: 13px 16px; transition: border-color 0.25s, box-shadow 0.25s;
}
.field input::placeholder, .field textarea::placeholder { color: rgba(182,166,208,0.55); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(245,82,39,0.16);
}
.field textarea { resize: vertical; min-height: 120px; }
.field select { appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='%23f55227'%3E%3Cpath d='M7 10L2 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center; }
.form-actions { margin-top: 30px; display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.form-note { font-size: 0.96rem; color: var(--text-dim); }
.form-success {
  display: none; margin-top: 22px; padding: 18px 22px; border-radius: 12px;
  background: rgba(245,82,39,0.14); border: 1px solid rgba(245,82,39,0.45); color: var(--gold);
  font-size: 1.08rem;
}
.form-success.show { display: block; animation: pop 0.4s var(--ease); }
@keyframes pop { from { transform: scale(0.96); opacity: 0; } to { transform: scale(1); opacity: 1; } }

/* ---------- Ticket options ---------- */
.tickets-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 50px; }
.ticket {
  position: relative; border-radius: 20px; padding: 40px 30px;
  background: linear-gradient(170deg, var(--panel), var(--panel-2));
  border: 1px solid var(--panel-line);
  display: flex; flex-direction: column; text-align: center;
  transition: transform 0.4s var(--ease), border-color 0.3s, box-shadow 0.4s;
}
.ticket:hover { transform: translateY(-8px); box-shadow: 0 24px 60px rgba(0,0,0,0.5); }
.ticket.featured { border-color: var(--accent); box-shadow: var(--glow-orange); }
.ticket .flag {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  font-family: var(--font-head); font-weight: 700; font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase;
  background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #fff;
  padding: 7px 18px; border-radius: 100px; white-space: nowrap;
}
.ticket .t-name { font-family: var(--font-display); font-weight: 400; font-size: 1.9rem; color: var(--gold); letter-spacing: 0.03em; }
.ticket .t-price { font-family: var(--font-display); font-weight: 400; font-size: 3.4rem; color: var(--white); margin: 10px 0 2px; }
.ticket .t-price sup { font-size: 1.3rem; color: var(--text-dim); vertical-align: super; }
.ticket .t-sub { color: var(--accent); font-family: var(--font-head); font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; font-size: 0.7rem; margin-bottom: 22px; }
.ticket ul { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; flex: 1; text-align: left; }
.ticket li { display: flex; gap: 10px; color: var(--text-dim); font-size: 1.02rem; }
.ticket li::before { content: "🎃"; font-size: 0.95rem; }
.ticket .btn { width: 100%; justify-content: center; }

/* ---------- Sponsorship packages ---------- */
.pkg-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; align-items: stretch; }
.pkg {
  position: relative; border-radius: 20px; padding: 36px 26px; overflow: hidden;
  background: linear-gradient(175deg, var(--panel), var(--panel-2));
  border: 1px solid rgba(236,228,247,0.14);
  display: flex; flex-direction: column;
  transition: transform 0.4s var(--ease), border-color 0.3s, box-shadow 0.4s;
}
.pkg:hover { transform: translateY(-8px); box-shadow: 0 24px 60px rgba(0,0,0,0.5); }
.pkg.spotlight { border-color: var(--accent); box-shadow: var(--glow-orange); }
.pkg .tier-ico { font-size: 2.8rem; margin-bottom: 10px; }
.pkg .tier { font-family: var(--font-display); font-weight: 400; font-size: 1.9rem; color: var(--white); letter-spacing: 0.03em; }
.pkg .price { font-family: var(--font-display); font-weight: 400; font-size: 2.5rem; margin: 10px 0 2px; }
.pkg.t-pumpkin .price { color: var(--accent); }
.pkg.t-poison .price { color: var(--gold); }
.pkg.t-amber .price { color: var(--accent-2); }
.pkg.t-wine .price { color: #ff6b84; }
.pkg .avail { font-family: var(--font-head); font-weight: 600; font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 22px; }
.pkg ul { list-style: none; display: flex; flex-direction: column; gap: 11px; margin-bottom: 26px; flex: 1; }
.pkg li { display: flex; gap: 10px; color: var(--text-dim); font-size: 1rem; line-height: 1.4; }
.pkg li::before { content: "✦"; color: var(--accent); flex: none; }
.pkg .btn { width: 100%; justify-content: center; }
.compare-note { text-align: center; margin: 40px auto 0; max-width: 60ch; color: var(--text-dim); }

/* ---------- Split (stats) ---------- */
.split { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.split .cell {
  padding: 34px 30px; border-radius: var(--radius); text-align: center;
  background: linear-gradient(160deg, var(--panel), var(--panel-2));
  border: 1px solid var(--panel-line);
}
.split .cell .big { font-family: var(--font-display); font-weight: 400; font-size: 3rem; color: var(--accent); text-shadow: 0 0 20px rgba(245,82,39,0.4); }
.split .cell p { color: var(--text-dim); margin-top: 8px; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
.step { padding: 30px 24px; border-radius: var(--radius); position: relative;
  background: linear-gradient(160deg, var(--panel), var(--panel-2));
  border: 1px solid var(--panel-line); }
.step::before {
  counter-increment: step; content: counter(step);
  font-family: var(--font-display); font-weight: 400; font-size: 2.8rem; color: var(--accent);
  display: block; margin-bottom: 10px;
}
.step h4 { font-family: var(--font-head); font-weight: 700; color: var(--white); font-size: 1.2rem; margin-bottom: 8px; }
.step p { color: var(--text-dim); font-size: 1rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  margin-top: 40px; padding: 72px 0 34px; position: relative;
  background: linear-gradient(180deg, transparent, rgba(28,12,56,0.92));
  border-top: 1px solid rgba(245,82,39,0.16);
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
.footer-brand .brand { margin-bottom: 16px; }
.footer-brand p { color: var(--text-dim); font-size: 1.02rem; max-width: 34ch; }
.foot-col h5 { font-family: var(--font-head); font-weight: 700; text-transform: uppercase; letter-spacing: 0.16em; font-size: 0.78rem; color: var(--gold); margin-bottom: 18px; }
.foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.foot-col a, .foot-col li { color: var(--text-dim); font-size: 1rem; transition: color 0.25s; }
.foot-col a:hover { color: var(--accent); }
.socials { display: flex; gap: 12px; margin-top: 16px; }
.socials a {
  width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center;
  border: 1px solid rgba(236,228,247,0.25); color: var(--text); transition: 0.3s;
}
.socials a:hover { background: var(--accent); border-color: var(--accent); color: #1a0a05; transform: translateY(-3px); }
.socials svg { width: 18px; height: 18px; }
.footer-bottom {
  margin-top: 50px; padding-top: 24px; border-top: 1px solid rgba(236,228,247,0.12);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  color: var(--text-dim); font-size: 0.92rem;
}

/* ============================================================
   SPONSOR SHOWCASE (our-sponsors page)
   ============================================================ */
.tier-band { display: flex; align-items: center; justify-content: center; gap: 18px; margin: 0 auto 34px; max-width: 760px; }
.tier-band::before, .tier-band::after { content: ""; height: 2px; flex: 1; background: linear-gradient(90deg, transparent, var(--accent), transparent); }
.tier-band span { font-family: var(--font-head); font-weight: 700; text-transform: uppercase; letter-spacing: 0.22em; font-size: 0.82rem; color: var(--gold); white-space: nowrap; }

.presenting-card {
  display: grid; grid-template-columns: 210px 1fr; gap: 36px; align-items: center;
  background: linear-gradient(160deg, rgba(245,82,39,0.16), rgba(28,12,56,0.6));
  border: 1px solid var(--accent); border-radius: 22px; padding: 44px;
  box-shadow: var(--glow-orange); max-width: 940px; margin: 0 auto;
}
.presenting-card .p-logo {
  aspect-ratio: 1; border-radius: 20px; display: grid; place-items: center; font-size: 5rem;
  background: radial-gradient(circle at 50% 40%, rgba(255,138,61,0.28), rgba(21,10,41,0.5));
  border: 1px solid rgba(245,82,39,0.4);
}
.presenting-card small { font-family: var(--font-head); font-weight: 700; text-transform: uppercase; letter-spacing: 0.2em; font-size: 0.72rem; color: var(--accent); }
.presenting-card h3 { font-family: var(--font-display); font-weight: 400; font-size: clamp(2.2rem, 4vw, 3.2rem); color: var(--white); margin: 8px 0 12px; letter-spacing: 0.02em; }
.presenting-card p { color: var(--text-dim); font-size: 1.08rem; }

.sgrid.two { grid-template-columns: repeat(2, 1fr); max-width: 780px; margin-left: auto; margin-right: auto; }
.sgrid.four { grid-template-columns: repeat(4, 1fr); }

.friends { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; max-width: 860px; margin: 0 auto; }
.friends span {
  font-family: var(--font-head); font-weight: 600; color: var(--text-dim);
  padding: 11px 20px; border-radius: 100px; border: 1px solid rgba(236,228,247,0.16);
  background: rgba(37,16,68,0.4); transition: 0.3s; font-size: 0.98rem;
}
.friends span:hover { border-color: var(--accent); color: var(--white); transform: translateY(-3px); }

@media (max-width: 780px) {
  .presenting-card { grid-template-columns: 1fr; text-align: center; padding: 30px; }
  .presenting-card .p-logo { max-width: 160px; margin: 0 auto; }
  .sgrid.four { grid-template-columns: 1fr; }
}
@media (max-width: 1000px) { .sgrid.four { grid-template-columns: repeat(2, 1fr); } }

/* ============================================================
   DECORATIVE PROPS (trees, pumpkins, spider webs)
   Injected into <body> by main.js · sit behind content
   ============================================================ */
.deco-layer { position: fixed; inset: 0; z-index: -1; pointer-events: none; overflow: hidden; }

.deco-tree { position: absolute; bottom: 0; width: clamp(150px, 15vw, 240px); opacity: 0.55; }
.deco-tree svg { width: 100%; height: auto; filter: drop-shadow(0 0 14px rgba(245,82,39,0.18)); }
.deco-tree.left { left: -18px; }
.deco-tree.right { right: -18px; transform: scaleX(-1); }

.deco-web { position: absolute; width: clamp(90px, 10vw, 150px); opacity: 0.6; }
.deco-web.tl { top: 78px; left: 0; }
.deco-web.tr { top: 78px; right: 0; transform: scaleX(-1); }
.deco-web svg { width: 100%; height: auto; }

.deco-pumpkin { position: absolute; width: clamp(38px, 4vw, 60px); animation: bob 6s ease-in-out infinite; }
.deco-pumpkin svg { width: 100%; height: auto; filter: drop-shadow(0 6px 14px rgba(0,0,0,0.5)); }
.deco-pumpkin.p1 { left: 22px; bottom: 26px; animation-delay: 0s; }
.deco-pumpkin.p2 { right: 30px; bottom: 40px; width: clamp(30px, 3vw, 46px); animation-delay: 1.6s; }
.deco-pumpkin.p3 { right: 46px; top: 34%; width: clamp(26px, 2.6vw, 40px); opacity: 0.85; animation-delay: 3s; }
@keyframes bob { 0%,100% { transform: translateY(0) rotate(-4deg); } 50% { transform: translateY(-16px) rotate(4deg); } }

@media (max-width: 900px) {
  .deco-tree { opacity: 0.35; width: 130px; }
  .deco-pumpkin.p3 { display: none; }
}
@media (max-width: 620px) {
  .deco-tree, .deco-web { display: none; }
}

/* ============================================================
   REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1000px) {
  .rgrid { grid-template-columns: repeat(3, 1fr); }
  .pkg-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 780px) {
  .features, .sgrid, .bgrid, .tickets-grid, .split { grid-template-columns: 1fr; }
  .rgrid { grid-template-columns: repeat(2, 1fr); }
  .when { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero { min-height: auto; padding: 54px 0 110px; }
  .form-card { padding: 28px; }
  .hero-countdown { flex-wrap: wrap; }
}
@media (max-width: 480px) {
  .rgrid, .pkg-grid, .steps, .footer-grid { grid-template-columns: 1fr; }
  .hero-meta { gap: 14px; }
  .countdown, .hero-countdown { flex-wrap: wrap; }
}
