/*
Theme Name: Graphix Garage
Theme URI: https://graphixgaragetn.com
Author: Porch Light Desk
Author URI:
Description: Custom high-contrast theme for Graphix Garage (Columbia TN) — vehicle wraps, fleet branding, custom signs. Orange / black / lime-neon van-wrap aesthetic. No page-builder required.
Version: 2.6.2
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: graphix-garage
Tags: custom-logo, custom-menu, featured-images, full-width-template, theme-options
*/

/* ==========================================================================
   Design tokens — van wrap aesthetic
   ========================================================================== */
/* Bills / sports display (copyright egg + accents) */
@font-face {
  font-family: "GG Bills";
  src: url("assets/fonts/Anton-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --gg-orange: #FF5A00;
  --gg-orange-hot: #FF7A2E;
  --gg-orange-dark: #CC4700;
  --gg-black: #0A0A0A;
  --gg-black-soft: #141414;
  --gg-charcoal: #1C1C1C;
  --gg-gray: #2A2A2A;
  --gg-muted: #9A9A9A;
  --gg-lime: #C6FF00;
  --gg-lime-dim: #A8D900;
  --gg-white: #FFFFFF;
  --gg-offwhite: #F5F5F0;
  --gg-font-display: "Oswald", "Arial Narrow", Impact, sans-serif;
  --gg-font-bills: "GG Bills", Anton, "Arial Narrow", Impact, sans-serif;
  --gg-font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --gg-radius: 4px;
  --gg-max: 1180px;
  --gg-header-h: 94px; /* 72 bar + 22 race stripe */
  --gg-sticky-h: 68px;
  --gg-shadow: 0 8px 32px rgba(0,0,0,.45);
  --gg-ease: cubic-bezier(.22,.61,.36,1);
}

/* Reset / base */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; max-width: 100%; }
body {
  margin: 0;
  font-family: var(--gg-font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--gg-offwhite);
  background: var(--gg-black);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  max-width: 100%;
  position: relative;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gg-lime); text-decoration: none; transition: color .2s var(--gg-ease); }
a:hover { color: var(--gg-orange); }
h1,h2,h3,h4,h5,h6 {
  font-family: var(--gg-font-display);
  font-weight: 700;
  letter-spacing: .02em;
  line-height: 1.15;
  text-transform: uppercase;
  margin: 0 0 .6em;
  color: var(--gg-white);
}
h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.55rem); }
p { margin: 0 0 1.1em; }
ul, ol { margin: 0 0 1.2em; padding-left: 1.25em; }
li { margin-bottom: .4em; }
.screen-reader-text {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

/* Layout */
.gg-wrap {
  width: min(100% - 2rem, var(--gg-max)); max-width: 100%;
  margin-inline: auto;
}
.gg-section { padding: 4.5rem 0; }
.gg-section--tight { padding: 3rem 0; }
.gg-section--dark { background: var(--gg-black-soft); }
.gg-section--charcoal { background: var(--gg-charcoal); }
.gg-section--orange {
  position: relative;
  overflow: hidden;
  color: var(--gg-black);
  background:
    /* fine grain */
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.18'/%3E%3C/svg%3E"),
    /* racing / hazard stripes */
    repeating-linear-gradient(
      -32deg,
      rgba(0,0,0,.14) 0 10px,
      rgba(0,0,0,0) 10px 22px
    ),
    /* soft lime rim light */
    radial-gradient(ellipse 80% 70% at 50% 120%, rgba(198,255,0,.28), transparent 55%),
    /* base orange */
    linear-gradient(135deg, var(--gg-orange) 0%, #ff6a18 42%, var(--gg-orange-dark) 100%);
  background-blend-mode: soft-light, multiply, normal, normal;
  box-shadow: inset 0 0 0 3px rgba(10,10,10,.35), inset 0 0 0 5px rgba(198,255,0,.35);
}
.gg-section--orange::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(10,10,10,.22), transparent 18%, transparent 82%, rgba(10,10,10,.22)),
    linear-gradient(180deg, rgba(255,255,255,.12), transparent 30%, transparent 70%, rgba(0,0,0,.18));
  z-index: 0;
}
.gg-section--orange::after {
  content: "";
  position: absolute;
  left: -8%;
  right: -8%;
  top: 50%;
  height: 2px;
  transform: translateY(-50%) rotate(-32deg);
  background: repeating-linear-gradient(
    90deg,
    rgba(198,255,0,.55) 0 18px,
    transparent 18px 34px
  );
  opacity: .35;
  pointer-events: none;
  z-index: 0;
}
.gg-section--orange > * { position: relative; z-index: 1; }
.gg-section--orange h2,
.gg-section--orange h3 { color: var(--gg-black); text-shadow: 0 1px 0 rgba(255,255,255,.2); }
.gg-section--lime { background: var(--gg-lime); color: var(--gg-black); }
.gg-section--lime h2 { color: var(--gg-black); }

.gg-eyebrow {
  display: inline-block;
  font-family: var(--gg-font-display);
  font-size: .85rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gg-lime);
  margin-bottom: .75rem;
}
.gg-lead { font-size: 1.15rem; color: #d4d4d4; max-width: 42rem; }

/* Header */
.gg-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,10,10,.92);
  backdrop-filter: blur(12px);
  border-bottom: none;
  height: auto;
  min-height: var(--gg-header-h);
  overflow-x: clip;
  overflow-y: visible;
  max-width: 100%;
}
.gg-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 72px;
  min-height: 72px;
}
@media (min-width: 1180px) {
  .gg-header__inner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    column-gap: 1.25rem;
  }
}
.gg-logo {
  display: flex;
  align-items: center;
  gap: .65rem;
  color: var(--gg-white);
  text-decoration: none;
  flex-shrink: 0;
  min-width: 0;
  z-index: 2;
}
.gg-logo img { height: 48px; width: auto; flex-shrink: 0; }
.gg-logo__text {
  font-family: var(--gg-font-display);
  font-size: 1.08rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  line-height: 1.1;
  white-space: nowrap;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transform: translateY(-1px);
}
.gg-logo__text span {
  color: var(--gg-orange);
  display: block;
  font-size: .66rem;
  letter-spacing: .14em;
  margin-top: .12rem;
  line-height: 1;
}

/* Desktop nav only when there's room — otherwise hamburger (no overlap) */
.gg-nav { display: none; min-width: 0; }
@media (min-width: 1180px) {
  .gg-nav { display: block; justify-self: center; width: 100%; max-width: 100%; }
}
.gg-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: nowrap;
  gap: clamp(.55rem, 1.1vw, 1.15rem);
  align-items: center;
  justify-content: center;
}
.gg-nav a {
  font-family: var(--gg-font-display);
  font-size: clamp(.72rem, .9vw, .82rem);
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gg-offwhite);
  white-space: nowrap;
}
.gg-nav a:hover,
.gg-nav .current-menu-item > a { color: var(--gg-lime); }

.gg-header__cta {
  display: inline-flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: .45rem;
  flex-shrink: 0;
  margin-left: auto;
  z-index: 2;
}
.gg-header__cta .gg-btn,
.gg-header__cta .gg-menu-toggle {
  flex-shrink: 0;
}
.gg-header .gg-btn {
  white-space: nowrap;
  padding: .55rem .9rem;
  min-height: 40px;
  font-size: .78rem;
  letter-spacing: .06em;
  line-height: 1;
}
@media (max-width: 480px) {
  .gg-logo img { height: 42px; }
  .gg-logo__text {
    font-size: .98rem;
    letter-spacing: .05em;
    transform: translateY(-2px);
  }
  .gg-logo__text span {
    display: block;
    font-size: .62rem;
    letter-spacing: .14em;
    margin-top: .12rem;
  }
  .gg-header .gg-btn {
    padding: .5rem .7rem;
    min-height: 36px;
    font-size: .72rem;
  }
  .gg-header__inner { gap: .5rem; }
  .gg-header__cta { gap: .3rem; }
}

.gg-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  font-family: var(--gg-font-display);
  font-size: .9rem;
  letter-spacing: .07em;
  text-transform: uppercase;
  font-weight: 700;
  padding: .85rem 1.4rem;
  min-height: 48px;
  border: 0;
  border-radius: 11px;
  cursor: pointer;
  text-decoration: none !important;
  text-align: center;
  line-height: 1.15;
  transition: transform .12s ease, filter .15s ease, box-shadow .15s ease;
  -webkit-tap-highlight-color: transparent;
}
.gg-btn:hover { filter: brightness(1.06); transform: translateY(-1px); }
.gg-btn:active { transform: scale(.97); filter: brightness(.95); }
.gg-btn--orange {
  background: linear-gradient(165deg, #FF8A3D 0%, var(--gg-orange) 55%, #E04F00 100%);
  color: var(--gg-black) !important;
  text-shadow: 0 1px 0 rgba(255,255,255,.22);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.4), 0 2px 8px rgba(255,90,0,.35);
  animation: none;
}
.gg-btn--orange:hover {
  color: var(--gg-black) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.45), 0 4px 14px rgba(255,90,0,.45);
}
.gg-btn--lime {
  background: linear-gradient(165deg, #E2FF6A 0%, var(--gg-lime) 55%, #9FCF00 100%);
  color: var(--gg-black) !important;
  text-shadow: 0 1px 0 rgba(255,255,255,.28);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.45), 0 2px 8px rgba(198,255,0,.28);
  animation: none;
}
.gg-btn--lime:hover {
  color: var(--gg-black) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.5), 0 4px 14px rgba(198,255,0,.4);
}
.gg-btn--outline {
  background: linear-gradient(165deg, #2a2a2a 0%, #1a1a1a 55%, #111 100%);
  color: var(--gg-white) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12), inset 0 0 0 1.5px var(--gg-lime), 0 2px 8px rgba(0,0,0,.35);
}
.gg-btn--outline:hover {
  color: var(--gg-lime) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.16), inset 0 0 0 1.5px var(--gg-lime), 0 4px 14px rgba(198,255,0,.25);
}
.gg-btn--outline-orange {
  background: linear-gradient(165deg, #2a2a2a 0%, #1a1a1a 55%, #111 100%);
  color: var(--gg-orange) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12), inset 0 0 0 1.5px var(--gg-orange), 0 2px 8px rgba(0,0,0,.35);
}
.gg-btn--ghost-black {
  background: linear-gradient(165deg, #222 0%, #0A0A0A 55%, #000 100%);
  color: var(--gg-lime) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 2px 8px rgba(0,0,0,.4);
}
.gg-btn--block { width: 100%; }
.gg-btn--lg { padding: 1.05rem 1.7rem; font-size: 1.02rem; min-height: 54px; }

.gg-menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: .5rem;
  cursor: pointer;
}
.gg-menu-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--gg-orange);
}
@media (min-width: 1180px) {
  .gg-menu-toggle { display: none; }
}

/* Mobile drawer */
.gg-drawer {
  position: fixed;
  /* Stop above sticky Call/Text/Request bar so Contact/Quote isn't trapped underneath */
  inset: var(--gg-header-h) 0 var(--gg-sticky-h) 0;
  background: var(--gg-black);
  z-index: 99;
  padding: 1.5rem;
  padding-bottom: calc(2rem + env(safe-area-inset-bottom, 0px));
  transform: translateX(100%);
  transition: transform .3s var(--gg-ease);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  touch-action: pan-y;
}
@media (min-width: 768px) {
  .gg-drawer { inset: var(--gg-header-h) 0 0 0; }
}
.gg-drawer.is-open { transform: translateX(0); }
.gg-drawer ul { list-style: none; margin: 0; padding: 0; }
.gg-drawer a {
  display: block;
  font-family: var(--gg-font-display);
  font-size: 1.25rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gg-white);
  padding: .85rem 0;
  border-bottom: 1px solid var(--gg-gray);
}
.gg-drawer a:hover { color: var(--gg-lime); }
.gg-drawer__cta {
  margin-top: 1.5rem;
  margin-bottom: .5rem;
  display: grid;
  gap: .75rem;
}
.gg-drawer__cta .gg-btn {
  display: flex;
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  justify-content: center;
}

/* Hero — shared base */
.gg-hero {
  position: relative;
  overflow: hidden;
}

/* Hero — legacy full-bleed overlay (Our Work short hero, etc.) */
.gg-hero:not(.gg-hero--split) {
  min-height: clamp(420px, 72vh, 780px);
  display: flex;
  align-items: flex-end;
  background: #111 url("assets/img/van-hero-full.jpg") 50% 45% / cover no-repeat;
}
.gg-hero:not(.gg-hero--split)::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,.12) 0%, rgba(10,10,10,.28) 48%, rgba(10,10,10,.72) 100%);
  z-index: 1;
  pointer-events: none;
}
.gg-hero:not(.gg-hero--split) .gg-hero__content {
  position: relative;
  z-index: 2;
  padding: 3.5rem 0 4rem;
  width: min(100% - 2rem, 720px);
  max-width: 100%;
  margin-inline: auto;
}
@media (min-width: 1180px) {
  .gg-hero:not(.gg-hero--split) .gg-hero__content {
    margin-left: max(1rem, calc((100% - var(--gg-max)) / 2));
    margin-right: auto;
  }
}


/* Full-bleed shop hero — photo behind type (restores East 9th first screen) */
.gg-hero.gg-hero--shop {
  position: relative;
  min-height: clamp(420px, 70vh, 720px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #0a0a0a;
}
.gg-hero.gg-hero--shop .gg-hero__pic {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  margin: 0;
  z-index: 0;
}
.gg-hero.gg-hero--shop .gg-hero__pic img {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none;
  object-fit: cover;
  /* Mobile portrait hero — truck + shop + sky */
  object-position: 50% 35%;
}
@media (min-width: 768px) {
  .gg-hero.gg-hero--shop {
    min-height: clamp(520px, 78vh, 860px);
  }
  .gg-hero.gg-hero--shop .gg-hero__pic img {
    /* Desktop uses shop-hero-desktop (full scene zoomed out) */
    object-position: 50% 45%;
  }
}
.gg-hero.gg-hero--shop::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(10,10,10,.35) 0%, rgba(10,10,10,.45) 40%, rgba(10,10,10,.82) 100%);
}
.gg-hero.gg-hero--shop .gg-hero__content {
  position: relative;
  z-index: 2;
  padding: 3.5rem 1.25rem 4rem;
  width: min(100% - 2rem, 720px);
  max-width: 100%;
  margin-inline: auto;
  text-align: center;
  justify-items: center;
}
.gg-hero.gg-hero--shop .gg-hero__actions {
  display: flex !important;
  justify-content: center;
  flex-wrap: wrap;
  gap: .75rem;
}
.gg-hero.gg-hero--shop .gg-hero__stripe {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 28px;
  z-index: 3;
  background: #0a0a0a url("assets/img/gg-race-stripe.jpg") center / 100% 100% no-repeat;
}
@media (min-width: 768px) {
  .gg-hero.gg-hero--shop .gg-hero__content {
    text-align: left;
    margin-left: max(1rem, calc((100% - var(--gg-max)) / 2));
    margin-right: auto;
  }
  .gg-hero.gg-hero--shop .gg-hero__actions { justify-content: center; }
}

/* Hero — Death Row / Eskimo split (homepage): copy LEFT, photo RIGHT */
.gg-hero.gg-hero--split {
  display: grid !important;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto auto;
  grid-template-areas:
    "copy"
    "media"
    "stripe";
  min-height: 0;
  background: #0a0a0a !important;
  background-image: none !important;
  align-items: center;
  position: relative;
  overflow: hidden;
  max-width: 100%;
}
@media (min-width: 981px) {
  .gg-hero.gg-hero--split {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    grid-template-rows: auto auto;
    grid-template-areas:
      "copy media"
      "stripe stripe";
  }
}
.gg-hero.gg-hero--split::before,
.gg-hero.gg-hero--split::after {
  content: none !important;
  display: none !important;
}
.gg-hero.gg-hero--split .gg-hero__content {
  grid-area: copy;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  padding: 72px 40px 80px;
  background: #0a0a0a;
  width: auto;
  max-width: none;
  margin: 0 !important;
  position: relative !important;
  inset: auto !important;
  z-index: 1;
}
.gg-hero.gg-hero--split .gg-hero__media {
  grid-area: media;
  position: relative;
  min-height: 0;
  height: auto;
  align-self: center;
  width: 100%;
  aspect-ratio: 1800 / 1267;
  overflow: hidden;
  background: #0a0a0a;
  z-index: 0;
}
.gg-hero.gg-hero--split .gg-hero__pic {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  margin: 0;
  display: block;
  z-index: 0;
}
.gg-hero.gg-hero--split .gg-hero__pic img {
  position: absolute !important;
  inset: 0 !important;
  display: block;
  width: 100% !important;
  height: 100% !important;
  max-width: none;
  /* Full van + shop — never crop subjects */
  object-fit: contain;
  object-position: center center;
  background: #0a0a0a;
}
.gg-hero.gg-hero--split .gg-hero__actions {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: .75rem;
  width: 100%;
}
.gg-hero.gg-hero--split .gg-hero__actions .gg-btn {
  margin: 0 !important;
}
.gg-hero.gg-hero--split .gg-hero__stripe {
  grid-area: stripe;
  position: relative !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  width: 100%;
  height: 28px;
  z-index: 3;
}
@media (max-width: 980px) {
  .gg-hero.gg-hero--split .gg-hero__content {
    padding: 48px 24px 40px;
  }
  .gg-hero.gg-hero--split .gg-hero__media {
    min-height: 220px;
    height: auto;
    /* Match photo aspect so contain shows full van + building */
    aspect-ratio: 1800 / 1267;
    background: #0a0a0a;
  }
  .gg-hero.gg-hero--split .gg-hero__pic img {
    object-fit: contain !important;
    object-position: center center;
  }
}

.gg-hero h1 {
  margin-bottom: .75rem;
  text-shadow: 0 2px 24px rgba(0,0,0,.6);
}
.gg-hero__tag {
  display: inline-block;
  background: var(--gg-lime);
  color: var(--gg-black);
  font-family: var(--gg-font-display);
  font-size: .8rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: .4rem .75rem;
  margin-bottom: 1rem;
  font-weight: 700;
}
.gg-hero p {
  font-size: 1.15rem;
  color: #f2f2f2;
  max-width: 34rem;
  margin-bottom: 1.5rem;
  padding: 0;
  background: none;
  box-shadow: none;
  border-radius: 0;
  text-shadow: 0 1px 3px rgba(0, 0, 0, .85), 0 2px 12px rgba(0, 0, 0, .55);
}
.gg-hero__actions { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; }
.gg-hero__actions .gg-btn { min-height: 48px; }
.gg-hero__stripe {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 28px;
  background: #0a0a0a url("assets/img/gg-race-stripe.jpg") center / 100% 100% no-repeat;
  z-index: 3;
}

/* Page hero (inner pages) */
.gg-page-hero {
  background: var(--gg-charcoal);
  border-bottom: none;
  padding: 3rem 0 2.75rem;
  position: relative;
}
.gg-page-hero::before {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 28px;
  background: #0a0a0a url("assets/img/gg-race-stripe.jpg") center / 100% 100% no-repeat;
  z-index: 2;
}
.gg-page-hero::after {
  content: "";
  position: absolute;
  right: 0; top: 0; bottom: 28px;
  width: 8px;
  background: var(--gg-lime);
}
.gg-page-hero .gg-eyebrow { color: var(--gg-orange); }
.gg-breadcrumb {
  font-size: .85rem;
  color: var(--gg-muted);
  margin-bottom: .75rem;
}
.gg-breadcrumb a { color: var(--gg-muted); }
.gg-breadcrumb a:hover { color: var(--gg-lime); }

/* Cards / grid */
.gg-grid {
  display: grid;
  gap: 1.25rem;
}
.gg-grid--2 { grid-template-columns: 1fr; }
.gg-grid--3 { grid-template-columns: 1fr; }
.gg-grid--4 { grid-template-columns: 1fr; }
@media (min-width: 640px) {
  .gg-grid--2 { grid-template-columns: repeat(2, 1fr); }
  .gg-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .gg-grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .gg-grid--3 { grid-template-columns: repeat(3, 1fr); }
  .gg-grid--4 { grid-template-columns: repeat(4, 1fr); }
}

.gg-card {
  background: var(--gg-charcoal);
  border: 1px solid #2e2e2e;
  border-radius: var(--gg-radius);
  overflow: hidden;
  transition: border-color .2s, transform .2s var(--gg-ease);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.gg-card__body { flex: 1 1 auto; display: flex; flex-direction: column; }
.gg-card__body .gg-card__link { margin-top: auto; }
.gg-card:hover {
  border-color: var(--gg-orange);
  transform: translateY(-3px);
}
.gg-card__img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center center;
  width: 100%;
  height: auto;
  background: #0a0a0a;
  display: block;
}
.gg-card__body { padding: 1.25rem 1.35rem 1.5rem; }
.gg-card h3 { margin-bottom: .5rem; font-size: 1.2rem; }
.gg-card p { color: #c8c8c8; font-size: .95rem; margin-bottom: 1rem; }
.gg-card__link {
  font-family: var(--gg-font-display);
  letter-spacing: .1em;
  text-transform: uppercase;
  font-size: .85rem;
  color: var(--gg-lime);
}
.gg-card__link:hover { color: var(--gg-orange); }

/* Service list strip */
.gg-services-strip {
  display: grid;
  gap: 1px;
  background: var(--gg-gray);
  border: 1px solid var(--gg-gray);
}
@media (min-width: 768px) {
  .gg-services-strip { grid-template-columns: repeat(5, 1fr); }
}
.gg-services-strip a {
  background: var(--gg-black-soft);
  padding: 1.35rem 1rem;
  text-align: center;
  color: var(--gg-white);
  font-family: var(--gg-font-display);
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .9rem;
}
.gg-services-strip a:hover {
  background: var(--gg-orange);
  color: var(--gg-black);
}

/* Gallery — image on top, solid black caption bar below (Death Row style) */
.gg-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .75rem;
}
@media (min-width: 768px) {
  .gg-gallery { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
}
.gg-gallery figure {
  margin: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--gg-radius);
  border: 2px solid transparent;
  background: #0a0a0a;
  transition: border-color .2s;
}
.gg-gallery figure:hover { border-color: var(--gg-lime); }
.gg-gallery img,
.gg-gallery picture {
  display: block;
  width: 100%;
}
.gg-gallery img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center center;
}
.gg-gallery--industry img {
  aspect-ratio: 16 / 10;
}
.gg-gallery figcaption {
  position: static;
  flex: 0 0 auto;
  margin: 0;
  padding: .7rem .85rem;
  background: #000;
  font-family: var(--gg-font-display);
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gg-lime);
  text-align: center;
}


/* Homepage 3×3 square gallery; center last odd tile on mobile */
.gg-gallery--home {
  grid-template-columns: repeat(2, 1fr);
  gap: .75rem;
}
@media (min-width: 768px) {
  .gg-gallery--home {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}
.gg-gallery--home img {
  aspect-ratio: 1 / 1;
  object-fit: contain; /* full vehicle visible — no crop-zoom */
  object-position: center center;
  width: 100%;
  height: auto;
  background: #0a0a0a;
}
.gg-gallery--home picture {
  background: #0a0a0a;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gg-gallery--home picture img {
  width: 100%;
  height: 100%;
}
/* Mobile 2-col: if odd count, center the last card */
@media (max-width: 767px) {
  .gg-gallery--home > figure:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    width: calc((100% - .75rem) / 2);
    justify-self: center;
  }
}

/* Split / two-col content */
.gg-split {
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 860px) {
  .gg-split { grid-template-columns: 1.1fr .9fr; gap: 3rem; }
  .gg-split--flip { grid-template-columns: .9fr 1.1fr; }
  .gg-split--flip > *:first-child { order: 2; }
}

/* FAQ accordion */
.gg-faq { display: grid; gap: .65rem; }
.gg-faq details {
  background: var(--gg-charcoal);
  border: 1px solid #2e2e2e;
  border-radius: var(--gg-radius);
  padding: 0;
}
.gg-faq details[open] { border-color: var(--gg-orange); }
.gg-faq summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--gg-font-display);
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 1.1rem 1.75rem;
  color: var(--gg-white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.gg-faq summary::-webkit-details-marker { display: none; }
.gg-faq summary::after {
  content: "+";
  color: var(--gg-lime);
  font-size: 1.4rem;
  font-weight: 700;
  flex-shrink: 0;
}
.gg-faq details[open] summary::after { content: "–"; color: var(--gg-orange); }
.gg-faq .gg-faq__a,
.gg-faq details > p {
  margin: 0;
  padding: 1rem 1.75rem 1.45rem;
  color: #cfcfcf;
  border-top: 1px solid #2a2a2a;
  line-height: 1.55;
}
.gg-faq .gg-faq__a p { margin: 0; }

/* CTA band */
.gg-cta-band {
  text-align: center;
  padding: 3.75rem 1rem;
  position: relative;
  z-index: 1;
}
.gg-cta-band h2 {
  margin-bottom: .5rem;
  letter-spacing: .04em;
}
.gg-cta-band p {
  margin: 0 auto 1.5rem;
  max-width: 36rem;
  color: rgba(10,10,10,.82);
  font-weight: 500;
}
.gg-section--orange .gg-phone-xl {
  color: var(--gg-black);
  text-shadow: 0 1px 0 rgba(255,255,255,.25);
}
.gg-section--orange .gg-btn--ghost-black {
  border-width: 2px;
  box-shadow: 0 4px 14px rgba(0,0,0,.18);
}
.gg-section--orange .gg-btn--lime {
  box-shadow: 0 4px 18px rgba(0,0,0,.22), 0 0 0 1px rgba(10,10,10,.15);
}
.gg-cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  justify-content: center;
}
.gg-phone-xl {
  font-family: var(--gg-font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  letter-spacing: .06em;
  color: var(--gg-black);
  display: block;
  margin-bottom: 1rem;
  font-weight: 700;
}

/* Nearby cities chips */
.gg-cities {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.gg-cities a {
  font-family: var(--gg-font-display);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: .55rem 1rem;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(165deg, #2a2a2a 0%, #1a1a1a 55%, #121212 100%);
  color: var(--gg-white);
  border-radius: 11px;
  border: 0;
  text-decoration: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 2px 8px rgba(0,0,0,.3);
  transition: transform .12s ease, filter .15s ease, box-shadow .15s ease, color .15s ease;
}
.gg-cities a:hover {
  background: linear-gradient(165deg, #FF8A3D 0%, var(--gg-orange) 55%, #E04F00 100%);
  color: var(--gg-black);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.4), 0 4px 12px rgba(255,90,0,.35);
  filter: brightness(1.04);
}

/* Contact form */
.gg-form {
  display: grid;
  gap: 1rem;
  max-width: 560px;
}
.gg-form label {
  display: block;
  font-family: var(--gg-font-display);
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: .35rem;
  color: var(--gg-lime);
}
.gg-form input,
.gg-form select,
.gg-form textarea {
  width: 100%;
  background: var(--gg-black);
  border: 2px solid #333;
  color: var(--gg-white);
  padding: .85rem 1rem;
  font-family: var(--gg-font-body);
  font-size: 1rem;
  border-radius: var(--gg-radius);
}
.gg-form input:focus,
.gg-form select:focus,
.gg-form textarea:focus {
  outline: none;
  border-color: var(--gg-orange);
}
.gg-form textarea { min-height: 140px; resize: vertical; }
.gg-nap {
  background: var(--gg-charcoal);
  border-left: 4px solid var(--gg-lime);
  padding: 1.5rem;
}
.gg-nap strong {
  display: block;
  font-family: var(--gg-font-display);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: .35rem;
  color: var(--gg-orange);
}
.gg-map-placeholder {
  background: var(--gg-gray);
  border: 2px dashed #555;
  min-height: 280px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 2rem;
  color: var(--gg-muted);
  border-radius: var(--gg-radius);
}
.gg-map-placeholder strong { color: var(--gg-lime); display: block; margin-bottom: .5rem; }

/* Content typography area */
.gg-content { max-width: 720px; }
.gg-content--wide { max-width: 860px; }
.gg-content h2 { margin-top: 2rem; color: var(--gg-orange); }
.gg-content h3 { margin-top: 1.5rem; color: var(--gg-lime); text-transform: none; letter-spacing: .02em; }
.gg-content a { text-decoration: underline; text-underline-offset: 3px; }

/* Prose list check */
.gg-checklist { list-style: none; padding: 0; }
.gg-checklist li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: .65rem;
}
.gg-checklist li::before {
  content: "";
  position: absolute;
  left: 0; top: .45em;
  width: .85rem; height: .85rem;
  background: var(--gg-lime);
  clip-path: polygon(14% 44%, 0 65%, 40% 100%, 100% 18%, 80% 0, 36% 62%);
}

/* Footer */
.gg-footer {
  background: #050505;
  border-top: none;
  padding: 0 0 1.5rem;
  margin-bottom: var(--gg-sticky-h);
}
.gg-footer > .gg-wrap {
  padding-top: 1.5rem;
}
@media (min-width: 768px) {
  .gg-footer { margin-bottom: 0; }
}
.gg-footer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 1.1rem;
}
.gg-footer__brand,
.gg-footer__areas {
  grid-column: 1 / -1;
}
@media (min-width: 768px) {
  .gg-footer__grid { grid-template-columns: 1.35fr .9fr 1.45fr .85fr; gap: 2rem; }
  .gg-footer__brand,
  .gg-footer__areas { grid-column: auto; }
}
.gg-footer h4 {
  font-size: .95rem;
  color: var(--gg-orange);
  margin-bottom: 1rem;
}
.gg-footer ul { list-style: none; margin: 0; padding: 0; }
.gg-footer li { margin-bottom: .45rem; }
.gg-footer a { color: #c0c0c0; }
.gg-footer a:hover { color: var(--gg-lime); }
.gg-footer__brand p { color: var(--gg-muted); font-size: .95rem; }
.gg-footer__bottom {
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid #222;
  font-size: .85rem;
  color: var(--gg-muted);
}

/* Mobile sticky Call / Text / Request Info — three colors, centered */
.gg-sticky {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: .35rem;
  padding: .4rem .4rem calc(.4rem + env(safe-area-inset-bottom, 0px));
  background: #0A0A0A;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, .12);
  border-radius: 0;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow:
    0 -8px 24px rgba(0, 0, 0, .55),
    inset 0 1px 0 rgba(255, 255, 255, .08);
}
@media (min-width: 768px) {
  .gg-sticky { display: none; }
}
.gg-sticky a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 48px;
  padding: .55rem .35rem;
  border-radius: 11px;
  font-family: var(--gg-font-display);
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none !important;
  line-height: 1.15;
  font-weight: 700;
  overflow: hidden;
  transition: transform .12s ease, filter .15s ease, box-shadow .15s ease;
  -webkit-tap-highlight-color: transparent;
}
.gg-sticky a:active {
  transform: scale(.97);
  filter: brightness(.95);
}
.gg-sticky__call {
  background: linear-gradient(165deg, #FF8A3D 0%, var(--gg-orange) 55%, #E04F00 100%);
  color: var(--gg-black) !important;
  font-size: .78rem;
  text-shadow: 0 1px 0 rgba(255, 255, 255, .22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .4),
    0 2px 8px rgba(255, 90, 0, .35);
}
.gg-sticky__text {
  background: linear-gradient(165deg, #E2FF6A 0%, var(--gg-lime) 55%, #9FCF00 100%);
  color: var(--gg-black) !important;
  font-size: .78rem;
  text-shadow: 0 1px 0 rgba(255, 255, 255, .28);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .45),
    0 2px 8px rgba(198, 255, 0, .28);
}


/* Utility */
.gg-text-center { text-align: center; }
.gg-mb-0 { margin-bottom: 0; }
.gg-mt-2 { margin-top: 2rem; }
.gg-accent-bar {
  width: 64px;
  height: 4px;
  background: var(--gg-orange);
  margin: 0 0 1.25rem;
}
.gg-accent-bar--lime { background: var(--gg-lime); }
.gg-accent-bar--center { margin-inline: auto  ; margin-bottom: 1.25rem; }

/* WP content alignment helpers */
.alignwide, .alignfull { max-width: none; }
.entry-content > * { margin-bottom: 1.1em; }

/* Skip link */
.skip-link:focus {
  position: fixed; top: 0; left: 0; z-index: 9999;
  background: var(--gg-lime); color: var(--gg-black);
  padding: .75rem 1rem;
  clip: auto; width: auto; height: auto;
}


/* Race stripe — gray dashes + orange→lime (cropped shared asset) */
.gg-race-stripe,
.gg-checkered {
  display: block;
  width: 100%;
  height: 28px;
  margin: 0;
  padding: 0;
  border: 0;
  background: #0a0a0a url("assets/img/gg-race-stripe.jpg") center / 100% 100% no-repeat;
}
.gg-hero .gg-checkered {
  /* Hero already has .gg-hero__stripe using the same asset — hide duplicate */
  display: none;
}

/* Header / footer / section dividers */
.gg-header {
  border-bottom: none;
  box-shadow: none;
}
.gg-header::after {
  content: "";
  display: block;
  height: 22px;
  width: 100%;
  background: #0a0a0a url("assets/img/gg-race-stripe.jpg") center / 100% 100% no-repeat;
}
.gg-footer {
  border-top: none;
  position: relative;
}
.gg-footer::before {
  content: "";
  display: block;
  height: 28px;
  width: 100%;
  margin: 0 0 1.5rem;
  background: #0a0a0a url("assets/img/gg-race-stripe.jpg") center / 100% 100% no-repeat;
}

/* Soft race stripe between consecutive content sections */
main > .gg-section + .gg-section::before,
main > section.gg-section + section.gg-section::before {
  content: "";
  display: block;
  height: 22px;
  width: 100%;
  margin: -2.25rem auto 2.25rem;
  background: #0a0a0a url("assets/img/gg-race-stripe.jpg") center / 100% 100% no-repeat;
}

/* Slightly stronger selection + focus rings for a11y */
::selection { background: var(--gg-lime); color: var(--gg-black); }
a:focus-visible, button:focus-visible, .gg-btn:focus-visible, summary:focus-visible {
  outline: 3px solid var(--gg-lime);
  outline-offset: 2px;
}

.gg-hero.gg-hero--short:not(.gg-hero--split) { min-height: 42vh; }
.gg-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 1.6rem;
}
@media (min-width: 900px) {
  .gg-steps { grid-template-columns: repeat(4, 1fr); }
}
.gg-step {
  background: #141414;
  border: 1px solid #2a2a2a;
  padding: 1.1rem 1rem;
}
.gg-step b { color: var(--gg-orange); font-family: var(--gg-font-display); font-size: 1.4rem; }
.gg-step h3 { margin: .35rem 0 .4rem; }
.gg-review-taps {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin: 1.2rem auto 0;
}
.gg-review-tap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 420px);
  min-height: 48px;
  padding: 12px 18px;
  background: linear-gradient(165deg, #FF8A3D 0%, var(--gg-orange) 55%, #E04F00 100%);
  color: var(--gg-black) !important;
  border: 0;
  border-radius: 11px;
  font-family: var(--gg-font-display);
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none !important;
  white-space: nowrap;
  text-shadow: 0 1px 0 rgba(255,255,255,.22);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.4), 0 2px 8px rgba(255,90,0,.35);
  transition: transform .12s ease, filter .15s ease;
}
.gg-review-tap:hover {
  filter: brightness(1.06);
  color: var(--gg-black) !important;
  transform: translateY(-1px);
}
.gg-fine { text-align: center; color: var(--gg-muted); margin-top: .8rem; }
.gg-sticky__quote {
  background: linear-gradient(165deg, #FF8A3D 0%, var(--gg-orange) 55%, #E04F00 100%);
  color: var(--gg-black) !important;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-align: center;
  text-shadow: 0 1px 0 rgba(255, 255, 255, .22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .4),
    0 2px 8px rgba(255, 90, 0, .35);
}
.gg-sticky__quote:hover,
.gg-sticky__quote:active {
  color: var(--gg-black) !important;
  filter: brightness(1.06);
}


/* Overlay hero picture fill — scoped away from split */
.gg-hero:not(.gg-hero--split) { min-height: 70vh; display: flex; align-items: flex-end; }
.gg-hero:not(.gg-hero--split) .gg-hero__pic {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  z-index: 0;
}
.gg-hero:not(.gg-hero--split) .gg-hero__pic img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 45%;
}
@media (max-width: 719px) {
  .gg-hero:not(.gg-hero--split) {
    background-image: url("assets/img/van-hero-mobile.webp");
    background-position: 80% 60%;
  }
  .gg-hero:not(.gg-hero--split) .gg-hero__pic img { object-position: 50% 48%; }
}
.gg-hero:not(.gg-hero--split) .gg-hero__content { position: relative; z-index: 2; }
.gg-hero::after { content: none; }
.gg-form input:invalid:not(:placeholder-shown),
.gg-form textarea:invalid:not(:placeholder-shown) { border-color: #ff4d2e; }
.gg-form input:valid, .gg-form textarea:valid { border-color: #3d7a2a; }
.gg-form .is-bad { border-color: #ff4d2e !important; }
.gg-form .gg-err { color: #ff8a70; font-size: .82rem; margin: .25rem 0 0; }
@media (max-width: 719px) {
  .gg-hero:not(.gg-hero--split) { min-height: 62vh; }
}

.gg-rotator { position: relative; min-height: 10.5rem; margin: 0 0 1.4rem; }
.gg-rotator__item {
  position: absolute; inset: 0;
  margin: 0; opacity: 0; pointer-events: none;
  transition: opacity .45s ease;
  text-align: center;
}
.gg-rotator__item.is-on { opacity: 1; pointer-events: auto; position: relative; }
.gg-rotator__item p {
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  line-height: 1.45;
  color: var(--gg-white);
  margin: 0 0 .7rem;
}
.gg-rotator__item cite {
  display: block;
  font-style: normal;
  font-family: var(--gg-font-display);
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gg-lime);
  font-size: .85rem;
}

.gg-social {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: .85rem;
  width: 100%;
  margin: 0;
  text-align: left;
  padding: 1.4rem 1rem 1.15rem;
  border-top: 1px solid #2a2a2a;
}
@media (min-width: 768px) {
  .gg-social {
    padding-left: max(1rem, calc((100% - var(--gg-max, 1120px)) / 2 + 1rem));
  }
}
.gg-social__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: var(--gg-lime);
  background: #141414;
  border: 1px solid #2a2a2a;
  box-shadow: 0 0 12px rgba(198,255,0,.28);
}
.gg-social__icon:hover {
  color: var(--gg-orange);
  border-color: var(--gg-orange);
  box-shadow: 0 0 16px rgba(255,90,0,.45);
}
.gg-social__icon svg { display: block; }
.gg-nap .gg-social {
  justify-content: flex-start;
  padding: .45rem 0 0;
  border: 0;
  margin: 0;
}

/* Interactive tools */
.gg-chiprow, .gg-colors { display:flex; flex-wrap:wrap; gap:.4rem; }
.gg-chiprow button {
  background:#1a1a1a; color:#fff; border:1px solid #333; padding:.45rem .7rem;
  font-family:var(--gg-font-display); letter-spacing:.06em; text-transform:uppercase; font-size:.8rem; cursor:pointer;
}
.gg-chiprow button.is-on { border-color:var(--gg-lime); color:var(--gg-lime); box-shadow:0 0 10px rgba(198,255,0,.35); }
.gg-colors button { width:32px; height:32px; border-radius:50%; border:2px solid #111; cursor:pointer; }
.gg-colors button.is-on { box-shadow:0 0 0 2px var(--gg-lime); }

.gg-ba-grid { display:grid; gap:1.25rem; }
@media(min-width:800px){ .gg-ba-grid { grid-template-columns:repeat(2,1fr); } }
@media(min-width:1100px){ .gg-ba-grid { grid-template-columns:repeat(3,1fr); } }

/* Homepage equipment BA — full machine, no track crop */
.gg-ba--equip {
  aspect-ratio: 1000 / 1142;
  width: 100%;
  background: #111;
  container-type: inline-size;
}
.gg-ba--equip .gg-ba__after img,
.gg-ba--equip .gg-ba__before img {
  object-fit: contain !important;
  object-position: center center;
}
.gg-ba--equip .gg-ba__before img {
  /* Full slider width so clip reveal stays aligned (not 200% of half-panel) */
  width: 100cqi;
  max-width: none;
  height: 100%;
  left: 0;
  top: 0;
}


.gg-ba { position:relative; overflow:hidden; border:2px solid #2a2a2a; border-radius:6px; aspect-ratio:16/10; background:#111; }
.gg-ba img { width:100%; height:100%; object-fit:cover; display:block; }
.gg-ba__after, .gg-ba__before { position:absolute; inset:0; }
.gg-ba__before { width:52%; overflow:hidden; border-right:3px solid var(--gg-lime); }
.gg-ba__before img { position:absolute; left:0; top:0; height:100%; width:200%; max-width:none; object-fit:cover; object-position:left center; }
.gg-ba__range { position:absolute; left:0; right:0; bottom:8px; width:100%; z-index:2; accent-color: var(--gg-orange); }

/* Before/after pair labels */
.gg-ba-card {
  display: flex;
  flex-direction: column;
  gap: .55rem;
}
.gg-ba-card__title {
  margin: 0;
  font-family: var(--gg-font-display);
  font-size: .95rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gg-white);
  text-align: center;
}
.gg-ba__chips {
  position: absolute;
  top: .55rem;
  left: .55rem;
  right: .55rem;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  gap: .4rem;
  pointer-events: none;
}
.gg-ba__chip {
  display: inline-block;
  padding: .28rem .55rem;
  font-family: var(--gg-font-display);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: 4px;
  line-height: 1;
  box-shadow: 0 1px 6px rgba(0,0,0,.45);
}
.gg-ba__chip--before {
  background: rgba(10,10,10,.82);
  color: #fff;
  border: 1px solid rgba(255,255,255,.22);
}
.gg-ba__chip--after {
  background: var(--gg-lime);
  color: var(--gg-black);
  border: 1px solid rgba(0,0,0,.15);
}
.gg-form-thanks {
  display: none;
  background: #111;
  border: 2px solid var(--gg-lime);
  border-radius: 8px;
  padding: 1.25rem 1.35rem;
  margin-bottom: 1.25rem;
}
.gg-form-thanks.is-on,
.gg-form-thanks.is-on[hidden] { display: block !important; }
.gg-form-thanks[hidden]:not(.is-on) { display: none !important; }
.gg-form-thanks h2 {
  margin: 0 0 .6rem;
  color: var(--gg-lime);
  font-size: 1.35rem;
}
.gg-form-thanks p { margin: 0 0 .85rem; color: #e8e8e8; }
.gg-form-thanks .gg-btn-row { margin-top: .5rem; }
.gg-form.is-sent { display: none; }


.gg-est { display:grid; gap:.9rem; margin:1rem 0 1.25rem; }
@media(min-width:720px){ .gg-est { grid-template-columns:1fr 1fr 1fr; } }
.gg-est label { display:flex; flex-direction:column; gap:.35rem; font-size:.8rem; letter-spacing:.1em; text-transform:uppercase; color:var(--gg-muted); }
.gg-est select, .gg-est input {
  background:#111; color:#fff; border:1px solid #333; padding:.7rem .8rem; font-size:1rem;
}
.gg-est__out { display:grid; gap:.8rem; }
@media(min-width:720px){ .gg-est__out { grid-template-columns:1fr 1fr 1fr; } }
.gg-est__out div { background:#111; border:1px solid #2a2a2a; padding:1rem; }
.gg-est__out small { display:block; color:var(--gg-muted); letter-spacing:.1em; text-transform:uppercase; font-size:.7rem; margin-bottom:.35rem; }
.gg-est__out strong { font-family:var(--gg-font-display); font-size:1.35rem; color:var(--gg-lime); }

.gg-map {
  position: relative;
  width: 100%;
  height: min(75vh, 640px);
  min-height: 480px;
  background: var(--gg-black-soft);
  border: 1px solid var(--gg-gray);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--gg-shadow);
  z-index: 1;
}
.gg-map .leaflet-container {
  width: 100%;
  height: 100%;
  background: #0b0b0b;
  font-family: var(--gg-font-body);
  /* Let one-finger vertical scroll pass through to the page on mobile */
  touch-action: pan-y;
}
.gg-map[data-gg-map-locked="1"] .leaflet-container {
  touch-action: pan-y;
}
.gg-map[data-gg-map-locked="1"]::after {
  content: "Scroll the page · pinch with 2 fingers to zoom";
  position: absolute;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  z-index: 500;
  pointer-events: none;
  font-size: .72rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #ddd;
  background: rgba(0,0,0,.55);
  padding: .35rem .65rem;
  border-radius: 999px;
  white-space: nowrap;
}
@media (min-width: 981px) {
  .gg-map[data-gg-map-locked="1"]::after { display: none; }
}
.gg-map .leaflet-control-attribution {
  background: rgba(10,10,10,.75) !important;
  color: var(--gg-muted) !important;
  font-size: 10px;
}
.gg-map .leaflet-control-attribution a { color: var(--gg-lime) !important; }
.gg-map .leaflet-control-zoom a {
  background: var(--gg-charcoal) !important;
  color: var(--gg-lime) !important;
  border-color: var(--gg-gray) !important;
}
.gg-map .leaflet-control-zoom a:hover {
  background: var(--gg-orange) !important;
  color: #111 !important;
}
.gg-map-pin {
  background: transparent;
  border: 0;
}
.gg-map-pin__dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid #0a0a0a;
  box-shadow: 0 0 0 3px rgba(198,255,0,.35), 0 2px 8px rgba(0,0,0,.6);
}
.gg-map-pin__dot--shop {
  width: 18px;
  height: 18px;
  background: var(--gg-orange);
  box-shadow: 0 0 0 4px rgba(255,90,0,.35), 0 2px 10px rgba(0,0,0,.7);
}
.gg-map-pin__dot--city {
  background: var(--gg-lime);
}
.gg-map .leaflet-tooltip {
  background: #0a0a0a;
  border: 1px solid var(--gg-lime);
  color: var(--gg-lime);
  font-family: var(--gg-font-display);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .35rem .55rem;
  border-radius: 2px;
  box-shadow: 0 4px 16px rgba(0,0,0,.5);
}
.gg-map .leaflet-tooltip--shop {
  border-color: var(--gg-orange);
  color: var(--gg-orange);
}
.gg-map .leaflet-tooltip-top:before {
  border-top-color: var(--gg-lime);
}
.gg-map__legend {
  margin: .85rem 0 0;
  color: var(--gg-muted);
  font-size: .9rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .35rem 0;
}
.gg-map__swatch {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-right: .35rem;
  vertical-align: middle;
  border: 2px solid #0a0a0a;
}
.gg-map__swatch--shop { background: var(--gg-orange); box-shadow: 0 0 0 2px rgba(255,90,0,.35); }
.gg-map__swatch--city { background: var(--gg-lime); box-shadow: 0 0 0 2px rgba(198,255,0,.35); }
.gg-map__svg, .gg-map__note, .gg-pin { display: none !important; }

/* Vehicle cards: centered 16:9 + solid black caption bar (match Death Row) */
#local-fleet .gg-grid--2 figure,
#equipment-wraps figure.gg-vehicle-card,
.gg-vehicle-card {
  margin: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 4px;
  background: #0a0a0a;
}
#local-fleet .gg-grid--2 img,
#equipment-wraps .gg-vehicle-card img,
.gg-vehicle-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center center;
  display: block;
  border-radius: 0;
}
#local-fleet .gg-grid--2 figcaption,
#equipment-wraps .gg-vehicle-card figcaption,
.gg-vehicle-card figcaption,
#local-fleet .gg-grid--2 figcaption.gg-fine {
  margin: 0 !important;
  padding: .7rem .85rem;
  background: #000;
  font-family: var(--gg-font-display);
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gg-lime);
  text-align: center;
}

/* Equipment / tall machines: show whole vehicle, no cover-zoom */
.gg-vehicle-card--contain img {
  object-fit: contain !important;
  background: #0a0a0a;
}
#equipment-wraps figure {
  margin: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 4px;
  background: #0a0a0a;
}
#equipment-wraps figure img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  object-position: center center;
  display: block;
  background: #0a0a0a;
}
#equipment-wraps figure figcaption {
  margin: 0;
  padding: .7rem .85rem;
  background: #000;
  font-family: var(--gg-font-display);
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gg-lime);
  text-align: center;
}

.gg-map .leaflet-tile-pane {
  /* Esri Dark Gray is already dark — no invert */
  filter: none;
}



/* Service Areas: heading + cities left-aligned, two columns */
.gg-footer__areas {
  min-width: 0;
  text-align: left;
}
.gg-footer__areas h4 {
  text-align: left;
  width: auto;
}
.gg-footer__cities,
.gg-footer__areas ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 1.1rem;
  row-gap: .35rem;
  justify-content: start;
  text-align: left;
  width: 100%;
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
}
.gg-footer__cities li,
.gg-footer__areas li {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .gg-footer__grid { grid-template-columns: 1.35fr .9fr 1.45fr .85fr; }
}

/* Local fleet cards: clickable to client sites */
.gg-fleet-card {
  display: block;
  color: inherit;
  text-decoration: none;
  border-radius: 12px;
  transition: transform .18s ease, box-shadow .18s ease;
}
.gg-fleet-card:hover,
.gg-fleet-card:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0,0,0,.35);
  outline: none;
}
.gg-fleet-card:focus-visible {
  box-shadow: 0 0 0 2px #C6FF00, 0 10px 28px rgba(0,0,0,.35);
}
.gg-fleet-card figcaption {
  text-decoration: none;
}

/* Buffalo Bills block on About */
.gg-bills-grid {
  display: grid;
  gap: 1.75rem;
  margin-top: 1.25rem;
}
@media (min-width: 860px) {
  .gg-bills-grid { grid-template-columns: 1.1fr .9fr; gap: 2rem; align-items: start; }
}
.gg-bills-h3 {
  font-size: 1.05rem;
  letter-spacing: .02em;
  margin: 0 0 .65rem;
  color: #fff;
}
.gg-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.gg-bills-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .92rem;
  background: rgba(0,0,0,.28);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  overflow: hidden;
}
.gg-bills-table th,
.gg-bills-table td {
  padding: .55rem .7rem;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.gg-bills-table th {
  background: #00338D;
  color: #fff;
  font-weight: 700;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.gg-bills-table tbody tr:last-child td { border-bottom: 0; }
.gg-bills-table__buf {
  background: rgba(198, 12, 48, .18);
  font-weight: 600;
}
.gg-bills-table--sched td:nth-child(1),
.gg-bills-table--sched th:nth-child(1) { width: 2.5rem; }
.gg-bills-score {
  background: linear-gradient(135deg, rgba(0,51,141,.55), rgba(198,12,48,.28));
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  padding: 1rem 1.15rem;
}
.gg-bills-score__meta { font-size: .8rem; opacity: .8; margin-bottom: .35rem; }
.gg-bills-score__line { font-size: 1.35rem; display: flex; gap: .75rem; align-items: baseline; flex-wrap: wrap; }
.gg-bills-score__line strong { color: #fff; }
.gg-bills-score__line span { opacity: .75; }
.gg-bills-score__result { margin-top: .45rem; color: #C6FF00; font-weight: 700; font-size: .9rem; }
.gg-bills-next { list-style: none; padding: 0; margin: 0; }
.gg-bills-next li {
  padding: .55rem 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  font-size: .92rem;
}
.gg-bills-next li:last-child { border-bottom: 0; }

.gg-bills-quote {
  font-size: 1.15rem;
  font-style: italic;
  color: rgba(255,255,255,.92);
  margin: .35rem 0 1rem;
  max-width: 28rem;
}

.gg-bills-links {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem .9rem;
  margin: 0 0 1.35rem;
  font-size: .9rem;
}
.gg-bills-links a,
.gg-bills-h3 a,
.gg-bills-table a,
.gg-bills-score a {
  color: #9ec1ff;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.gg-bills-links a:hover,
.gg-bills-h3 a:hover,
.gg-bills-table a:hover {
  color: #C6FF00;
}
.gg-bills-table--box td,
.gg-bills-table--box th {
  text-align: center;
}
.gg-bills-table--box td:first-child,
.gg-bills-table--box th:first-child {
  text-align: left;
}
.gg-bills-leaders {
  list-style: none;
  padding: 0;
  margin: 0;
}
.gg-bills-leaders li {
  padding: .55rem 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  font-size: .92rem;
  line-height: 1.4;
}
.gg-bills-leaders li:last-child { border-bottom: 0; }

/* Full capability button grid */
.gg-do-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .65rem;
  margin-top: 1.25rem;
}
@media (min-width: 768px) {
  .gg-do-grid { grid-template-columns: repeat(3, 1fr); gap: .75rem; }
}
@media (min-width: 1100px) {
  .gg-do-grid { grid-template-columns: repeat(4, 1fr); }
}
.gg-do-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 3.1rem;
  padding: .8rem .75rem;
  background: linear-gradient(165deg, #2a2a2a 0%, #1a1a1a 55%, #121212 100%);
  border: 0;
  border-radius: 11px;
  color: var(--gg-white);
  font-family: var(--gg-font-display);
  font-size: .78rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  line-height: 1.25;
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 2px 8px rgba(0,0,0,.35);
  transition: transform .12s ease, filter .15s ease, box-shadow .15s ease, color .15s ease;
  -webkit-tap-highlight-color: transparent;
}
.gg-do-btn:hover,
.gg-do-btn:focus-visible {
  background: linear-gradient(165deg, #FF8A3D 0%, var(--gg-orange) 55%, #E04F00 100%);
  color: var(--gg-black);
  filter: brightness(1.04);
  transform: translateY(-1px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.4), 0 4px 12px rgba(255,90,0,.35);
}
.gg-do-btn--lime {
  box-shadow: inset 0 1px 0 rgba(255,255,255,.1), inset 0 0 0 1px rgba(198,255,0,.18), 0 2px 8px rgba(0,0,0,.35);
}
.gg-do-btn--lime:hover,
.gg-do-btn--lime:focus-visible {
  background: linear-gradient(165deg, #E2FF6A 0%, var(--gg-lime) 55%, #9FCF00 100%);
  color: var(--gg-black);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.45), 0 4px 12px rgba(198,255,0,.3);
}
.gg-do-grid--industries { margin-top: .85rem; }

/* Industry page — single large hero photo (2.5.84) */
.gg-industry-hero {
  margin: 1.25rem 0 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--gg-radius);
  border: 2px solid transparent;
  background: #0a0a0a;
  transition: border-color .2s;
  max-width: 1100px;
}
.gg-industry-hero:hover { border-color: var(--gg-lime); }
.gg-industry-hero img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center center;
  cursor: zoom-in;
}
.gg-industry-hero figcaption {
  margin: 0;
  padding: .7rem .85rem;
  background: #000;
  font-family: var(--gg-font-display);
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gg-lime);
  text-align: center;
}


/* Industry photo cards (homepage) */
.gg-industry-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .85rem;
  margin-top: .85rem;
}
@media (min-width: 900px) {
  .gg-industry-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
  }
}
.gg-industry-card {
  display: block;
  color: inherit;
  text-decoration: none;
  border-radius: 12px;
  overflow: hidden;
  background: #111;
  border: 1px solid rgba(255,255,255,.08);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.gg-industry-card:hover,
.gg-industry-card:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0,0,0,.4);
  border-color: rgba(198,255,0,.35);
  outline: none;
}
.gg-industry-card:focus-visible {
  box-shadow: 0 0 0 2px #C6FF00, 0 10px 28px rgba(0,0,0,.4);
}
.gg-industry-card figure {
  margin: 0;
  position: relative;
}
.gg-industry-card picture,
.gg-industry-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center center;
}
.gg-industry-card figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  gap: .15rem;
  padding: .7rem .8rem .75rem;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.78) 45%, rgba(0,0,0,.92) 100%);
  color: #fff;
}
.gg-industry-card__tag {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gg-lime);
  text-shadow: 0 0 8px rgba(198,255,0,.35);
}
.gg-industry-card__job {
  font-size: .88rem;
  font-weight: 700;
  line-height: 1.25;
  color: #fff;
}
/* Keep old strip usable if present elsewhere */
.gg-services-strip { display: none; }


/* Footer bottom: uniform 3-up on tablet/desktop, stacked on phone */
.gg-footer__bottom {
  display: grid;
  grid-template-columns: 1fr;
  gap: .85rem;
  align-items: start;
  justify-items: start;
  text-align: left;
  position: relative;
}
.gg-footer__mark {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .35rem;
  min-width: 0;
}
.gg-footer__dummy-logo {
  display: block;
  width: 28px;
  height: 28px;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
}
.gg-footer__credit,
.gg-footer__phone,
.gg-footer__bottom > span,
.gg-footer__copy {
  margin: 0;
  padding: 0;
  line-height: 1.35;
  color: var(--gg-muted);
  cursor: default;
}
.gg-footer__credit,
.gg-footer__phone {
  display: block;
}
@media (min-width: 700px) {
  .gg-footer__bottom {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr) minmax(0, 1fr);
    gap: 1rem 1.5rem;
    align-items: center;
  }
  .gg-footer__credit {
    justify-self: center;
    text-align: center;
  }
  .gg-footer__phone {
    justify-self: end;
    text-align: right;
  }
}
.gg-footer__egg-stack,
.gg-bills-dummy,
#gg-bills-toast {
  display: none !important;
}

/* Dummy logo 5-tap → Bills Mafia popup */
.gg-footer__dummy-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  line-height: 0;
}
.gg-footer__dummy-btn:focus-visible {
  outline: 2px solid var(--gg-orange, #FF5A00);
  outline-offset: 3px;
  border-radius: 4px;
}
.gg-footer__dummy-logo {
  pointer-events: none;
}
#gg-bills-helmet-pop {
  display: none;
  position: fixed !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100vh !important;
  z-index: 2147483000 !important;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: rgba(0, 0, 0, .78);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}
#gg-bills-helmet-pop.is-on {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  pointer-events: auto !important;
  transform: none !important;
}
.gg-bills-helmet-card {
  display: block !important;
  position: relative;
  background: #00338D;
  border: 3px solid #C60C30;
  border-radius: 16px;
  padding: 1rem 1rem 1.1rem;
  box-shadow: 0 18px 48px rgba(0,0,0,.55);
  max-width: min(340px, 92vw);
}
.gg-bills-helmet-close {
  position: absolute;
  top: .35rem;
  right: .55rem;
  border: 0;
  background: transparent;
  color: #C60C30;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}
.gg-bills-helmet-stage {
  display: block !important;
  width: min(280px, 78vw);
  min-height: min(280px, 78vw);
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  background-color: #00338D;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.gg-bills-helmet-stage .gg-bills-helmet-img {
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  min-height: 200px;
  border-radius: 12px;
  display: block !important;
  margin: 0 auto;
  object-fit: contain;
  background: transparent;
}
@media (min-width: 768px) {
  .gg-bills-helmet-card {
    max-width: 360px;
  }
  .gg-bills-helmet-stage {
    width: 300px;
    min-height: 300px;
  }
}

/* Go Bills! — copyright tap only, bottom-right of footer */
.gg-footer__bottom {
  position: relative;
}
.gg-bills-egg {
  position: absolute;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: #C60C30;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .3rem;
  text-align: center;
}
.gg-bills-egg__helmet {
  width: 72px;
  height: auto;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.45));
}
.gg-bills-egg__text {
  font-family: "GG Bills", Anton, "Arial Narrow", Impact, sans-serif;
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #C60C30;
  text-shadow: 0 1px 2px rgba(0,0,0,.55);
  white-space: nowrap;
  line-height: 1;
}
.gg-bills-egg.is-on {
  opacity: 1 !important;
}
.gg-footer__copy {
  cursor: pointer;
}

/* Site-wide: center all buttons / button rows */
.gg-hero__actions,
.gg-cta-band__actions,
.gg-btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  justify-content: center;
  align-items: center;
}
.gg-btn-row {
  margin-top: 1.25rem;
}
.gg-hero__content {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.gg-hero p {
  margin-left: auto;
  margin-right: auto;
}
p:has(> .gg-btn),
.gg-wrap > p:has(.gg-btn),
.gg-section .gg-wrap > p:has(.gg-btn) {
  text-align: center;
}
div:has(> a.gg-btn + a.gg-btn),
p:has(> a.gg-btn + a.gg-btn),
section:has(> a.gg-btn + a.gg-btn) {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .85rem;
}
.gg-btn {
  margin-left: auto;
  margin-right: auto;
}
.gg-form .gg-btn,
.gg-form button[type="submit"] {
  display: flex;
  width: 100%;
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
}
a.gg-btn + a.gg-btn {
  margin-top: .85rem;
}
.gg-hero__actions a.gg-btn + a.gg-btn,
.gg-cta-band__actions a.gg-btn + a.gg-btn,
.gg-drawer__cta a.gg-btn + a.gg-btn,
.gg-btn-row a.gg-btn + a.gg-btn,
div:has(> a.gg-btn + a.gg-btn) > a.gg-btn + a.gg-btn,
p:has(> a.gg-btn + a.gg-btn) > a.gg-btn + a.gg-btn,
section:has(> a.gg-btn + a.gg-btn) > a.gg-btn + a.gg-btn {
  margin-top: 0;
}

/* Mobile: center city chips; footer Service Areas names stay left under centered heading */
@media (max-width: 767px) {
  .gg-cities,
  .gg-chiprow {
    justify-content: center;
  }
  .gg-btn-row {
    flex-direction: column;
    width: 100%;
  }
  .gg-btn-row .gg-btn {
    width: min(100%, 22rem);
  }
  .gg-footer__areas {
    text-align: left;
  }
  .gg-footer__areas h4 {
    text-align: left;
  }
  .gg-footer__cities,
  .gg-footer__areas ul {
    text-align: left;
    justify-content: start;
    justify-items: start;
    margin-left: 0;
    margin-right: 0;
  }
  .gg-form .gg-btn,
  .gg-form button[type="submit"] {
    max-width: none;
  }
}

/* Form / header CTAs — same sticky pill language */
.gg-form .gg-btn,
.gg-form button[type="submit"],
.gg-header .gg-btn,
.gg-drawer__cta .gg-btn {
  border-radius: 11px;
  border: 0;
}
.gg-form button[type="submit"] {
  background: linear-gradient(165deg, #FF8A3D 0%, var(--gg-orange) 55%, #E04F00 100%);
  color: var(--gg-black) !important;
  font-family: var(--gg-font-display);
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  min-height: 48px;
  padding: .85rem 1.4rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.4), 0 2px 8px rgba(255,90,0,.35);
}
.gg-chiprow button {
  border-radius: 11px;
  border: 0;
  background: linear-gradient(165deg, #2a2a2a 0%, #1a1a1a 55%, #121212 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 2px 6px rgba(0,0,0,.3);
}
.gg-chiprow button.is-on {
  background: linear-gradient(165deg, #E2FF6A 0%, var(--gg-lime) 55%, #9FCF00 100%);
  color: var(--gg-black);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.45), 0 2px 8px rgba(198,255,0,.28);
}
.gg-section--orange .gg-btn--ghost-black,
.gg-section--orange .gg-btn--lime {
  box-shadow: inset 0 1px 0 rgba(255,255,255,.35), 0 2px 10px rgba(0,0,0,.22);
}

/* Orange CTA band: dark pills stay lime-readable */
.gg-section--orange .gg-btn--ghost-black,
.gg-section--orange .gg-btn--outline {
  color: var(--gg-lime) !important;
  background: linear-gradient(165deg, #222 0%, #0A0A0A 55%, #000 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12), inset 0 0 0 1.5px var(--gg-lime), 0 2px 10px rgba(0,0,0,.28);
}
.gg-section--orange .gg-btn--ghost-black:hover,
.gg-section--orange .gg-btn--outline:hover {
  color: var(--gg-lime) !important;
  filter: brightness(1.08);
}
.gg-section--orange .gg-cta-band__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
}
.gg-section--orange .gg-cta-band__actions .gg-btn {
  width: min(100%, 22rem);
}

/* Homepage gallery: no enlarge */
.gg-gallery--home figure,
.gg-gallery--home img,
.gg-gallery--home picture {
  cursor: default;
}

/* Our Work: tap for larger photo */
.gg-gallery--zoomable figure {
  cursor: zoom-in;
}
.gg-gallery--zoomable img,
.gg-gallery--zoomable picture {
  pointer-events: none;
}

.gg-lightbox {
  position: fixed;
  inset: 0;
  z-index: 12000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(0, 0, 0, .88);
}
.gg-lightbox.is-on {
  display: flex;
}
.gg-lightbox[hidden] {
  display: none !important;
}
.gg-lightbox.is-on[hidden] {
  display: flex !important;
}
body.gg-lightbox-open {
  overflow: hidden;
}
.gg-lightbox__stage {
  margin: 0;
  max-width: min(1100px, 96vw);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .65rem;
}
.gg-lightbox__img {
  display: block;
  max-width: 100%;
  max-height: min(78vh, 900px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(0,0,0,.55);
  background: #111;
}
.gg-lightbox__cap {
  margin: 0;
  padding: 0 .5rem;
  color: #fff;
  font-size: .95rem;
  text-align: center;
  max-width: 40rem;
}
.gg-lightbox__close {
  position: absolute;
  top: .65rem;
  right: .85rem;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 2.4rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}
.gg-lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: rgba(255,255,255,.12);
  color: #fff;
  font-size: 1.75rem;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 999px;
  cursor: pointer;
  z-index: 2;
}
.gg-lightbox__nav:hover {
  background: rgba(198,255,0,.35);
  color: #000;
}
.gg-lightbox__nav--prev { left: .55rem; }
.gg-lightbox__nav--next { right: .55rem; }
@media (max-width: 640px) {
  .gg-lightbox__nav { width: 2.2rem; height: 2.2rem; font-size: 1.35rem; }
}


/* Mobile hero: stack CTAs for tap targets — keep light scrim from desktop */
@media (max-width: 719px) {
  .gg-hero__actions {
    flex-direction: column;
    width: 100%;
    gap: .75rem; /* 12px */
  }
  .gg-hero__actions .gg-btn {
    width: min(100%, 22rem);
    min-height: 48px;
  }
  .gg-page-hero .gg-btn-row,
  .gg-page-hero + .gg-section .gg-btn-row,
  .gg-cta .gg-btn-row,
  .gg-section .gg-btn-row {
    gap: .75rem;
  }
  .gg-page-hero .gg-btn,
  .gg-cta .gg-btn,
  .gg-section .gg-btn-row .gg-btn {
    min-height: 48px;
  }
  /* Stacked CTA pairs not in .gg-btn-row (e.g. equipment row) */
  .gg-split > div > a.gg-btn {
    min-height: 48px;
  }
}


/* —— Tools add-ons (photo checklist, banner, timeline, swatches, work filters) —— */
.gg-tool-label {
  margin: 1rem 0 .45rem;
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gg-muted);
}
.gg-tool-check {
  list-style: none;
  padding: 0;
  margin: 1rem 0 .75rem;
  display: grid;
  gap: .55rem;
}
@media (min-width: 720px) {
  .gg-tool-check { grid-template-columns: 1fr 1fr; }
}
.gg-tool-check li {
  margin: 0;
  background: #111;
  border: 1px solid #2a2a2a;
  border-radius: 4px;
}
.gg-tool-check label {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  padding: .75rem .9rem;
  cursor: pointer;
  color: var(--gg-white);
  font-size: .95rem;
  line-height: 1.35;
}
.gg-tool-check input {
  margin-top: .2rem;
  accent-color: var(--gg-orange);
  width: 1.1rem;
  height: 1.1rem;
  flex-shrink: 0;
}
.gg-tool-check li:has(input:checked) {
  border-color: var(--gg-lime);
  box-shadow: 0 0 0 1px rgba(198,255,0,.25);
}
.gg-tool-progress {
  font-family: var(--gg-font-display);
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gg-lime);
  margin: .35rem 0 1rem;
}
.gg-tool-banner { margin-bottom: .75rem; }
.gg-tool-time-out { margin-top: 1rem; }
.gg-tool-time-out { grid-template-columns: 1fr; }
@media (min-width: 720px) {
  .gg-tool-time-out { grid-template-columns: minmax(180px, .8fr) 1.4fr; }
}
.gg-tool-time-span small { display:block; color:var(--gg-muted); letter-spacing:.1em; text-transform:uppercase; font-size:.7rem; margin-bottom:.35rem; }
.gg-tool-prep {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--gg-white);
  line-height: 1.45;
}
.gg-tool-prep li { margin: .25rem 0; }
.gg-tool-swatch-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 1.25rem auto 1.35rem;
  text-align: center;
  max-width: 36rem;
}
#film-swatches .gg-chiprow {
  justify-content: center;
}
.gg-tool-panel {
  width: 140px;
  max-width: 140px;
  aspect-ratio: 1;
  border-radius: 14px;
  border: 2px solid #2a2a2a;
  margin: 0 auto;
  transition: background .25s ease, box-shadow .25s ease, filter .25s ease;
}
.gg-tool-truck {
  position: relative;
  width: 180px;
  height: 78px;
  margin: .2rem auto 0;
}
.gg-tool-truck__cab,
.gg-tool-truck__box {
  position: absolute;
  bottom: 18px;
  border: 2px solid #1a1a1a;
  transition: background .25s ease, filter .25s ease, box-shadow .25s ease;
}
.gg-tool-truck__cab {
  left: 8px;
  width: 58px;
  height: 42px;
  border-radius: 8px 4px 2px 2px;
}
.gg-tool-truck__box {
  left: 62px;
  width: 108px;
  height: 36px;
  border-radius: 3px;
}
.gg-tool-truck__wheel {
  position: absolute;
  bottom: 4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #222;
  border: 3px solid #555;
}
.gg-tool-truck__wheel--f { left: 22px; }
.gg-tool-truck__wheel--r { right: 18px; }
.gg-tool-panel.is-gloss,
.gg-tool-truck.is-gloss .gg-tool-truck__cab,
.gg-tool-truck.is-gloss .gg-tool-truck__box {
  background: linear-gradient(145deg, #ff7a33 0%, var(--gg-orange) 45%, #c24500 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.35), 0 8px 18px rgba(255,90,0,.25);
}
.gg-tool-panel.is-matte,
.gg-tool-truck.is-matte .gg-tool-truck__cab,
.gg-tool-truck.is-matte .gg-tool-truck__box {
  background: #3a3a3a;
  box-shadow: none;
  filter: none;
}
.gg-tool-panel.is-satin,
.gg-tool-truck.is-satin .gg-tool-truck__cab,
.gg-tool-truck.is-satin .gg-tool-truck__box {
  background: linear-gradient(160deg, #6e6e6e, #4a4a4a 55%, #5c5c5c);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12);
}
.gg-tool-panel.is-reflective,
.gg-tool-truck.is-reflective .gg-tool-truck__cab,
.gg-tool-truck.is-reflective .gg-tool-truck__box {
  background: repeating-linear-gradient(135deg, #c6ff00 0 10px, #9fcc00 10px 20px);
  box-shadow: 0 0 16px rgba(198,255,0,.35);
}
.gg-tool-panel.is-specialty,
.gg-tool-truck.is-specialty .gg-tool-truck__cab,
.gg-tool-truck.is-specialty .gg-tool-truck__box {
  background: linear-gradient(120deg, #ddd 0%, #888 25%, #f5f5f5 50%, #777 75%, #bbb 100%);
  box-shadow: 0 0 14px rgba(255,255,255,.2);
}
.gg-tool-swatch-cap {
  margin: 0 auto;
  color: var(--gg-muted);
  line-height: 1.45;
  text-align: center;
  max-width: 34rem;
}
.gg-tool-swatch-cap strong { color: var(--gg-white); }

/* Our Work gallery filters */
.gg-work-filters { margin: 0 0 1.1rem; }
.gg-gallery figure.is-hidden { display: none; }

/* Long CTA labels: always centered, wrap cleanly on narrow phones */
.gg-btn {
  text-align: center;
}
#gg-photo-sms,
.gg-tool-check + .gg-tool-progress + .gg-btn-row .gg-btn,
.gg-btn-row .gg-btn--lg {
  text-align: center;
  justify-content: center;
  align-items: center;
  white-space: normal;
  line-height: 1.2;
  letter-spacing: .05em;
  font-size: clamp(.8rem, 3.4vw, .92rem);
  padding-left: 1.1rem;
  padding-right: 1.1rem;
}
/* Trust strip — slim bar under hero (2.5.3) */
.gg-trust {
  padding: .65rem 0;
  background: #121212;
  border-bottom: 1px solid #2a2a2a;
}
.gg-trust__row {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
}
@media (min-width: 900px) {
  .gg-trust__row { grid-template-columns: repeat(4, 1fr); }
}
.gg-trust__item {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: .45rem .75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: .15rem;
  min-height: 0;
  position: relative;
}
.gg-trust__item + .gg-trust__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18%;
  bottom: 18%;
  width: 1px;
  background: linear-gradient(180deg, var(--gg-orange), var(--gg-lime));
  opacity: .85;
}
/* On 2-col mobile, kill divider on items that wrap to row start (3rd = odd in 0-index... 3rd is nth 3) */
@media (max-width: 899px) {
  .gg-trust__item:nth-child(odd)::before { display: none; }
}
.gg-trust__item strong {
  font-family: var(--gg-font-display);
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--gg-lime);
  font-size: .72rem;
  line-height: 1.15;
}
.gg-trust__item span {
  color: #d8d8d8;
  font-size: .78rem;
  line-height: 1.3;
  max-width: 16rem;
}



/* SEO rebuild guard — footer cities always 2-col */
.gg-footer__cities {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 0.25rem 1rem !important;
  list-style: none;
  padding: 0;
  margin: 0;
}
.gg-footer__cities li { margin: 0; }
@media (max-width: 767px) {
  .gg-footer__cities { grid-template-columns: 1fr 1fr !important; }
  .gg-footer__cities a { text-align: left; display: block; }
}


/* Tools BA — always fill the slider box */
#before-after .gg-ba img {
  width: 100%;
  height: 100%;
  object-fit: cover !important;
  object-position: center center;
}
#before-after .gg-ba__before img {
  object-fit: cover !important;
  object-position: left center;
}


/* See Us in Action — homepage video */
.gg-action-video {
  margin: 0;
  background: #0a0a0a;
  border-radius: var(--gg-radius);
  overflow: hidden;
  border: 1px solid #2a2a2a;
}
.gg-action-video video {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(70vh, 560px);
  background: #000;
}
.gg-action-video figcaption {
  padding: .85rem 1rem 1rem;
  color: var(--gg-offwhite);
  font-family: var(--gg-font-display);
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .95rem;
}
.gg-equip-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}
@media (max-width: 800px) {
  .gg-equip-strip { grid-template-columns: 1fr; }
}
.gg-equip-strip figure { margin: 0; }
.gg-equip-strip img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--gg-radius);
  display: block;
}
.gg-van-feature {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1.25rem;
  align-items: center;
}
@media (max-width: 800px) {
  .gg-van-feature { grid-template-columns: 1fr; }
}
.gg-van-feature img {
  width: 100%;
  height: auto;
  border-radius: var(--gg-radius);
  display: block;
}


/* Signage gallery — full mural visible, centered (no tight cover crop) */
.gg-gallery--signage {
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) {
  .gg-gallery--signage { grid-template-columns: repeat(2, 1fr); gap: 1.1rem; }
}
@media (min-width: 1100px) {
  .gg-gallery--signage { grid-template-columns: repeat(3, 1fr); }
}
.gg-gallery--signage figure {
  background: #0a0a0a;
}
.gg-gallery--signage picture {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0a0a0a;
  aspect-ratio: 1 / 1;
  min-height: 240px;
  overflow: hidden;
}
.gg-gallery--signage img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  aspect-ratio: auto;
  object-fit: contain !important;
  object-position: center center;
}
/* Lead / lightbox: never crop mural lettering */
.gg-gallery--signage figure:first-child picture {
  aspect-ratio: 4 / 3;
}


/* Portrait storefront (Capulet) — tall frame, full facade upright */
.gg-gallery--signage .gg-gallery__fig--portrait picture {
  aspect-ratio: 3 / 4;
}

/* Van feature: center copy + CTA on mobile */
.gg-van-feature {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}
@media (min-width: 860px) {
  .gg-van-feature { grid-template-columns: 1fr 1.1fr; gap: 2.5rem; }
}
@media (max-width: 859px) {
  .gg-van-feature > div:first-child {
    text-align: center;
  }
  .gg-van-feature .gg-accent-bar {
    margin-left: auto;
    margin-right: auto;
  }
  .gg-van-feature .gg-btn-row {
    justify-content: center;
  }
  .gg-van-feature img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
  }
}


/* Lightbox targets sitewide (non-home) */
.gg-zoom-target,
.gg-gallery--zoomable figure {
  cursor: zoom-in;
}
.gg-lightbox__stage {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  max-height: min(92vh, 100%);
  max-width: min(96vw, 100%);
}
.gg-lightbox__img {
  max-width: min(96vw, 1400px);
  max-height: min(88vh, 1400px);
  width: auto;
  height: auto;
  object-fit: contain;
  touch-action: pinch-zoom;
}


/* Fleet page lead photo — full wrap width, larger presence */
.gg-fleet-feature {
  margin-top: 2rem;
  width: 100%;
}
.gg-fleet-feature img {
  width: 100%;
  height: auto;
  max-height: none;
  border-radius: 6px;
  border: 2px solid #2a2a2a;
  display: block;
}




/* Shop split hero — full landscape sunset truck, no crop */
.gg-hero.gg-hero--shop-split .gg-hero__media {
  aspect-ratio: 16 / 10;
  background: #0a0a0a;
}
.gg-hero.gg-hero--shop-split .gg-hero__pic img {
  object-fit: contain !important;
  object-position: center center !important;
  background: #0a0a0a;
}
@media (min-width: 1200px) {
  .gg-hero.gg-hero--shop-split {
    min-height: min(88vh, 820px);
    align-items: stretch;
  }
  .gg-hero.gg-hero--shop-split .gg-hero__content {
    justify-items: start;
    text-align: left;
    padding: 4rem clamp(1.5rem, 4vw, 3.5rem);
    align-content: center;
  }
  .gg-hero.gg-hero--shop-split .gg-hero__actions {
    justify-content: center;
  }
  .gg-hero.gg-hero--shop-split .gg-hero__media {
    aspect-ratio: auto;
    min-height: 100%;
    height: 100%;
    align-self: stretch;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .gg-hero.gg-hero--shop-split .gg-hero__pic {
    position: relative !important;
    inset: auto !important;
    width: 100% !important;
    height: 100% !important;
  }
  .gg-hero.gg-hero--shop-split .gg-hero__pic img {
    position: relative !important;
    inset: auto !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: center center !important;
  }
}



/* PC hero: Graphix lime van — desktop only (≥1200px); tablet/mobile keep sunset */
@media (min-width: 1200px) {
  .gg-hero.gg-hero--shop-split .gg-hero__pic img {
    object-fit: contain !important;
    object-position: center center !important;
  }
}




/* === Sitewide image uniformity (2.5.57) ===
   Same frame size for siblings in a row/grid. Cover fills the frame. */
.gg-card__img {
  aspect-ratio: 16 / 10 !important;
  object-fit: cover !important;
  object-position: center center !important;
  width: 100% !important;
  height: auto !important;
  background: #0a0a0a;
  display: block;
}

.gg-gallery figure,
.gg-gallery--home figure,
.gg-gallery--signage figure,
.gg-gallery--zoomable figure {
  margin: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.gg-gallery picture,
.gg-gallery--home picture,
.gg-gallery--signage picture,
.gg-gallery--zoomable picture {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #0a0a0a;
}

.gg-gallery img,
.gg-gallery picture img,
.gg-gallery--home img,
.gg-gallery--home picture img,
.gg-gallery--signage img,
.gg-gallery--signage picture img,
.gg-gallery--zoomable img,
.gg-gallery--zoomable picture img {
  width: 100% !important;
  height: 100% !important;
  aspect-ratio: auto !important;
  object-fit: cover !important;
  object-position: center center !important;
  display: block;
  background: #0a0a0a;
}

/* Home recent gallery — same 16/10 as other grids (was square contain) */
.gg-gallery--home img,
.gg-gallery--home picture {
  aspect-ratio: 16 / 10 !important;
}

/* Signage gallery — one frame for every tile (was mixed 1:1 / 4:3 / 3:4) */
.gg-gallery--signage picture,
.gg-gallery--signage figure:first-child picture,
.gg-gallery--signage .gg-gallery__fig--portrait picture {
  aspect-ratio: 16 / 10 !important;
}

#equipment-wraps figure,
#equipment-wraps figure.gg-vehicle-card,
.gg-vehicle-card {
  overflow: hidden;
}
#equipment-wraps figure img,
#equipment-wraps .gg-vehicle-card img,
.gg-vehicle-card img,
.gg-vehicle-card--contain img {
  width: 100% !important;
  aspect-ratio: 16 / 10 !important;
  object-fit: cover !important;
  object-position: center center !important;
  height: auto !important;
}

#local-fleet .gg-grid--2 img,
.gg-fleet-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.gg-fleet-feature img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center center;
  display: block;
}

/* Our Work / city grids using plain figures in gg-gallery */
.gg-gallery.gg-mt-2 picture,
div.gg-gallery picture {
  aspect-ratio: 16 / 10;
}


/* === Neon glow accents (2.5.60) === */
:root {
  --gg-neon-orange: 0 0 8px rgba(255, 90, 0, .55), 0 0 22px rgba(255, 90, 0, .35), 0 0 42px rgba(255, 90, 0, .18);
  --gg-neon-lime: 0 0 8px rgba(198, 255, 0, .5), 0 0 22px rgba(198, 255, 0, .32), 0 0 42px rgba(198, 255, 0, .16);
  --gg-neon-orange-soft: 0 0 6px rgba(255, 90, 0, .4), 0 0 16px rgba(255, 90, 0, .2);
  --gg-neon-lime-soft: 0 0 6px rgba(198, 255, 0, .38), 0 0 16px rgba(198, 255, 0, .18);
}

.gg-eyebrow,
.gg-hero__tag {
  text-shadow: 0 0 8px rgba(198, 255, 0, .55), 0 0 18px rgba(198, 255, 0, .28);
}

.gg-accent-bar {
  box-shadow: var(--gg-neon-orange-soft);
}
.gg-accent-bar--lime {
  box-shadow: var(--gg-neon-lime-soft);
}

.gg-btn--orange {
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.4),
    0 2px 8px rgba(255,90,0,.35),
    var(--gg-neon-orange-soft) !important;
}
.gg-btn--orange:hover {
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.45),
    0 4px 14px rgba(255,90,0,.45),
    var(--gg-neon-orange) !important;
}
.gg-btn--lime {
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.45),
    0 2px 8px rgba(198,255,0,.28),
    var(--gg-neon-lime-soft) !important;
}
.gg-btn--lime:hover {
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.5),
    0 4px 14px rgba(198,255,0,.4),
    var(--gg-neon-lime) !important;
}
.gg-btn--outline:hover,
.gg-btn--ghost-black:hover {
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.16),
    inset 0 0 0 1.5px var(--gg-lime),
    var(--gg-neon-lime-soft) !important;
}

.gg-header .gg-btn--orange {
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.4),
    var(--gg-neon-orange-soft) !important;
}

.gg-sticky {
  box-shadow: 0 -4px 24px rgba(0,0,0,.45), 0 0 18px rgba(255,90,0,.12);
}
.gg-sticky .gg-btn--orange {
  box-shadow: inset 0 1px 0 rgba(255,255,255,.35), var(--gg-neon-orange-soft) !important;
}
.gg-sticky .gg-btn--lime {
  box-shadow: inset 0 1px 0 rgba(255,255,255,.4), var(--gg-neon-lime-soft) !important;
}

.gg-card:hover {
  border-color: var(--gg-orange);
  box-shadow: var(--gg-neon-orange-soft);
}
.gg-gallery figure:hover {
  border-color: var(--gg-lime);
  box-shadow: var(--gg-neon-lime-soft);
}
.gg-card__link {
  text-shadow: 0 0 10px rgba(198, 255, 0, .35);
}
.gg-do-btn:hover,
.gg-do-btn:focus-visible {
  box-shadow: var(--gg-neon-orange-soft);
}
.gg-do-btn--lime:hover,
.gg-do-btn--lime:focus-visible {
  box-shadow: var(--gg-neon-lime-soft);
}

.gg-nav a:hover,
.gg-nav .current-menu-item > a {
  text-shadow: 0 0 10px rgba(198, 255, 0, .45);
}

.gg-hero.gg-hero--shop-split .gg-hero__content h1,
.gg-hero.gg-hero--split .gg-hero__content h1 {
  text-shadow: 0 0 24px rgba(255, 90, 0, .22), 0 2px 18px rgba(0,0,0,.65);
}

@media (prefers-reduced-motion: reduce) {
  .gg-btn--orange,
  .gg-btn--lime,
  .gg-card:hover,
  .gg-gallery figure:hover {
    box-shadow: none !important;
  }
  .gg-eyebrow,
  .gg-hero__tag,
  .gg-card__link {
    text-shadow: none;
  }
}


/* White / pale buttons → brand neon */
.gg-btn--outline {
  background: linear-gradient(165deg, #2a2a2a 0%, #1a1a1a 55%, #111 100%) !important;
  color: var(--gg-lime) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.12),
    inset 0 0 0 1.5px var(--gg-lime),
    0 0 8px rgba(198, 255, 0, .28),
    0 0 16px rgba(198, 255, 0, .14) !important;
}
.gg-btn--outline:hover {
  color: var(--gg-black) !important;
  background: linear-gradient(165deg, #E2FF6A 0%, var(--gg-lime) 55%, #9FCF00 100%) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.45),
    0 0 12px rgba(198, 255, 0, .5),
    0 0 28px rgba(198, 255, 0, .28) !important;
}
.gg-btn--ghost-black {
  background: linear-gradient(165deg, #222 0%, #0A0A0A 55%, #000 100%) !important;
  color: var(--gg-lime) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.1),
    inset 0 0 0 1.5px rgba(198,255,0,.55),
    0 0 8px rgba(198, 255, 0, .22) !important;
}
.gg-btn--ghost-black:hover {
  color: var(--gg-black) !important;
  background: linear-gradient(165deg, #E2FF6A 0%, var(--gg-lime) 55%, #9FCF00 100%) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.4),
    0 0 12px rgba(198, 255, 0, .45) !important;
}
.gg-sticky__call {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .4),
    0 0 8px rgba(255, 90, 0, .45),
    0 0 18px rgba(255, 90, 0, .25) !important;
}
.gg-sticky__text {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .45),
    0 0 8px rgba(198, 255, 0, .4),
    0 0 18px rgba(198, 255, 0, .22) !important;
}


/* Center Get a Quote on hero (2.5.64) */
.gg-hero.gg-hero--shop-split .gg-hero__actions,
.gg-hero.gg-hero--split .gg-hero__actions {
  display: flex !important;
  justify-content: center !important;
  width: 100%;
}
.gg-hero.gg-hero--shop-split .gg-hero__actions .gg-btn,
.gg-hero.gg-hero--split .gg-hero__actions .gg-btn {
  margin-inline: auto;
}
@media (min-width: 1200px) {
  .gg-hero.gg-hero--shop-split .gg-hero__actions {
    justify-content: center !important;
  }
}





/* Locked: PC ≥1200px lime van side-by-side; tablet/mobile ≤1199px sunset overlay */
@media (min-width: 1200px) {
  .gg-hero.gg-hero--shop-split .gg-hero__pic img {
    object-fit: contain !important;
    object-position: center center !important;
  }
}


/* Tablet + mobile: old overlay hero — sunset behind copy (≤1199px). PC keeps side-by-side. */
@media (max-width: 1199px) {
  .gg-hero.gg-hero--shop-split {
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: none !important;
    grid-template-rows: none !important;
    grid-template-areas: none !important;
    position: relative;
    min-height: clamp(480px, 78vh, 760px);
    align-items: flex-end;
    overflow: hidden;
    background: #0a0a0a !important;
  }
  .gg-hero.gg-hero--shop-split::before {
    content: "" !important;
    display: block !important;
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(10,10,10,.28) 0%, rgba(10,10,10,.42) 42%, rgba(10,10,10,.84) 100%);
  }
  .gg-hero.gg-hero--shop-split .gg-hero__media {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
    aspect-ratio: auto !important;
    margin: 0 !important;
    order: 0 !important;
    z-index: 0;
    overflow: hidden;
    background: #0a0a0a;
  }
  .gg-hero.gg-hero--shop-split .gg-hero__pic {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
    display: block !important;
  }
  .gg-hero.gg-hero--shop-split .gg-hero__pic img {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    object-fit: cover !important;
    object-position: 50% 32% !important;
    background: #0a0a0a;
  }
  .gg-hero.gg-hero--shop-split .gg-hero__content {
    position: relative !important;
    z-index: 2;
    order: 0 !important;
    grid-area: auto !important;
    width: min(100% - 2rem, 720px);
    max-width: 100%;
    margin: 0 auto !important;
    padding: 3rem 1.25rem 3.5rem;
    text-align: center;
    justify-items: center;
    background: transparent !important;
  }
  .gg-hero.gg-hero--shop-split .gg-hero__content h1 {
    text-align: center;
  }
  .gg-hero.gg-hero--shop-split .gg-hero__actions {
    justify-content: center !important;
  }
  .gg-hero.gg-hero--shop-split .gg-hero__stripe {
    position: absolute !important;
    left: 0;
    right: 0;
    bottom: 0;
    height: 28px;
    z-index: 3;
    order: 0 !important;
    grid-area: auto !important;
  }
}
@supports (height: 100svh) {
  @media (max-width: 1199px) {
    .gg-hero.gg-hero--shop-split {
      min-height: clamp(480px, 78svh, 760px);
    }
  }
}


/* Home: no race stripe between header and hero */
body.home .gg-header::after {
  display: none;
}
body.home {
  --gg-header-h: 72px;
}
@media (max-width: 1199px) {
  .gg-hero.gg-hero--shop-split .gg-hero__pic img {
    object-fit: cover !important;
    object-position: 50% 32% !important;
  }
}

/* quote matches call */

.gg-sticky__quote {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .4),
    0 0 8px rgba(255, 90, 0, .45),
    0 0 18px rgba(255, 90, 0, .25) !important;
}
