/* =========================
   Start / ordering gateway
========================== */

.start-page {
  padding: 48px 40px 72px;
  max-width: 1200px;
  margin: 0 auto;
}

.start-intro {
  text-align: center;
  margin-bottom: 2rem;
}

.start-intro h2 {
  margin: 0 0 0.65rem;
  font-family: Helvetica, Arial, sans-serif;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 700;
  color: #212121;
  line-height: 1.2;
}

.start-intro p {
  margin: 0 auto;
  max-width: 46rem;
  font-size: 1.1rem;
  line-height: 1.5;
  color: #201d1e;
}

.start-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.start-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-height: 260px;
  padding: 1.5rem 1.4rem 1.35rem;
  background: #fff;
  border: 1px solid #e0e0e0;
  color: inherit;
  text-decoration: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.start-card:hover,
.start-card:focus-visible {
  border-color: #c12422;
  box-shadow: 0 10px 28px rgba(16, 20, 24, 0.1);
  transform: translateY(-2px);
}

.start-card__icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: #f7f7f7;
  border-left: 3px solid #c12422;
}

.start-card__icon svg {
  width: 24px;
  height: 24px;
  fill: #212121;
}

.start-card h3 {
  margin: 0;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #212121;
  line-height: 1.25;
}

.start-card p {
  margin: 0;
  flex: 1;
  font-size: 1rem;
  line-height: 1.5;
  color: #333;
}

.start-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.35rem;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #c12422;
}

.start-card__cta::after {
  content: "→";
}

/* Highlighted “unsure” route */
.start-card--accent {
  background: #f1212a;
  border-color: #f1212a;
  color: #fff;
}

.start-card--accent:hover,
.start-card--accent:focus-visible {
  background: #c12422;
  border-color: #c12422;
  box-shadow: 0 12px 30px rgba(193, 36, 34, 0.28);
}

.start-card--accent .start-card__icon {
  background: rgba(255, 255, 255, 0.14);
  border-left-color: #fff;
}

.start-card--accent .start-card__icon svg {
  fill: #fff;
}

.start-card--accent h3,
.start-card--accent p,
.start-card--accent .start-card__cta {
  color: #fff;
}

.start-note {
  margin: 1.75rem 0 0;
  text-align: center;
  font-size: 0.9rem;
  color: #666;
}

.start-toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  z-index: 50;
  max-width: min(520px, calc(100% - 2rem));
  padding: 0.9rem 1.1rem;
  background: #201d1e;
  color: #fff;
  font-size: 0.95rem;
  line-height: 1.4;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
}

.start-toast[hidden] {
  display: none;
}

@media (max-width: 760px) {
  .start-page {
    padding: 32px 20px 56px;
  }

  .start-grid {
    grid-template-columns: 1fr;
  }

  .start-card {
    min-height: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .start-card {
    transition: none;
  }

  .start-card:hover,
  .start-card:focus-visible {
    transform: none;
  }
}
