/* ============================================================
   HERO
   ============================================================ */

.hero {
  padding-block: clamp(2.5rem, 7vw, 5rem) clamp(3rem, 8vw, 6rem);
  overflow: hidden;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 6vw, 4rem);
  align-items: center;
}

.hero__copy {
  max-width: 40rem;
}

.hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--action);
  margin-bottom: 1.1rem;
}

.hero__kicker::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--action);
}

.hero h1 {
  color: var(--ink);
}

.hero__lead {
  margin-top: 1.25rem;
  font-size: var(--fs-lead);
  color: var(--text-muted);
  max-width: 34rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 2.1rem;
}

.hero__phone-row {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.05rem;
  color: var(--ink);
}

.hero__phone-row svg {
  width: 19px;
  height: 19px;
  color: var(--action);
  flex-shrink: 0;
}

.hero__phone-row a {
  text-decoration: none;
}

.hero__phone-row a:hover {
  color: var(--action);
}

/* --- Concept visual: one menu -> everywhere --- */
.hero__visual {
  width: 100%;
  max-width: 30rem;
  margin-inline: auto;
}

.concept-svg {
  width: 100%;
  height: auto;
  overflow: visible;
}

.concept-svg .connector {
  fill: none;
  stroke: #c4cfda;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 4 240;
  stroke-dashoffset: 0;
  animation: draw-connector 1.8s ease-out 0.3s forwards;
}

.concept-svg .connector--2 { animation-delay: 0.5s; }
.concept-svg .connector--3 { animation-delay: 0.7s; }

@keyframes draw-connector {
  from { stroke-dasharray: 4 240; }
  to { stroke-dasharray: 240 0; }
}

@media (prefers-reduced-motion: reduce) {
  .concept-svg .connector {
    animation: none;
    stroke-dasharray: none;
  }
}

.concept-svg .dot {
  fill: var(--action);
  opacity: 0;
  animation: dot-in 0.5s ease-out forwards;
}

.concept-svg .dot--1 { animation-delay: 1.9s; }
.concept-svg .dot--2 { animation-delay: 2.1s; }
.concept-svg .dot--3 { animation-delay: 2.3s; }

@keyframes dot-in {
  from { opacity: 0; transform: scale(0.4); }
  to { opacity: 1; transform: scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  .concept-svg .dot {
    animation: none;
    opacity: 1;
  }
}

.concept-svg .menu-card__price-old {
  fill: #9aa7b4;
  text-decoration: line-through;
}

.concept-svg .menu-card__price-new {
  fill: var(--action);
}

.concept-svg text {
  font-family: var(--font-body);
}

.concept-svg .mono {
  font-family: var(--font-mono);
}

.concept-svg .dest-label {
  font-size: 12px;
  font-weight: 700;
  fill: var(--ink);
}

@media (min-width: 860px) {
  .hero__grid {
    grid-template-columns: 1.05fr 0.95fr;
  }
  .hero__visual {
    max-width: none;
  }
}
