/* ============================================================
   MOUNTAIN GOAT GUIDES — TOURS PAGE
   ============================================================ */

/* --------------------------------------------------
   TOURS HERO — matches contact page style
   -------------------------------------------------- */

.tours-hero {
  padding: clamp(4rem, 8vw, 8rem) 0 clamp(3rem, 5vw, 5rem);
  padding-top: calc(var(--header-height) + clamp(4rem, 8vw, 8rem));
  text-align: center;
}

.tours-hero h1 {
  font-size: clamp(3rem, 7vw, 6rem);
  margin-bottom: var(--space-4);
  line-height: 1;
}

.tours-hero p {
  font-size: var(--text-body-lg);
  color: rgba(255, 255, 255, 0.55);
  max-width: 52ch;
  margin-inline: auto;
}

/* --------------------------------------------------
   TOURS SCENIC GRID
   card-scenic cards in a CSS grid (not carousel)
   -------------------------------------------------- */

.tours-scenic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  container-type: inline-size;
  margin-bottom: var(--space-10);
}

/* Override the carousel-only flex sizing from home.css */
.tours-scenic-grid .card-scenic {
  flex: unset;
  width: 100%;
}

@media (max-width: 900px) {
  .tours-scenic-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .tours-scenic-grid {
    grid-template-columns: 1fr;
  }
}

.tours-cta-block {
  background: var(--color-surface-dark);
  border-radius: var(--radius-2xl);
  padding: var(--space-12) var(--space-10);
  text-align: center;
  margin-top: var(--space-16);
}

.tours-cta-block h3 {
  color: var(--color-white);
  margin-bottom: var(--space-4);
}

.tours-cta-block p {
  color: rgba(255, 255, 255, 0.6);
  margin-inline: auto;
  margin-bottom: var(--space-8);
}
