:root {
  --saffron: #E0561B;
  --magenta: #C2185B;
  --cream: #FFF7EC;
  --ink: #2A1A12;
  --muted: #7c6a5f;
  --card: #ffffff;
  --shadow: 0 6px 20px rgba(80, 30, 10, 0.10);
  --radius: 16px;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--cream); color: var(--ink); -webkit-font-smoothing: antialiased;
}
.hero {
  background: linear-gradient(135deg, var(--saffron) 0%, var(--magenta) 75%, #7B1E3B 100%);
  color: #fff; padding: calc(env(safe-area-inset-top) + 60px) 20px 56px; position: relative; overflow: hidden;
}
.hero::after {
  content: ""; position: absolute; right: -50px; bottom: -50px; width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(255,255,255,0.16), transparent 70%);
}
.hero-inner { max-width: 760px; margin: 0 auto; position: relative; z-index: 1; }
.hero-mark { font-size: 13px; letter-spacing: 3px; text-transform: uppercase; opacity: 0.85; margin-bottom: 14px; }
.hero h1 { margin: 0; font-size: 40px; font-weight: 800; line-height: 1.1; letter-spacing: -0.5px; }
.hero p { margin: 12px 0 0; font-size: 18px; opacity: 0.95; }

main { max-width: 760px; margin: 0 auto; padding: 0 16px 60px; }
.section-title { font-size: 15px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--muted); margin: 28px 4px 14px; }

.trips { display: grid; gap: 14px; }
.trip {
  display: flex; background: var(--card); border-radius: var(--radius); box-shadow: var(--shadow);
  overflow: hidden; text-decoration: none; color: inherit; transition: transform .12s ease;
}
.trip:active { transform: scale(0.99); }
.trip-bar { width: 8px; background: var(--accent, var(--saffron)); flex-shrink: 0; }
.trip-body { padding: 16px 18px; flex: 1; }
.trip-top { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; }
.trip-top h3 { margin: 0; font-size: 20px; font-weight: 800; }
.trip-go { color: var(--accent); font-weight: 700; font-size: 14px; white-space: nowrap; }
.trip-soon { color: var(--muted); font-weight: 600; font-size: 13px; background: #f0e7da; padding: 3px 10px; border-radius: 999px; }
.trip-where { margin: 6px 0 0; font-size: 15px; color: var(--ink); }
.trip-dates { margin: 2px 0 0; font-size: 13px; color: var(--muted); }
.trip.soon { opacity: 0.7; }

.site-footer { text-align: center; color: var(--muted); font-size: 13px; margin-top: 40px; line-height: 1.6; }
.site-footer .muted { font-size: 12px; opacity: 0.8; }

@media (min-width: 640px) { .hero h1 { font-size: 50px; } }
