/* =============================================
   BIGELOW COOPERATIVE — SCHEDULE A TOUR PAGE
   ============================================= */

/* =============================================
   MAIN CONTENT — FORM + INFO
   ============================================= */

.tour-body {
  padding: var(--sp-xl) 0 var(--sp-2xl);
}

.tour-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 5rem;
  align-items: start;
}

/* =============================================
   FORM
   ============================================= */

.tour-form-section {
  background: var(--white);
  border-radius: var(--r-2xl);
  padding: 2.5rem;
  box-shadow: 0 2px 16px rgba(40, 40, 40, 0.06);
}

/* =============================================
   INFO SIDEBAR
   ============================================= */

.tour-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: sticky;
  top: calc(var(--nav-height) + 2rem);
}

.info-map-link {
  display: inline-block;
  margin-top: 0.875rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--terracotta);
  text-decoration: none;
}

.info-map-link:hover {
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .tour-grid {
    grid-template-columns: 1fr 320px;
    gap: 3rem;
  }
}

@media (max-width: 860px) {
  .tour-body {
    padding: var(--sp-lg) 0 var(--sp-xl);
  }

  .tour-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .tour-info {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .info-block {
    flex: 1 1 280px;
  }

  .tour-form-section {
    padding: 1.75rem;
  }
}

@media (max-width: 600px) {
  .tour-info {
    flex-direction: column;
  }

  .info-block {
    flex: 0 0 auto;
    min-height: 0;
    width: 100%;
  }
}
