/* Hungry Hub — site stylesheet
   Builds on design-system/colors_and_type.css. All comic-book bold,
   no soft shadows, no gradients, no glass. */

@font-face {
  font-family: "Hitchcut";
  src: url("../design-system/fonts/Hitchcut-Regular.otf") format("opentype");
  font-display: swap;
}

* { box-sizing: border-box; }

.hh-site {
  background: var(--hh-yellow);
  color: var(--hh-maroon);
  font-family: var(--font-body);
  min-height: 100%;
}

/* ─────── shared bits ─────── */
.hh-eyebrow {
  font-family: 'Bungee', sans-serif;
  color: var(--hh-maroon);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
  display: inline-block;
  background: var(--hh-yellow-soft);
  border: 2.5px solid var(--hh-maroon);
  padding: 6px 14px;
  border-radius: 999px;
  box-shadow: 3px 3px 0 var(--hh-maroon);
  margin-bottom: 18px;
}
.hh-eyebrow--on-red {
  background: var(--hh-yellow);
  color: var(--hh-red);
  border-color: var(--hh-maroon-ink);
  box-shadow: 3px 3px 0 var(--hh-maroon-ink);
}
.hh-h1 {
  font-family: 'Hitchcut', 'Bowlby One', sans-serif;
  color: var(--hh-red);
  text-shadow: 5px 5px 0 var(--hh-maroon);
  font-size: clamp(48px, 7vw, 88px);
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin: 0 0 16px;
  font-weight: 400;
}
.hh-h1--yellow {
  color: var(--hh-yellow);
  text-shadow: 5px 5px 0 var(--hh-maroon-ink);
}
.hh-h2 {
  font-family: 'Hitchcut', 'Bowlby One', sans-serif;
  color: var(--hh-red);
  text-shadow: 4px 4px 0 var(--hh-maroon);
  font-size: clamp(40px, 5vw, 64px);
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin: 0 0 18px;
  font-weight: 400;
}

.hh-btn-red, .hh-btn-yellow {
  font-family: 'Bungee', sans-serif;
  text-transform: uppercase;
  border: 3px solid var(--hh-maroon);
  border-radius: 999px;
  letter-spacing: 0.04em;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: transform 120ms var(--ease-pop), box-shadow 120ms ease, background 120ms ease;
}
.hh-btn-red {
  background: var(--hh-red);
  color: var(--hh-yellow);
  box-shadow: 5px 5px 0 var(--hh-maroon);
}
.hh-btn-red:hover { background: var(--hh-red-deep); }
.hh-btn-red:active { transform: translate(3px, 3px); box-shadow: 2px 2px 0 var(--hh-maroon); }
.hh-btn-yellow {
  background: var(--hh-yellow);
  color: var(--hh-red);
  box-shadow: 5px 5px 0 var(--hh-maroon);
}
.hh-btn-yellow:hover { background: var(--hh-yellow-deep); }
.hh-btn-yellow:active { transform: translate(3px, 3px); box-shadow: 2px 2px 0 var(--hh-maroon); }
.hh-btn-sm { padding: 10px 18px; font-size: 13px; }
.hh-btn-lg { padding: 18px 28px; font-size: 17px; }

/* ─────── stripe divider ─────── */
.hh-stripe {
  height: 24px;
  background-image: repeating-linear-gradient(
    135deg,
    var(--hh-red) 0 22px,
    var(--hh-yellow) 22px 44px
  );
  border-top: 3px solid var(--hh-maroon);
  border-bottom: 3px solid var(--hh-maroon);
}

/* ─────── HEADER ─────── */
.hh-header {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 40px;
  background: var(--hh-yellow);
  border-bottom: 4px solid var(--hh-maroon);
}
.hh-brand-logo { height: 56px; display: block; }
.hh-nav { display: flex; gap: 28px; }
.hh-nav a {
  font-family: 'Bungee', sans-serif;
  text-transform: uppercase;
  color: var(--hh-red);
  text-decoration: none;
  font-size: 15px;
  letter-spacing: 0.04em;
  position: relative;
}
.hh-nav a:hover { color: var(--hh-red-deep); }
.hh-nav a:hover::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -6px;
  height: 3px; background: var(--hh-red);
}

/* ─────── HERO A ─────── */
.hh-hero {
  position: relative;
  padding: 80px 40px 0;
  min-height: calc(100vh - 86px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--hh-yellow);
  overflow: hidden;
}
.hh-hero::before, .hh-hero::after {
  content: '';
  position: absolute;
  pointer-events: none;
}
/* corner price stickers */
.hh-hero::before {
  top: 100px; right: 60px;
  width: 140px; height: 140px;
  background: var(--hh-red);
  border: 4px solid var(--hh-maroon);
  border-radius: 50%;
  box-shadow: 6px 6px 0 var(--hh-maroon-ink);
  transform: rotate(-12deg);
  background-image:
    linear-gradient(var(--hh-red), var(--hh-red)),
    repeating-conic-gradient(from 0deg, var(--hh-red) 0deg 18deg, var(--hh-yellow) 18deg 19deg);
  background-size: 100% 100%, 100% 100%;
  background-blend-mode: normal;
}
.hh-hero-eyebrow {
  font-family: 'Bungee', sans-serif;
  color: var(--hh-maroon);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
  margin-bottom: 18px;
}
.hh-hero-title {
  font-family: 'Hitchcut', 'Bowlby One', sans-serif;
  color: var(--hh-red);
  text-shadow: 7px 7px 0 var(--hh-maroon);
  font-size: clamp(72px, 14vw, 180px);
  line-height: 0.85;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  margin: 0 0 24px;
  font-weight: 400;
  position: relative;
  z-index: 2;
}
.hh-hero-sub {
  font-family: 'Outfit', sans-serif;
  color: var(--hh-maroon);
  font-size: 19px;
  line-height: 1.45;
  max-width: 560px;
  margin: 0 0 32px;
}
.hh-hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 60px; }
.hh-hero .hh-stripe { margin: 0 -40px; }

/* hero sticker — pure decorative */
.hh-hero-sticker {
  position: absolute;
  top: 110px; right: 60px;
  width: 160px; height: 160px;
  display: flex; align-items: center; justify-content: center;
  background: var(--hh-red);
  border: 4px solid var(--hh-maroon);
  border-radius: 50%;
  box-shadow: 8px 8px 0 var(--hh-maroon-ink);
  transform: rotate(-12deg);
  z-index: 1;
}
.hh-hero-sticker-inner {
  font-family: 'Hitchcut', 'Bowlby One', sans-serif;
  color: var(--hh-yellow);
  text-shadow: 3px 3px 0 var(--hh-maroon-ink);
  font-size: 36px;
  text-align: center;
  line-height: 0.9;
  text-transform: uppercase;
}
.hh-hero-sticker-small {
  display: block;
  font-family: 'Bungee', sans-serif;
  color: var(--hh-yellow);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-shadow: none;
  margin-top: 6px;
}

/* override the ::before stub since we use a real sticker el */
.hh-hero::before { content: none; }

/* ─────── ABOUT ─────── */
.hh-about {
  padding: 96px 40px;
  background: var(--hh-yellow);
  border-top: 4px solid var(--hh-maroon);
}
.hh-about-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
  max-width: 1280px;
  margin: 0 auto;
}
.hh-about-copy p {
  font-family: 'Outfit', sans-serif;
  color: var(--hh-maroon);
  font-size: 18px;
  line-height: 1.55;
  margin: 0 0 18px;
  max-width: 56ch;
}
.hh-about-aside {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.hh-about-aside .hh-stat-card:first-child { grid-column: 1 / -1; }
.hh-stat-card {
  background: var(--hh-yellow);
  border: 4px solid var(--hh-maroon);
  border-radius: 14px;
  padding: 22px 20px;
  box-shadow: 8px 8px 0 var(--hh-maroon-ink);
}
.hh-stat-card--red {
  background: var(--hh-red);
}
.hh-stat-card--red .hh-stat-num { color: var(--hh-yellow); text-shadow: 4px 4px 0 var(--hh-maroon-ink); }
.hh-stat-card--red .hh-stat-lbl { color: var(--hh-yellow); }
.hh-stat-num {
  font-family: 'Hitchcut', 'Bowlby One', sans-serif;
  color: var(--hh-red);
  text-shadow: 4px 4px 0 var(--hh-maroon);
  font-size: 64px;
  line-height: 0.9;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.hh-stat-lbl {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: var(--hh-maroon);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 12px;
  line-height: 1.4;
}

/* ─────── MENU ─────── */
.hh-menu {
  padding: 96px 40px;
  background: var(--hh-yellow);
  border-top: 4px solid var(--hh-maroon);
}
.hh-menu-head { max-width: 1280px; margin: 0 auto 56px; }
.hh-menu-intro {
  font-family: 'Outfit', sans-serif;
  color: var(--hh-maroon);
  font-size: 18px;
  line-height: 1.5;
  max-width: 60ch;
  margin: 0 0 24px;
}
.hh-menu-nav {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.hh-menu-nav-link {
  font-family: 'Bungee', sans-serif;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.04em;
  background: var(--hh-yellow);
  color: var(--hh-red);
  border: 3px solid var(--hh-maroon);
  border-radius: 999px;
  padding: 8px 14px;
  text-decoration: none;
  box-shadow: 3px 3px 0 var(--hh-maroon);
  transition: transform 120ms var(--ease-pop);
}
.hh-menu-nav-link:hover { background: var(--hh-yellow-deep); }
.hh-menu-nav-link:active { transform: translate(2px,2px); box-shadow: 1px 1px 0 var(--hh-maroon); }

.hh-menu-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 56px;
}
.hh-cat { padding: 8px 0; }
.hh-cat-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
  border-bottom: 4px solid var(--hh-maroon);
  padding-bottom: 10px;
}
.hh-cat-title {
  font-family: 'Hitchcut', 'Bowlby One', sans-serif;
  color: var(--hh-red);
  text-shadow: 4px 4px 0 var(--hh-maroon);
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin: 0;
  font-weight: 400;
}
.hh-cat-sub {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: var(--hh-maroon);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 11px;
  margin-top: 6px;
}
.hh-cat-illus { flex-shrink: 0; }
.hh-cat-illus svg { display: block; }
.hh-cat-items { display: flex; flex-direction: column; }

/* menu item rows */
.hh-mi {
  display: flex;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 2px dashed rgba(122, 0, 0, 0.35);
  align-items: flex-start;
}
.hh-mi:last-child { border-bottom: none; }
.hh-mi-main { flex: 1; min-width: 0; }
.hh-mi-name {
  font-family: 'Bungee', sans-serif;
  color: var(--hh-red);
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.05;
  margin-bottom: 6px;
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
}
.hh-mi-desc {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  color: var(--hh-maroon);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 12px;
  line-height: 1.4;
}
.hh-mi-right { white-space: nowrap; flex-shrink: 0; }
.hh-mi-price {
  font-family: 'Hitchcut', 'Bowlby One', sans-serif;
  color: var(--hh-red);
  text-shadow: 2px 2px 0 var(--hh-maroon);
  font-size: 30px;
  line-height: 1;
  letter-spacing: 0.005em;
}
.hh-mi-variants { display: flex; gap: 14px; flex-wrap: wrap; justify-content: flex-end; }
.hh-mi-variant {
  display: flex; flex-direction: column; align-items: center;
  background: var(--hh-yellow);
  border: 2.5px solid var(--hh-maroon);
  border-radius: 8px;
  padding: 4px 10px 6px;
  min-width: 56px;
}
.hh-mi-variant-lbl {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: var(--hh-maroon);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 9.5px;
}
.hh-mi-variant-price {
  font-family: 'Bungee', sans-serif;
  color: var(--hh-red);
  font-size: 16px;
  letter-spacing: 0.02em;
  margin-top: 2px;
}

.hh-tag {
  font-family: 'Bungee', sans-serif;
  font-size: 9.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 2px solid var(--hh-maroon);
  border-radius: 999px;
  padding: 3px 8px;
  line-height: 1;
}
.hh-tag--red { background: var(--hh-red); color: var(--hh-yellow); }
.hh-tag--maroon { background: var(--hh-maroon); color: var(--hh-yellow); }

/* ─────── ORDER ─────── */
.hh-order {
  background: var(--hh-red);
  padding: 96px 40px;
  border-top: 4px solid var(--hh-maroon-ink);
  border-bottom: 4px solid var(--hh-maroon-ink);
}
.hh-order-inner { max-width: 1100px; margin: 0 auto; }
.hh-order-intro {
  font-family: 'Outfit', sans-serif;
  color: var(--hh-yellow);
  font-size: 18px;
  line-height: 1.5;
  margin: 0 0 36px;
  max-width: 56ch;
}
.hh-order-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.hh-order-card {
  display: flex;
  background: var(--hh-yellow);
  border: 4px solid var(--hh-maroon-ink);
  border-radius: 16px;
  box-shadow: 10px 10px 0 var(--hh-maroon-ink);
  text-decoration: none;
  overflow: hidden;
  position: relative;
  transition: transform 200ms var(--ease-pop), box-shadow 200ms ease;
}
.hh-order-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 12px 12px 0 var(--hh-maroon-ink);
  background: var(--hh-yellow-deep);
}
.hh-order-card:active {
  transform: translate(4px, 4px);
  box-shadow: 6px 6px 0 var(--hh-maroon-ink);
}
.hh-order-card-stub {
  width: 26px;
  background:
    radial-gradient(circle at 13px 16px, var(--hh-red) 6px, transparent 6.5px) 0 0/26px 32px repeat-y,
    var(--hh-red);
  border-right: 3px dashed var(--hh-maroon-ink);
  flex-shrink: 0;
}
.hh-order-card-body { padding: 28px 28px 24px; flex: 1; }
.hh-order-card-platform { margin-bottom: 14px; min-height: 38px; display: flex; align-items: center; }
.hh-order-card-tag {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  color: var(--hh-maroon);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 12px;
  margin-bottom: 22px;
}
.hh-order-card-cta {
  font-family: 'Bungee', sans-serif;
  color: var(--hh-red);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 3px solid var(--hh-maroon-ink);
  padding-top: 18px;
}
.hh-arrow {
  font-family: 'Hitchcut', 'Bowlby One', sans-serif;
  font-size: 22px;
  color: var(--hh-red);
  text-shadow: 2px 2px 0 var(--hh-maroon);
}

.hh-order-card--doordash .hh-order-card-stub {
  background: #FF3008;
  border-right-color: #8b1a04;
}
.hh-order-card--ubereats .hh-order-card-stub {
  background: #06C167;
  border-right-color: #034d29;
}

/* DoorDash wordmark */
.hh-doordash-logo {
  font-family: 'Bungee', sans-serif;
  font-size: 26px;
  letter-spacing: 0.005em;
  color: #FF3008;
  display: inline-block;
  white-space: nowrap;
}

/* Uber Eats wordmark */
.hh-ubereats-logo {
  font-family: 'Bungee', sans-serif;
  font-size: 26px;
  letter-spacing: 0.005em;
  display: inline-flex;
  align-items: center;
  text-transform: none;
}
.hh-ubereats-uber { color: #000; }
.hh-ubereats-eats { color: #06C167; margin-left: 4px; }

/* ─────── FIND US ─────── */
.hh-find {
  padding: 96px 40px;
  background: var(--hh-yellow);
}
.hh-find-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  max-width: 1280px;
  margin: 0 auto;
  align-items: start;
}
.hh-find-block {
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 3px solid var(--hh-maroon);
}
.hh-find-block:last-of-type { border-bottom: none; }
.hh-find-lbl {
  font-family: 'Bungee', sans-serif;
  color: var(--hh-red);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 13px;
  margin-bottom: 8px;
}
.hh-find-val {
  font-family: 'Outfit', sans-serif;
  color: var(--hh-maroon);
  font-size: 19px;
  font-weight: 600;
  line-height: 1.4;
}
.hh-find-phone {
  font-family: 'Hitchcut', 'Bowlby One', sans-serif;
  color: var(--hh-red);
  text-shadow: 3px 3px 0 var(--hh-maroon);
  font-size: 36px;
  text-decoration: none;
  letter-spacing: 0.01em;
  display: inline-block;
}
.hh-link-arrow {
  display: inline-block;
  margin-top: 8px;
  font-family: 'Bungee', sans-serif;
  color: var(--hh-red);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 13px;
  text-decoration: none;
  border-bottom: 3px solid var(--hh-red);
  padding-bottom: 2px;
}
.hh-link-arrow:hover { color: var(--hh-red-deep); border-bottom-color: var(--hh-red-deep); }
.hh-hours {
  width: 100%;
  border-collapse: collapse;
}
.hh-hours td {
  padding: 8px 0;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  color: var(--hh-maroon);
  font-weight: 600;
  border-bottom: 2px dashed rgba(122, 0, 0, 0.35);
}
.hh-hours tr:last-child td { border-bottom: none; }
.hh-hours td:last-child { text-align: right; }
.hh-hours-closed {
  font-family: 'Bungee', sans-serif;
  color: var(--hh-red) !important;
  font-size: 13px !important;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hh-find-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.hh-pill {
  font-family: 'Bungee', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 11px;
  background: var(--hh-yellow);
  color: var(--hh-red);
  border: 2.5px solid var(--hh-maroon);
  border-radius: 999px;
  padding: 6px 12px;
  box-shadow: 2px 2px 0 var(--hh-maroon);
}
.hh-find-map {
  border: 4px solid var(--hh-maroon);
  border-radius: 16px;
  box-shadow: 10px 10px 0 var(--hh-maroon-ink);
  overflow: hidden;
  background: var(--hh-cream);
  position: relative;
  height: 540px;
}
.hh-find-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: contrast(1.05) saturate(0.9);
}

/* ─────── FOOTER ─────── */
.hh-footer {
  background: var(--hh-maroon);
  color: var(--hh-yellow);
  padding: 64px 40px 24px;
  border-top: 4px solid var(--hh-maroon-ink);
}
.hh-footer-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  max-width: 1280px;
  margin: 0 auto 48px;
  align-items: start;
}
.hh-footer-mark {
  font-family: 'Hitchcut', 'Bowlby One', sans-serif;
  color: var(--hh-yellow);
  text-shadow: 5px 5px 0 var(--hh-maroon-ink);
  font-size: clamp(64px, 7vw, 96px);
  line-height: 0.85;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.hh-footer-tag {
  font-family: 'Bungee', sans-serif;
  color: var(--hh-yellow);
  opacity: 0.85;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 12px;
}
.hh-footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  padding-top: 18px;
}
.hh-footer-h {
  font-family: 'Bungee', sans-serif;
  color: var(--hh-yellow);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 13px;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(255, 170, 0, 0.4);
}
.hh-footer-l {
  font-family: 'Outfit', sans-serif;
  color: var(--hh-yellow);
  font-size: 14px;
  line-height: 1.7;
  display: block;
}
.hh-footer-l--dim { opacity: 0.6; }
.hh-footer-link {
  text-decoration: none;
  border-bottom: 2px solid rgba(255, 170, 0, 0.4);
  padding-bottom: 1px;
}
.hh-footer-link:hover { border-bottom-color: var(--hh-yellow); }
.hh-footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 20px;
  border-top: 2px solid rgba(255, 170, 0, 0.25);
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  color: var(--hh-yellow);
  opacity: 0.7;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

/* ─────── MOBILE — class-based so it works inside scaled artboards ─────── */
.hh-site--mobile .hh-header {
  padding: 12px 16px;
  gap: 10px;
  flex-wrap: nowrap;
}
.hh-site--mobile .hh-brand-logo { height: 36px; }
.hh-site--mobile .hh-nav { display: none; }
.hh-site--mobile .hh-btn-sm { padding: 9px 14px; font-size: 11.5px; white-space: nowrap; }

.hh-site--mobile .hh-hero {
  padding: 36px 20px 0;
  min-height: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hh-site--mobile .hh-hero-eyebrow { font-size: 11px; margin-bottom: 14px; }
.hh-site--mobile .hh-hero-title {
  font-size: 64px;
  text-shadow: 5px 5px 0 var(--hh-maroon);
  margin-bottom: 18px;
  word-break: break-word;
}
.hh-site--mobile .hh-hero-sub { font-size: 15.5px; line-height: 1.45; margin-bottom: 22px; }
.hh-site--mobile .hh-hero-ctas { gap: 10px; margin-bottom: 36px; }
.hh-site--mobile .hh-btn-lg { padding: 14px 20px; font-size: 14px; }
.hh-site--mobile .hh-hero-sticker {
  position: absolute;
  top: 56px;
  right: 16px;
  transform: rotate(-12deg);
  width: 88px; height: 88px;
  margin: 0;
  border-width: 3px;
  box-shadow: 4px 4px 0 var(--hh-maroon-ink);
  z-index: 2;
}
.hh-site--mobile .hh-hero-sticker-inner { font-size: 17px; }
.hh-site--mobile .hh-hero-sticker-small { font-size: 8.5px; margin-top: 3px; }
.hh-site--mobile .hh-hero .hh-stripe { margin: 0 -20px; height: 18px; }

.hh-site--mobile { overflow-x: hidden; max-width: 100%; }
.hh-site--mobile * { max-width: 100%; }
.hh-site--mobile .hh-about,
.hh-site--mobile .hh-menu,
.hh-site--mobile .hh-find,
.hh-site--mobile .hh-order { padding: 56px 20px; }

.hh-site--mobile .hh-about-copy p {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hh-site--mobile .hh-about-inner,
.hh-site--mobile .hh-find-inner,
.hh-site--mobile .hh-order-cards,
.hh-site--mobile .hh-footer-inner {
  grid-template-columns: 1fr !important;
  gap: 28px;
}
.hh-site--mobile .hh-menu-grid {
  grid-template-columns: 1fr !important;
  gap: 36px 0;
}
.hh-site--mobile .hh-about-aside { grid-template-columns: 1fr 1fr; gap: 14px; }
.hh-site--mobile .hh-stat-card { padding: 16px 14px; }
.hh-site--mobile .hh-stat-num { font-size: 44px; text-shadow: 3px 3px 0 var(--hh-maroon); }
.hh-site--mobile .hh-stat-lbl { font-size: 10.5px; }

.hh-site--mobile .hh-h1 {
  font-size: 48px;
  text-shadow: 4px 4px 0 var(--hh-maroon);
  margin-bottom: 14px;
  word-break: break-word;
}
.hh-site--mobile .hh-h2 {
  font-size: 38px;
  text-shadow: 3px 3px 0 var(--hh-maroon);
  margin-bottom: 14px;
  word-break: break-word;
}
.hh-site--mobile .hh-about-copy p { font-size: 15.5px; line-height: 1.5; }
.hh-site--mobile .hh-eyebrow { font-size: 11px; padding: 5px 11px; margin-bottom: 14px; }

.hh-site--mobile .hh-menu-head { margin-bottom: 32px; }
.hh-site--mobile .hh-menu-intro { font-size: 15.5px; margin-bottom: 18px; }
.hh-site--mobile .hh-menu-nav { gap: 6px; }
.hh-site--mobile .hh-menu-nav-link { font-size: 10.5px; padding: 6px 11px; box-shadow: 2px 2px 0 var(--hh-maroon); }

.hh-site--mobile .hh-cat-head {
  padding-bottom: 8px;
  margin-bottom: 12px;
  border-bottom-width: 3px;
}
.hh-site--mobile .hh-cat-title { font-size: 32px; text-shadow: 3px 3px 0 var(--hh-maroon); word-break: break-word; }
.hh-site--mobile .hh-cat-sub { font-size: 10px; }

/* menu items — stack price under content on mobile */
.hh-site--mobile .hh-mi {
  flex-direction: column;
  gap: 6px;
  align-items: stretch;
  padding: 12px 0;
}
.hh-site--mobile .hh-mi-name { font-size: 16px; }
.hh-site--mobile .hh-mi-desc { font-size: 11px; }
.hh-site--mobile .hh-mi-right { width: 100%; }
.hh-site--mobile .hh-mi-price { font-size: 24px; text-shadow: 2px 2px 0 var(--hh-maroon); }
.hh-site--mobile .hh-mi-variants { justify-content: flex-start; gap: 8px; }
.hh-site--mobile .hh-mi-variant { min-width: 50px; padding: 3px 8px 5px; }
.hh-site--mobile .hh-mi-variant-lbl { font-size: 9px; }
.hh-site--mobile .hh-mi-variant-price { font-size: 14px; }

/* tags wrap, never overflow */
.hh-site--mobile .hh-tag { font-size: 8.5px; padding: 2px 6px; }

/* order section */
.hh-site--mobile .hh-order-intro { font-size: 15.5px; margin-bottom: 26px; }
.hh-site--mobile .hh-order-card-body { padding: 22px 22px 18px; }
.hh-site--mobile .hh-order-card-stub { width: 18px; }
.hh-site--mobile .hh-order-card-tag { font-size: 11px; margin-bottom: 16px; }
.hh-site--mobile .hh-order-card-cta { font-size: 14px; padding-top: 14px; }
.hh-site--mobile .hh-ubereats-logo,
.hh-site--mobile .hh-order-card--doordash .hh-order-card-platform text { font-size: 22px; }

/* find us */
.hh-site--mobile .hh-find-block { margin-bottom: 22px; padding-bottom: 16px; }
.hh-site--mobile .hh-find-val { font-size: 16px; }
.hh-site--mobile .hh-find-phone { font-size: 24px; text-shadow: 2px 2px 0 var(--hh-maroon); word-break: break-word; }
.hh-site--mobile .hh-hours td { font-size: 13.5px; padding: 7px 0; }
.hh-site--mobile .hh-hours-closed { font-size: 11.5px !important; }
.hh-site--mobile .hh-find-map { height: 320px; box-shadow: 6px 6px 0 var(--hh-maroon-ink); }
.hh-site--mobile .hh-pill { font-size: 10px; padding: 5px 10px; }

/* footer */
.hh-site--mobile .hh-footer { padding: 44px 20px 20px; }
.hh-site--mobile .hh-footer-cols { grid-template-columns: 1fr 1fr; gap: 22px; padding-top: 8px; }
.hh-site--mobile .hh-footer-mark { font-size: 44px; text-shadow: 3px 3px 0 var(--hh-maroon-ink); word-break: break-word; }
.hh-site--mobile .hh-footer-tag { font-size: 10.5px; }
.hh-site--mobile .hh-footer-h { font-size: 11px; margin-bottom: 8px; padding-bottom: 6px; }
.hh-site--mobile .hh-footer-l { font-size: 12.5px; line-height: 1.6; }
.hh-site--mobile .hh-footer-bottom { font-size: 10.5px; flex-direction: column; gap: 4px; }

/* fallback: real-viewport mobile (when site is at small actual width) */
@media (max-width: 860px) {
  .hh-header { padding: 12px 16px; gap: 10px; flex-wrap: nowrap; }
  .hh-brand-logo { height: 36px; }
  .hh-nav { display: none; }
  .hh-btn-sm { padding: 9px 14px; font-size: 11.5px; white-space: nowrap; }
  .hh-hero { padding: 40px 20px 0; min-height: auto; }
  .hh-hero-title { font-size: 76px; text-shadow: 5px 5px 0 var(--hh-maroon); }
  .hh-hero-sub { font-size: 15.5px; }
  .hh-hero-sticker { width: 90px; height: 90px; top: 30px; right: 14px; }
  .hh-hero-sticker-inner { font-size: 19px; }
  .hh-hero .hh-stripe { margin: 0 -20px; }
  .hh-about, .hh-menu, .hh-find, .hh-order { padding: 56px 20px; }
  .hh-about-inner, .hh-find-inner, .hh-order-cards, .hh-footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .hh-menu-grid { grid-template-columns: 1fr; }
  .hh-footer-cols { grid-template-columns: 1fr 1fr; gap: 22px; }
  .hh-footer { padding: 44px 20px 20px; }
  .hh-find-map { height: 320px; }
  .hh-mi { flex-direction: column; gap: 6px; align-items: stretch; }
  .hh-mi-right { width: 100%; }
  .hh-mi-variants { justify-content: flex-start; }
}
