/* ─── Announcement Bar ───────────────────────────────────── */

.ann-bar {
  position: relative;
  z-index: 201;
  height: 42px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background: var(--navy);
  border-bottom: 3px solid var(--red);
}

/* Blue canton — left anchor */
.ann-bar__canton {
  flex-shrink: 0;
  width: 52px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #FFD100;
  border-right: 2px solid rgba(255, 209, 0, 0.3);
}

/* Text explode track */
.ann-bar__track {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.ann-bar__msg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #FFFFFF;
  white-space: nowrap;
  opacity: 0;
  animation: textBuild 12s infinite;
}

/* Shockwave ring that fires on detonation */
.ann-bar__msg::before {
  content: '';
  position: absolute;
  inset: -2px;
  border: 1.5px solid transparent;
  pointer-events: none;
  animation: shockwaveRing 12s infinite;
}

.ann-bar__msg--1,
.ann-bar__msg--1::before { animation-delay: 0s; }
.ann-bar__msg--2,
.ann-bar__msg--2::before { animation-delay: 4s; }
.ann-bar__msg--3,
.ann-bar__msg--3::before { animation-delay: 8s; }

@keyframes textBuild {
  /* Appear */
  0%    { opacity: 0; transform: scale(1) translateY(0);
          letter-spacing: 0.16em; text-shadow: none; }
  2%    { opacity: 1; transform: scale(1) translateY(0);
          letter-spacing: 0.16em; text-shadow: none; }

  /* Hold */
  23%   { opacity: 1; transform: scale(1) translateY(0);
          letter-spacing: 0.16em; text-shadow: none; }

  /* Rumble — ground shaking before detonation */
  23.5% { transform: scale(1) translate(-2px,  1px); }
  24%   { transform: scale(1) translate( 2px, -1px); }
  24.5% { transform: scale(1) translate(-3px,  0px); }
  25%   { transform: scale(1) translate( 1px,  2px); }
  25.5% { transform: scale(1) translate(-2px, -2px); }
  26%   { transform: scale(1) translate( 3px,  1px); }
  26.5% { transform: scale(1) translate(-3px, -1px); }
  27%   { transform: scale(1) translate( 2px,  2px);
          opacity: 1; letter-spacing: 0.16em; }

  /* White-hot flash */
  27.5% { transform: scale(1.06) translate(0, 0); opacity: 1;
          letter-spacing: 0.22em;
          text-shadow: 0 0 10px #FFD100, 0 0 26px #FFD100, 0 0 48px #FF6B00; }

  /* Detonation — launch up, blow apart */
  28%   { transform: scale(1.1) translateY(-2px); opacity: 1;
          animation-timing-function: cubic-bezier(0.05, 0, 0.2, 1); }
  32%   { transform: scale(4.5) translateY(-12px); opacity: 0;
          letter-spacing: 1.4em;
          text-shadow: 0 0 16px #FFD100; }

  /* Reset */
  32.1% { opacity: 0; transform: scale(1) translateY(0);
          letter-spacing: 0.16em; text-shadow: none; }
  100%  { opacity: 0; transform: scale(1) translateY(0);
          letter-spacing: 0.16em; text-shadow: none; }
}

@keyframes shockwaveRing {
  0%, 27.4%   { transform: scale(1); opacity: 0; border-color: transparent; }
  27.5%       { transform: scale(1); opacity: 1;
                border-color: rgba(255, 209, 0, 0.95); }
  32%         { transform: scale(6); opacity: 0;
                border-color: rgba(255, 107, 0, 0); }
  32.1%, 100% { transform: scale(1); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .ann-bar__msg {
    animation: none;
    position: static;
    opacity: 1;
  }
  .ann-bar__msg::before { animation: none; }
  .ann-bar__msg--2,
  .ann-bar__msg--3 { display: none; }
  .ann-bar__track {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}


/* ─── Header ──────────────────────────────────────────────── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--navy);
  border-top: 3px solid var(--red);
  border-bottom: 3px solid var(--red);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  padding: 0 var(--space-4);
  max-width: var(--container);
  margin: 0 auto;
  gap: var(--space-4);
}

.site-header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.site-header__logo img {
  height: 48px;
  width: auto;
}

/* Desktop nav — hidden on mobile */
.site-nav {
  display: none;
  align-items: center;
  gap: var(--space-8);
}

.site-nav__link {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.15s;
  padding: var(--space-2) 0;
}

.site-nav__link:hover {
  color: var(--red);
}

/* Nav CTA — always visible */
.btn--nav-cta {
  display: flex;
  font-size: 0.75rem;
  padding: 10px 16px;
  white-space: nowrap;
}

/* Hamburger button */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
}

.hamburger__bar {
  display: block;
  width: 22px;
  height: 2.5px;
  background: #ffffff;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
  transform-origin: center;
}

.hamburger[aria-expanded="true"] .hamburger__bar:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.hamburger[aria-expanded="true"] .hamburger__bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger[aria-expanded="true"] .hamburger__bar:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* Mobile nav overlay */
.nav-overlay {
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  bottom: 0;
  background: #111111;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-8);
  z-index: 199;
  transform: translateY(-105%);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
  pointer-events: none;
}

.nav-overlay.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.nav-overlay__link {
  font-family: var(--font-display);
  font-size: var(--text-5xl);
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1;
  transition: color 0.15s;
}

.nav-overlay__link:hover {
  color: var(--red);
}

.nav-overlay__cta {
  margin-top: var(--space-4);
}


/* ─── Footer ──────────────────────────────────────────────── */

.site-footer {
  background: var(--navy);
  border-top: 4px solid var(--red);
}

.site-footer__inner {
  padding: var(--space-12) var(--space-4);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-8);
}

.footer__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
}

.footer__logo {
  height: 56px;
  width: auto;
  display: block;
}

.footer__tagline {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  line-height: var(--leading-snug);
}

.footer__mid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-6);
  width: 100%;
  padding: var(--space-8) 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-4) var(--space-8);
}

.footer__nav-link {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ffffff;
  transition: color 0.15s;
}

.footer__nav-link:hover {
  color: #FFD100;
}

.footer__social {
  display: flex;
  justify-content: center;
  gap: var(--space-6);
}

.footer__social-link {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  transition: color 0.15s;
}

.footer__social-link:hover {
  color: #FFD100;
}

.footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
}

.footer__legal {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.4);
  line-height: var(--leading-loose);
}

.footer__legal a {
  color: rgba(255,255,255,0.5);
  transition: color 0.15s;
}

.footer__legal a:hover {
  color: #FFD100;
}

.footer__dm-logo {
  height: 20px;
  vertical-align: middle;
  opacity: 0.8;
  transition: opacity 0.15s;
}
.footer__legal a:hover .footer__dm-logo { opacity: 1; }

.footer__built-by {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.footer__built-by a { display: flex; align-items: center; }
.footer__built-by a:hover .footer__dm-logo { opacity: 1; }

.footer__email {
  font-size: var(--text-xs);
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  transition: color 0.15s;
}

.footer__email:hover {
  color: #FFD100;
}


/* ─── Cities Ticker ──────────────────────────────────────── */

.cities-ticker {
  background: var(--navy);
  overflow: hidden;
  height: 34px;
  display: flex;
  align-items: center;
}

.cities-ticker__reel {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  white-space: nowrap;
  padding: 0 var(--space-4);
  animation: locTicker 28s linear infinite;
}

.cities-ticker__city {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffffff;
}

.cities-ticker__star {
  font-size: 0.6rem;
  color: #FFD100;
  flex-shrink: 0;
}

/* ─── Location Bar ───────────────────────────────────────── */

.loc-bar {
  background: #1a1a1a;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.loc-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 40px;
}

.loc-bar__detect {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.loc-bar__pin {
  font-size: 0.8rem;
  line-height: 1;
}

.loc-bar__city {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.loc-bar__nearest {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  color: #ffffff;
}

.loc-bar__nearest a {
  color: #ffffff;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.loc-bar__nearest a:hover {
  color: var(--red);
}

/* ─── Section 1: Hero ────────────────────────────────────── */

.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--navy);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/hero-bg.png') center / cover no-repeat;
  opacity: 0.04;
  z-index: 0;
  animation: flagBreath 7s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  z-index: 0;
}

.hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  opacity: 0.42;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-16) var(--space-4) calc(var(--space-16) * 2);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-8);
  text-align: center;
}

/* ── Hero Logo ────────────────────────────── */

.hero__logo {
  width: min(380px, 84vw);
  height: auto;
  display: block;
}

/* ── Hero Search ──────────────────────────── */

.hero__search {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: 500px;
  margin-top: 2rem;
}

.hero__sub {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 4px;
  white-space: nowrap;
}

.hero__zip-row {
  display: flex;
  width: 100%;
  border-radius: 60px;
  overflow: hidden;
}

.hero__zip-input {
  flex: 1;
  min-width: 0;
  border: none;
  outline: none;
  padding: 0 18px;
  font-size: 0.95rem;
  font-family: var(--font-body);
  font-weight: 600;
  color: #111;
  background: #ffffff;
  min-height: 50px;
}

.hero__zip-input::placeholder {
  color: #999;
  font-weight: 400;
}

.hero__zip-input.is-invalid {
  background: #fff5f5;
}

.hero__zip-btn {
  background: var(--red);
  color: #ffffff;
  border: none;
  padding: 0 20px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s;
  flex-shrink: 0;
}

.hero__zip-btn:hover  { background: #e05500; }
.hero__zip-btn:active { transform: scale(0.97); }

.hero__gps-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1.5px solid rgba(255, 255, 255, 0.28);
  color: rgba(255, 255, 255, 0.85);
  border-radius: 60px;
  padding: 12px 28px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
  white-space: nowrap;
}

.hero__gps-btn:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.5);
}

/* GPS as large primary button */
.hero__gps-btn--primary {
  background: var(--red);
  border: 2px solid var(--gold);
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 14px 32px;
  width: 100%;
  max-width: 500px;
}

.hero__gps-btn--primary:hover {
  background: #e05500;
  border-color: #e05500;
}

@media (min-width: 768px) {
  .hero__gps-btn--primary { font-size: 1.4rem; }
}

/* OR divider */
.hero__divider {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: 500px;
  color: rgba(255,255,255,0.75);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero__divider::before,
.hero__divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.35);
}

/* ── Geoapify autocomplete dropdown ── */
.hero__ac-list {
  list-style: none;
  margin: 0;
  padding: 0;
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.55);
  width: 100%;
  max-width: 520px;
  position: relative;
  z-index: 10;
}

.hero__ac-item {
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: rgba(255,255,255,0.88);
  cursor: pointer;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.12s;
  line-height: 1.35;
}

.hero__ac-item:last-child { border-bottom: none; }

.hero__ac-item:hover {
  background: var(--red);
  color: #ffffff;
}

.hero__search-error {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  color: #FFD100;
  text-align: center;
  margin: 0;
}

/* ── Hero Tagline ─────────────────────────── */

.hero__tagline {
  position: relative;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 9vw, 8rem);
  font-weight: 900;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-align: center;
  height: clamp(5rem, 18vw, 15rem);
  margin: 0.5rem 0 6rem;
  line-height: 1;
  transition: text-shadow 0.15s ease;
  overflow: visible;
}

/* chromatic aberration — brief RGB split on impact */
.hero__tagline.tl-chroma {
  text-shadow:
    -4px 0 rgba(255, 30, 60, 0.9),
    4px  0 rgba(0, 180, 255, 0.7),
    0    0 40px rgba(255, 255, 255, 0.9);
}

/* ember glow — tight, warm, cinematic — not neon */
.hero__tagline.tl-glow {
  animation: emberPulse 1.8s ease-in-out infinite alternate;
}

@keyframes emberPulse {
  from {
    text-shadow:
      0 0  8px rgba(255, 175, 40, 0.35),
      0 0 22px rgba(255, 110, 0, 0.15);
  }
  to {
    text-shadow:
      0 0 12px rgba(255, 190, 60, 0.55),
      0 0 32px rgba(255, 120, 0, 0.22);
  }
}

/* ── Tagline burst letters ────────────────── */

.tl-letter {
  display: inline-block;
  opacity: 0;
  color: #FFAB30; /* lands hot amber, cools to white via tl-in */
  transform: translateX(var(--tx, 0)) translateY(var(--ty, 220px)) scale(var(--sc, 0.25)) rotate(var(--rot, 0deg));
  transition: opacity 200ms ease, transform 440ms cubic-bezier(0.34, 1.56, 0.64, 1);
  will-change: transform, opacity;
}

.tl-letter.tl-in {
  opacity: 1;
  transform: translateX(0) translateY(0) scale(1) rotate(0deg);
  color: #ffffff;
  transition:
    opacity 200ms ease,
    transform 440ms cubic-bezier(0.34, 1.56, 0.64, 1),
    color 420ms ease 220ms; /* cools after landing */
}

/* explosion exit — letters burst radially outward and spin */
.tl-letter.tl-out {
  opacity: 0;
  transform: translateX(var(--ex, 60px)) translateY(var(--ey, -80px)) scale(0) rotate(var(--er, 180deg));
  transition: opacity 200ms ease, transform 280ms cubic-bezier(0.4, 0, 1, 1);
}

.tl-space { display: inline-block; }

/* ── 250 image slide ─────────────────────── */

/* absolute positioner — lives inside the tagline, never changes layout */
.tl-img-pos {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tl-img-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.45em;
}

.tl-img-wrap.tl-img-out {
  opacity: 0;
  transform: translateY(-14px) scale(0.96);
  transition: opacity 340ms ease, transform 340ms ease;
}

/* big logo — absolute positioning means this never pushes layout */
.tl-img {
  height: clamp(7rem, 18vw, 15rem);
  width: auto;
  object-fit: contain;
  opacity: 0;
  transform: scale(0.25);
  filter: drop-shadow(0 0 0px transparent);
  transition:
    transform 520ms cubic-bezier(0.34, 1.56, 0.64, 1),
    opacity   260ms ease,
    filter    900ms ease 180ms;
}

.tl-img.tl-logo-pop {
  opacity: 1;
  transform: scale(1);
  filter:
    drop-shadow(0 0 14px rgba(255, 171, 48, 0.95))
    drop-shadow(0 0 36px rgba(255, 80, 0, 0.55));
}

/* subtext row */
.tl-img-sub {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 4.5vw, 3.2rem);
  font-weight: 800;
  color: rgba(255, 255, 255, 0.92);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* each letter sweeps in from the left */
.tl-sub-l,
.tl-sub-sp {
  display: inline-block;
  opacity: 0;
  transform: translateX(-18px);
  transition: transform 380ms cubic-bezier(0.22, 1, 0.36, 1), opacity 280ms ease;
}

.tl-sub-l.tl-sub-in,
.tl-sub-sp.tl-sub-in {
  opacity: 1;
  transform: translateX(0);
}

/* ── "Celebrate Your" shake — escalating earthquake before FREEDOM ── */

@keyframes celebrateShake {
  0%   { transform: translate(0, 0) scale(1) rotate(0deg); }
  7%   { transform: translate(-6px, -2px) scale(1.01) rotate(-0.8deg); }
  14%  { transform: translate( 8px,  3px) scale(0.99) rotate( 1deg); }
  21%  { transform: translate(-11px, -4px) scale(1.02) rotate(-1.3deg); }
  28%  { transform: translate( 12px,  4px) scale(0.98) rotate( 1.5deg); }
  35%  { transform: translate(-14px, -5px) scale(1.03) rotate(-1.8deg); }
  42%  { transform: translate( 15px,  5px) scale(0.97) rotate( 2deg); }
  49%  { transform: translate(-13px, -4px) scale(1.02) rotate(-1.6deg); }
  56%  { transform: translate( 10px,  3px) scale(0.99) rotate( 1.2deg); }
  65%  { transform: translate(-7px, -2px) scale(1.01) rotate(-0.8deg); }
  75%  { transform: translate( 5px,  1px) scale(1) rotate( 0.5deg); }
  87%  { transform: translate(-2px,  0) scale(1) rotate(-0.2deg); }
  100% { transform: translate(0, 0) scale(1) rotate(0deg); }
}

.hero__tagline.tl-shake {
  animation:
    celebrateShake 0.65s cubic-bezier(0.36, 0.07, 0.19, 0.97),
    chargeGlow 0.1s linear infinite;
  transform-origin: center;
}

/* Rapid red/blue electrical pulse — builds anticipation before FREEDOM */
@keyframes chargeGlow {
  0%   { filter: drop-shadow(-5px 0 8px rgba(255,28,56,0.9))  drop-shadow(5px  0 8px rgba(26,60,206,0.85)); }
  50%  { filter: drop-shadow( 5px 0 8px rgba(255,28,56,0.9))  drop-shadow(-5px 0 8px rgba(26,60,206,0.85)); }
  100% { filter: drop-shadow(-5px 0 8px rgba(255,28,56,0.9))  drop-shadow(5px  0 8px rgba(26,60,206,0.85)); }
}

/* ── FREEDOM phrase — bigger, bright white, cinematic aura ── */

.hero__tagline.tl-freedom {
  font-size: clamp(4rem, 16vw, 13rem);
  letter-spacing: 0.06em;
  white-space: nowrap;
}

/* FREEDOM slam — easeOutExpo: starts fast, hits hard, no bounce */
.hero__tagline.tl-freedom .tl-letter {
  transition: opacity 120ms ease, transform 460ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero__tagline.tl-freedom .tl-letter.tl-in {
  transition: opacity 120ms ease, transform 460ms cubic-bezier(0.22, 1, 0.36, 1);
}

/* Seismic shake fires on hero__inner when FREEDOM lands */
@keyframes heroSeismic {
  0%  { transform: translate(0, 0); }
  8%  { transform: translate(-14px,  7px); }
  18% { transform: translate( 14px, -7px); }
  28% { transform: translate(-11px,  5px); }
  38% { transform: translate( 11px, -5px); }
  50% { transform: translate(-7px,   3px); }
  62% { transform: translate( 7px,  -3px); }
  74% { transform: translate(-3px,   2px); }
  86% { transform: translate( 2px,  -1px); }
  100%{ transform: translate(0, 0); }
}

.hero-inner--shake {
  animation: heroSeismic 0.55s cubic-bezier(0.36, 0.07, 0.19, 0.97);
}

/* FREEDOM gets a stronger white-hot pulse instead of the warm amber glow */
.hero__tagline.tl-freedom.tl-glow {
  animation: freedomPulse 1.4s ease-in-out infinite alternate;
}

@keyframes freedomPulse {
  from {
    text-shadow:
      0 0 20px rgba(255, 255, 255, 0.6),
      0 0 50px rgba(255, 255, 255, 0.2);
  }
  to {
    text-shadow:
      0 0 28px rgba(255, 255, 255, 0.95),
      0 0 70px rgba(255, 255, 255, 0.4),
      0 0 110px rgba(255, 210, 60, 0.15);
  }
}


/* ─── Results Section ────────────────────────────────────── */

@keyframes resultsFlash {
  0%   { outline: 4px solid transparent; }
  20%  { outline: 4px solid var(--red); }
  60%  { outline: 4px solid var(--red); }
  100% { outline: 4px solid transparent; }
}

.results {
  background: #1a1a1a;
  padding: 48px 0 56px;
  border-bottom: 3px solid var(--red);
}

.results--flash {
  animation: resultsFlash 1.2s ease-out forwards;
}

.results__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.results__heading {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 5vw, 2.25rem);
  font-weight: 900;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 0;
}

.results__clear {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.6);
  border-radius: 60px;
  padding: 8px 20px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: border-color 0.15s, color 0.15s;
}

.results__clear:hover {
  border-color: rgba(255, 255, 255, 0.6);
  color: #ffffff;
}

.results__cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 680px;
  margin: 0 auto;
}

.hero__countdown {
  display: flex;
  align-items: center;
  gap: clamp(var(--space-2), 3vw, var(--space-6));
}

.countdown__unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-1);
}

.countdown__flip {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 11vw, 5.5rem);
  font-weight: 900;
  line-height: 1;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.45);
  border: 2px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-md);
  padding: var(--space-2) var(--space-3);
  min-width: 1.7em;
  letter-spacing: -0.02em;
}

.countdown__label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ffffff;
}

.countdown__sep {
  font-size: clamp(1.2rem, 4vw, 1.8rem);
  color: #FFD100;
  line-height: 1;
  padding-bottom: 1.4rem;
  flex-shrink: 0;
}

.hero__until {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #ffffff;
}

/* ── Location ticker ──────────────────────── */

.hero__loc-ticker {
  width: 100vw;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.35);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  height: 34px;
  display: flex;
  align-items: center;
}

.hero__loc-reel {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  white-space: nowrap;
  padding: 0 var(--space-4);
  animation: locTicker 28s linear infinite;
}

.hero__loc-city {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffffff;
}

.hero__loc-star {
  font-size: 0.6rem;
  color: #FFD100;
  flex-shrink: 0;
}

@keyframes locTicker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Scroll hint ──────────────────────────── */

.hero__scroll-hint {
  position: absolute;
  bottom: var(--space-6);
  left: 50%;
  transform: translateX(-50%);
  font-size: var(--text-base);
  color: rgba(255, 255, 255, 0.4);
  animation: scrollBounce 2.5s ease-in-out infinite;
  z-index: 2;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

@media (prefers-reduced-motion: reduce) {
  .hero__scroll-hint,
  .hero__loc-reel,
  .hero__logo,
  .hero__tagline,
  #findStandBtn,
  .countdown__flip,
  #cdHours,
  #cdMins,
  #cdSecs,
  .hero::before { animation: none; }
}

/* ── Hero entrance & pulse animations ──────── */

.hero__logo    { animation: heroItemIn 0.95s cubic-bezier(0.16, 1, 0.3, 1) 0.1s  both; }
.hero__tagline { animation: none; } /* JS burst-in handles this */
#findStandBtn  { animation: heroItemIn 0.95s cubic-bezier(0.16, 1, 0.3, 1) 0.75s both; min-height: 44px; padding: 0 var(--space-6); font-size: var(--text-sm); }

@keyframes heroItemIn {
  from { opacity: 0; transform: translateY(22px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0)    scale(1); }
}

@keyframes btnPulse {
  0%, 100% { box-shadow: 0 0 0 0    rgba(255, 209, 0, 0); }
  50%       { box-shadow: 0 0 0 12px rgba(255, 209, 0, 0.22); }
}

/* ── Countdown glow + tick flash ────────────── */

.countdown__flip { animation: flipGlow 2.2s ease-in-out infinite; }
#cdHours         { animation-delay: 0.55s; }
#cdMins          { animation-delay: 1.1s; }
#cdSecs          { animation-duration: 1.1s; transition: background 0.08s ease; }

#cdSecs.is-ticking { background: rgba(255, 98, 0, 0.45); }

@keyframes flipGlow {
  0%, 100% { border-color: rgba(255, 255, 255, 0.18); box-shadow: none; }
  50%       { border-color: rgba(255, 255, 255, 0.42); box-shadow: 0 0 14px rgba(255, 209, 0, 0.12); }
}

/* ── Flag breath ──────────────────────────── */

@keyframes flagBreath {
  0%, 100% { opacity: 0.26; }
  50%       { opacity: 0.36; }
}

/* ─── Marquee Belt ───────────────────────────────────────── */

.marquee-belt {
  overflow: hidden;
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
}

.marquee-belt__row {
  display: flex;
  align-items: center;
  height: 52px;
  overflow: hidden;
}

.marquee-belt__row--red  { background: var(--red); }
.marquee-belt__row--navy { background: var(--navy); }

.marquee-belt__reel {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  white-space: nowrap;
  will-change: transform;
  flex-shrink: 0;
  min-width: max-content;
}

.marquee-belt__reel--left {
  animation: beltLeft 22s linear infinite;
}

.marquee-belt__reel--right {
  animation: beltRight 26s linear infinite;
}

.marquee-belt__row--red .marquee-belt__reel span:not(.marquee-belt__star) {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  color: #ffffff;
  text-transform: uppercase;
}

.marquee-belt__row--navy .marquee-belt__reel span:not(.marquee-belt__star) {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  color: #FFD100;
  text-transform: uppercase;
}

.marquee-belt__star {
  color: #FFD100;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.marquee-belt__row--navy .marquee-belt__star {
  color: #ffffff;
}

@keyframes beltLeft {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes beltRight {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-belt__reel { animation: none; }
}

/* ─── Section 2: Coupons ─────────────────────────────────── */

.coupons {
  background-color: #111111;
  padding: 0 0 var(--space-12);
  position: relative;
}

/* ─── Section 2: Coupons ─────────────────────────────────── */

.coupons__header {
  text-align: center;
  padding: var(--space-8) var(--space-4);
  margin-bottom: var(--space-8);
}

.coupons__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 11vw, 5rem);
  font-weight: 900;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1;
  margin-bottom: var(--space-2);
}

.coupons__sub {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  color: #FFD100;
}


/* Featured nearest stand */
.coupons__featured {
  margin-bottom: var(--space-8);
}

.coupon-featured {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  cursor: pointer;
  transition: transform 0.15s;
}

.coupon-featured:hover {
  transform: translateY(-2px);
}

.coupon-featured__badge {
  background: #FFD100;
  color: var(--navy);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
}

.coupon-featured__logo {
  height: 56px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
}

.coupon-featured__info {
  flex: 1;
}

.coupon-featured__name {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 900;
  color: #ffffff;
  text-transform: uppercase;
  line-height: 1.1;
}

.coupon-featured__city {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  color: #FFD100;
  margin-top: 2px;
}

.coupon-featured__cta {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #FFD100;
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
}

/* Card grid */
.coupons__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
}

.coupon-card {
  text-decoration: none;
  color: inherit;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background-image: url('../images/hero-bg.png');
  background-size: cover;
  background-position: center bottom;
  background-clip: padding-box;
  border: 1px solid rgba(255,255,255,0.22);
  border-top: 3px solid var(--red);
  border-radius: var(--radius-lg);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.28), inset 1px 0 0 rgba(255,255,255,0.10), 0 4px 24px rgba(255,98,0,0.15);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
  position: relative;
}

.coupon-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25), 0 0 0 2px var(--red), 0 0 28px rgba(200, 30, 30, 0.45);
}

.coupon-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.22) 0%, rgba(255,255,255,0.06) 35%, transparent 60%),
    rgba(10, 10, 18, 0.91);
  border-radius: inherit;
  pointer-events: none;
}

.coupon-card__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-3);
  padding: var(--space-8) var(--space-4) var(--space-4);
  flex: 1;
  position: relative;
  z-index: 1;
}

.coupon-card__logo-wrap {
  width: 68px;
  height: 68px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 8px;
}

.coupon-card__badge {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  background: var(--red);
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 7px;
  border-radius: 20px;
  white-space: nowrap;
  line-height: 1.4;
}

.coupon-card__logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.coupon-card__info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.coupon-card__name {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 900;
  color: #ffffff;
  text-transform: uppercase;
  line-height: 1.1;
}

.coupon-card__city {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  color: #FFD100;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.coupon-card__btn {
  position: relative;
  z-index: 1;
  background: var(--red);
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  padding: var(--space-3);
  border: none;
  cursor: pointer;
  width: 100%;
}

/* Hide Leaflet attribution */
.leaflet-control-attribution { display: none !important; }

/* Modal */
.coupon-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-4);
}

.coupon-modal[hidden] { display: none; }

.coupon-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  cursor: pointer;
}

.coupon-modal__box {
  position: relative;
  z-index: 1;
  background: #1c1c1c;
  border-radius: var(--radius-lg);
  border-top: 4px solid var(--red);
  padding: var(--space-6);
  width: 100%;
  max-width: 440px;
  max-height: 90vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
}

.coupon-modal__close {
  position: absolute;
  top: var(--space-3);
  right: var(--space-3);
  background: rgba(255,255,255,0.15);
  border: none;
  color: #ffffff;
  font-size: 1.1rem;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.coupon-modal__meta {
  text-align: center;
}

.coupon-modal__meta-name {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 900;
  color: #ffffff;
  text-transform: uppercase;
}

.coupon-modal__meta-city {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  color: #FFD100;
}

.coupon-modal__img-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.coupon-modal__img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  display: block;
}

.coupon-modal__footer {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.coupon-modal__nav-group {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.coupon-modal__nav {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: #ffffff;
  font-size: 1.25rem;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.coupon-modal__nav[hidden] { display: none; }

.coupon-modal__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  justify-content: flex-end;
}

.coupon-modal__download {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  padding: 10px 16px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.coupon-modal__cta {
  min-height: 40px;
  font-size: var(--text-sm);
  white-space: nowrap;
  cursor: pointer;
}

/* ── Stand info modal ── */
.stand-info {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding-top: 4px;
}

.stand-info__logo-wrap {
  width: 88px;
  height: 88px;
  border-radius: 18px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.4);
}

.stand-info__logo {
  width: 68px;
  height: 68px;
  object-fit: contain;
}

.stand-info__name {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 5vw, 1.65rem);
  font-weight: 900;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  text-align: center;
  margin: 0 0 4px;
  line-height: 1.1;
}

.stand-info__city {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin: 0 0 28px;
}

.stand-info__call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 68px;
  background: var(--red);
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-radius: 14px;
  text-decoration: none;
  margin-bottom: 10px;
}

.stand-info__call svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.stand-info__addr {
  width: 100%;
  text-align: center;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  font-family: var(--font-body);
  margin: 0 0 20px;
  line-height: 1.5;
}

.stand-info__maps {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stand-info__map-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  border-radius: 12px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
}

.stand-info__map-btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  opacity: 0.7;
}

/* ─── Section: Guarantee ─────────────────────────────────────── */


/* ─── Scroll Reveal ─────────────────────────────────────── */

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--d1 { transition-delay: 0.15s; }
.reveal--d2 { transition-delay: 0.30s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ─── Section 5: Guarantee ──────────────────────────────── */

.guarantee {
  position: relative;
  background: var(--red);
  padding: 96px 0 64px;
  overflow: hidden;
}

/* Grain texture */
.guarantee::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='250' height='250'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='250' height='250' filter='url(%23n)' opacity='0.07'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

/* Dark vignette corners */
.guarantee__glow-a {
  position: absolute;
  top: -100px;
  left: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0,0,0,0.12) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.guarantee__glow-b {
  position: absolute;
  bottom: -100px;
  right: -80px;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(0,0,0,0.10) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

/* Giant watermark */
.guarantee__watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-7deg);
  font-family: var(--font-display);
  font-size: clamp(100px, 20vw, 260px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: rgba(0,0,0,0.07);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.guarantee__inner {
  position: relative;
  z-index: 1;
}

/* Split layout */
.guarantee__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

/* LEFT: Statement */
.guarantee__statement {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
}

.guarantee__overline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.82);
}

.guarantee__overline::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: rgba(0,0,0,0.7);
  border-radius: 1px;
  flex-shrink: 0;
}

.guarantee__title {
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 12vw, 5.75rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.91;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.guarantee__title em {
  font-style: normal;
  color: #ffffff;
  display: block;
}

.guarantee__rule {
  width: 64px;
  height: 3px;
  background: rgba(0,0,0,0.6);
  border-radius: 2px;
  margin: -4px 0;
}

.guarantee__sub {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: rgba(255,255,255,0.95);
  line-height: 1.75;
  max-width: 380px;
}

.guarantee__cta {
  margin-top: 4px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 30px;
  background: #FFD100;
  border: 2px solid #FFD100;
  border-radius: 50px;
  color: #000000;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.22s, border-color 0.22s, color 0.22s;
}

.guarantee__cta:hover {
  background: #ffffff;
  border-color: #ffffff;
  color: #000000;
}

.guarantee__cta svg {
  transition: transform 0.22s;
  flex-shrink: 0;
}

.guarantee__cta:hover svg {
  transform: translateX(3px);
}

/* RIGHT: Pillars */
.guarantee__pillars {
  display: flex;
  flex-direction: column;
}

.guarantee__pillar {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 22px;
  align-items: flex-start;
  padding: 30px 0;
  border-bottom: 1px solid rgba(255,255,255,0.25);
  transition: background 0.2s;
  border-radius: 8px;
  margin: 0 -12px;
  padding-left: 12px;
  padding-right: 12px;
}

.guarantee__pillar:first-child {
  border-top: 1px solid rgba(255,255,255,0.25);
}

.guarantee__pillar:hover {
  background: rgba(255,255,255,0.03);
}

.guarantee__num {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #000000;
  flex-shrink: 0;
  padding-top: 2px;
}

.guarantee__pillar-content {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding-top: 6px;
}

.guarantee__pillar-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 900;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1;
}

.guarantee__pillar-body {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 400;
  color: rgba(255,255,255,0.78);
  line-height: 1.65;
}

@media (min-width: 768px) {
  .guarantee__layout {
    grid-template-columns: 1.05fr 1fr;
    gap: 88px;
    align-items: center;
  }

  .guarantee__title {
    font-size: clamp(3.4rem, 5.5vw, 5.75rem);
  }
}

/* ─── Section 3: America 250 ────────────────────────────────── */

.america250 {
  position: relative;
  background-color: var(--navy);
  overflow: hidden;
  border-top: 6px solid var(--red);
  border-bottom: 6px solid var(--red);
}

.america250::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/hero-bg.png') center / cover no-repeat;
  opacity: 0.05;
  z-index: 0;
}

.america250__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.america250__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-12);
  padding: var(--space-16) var(--space-4);
  text-align: center;
}

.america250__overline {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #FFD100;
}

.america250__title {
  font-family: var(--font-display);
  font-size: clamp(var(--text-5xl), 14vw, 7rem);
  font-weight: 900;
  color: #ffffff;
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: -0.02em;
}

.america250__copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.america250__overline {
  margin-bottom: var(--space-2);
}

.america250__title {
  margin-bottom: var(--space-6);
}

.america250__body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 500;
  color: #ffffff;
  max-width: 480px;
  line-height: var(--leading-loose);
  margin-bottom: var(--space-8);
}

.america250__badge-img {
  width: min(480px, 88vw);
  height: auto;
  display: block;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .america250 {
    min-height: 540px;
  }

  .america250__inner {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 80px;
    padding: 96px 80px;
    min-height: 540px;
  }

  .america250__visual {
    flex-shrink: 0;
    width: 40%;
  }

  .america250__badge-img {
    width: 100%;
    max-width: 520px;
  }

  .america250__copy {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
  }

  .america250__title {
    font-size: clamp(3.5rem, 5vw, 5.5rem);
  }
}

@media (min-width: 1024px) {
  .america250 {
    min-height: 620px;
  }

  .america250__inner {
    gap: 96px;
    padding: 96px 80px;
    min-height: 620px;
  }

  .america250__visual {
    width: 42%;
  }

  .america250__title {
    font-size: clamp(4rem, 5.5vw, 6.5rem);
  }
}

/* ─── Section 4: Categories ──────────────────────────────────── */

.categories {
  background-color: #ffffff;
  background-image: url('../images/bg-pattern.svg');
  background-size: 1200px 900px;
  background-repeat: repeat;
  padding: 0 0 var(--space-12);
}

.categories__header {
  background: var(--red);
  text-align: center;
  padding: var(--space-8) var(--space-4);
  margin-bottom: var(--space-8);
}

.categories__title {
  font-family: var(--font-display);
  font-size: clamp(var(--text-3xl), 6vw, var(--text-5xl));
  font-weight: 900;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1;
  margin-bottom: var(--space-2);
}

.categories__sub {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffffff;
}

.categories__track-wrap {
  padding: 0 var(--space-4);
  overflow: hidden;
}

.categories__track {
  display: flex;
  gap: var(--space-4);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: var(--space-2);
}

.categories__track::-webkit-scrollbar {
  display: none;
}

.cat-card {
  flex-shrink: 0;
  width: 152px;
  background: var(--navy);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  scroll-snap-align: start;
  transition: transform 0.15s, background-color 0.15s;
}

.cat-card:hover {
  transform: translateY(-4px);
  background: #2a2a2a;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3), 0 0 0 2px #FFD100, 0 0 28px rgba(255, 209, 0, 0.35);
}

.cat-card__img-wrap {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.18);
}

.cat-card__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.cat-card__name {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 900;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.1;
  padding: var(--space-3) var(--space-3) var(--space-4);
}

@media (min-width: 768px) {
  .categories__track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow-x: unset;
    scroll-snap-type: unset;
    padding-bottom: 0;
  }

  .cat-card {
    width: auto;
  }
}

@media (min-width: 1024px) {
  .categories__track {
    grid-template-columns: repeat(8, 1fr);
  }
}

/* ─── Section: Find a Stand / Map ───────────────────────────── */

.locations {
  background: var(--navy);
  padding: 0 0 var(--space-16);
}

/* ── Map logo pins ── */
.map-pin {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.map-pin__bubble {
  width: 48px;
  height: 48px;
  background: #ffffff;
  border-radius: 50%;
  border: 2px solid var(--red);
  box-shadow: 0 2px 8px rgba(0,0,0,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  overflow: hidden;
}

.map-pin__logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.map-pin__tail {
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid var(--red);
  margin-top: -1px;
}

.locations__header {
  background: var(--navy);
  border-top: 4px solid var(--red);
  text-align: center;
  padding: var(--space-8) var(--space-4);
  margin-bottom: var(--space-8);
}

@media (min-width: 768px) {
  .locations {
    padding: 0 0 80px;
  }

  .locations__header {
    padding: 64px var(--space-8) 48px;
    margin-bottom: 48px;
  }

  .locations__body {
    max-width: var(--container-wide);
    margin: 0 auto;
    padding: 0 48px;
    flex-direction: row;
    align-items: flex-start;
    gap: 40px;
  }

  .locations__map-wrap {
    flex: 1 1 0;
    min-width: 0;
  }

  .locations__map {
    height: 600px;
  }

  .locations__list {
    flex: 0 0 340px;
    max-height: 600px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.2) transparent;
  }
}

@media (min-width: 1024px) {
  .locations {
    padding: 0 0 100px;
  }

  .locations__header {
    padding: 80px var(--space-12) 56px;
    margin-bottom: 56px;
  }

  .locations__body {
    padding: 0 64px;
    gap: 48px;
  }

  .locations__map {
    height: 680px;
  }

  .locations__list {
    flex: 0 0 400px;
    max-height: 680px;
  }
}

.locations__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 10vw, 5rem);
  font-weight: 900;
  color: #ffffff;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: var(--space-2);
}

.locations__sub {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #FFD100;
}

.locations__body {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.locations__map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.locations__map {
  width: 100%;
  height: 400px;
}

.locations__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.loc-item {
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
  gap: var(--space-4);
  position: relative;
  overflow: hidden;
  background: rgba(255,255,255,0.05);
  background-image: url('../images/hero-bg.png');
  background-size: cover;
  background-position: center center;
  background-clip: padding-box;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.14);
  border-top: 2px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-4);
  cursor: pointer;
  transition: border-color 0.15s, box-shadow 0.15s;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12), 0 4px 16px rgba(0,0,0,0.25);
}

.loc-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.03) 40%, transparent 65%),
    rgba(10, 10, 18, 0.88);
  pointer-events: none;
  z-index: 0;
}

.loc-item__logo-wrap,
.loc-item__info,
.loc-item__arrow {
  position: relative;
  z-index: 1;
}

.loc-item:hover {
  border-color: rgba(255,98,0,0.5);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.15), 0 4px 20px rgba(255,98,0,0.15);
}

.loc-item__logo-wrap {
  width: 40px;
  height: 40px;
  background: #ffffff;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  flex-shrink: 0;
}

.loc-item__logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.loc-item__info {
  flex: 1;
  min-width: 0;
}

.loc-item__name {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 900;
  color: #ffffff;
  text-transform: uppercase;
  line-height: 1.1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.loc-item__address {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  color: #FFD100;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.loc-item__arrow {
  font-size: var(--text-base);
  color: rgba(255, 255, 255, 0.4);
  flex-shrink: 0;
}

.loc-item:hover .loc-item__arrow {
  color: #FFD100;
}

@media (min-width: 1024px) {
  .locations__body {
    flex-direction: row;
    align-items: flex-start;
  }

  .locations__map-wrap {
    flex: 1;
    position: sticky;
    top: 80px;
  }

  .locations__map {
    height: 580px;
  }

  .locations__list {
    width: 340px;
    flex-shrink: 0;
    max-height: 580px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.2) transparent;
  }
}

/* ─── Big Bang CTA ───────────────────────────────────────────── */

.bang-cta {
  position: relative;
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.bang-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/hero-bg.png') center / cover no-repeat;
  opacity: 0.12;
  z-index: 0;
}

.bang-cta__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.bang-cta__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-12);
  text-align: center;
  padding: var(--space-8) var(--space-4);
}

.bang-cta__title {
  font-family: var(--font-display);
  font-size: clamp(5rem, 22vw, 14rem);
  font-weight: 900;
  color: #ffffff;
  text-transform: uppercase;
  line-height: 0.88;
  letter-spacing: -0.03em;
}

.bang-cta__btn {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 4vw, 2rem);
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
  background: #FFD100;
  border: none;
  border-radius: var(--radius-full);
  padding: var(--space-4) var(--space-12);
  min-height: 72px;
  cursor: pointer;
  transition: transform 0.15s ease, background-color 0.15s ease;
  white-space: nowrap;
}

.bang-cta__btn:hover {
  background: #e6bc00;
  transform: scale(1.04);
}

.bang-cta__btn:active {
  transform: scale(0.97);
}

.bang-cta__btn.is-fired {
  opacity: 0.4;
  pointer-events: none;
}

/* ─── Bang Overlay ───────────────────────────────────────────── */

.bang-backdrop {
  position: fixed;
  inset: 0;
  background: #000814;
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.bang-backdrop.is-firing {
  opacity: 1;
  pointer-events: all;
}

.bang-backdrop.is-done {
  opacity: 0;
  transition: opacity 0.8s ease;
}

.bang-flash {
  position: fixed;
  inset: 0;
  background: #ffffff;
  z-index: 10001;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.08s ease;
}

.bang-flash.is-firing {
  opacity: 0.9;
}

.bang-overlay {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.bang-overlay.is-firing {
  opacity: 1;
}

/* ─── Sticky CTA Bar ─────────────────────────────────────────── */

.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: var(--navy);
  border-top: 3px solid var(--red);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-3) var(--space-6);
  transform: translateY(110%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.sticky-cta.is-visible {
  transform: translateY(0);
  pointer-events: all;
}

.sticky-cta__label {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ffffff;
  display: none;
}

@keyframes btnShake {
  0%, 15%, 100% { transform: rotate(0deg) scale(1); }
  2%  { transform: rotate(-4deg) scale(1.04); }
  4%  { transform: rotate(4deg)  scale(1.04); }
  6%  { transform: rotate(-4deg) scale(1.04); }
  8%  { transform: rotate(4deg)  scale(1.04); }
  10% { transform: rotate(-2deg) scale(1.02); }
  12% { transform: rotate(2deg)  scale(1.02); }
  14% { transform: rotate(0deg)  scale(1); }
}

.sticky-cta__btn {
  min-height: 38px;
  font-size: var(--text-base);
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--red);
  color: #ffffff;
  border: 2px solid var(--gold);
  border-radius: 60px;
  padding: 0 var(--space-6);
  flex-shrink: 0;
  width: 100%;
  cursor: pointer;
  animation: btnShake 3.5s ease-in-out infinite;
}

@media (min-width: 640px) {
  .sticky-cta__label {
    display: block;
  }

  .sticky-cta__btn {
    width: auto;
  }
}

/* ─── Section: Area 61 Teaser (mobile only) ─────────────────── */


/* ═══════════════════════════════════════════
   FIND A STAND — BOTTOM SHEET PANEL
═══════════════════════════════════════════ */

.find-panel {
  position: fixed;
  inset: 0;
  z-index: 900;
  pointer-events: none;
}

.find-panel__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.find-panel.is-open .find-panel__backdrop {
  opacity: 1;
  pointer-events: auto;
}

/* Mobile — bottom sheet */
.find-panel__sheet {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  max-width: 100vw;
  box-sizing: border-box;
  background: #1a1a1a;
  border-radius: 20px 20px 0 0;
  max-height: 90dvh;
  overflow-y: auto;
  overflow-x: hidden;
  transform: translateY(100%);
  transition: transform 0.38s cubic-bezier(0.32, 0.72, 0, 1);
  pointer-events: none;
  padding-bottom: env(safe-area-inset-bottom, 0px);
}

.find-panel.is-open .find-panel__sheet {
  transform: translateY(0);
  pointer-events: auto;
}

/* Desktop — centered modal */
@media (min-width: 640px) {
  .find-panel__sheet {
    position: absolute;
    bottom: auto;
    left: 50%;
    top: 50%;
    right: auto;
    width: min(520px, 92vw);
    border-radius: 16px;
    transform: translate(-50%, calc(-50% + 20px)) scale(0.97);
    opacity: 0;
    transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1),
                opacity 0.35s ease;
    max-height: 85dvh;
  }

  .find-panel.is-open .find-panel__sheet {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
}

.find-panel__handle {
  width: 40px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.18);
  margin: 12px auto 0;
}

@media (min-width: 640px) {
  .find-panel__handle { display: none; }
}

.find-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.find-panel__title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.find-panel__close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #ffffff;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
}

.find-panel__close:hover { background: rgba(255, 255, 255, 0.2); }

.find-panel__body {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.find-panel__gps {
  width: 100%;
  padding: 14px;
  background: var(--red);
  color: #ffffff;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--font-heading);
  cursor: pointer;
  transition: background 0.2s;
  letter-spacing: 0.02em;
}

.find-panel__gps:hover { background: #e05500; }

.find-panel__divider {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.8125rem;
}

.find-panel__divider::before,
.find-panel__divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.find-panel__zip-row {
  display: flex;
  gap: 8px;
}

.find-panel__zip-input {
  flex: 1;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  color: #ffffff;
  font-size: 1rem;
  font-family: var(--font-body);
  outline: none;
  transition: border-color 0.2s;
}

.find-panel__zip-input::placeholder { color: rgba(255, 255, 255, 0.3); }
.find-panel__zip-input:focus { border-color: var(--red); }

.find-panel__zip-input.is-invalid {
  border-color: #ff5555;
  animation: zipShake 0.25s ease;
}

@keyframes zipShake {
  0%, 100% { transform: translateX(0); }
  25%       { transform: translateX(-5px); }
  75%       { transform: translateX(5px); }
}

.find-panel__zip-go {
  padding: 12px 22px;
  background: var(--red);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}

.find-panel__zip-go:hover { background: #e05500; }

.find-panel__results {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.find-panel__status {
  text-align: center;
  padding: 20px 0 6px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9375rem;
}

.find-panel__status--error { color: #ff6b6b; }

/* ── Stand result cards ── */

.stand-card {
  position: relative;
  overflow: hidden;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 16px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,0.14);
  border-top: 2px solid rgba(255,255,255,0.2);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.15), inset 1px 0 0 rgba(255,255,255,0.07), 0 6px 28px rgba(0,0,0,0.3);
}

.stand-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.04) 40%, transparent 65%);
  pointer-events: none;
}

.stand-card--top {
  border-color: var(--red);
  border-top-color: var(--red);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.15), 0 0 0 1px var(--red), 0 8px 32px rgba(255,98,0,0.2);
}

.stand-card__badge {
  display: inline-block;
  background: var(--red);
  color: #ffffff;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.stand-card__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.stand-card__logo-ring {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #ffffff;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  overflow: hidden;
}

.stand-card__logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.stand-card__meta {
  flex: 1;
  min-width: 0;
}

.stand-card__dba {
  font-weight: 900;
  color: #ffffff;
  font-size: 1.2rem;
  font-family: var(--font-display);
  text-transform: uppercase;
  margin: 0 0 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.stand-card__dist {
  font-size: 1rem;
  color: var(--gold);
  font-weight: 700;
  margin: 2px 0;
}

.stand-card__dist strong {
  color: var(--gold);
  font-weight: 700;
}

.stand-card__addr {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
  margin: 2px 0 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.stand-card__call {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 60px;
  background: var(--red);
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-radius: 12px;
  text-decoration: none;
  margin: 14px 0 10px;
  transition: background 0.15s, transform 0.15s;
}

.stand-card__call:hover  { background: #e05500; }
.stand-card__call:active { transform: scale(0.98); }

.stand-card__phone {
  display: inline-block;
  font-size: 0.8125rem;
  color: var(--red);
  text-decoration: none;
  margin-top: 3px;
}

.stand-card__phone:hover { text-decoration: underline; }

.stand-card__btns {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stand-card__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 9px 6px;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: filter 0.15s, transform 0.1s;
  line-height: 1;
  font-family: var(--font-body);
  min-width: 0;
  overflow: hidden;
}

.stand-card__btn:active { transform: scale(0.97); }
.stand-card__btn:hover  { filter: brightness(1.1); }

.stand-card__btn--gmaps {
  background: #1a73e8;
  color: #ffffff;
}

.stand-card__btn--waze {
  background: #33ccff;
  color: #000000;
}

.stand-card__btn--apple {
  background: #e8e8ed;
  color: #1d1d1f;
}

.stand-card__btn--coupon {
  background: var(--gold);
  color: #000000;
  grid-column: 1 / -1;
}
