/* ════════════════════════════════════════════════════════════
   GYRO IT UP × TIGHT END BAR — main.css v2.1.0
   Mobile-first · iOS safe area · Android Chrome
   by Game On Business LLC
════════════════════════════════════════════════════════════ */

/* ── RESET ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  /* Remove tap highlight on Android / iOS */
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  /* Prevent font-size inflation on orientation change (iOS) */
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
  /* Full height on iOS Safari (collapses toolbar) */
  height: -webkit-fill-available;
}

body {
  background-color: var(--gyro-ash);
  color: var(--gyro-cream);
  font-family: var(--font-body);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  /* iOS Safari full-height fallback */
  min-height: -webkit-fill-available;
  min-height: 100dvh;
}

img, svg { display: block; max-width: 100%; height: auto; }

a {
  color: var(--gyro-fire);
  text-decoration: none;
  transition: color 0.2s;
  /* Prevent iOS callout on long-press links */
  -webkit-touch-callout: none;
}
a:hover { color: var(--gyro-gold); }

ul, ol { list-style: none; }

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  /* Ensure buttons are always tappable without iOS quirks */
  -webkit-appearance: none;
  appearance: none;
  touch-action: manipulation;
}

/* Tap-friendly minimum size for all interactive elements */
a, button, [role="button"] {
  min-height: 44px;
  min-width: 44px;
  display: inline-flex;
  align-items: center;
  touch-action: manipulation;
}
/* Override for block-level elements that don't need the flex */
p a, li a, .gyro-footer__nav-list li a {
  min-height: auto;
  min-width: auto;
  display: inline;
}

::-webkit-scrollbar       { width: 4px; }
::-webkit-scrollbar-track { background: var(--gyro-ash); }
::-webkit-scrollbar-thumb { background: var(--gyro-fire); border-radius: 3px; }
::selection               { background: var(--gyro-fire); color: #fff; }

/* ════════════════════════════════════════════════════════════
   PRIDE STRIP
════════════════════════════════════════════════════════════ */
.gyro-pride-strip {
  display: flex;
  height: 4px;
  width: 100%;
  position: relative;
  z-index: 10001;
  flex-shrink: 0;
}
.gyro-pride-strip span { flex: 1; }

.gyro-pride-strip--drawer {
  height: 3px;
  margin: 0.8rem 0;
  border-radius: 3px;
  overflow: hidden;
}
.gyro-pride-strip--footer {
  height: 3px;
  opacity: 0.7;
}

/* ════════════════════════════════════════════════════════════
   STICKY HEADER
════════════════════════════════════════════════════════════ */
.gyro-header {
  position: fixed;
  /* 4px = pride strip height */
  top: 4px;
  left: 0;
  right: 0;
  z-index: 9999;
  height: var(--nav-height);
  background: var(--nav-bg);
  /* Prefix order matters for Safari */
  -webkit-backdrop-filter: blur(14px) saturate(180%);
  backdrop-filter: blur(14px) saturate(180%);
  border-bottom: 2px solid var(--nav-border);
  transition: background 0.3s ease, box-shadow 0.3s ease,
              transform 0.3s ease, border-color 0.3s ease;
  /* Prevent subpixel gaps on iOS retina */
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  will-change: transform;
}

.gyro-header--transparent {
  background: rgba(0,0,0,0.3);
  border-bottom-color: transparent;
}
.gyro-header--transparent.is-scrolled,
.gyro-header.is-scrolled {
  background: var(--nav-bg);
  border-bottom-color: var(--gyro-fire);
  box-shadow: 0 4px 30px rgba(0,0,0,0.6);
}
.gyro-header.is-hidden {
  transform: translateY(calc(-100% - 4px));
}

.gyro-header__inner {
  max-width: 1280px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  /* Use safe-area padding for notched phones */
  padding: 0 max(1.5rem, env(safe-area-inset-right))
           0 max(1.5rem, env(safe-area-inset-left));
}

/* ── LOGO — vertically centered inside nav bar ── */
.gyro-header__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  height: 100%;  /* stretch to full nav height so centering works */
}

/* The <a> tag WordPress wraps the logo in */
.gyro-header__logo a,
.gyro-header__logo > a {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 6px 0;   /* vertical breathing room inside nav bar */
}

/* WordPress custom_logo wraps in <a><img></a> but sometimes
   also adds a <figure> — flatten all of those */
.gyro-header__logo a img,
.gyro-header__logo .custom-logo,
.gyro-header__logo .site-logo img,
.gyro-header__logo figure,
.gyro-header__logo figure img {
  display: block;
  height: 52px;           /* slightly taller — fills the 68px nav nicely */
  width: auto;
  max-width: 200px;
  object-fit: contain;
  object-position: left center;
  /* Crisp on iOS retina */
  image-rendering: -webkit-optimize-contrast;
  /* Remove any default figure/img margins */
  margin: 0;
}

/* WordPress wraps custom_logo in a <figure> with margin — strip it */
.gyro-header__logo figure {
  height: 52px;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}

.gyro-header__logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  color: var(--gyro-gold);
  line-height: 1;
  white-space: nowrap;
}
.gyro-header__logo-text em { color: var(--gyro-fire); font-style: normal; }

/* WordPress custom_logo <a class="custom-logo-link"> — align it */
.gyro-header__logo .custom-logo-link,
.gyro-header__logo .gyro-logo-link {
  display: flex !important;
  align-items: center !important;
  height: 100%;
  padding: 6px 0;
  min-height: auto;
  min-width: auto;
  line-height: 0; /* remove ghost space below inline-block img */
}

/* Fallback text link (no custom logo set) */
.gyro-header__logo-fallback-link {
  display: flex;
  align-items: center;
  height: 100%;
  text-decoration: none;
  min-height: auto;
  min-width: auto;
}

/* Mobile drawer: same treatment for the logo link */
.gyro-mobile-drawer__logo .custom-logo-link,
.gyro-mobile-drawer__logo .gyro-logo-link {
  display: flex !important;
  align-items: center !important;
  min-height: auto;
  min-width: auto;
  line-height: 0;
}


/* Location badge — desktop only */
.gyro-header__location-badge {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-family: var(--font-condensed);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--gyro-muted);
  white-space: nowrap;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-pill);
  padding: 0.25rem 0.75rem;
  flex-shrink: 0;
  min-height: auto;
  min-width: auto;
  pointer-events: none;
}

/* Nav links */
.gyro-nav { flex: 1; display: flex; justify-content: center; }
.gyro-nav__list { display: flex; align-items: center; gap: 0.2rem; list-style: none; }
.gyro-nav-item--top > a {
  display: flex;
  align-items: center;
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gyro-cream);
  padding: 0 0.85rem;
  min-height: 44px;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
  position: relative;
  white-space: nowrap;
}
.gyro-nav-item--top > a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%; right: 50%;
  height: 2px;
  background: var(--gyro-fire);
  transition: left 0.25s, right 0.25s;
  border-radius: 2px;
}
.gyro-nav-item--top > a:hover,
.gyro-nav-item--top.is-active > a {
  color: var(--gyro-gold);
  background: rgba(255,107,0,0.08);
}
.gyro-nav-item--top > a:hover::after,
.gyro-nav-item--top.is-active > a::after {
  left: 0.85rem;
  right: 0.85rem;
}

/* Submenu */
.gyro-nav-item.has-children { position: relative; }
.gyro-nav-arrow { font-size: 0.65rem; margin-left: 2px; transition: transform 0.2s; }
.gyro-nav-item.has-children:hover .gyro-nav-arrow { transform: rotate(180deg); }
.gyro-submenu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 200px;
  background: #161616;
  border: 1px solid rgba(255,107,0,0.25);
  border-radius: var(--radius-md);
  padding: 0.5rem 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  box-shadow: 0 10px 40px rgba(0,0,0,0.6);
  z-index: 100;
}
.gyro-nav-item.has-children:hover > .gyro-submenu,
.gyro-nav-item.has-children:focus-within > .gyro-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.gyro-submenu li a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 0 1.2rem;
  font-family: var(--font-condensed);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gyro-cream);
  transition: color 0.2s, padding-left 0.2s;
}
.gyro-submenu li a:hover { color: var(--gyro-gold); padding-left: 1.6rem; }

/* CTA button */
.gyro-header__cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  background: var(--gyro-fire);
  color: #fff !important;
  font-family: var(--font-condensed);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0 1.2rem;
  border-radius: var(--radius-pill);
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
  touch-action: manipulation;
}
.gyro-header__cta:hover,
.gyro-header__cta:active {
  background: var(--gyro-ember);
  transform: translateY(-1px);
  color: #fff !important;
}

/* Hamburger — 44×44 minimum tap target */
.gyro-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  gap: 5px;
  padding: 10px;
  border-radius: var(--radius-sm);
  transition: background 0.2s;
  touch-action: manipulation;
  cursor: pointer;
  /* Override the global a/button min-size inline-flex rule */
  min-width: 44px;
  min-height: 44px;
}
.gyro-hamburger:hover,
.gyro-hamburger:active { background: rgba(255,107,0,0.12); }
.gyro-hamburger__line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gyro-cream);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s, width 0.3s;
  pointer-events: none;
}
.gyro-hamburger.is-open .gyro-hamburger__line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.gyro-hamburger.is-open .gyro-hamburger__line:nth-child(2) { opacity: 0; width: 0; }
.gyro-hamburger.is-open .gyro-hamburger__line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ════════════════════════════════════════════════════════════
   MOBILE DRAWER — full iOS/Android treatment
════════════════════════════════════════════════════════════ */
.gyro-mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 10000;
  pointer-events: none;
  /* Prevent iOS from moving page behind drawer */
  -webkit-overflow-scrolling: touch;
}
.gyro-mobile-drawer.is-open { pointer-events: all; }

.gyro-mobile-drawer__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.78);
  opacity: 0;
  transition: opacity 0.3s;
  /* Hardware-accelerated blur on iOS */
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  cursor: pointer;
  /* Ensure touch events fire on overlay */
  touch-action: auto;
}
.gyro-mobile-drawer.is-open .gyro-mobile-drawer__overlay { opacity: 1; }

.gyro-mobile-drawer__nav {
  position: absolute;
  top: 0;
  right: 0;
  /* Full height including iOS home indicator */
  height: 100%;
  height: 100dvh;
  width: min(320px, 88vw);
  background: #0d0d0d;
  border-left: 2px solid var(--gyro-fire);
  /* Pad for iOS status bar (top) and home bar (bottom) */
  padding-top: max(1.5rem, env(safe-area-inset-top));
  padding-right: max(1.5rem, env(safe-area-inset-right));
  padding-bottom: max(1.5rem, env(safe-area-inset-bottom));
  padding-left: 1.5rem;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  /* Native-feel momentum scrolling on iOS */
  overflow-y: auto;
  -webkit-overflow-scrolling: touch; /* iOS momentum scroll */
  /* Prevent scroll chaining to page */
  overscroll-behavior: contain;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  /* GPU layer for smooth animation */
  will-change: transform;
  -webkit-transform: translateX(100%);
}
.gyro-mobile-drawer.is-open .gyro-mobile-drawer__nav {
  transform: translateX(0);
  -webkit-transform: translateX(0);
}

.gyro-mobile-drawer__close {
  align-self: flex-end;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,107,0,0.1);
  border: 1px solid rgba(255,107,0,0.3);
  color: var(--gyro-cream);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  touch-action: manipulation;
  cursor: pointer;
  flex-shrink: 0;
}
.gyro-mobile-drawer__close:hover,
.gyro-mobile-drawer__close:active { background: rgba(255,107,0,0.28); }

/* Mobile drawer logo — flatten WordPress figure wrapper */
.gyro-mobile-drawer__logo {
  display: flex;
  align-items: center;
}
.gyro-mobile-drawer__logo a {
  display: flex;
  align-items: center;
  min-height: auto;
  min-width: auto;
}
.gyro-mobile-drawer__logo img,
.gyro-mobile-drawer__logo .custom-logo,
.gyro-mobile-drawer__logo figure img {
  height: 72px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  object-position: left center;
  display: block;
  margin: 0;
  image-rendering: -webkit-optimize-contrast;
}
.gyro-mobile-drawer__logo figure {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  height: 72px;
}
.gyro-mobile-drawer__logo-text {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--gyro-gold);
  letter-spacing: 0.06em;
}

/* Mobile nav items — all 44px minimum */
.gyro-mobile-nav__list { list-style: none; display: flex; flex-direction: column; }
.gyro-mobile-nav__list .gyro-nav-item > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gyro-cream);
  min-height: 52px;
  padding: 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color 0.2s;
  /* Better tap feedback on Android */
  touch-action: manipulation;
}
.gyro-mobile-nav__list .gyro-nav-item > a:hover,
.gyro-mobile-nav__list .gyro-nav-item > a:active { color: var(--gyro-gold); }
.gyro-mobile-nav__list .gyro-submenu {
  position: static;
  opacity: 1;
  visibility: visible;
  transform: none;
  box-shadow: none;
  background: transparent;
  border: none;
  padding: 0 0 0 0.8rem;
  display: none;
}
.gyro-mobile-nav__list .has-children.submenu-open > .gyro-submenu { display: block; }
.gyro-mobile-nav__list .gyro-submenu li a {
  min-height: 44px;
  padding: 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 0.9rem;
}

.gyro-mobile-drawer__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  background: var(--gyro-fire);
  color: #fff !important;
  font-family: var(--font-condensed);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  padding: 0 1.5rem;
  border-radius: var(--radius-pill);
  transition: background 0.2s;
  touch-action: manipulation;
  flex-shrink: 0;
}
.gyro-mobile-drawer__cta:hover,
.gyro-mobile-drawer__cta:active {
  background: var(--gyro-ember);
  color: #fff !important;
}

.gyro-mobile-drawer__location {
  font-size: 0.82rem;
  line-height: 1.65;
  color: var(--gyro-muted);
  padding: 0.7rem 0.9rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  min-height: auto;
}
.gyro-mobile-drawer__tagline {
  font-family: var(--font-condensed);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gyro-muted);
  text-align: center;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  flex-shrink: 0;
  min-height: auto;
}
.gyro-mobile-drawer__te-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gyro-gold);
  padding: 0 0.8rem;
  border: 1px solid rgba(245,196,0,0.22);
  border-radius: var(--radius-sm);
  transition: background 0.2s;
  touch-action: manipulation;
  flex-shrink: 0;
}
.gyro-mobile-drawer__te-link:hover,
.gyro-mobile-drawer__te-link:active { background: rgba(245,196,0,0.08); color: var(--gyro-gold); }

/* iOS safe area bottom spacer inside drawer */
.gyro-mobile-drawer__safe-bottom {
  flex-shrink: 0;
  height: env(safe-area-inset-bottom, 0px);
}

/* ════════════════════════════════════════════════════════════
   PAGE WRAPPER
════════════════════════════════════════════════════════════ */
.gyro-page-wrapper {
  min-height: 100vh;
  min-height: 100dvh;
  /* pride strip (4px) + nav (68px) */
  padding-top: calc(var(--nav-height) + 4px);
}
/* Elementor full-width pages: hero should control its own top spacing */
.elementor-page .gyro-page-wrapper { padding-top: 0; }

/* ════════════════════════════════════════════════════════════
   FIRE DIVIDER
════════════════════════════════════════════════════════════ */
.gyro-fire-divider {
  width: 100%;
  height: 2px;
  border: none;
  background: linear-gradient(90deg,
    transparent 0%, var(--gyro-fire) 20%,
    var(--gyro-gold) 50%, var(--gyro-fire) 80%, transparent 100%);
  opacity: 0.55;
  margin: 0;
}

/* ════════════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════════════ */
.gyro-footer {
  background: #080808;
  color: var(--gyro-cream);
  font-family: var(--font-body);
  /* Safe-area padding for notched phones */
  padding-left: env(safe-area-inset-left, 0);
  padding-right: env(safe-area-inset-right, 0);
  padding-bottom: env(safe-area-inset-bottom, 0);
}
.gyro-footer__top { padding: 4rem 2rem; }
.gyro-footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.1fr 1.2fr;
  gap: 3rem;
}

.gyro-footer__col-title {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gyro-fire);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255,107,0,0.2);
}

/* Brand col */
.gyro-footer__logo img,
.gyro-footer__logo .custom-logo { height: 72px; width: auto; max-width: 180px; object-fit: contain; margin-bottom: 0.8rem; }
.gyro-footer__logo-text {
  font-family: var(--font-display); font-size: 1.8rem;
  letter-spacing: 0.08em; color: var(--gyro-gold); margin-bottom: 0.7rem; display: block;
}
.gyro-footer__logo-text em { color: var(--gyro-fire); font-style: normal; }
.gyro-footer__tagline { font-size: 0.82rem; line-height: 1.6; color: var(--gyro-muted); margin-bottom: 1rem; }

.gyro-footer__pride-badge { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 1rem; }
.gyro-footer__pride-strip {
  width: 14px; height: 14px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, #E40303 0%, #FF8C00 20%, #FFED00 40%, #008026 60%, #004DFF 80%, #750787 100%);
}
.gyro-footer__pride-strip span { display: none; }
.gyro-footer__pride-text {
  font-family: var(--font-condensed); font-weight: 700; font-size: 0.72rem;
  letter-spacing: 0.12em; text-transform: uppercase; color: #888;
}

.gyro-footer__social { display: flex; gap: 0.5rem; margin-top: 0.2rem; flex-wrap: wrap; }
.gyro-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  /* 44×44 tap target */
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,107,0,0.2);
  border-radius: 50%;
  color: var(--gyro-muted);
  font-size: 1rem;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
  touch-action: manipulation;
  /* Remove min-height/min-width override from global rule */
  min-height: 44px !important;
  min-width: 44px !important;
}
.gyro-social-icon:hover,
.gyro-social-icon:active {
  background: var(--gyro-fire);
  border-color: var(--gyro-fire);
  color: #fff;
  transform: translateY(-2px);
}

/* Footer nav */
.gyro-footer__nav-list { list-style: none; display: flex; flex-direction: column; }
.gyro-footer__nav-list li { border-bottom: 1px solid rgba(255,255,255,0.04); }
.gyro-footer__nav-list li a {
  display: flex;
  align-items: center;
  min-height: 44px;
  font-size: 0.9rem;
  color: var(--gyro-muted);
  transition: color 0.2s, padding-left 0.2s;
  touch-action: manipulation;
}
.gyro-footer__nav-list li a:hover,
.gyro-footer__nav-list li a:active { color: var(--gyro-gold); padding-left: 5px; }

/* Location col */
.gyro-footer__location-name { font-weight: 700; color: var(--gyro-gold) !important; font-size: 0.92rem !important; }
.gyro-footer__location-block p {
  font-size: 0.85rem; color: var(--gyro-muted); line-height: 1.5; margin-bottom: 0.2rem;
}
.gyro-footer__hours-label { font-weight: 700; color: var(--gyro-fire) !important; margin-top: 0.6rem !important; }
.gyro-footer__map-link {
  display: inline-flex; align-items: center;
  min-height: 44px;
  font-size: 0.82rem; font-weight: 700; color: var(--gyro-gold);
  transition: color 0.2s; touch-action: manipulation;
}
.gyro-footer__map-link:hover,
.gyro-footer__map-link:active { color: var(--gyro-fire); }
.gyro-footer__bar-phone { margin-top: 0.4rem !important; font-size: 0.82rem; }
.gyro-footer__bar-phone a {
  color: var(--gyro-muted);
  display: inline-flex; align-items: center; min-height: 44px;
  touch-action: manipulation;
}
.gyro-footer__bar-phone a:hover { color: var(--gyro-gold); }

/* Contact col */
.gyro-footer__phone {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.7rem;
  letter-spacing: 0.06em;
  background: linear-gradient(135deg, var(--gyro-fire), var(--gyro-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.7rem;
  touch-action: manipulation;
}
/* Fix: iOS resets -webkit-text-fill-color on :active for links */
.gyro-footer__phone:active {
  -webkit-text-fill-color: var(--gyro-gold);
}
.gyro-footer__contact-note { font-size: 0.82rem; color: var(--gyro-muted); line-height: 1.6; margin-bottom: 0.8rem; }
.gyro-footer__badges { display: flex; flex-wrap: wrap; gap: 0.3rem; }
.gyro-footer__badges span {
  font-family: var(--font-condensed); font-weight: 600; font-size: 0.72rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--gyro-muted);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-pill);
  padding: 0.25rem 0.7rem;
  /* Don't stretch to 44px — these are decorative */
  min-height: auto;
  min-width: auto;
  display: inline-block;
}

/* Bottom bar */
.gyro-footer__bottom {
  background: rgba(0,0,0,0.5);
  border-top: 1px solid rgba(255,107,0,0.1);
  padding: 1rem 2rem;
  /* Safe area for bottom of page on iPhone */
  padding-bottom: max(1rem, calc(1rem + env(safe-area-inset-bottom)));
}
.gyro-footer__bottom-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap;
}
.gyro-footer__copyright,
.gyro-footer__credit { font-size: 0.75rem; color: var(--gyro-muted); }
.gyro-footer__credit a {
  color: var(--gyro-fire); font-weight: 600;
  touch-action: manipulation;
}
.gyro-footer__credit a:hover { color: var(--gyro-gold); }

/* ════════════════════════════════════════════════════════════
   TYPOGRAPHY
════════════════════════════════════════════════════════════ */
h1,h2,h3,h4,h5,h6 { line-height: 1.15; font-family: var(--font-display); letter-spacing: 0.04em; }
h1 { font-size: clamp(2.2rem, 6vw, 5rem); }
h2 { font-size: clamp(1.8rem, 5vw, 3.5rem); }
h3 { font-size: clamp(1.3rem, 3vw, 2rem); }
h4 { font-family: var(--font-condensed); font-size: 1.05rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
p { line-height: 1.7; }

/* ════════════════════════════════════════════════════════════
   BUTTONS — touch-friendly everywhere
════════════════════════════════════════════════════════════ */
.gyro-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-family: var(--font-condensed);
  font-weight: 800;
  font-size: 0.92rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0 1.8rem;
  min-height: 52px;
  border-radius: var(--radius-pill);
  transition: transform 0.15s, box-shadow 0.15s, background 0.2s;
  cursor: pointer;
  border: none;
  text-decoration: none;
  touch-action: manipulation;
  -webkit-appearance: none;
  appearance: none;
}
.gyro-btn--primary { background: var(--gyro-fire); color: #fff; }
.gyro-btn--primary:hover,
.gyro-btn--primary:active {
  background: var(--gyro-ember);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(255,107,0,0.35);
}
.gyro-btn--outline { background: transparent; color: var(--gyro-gold); border: 2px solid var(--gyro-gold); }
.gyro-btn--outline:hover,
.gyro-btn--outline:active { background: rgba(245,196,0,0.1); color: var(--gyro-gold); transform: translateY(-1px); }

/* ════════════════════════════════════════════════════════════
   404 PAGE
════════════════════════════════════════════════════════════ */
.gyro-404 {
  display: flex; align-items: center; justify-content: center;
  min-height: 80vh; min-height: 80dvh;
  text-align: center; padding: 3rem 1.5rem;
}
.gyro-404__inner { max-width: 520px; }
.gyro-404__icon  { font-size: 3.5rem; margin-bottom: 1rem; }
.gyro-404__title {
  font-family: var(--font-display);
  font-size: clamp(5rem, 20vw, 10rem);
  background: linear-gradient(135deg, var(--gyro-fire), var(--gyro-gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1; margin-bottom: 1rem;
}
.gyro-404__message { font-size: 1rem; color: var(--gyro-muted); margin-bottom: 2rem; line-height: 1.6; }

/* ════════════════════════════════════════════════════════════
   RESPONSIVE — mobile-first breakpoints
════════════════════════════════════════════════════════════ */

/* ── Large desktop (1100px+): full 4-col footer + location badge ── */
@media (max-width: 1100px) {
  .gyro-footer__inner { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .gyro-header__location-badge { display: none; }
}

/* ── Tablet / Mobile (768px): show hamburger, hide desktop nav ── */
@media (max-width: 768px) {
  .gyro-nav,
  .gyro-header__cta { display: none !important; }
  .gyro-hamburger   { display: flex !important; }

  .gyro-footer__inner { grid-template-columns: 1fr; gap: 1.8rem; }
  .gyro-footer__top { padding: 2.5rem 1.5rem; }
  .gyro-footer__bottom-inner { flex-direction: column; text-align: center; gap: 0.4rem; }
}

/* ── Small mobile (480px): tighten spacing ── */
@media (max-width: 480px) {
  .gyro-header__inner { padding: 0 max(1rem, env(safe-area-inset-left)) 0 max(1rem, env(safe-area-inset-right)); }
  .gyro-footer__top { padding: 2rem 1rem; }
  .gyro-footer__bottom { padding: 1rem 1rem max(1rem, calc(1rem + env(safe-area-inset-bottom))); }
  .gyro-footer__badges { gap: 0.25rem; }
  .gyro-404 { padding: 2rem 1rem; }
}

/* ── Landscape on small phones ── */
@media (max-width: 768px) and (orientation: landscape) {
  :root { --nav-height: 52px; }
  .gyro-header { top: 4px; }
  .gyro-mobile-drawer__nav { padding-top: max(1rem, env(safe-area-inset-top)); }
}

/* ── Reduced motion (accessibility) ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ── High contrast mode ── */
@media (forced-colors: active) {
  .gyro-header { border-bottom: 2px solid ButtonText; }
  .gyro-hamburger__line { background: ButtonText; }
}
