/* =========================================================
   HERO – teze stránky: komunitní běh + mapa trasy
   ========================================================= */
.hero {
  position: relative;
  background:
    radial-gradient(120% 90% at 85% 0%, #23402f 0%, var(--ink) 55%);
  overflow: hidden;
  padding: clamp(3rem, 7vw, 5rem) 1.5rem clamp(3.5rem, 8vw, 6rem);
}

.hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 4.5rem);
}

.hero-copy { max-width: 34rem; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-data);
  font-size: .82rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--amber);
  margin: 0 0 1.3rem;
}
.hero-eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--grass); }

.hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.5rem, 6.6vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin: 0 0 1.4rem;
  color: var(--paper-text);
}
.hero-title .accent { color: var(--amber); }
.hero-title .stroke {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--sage);
  text-stroke: 1.5px var(--sage);
}

.hero-copy p {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: var(--paper-soft);
  margin: 0 0 2rem;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-bottom: 2.2rem; }

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(143,176,162,.18);
}
.hero-stat { line-height: 1.1; }
.hero-stat .num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.9rem;
  color: var(--paper-text);
}
.hero-stat .lbl {
  font-family: var(--font-data);
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--paper-soft);
}

/* ---- Vizuál: mapa trasy ---- */
.hero-visual { position: relative; }
.hero-visual img { width: 100%; height: auto; filter: drop-shadow(var(--sh-lg)); }

/* animace kreslení trasy (JS přidá třídu .draw na #hero-route uvnitř SVG,
   ale protože je obrázek externí, animujeme jemný „puls" rámu) */
.hero-visual::after {
  content: "";
  position: absolute;
  inset: -6%;
  border-radius: 30px;
  background: radial-gradient(circle at 70% 25%, rgba(233,163,25,.16), transparent 60%);
  z-index: -1;
}

/* plovoucí popisek u mapy */
.hero-tag {
  position: absolute;
  left: 4%;
  bottom: 6%;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-data);
  font-size: .78rem;
  letter-spacing: .05em;
  padding: .5rem .85rem;
  background: rgba(15,26,19,.82);
  border: 1px solid rgba(143,176,162,.3);
  border-radius: var(--r-pill);
  color: var(--paper-text);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.hero-tag i { color: var(--amber); }

@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-visual { order: -1; max-width: 460px; margin: 0 auto; }
}
