/* ═════════════════════════════════════════════
   LOCATIONS — five states, one standard
   Craft: cartoon SVG India with pulsing burger
   pins, cursor-following preview card, state
   rows that light their pin.
   ═════════════════════════════════════════════ */

/* ── HERO ── */
.l-hero {
  min-height: 62vh;
  display: grid; place-content: center; text-align: center;
  gap: 1.1rem; padding: 8rem 1.5rem 3rem;
  background:
    radial-gradient(55% 55% at 50% 0%, rgba(255,175,27,.25), transparent 70%),
    var(--cream);
}
.l-title {
  font-family: var(--mouse);
  font-weight: 400;
  font-size: clamp(3.2rem, 11vw, 9rem);
  line-height: .82;
  text-transform: uppercase;
  color: var(--red);
  -webkit-text-stroke: .55vw var(--white);
  paint-order: stroke fill;
}
.l-title em { font-style: normal; color: var(--mustard); }
.l-sub { font-size: 1.4rem; max-width: 46ch; margin: 0 auto; }

/* ── MAP ZONE ── */
.l-map-zone {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 4rem) clamp(1.2rem, 4vw, 3rem) clamp(4rem, 8vw, 7rem);
}
.l-map-wrap { position: relative; }
.l-map { width: 100%; height: auto; overflow: visible; }
.l-land {
  fill: var(--red);
  stroke: var(--white);
  stroke-width: 8;
  stroke-linejoin: round;
  filter: drop-shadow(10px 14px 0 rgba(56,41,28,.18));
}

/* pins (built in JS): a burger dot on a stick with pulse ring */
.l-pin { cursor: pointer; }
.l-pin .ring {
  fill: none; stroke: var(--mustard); stroke-width: 3;
  opacity: 0;
  transform-origin: center;
  transform-box: fill-box;
  animation: lPulse 2.2s ease-out infinite;
  animation-delay: var(--pd, 0s);
}
@keyframes lPulse {
  0% { opacity: .9; transform: scale(.4); }
  80%, 100% { opacity: 0; transform: scale(1.9); }
}
.l-pin .dot {
  fill: var(--mustard); stroke: var(--ink); stroke-width: 4;
  transform-origin: center; transform-box: fill-box;
  transition: transform .3s cubic-bezier(.34,1.56,.64,1), fill .3s;
}
.l-pin .stem { stroke: var(--ink); stroke-width: 4; stroke-linecap: round; }
.l-pin:hover .dot, .l-pin.lit .dot { fill: var(--white); transform: scale(1.35); }
.l-pin text {
  font-family: var(--mouse); font-size: 15px; letter-spacing: .06em;
  fill: var(--white); text-anchor: middle;
  paint-order: stroke fill; stroke: var(--red-deep); stroke-width: 3px;
  pointer-events: none;
}

/* pin entrance drop */
.l-pin { opacity: 0; translate: 0 -30px; transition: opacity .5s ease, translate .5s cubic-bezier(.34,1.56,.64,1); transition-delay: var(--pd, 0s); }
body.loaded .l-pin { opacity: 1; translate: 0 0; }

/* cursor-follow preview card */
.l-preview {
  position: absolute;
  left: 0; top: 0;
  pointer-events: none;
  background: var(--white);
  border: 4px solid var(--ink);
  border-radius: 16px;
  box-shadow: 6px 8px 0 rgba(56,41,28,.22);
  padding: .7rem 1.1rem;
  display: grid; gap: .1rem;
  opacity: 0; scale: .7;
  transition: opacity .25s ease, scale .25s cubic-bezier(.34,1.56,.64,1);
  z-index: 5;
  min-width: 210px;
}
.l-preview.on { opacity: 1; scale: 1; }
.l-preview b { font-family: var(--mouse); font-weight: 400; font-size: 1.7rem; color: var(--red); line-height: 1; }
.l-preview span { font-size: .95rem; letter-spacing: .12em; }

/* ── STATE LIST ── */
.l-list-head {
  font-family: var(--mouse); font-weight: 400;
  font-size: clamp(2.2rem, 4.6vw, 3.6rem);
  text-transform: uppercase; line-height: .9;
  color: var(--ink);
  margin-bottom: 1.4rem;
}
.l-row {
  display: grid;
  grid-template-columns: 2.6rem 1fr auto;
  align-items: center; gap: .9rem;
  width: 100%;
  padding: .85rem .8rem;
  background: none; border: none; cursor: pointer;
  border-bottom: 4px solid var(--ink);
  font-family: inherit; text-align: left;
  transition: background .3s, padding-left .3s;
}
.l-row:first-child { border-top: 4px solid var(--ink); }
.l-row em { font-style: normal; font-size: 1.05rem; }
.l-row strong {
  font-family: var(--mouse); font-weight: 400;
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
  line-height: 1; color: var(--ink);
  transition: color .3s;
}
.l-row .n {
  font-family: var(--modak); font-size: 1.1rem;
  color: var(--white); background: var(--red);
  border-radius: 999px; padding: .12em .7em .2em;
  box-shadow: 0 3px 0 var(--red-deep);
}
.l-row:hover, .l-row.lit { background: var(--white); padding-left: 1.5rem; }
.l-row:hover strong, .l-row.lit strong { color: var(--red); }
.l-hint { margin-top: 1.6rem; font-size: 1.2rem; opacity: .85; }
.l-hint a { color: var(--red); }
.l-hint a:hover { text-decoration: underline; }

/* ── TICKER ── */
.l-strip {
  background: var(--red);
  border-top: 5px solid var(--white);
  border-bottom: 5px solid var(--white);
  overflow: hidden; white-space: nowrap;
  padding: .7rem 0; rotate: -1.4deg;
  width: 104vw; margin-left: -2vw;
}
.l-strip-track {
  display: inline-block;
  font-family: var(--mouse); font-size: 2rem;
  color: var(--cream); letter-spacing: .08em;
  animation: lMarquee 22s linear infinite;
}
@keyframes lMarquee { to { transform: translateX(-50%); } }

@media (max-width: 820px) {
  .l-map-zone { grid-template-columns: 1fr; }
  .l-map-wrap { max-width: 420px; margin: 0 auto; }
}
