/* ==========================================================================
   day.css — shared styles for day-1 / day-2 / day-3 pages
   Warm editorial · asymmetric · motion tokens from base.css
   ========================================================================== */

/* ---------- site header (mirror of home) ---------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: clamp(1rem, 4vw, 2rem);
  background: rgba(244, 237, 225, 0.92);
  border-bottom: 1px solid var(--rule);
  backdrop-filter: saturate(1.2) blur(6px);
}
.site-header .brand {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--ink);
}
.site-header nav a {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.7;
  margin-left: 1rem;
}
.site-header nav a:hover { opacity: 1; }

/* ---------- day hero ------------------------------------------------------ */
.day-hero {
  position: relative;
  width: 100%;
  height: 60vh;
  min-height: 420px;
  overflow: hidden;
  display: grid;
  align-items: end;
  color: var(--paper);
  isolation: isolate;
}
.day-hero-img {
  position: absolute;
  inset: 0;
  z-index: -2;
  display: block;
}
.day-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.0);
  animation: dayHeroKenBurns 25s var(--ease-editorial) forwards;
  will-change: transform;
}
@keyframes dayHeroKenBurns {
  0%   { transform: scale(1.0) translate3d(0, 0, 0); }
  100% { transform: scale(1.04) translate3d(-1%, -0.5%, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .day-hero-img img { animation: none; transform: none; }
}
.day-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    180deg,
    rgba(15, 26, 20, 0.20) 0%,
    rgba(15, 26, 20, 0.35) 40%,
    rgba(15, 26, 20, 0.68) 100%
  );
}
.day-hero-copy {
  max-width: 1200px;
  width: 100%;
  margin-inline: auto;
  padding: clamp(2rem, 6vw, 4rem) clamp(1rem, 4vw, 2.5rem);
  display: grid;
  gap: clamp(0.5rem, 1.5vw, 1rem);
}
.day-hero-copy .eyebrow {
  color: var(--paper);
  opacity: 0.82;
}
.day-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3rem, 10vw, 8.5rem);
  line-height: 0.92;
  letter-spacing: -0.035em;
  color: var(--paper);
  max-width: 18ch;
}
.day-title .ital {
  font-weight: 300;
  font-style: italic;
  opacity: 0.78;
}
.day-lede {
  max-width: 54ch;
  font-size: clamp(1rem, 1.4vw, 1.125rem);
  line-height: 1.7;
  color: var(--paper);
  opacity: 0.92;
}

/* ---------- section chrome ----------------------------------------------- */
section[class^="day-"] {
  padding: clamp(3rem, 7vw, 5rem) clamp(1rem, 4vw, 2.5rem);
}
section[class^="day-"] > * {
  max-width: 1100px;
  margin-inline: auto;
}
.section-number {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--moss);
  opacity: 0.75;
  margin-bottom: 0.5rem;
}
section[class^="day-"] h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  letter-spacing: -0.02em;
  margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
}

/* ---------- timeline ------------------------------------------------------ */
.day-timeline { background: var(--paper); }
.timeline {
  position: relative;
  display: grid;
  gap: 0;
  padding-left: clamp(2.75rem, 6vw, 4rem);
  border-left: 2px solid var(--rule);
}
.timeline-event {
  position: relative;
  padding: 1.25rem 0 1.25rem 0.75rem;
  border-bottom: 1px solid var(--rule);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity var(--dur-mid) var(--ease-out),
              transform var(--dur-mid) var(--ease-out);
}
.timeline-event.revealed {
  opacity: 1;
  transform: translateY(0);
}
.timeline-event::before {
  content: "";
  position: absolute;
  left: calc(-1 * (clamp(2.75rem, 6vw, 4rem) + 0.75rem) - 1px);
  top: 1.75rem;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--ink);
  transform: translateX(50%);
}
.timeline-event > time {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--moss);
  margin-bottom: 0.35rem;
}
.timeline-event h3 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  letter-spacing: -0.01em;
  margin-bottom: 0.25rem;
}
.event-place {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  opacity: 0.78;
  margin-bottom: 0.25rem;
}
.event-note {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: 1rem;
  color: var(--ink);
  opacity: 0.72;
  line-height: 1.6;
}
.event-link {
  display: inline-block;
  margin-top: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
}

/* ---------- HERO EVENT (Day 2 Zipcity highlight) -------------------------- */
.timeline-event.hero-event {
  position: relative;
  margin: 1.5rem -1rem;
  padding: 2rem 1.25rem 2rem 1.75rem;
  background: linear-gradient(
    180deg,
    rgba(217, 126, 43, 0.10) 0%,
    rgba(217, 126, 43, 0.04) 100%
  );
  border-top: 3px solid var(--accent);
  border-bottom: 3px solid var(--accent);
  border-left: 4px solid var(--accent);
  border-right: 0;
}
.timeline-event.hero-event::before {
  background: var(--accent);
  width: 13px;
  height: 13px;
  top: 2.35rem;
  box-shadow: 0 0 0 4px rgba(217, 126, 43, 0.22);
}
.timeline-event.hero-event > time {
  color: var(--accent);
  font-size: 0.95rem;
  font-weight: 700;
}
.timeline-event.hero-event h3 {
  font-size: clamp(1.6rem, 3.2vw, 2.25rem);
  line-height: 1.05;
  color: var(--ink);
}
.timeline-event.hero-event h3::before {
  content: "◆ ";
  color: var(--accent);
}
.timeline-event.hero-event .event-note {
  font-style: normal;
  opacity: 0.88;
}
.affiliate-cta {
  display: inline-block;
  margin-top: 0.75rem;
  padding: 0.6rem 1rem;
  background: var(--accent);
  color: var(--paper);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  border-radius: 2px;
  transition: transform var(--dur-fast) var(--ease-out),
              background var(--dur-fast) var(--ease-out);
}
.affiliate-cta:hover {
  transform: translateY(-1px);
  background: #c86f1e;
}

/* ---------- meal / place cross-ref cards --------------------------------- */
.day-meals { background: var(--surface); }
.day-places { background: var(--paper); }

.meal-cards, .place-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) {
  .meal-cards, .place-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .meal-cards, .place-cards { grid-template-columns: repeat(3, 1fr); }
}

.meal-card, .place-card {
  display: block;
  padding: 1.25rem 1.25rem 1.5rem;
  background: var(--paper);
  border: 1px solid var(--rule);
  transition: border-color var(--dur-fast) var(--ease-out),
              transform var(--dur-fast) var(--ease-out);
}
.day-meals .meal-card { background: var(--paper); }
.day-places .place-card { background: var(--surface); }
.meal-card:hover, .place-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}
.card-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--moss);
  opacity: 0.7;
  margin-bottom: 0.35rem;
}
.meal-card h3, .place-card h3 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.1rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 0.35rem;
}
.card-meta {
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--ink);
  opacity: 0.72;
}
.card-closed {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 2px 8px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: var(--warn);
  border: 1px solid currentColor;
  border-radius: 2px;
}

/* ---------- logistics ----------------------------------------------------- */
.day-logistics { background: var(--ink); color: var(--paper); }
.day-logistics .section-number { color: var(--accent); opacity: 1; }
.day-logistics h2 { color: var(--paper); }
.day-logistics ul {
  display: grid;
  gap: 0.9rem;
  max-width: 720px;
}
.day-logistics li {
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.65;
  color: var(--paper);
  opacity: 0.92;
}
.day-logistics li::before {
  content: "◆";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.85em;
}
.day-logistics strong {
  color: var(--paper);
  font-weight: 600;
}
.day-logistics a {
  color: var(--accent);
  border-bottom: 1px solid currentColor;
}

/* ---------- day nav (next / prev) ---------------------------------------- */
.day-nav {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  padding: 0;
  border-top: 1px solid var(--rule);
  background: var(--paper);
}
.day-nav a {
  padding: 1.5rem 1rem;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  border-right: 1px solid var(--rule);
  transition: background var(--dur-fast) var(--ease-out),
              color var(--dur-fast) var(--ease-out);
}
.day-nav a:last-child { border-right: 0; }
.day-nav a:hover { background: var(--ink); color: var(--paper); }
.day-nav .center { color: var(--accent); }
.day-nav .disabled {
  opacity: 0.35;
  pointer-events: none;
}

/* ---------- footer -------------------------------------------------------- */
.site-footer {
  padding: clamp(2rem, 5vw, 3rem) clamp(1rem, 4vw, 2.5rem);
  background: var(--ink);
  color: var(--paper);
}
.site-footer .footer-grid {
  max-width: 1100px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.site-footer p {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  line-height: 1.7;
  color: var(--paper);
  opacity: 0.78;
}
.site-footer .footer-affiliate { opacity: 1; font-weight: 500; }
.site-footer a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}
@media (min-width: 640px) {
  .site-footer .footer-grid { grid-template-columns: 2fr 1fr 1fr; gap: 2rem; }
}

/* ---------- event privilege inline badge -------------------------------- */
.event-privilege {
  display: inline-block;
  margin-top: 0.15rem;
  padding: 0.1rem 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--ink);
  background: linear-gradient(transparent 55%, rgba(217, 126, 43, 0.35) 55%);
  white-space: nowrap;
}

/* ==========================================================================
   ZIPCITY SHOWCASE · full-bleed 100vw editorial block
   Placed after timeline · Day 2 only
   ========================================================================== */
.zipcity-showcase {
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: clamp(3rem, 9vw, 7rem) clamp(1.25rem, 5vw, 3rem);
  overflow: hidden;
  color: var(--paper);
  isolation: isolate;
  background: var(--ink);
  scroll-margin-top: 80px;
}
.zipcity-showcase .zip-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  display: block;
}
.zipcity-showcase .zip-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 40%;
  opacity: 0.42;
  filter: saturate(0.85) contrast(1.05);
  transform: scale(1.02);
  animation: zipKenBurns 40s var(--ease-editorial) alternate infinite;
}
.zipcity-showcase::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse at 25% 20%, rgba(217, 126, 43, 0.22), transparent 60%),
    radial-gradient(ellipse at 80% 90%, rgba(62, 92, 68, 0.35), transparent 65%),
    linear-gradient(180deg, rgba(15,26,20,0.35) 0%, rgba(15,26,20,0.78) 100%);
}
@keyframes zipKenBurns {
  0%   { transform: scale(1.02) translate3d(0, 0, 0); }
  100% { transform: scale(1.08) translate3d(-1.2%, -0.8%, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .zipcity-showcase .zip-bg img { animation: none; }
}

.zip-frame {
  max-width: 1100px;
  margin-inline: auto;
  display: grid;
  gap: clamp(1rem, 2.5vw, 1.75rem);
}
.zip-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.95;
}
.zip-display {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(4rem, 18vw, 14rem);
  line-height: 0.84;
  letter-spacing: -0.05em;
  color: var(--paper);
  margin: 0;
  text-wrap: balance;
}
.zip-display .zip-word { display: inline-block; }
.zip-display .zip-word.ital {
  font-weight: 300;
  font-style: italic;
  letter-spacing: -0.03em;
  color: var(--accent);
  margin-left: -0.04em;
}
.zip-lede {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.0625rem, 2vw, 1.4rem);
  line-height: 1.55;
  color: rgba(244, 237, 225, 0.92);
  max-width: 52ch;
}
.zip-lede em {
  font-style: italic;
  color: var(--paper);
}

.zip-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(244, 237, 225, 0.18);
  border: 1px solid rgba(244, 237, 225, 0.18);
  margin-top: 0.5rem;
  max-width: 720px;
}
@media (min-width: 640px) {
  .zip-specs { grid-template-columns: repeat(4, 1fr); }
}
.zip-specs > div {
  padding: 1rem 1.1rem;
  background: rgba(15, 26, 20, 0.6);
  display: grid;
  gap: 0.15rem;
}
.zip-specs dt {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244, 237, 225, 0.7);
}
.zip-specs dd {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.5rem, 3.2vw, 2.25rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--paper);
  font-variant-numeric: tabular-nums;
}
.zip-specs dd small {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 0.55em;
  letter-spacing: 0.04em;
  color: var(--accent);
  margin-left: 0.15em;
}

/* privilege stamp callout */
.zip-privilege {
  position: relative;
  margin-top: 0.5rem;
  padding: 1.1rem 1.25rem 1.1rem 1.25rem;
  background: rgba(244, 237, 225, 0.06);
  border: 1px dashed rgba(217, 126, 43, 0.6);
  max-width: 640px;
}
.privilege-stamp {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--accent);
  margin: 0 0 0.45rem;
}
.privilege-stamp::before,
.privilege-stamp::after {
  content: "✦";
  color: var(--accent);
  opacity: 0.8;
  margin: 0 0.5em;
  font-size: 0.85em;
}
.privilege-body {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.65;
  color: rgba(244, 237, 225, 0.95);
  margin: 0;
}
.privilege-body b {
  color: var(--paper);
  font-weight: 700;
  background: linear-gradient(transparent 62%, rgba(217, 126, 43, 0.45) 62%);
  padding: 0 0.1em;
}

.zip-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.75rem;
}
.zip-cta {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0.75rem 1.2rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: transform var(--dur-fast) var(--ease-out),
              background var(--dur-fast) var(--ease-out),
              color var(--dur-fast) var(--ease-out);
}
.zip-cta-primary {
  background: var(--accent);
  color: #1a1108;
}
.zip-cta-primary:hover { background: #e68f3f; transform: translateY(-1px); }
.zip-cta-ghost {
  background: transparent;
  color: var(--paper);
  border: 1px solid rgba(244, 237, 225, 0.45);
}
.zip-cta-ghost:hover {
  background: rgba(244, 237, 225, 0.08);
  border-color: var(--paper);
}

/* ---------- mobile-first RWD refinements -------------------------------- */
@media (max-width: 520px) {
  .day-hero { height: 44vh; min-height: 340px; }
  .day-title { font-size: clamp(2.5rem, 14vw, 3.6rem); }
  .day-lede { font-size: 1rem; line-height: 1.65; }

  .timeline { padding-left: 2.25rem; }
  .timeline-event { padding: 1.1rem 0 1.1rem 0.25rem; }
  .timeline-event::before {
    left: calc(-2.25rem - 0.25rem - 1px);
  }
  .timeline-event h3 { font-size: 1.125rem; }
  .event-place { font-size: 0.9375rem; }
  .event-note { font-size: 0.9375rem; line-height: 1.7; }

  .timeline-event.hero-event { margin-left: -0.25rem; margin-right: -0.25rem; padding: 1.4rem 1rem 1.5rem 1.25rem; }
  .timeline-event.hero-event h3 { font-size: 1.35rem; }

  .zipcity-showcase { padding: 3rem 1.25rem 3.25rem; }
  .zip-display { font-size: clamp(3.5rem, 22vw, 5.5rem); line-height: 0.88; }
  .zip-lede { font-size: 1.0625rem; line-height: 1.7; }
  .zip-specs > div { padding: 0.85rem 0.9rem; }
  .zip-ctas { flex-direction: column; align-items: stretch; }
  .zip-cta { justify-content: center; text-align: center; }

  .day-nav a { font-size: 0.68rem; padding: 1.25rem 0.5rem; }
}

/* ---------- Day 1 · departure arc & Day 3 · outbound bookend ----------- */
.day-hero--departure .day-hero-copy {
  gap: clamp(0.6rem, 1.5vw, 1rem);
}

/* Day 1 — arc */
.departure-arc {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1.5rem);
  margin-top: clamp(0.9rem, 2.5vw, 1.75rem);
  padding-top: clamp(0.9rem, 2.5vw, 1.5rem);
  border-top: 1px solid rgba(244, 237, 225, 0.22);
  max-width: 72ch;
  color: var(--paper);
}
.arc-marker {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.35;
  color: rgba(244, 237, 225, 0.88);
}
.arc-marker--end { text-align: right; }
.arc-time {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 1.45rem;
  color: var(--paper);
  letter-spacing: -0.01em;
  margin: 0 0 0.15rem;
  text-transform: none;
}
.arc-place {
  font-weight: 600;
  margin: 0 0 0.1rem;
  color: var(--paper);
  opacity: 0.94;
}
.arc-status {
  margin: 0;
  font-size: 0.68rem;
  opacity: 0.7;
}
.arc-line {
  width: 100%;
  height: 56px;
  color: var(--accent);
  display: block;
  overflow: visible;
}
@media (max-width: 520px) {
  .departure-arc {
    grid-template-columns: 1fr auto 1fr;
    gap: 0.5rem;
  }
  .arc-line { height: 40px; }
  .arc-time { font-size: 1.2rem; }
  .arc-marker { font-size: 0.66rem; letter-spacing: 0.08em; }
}

/* Day 3 — outbound bookend */
.outbound-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin: 0 0 0.15rem;
  padding: 0.3rem 0.55rem;
  display: inline-block;
  border: 1px solid rgba(217, 126, 43, 0.55);
  border-radius: 2px;
  background: rgba(217, 126, 43, 0.08);
  align-self: start;
  justify-self: start;
  width: auto;
}
.outbound-bookend {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
  gap: clamp(0.85rem, 2.5vw, 1.75rem);
  margin-top: clamp(0.9rem, 2.5vw, 1.75rem);
  padding-top: clamp(0.9rem, 2.5vw, 1.5rem);
  border-top: 1px solid rgba(244, 237, 225, 0.22);
  max-width: 72ch;
  color: var(--paper);
}
.bookend-leg {
  display: grid;
  gap: 0.1rem;
  line-height: 1.3;
  padding: 0.15rem 0;
}
.bookend-leg--end { text-align: right; }
.bookend-label {
  font-family: var(--font-mono);
  font-size: 0.64rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(244, 237, 225, 0.62);
  margin: 0;
}
.bookend-time {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 1.5rem;
  color: var(--paper);
  margin: 0;
  letter-spacing: -0.01em;
}
.bookend-flight {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  color: var(--accent);
  font-weight: 600;
  margin: 0;
}
.bookend-route {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: rgba(244, 237, 225, 0.78);
  margin: 0;
}
.bookend-axis {
  display: grid;
  gap: 0.2rem;
  justify-items: center;
  align-content: center;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(244, 237, 225, 0.62);
  min-width: 60px;
}
.bookend-axis .bookend-arrow-out,
.bookend-axis .bookend-arrow-in {
  font-size: 1.1rem;
  color: var(--accent);
  line-height: 1;
}
.bookend-axis .bookend-trip {
  font-size: 0.64rem;
  font-weight: 600;
  color: rgba(244, 237, 225, 0.78);
}
@media (max-width: 520px) {
  .outbound-eyebrow { font-size: 0.64rem; letter-spacing: 0.18em; }
  .bookend-time { font-size: 1.25rem; }
  .bookend-flight { font-size: 0.76rem; }
  .bookend-route { font-size: 0.64rem; letter-spacing: 0.08em; }
  .outbound-bookend { gap: 0.6rem; }
  .bookend-axis { min-width: 36px; }
}

/* ---------- reduced motion ------------------------------------------------ */
@media (prefers-reduced-motion: reduce) {
  .timeline-event {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .day-hero-img img { transform: none; animation: none; }
  .zipcity-showcase .zip-bg img { animation: none; }
}

/* ---------- open-top bus showcase (moss override of zipcity) ------------ */
.open-top-bus-showcase { background: linear-gradient(180deg, #1f2a1f 0%, #0f1a14 100%); }
.open-top-bus-showcase .zip-bg {
  background: radial-gradient(ellipse at 30% 20%, rgba(118, 150, 95, 0.28), transparent 55%),
              radial-gradient(ellipse at 75% 85%, rgba(62, 92, 68, 0.45), transparent 65%);
}
.open-top-bus-showcase::after {
  background:
    radial-gradient(ellipse at 25% 20%, rgba(118, 150, 95, 0.22), transparent 60%),
    radial-gradient(ellipse at 80% 90%, rgba(62, 92, 68, 0.4), transparent 65%),
    linear-gradient(180deg, rgba(15,26,20,0.45) 0%, rgba(15,26,20,0.82) 100%);
}
.open-top-bus-showcase .zip-display .zip-word.ital {
  color: #a8c09a; /* moss green accent */
}
.open-top-bus-showcase .zip-eyebrow { color: #a8c09a; }
.open-top-bus-showcase .zip-specs dd small { color: #a8c09a; }
.open-top-bus-showcase .zip-privilege { border-color: rgba(168, 192, 154, 0.55); }
.open-top-bus-showcase .privilege-stamp { color: #a8c09a; }
.open-top-bus-showcase .privilege-stamp::before,
.open-top-bus-showcase .privilege-stamp::after { color: #a8c09a; }
.open-top-bus-showcase .privilege-body b {
  background: linear-gradient(transparent 62%, rgba(168, 192, 154, 0.4) 62%);
}
.open-top-bus-showcase .zip-cta-primary { background: #a8c09a; color: #0f1a14; }
.open-top-bus-showcase .zip-cta-primary:hover { background: #bdd1b0; }
