/* ShakeTastic — brand system
   Red #e30613 · Deep red #8f040c · Shout yellow #ffe600 · Cream #fff8f3 · Ink #151515
   Display: Anton · UI: Raleway · Body: Lato */

:root {
  --red: #e30613;
  --red-deep: #8f040c;
  --red-dark: #6b0309;
  --yellow: #ffe600;
  --cream: #fff8f3;
  --ink: #151515;
  --white: #ffffff;
  --pink-soft: #ffe9ea;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(21, 21, 21, 0.12);
  --font-display: "Anton", "Arial Narrow", sans-serif;
  --font-ui: "Raleway", "Helvetica Neue", sans-serif;
  --font-body: "Lato", "Helvetica Neue", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

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

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: var(--red); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.topbar {
  background: var(--ink);
  color: var(--white);
  font-family: var(--font-ui);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-align: center;
  padding: 6px 16px;
}
.topbar a { color: var(--yellow); text-decoration: none; font-weight: 700; }

.nav-wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  gap: 16px;
}

.brand img { height: 52px; width: auto; }

.site-nav { display: flex; align-items: center; gap: 4px; flex-wrap: wrap; }
.site-nav a {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  padding: 8px 10px;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
}
.site-nav a:hover { background: var(--pink-soft); color: var(--red); }
.site-nav a.active { background: var(--red); color: var(--white); }
.site-nav a.active:hover { background: var(--red-deep); color: var(--white); }

.nav-toggle {
  display: none;
  background: none;
  border: 2px solid var(--ink);
  border-radius: 8px;
  font-family: var(--font-ui);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  padding: 8px 12px;
  cursor: pointer;
}

@media (max-width: 920px) {
  .nav-toggle { display: block; }
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 10px 16px 16px;
    box-shadow: 0 14px 24px rgba(0, 0, 0, 0.12);
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 12px; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-ui);
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 999px;
  padding: 14px 28px;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2); }
.btn-red { background: var(--red); color: var(--white); }
.btn-red:hover { background: var(--red-deep); }
.btn-yellow { background: var(--yellow); color: var(--ink); }
.btn-outline { border: 2px solid var(--white); color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--red); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: radial-gradient(ellipse at center, var(--red) 0%, var(--red-deep) 78%, var(--red-dark) 100%);
  color: var(--white);
  text-align: center;
  overflow: hidden;
  padding: 72px 20px 84px;
}
.hero-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.28;
}
.hero-inner { position: relative; max-width: 860px; margin: 0 auto; }
.hero-inner .hero-logo { height: 110px; width: auto; margin: 0 auto 18px; filter: drop-shadow(0 6px 14px rgba(0,0,0,0.35)); }
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 4.2rem);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1.05;
  text-shadow: 0 4px 0 rgba(0, 0, 0, 0.25);
}
.hero h1 .yell { color: var(--yellow); }
.hero p.tagline {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: clamp(1rem, 2.4vw, 1.3rem);
  margin: 14px 0 30px;
}
.hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Sections ---------- */
.section { padding: 70px 20px; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section.tint { background: var(--pink-soft); }

.eyebrow {
  font-family: var(--font-ui);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
}
h2.title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.1;
  margin-bottom: 18px;
}
.section p.lead { font-size: 1.08rem; max-width: 780px; }

.split { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 44px; align-items: center; }
@media (max-width: 820px) { .split { grid-template-columns: 1fr; } }
.split img { border-radius: var(--radius); box-shadow: var(--shadow); }

/* ---------- Cards (stores, deliveries, etc.) ---------- */
.card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 22px; margin-top: 30px; }
.info-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px;
  border-top: 6px solid var(--red);
}
.info-card h3 { font-family: var(--font-display); font-size: 1.4rem; text-transform: uppercase; margin-bottom: 8px; }
.info-card p { font-size: 0.95rem; margin-bottom: 6px; }
.info-card a { font-weight: 700; }

/* ---------- Social embeds ---------- */
.social-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-top: 30px; align-items: start; }
@media (max-width: 820px) { .social-grid { grid-template-columns: 1fr; } }
.social-box {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px;
}
.social-box h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.social-box iframe { width: 100%; border: 0; border-radius: 10px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: #d9d9d9;
  padding: 56px 20px 28px;
  margin-top: 40px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 36px;
}
@media (max-width: 820px) { .footer-inner { grid-template-columns: 1fr; } }
.site-footer img.footer-logo { height: 64px; width: auto; margin-bottom: 14px; }
.site-footer h4 {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 12px;
}
.site-footer a { color: var(--yellow); text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 8px; font-size: 0.95rem; }
.social-links { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 10px; }
.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #2b2b2b;
  color: var(--white);
  font-weight: 800;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  transition: background 0.15s, transform 0.15s;
}
.social-links a:hover { background: var(--red); transform: translateY(-2px); text-decoration: none; }
.footer-bottom {
  max-width: 1100px;
  margin: 36px auto 0;
  border-top: 1px solid #333;
  padding-top: 18px;
  font-size: 0.82rem;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  background: radial-gradient(ellipse at center, var(--red) 0%, var(--red-deep) 80%, var(--red-dark) 100%);
  color: var(--white);
  text-align: center;
  padding: 54px 20px;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.4rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  text-shadow: 0 4px 0 rgba(0, 0, 0, 0.25);
}
.page-hero p { font-family: var(--font-ui); font-weight: 700; margin-top: 8px; }
.page-hero .splat { height: 46px; width: auto; margin: 0 auto 10px; }

/* ================= MENU PAGE ================= */
.menu-hero { padding-bottom: 26px; }
.menu-hero .menu-actions { margin-top: 20px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* Sticky category rail */
.cat-rail {
  position: sticky;
  top: 0;
  z-index: 90;
  background: var(--red-deep);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}
.cat-rail-inner {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding: 10px 16px;
  scrollbar-width: none;
  max-width: 1200px;
  margin: 0 auto;
}
.cat-rail-inner::-webkit-scrollbar { display: none; }
.cat-chip {
  flex: 0 0 auto;
  font-family: var(--font-ui);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  white-space: nowrap;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.cat-chip:hover { border-color: var(--yellow); color: var(--yellow); }
.cat-chip.active { background: var(--yellow); color: var(--ink); border-color: var(--yellow); }

/* Menu body — the red counter */
.menu-board {
  background: radial-gradient(ellipse at top, var(--red) 0%, var(--red-deep) 70%, var(--red-dark) 100%);
  padding-bottom: 60px;
}

/* Group banners — the big SUPER INDULGENT!-style family headers */
.menu-group-banner {
  text-align: center;
  color: var(--white);
  padding: 74px 20px 0;
}
.menu-group-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7vw, 4.6rem);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1;
  text-shadow: 0 5px 0 rgba(0, 0, 0, 0.35);
}
.menu-group-banner p {
  font-family: var(--font-ui);
  font-weight: 800;
  font-size: clamp(0.95rem, 2vw, 1.2rem);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--yellow);
  margin-top: 10px;
}
.menu-group-banner::after {
  content: "";
  display: block;
  width: 90px;
  height: 4px;
  margin: 22px auto 0;
  border-radius: 2px;
  background: var(--yellow);
}
.menu-group .menu-cat-header h2 { color: var(--white); font-size: clamp(1.6rem, 3.6vw, 2.4rem); }

.cat-chip.group {
  background: var(--white);
  color: var(--red-deep);
  border-color: var(--white);
  font-size: 0.82rem;
}
.cat-chip.group:hover { color: var(--red); border-color: var(--yellow); }

.menu-section { padding: 54px 20px 8px; }
.menu-section-inner { max-width: 1150px; margin: 0 auto; }

.menu-cat-header { text-align: center; color: var(--white); margin-bottom: 8px; }
.menu-cat-header .splat { height: 34px; width: auto; margin: 0 auto 8px; opacity: 0.9; }
.menu-cat-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--yellow);
  text-shadow: 0 3px 0 rgba(0, 0, 0, 0.3);
}
.menu-cat-header .cat-note {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.95rem;
  margin-top: 6px;
  opacity: 0.95;
}
.menu-cat-header .cat-prices {
  display: inline-flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.price-pill {
  font-family: var(--font-ui);
  font-weight: 800;
  font-size: 0.82rem;
  background: rgba(0, 0, 0, 0.28);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  color: var(--white);
  border-radius: 999px;
  padding: 5px 14px;
}
.price-pill b { color: var(--yellow); }

/* Item cards */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 20px;
  margin-top: 26px;
}
.menu-item {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.menu-item:hover { transform: translateY(-6px); box-shadow: 0 16px 34px rgba(0, 0, 0, 0.4); }
.menu-item .thumb {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--pink-soft);
}
.menu-item .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.menu-item:hover .thumb img { transform: scale(1.06); }
.menu-item .thumb.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
}
.menu-item .thumb.placeholder img { width: 44%; height: auto; opacity: 0.5; object-fit: contain; }
.menu-item .body { padding: 16px 16px 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.menu-item h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.15;
}
.menu-item .desc { font-size: 0.88rem; color: #444; flex: 1; }
.menu-item .tags { display: flex; gap: 6px; flex-wrap: wrap; }
.tag {
  font-family: var(--font-ui);
  font-weight: 800;
  font-size: 0.66rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 999px;
  background: var(--pink-soft);
  color: var(--red);
}
.tag.vegan { background: #e6f4e6; color: #1c7a2e; }
.tag.new { background: var(--yellow); color: var(--ink); }
.menu-item .prices {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  border-top: 1.5px dashed #eee;
  padding-top: 10px;
}
.menu-item .prices span {
  font-family: var(--font-ui);
  font-weight: 800;
  font-size: 0.8rem;
  color: var(--ink);
}
.menu-item .prices span b { color: var(--red); }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.5s ease, transform 0.5s ease; }
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* Extras strip (add-ons) */
.extras-box {
  background: rgba(0, 0, 0, 0.22);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius);
  color: var(--white);
  padding: 24px 26px;
  margin-top: 30px;
}
.extras-box h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
  color: var(--yellow);
  font-size: 1.3rem;
  margin-bottom: 10px;
}
.extras-box ul { list-style: none; columns: 2; gap: 28px; }
@media (max-width: 640px) { .extras-box ul { columns: 1; } }
.extras-box li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.92rem;
  padding: 5px 0;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.25);
  break-inside: avoid;
}
.extras-box li b { color: var(--yellow); white-space: nowrap; }

.menu-smallprint {
  max-width: 1000px;
  margin: 40px auto 0;
  padding: 0 20px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.75rem;
  text-align: center;
}

/* Focus visibility */
a:focus-visible, button:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 2px;
}
