:root {
  color-scheme: light;
  --paper: #f4ede0;
  --ink: #1f292d;
  --ink-soft: #657170;
  --white: #fffdf9;
  --red: #d85d4d;
  --blue: #3f7988;
  --shadow: 0 22px 60px rgba(34, 45, 49, 0.11);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--paper);
  color: var(--ink);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 86px; }

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 12% 3%, rgba(216, 93, 77, 0.06), transparent 24rem),
    radial-gradient(circle at 90% 18%, rgba(63, 121, 136, 0.07), transparent 28rem),
    linear-gradient(180deg, #f7f1e7 0%, #f2e9dc 100%);
}

a { color: inherit; }
img { display: block; max-width: 100%; }
.page-shell { width: min(1180px, calc(100% - 24px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 10px;
  z-index: 50;
  margin-top: 10px;
  padding: 9px 11px 9px 13px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(31, 41, 45, 0.08);
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.86);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 30px rgba(36, 46, 50, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  font-weight: 850;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--red);
  color: white;
  font-family: Georgia, serif;
}

.quick-nav {
  margin-left: auto;
  display: flex;
  gap: 3px;
  overflow-x: auto;
  scrollbar-width: none;
}

.quick-nav::-webkit-scrollbar { display: none; }

.quick-nav a {
  padding: 8px 11px;
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 0.86rem;
  font-weight: 760;
  text-decoration: none;
  white-space: nowrap;
}

.quick-nav a:hover { background: rgba(63, 121, 136, 0.08); color: var(--ink); }

.hero { padding: 64px 8px 24px; }
.hero h1 {
  margin: 0 0 8px;
  font-size: clamp(2.35rem, 5vw, 4rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  font-weight: 900;
}

.hero-route {
  margin: 0 0 17px;
  color: var(--ink-soft);
  font-size: 0.98rem;
  font-weight: 700;
}

.hero-meta { display: flex; flex-wrap: wrap; gap: 8px; }

.meta-pill {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.82);
  border: 1px solid rgba(31, 41, 45, 0.08);
  font-size: 0.84rem;
  font-weight: 760;
}

.map-section { padding: 14px 8px 58px; }

.route-map-card {
  overflow: hidden;
  border: 1px solid rgba(31, 41, 45, 0.08);
  border-radius: 28px;
  background: #0d6da4;
  box-shadow: var(--shadow);
}

.route-map {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.section { padding: 34px 8px 64px; }

.section > h2 {
  margin: 0 0 18px;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.stage-list { display: grid; gap: 20px; }

.stage-card {
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(0, 1.05fr);
  overflow: hidden;
  border: 1px solid rgba(31, 41, 45, 0.08);
  border-radius: 28px;
  background: rgba(255, 253, 249, 0.78);
  box-shadow: 0 18px 50px rgba(42, 54, 56, 0.08);
}

.stage-photo {
  position: relative;
  min-height: 340px;
  background: #d9e0da;
  overflow: hidden;
}

.stage-photo img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  object-position: center;
}

.photo-credit {
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(10, 18, 22, 0.62);
  color: rgba(255,255,255,.82);
  font-size: 0.66rem;
  text-decoration: none;
  backdrop-filter: blur(8px);
}

.stage-copy { padding: clamp(24px, 4vw, 40px); align-self: center; }

.stage-topline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 13px;
}

.stage-date {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(31, 41, 45, 0.055);
  color: var(--ink-soft);
  font-size: 0.77rem;
  font-weight: 780;
}

.stage-copy h3 {
  margin: 0 0 9px;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

.stage-hook {
  margin: 0 0 15px;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.52;
}

.stage-lodging {
  margin: 0 0 18px;
  font-size: 0.9rem;
  line-height: 1.5;
}

.stage-highlights { display: flex; flex-wrap: wrap; gap: 7px; }

.highlight-pill {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(31, 41, 45, 0.055);
  font-size: 0.78rem;
  font-weight: 740;
}

.flight-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.flight-card {
  overflow: hidden;
  border-radius: 22px;
  background: #1f3036;
  color: white;
  box-shadow: var(--shadow);
}

.flight-card-top { padding: 23px 25px 13px; }

.flight-kicker {
  margin: 0 0 7px;
  color: #a9d2d8;
  font-size: 0.75rem;
  font-weight: 820;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.flight-date { color: rgba(255,255,255,.64); font-size: 0.88rem; }

.flight-route {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 13px;
  align-items: center;
  padding: 10px 25px 24px;
}

.airport { display: flex; flex-direction: column; gap: 3px; }
.airport:last-child { text-align: right; }

.airport-code {
  font-size: clamp(2rem, 6vw, 3.8rem);
  line-height: 1;
  letter-spacing: -0.045em;
  font-weight: 850;
}

.airport-name { color: rgba(255,255,255,.58); font-size: 0.8rem; }

.flight-line {
  min-width: 72px;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #f0bd56;
}

.flight-line::before, .flight-line::after {
  content: "";
  height: 1px;
  flex: 1;
  background: currentColor;
  opacity: 0.45;
}

.flight-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.08);
}

.flight-detail { padding: 13px 10px; background: rgba(255,255,255,.03); text-align: center; }
.flight-detail strong { display: block; margin-bottom: 3px; font-size: 0.88rem; }
.flight-detail span { color: rgba(255,255,255,.58); font-size: 0.7rem; }

.flight-note {
  margin-top: 16px;
  padding: 17px 19px;
  border: 1px solid rgba(31, 41, 45, 0.08);
  border-radius: 20px;
  background: rgba(255, 253, 249, 0.72);
  display: flex;
  gap: 13px;
  align-items: center;
}

.flight-note-icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 13px;
  background: rgba(63, 121, 136, 0.16);
}

.flight-note p { margin: 0; color: var(--ink-soft); line-height: 1.5; font-size: 0.9rem; }

.wish-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.wish-card {
  min-height: 245px;
  padding: 22px;
  border: 1px solid rgba(31, 41, 45, 0.08);
  border-radius: 22px;
  background: rgba(255, 253, 249, 0.74);
  box-shadow: 0 16px 42px rgba(42, 54, 56, 0.07);
}

.wish-avatar {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 16px;
  border-radius: 16px;
  background: #efe4d5;
  font-size: 1.7rem;
}

.wish-card h3 { margin: 0 0 7px; font-size: 1.3rem; }
.wish-card p { margin: 0 0 14px; color: var(--ink-soft); line-height: 1.45; font-size: 0.9rem; }
.wish-list { display: grid; gap: 7px; }

.wish-item {
  padding: 9px 11px;
  border-radius: 11px;
  background: rgba(31, 41, 45, 0.05);
  font-size: 0.83rem;
  font-weight: 720;
}

.site-footer {
  min-height: 94px;
  padding: 24px 10px 34px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(31, 41, 45, 0.08);
  color: var(--ink-soft);
  font-size: 0.78rem;
}

@media (max-width: 900px) {
  .page-shell { width: min(100% - 16px, 820px); }
  .stage-card { grid-template-columns: 1fr; }
  .stage-photo, .stage-photo img { min-height: 260px; }
  .flight-grid, .wish-grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  html { scroll-padding-top: 80px; }
  .site-header { top: 8px; margin-top: 8px; }
  .brand span:last-child { display: none; }
  .quick-nav a { padding: 8px 9px; font-size: 0.79rem; }

  .hero { padding: 48px 4px 18px; }
  .hero-route { font-size: 0.9rem; line-height: 1.45; }

  .map-section { padding: 10px 4px 46px; }
  .route-map { aspect-ratio: 16 / 10; }

  .section { padding: 28px 4px 52px; }
  .stage-photo, .stage-photo img { min-height: 220px; }
  .stage-copy { padding: 22px 19px 26px; }

  .flight-route { padding-left: 17px; padding-right: 17px; }
  .flight-card-top { padding-left: 17px; padding-right: 17px; }
  .flight-line { min-width: 48px; }
  .flight-details { grid-template-columns: 1fr; }
  .flight-detail { display: flex; justify-content: space-between; align-items: center; text-align: left; }

  .site-footer { flex-direction: column; gap: 5px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
