/* custom.css — per-site design layer.
 *
 * Ships with the Basecamp project bar. Everything else is intentionally empty:
 * this is where a site adds bespoke design without forking the template.
 * `sites update-template` PRESERVES this file, so template updates never
 * clobber a site's custom look.
 */

/* ── Basecamp project bar ──────────────────────────────────────────────
   Shows signed-in Basecamp users their subscribed cards and a quick
   "Talk" button for feedback. Hidden until /_api/portal/me returns ok. */

body.zk-has-open-bar:not(.zk-open-bar-minimized) {
  --zk-bc-bar-h: 2.4rem;
}

.zk-open-bar {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--color-surface);
  border-bottom: 1px solid color-mix(in srgb, var(--color-text) 12%, transparent);
  color: var(--color-text);
  font: inherit;
  box-sizing: border-box;
}

.zk-open-bar.is-minimized {
  position: fixed;
  top: 0.55rem;
  left: 0.55rem;
  right: auto;
  width: auto;
  height: auto;
  background: transparent;
  border: 0;
  z-index: 70;
}

.zk-open-bar.is-minimized .zk-open-bar-inner,
.zk-open-bar.is-minimized .zk-open-panel {
  display: none !important;
}

.zk-open-bar-inner {
  max-width: 80rem;
  margin-inline: auto;
  padding: 0.3rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 2.35rem;
  box-sizing: border-box;
}

.zk-open-bar-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  font: inherit;
  color: var(--color-text);
  cursor: pointer;
  padding: 0.28rem 0.55rem 0.28rem 0.6rem;
  border: 1px solid color-mix(in srgb, var(--color-text) 18%, transparent);
  background: color-mix(in srgb, var(--color-text) 4%, transparent);
  line-height: 1.15;
  min-height: 1.7rem;
  box-sizing: border-box;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.12s ease;
}

.zk-open-bar-toggle:hover {
  border-color: var(--color-text);
  background: color-mix(in srgb, var(--color-text) 8%, transparent);
  transform: translateY(-1px);
}

.zk-open-bar-toggle.has-items {
  border-color: var(--color-text);
  background: var(--color-text);
  color: var(--color-surface);
}

.zk-open-bar-toggle.has-items:hover {
  filter: brightness(1.05);
}

.zk-open-bar.is-open .zk-open-bar-toggle {
  border-color: var(--color-text);
  background: color-mix(in srgb, var(--color-text) 8%, transparent);
}

.zk-open-bar-pulse {
  display: none;
  position: absolute;
  left: 0.55rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: var(--color-surface);
  box-shadow: 0 0 0 0 color-mix(in srgb, var(--color-text) 35%, transparent);
  animation: zk-open-ping 1.6s ease-out infinite;
}

.zk-open-bar-toggle.has-items .zk-open-bar-pulse {
  display: block;
}

.zk-open-bar-toggle.has-items .zk-open-bar-label {
  padding-left: 0.55rem;
}

@keyframes zk-open-ping {
  0% { box-shadow: 0 0 0 0 color-mix(in srgb, var(--color-text) 35%, transparent); }
  70% { box-shadow: 0 0 0 0.55rem color-mix(in srgb, var(--color-text) 0%, transparent); }
  100% { box-shadow: 0 0 0 0 color-mix(in srgb, var(--color-text) 0%, transparent); }
}

.zk-open-bar-label {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.7rem;
  color: inherit;
  line-height: 1.15;
}

.zk-open-bar-count {
  min-width: 1.2rem;
  height: 1.2rem;
  padding: 0 0.32rem;
  border-radius: 999px;
  background: var(--color-text);
  color: var(--color-surface);
  font-size: 0.68rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.zk-open-bar-toggle.has-items .zk-open-bar-count {
  background: var(--color-surface);
  color: var(--color-text);
}

.zk-open-bar-count.is-zero {
  background: color-mix(in srgb, var(--color-text) 12%, transparent);
  color: color-mix(in srgb, var(--color-text) 55%, transparent);
}

.zk-open-bar-chevron {
  flex-shrink: 0;
  width: 0.85rem;
  height: 0.85rem;
  opacity: 0.75;
  transition: transform 0.18s ease, opacity 0.15s ease;
}

.zk-open-bar.is-open .zk-open-bar-chevron {
  transform: rotate(180deg);
  opacity: 1;
}

.zk-open-bar-who {
  flex: 1 1 auto;
  min-width: 0;
  font-size: 0.78rem;
  color: color-mix(in srgb, var(--color-text) 65%, transparent);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.zk-open-bar-ask,
.zk-open-bar-bc {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  box-sizing: border-box;
  height: 1.7rem;
  min-height: 1.7rem;
  padding: 0 0.65rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.12s ease;
}

.zk-open-bar-ask {
  color: var(--color-surface);
  background: var(--color-text);
  border-color: var(--color-text);
}

.zk-open-bar-ask:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.zk-open-bar-ask svg {
  flex-shrink: 0;
  width: 0.85rem;
  height: 0.85rem;
  opacity: 0.95;
}

.zk-open-bar-bc {
  color: var(--color-text) !important;
  text-decoration: none !important;
  background: transparent;
  border-color: color-mix(in srgb, var(--color-text) 18%, transparent);
}

.zk-open-bar-bc:hover {
  background: color-mix(in srgb, var(--color-text) 5%, transparent);
  border-color: var(--color-text);
}

.zk-open-bar-min {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.7rem;
  height: 1.7rem;
  margin-right: 0.1rem;
  padding: 0;
  border: 1px solid color-mix(in srgb, var(--color-text) 18%, transparent);
  background: transparent;
  color: color-mix(in srgb, var(--color-text) 65%, transparent);
  cursor: pointer;
  line-height: 0;
  order: -1;
}

.zk-open-bar-min:hover {
  color: var(--color-text);
  border-color: var(--color-text);
  background: color-mix(in srgb, var(--color-text) 5%, transparent);
}

.zk-open-bar-chip {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  color: var(--color-surface);
  background: var(--color-text);
  border: 1px solid color-mix(in srgb, var(--color-surface) 25%, transparent);
  padding: 0.35rem 0.45rem;
  min-height: 2rem;
  min-width: 2rem;
  cursor: pointer;
  box-shadow: 0 4px 14px rgb(0 0 0 / 0.18);
  line-height: 0;
  border-radius: 0;
}

.zk-open-bar.is-minimized .zk-open-bar-chip {
  display: inline-flex;
}

.zk-open-bar-chip:hover {
  border-color: var(--color-surface);
}

.zk-open-bar-chip-icon {
  flex-shrink: 0;
  width: 0.85rem;
  height: 0.85rem;
  color: var(--color-surface);
  display: block;
  opacity: 0.95;
}

.zk-open-bar-chip .zk-open-bar-count {
  min-width: 1.15rem;
  height: 1.15rem;
  padding: 0 0.28rem;
  font-size: 0.65rem;
  background: var(--color-surface);
  color: var(--color-text);
}

.zk-open-bar-drop {
  position: relative;
  flex-shrink: 0;
  z-index: 62;
}

.zk-open-panel {
  position: absolute;
  top: calc(100% + 0.4rem);
  left: 0;
  right: auto;
  width: min(22rem, calc(100vw - 1.5rem));
  max-height: min(70vh, 26rem);
  overflow-y: auto;
  margin: 0;
  border: 1px solid color-mix(in srgb, var(--color-text) 12%, transparent);
  background: var(--color-surface);
  color: var(--color-text);
  box-shadow: 0 12px 32px rgb(0 0 0 / 0.14);
  z-index: 63;
}

@media (min-width: 480px) {
  .zk-open-panel {
    min-width: 16rem;
  }
}

.zk-open-panel-inner {
  max-width: none;
  margin: 0;
  padding: 0.7rem 0.75rem 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.zk-open-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  padding: 0.9rem 1.1rem;
  border: 1px solid color-mix(in srgb, var(--color-text) 10%, transparent);
  background: color-mix(in srgb, var(--color-text) 2%, transparent);
  text-decoration: none !important;
  color: inherit !important;
  transition: border-color 160ms ease, background 160ms ease;
  box-sizing: border-box;
}

.zk-open-item:hover {
  border-color: var(--color-text);
  background: color-mix(in srgb, var(--color-text) 5%, transparent);
}

.zk-open-item-col {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text);
  line-height: 1.3;
  opacity: 0.7;
}

.zk-open-item-title {
  display: block;
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.3;
  color: var(--color-text);
}

.zk-open-item-meta {
  display: block;
  font-size: 0.8rem;
  color: var(--color-secondary);
  line-height: 1.35;
  margin-top: 0.1rem;
}

.zk-open-empty {
  margin: 0;
  padding: 0.65rem 0.15rem 0.35rem;
  color: var(--color-secondary);
  font-size: 0.9rem;
  line-height: 1.45;
}

/* Push the site header below the expanded bar */
body.zk-has-open-bar:not(.zk-open-bar-minimized) > header {
  top: var(--zk-bc-bar-h, 2.4rem);
}

body.zk-has-open-bar.zk-open-bar-minimized > header {
  top: 0;
}

@media (max-width: 640px) {
  body.zk-has-open-bar:not(.zk-open-bar-minimized) {
    --zk-bc-bar-h: 2.35rem;
  }
  .zk-open-bar-inner {
    padding: 0.28rem 0.85rem;
    gap: 0.5rem;
  }
  .zk-open-bar-who {
    display: none;
  }
  .zk-open-panel {
    left: 0;
    width: min(20rem, calc(100vw - 1.25rem));
    max-width: calc(100vw - 1.25rem);
  }
  .zk-open-panel-inner {
    padding: 0.65rem 0.65rem 0.75rem;
  }
  .zk-open-bar.is-minimized {
    top: auto;
    bottom: 0.85rem;
    left: 0.85rem;
    right: auto;
  }
}

/* ── Ghetto Tacos — full site design ───────────────────────────────────
   Kit is the canvas. This layer is the brand: black / red / cream,
   TOONISH type, the taco-guy mascot, and real shop photography. */

@font-face {
  font-family: "TOONISH";
  src: url("/assets/fonts/TOONISH.otf") format("opentype");
  font-weight: 400 700;
  font-display: swap;
}
@font-face {
  font-family: "TOONISH Condensed";
  src: url("/assets/fonts/TOONISH-Condensed.otf") format("opentype");
  font-weight: 400 700;
  font-display: swap;
}

:root {
  --gt-red: #C8102E;
  --gt-red-dark: #9A0C24;
  --gt-black: #0B0B0B;
  --gt-gray: #6E6E6E;
  --gt-cream: #F4EFE6;
  --gt-dock-h: 4.4rem;
  --color-primary: #C8102E;
  --color-dark: #0B0B0B;
  --color-secondary: #6E6E6E;
  --color-surface: #F4EFE6;
  --color-text: #0B0B0B;
}

html { color-scheme: light; }
.zk-theme-btn { display: none !important; }

body.gt-body {
  font-family: "Avenir Next", "Segoe UI", ui-sans-serif, system-ui, sans-serif;
  background: var(--gt-cream);
  color: var(--gt-black);
  padding-bottom: var(--gt-dock-h);
}
@media (min-width: 768px) {
  body.gt-body { padding-bottom: 0; }
}

h1, h2, h3, .hero h1, .zk-isplit-panel h2, .zk-tile-label,
.zk-contactcta-copy h2, .gt-week-card h3 {
  font-family: "TOONISH", ui-sans-serif, system-ui, sans-serif;
  letter-spacing: 0.02em;
  line-height: 1.05;
}

.btn-primary, .btn-secondary, .gt-dock a, .gt-path span,
.gt-header-ctas a, .gt-kicker {
  font-family: "TOONISH Condensed", ui-sans-serif, system-ui, sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.btn-primary {
  background: var(--gt-red);
  color: #fff;
  border: 0;
  border-radius: 2px;
  padding: 0.9rem 1.4rem;
  box-shadow: 3px 3px 0 #000;
}
.btn-primary:hover { background: var(--gt-red-dark); filter: none; transform: translate(-1px, -1px); box-shadow: 4px 4px 0 #000; }
.btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 2px;
  padding: 0.85rem 1.3rem;
}
.btn-secondary:hover { background: #fff; color: var(--gt-black); }

/* ── Header ─────────────────────────────────────────────────────────── */
.gt-header {
  background: var(--gt-black) !important;
  border-bottom: 4px solid var(--gt-red) !important;
  color: #f4efe6;
  backdrop-filter: none;
  transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.25s ease;
  will-change: transform;
}
.gt-header.is-away {
  transform: translate3d(0, calc(-100% - 4px), 0);
  pointer-events: none;
}
.gt-header.is-scrolled {
  box-shadow: 0 10px 0 rgba(200, 16, 46, 0.28);
}
@media (prefers-reduced-motion: reduce) {
  .gt-header { transition: none; }
  .gt-header.is-away { transform: none; pointer-events: auto; }
}
.gt-header .h-16 { height: 5.5rem; }
.gt-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  min-width: 0;
}
.gt-logo {
  height: 3.75rem;
  width: auto;
  max-height: 3.75rem;
  filter: none;
  pointer-events: none;
}
.gt-logo-anim {
  width: 7.35rem;
  overflow: hidden;
  background: #000;
}
.gt-logo-static { display: none; }
@media (min-width: 768px) {
  .gt-header .h-16 { height: 6.25rem; }
  .gt-logo { height: 4.5rem; max-height: 4.5rem; }
  .gt-logo-anim { width: 8.8rem; }
}
@media (prefers-reduced-motion: reduce) {
  .gt-logo-anim { display: none; }
  .gt-logo-static { display: block; }
}
.gt-site-title {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}
.gt-header .navlink {
  color: #f4efe6;
  font-family: "TOONISH Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
  padding: 0.4rem 0.55rem;
}
.gt-header .navlink:hover,
.gt-header .navlink-active { color: var(--gt-red); }
.gt-header .navlink-active::after {
  background: var(--gt-red);
  height: 3px;
  bottom: 0;
}
.gt-header .zk-mnav-btn { color: #f4efe6; }
.gt-header .zk-theme-btn { color: #f4efe6; }
.gt-header .zk-mnav-panel {
  top: 5.5rem;
  background: var(--gt-black);
  color: #f4efe6;
  border-bottom: 4px solid var(--gt-red);
  box-shadow: 0 16px 0 rgba(0, 0, 0, 0.35);
}
@media (min-width: 768px) {
  .gt-header .zk-mnav-panel { top: 6.25rem; }
}
.gt-header .zk-mnav-panel .navlink,
.gt-header .zk-mnav-panel .zk-navgroup-btn,
.gt-header .zk-mnav-panel .zk-navgroup-item {
  color: #f4efe6;
  display: block;
  font-size: 1.05rem;
  padding: 0.85rem 0.75rem;
}
.gt-header .zk-mnav-panel .navlink:hover,
.gt-header .zk-mnav-panel .navlink-active,
.gt-header .zk-mnav-panel .zk-navgroup-btn:hover {
  color: var(--gt-red);
  background: transparent;
}
.gt-header-ctas {
  display: none;
  align-items: center;
  gap: 0.5rem;
}
@media (min-width: 1100px) {
  .gt-header-ctas { display: flex; }
}
.gt-header-ctas .btn-sm {
  padding: 0.5rem 0.85rem;
  font-size: 0.72rem;
  box-shadow: 2px 2px 0 #000;
}
.gt-header-ctas .btn-secondary {
  color: #f4efe6;
  border-color: #f4efe6;
  box-shadow: none;
}
.gt-header-ctas .btn-secondary:hover {
  background: #f4efe6;
  color: var(--gt-black);
}
.gt-iconbtn,
.gt-cart {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  color: #f4efe6;
  text-decoration: none;
  flex: none;
}
.gt-iconbtn:hover,
.gt-cart:hover { color: var(--gt-red); }
.gt-cart.is-bump { animation: gt-cart-bump 0.45s ease; }
@keyframes gt-cart-bump {
  0% { transform: scale(1); }
  40% { transform: scale(1.18); }
  100% { transform: scale(1); }
}
.gt-cart [data-gt-cart-count]:not(:empty) {
  position: absolute;
  top: 0.15rem;
  right: 0.05rem;
  background: var(--gt-red);
  color: #fff;
  min-width: 1.15rem;
  height: 1.15rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 0 0.28rem;
  line-height: 1;
}

/* ── Shop / order ───────────────────────────────────────────────────── */
.gt-order {
  max-width: 72rem;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
}
.gt-order-head h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  margin: 0 0 0.5rem;
}
.gt-order-head p { margin: 0 0 0.4rem; max-width: 40rem; }
.gt-staff { font-size: 0.85rem; }
.gt-staff a { font-weight: 800; }
.gt-crumb { font-size: 0.9rem; }
.gt-crumb a { text-decoration: underline; }
.gt-sr {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.gt-shop-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: stretch;
  margin: 0 0 1rem;
  position: sticky;
  top: 0.4rem;
  z-index: 8;
  background: var(--gt-cream, #f4efe6);
  padding: 0.5rem 0;
}
.gt-shop-search {
  display: flex;
  flex: 1 1 16rem;
  gap: 0.4rem;
  min-width: 0;
}
.gt-search-field {
  position: relative;
  flex: 1 1 auto;
  min-width: 0;
}
.gt-shop-search input[type="search"] {
  width: 100%;
  min-width: 0;
  border: 3px solid #000;
  padding: 0.55rem 2.4rem 0.55rem 0.75rem;
  font-size: 1rem;
  background: #fff;
}
.gt-shop-search input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
}
.gt-search-clear {
  position: absolute;
  right: 0.35rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.85rem;
  height: 1.85rem;
  border: 0;
  background: transparent;
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
  color: #000;
}
.gt-search-clear:hover { color: var(--gt-red); }
.gt-shop-search > button { flex: none; }
.gt-meat-hint {
  margin: -0.25rem 0 0.75rem;
}
.gt-meat-hint[hidden] { display: none; }
.gt-meat-hint p {
  margin: 0 0 0.4rem;
  font-weight: 800;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.gt-meats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.65rem;
}
.gt-meat {
  border: 0;
  background: transparent;
  padding: 0;
  font: inherit;
  font-weight: 800;
  font-size: 1.05rem;
  text-decoration: underline;
  text-underline-offset: 0.18em;
  cursor: pointer;
  color: inherit;
}
.gt-meat:hover { color: var(--gt-red); }
.gt-meat-hint.is-on .gt-meat {
  animation: gt-meat-in 0.4s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.gt-meat-hint.is-on .gt-meat:nth-child(1) { animation-delay: 0.02s; }
.gt-meat-hint.is-on .gt-meat:nth-child(2) { animation-delay: 0.07s; }
.gt-meat-hint.is-on .gt-meat:nth-child(3) { animation-delay: 0.12s; }
.gt-meat-hint.is-on .gt-meat:nth-child(4) { animation-delay: 0.17s; }
.gt-meat-hint.is-on .gt-meat:nth-child(5) { animation-delay: 0.22s; }
@keyframes gt-meat-in {
  from { opacity: 0; transform: translateY(0.45rem); }
  to { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .gt-meat-hint.is-on .gt-meat { animation: none; }
}
.gt-shop-cart { flex: none; align-self: stretch; display: inline-flex; align-items: center; }
.gt-chips {
  display: flex;
  gap: 0.45rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0 0 0.85rem;
  margin: 0 0 0.5rem;
  scrollbar-width: thin;
}
.gt-chips a {
  flex: none;
  border: 3px solid #000;
  background: #fff;
  color: inherit;
  text-decoration: none;
  padding: 0.35rem 0.85rem;
  font-weight: 800;
  font-size: 0.9rem;
}
.gt-chips a.is-on,
.gt-chips a[aria-current="page"] {
  background: var(--gt-black);
  color: #fff;
}
.gt-cats {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .gt-cats { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .gt-cats { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.gt-cat {
  display: grid;
  grid-template-columns: 6.5rem minmax(0, 1fr);
  gap: 0.85rem;
  align-items: center;
  background: #fff;
  outline: 3px solid #000;
  color: inherit;
  text-decoration: none;
  padding: 0.65rem;
}
.gt-cat img {
  width: 6.5rem;
  height: 6.5rem;
  object-fit: cover;
  display: block;
}
.gt-cat h2 { margin: 0 0 0.25rem; font-size: 1.45rem; }
.gt-cat p { margin: 0; font-size: 0.9rem; }
.gt-cat span { display: block; margin-top: 0.35rem; font-weight: 800; font-size: 0.8rem; }
.gt-tiles {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 560px) {
  .gt-tiles { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 960px) {
  .gt-tiles { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.gt-tile {
  display: flex;
  flex-direction: column;
  background: #fff;
  outline: 3px solid #000;
  color: inherit;
  text-decoration: none;
  min-width: 0;
}
.gt-tile img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}
.gt-tile-body { padding: 0.85rem 0.9rem 1rem; }
.gt-tile h3 { margin: 0 0 0.35rem; font-size: 1.2rem; }
.gt-tile-why { margin: 0 0 0.45rem; font-size: 0.85rem; }
.gt-tile .gt-price { margin-left: 0; display: block; }
.gt-product {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 800px) {
  .gt-product { grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr); align-items: start; }
}
.gt-product-photo {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  outline: 3px solid #000;
}
.gt-product-photo img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  pointer-events: none;
}
.gt-product-photo:focus-visible { outline-color: var(--gt-red); }
.gt-lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: rgba(0, 0, 0, 0.88);
  cursor: zoom-out;
}
.gt-lightbox[hidden] { display: none; }
.gt-lightbox img {
  max-width: min(96vw, 56rem);
  max-height: 88vh;
  width: auto;
  height: auto;
  object-fit: contain;
  outline: 3px solid #fff;
  cursor: default;
}
.gt-lightbox-x {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 2.75rem;
  height: 2.75rem;
  border: 3px solid #fff;
  background: #000;
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}
.gt-lightbox-x:hover { background: var(--gt-red); border-color: var(--gt-red); }
body.gt-lightbox-on { overflow: hidden; }
.gt-product-body h1 { margin: 0 0 0.35rem; font-size: clamp(1.8rem, 4vw, 2.6rem); }
.gt-product-price { font-size: 1.4rem; font-weight: 800; margin: 0 0 0.75rem; }
.gt-share { margin: 0.85rem 0 1.1rem; }
.gt-share-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 3px solid #000;
  background: #fff;
  color: inherit;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 0.45rem 0.85rem;
  cursor: pointer;
}
.gt-share-toggle:hover,
.gt-share.is-open .gt-share-toggle {
  background: var(--gt-black);
  color: #fff;
}
.gt-share-row {
  display: none;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.5rem;
}
.gt-share.is-open .gt-share-row { display: flex; }
.gt-share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #000;
  background: #fff;
  color: inherit;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.82rem;
  padding: 0.4rem 0.7rem;
  cursor: pointer;
  line-height: 1.2;
}
.gt-share-btn:hover { background: var(--gt-black); color: #fff; }
.gt-share-btn.is-copied { background: var(--gt-red); color: #fff; border-color: var(--gt-red); }
.gt-order-cartlink { margin-top: 1rem; }
.gt-order h2 {
  margin: 2rem 0 1rem;
  font-size: 1.6rem;
}
.gt-order-next {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  margin: 2.5rem 0 0;
  padding: 1rem 0 0;
  border-top: 3px solid #000;
}
.gt-order-next p { margin: 0; font-weight: 700; }
.gt-signup { margin: 1rem 0 0.75rem; }
.gt-signup > p { margin: 0 0 0.4rem; font-weight: 800; }
.gt-signup-row { display: flex; gap: 0.4rem; flex-wrap: wrap; }
.gt-signup input[type="email"] {
  flex: 1 1 10rem;
  min-width: 0;
  border: 2px solid currentColor;
  background: transparent;
  padding: 0.45rem 0.6rem;
}
.gt-signup-ok { margin: 0; font-weight: 800; font-size: 1rem; }
.gt-menu {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .gt-menu { grid-template-columns: 1fr 1fr; }
}
.gt-item {
  display: grid;
  grid-template-columns: 7.5rem minmax(0, 1fr);
  gap: 1rem;
  background: var(--gt-cream, #f4efe6);
  outline: 3px solid #000;
  padding: 0.75rem;
}
.gt-item:not(:has(> img)),
.gt-item.is-nophoto {
  grid-template-columns: minmax(0, 1fr);
}
.gt-item-body { min-width: 0; }
.gt-item img {
  width: 7.5rem;
  height: 7.5rem;
  object-fit: cover;
  display: block;
}
.gt-item h3 { margin: 0 0 0.35rem; font-size: 1.25rem; }
.gt-item p { margin: 0 0 0.75rem; font-size: 0.92rem; line-height: 1.4; }
.gt-add { display: grid; gap: 0.65rem; }
.gt-opt-group {
  border: 0;
  margin: 0;
  padding: 0.15rem 0 0;
  display: grid;
  gap: 0.2rem;
  min-width: 0;
}
.gt-opt-group legend {
  font-weight: 800;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0;
  margin: 0 0 0.1rem;
}
.gt-opt-group.is-wide {
  grid-template-columns: 1fr 1fr;
}
.gt-opt-group.is-wide legend { grid-column: 1 / -1; }
.gt-opt-choice {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  font-size: 0.9rem;
  line-height: 1.3;
}
.gt-opt-choice input { margin-top: 0.15rem; flex: none; }
.gt-opt-choice span { font-weight: 700; }
.gt-pack-hint { margin: 0 0 0.45rem; font-size: 0.88rem; grid-column: 1 / -1; }
.gt-pack-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.95rem;
}
.gt-pack-row select {
  width: 4.5rem;
  border: 2px solid #000;
  padding: 0.25rem 0.35rem;
  background: #fff;
}
.gt-pack-sum { margin: 0.35rem 0 0; font-weight: 800; grid-column: 1 / -1; }
.gt-pack.is-bad .gt-pack-sum { color: var(--gt-red); }
.gt-pack.is-ok .gt-pack-sum { color: #1a7a32; }
.gt-opt select, .gt-add input[type="number"], .gt-checkout input, .gt-checkout select, .gt-checkout textarea, .gt-qty input {
  width: 100%;
  border: 2px solid #000;
  padding: 0.4rem 0.5rem;
  background: #fff;
}
.gt-add-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
}
.gt-add-row label { display: flex; align-items: center; gap: 0.35rem; }
.gt-add-row input[type="number"] { width: 4rem; }
.gt-price { font-weight: 800; margin-left: auto; }
.gt-order-err {
  background: #fff3f3;
  outline: 3px solid var(--gt-red);
  padding: 0.75rem 1rem;
}
.gt-cart-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.75rem; }
.gt-cart-list li {
  display: grid;
  grid-template-columns: 4.5rem 1fr auto;
  gap: 0.75rem;
  align-items: center;
  outline: 3px solid #000;
  padding: 0.6rem;
}
.gt-cart-list img { width: 4.5rem; height: 4.5rem; object-fit: cover; }
.gt-cart-list span { display: block; font-size: 0.85rem; }
.gt-qty { display: flex; gap: 0.4rem; align-items: center; margin-top: 0; }
.gt-qty input { width: 4rem; }
.gt-qty-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  margin-top: 0.45rem;
}
.gt-remove button,
.gt-clear button {
  border: 2px solid #000;
  background: #fff;
  padding: 0.35rem 0.7rem;
  font-weight: 800;
  cursor: pointer;
}
.gt-remove button:hover,
.gt-clear button:hover { background: #fff3f3; color: var(--gt-red); }
.gt-cart-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 0.75rem;
}
.gt-cart-total { font-size: 1.3rem; text-align: right; margin: 0; }
.gt-checkout { display: grid; gap: 0.85rem; max-width: 28rem; }
.gt-checkout label span { font-weight: 400; font-size: 0.85rem; }

.gt-added {
  position: fixed;
  z-index: 60;
  top: 5.75rem;
  right: 1rem;
  left: 1rem;
  max-width: 28rem;
  margin-left: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  background: #fff;
  color: var(--gt-black);
  outline: 3px solid #000;
  box-shadow: 6px 6px 0 #000;
  padding: 0.85rem 1rem;
}
.gt-added::before {
  content: "";
  position: absolute;
  top: -8px;
  right: 2.4rem;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #000;
}
@media (min-width: 768px) {
  .gt-added { left: auto; width: 28rem; top: 6.5rem; }
}
.gt-added p { margin: 0; flex: 1 1 10rem; font-size: 0.95rem; }
.gt-added-x {
  border: 0;
  background: transparent;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  color: var(--gt-black);
  padding: 0 0.15rem;
}
.gt-added-x:hover { color: var(--gt-red); }

/* ── Home hero: mascot + photo ──────────────────────────────────────── */
.gt-hero {
  position: relative;
  overflow: hidden;
  background: var(--gt-black);
  color: #fff;
  min-height: 32rem;
}
.gt-hero-photo {
  position: absolute;
  inset: 0;
  background: #0b0b0b;
}
.gt-hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, #0b0b0b 0%, rgba(11,11,11,0.55) 42%, rgba(11,11,11,0.2) 100%);
}
.gt-hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 1.1s ease;
}
.gt-hero-slide.is-portrait { object-position: center 22%; }
.gt-hero-slide.is-active { opacity: 1; }
@media (prefers-reduced-motion: reduce) {
  .gt-hero-slide { transition: none; }
}
.gt-hero-grid {
  position: relative;
  z-index: 1;
  max-width: 72rem;
  margin: 0 auto;
  padding: 3rem 1.5rem 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  align-items: end;
}
@media (min-width: 768px) {
  .gt-hero { min-height: 38rem; }
  .gt-hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    padding: 4rem 1.5rem 0;
    align-items: center;
  }
}
.gt-kicker {
  color: var(--gt-red);
  font-size: 0.85rem;
  margin: 0 0 0.75rem;
}
.gt-hero-copy h1 {
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  margin: 0;
  text-shadow: 0 4px 0 #000;
  max-width: 12ch;
}
.gt-hero-lede {
  margin: 1.1rem 0 0;
  max-width: 36rem;
  font-size: 1.08rem;
  line-height: 1.5;
  color: #f4efe6;
}
.gt-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.6rem;
}
.gt-hero-ctas .btn-primary,
.gt-hero-ctas .btn-secondary {
  width: auto;
  flex: 0 0 auto;
}
.gt-hero-mascot-wrap {
  display: flex;
  justify-content: center;
  pointer-events: none;
  overflow: visible;
}
.gt-hero-mascot {
  width: min(92vw, 28rem);
  height: auto;
  display: block;
  transform: translateY(8%);
  pointer-events: none;
  background: transparent;
  overflow: visible;
}
.gt-hero-mascot-anim {
  height: min(70vw, 22rem);
  width: min(92vw, 28rem);
  filter: none;
}
.gt-hero-mascot-static {
  display: none;
  filter: drop-shadow(6px 14px 0 rgba(0, 0, 0, 0.55));
}
@media (min-width: 768px) {
  .gt-hero-mascot {
    width: min(100%, 32rem);
    transform: translate(8%, 12%);
  }
  .gt-hero-mascot-anim {
    height: min(100%, 26rem);
    width: min(100%, 32rem);
  }
}
@media (prefers-reduced-motion: reduce) {
  .gt-hero-mascot-anim { display: none; }
  .gt-hero-mascot-static { display: block; }
}

/* ── Interior page heroes ───────────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  background-color: var(--gt-black);
  color: #fff;
  border-bottom: 4px solid var(--gt-red);
}
.hero h1, .hero p { color: #fff; }
.hero .gt-hero-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero .gt-hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(11,11,11,0.92) 0%, rgba(11,11,11,0.5) 55%, rgba(11,11,11,0.22) 100%);
}
.hero .zk-hero-content { position: relative; z-index: 2; }
.hero .gt-hero-mascot-wrap.is-compact {
  position: absolute;
  right: 4%;
  bottom: 0;
  z-index: 2;
  width: 140px;
  pointer-events: none;
}
.hero .gt-hero-mascot-anim,
.hero .gt-hero-mascot-static {
  width: 140px;
  height: 114px;
  transform: none;
  filter: none;
}
@media (min-width: 768px) {
  .hero .gt-hero-mascot-wrap.is-compact { width: 160px; }
  .hero .gt-hero-mascot-anim,
  .hero .gt-hero-mascot-static {
    width: 160px;
    height: 130px;
  }
}
body[data-path="/locations"] main .max-w-3xl,
body[data-path="/about"] main .max-w-3xl,
body[data-path="/merch"] main .max-w-3xl,
body[data-path="/catering"] main .max-w-3xl {
  max-width: 72rem;
}

/* ── Shop vs truck ──────────────────────────────────────────────────── */
.gt-paths {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: 1fr;
  max-width: 72rem;
  margin: -2.5rem auto 0;
  padding: 0 1.5rem;
  position: relative;
  z-index: 2;
}
@media (min-width: 768px) {
  .gt-paths { grid-template-columns: 1fr 1fr; margin-top: -3rem; }
}
.gt-path {
  position: relative;
  display: block;
  min-height: 18rem;
  overflow: hidden;
  border-radius: 4px;
  color: #fff;
  text-decoration: none;
  box-shadow: 6px 6px 0 #000;
  outline: 3px solid #000;
}
.gt-path img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gt-path > div {
  position: relative;
  z-index: 1;
  height: 100%;
  min-height: 18rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.4rem 1.5rem;
  background: linear-gradient(180deg, transparent 15%, rgba(0,0,0,0.82) 100%);
}
.gt-path h2 { font-size: 2.2rem; margin: 0 0 0.3rem; }
.gt-path p { margin: 0 0 0.9rem; color: #f4efe6; font-size: 0.98rem; line-height: 1.4; }
.gt-path span {
  display: inline-block;
  background: var(--gt-red);
  color: #fff;
  padding: 0.5rem 0.95rem;
  border-radius: 2px;
  font-size: 0.85rem;
  box-shadow: 2px 2px 0 #000;
}
.gt-path-truck span { background: #111; border: 2px solid #fff; box-shadow: none; }
.gt-path:hover { transform: translate(-2px, -2px); }

.gt-note {
  max-width: 72rem;
  margin: 1rem auto 0;
  padding: 0 1.5rem;
  font-size: 0.95rem;
  color: var(--gt-gray);
}
.gt-note strong { color: var(--gt-red); }

/* ── Film strip ─────────────────────────────────────────────────────── */
.gt-film {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.4rem;
  max-width: 72rem;
  margin: 2rem auto 0;
  padding: 0 1.5rem;
}
@media (min-width: 768px) {
  .gt-film { grid-template-columns: repeat(6, 1fr); }
}
.gt-film img {
  width: 100%;
  height: 7.5rem;
  object-fit: cover;
  display: block;
  outline: 3px solid #000;
}
@media (min-width: 768px) {
  .gt-film img { height: 9.5rem; }
}

.gt-people {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr 1fr;
  margin: 1.5rem 0;
}
.gt-people img {
  width: 100%;
  height: 16rem;
  object-fit: cover;
  outline: 3px solid #000;
  box-shadow: 5px 5px 0 var(--gt-red);
}
.gt-people:has(> img:only-child) {
  display: block;
  max-width: 18rem;
  margin: 0 auto 1.25rem;
}
.gt-people:has(> img:only-child) img {
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
@media (min-width: 768px) {
  .gt-people:has(> img:only-child) {
    float: right;
    width: 26rem;
    max-width: 46%;
    margin: 0 0 1.35rem 1.6rem;
  }
  .article::after {
    content: "";
    display: table;
    clear: both;
  }
}

.gt-mission {
  max-width: 72rem;
  margin: 0 auto;
  padding: 3rem 1.5rem 1.5rem;
  text-align: center;
}
.gt-mission .gt-kicker { margin: 0 0 0.7rem; }
.gt-mission h2 {
  font-size: clamp(1.8rem, 4.5vw, 3.1rem);
  margin: 0 auto 2.2rem;
  max-width: 16ch;
  line-height: 1.05;
}
.gt-mission .gt-values { max-width: 48rem; margin: 0.75rem auto 0; }

.gt-values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
  margin: 1.25rem 0 0;
}
@media (min-width: 640px) {
  .gt-values { grid-template-columns: repeat(4, 1fr); }
}
.gt-values div {
  text-align: center;
  padding: 1.1rem 0.4rem;
  background: #fff;
  outline: 3px solid #000;
  font-family: "TOONISH Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.95rem;
  box-shadow: 3px 3px 0 var(--gt-red);
}

.gt-editor-note {
  max-width: 72rem;
  margin: 0 0 1rem;
  padding: 0.85rem 1.1rem;
  background: #fff8e6;
  outline: 3px solid #000;
  font-size: 0.95rem;
  line-height: 1.45;
}
body:not(.zk-editing) .gt-editor-note,
body:not(.zk-editing) .gt-map-edit { display: none; }
.gt-map-workspace { display: block; }
body.zk-editing .gt-map-workspace {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
body.zk-editing .gt-map-edit {
  display: grid;
  gap: 0.75rem;
  order: -1;
}
@media (min-width: 1024px) {
  body.zk-editing .gt-map-workspace {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(20rem, 0.85fr);
    align-items: start;
    gap: 1rem;
  }
  body.zk-editing .gt-map-edit {
    order: 0;
    max-height: min(70vh, 38rem);
    overflow-y: auto;
    padding-right: 0.2rem;
  }
  body.zk-editing .gt-map-stage { position: sticky; top: 6.5rem; }
  body.zk-editing .gt-map { height: min(70vh, 36rem); }
}
.gt-map-edit-head .gt-kicker { margin-bottom: 0.4rem; }
.gt-map-edit-card {
  position: relative;
  background: #fff;
  outline: 3px solid #000;
  padding: 1rem 1.1rem 1.1rem;
  padding-right: 3.2rem;
  cursor: pointer;
}
.gt-map-edit-card.is-on { outline-color: var(--gt-red); box-shadow: 4px 4px 0 var(--gt-red); }
.gt-map-show {
  margin-top: 0.65rem;
  border: 0;
  cursor: pointer;
  font-family: "TOONISH Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.78rem;
  background: #111;
  color: #fff;
  outline: 2px solid #000;
  padding: 0.35rem 0.65rem;
}
.gt-map-show:hover { background: var(--gt-red); }
.gt-map-edit-label {
  margin: 0.65rem 0 0.2rem;
  font-family: "TOONISH Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.7rem;
  color: var(--gt-red);
}
.gt-map-edit-card h3 { margin: 0; font-size: 1.15rem; }
.gt-map-kind, .gt-map-addr {
  width: 100%;
  font: inherit;
  padding: 0.4rem 0.5rem;
  outline: 2px solid #000;
  border: 0;
  background: #fff;
}
.gt-map-suggest {
  list-style: none;
  margin: 0.25rem 0 0;
  padding: 0;
  outline: 2px solid #000;
  background: #fff;
}
.gt-map-suggest button {
  display: block;
  width: 100%;
  text-align: left;
  border: 0;
  background: #fff;
  padding: 0.45rem 0.6rem;
  cursor: pointer;
  font: inherit;
  font-size: 0.88rem;
}
.gt-map-suggest button:hover { background: #f4efe6; }
.gt-map-edit-ok { margin: 0.35rem 0 0; font-size: 0.8rem; color: #1a7a3a; }
.gt-map-edit-wait { margin: 0.35rem 0 0; font-size: 0.8rem; color: #666; }

.gt-contact-band {
  max-width: 72rem;
  margin: 0 auto;
  padding: 2rem 1.5rem 1rem;
}
.gt-contact-grid {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 900px) {
  .gt-contact-grid {
    grid-template-columns: minmax(16rem, 0.85fr) minmax(0, 1.35fr);
    align-items: stretch;
  }
}
.gt-contact-card {
  background: #fff;
  outline: 3px solid #000;
  box-shadow: 8px 8px 0 var(--gt-red);
  padding: 1.4rem 1.35rem 1.5rem;
}
.gt-contact-card h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
}
.gt-contact-addr {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  line-height: 1.4;
}
.gt-hours {
  margin: 0 0 1rem;
  display: grid;
  gap: 0.35rem;
}
.gt-hours div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 2px solid #eee;
  padding: 0.35rem 0;
}
.gt-hours dt { font-weight: 700; }
.gt-hours dd { margin: 0; }
.gt-contact-phone {
  margin: 0 0 0.35rem;
  font-size: 1.2rem;
  font-family: "TOONISH Condensed", sans-serif;
  letter-spacing: 0.04em;
}
.gt-contact-phone a { color: var(--gt-red); text-decoration: none; }
.gt-contact-phone a:hover { text-decoration: underline; }
.gt-contact-dir { margin: 0 0 1.15rem; }
.gt-contact-dir a { font-weight: 800; }
.gt-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}
.gt-contact-actions .btn-secondary {
  background: #fff;
  color: var(--gt-black);
  border: 3px solid #000;
}
.gt-contact-actions .btn-secondary:hover {
  background: var(--gt-black);
  color: #fff;
}
.gt-contact-write {
  max-width: 40rem;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 3.5rem;
}
.gt-contact-write h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
}
.gt-map-stage.is-single .gt-map-hud-skip { display: none; }
.gt-contact-grid .gt-map { min-height: 22rem; height: min(52vh, 28rem); }

.gt-map-band {
  max-width: 72rem;
  margin: 0 auto 2rem;
  padding: 0 1.5rem;
}
.gt-map-head { margin: 0 0 0.85rem; }
.gt-map-head h2 { margin: 0; font-size: clamp(1.8rem, 4vw, 2.8rem); }
.gt-map-stage { position: relative; }
.gt-map-fs {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  z-index: 8;
  border: 0;
  cursor: pointer;
  font-family: "TOONISH Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.72rem;
  background: #fff;
  color: #111;
  outline: 2px solid #000;
  padding: 0.35rem 0.55rem;
}
.gt-map-stage:fullscreen,
.gt-map-stage:-webkit-full-screen,
.gt-map-stage.is-fs {
  width: 100vw;
  height: 100vh;
  max-height: none;
  background: #0b0b0b;
  outline: none;
  box-shadow: none;
  z-index: 90;
}
.gt-map-stage.is-fs {
  position: fixed;
  inset: 0;
}
.gt-map-stage:fullscreen .gt-map,
.gt-map-stage:-webkit-full-screen .gt-map,
.gt-map-stage.is-fs .gt-map {
  height: 100% !important;
  min-height: 100% !important;
  outline: none;
  box-shadow: none;
}
.gt-map-stage:fullscreen .mapboxgl-cooperative-gesture-screen,
.gt-map-stage:-webkit-full-screen .mapboxgl-cooperative-gesture-screen,
.gt-map-stage.is-fs .mapboxgl-cooperative-gesture-screen {
  display: none !important;
}
body.gt-map-fs-on { overflow: hidden; }
.gt-map {
  height: min(72vh, 38rem);
  min-height: 22rem;
  outline: 3px solid #000;
  box-shadow: 8px 8px 0 var(--gt-red);
  background: #111;
  overflow: hidden;
}
.gt-map-hud {
  position: absolute;
  left: 0.7rem;
  right: 0.7rem;
  bottom: 0.7rem;
  z-index: 6;
  display: flex;
  align-items: stretch;
  background: rgba(255,255,255,0.94);
  outline: 3px solid #000;
  box-shadow: 6px 6px 0 var(--gt-red);
  min-height: 5.5rem;
  pointer-events: auto;
}
.gt-map-hud-skip {
  flex: 0 0 2.6rem;
  border: 0;
  background: #111;
  color: #fff;
  font-size: 1.7rem;
  cursor: pointer;
  font-family: inherit;
}
.gt-map-hud-skip:hover { background: var(--gt-red); }
.gt-map-hud-body {
  flex: 1;
  min-width: 0;
  padding: 0.7rem 0.85rem 0.75rem;
}
.gt-map-hud-kind {
  margin: 0;
  font-family: "TOONISH Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.68rem;
  color: var(--gt-red);
}
.gt-map-hud h3 {
  margin: 0.1rem 0 0.15rem;
  font-size: 1.15rem;
  line-height: 1.1;
}
.gt-map-hud-body > p[data-hud-detail] {
  margin: 0;
  font-size: 0.82rem;
  color: #333;
}
@media (max-width: 640px) {
  .gt-map {
    height: min(58vh, 26rem);
    min-height: 16rem;
  }
  .gt-contact-grid .gt-map {
    height: min(42vh, 20rem);
    min-height: 14rem;
  }
  .gt-map-label { display: none; }
  .gt-map-hud {
    left: 0.4rem;
    right: 0.4rem;
    bottom: 0.4rem;
    min-height: 0;
  }
  .gt-map-hud-body { padding: 0.5rem 0.6rem 0.55rem; }
  .gt-map-hud h3 { font-size: 1rem; }
  .gt-map-hud-body > p[data-hud-detail] {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }
  .gt-map-hud-skip { flex: 0 0 2.2rem; font-size: 1.45rem; }
  .gt-map-filter { font-size: 0.75rem; padding: 0.35rem 0.55rem; }
  .gt-map-band { padding: 0 1rem; }
  .gt-contact-band { padding-left: 1rem; padding-right: 1rem; }
  .gt-header .h-16 { height: 4.75rem; }
  .gt-logo { height: 3.1rem; max-height: 3.1rem; }
  .gt-logo-anim { width: 6.1rem; }
}
.gt-dir { position: relative; margin-top: 0.55rem; }
.gt-dir-main {
  position: relative;
  z-index: 2;
  border: 0;
  cursor: pointer;
  font-family: "TOONISH Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  background: var(--gt-red);
  color: #fff;
  outline: 2px solid #000;
  padding: 0.4rem 0.75rem;
}
.gt-dir.is-open .gt-dir-main { background: #111; }
.gt-dir-fx {
  position: absolute;
  inset: -0.4rem 0 auto 0;
  height: 3.4rem;
  width: 100%;
  pointer-events: none;
  z-index: 1;
}
.gt-dir-apps {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.45rem;
  perspective: 480px;
}
.gt-dir-app {
  transform: translateY(8px) rotateX(-80deg);
  opacity: 0;
  pointer-events: none;
  transform-origin: top center;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.25s ease;
  font-family: "TOONISH Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.75rem;
  text-decoration: none;
  color: #111;
  background: #fff;
  outline: 2px solid #000;
  padding: 0.35rem 0.65rem;
}
.gt-dir-google { box-shadow: 3px 3px 0 #4285f4; }
.gt-dir-apple { box-shadow: 3px 3px 0 #111; }
.gt-dir.is-open .gt-dir-app {
  transform: none;
  opacity: 1;
  pointer-events: auto;
}
.gt-dir.is-open .gt-dir-app:nth-child(2) { transition-delay: 0.08s; }
@media (prefers-reduced-motion: reduce) {
  .gt-dir-app { transition: none; }
}
.gt-map .mapboxgl-canvas { outline: none; }
.gt-map-missing {
  color: #f4efe6;
  padding: 2rem 1.25rem;
  margin: 0;
}
.gt-map-controls { margin-top: 0.95rem; }
.gt-map-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0 0 0.75rem;
}
.gt-map-filter,
.gt-map-skip,
.gt-map-stop {
  font-family: "TOONISH Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border: 0;
  cursor: pointer;
  outline: 2px solid #000;
  background: #fff;
  color: #111;
}
.gt-map-filter {
  padding: 0.4rem 0.75rem;
  font-size: 0.82rem;
}
.gt-map-filter.is-on,
.gt-map-stop.is-on {
  background: var(--gt-red);
  color: #fff;
}
.gt-map-tour {
  display: flex;
  align-items: stretch;
  gap: 0.45rem;
}
.gt-map-skip {
  flex: 0 0 2.4rem;
  font-size: 1.6rem;
  line-height: 1;
  background: #111;
  color: #fff;
}
.gt-map-skip:hover { background: var(--gt-red); }
.gt-map-stops {
  display: flex;
  gap: 0.45rem;
  overflow-x: auto;
  padding: 0.1rem 0.1rem 0.45rem;
  flex: 1;
  scrollbar-width: thin;
}
.gt-map-stop {
  flex: 0 0 auto;
  text-align: left;
  padding: 0.45rem 0.7rem;
  max-width: 14rem;
}
.gt-map-stop-k {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  opacity: 0.7;
}
.gt-map-stop-t {
  display: block;
  font-size: 0.82rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 12.5rem;
}
.gt-map-stop-shop { box-shadow: 3px 3px 0 var(--gt-red); }
.gt-map-stop-truck { box-shadow: 3px 3px 0 #ed2233; }
.gt-map-stop-trailer { box-shadow: 3px 3px 0 #111; }
.gt-map-label {
  border: 0;
  cursor: pointer;
  font-family: "TOONISH Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.68rem;
  background: #fff;
  color: #111;
  outline: 2px solid #000;
  padding: 0.2rem 0.4rem;
  white-space: nowrap;
  max-width: 14rem;
  overflow: hidden;
  text-overflow: ellipsis;
}
.gt-map-label-shop { background: var(--gt-red); color: #fff; }
.gt-map-label-trailer { background: #f4efe6; }
.mapboxgl-popup-content {
  font-family: inherit;
  outline: 3px solid #000;
  border-radius: 0;
  padding: 0.7rem 0.85rem;
  box-shadow: 4px 4px 0 var(--gt-red);
}
.mapboxgl-ctrl-group { border-radius: 0 !important; outline: 2px solid #000; }

.gt-week {
  display: grid;
  gap: 1.25rem;
  margin: 1.5rem 0;
}
@media (min-width: 768px) {
  .gt-week { grid-template-columns: 1fr 1fr; }
}
.gt-week-card {
  background: #fff;
  outline: 3px solid #000;
  box-shadow: 6px 6px 0 var(--gt-red);
  border-radius: 0;
  padding: 1.35rem 1.4rem;
}
.gt-week-card h3 { margin: 0 0 0.75rem; font-size: 1.5rem; }
.gt-week-card dl { margin: 0; }
.gt-week-card dt {
  font-family: "TOONISH Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  color: var(--gt-red);
  margin-top: 0.7rem;
}
.gt-week-card dd { margin: 0.15rem 0 0; }

/* ── Kit section restyles ───────────────────────────────────────────── */
body:not(.zk-editing) .zk-post-admin { display: none; }
.zk-post-flag {
  margin: 0;
  font-family: "TOONISH Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  padding: 0.35rem 0.55rem;
  outline: 2px solid #000;
  background: #fff;
}
.zk-post-flag-draft { background: #fff8e6; }
.zk-post-flag-scheduled { background: var(--gt-red); color: #fff; }
.zk-post-wrap { display: flex; flex-direction: column; gap: 0.45rem; }
.zk-post-admin {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 0.65rem;
  background: #fff8e6;
  outline: 2px solid #000;
  margin-bottom: 0.75rem;
}
.zk-post-badge {
  font-family: "TOONISH Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  padding: 0.2rem 0.45rem;
  outline: 2px solid #000;
  background: #fff;
}
.zk-post-badge-live { background: #1a7a3a; color: #fff; }
.zk-post-badge-draft { background: #fff; }
.zk-post-badge-scheduled { background: var(--gt-red); color: #fff; }
.zk-post-btn {
  border: 0;
  cursor: pointer;
  font-family: "TOONISH Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.75rem;
  background: #111;
  color: #fff;
  outline: 2px solid #000;
  padding: 0.3rem 0.55rem;
}
.zk-post-btn:hover { background: var(--gt-red); }
.zk-post-btn-danger { background: #fff; color: #111; }
.zk-post-btn-danger:hover { background: #111; color: #fff; }
.zk-post-sched {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
}
.zk-post-sched input {
  font: inherit;
  padding: 0.25rem 0.35rem;
  outline: 2px solid #000;
  border: 0;
}

body.zk-editing .zk-write-area {
  min-height: 24rem;
  padding: 1.5rem 1.25rem 2rem;
  background: #fffef8;
  outline: 2px dashed #c8c2b6;
  margin-top: 1.25rem;
}
body.zk-editing .zk-write-area.zk-active {
  outline: 2px solid var(--gt-red);
  background: #fff;
}
body.zk-editing .zk-write-area.is-blank::before {
  content: attr(data-placeholder);
  color: #8b8680;
  font-size: 1.2rem;
  line-height: 1.55;
  pointer-events: none;
  display: block;
}

.article img {
  border-radius: 0;
  outline: 3px solid #000;
  box-shadow: 6px 6px 0 var(--gt-red);
}

.zk-tile {
  border-radius: 4px;
  outline: 3px solid #000;
  box-shadow: 4px 4px 0 var(--gt-red);
  max-width: none;
}
.zk-tile-label {
  font-family: "TOONISH Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 1.05rem;
}
.zk-contactcta { padding: 3rem 1rem; }
.zk-contactcta-card {
  background: var(--gt-black);
  border-radius: 0;
  outline: 4px solid var(--gt-red);
  box-shadow: 8px 8px 0 #000;
}
footer[data-footer] {
  background: var(--gt-black) !important;
  color: #f4efe6 !important;
  border-top: 4px solid var(--gt-red) !important;
}
.gt-brand-footer {
  display: inline-flex;
  align-items: center;
  background: transparent;
  padding: 0;
}
.gt-hero-mascot-wrap.is-footer {
  width: 9.75rem;
  height: 9.75rem;
  pointer-events: none;
}
.gt-hero-mascot-wrap.is-footer .gt-hero-mascot-anim,
.gt-hero-mascot-wrap.is-footer .gt-hero-mascot-static {
  width: 9.75rem;
  height: 9.75rem;
  transform: none;
  filter: none;
}
.gt-footer-tagline,
footer[data-footer] p,
footer[data-footer] a,
footer[data-footer] li,
footer[data-footer] .text-\[var\(--color-text\)\],
footer[data-footer] .text-\[var\(--color-secondary\)\] {
  color: #d8d2c8 !important;
}
footer[data-footer] a:hover { color: #fff !important; }
footer[data-footer] .font-bold,
footer[data-footer] .font-semibold { color: #fff !important; }

/* ── Mobile dock ────────────────────────────────────────────────────── */
.gt-dock {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 45;
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: var(--gt-dock-h);
  background: #000;
  border-top: 3px solid var(--gt-red);
}
.gt-dock a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  text-decoration: none;
  font-size: 0.78rem;
  padding: 0.45rem 0.5rem;
  line-height: 1.15;
}
.gt-dock-shop { background: var(--gt-red); }
.gt-dock-truck { background: #000; }
@media (min-width: 768px) {
  .gt-dock { display: none; }
}
