/* Trips index page. Studio Depth index cards + coming-soon placeholders. */

.eyebrow {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 500;
  color: var(--muted-soft);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.index-hero {
  padding: 48px 0 28px;
}

.index-hero h1 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.1;
}

.index-hero .deck {
  margin: 0;
  max-width: 38em;
  font-size: 16px;
  line-height: 1.55;
  color: var(--muted);
}

.index-list {
  display: grid;
  gap: 16px;
  padding-bottom: 56px;
}

.index-card {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 0;
  text-decoration: none;
  color: inherit;
  background: var(--raised);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--raise-sm), var(--edge);
  transition: transform 140ms ease;
}

a.index-card:hover {
  transform: translateY(-1px);
}

.index-card.is-static {
  cursor: default;
  opacity: 0.72;
}

.index-card.is-static:hover {
  transform: none;
}

.index-card-photo {
  min-height: 120px;
  overflow: hidden;
  background: var(--ground);
}

.index-card-photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.index-card.is-static .index-card-photo {
  background:
    linear-gradient(160deg, rgba(18, 20, 18, 0.10) 0%, rgba(18, 20, 18, 0.28) 100%),
    linear-gradient(135deg, #8a8f8a 0%, #6a6f6a 60%, #4a4f4a 100%);
}

.index-card-body {
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.index-card h2 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.index-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
}

.index-meta {
  margin-top: 10px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.01em;
}

.index-card.is-static .index-meta {
  color: var(--muted-soft);
}

@media (max-width: 900px) {
  .index-card {
    grid-template-columns: 1fr;
  }

  .index-card-photo {
    min-height: 140px;
  }
}

.trip-day-shapes {
  display: grid;
  gap: 0.75rem;
  margin: 0.75rem 0 1rem;
}
