/* ==========================================================
   Fizzle Soda Co. — styles (shared by every page)
   Brand colors live here. Change them once, they update everywhere.
   ========================================================== */
:root {
  --orange: #fa6d37;
  --orange-dark: #b43f14;
  --peach: #ffb38f;
  --teal: #1b928c;
  --teal-dark: #146e69;
  --lemon: #ffd140;
  --cream: #fff4de;
  --cream-2: #ffe9c7;
  --ink: #2b1d2f;
  --ink-soft: #5d4b61;
  --white: #ffffff;

  --radius: 18px;
  --shadow-pop: 5px 5px 0 var(--ink);
  --font: "Courier Prime", "Courier New", Courier, monospace;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.08rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }
img { height: auto; }
[hidden] { display: none !important; }

h1, h2, h3 {
  font-family: var(--font);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 0.5em;
}
h1 { font-size: clamp(2.3rem, 6vw, 4rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
h3 { font-size: 1.3rem; }
p { margin: 0 0 1em; }
a { color: inherit; }
strong { font-weight: 700; }

.container { width: min(1120px, 100% - 32px); margin-inline: auto; }

.skip-link {
  position: absolute; left: -999px; top: 8px;
  background: var(--ink); color: var(--white); padding: 8px 14px; border-radius: 8px; z-index: 100;
}
.skip-link:focus { left: 8px; }

:focus-visible { outline: 3px solid var(--teal); outline-offset: 3px; border-radius: 6px; }

.eyebrow {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.85rem;
  color: var(--orange-dark);
  margin-bottom: 0.6em;
}
.eyebrow::before { content: "— "; }
.eyebrow::after { content: " —"; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.4em;
  font-family: var(--font); font-weight: 700; font-size: 1.05rem;
  padding: 0.75em 1.5em;
  border-radius: 999px;
  border: 3px solid var(--ink);
  background: var(--lemon);
  color: var(--ink);
  text-decoration: none;
  box-shadow: 4px 4px 0 var(--ink);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--ink); }
.btn:active { transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--ink); }
.btn-white { background: var(--white); }
.btn-orange { background: var(--orange); }
.btn-small { padding: 0.45em 1.1em; font-size: 0.95rem; box-shadow: 3px 3px 0 var(--ink); }
.btn-full { width: 100%; }
.btn:disabled { opacity: 0.6; cursor: wait; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 244, 222, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 3px solid var(--ink);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 16px; }

.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo img { width: 56px; height: 56px; border-radius: 50%; filter: drop-shadow(2px 2px 0 var(--ink)); }
.logo-text { font-weight: 700; font-size: 1.45rem; color: var(--orange-dark); letter-spacing: -0.03em; white-space: nowrap; }
.logo-text span { color: var(--teal-dark); }

.nav { display: flex; align-items: center; gap: 26px; }
.nav a:not(.btn) { font-weight: 700; text-decoration: none; position: relative; padding: 4px 0; }
.nav a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 3px; width: 0;
  background: var(--orange); border-radius: 3px; transition: width 0.2s;
}
.nav a:not(.btn):hover::after,
.nav a[aria-current="page"]::after { width: 100%; }

.nav-toggle {
  display: none; background: none; border: 0; padding: 10px; cursor: pointer;
  flex-direction: column; gap: 5px;
}
.nav-toggle span { display: block; width: 26px; height: 3px; background: var(--ink); border-radius: 3px; transition: transform 0.25s, opacity 0.25s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero (home) ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(circle at 12% 20%, rgba(255,255,255,0.25) 0 10px, transparent 11px),
    radial-gradient(circle at 85% 75%, rgba(255,255,255,0.25) 0 16px, transparent 17px),
    radial-gradient(circle at 70% 12%, rgba(255,209,64,0.7) 0 8px, transparent 9px),
    radial-gradient(circle at 30% 85%, rgba(255,209,64,0.6) 0 12px, transparent 13px),
    linear-gradient(160deg, var(--teal) 0%, #3fb8b0 60%, #7fd3c5 100%);
  padding: 64px 0 110px;
  overflow: hidden;
}
.hero-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; align-items: center; gap: 40px; }
.hero .eyebrow { color: var(--ink); background: var(--cream); display: inline-block; padding: 0.35em 0.9em; border-radius: 999px; border: 2px solid var(--ink); }
.hero .eyebrow::before, .hero .eyebrow::after { content: none; }
.hero h1 { color: var(--white); text-shadow: 3px 3px 0 var(--ink); }
.hero h1 .hl { color: var(--lemon); }
.lead { font-size: 1.15rem; max-width: 34em; }
.hero .lead { color: var(--ink); background: rgba(255,244,222,0.85); padding: 14px 18px; border-radius: 14px; border: 2px solid var(--ink); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 26px; }
.hero-logo { width: 100%; max-width: 360px; margin-inline: auto; border-radius: 50%; filter: drop-shadow(8px 10px 0 rgba(43,29,47,0.35)); animation: bob 5s ease-in-out infinite; }

@keyframes bob { 0%,100% { transform: translateY(0) rotate(-4deg); } 50% { transform: translateY(-12px) rotate(3deg); } }

.wave { position: absolute; bottom: -1px; left: 0; width: 100%; height: 60px; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background:
    radial-gradient(circle at 8% 30%, rgba(255,255,255,0.35) 0 9px, transparent 10px),
    radial-gradient(circle at 92% 60%, rgba(255,209,64,0.8) 0 12px, transparent 13px),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.3) 0 6px, transparent 7px),
    var(--orange);
  border-bottom: 3px solid var(--ink);
  padding: 56px 0 50px;
  text-align: center;
}
.page-hero h1 { color: var(--white); text-shadow: 3px 3px 0 var(--ink); margin-bottom: 0.3em; }
.page-hero p { max-width: 36em; margin: 0 auto; font-size: 1.12rem; font-weight: 700; }
.page-hero.teal { background:
    radial-gradient(circle at 8% 30%, rgba(255,255,255,0.35) 0 9px, transparent 10px),
    radial-gradient(circle at 92% 60%, rgba(255,209,64,0.8) 0 12px, transparent 13px),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.3) 0 6px, transparent 7px),
    var(--teal); }
.page-hero.teal p { color: var(--white); }

/* ---------- Sections ---------- */
.section { padding: 80px 0; }
.section-alt { background: var(--cream-2); border-block: 3px solid var(--ink); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 40px; }
.section-sub { color: var(--ink-soft); }
.center { text-align: center; }
.mt { margin-top: 36px; }

/* ---------- Cards ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card {
  background: var(--white); border: 3px solid var(--ink); border-radius: var(--radius);
  padding: 26px; box-shadow: var(--shadow-pop);
}
.card h3 { margin-bottom: 0.4em; }
.card p { color: var(--ink-soft); margin: 0; }
.card-icon {
  display: grid; place-items: center; width: 54px; height: 54px; font-size: 1.7rem;
  background: var(--cream-2); border: 2px solid var(--ink); border-radius: 50%; margin-bottom: 14px;
}
a.card { text-decoration: none; display: block; transition: transform 0.15s, box-shadow 0.15s; }
a.card:hover { transform: translate(-3px, -3px); box-shadow: 8px 8px 0 var(--ink); }
.card-link { display: inline-block; margin-top: 14px; font-weight: 700; color: var(--orange-dark); }

/* ---------- Menu ---------- */
.chips { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.chips a {
  font-weight: 700; text-decoration: none; padding: 0.45em 1.1em; border-radius: 999px;
  border: 3px solid var(--ink); background: var(--white); box-shadow: 3px 3px 0 var(--ink);
}
.chips a:hover { background: var(--lemon); }

.menu-section + .menu-section { margin-top: 64px; }
.menu-section-head { display: flex; align-items: baseline; justify-content: space-between; flex-wrap: wrap; gap: 8px 20px; border-bottom: 3px dashed var(--ink); padding-bottom: 12px; margin-bottom: 26px; }
.menu-section-head h2 { margin: 0; }
.menu-section-head p { margin: 0; color: var(--ink-soft); }

.menu-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr)); gap: 20px; }
.menu-item {
  background: var(--white); border: 3px solid var(--ink); border-radius: var(--radius);
  padding: 20px; display: flex; flex-direction: column; gap: 8px;
}
.menu-item-top { display: flex; align-items: center; gap: 12px; }
.swatch {
  flex: none; width: 42px; height: 42px; border-radius: 50%; border: 3px solid var(--ink);
  box-shadow: inset -5px -5px 0 rgba(0,0,0,0.12);
}
.menu-item h3 { margin: 0; font-size: 1.15rem; min-width: 0; overflow-wrap: break-word; }
.menu-item .price { margin-left: auto; font-weight: 700; color: var(--orange-dark); font-size: 1.1rem; white-space: nowrap; }
.menu-item p { margin: 0; color: var(--ink-soft); font-size: 0.97rem; }
.tag {
  align-self: flex-start; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
  background: var(--lemon); border: 2px solid var(--ink); padding: 0.1em 0.7em; border-radius: 999px;
}

.sizes { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; margin-top: 20px; }
.sizes > span { background: var(--cream); border: 2px solid var(--ink); border-radius: 12px; padding: 4px 14px; font-weight: 700; }

.band {
  background: var(--ink); color: var(--cream); border-radius: var(--radius);
  padding: 32px 36px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.band h2, .band h3 { color: var(--lemon); margin-bottom: 0.3em; }
.band p { margin: 0; max-width: 34em; }
.steps { display: flex; gap: 14px; list-style: none; margin: 0; padding: 0; flex-wrap: wrap; }
.steps li { display: flex; align-items: center; gap: 8px; font-weight: 700; }
.steps span {
  display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%;
  background: var(--orange); color: var(--ink);
}

/* ---------- Find us (live location card) ---------- */
.find-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.social-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 20px; }
.live-card {
  background: var(--white); border: 3px solid var(--ink); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow-pop);
}
.live-card.is-open { background: var(--lemon); }
.live-card.is-closed { background: var(--peach); }
.live-card h3 { font-size: 1.5rem; margin-bottom: 0.4em; }
.live-card p { margin: 0 0 0.6em; }
.live-card .btn { margin-top: 10px; }
.live-card-label {
  display: flex; align-items: center; gap: 8px; font-size: 0.85rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.15em; color: var(--orange-dark);
}
.live-card.is-open .live-card-label, .live-card.is-closed .live-card-label { color: var(--ink); }

/* ---------- Events ---------- */
.event-types { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.event-type {
  background: var(--white); border: 3px solid var(--ink); border-radius: 16px;
  padding: 16px 8px; text-align: center; font-weight: 700; font-size: 0.97rem;
}
.event-type span { display: block; font-size: 1.9rem; margin-bottom: 4px; }

.packages { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.package {
  position: relative; background: var(--white); border: 3px solid var(--ink);
  border-radius: var(--radius); padding: 30px 26px; box-shadow: var(--shadow-pop); display: flex; flex-direction: column;
}
.package.featured { background: var(--lemon); }
.package h3 { font-size: 1.45rem; margin-bottom: 4px; }
.pkg-tag { color: var(--orange-dark); font-weight: 700; }
.package ul { padding-left: 1.2em; margin: 0 0 20px; flex: 1; }
.package li { margin-bottom: 6px; }
.pkg-price { font-weight: 700; font-size: 1.15rem; margin: 0; border-top: 2px dashed var(--ink); padding-top: 14px; }
.ribbon {
  position: absolute; top: -16px; right: 20px; background: var(--ink); color: var(--lemon);
  font-weight: 700; font-size: 0.85rem; padding: 0.3em 1em; border-radius: 999px;
}

.how { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; counter-reset: how; }
.how li { list-style: none; position: relative; padding: 26px 22px 22px; background: var(--white); border: 3px solid var(--ink); border-radius: var(--radius); }
.how li::before {
  counter-increment: how; content: counter(how);
  position: absolute; top: -20px; left: 20px; width: 40px; height: 40px; display: grid; place-items: center;
  background: var(--orange); border: 3px solid var(--ink); border-radius: 50%; font-weight: 700; font-size: 1.1rem;
}
.how h3 { margin: 6px 0 6px; }
.how p { margin: 0; color: var(--ink-soft); }
.how-list { padding: 0; margin: 0; }

/* ---------- Forms ---------- */
.form-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 48px; align-items: start; }
.contact-list { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 12px; }
.contact-list li { display: flex; align-items: center; gap: 12px; font-weight: 700; }
.contact-list li > span:first-child {
  flex: none; display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%;
  background: var(--white); border: 2px solid var(--ink);
}
.contact-list a { text-decoration: none; border-bottom: 3px solid var(--peach); }
.contact-list a:hover { border-color: var(--orange); }

.form {
  background: var(--white); border: 3px solid var(--ink); border-radius: var(--radius);
  padding: 30px; box-shadow: var(--shadow-pop); display: grid; gap: 16px;
}
.form h3 { margin: 0; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form label { display: grid; gap: 6px; font-weight: 700; font-size: 0.95rem; }
.form input,
.form select,
.form textarea {
  font: inherit; font-size: 1rem; font-weight: 400; color: var(--ink);
  padding: 0.65em 0.85em; border: 2px solid var(--ink); border-radius: 12px; background: var(--cream);
  width: 100%;
}
.form input:focus,
.form select:focus,
.form textarea:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(27,146,140,0.3); background: var(--white); }
.form .invalid { border-color: var(--orange-dark); background: #fff0ea; }
.form-status { margin: 0; font-weight: 700; min-height: 1.5em; text-align: center; }
.form-status.ok { color: var(--teal-dark); }
.form-status.err { color: var(--orange-dark); }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 48px; align-items: center; }
.about-grid img { width: 100%; max-width: 320px; margin-inline: auto; border-radius: 50%; filter: drop-shadow(6px 8px 0 rgba(43,29,47,0.3)); }
.about-copy p { font-size: 1.1rem; }
.signoff { font-weight: 700; color: var(--orange-dark); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 800px; margin: 0 auto; display: grid; gap: 12px; }
.faq-list details { background: var(--white); border: 3px solid var(--ink); border-radius: 16px; padding: 0 20px; }
.faq-list summary {
  cursor: pointer; list-style: none; padding: 16px 0; font-weight: 700; font-size: 1.08rem;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+"; flex: none; display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%;
  background: var(--lemon); border: 2px solid var(--ink); font-size: 1.2rem; transition: transform 0.2s;
}
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p { color: var(--ink-soft); padding-bottom: 16px; margin: 0; }

/* ---------- CTA strip ---------- */
.cta-strip { background: var(--lemon); border-block: 3px solid var(--ink); padding: 56px 0; text-align: center; }
.cta-strip h2 { margin-bottom: 0.3em; }
.cta-strip p { max-width: 34em; margin: 0 auto 24px; }
.cta-strip .hero-cta { justify-content: center; margin: 0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: var(--cream); padding: 52px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 32px; align-items: start; }
.footer-brand { display: flex; align-items: center; gap: 18px; }
.footer-brand img { width: 110px; height: 110px; border-radius: 50%; flex: none; }
.footer-brand p { margin: 0; opacity: 0.85; }
.site-footer h4 { margin: 0 0 10px; color: var(--lemon); font-size: 1rem; text-transform: uppercase; letter-spacing: 0.15em; }
.footer-links { display: grid; gap: 6px; }
.site-footer a { text-decoration: none; opacity: 0.9; }
.site-footer a:hover { opacity: 1; color: var(--lemon); }
.copyright { text-align: center; font-size: 0.9rem; margin: 40px 0 0; padding-top: 20px; border-top: 1px solid rgba(255,244,222,0.15); opacity: 0.8; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .event-types { grid-template-columns: repeat(3, 1fr); }
  .packages, .how { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; }
  .how { gap: 34px; }
  .find-grid, .form-grid, .about-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .nav {
    position: absolute; top: 76px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--cream); border-bottom: 3px solid var(--ink);
    padding: 8px 16px 20px;
    display: none;
  }
  .nav.open { display: flex; }
  .nav a:not(.btn) { padding: 14px 4px; border-bottom: 1px solid rgba(43,29,47,0.12); }
  .nav a:not(.btn)::after { display: none; }
  .nav a[aria-current="page"] { color: var(--orange-dark); }
  .nav .btn { margin-top: 14px; }

  .hero { padding: 40px 0 90px; }
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-cta { justify-content: center; }
  .lead { margin-inline: auto; }
  .hero-logo { max-width: 200px; order: -1; }

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

@media (max-width: 560px) {
  body { font-size: 1rem; }
  .logo-text { font-size: 1.15rem; }
  .logo img { width: 46px; height: 46px; }
  .section { padding: 60px 0; }
  .event-types { grid-template-columns: repeat(2, 1fr); }
  .field-row { grid-template-columns: 1fr; }
  .form { padding: 22px; }
  .band { padding: 26px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}

/* ---------- Live banner (today's location) ---------- */
.live-banner { border-bottom: 3px solid var(--ink); font-weight: 700; }
.live-banner.is-open { background: var(--lemon); }
.live-banner.is-closed { background: var(--peach); }
.live-inner { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 6px 14px; padding: 12px 0; text-align: center; }
.live-inner .live-note { font-weight: 400; font-style: italic; }
.live-dot {
  width: 12px; height: 12px; border-radius: 50%; background: #1faa59; border: 2px solid var(--ink);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(31,170,89,0.6); } 50% { box-shadow: 0 0 0 7px rgba(31,170,89,0); } }

/* ---------- Sold out ---------- */
.tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tags:not(:has(.tag:not(.tag-soldout))) { display: contents; }
.tag-soldout { display: none; background: var(--ink); color: var(--white); border-color: var(--ink); }
.menu-item.sold-out .tag-soldout { display: inline-block; }
.menu-item.sold-out .tag:not(.tag-soldout) { display: none; }
.menu-item.sold-out { background: #f3eee6; }
.menu-item.sold-out h3,
.menu-item.sold-out p { opacity: 0.6; }
.menu-item.sold-out .price { text-decoration: line-through; opacity: 0.6; }
.menu-item.sold-out .swatch { filter: grayscale(1); opacity: 0.5; }

@media (prefers-reduced-motion: reduce) { .live-dot { animation: none; } }

/* ---------- Energy option ---------- */
.menu-item .energy-price {
  margin-top: auto; padding-top: 10px; border-top: 2px dashed rgba(43,29,47,0.25);
  color: var(--ink); font-size: 0.93rem;
  display: flex; justify-content: space-between; align-items: baseline; gap: 10px;
}
.menu-item .energy-price strong { color: var(--orange-dark); white-space: nowrap; }
.menu-item.sold-out .energy-price { opacity: 0.6; }
.menu-item.sold-out .energy-price strong { text-decoration: line-through; }
