:root {
  --ink: #1d2a2b;
  --muted: #5b6d6e;
  --paper: #fbfaf7;
  --teal: #5b9293;
  --teal-dark: #467475;
  --teal-soft: #e3edee;
  --orange: #f9a318;
  --orange-soft: #fdecd0;
  --rule: #dbe3e3;
  --warn: #c4630d;
  --max: 920px;
}

* { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }

body {
  font-family: "Commissioner", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 16.5px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  font-weight: 400;
}

.page {
  max-width: var(--max);
  margin: 0 auto;
  padding: 56px 24px 32px;
}

h1, h2, h3 {
  font-family: "Commissioner", system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--teal-dark);
}

h1 { font-size: clamp(2.3rem, 5.5vw, 3.4rem); margin: 0 0 .25em; color: #579094; font-weight: 800; }
h2 { font-size: 1.5rem; margin: 0 0 .8em; color: var(--teal); }
h3 { font-size: 1.1rem; margin: 1.4em 0 .4em; }

a { color: var(--teal); text-decoration: none; border-bottom: 1px solid currentColor; }
a:hover { color: var(--teal-dark); }

p { margin: .5em 0; }

/* Hero */
.hero {
  text-align: center;
  padding: 8px 0 36px;
  margin-bottom: 32px;
  position: relative;
}
.hero::after {
  content: "";
  display: block;
  width: 64px;
  height: 3px;
  background: var(--orange);
  margin: 28px auto 0;
  border-radius: 2px;
}
.logo {
  max-width: 220px;
  height: auto;
  margin: 0 auto 28px;
  display: block;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .72rem;
  color: var(--teal);
  font-weight: 600;
  margin: 0 0 1em;
}
.dates {
  margin: .8em 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 500;
}

/* Cover strip */
.cover-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 0 0 8px;
}
.cover-strip figure {
  margin: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 1px 3px rgba(29, 42, 43, .08);
}
.cover-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 640px) {
  .cover-strip {
    display: flex;
    grid-template-columns: none;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding: 0 24px;
    padding: 0 24px;
    margin-left: -24px;
    margin-right: -24px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .cover-strip::-webkit-scrollbar { display: none; }
  .cover-strip figure {
    flex: 0 0 calc(100% - 48px);
    scroll-snap-align: center;
    aspect-ratio: 4 / 5;
  }
}

/* Galleries */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 8px;
  margin-top: 20px;
}
.gallery figure {
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 8px;
  background: var(--teal-soft);
}
.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}
.gallery figure:hover img { transform: scale(1.04); }

/* Blocks */
.block {
  margin: 56px 0;
}
.split {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 640px) {
  .split { grid-template-columns: 1fr; }
}

/* Flights */
.flights {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, 1fr);
  margin: 0 0 18px;
}
@media (max-width: 640px) {
  .flights { grid-template-columns: 1fr; }
}
.flight {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 10px;
  padding: 14px 16px;
  border-left: 3px solid var(--teal);
}
.flight-date {
  font-size: .78rem;
  color: var(--muted);
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 600;
}
.flight-route {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 4px 0 6px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
}
.flight-route .arrow { color: var(--orange); font-weight: 700; }
.flight-meta {
  display: flex;
  justify-content: space-between;
  font-size: .9rem;
  color: var(--muted);
}
.flight-meta .code {
  background: var(--orange-soft);
  color: var(--warn);
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .03em;
}

/* Notes */
.notes, .links, .leaders {
  list-style: none;
  padding: 0;
  margin: .6em 0;
}
.notes li, .links li, .leaders li {
  padding: .35em 0 .35em 1.2em;
  position: relative;
}
.notes li::before, .leaders li::before {
  content: "▸";
  position: absolute;
  left: .15em;
  color: var(--orange);
  font-size: .8em;
  top: .55em;
}
.links li::before {
  content: "↗";
  position: absolute;
  left: 0;
  color: var(--teal);
}

.hotel-name { font-size: 1.1rem; margin-top: 0; font-weight: 600; }
.warn { color: var(--warn); font-size: .9rem; font-weight: 500; }

/* Days */
.days {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 28px;
}
.day {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 12px;
  padding: 24px 26px 26px;
  box-shadow: 0 1px 2px rgba(29, 42, 43, .04);
}
.day-head {
  border-bottom: 1px solid var(--rule);
  padding-bottom: 16px;
  margin-bottom: 20px;
}
.day-num {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  padding: 3px 10px;
  border-radius: 4px;
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 10px;
}
.day-head h3 {
  margin: 0;
  font-size: 1.35rem;
  color: var(--ink);
  font-weight: 700;
}
.route {
  margin: .35em 0 0;
  color: var(--teal);
  font-size: .92rem;
  letter-spacing: .04em;
  font-weight: 600;
  text-transform: uppercase;
}

/* Timeline */
.timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}
.timeline li {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  align-items: baseline;
}
@media (max-width: 560px) {
  .timeline li { grid-template-columns: 1fr; gap: 2px; }
}
.timeline .time {
  color: var(--teal);
  font-weight: 700;
  font-size: .92rem;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.timeline .text {
  color: var(--ink);
}
.timeline .text a {
  font-weight: 600;
  border-bottom-color: var(--orange-soft);
  color: var(--teal-dark);
}
.timeline .text a:hover { border-bottom-color: var(--teal); color: var(--teal); }
.timeline .text .inline-arrow {
  font-size: .8em;
  margin-left: 2px;
  color: var(--orange);
  display: inline-block;
  transition: transform .2s ease;
}
.timeline .text a:hover .inline-arrow { transform: translate(2px, -2px); }

.day-note {
  margin-top: 18px;
  padding: 10px 14px;
  background: var(--orange-soft);
  border-left: 3px solid var(--orange);
  border-radius: 0 6px 6px 0;
  font-size: .92rem;
  font-weight: 500;
}

.venues {
  list-style: none;
  padding: 14px 16px;
  margin: 18px 0 0;
  background: var(--teal-soft);
  border-radius: 8px;
  display: grid;
  gap: 8px;
}
.venues li {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 4px 12px;
  font-size: .92rem;
}
.venue-label {
  color: var(--teal-dark);
  font-weight: 600;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  flex: 0 0 auto;
}
.venues a {
  border-bottom: none;
  font-weight: 600;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.venues a:hover { color: var(--teal); }
.venue-arrow {
  font-size: .8em;
  color: var(--orange);
  transition: transform .2s ease;
}
.venues a:hover .venue-arrow { transform: translate(2px, -2px); }

/* General info */
.general {
  display: grid;
  gap: 8px;
  margin: 0;
}
.general > div {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px dashed var(--rule);
}
.general > div:last-child { border-bottom: 0; }
@media (max-width: 560px) {
  .general > div { grid-template-columns: 1fr; gap: 2px; }
}
.general dt { font-weight: 600; color: var(--teal-dark); }
.general dd { margin: 0; color: var(--muted); }

/* Next trip CTA */
.next-trip {
  margin: 72px 0 24px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(29, 42, 43, .08);
}
.next-trip-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  aspect-ratio: 16 / 7;
}
.next-trip-images figure {
  margin: 0;
  overflow: hidden;
  background: var(--teal-soft);
}
.next-trip-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}
.next-trip-images figure:hover img { transform: scale(1.05); }

.next-trip-banner {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  color: #fff;
  padding: 32px 28px 36px;
  text-align: center;
  position: relative;
}
.next-trip-banner::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 4px;
  background: var(--orange);
  border-radius: 2px;
}
.next-trip-kicker {
  text-transform: uppercase;
  letter-spacing: .3em;
  font-size: .72rem;
  color: var(--orange);
  font-weight: 700;
  margin: 0 0 .6em;
}
.next-trip-title {
  font-size: clamp(1.6rem, 3.8vw, 2.4rem);
  font-weight: 800;
  color: #fff;
  margin: 0;
  letter-spacing: -0.015em;
  line-height: 1.15;
}

@media (max-width: 560px) {
  .next-trip-images { aspect-ratio: 4 / 5; grid-template-columns: 1fr; }
  .next-trip-images figure:last-child { display: none; }
}

/* Athens stop block */
.athens-stop {
  background: var(--teal-soft);
  border-radius: 12px;
  padding: 20px 24px;
  border-left: 3px solid var(--teal);
}
.athens-stop h2 { margin-top: 0; margin-bottom: .4em; }
.athens-stop .muted-line {
  margin-top: .8em;
  font-size: .92rem;
  color: var(--muted);
}

/* Footer */
.footer {
  position: relative;
  margin-top: 72px;
  padding: 88px 24px 48px;
  text-align: center;
  color: var(--muted);
  font-size: .95rem;
  font-weight: 500;
  background:
    linear-gradient(180deg, transparent 0, rgba(91, 146, 147, .04) 100%),
    var(--paper);
  border-top: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 64px;
  height: 3px;
  background: var(--orange);
  border-radius: 999px;
}
.footer > * {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}
.footer p { margin: 0; }
.footer .footer-dates {
  margin: 32px 0 0;
  font-size: .85rem;
  letter-spacing: .04em;
  opacity: .75;
}
.footer .footer-credit {
  margin: 6px 0 0;
  padding-top: 14px;
  border-top: 1px solid var(--rule);
  display: inline-block;
  font-size: .7rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: .55;
}
.footer-logo {
  display: block;
  max-width: 150px;
  height: auto;
  margin: 0 auto 48px;
  opacity: .9;
}

/* City menu dropdown */
.city-menu {
  margin: 0 auto;
  max-width: 320px;
}
.city-menu-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .7rem;
  color: var(--teal);
  font-weight: 600;
  margin: 0 0 50px;
}
.city-menu-label .pin-icon { opacity: .9; }
.city-dropdown {
  position: relative;
  display: inline-block;
  text-align: left;
}
.city-dropdown summary {
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 11px 20px;
  min-width: 300px;
  border-radius: 8px;
  border: 1px solid var(--rule);
  background: #fff;
  color: var(--ink);
  font-size: .92rem;
  font-weight: 600;
  cursor: pointer;
  user-select: none;
  justify-content: space-between;
  transition: border-color .15s ease, background .15s ease;
}
.city-dropdown summary::-webkit-details-marker { display: none; }
.city-dropdown summary:hover {
  border-color: var(--teal);
  background: var(--teal-soft);
}
.city-dropdown[open] summary {
  border-color: var(--teal);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.city-dropdown summary svg {
  transition: transform .2s ease;
  color: var(--teal);
  flex-shrink: 0;
}
.city-dropdown[open] summary svg { transform: rotate(180deg); }
.city-dropdown ul {
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  margin: 0 0 -1px;
  padding: 4px 0;
  list-style: none;
  background: #fff;
  border: 1px solid var(--teal);
  border-radius: 8px 8px 0 0;
  box-shadow: 0 -6px 20px rgba(29, 42, 43, .08);
  z-index: 10;
}
.city-dropdown li { margin: 0; }
.city-dropdown a,
.city-dropdown .current {
  display: block;
  padding: 9px 16px;
  font-size: .9rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--ink);
  border: none;
  text-align: left;
}
.city-dropdown a:hover {
  background: var(--teal-soft);
  color: var(--teal-dark);
}
.city-dropdown .current {
  background: var(--teal);
  color: #fff;
  font-weight: 600;
}
