/* ==========================================================================
   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;
  gap: 1rem;
  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 > nav { min-width: 0; }
.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;
  padding: 0.35rem 0.15rem;
  border-bottom: 1px solid transparent;
  transition: opacity var(--dur-fast) var(--ease-out),
              border-color var(--dur-fast) var(--ease-out);
}
.site-header nav a:hover,
.site-header nav a:focus-visible { opacity: 1; }
.site-header nav a[aria-current="page"] {
  opacity: 1;
  color: var(--ink);
  border-bottom-color: var(--accent-text);
}
/* 8-item nav compaction · mirrors list.css */
@media (max-width: 900px) {
  .site-header nav a { margin-left: 0.9rem; font-size: 0.7rem; letter-spacing: 0.1em; }
}
@media (max-width: 760px) {
  .site-header > nav {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-end;
    gap: 0.85rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-inline-end: 0.25rem;
    mask-image: linear-gradient(90deg, transparent 0, #000 14px, #000 calc(100% - 14px), transparent 100%);
  }
  .site-header > nav::-webkit-scrollbar { display: none; }
  .site-header nav a {
    margin-left: 0;
    padding: 0.45rem 0;
    white-space: nowrap;
    flex: 0 0 auto;
  }
}
@media (max-width: 640px) {
  .site-header nav { gap: 0.55rem; }
  .site-header nav a { font-size: 0.68rem; letter-spacing: 0.08em; padding: 0.65rem 0.35rem; min-height: 28px; display: inline-flex; align-items: center; }
}
@media (max-width: 380px) {
  .site-header nav { gap: 0.4rem; }
  .site-header nav a { font-size: 0.66rem; padding: 0.65rem 0.28rem; }
}

/* ---------- day hero ------------------------------------------------------ */
.day-hero {
  position: relative;
  width: 100%;
  min-height: 60vh;
  /* was `height: 60vh + overflow:hidden + align-items: end` which clipped long
     intros on narrow viewports by chopping the top of bottom-anchored copy.
     Now the hero expands to fit content while keeping a 60vh floor. */
  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.12) 0%,
      rgba(15, 26, 20, 0.28) 38%,
      rgba(15, 26, 20, 0.72) 100%
    ),
    radial-gradient(
      ellipse at 20% 85%,
      rgba(15, 26, 20, 0.32),
      transparent 55%
    );
}
.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.72;
  color: var(--paper);
  opacity: 0.94;
  text-wrap: pretty;
}

/* ---------- section chrome · agency breathing room ----------------------- */
section[class^="day-"] {
  padding: clamp(3rem, 7vw, 5rem) clamp(1rem, 4vw, 2.5rem);
  scroll-margin-top: clamp(4.5rem, 9vh, 6rem);
}
/* ≥1024px: open up vertical rhythm — editorial pages over-index on air */
@media (min-width: 1024px) {
  section[class^="day-"] {
    padding-block: clamp(4.5rem, 8vw, 7rem);
  }
}
section[class^="day-"] > * {
  max-width: 1100px;
  margin-inline: auto;
}

/* section-opener · number above title, thin rule to the left · magazine spread */
.section-number {
  display: flex;
  align-items: baseline;
  gap: 0.9rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #324a38;
  margin-bottom: clamp(0.75rem, 1.5vw, 1.1rem);
  font-variant-numeric: tabular-nums;
}
.section-number::before {
  content: "";
  flex: 0 0 clamp(1.4rem, 3vw, 2.25rem);
  height: 1px;
  background: currentColor;
  opacity: 0.55;
  transform: translateY(-0.3em);
}
section[class^="day-"] h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  letter-spacing: -0.022em;
  line-height: 1.05;
  margin-bottom: clamp(1.75rem, 3.5vw, 2.75rem);
  font-feature-settings: 'ss01' 1, 'salt' 1;
}

/* ---------- timeline ------------------------------------------------------ */
.day-timeline { background: var(--paper); }
.timeline {
  position: relative;
  display: grid;
  gap: 0;
  padding-left: clamp(2.75rem, 6vw, 4rem);
  padding-top: clamp(0.5rem, 1.5vw, 1rem);
  border-left: 1px solid var(--rule);  /* 2px → 1px hairline · less mechanical */
}
/* tiny cap on the vertical rule — a print-style terminator */
.timeline::before {
  content: "";
  position: absolute;
  left: -4px;
  top: -1px;
  width: 7px;
  height: 1px;
  background: var(--ink);
  opacity: 0.55;
}
.timeline-event {
  position: relative;
  padding: 1.1rem 0 1.1rem 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);
}
/* P5 · tighten the non-hero event default line-height so 17-event days don't crowd */
.timeline-event .event-note {
  line-height: 1.5;
}
/* P5 · alt / logistical events (transfers, small logistics) — muted, tighter */
.timeline-event.is-alt {
  padding: 0.7rem 0 0.75rem 0.75rem;
  opacity: 0;  /* still reveal */
}
.timeline-event.is-alt.revealed { opacity: 0.68; }
.timeline-event.is-alt h3 {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  font-weight: 600;
  color: var(--ink);
}
.timeline-event.is-alt::before {
  width: 6px; height: 6px;
  background: var(--moss);
  opacity: 0.7;
}
.timeline-event.is-alt .event-note { font-size: 0.9rem; }
.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.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--moss);
  margin-bottom: 0.4rem;
  font-variant-numeric: tabular-nums;
}
.timeline-event h3 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.2;
  letter-spacing: -0.014em;
  margin-bottom: 0.3rem;
  font-feature-settings: 'ss01' 1, 'salt' 1;
}
.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-text);
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
}

/* ---------- HERO EVENT (Day 2 Zipcity highlight) -------------------------- */
.timeline-event.hero-event {
  position: relative;
  margin: 1.75rem -1rem;
  padding: 2.1rem 1.4rem 2.1rem 1.85rem;
  background: linear-gradient(
    180deg,
    rgba(217, 126, 43, 0.12) 0%,
    rgba(217, 126, 43, 0.03) 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: 0;
  border-bottom: 1px solid var(--ink);
}
@media (min-width: 640px) {
  .meal-cards, .place-cards {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 1px;
    background: var(--rule);  /* faux vertical hairlines via grid gap */
  }
  .meal-cards > *, .place-cards > * { background: inherit; }
  .day-meals .meal-cards > * { background: var(--paper); }
  .day-places .place-cards > * { background: var(--surface); }
}
@media (min-width: 960px) {
  .meal-cards, .place-cards { grid-template-columns: repeat(3, 1fr); }
}

.meal-card, .place-card {
  position: relative;
  display: block;
  padding: 1.5rem 1.35rem 1.6rem;
  background: var(--paper);
  border: 0;
  border-top: 1px solid var(--ink);
  transition: background-color 180ms var(--ease-out);
}
.meal-card::before, .place-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  height: 1px;
  width: 0;
  background: var(--accent);
  transition: width 320ms var(--ease-editorial);
}
.day-meals .meal-card { background: var(--paper); }
.day-places .place-card { background: var(--surface); }
.meal-card:hover, .place-card:hover,
.meal-card:focus-visible, .place-card:focus-visible {
  background: var(--paper-3);
  outline: none;
}
.meal-card:hover::before, .place-card:hover::before,
.meal-card:focus-visible::before, .place-card:focus-visible::before {
  width: 100%;
}
.meal-card:hover h3, .place-card:hover h3,
.meal-card:focus-visible h3, .place-card:focus-visible h3 {
  color: var(--accent-text);
}
.card-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--moss);
  opacity: 0.85;
  margin-bottom: 0.55rem;
}
.meal-card h3, .place-card h3 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.2rem;
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin-bottom: 0.5rem;
  transition: color 180ms var(--ease-out);
  font-feature-settings: 'ss01' 1, 'salt' 1;
}
.card-meta {
  font-size: 0.8125rem;
  line-height: 1.6;
  color: var(--ink);
  opacity: 0.75;
}
.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 ----------------------------------------------------- */
/* below-the-fold — skip render work until near viewport */
.day-logistics {
  background: var(--ink);
  color: var(--paper);
  content-visibility: auto;
  contain-intrinsic-size: 1px 600px;
}
@media print, (prefers-reduced-motion: reduce) {
  .day-logistics { content-visibility: visible; contain-intrinsic-size: auto; }
}
.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 switcher at top of each day page ------------------------ */
.day-switch {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  align-items: center;
  padding: 0.6rem clamp(1rem, 4vw, 2rem);
  background: rgba(244, 237, 225, 0.94);
  backdrop-filter: saturate(1.2) blur(6px);
  border-bottom: 1px solid var(--rule);
  position: sticky;
  top: 60px;
  z-index: 15;
}
/* Small eyebrow label — gives the sticky bar semantic presence without adding height */
.day-switch::before {
  content: "DAY";
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.24em;
  color: var(--ink);
  opacity: 0.5;
  margin-right: 0.2rem;
}
.day-switch a {
  flex: 0 1 auto;
  padding: 0.4rem 0.9rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.62;
  border: 1px solid var(--rule);
  border-radius: 999px;
  transition: opacity var(--dur-fast) var(--ease-out),
              background-color var(--dur-fast) var(--ease-out),
              border-color var(--dur-fast) var(--ease-out),
              color var(--dur-fast) var(--ease-out);
}
.day-switch a:hover,
.day-switch a:focus-visible { opacity: 1; }
.day-switch a[aria-current="page"] {
  opacity: 1;
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
  font-weight: 600;
}
.day-switch a small {
  display: inline;
  font-size: 0.82em;
  letter-spacing: 0.08em;
  margin-left: 0.3rem;
  opacity: 0.72;
  text-transform: none;
}
@media (max-width: 520px) {
  .day-switch { padding: 0.5rem 0.75rem; gap: 0.35rem; }
  .day-switch::before { font-size: 0.54rem; letter-spacing: 0.2em; margin-right: 0.15rem; }
  .day-switch a { padding: 0.5rem 0.75rem; font-size: 0.67rem; letter-spacing: 0.12em; min-height: 32px; display: inline-flex; align-items: center; }
  .day-switch a small { display: none; }
}

/* ---------- 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: #8f4b17; font-weight: 600; }
.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 .footer-ai-notice {
  max-width: 1100px;
  margin: 1.5rem auto 0;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(244, 237, 225, 0.18);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  line-height: 1.7;
  color: rgba(244, 237, 225, 0.7);
}
.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 { min-height: 44vh; height: auto; }
  .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;
  max-width: 640px;
  margin-inline: auto;
  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; }

/* ==========================================================================
   DAY FLIGHT PANEL — single-card variant of home's .flight-summary
   Placement: directly below .day-hero, above .day-routestrip. On Day 1 carries
   the outbound (NX673 · RMQ → MFM); on Day 3 the return (JX332 · MFM → RMQ).
   Paper ground, charcoal rule, hairline aircraft glyph over the path. Matches
   the home flight block's editorial grammar so a reader who saw it on the
   index page recognises it instantly on the day pages.
   ========================================================================== */
.day-flight {
  background: var(--paper);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  /* Override section[class^="day-"] padding — this panel is tighter than
     the rest of the day's sections; it's an information strip, not a chapter. */
  padding: clamp(1.75rem, 4vw, 2.5rem) clamp(1rem, 4vw, 2.5rem) !important;
}
@media (min-width: 1024px) {
  .day-flight { padding-block: clamp(2rem, 4vw, 2.75rem) !important; }
}
.day-flight__inner {
  max-width: 1080px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(0.75rem, 2vw, 1.25rem);
}
.day-flight__eyebrow {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.62;
  margin: 0;
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
}
.day-flight__eyebrow::before {
  content: "";
  flex: 0 0 clamp(1.4rem, 3vw, 2.25rem);
  height: 1px;
  background: currentColor;
  opacity: 0.55;
  transform: translateY(-0.25em);
}
/* The card itself · mirrors home .flight-card exactly so the two pages
   share one visual grammar. Kept scoped to .day-flight so home.css is
   not needed on day pages. */
.day-flight .flight-card {
  padding: clamp(1.35rem, 2.6vw, 1.9rem) clamp(1.25rem, 2.4vw, 1.75rem);
  background: var(--surface, #ffffff);
  border: 1px solid var(--rule);
  border-radius: 4px;
  position: relative;
}
.day-flight .flight-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 3px;
  background: var(--ink);
}
.day-flight .flight-card--ret::before { background: var(--accent-text); }
.day-flight .flight-card__eyebrow {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.66;
  margin: 0 0 0.4rem;
}
.day-flight .flight-card__no {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--ink);
  margin: 0 0 1.1rem;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.35rem 0.75rem;
}
.day-flight .flight-card__no b { font-weight: 900; }
.day-flight .flight-card__no small {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.72;
  margin-left: 0;
}
.day-flight .flight-card__leg {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: clamp(0.75rem, 2vw, 1.25rem);
  align-items: center;
  padding: 1rem 0 1.1rem;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.day-flight .flight-leg {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}
.day-flight .flight-leg + .flight-leg,
.day-flight .flight-leg__sep + .flight-leg { text-align: right; align-items: flex-end; }
.day-flight .flight-leg__time {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.6rem, 4vw, 2.35rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  margin: 0;
}
.day-flight .flight-leg__code {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--accent-text);
  margin: 0.1rem 0 0;
}
.day-flight .flight-leg__place {
  font-size: 0.75rem;
  line-height: 1.45;
  color: var(--ink);
  opacity: 0.72;
  margin: 0.05rem 0 0;
  letter-spacing: 0.005em;
}
.day-flight .flight-leg__sep {
  position: relative;
  width: clamp(48px, 10vw, 96px);
  height: 14px;
  color: var(--ink);
  opacity: 0.5;
  font-family: var(--font-mono);
  font-size: 0;
  align-self: center;
}
.day-flight .flight-leg__sep::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 50%;
  border-top: 1px solid currentColor;
  transform: translateY(-0.5px);
}
.day-flight .flight-leg__sep::after {
  content: "\2708"; /* ✈ */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  font-size: 0.85rem;
  line-height: 1;
  background: var(--surface, #ffffff);
  padding: 0 0.35rem;
  color: currentColor;
}
.day-flight .flight-card--ret .flight-leg__sep::after { transform: translate(-50%, -55%) scaleX(-1); }
.day-flight .flight-card__meta {
  margin: 0.9rem 0 0;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.7;
  font-variant-numeric: tabular-nums;
}
/* A second row below the card: terminal + gate-style metadata. Not repeated
   on home; unique to the day page because the reader is about to *use* it. */
.day-flight__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 0.85rem;
  border-top: 1px solid var(--rule);
}
@media (min-width: 640px) {
  .day-flight__grid { grid-template-columns: repeat(3, 1fr); }
}
.day-flight__fact {
  padding: 0.85rem 0 0;
  display: grid;
  gap: 0.2rem;
}
@media (min-width: 640px) {
  .day-flight__fact + .day-flight__fact {
    padding-left: clamp(0.9rem, 2vw, 1.5rem);
    border-left: 1px solid var(--rule);
    padding-top: 0.85rem;
  }
}
@media (max-width: 639px) {
  .day-flight__fact + .day-flight__fact {
    padding-top: 0.65rem;
    margin-top: 0.65rem;
    border-top: 1px solid var(--rule);
  }
}
.day-flight__fact dt {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.6;
  margin: 0;
}
.day-flight__fact dd {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.day-flight__fact dd b { font-weight: 700; }
/* Stack legs vertically on narrow screens — covers 412 / 414 / 430 / 459 phones too */
@media (max-width: 480px) {
  .day-flight .flight-card__leg {
    grid-template-columns: 1fr;
    gap: 0.55rem;
    text-align: left;
    padding: 0.85rem 0 0.95rem;
  }
  .day-flight .flight-leg + .flight-leg,
  .day-flight .flight-leg__sep + .flight-leg { text-align: left; align-items: flex-start; }
  .day-flight .flight-leg__sep {
    width: 14px;
    height: clamp(22px, 5vw, 30px);
    justify-self: start;
    margin-left: 0.15rem;
  }
  .day-flight .flight-leg__sep::before {
    left: 50%;
    right: auto;
    top: 0;
    bottom: 0;
    width: 0;
    height: 100%;
    border-top: 0;
    border-left: 1px solid currentColor;
    transform: translateX(-0.5px);
  }
  .day-flight .flight-leg__sep::after {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(90deg);
    padding: 0.3rem 0;
  }
  .day-flight .flight-card--ret .flight-leg__sep::after {
    transform: translate(-50%, -50%) rotate(90deg) scaleX(-1);
  }
}

/* ==========================================================================
   DAY ROUTE STRIP — labeled sequence of the day's stops
   Replaces abstract SVG map with an editorial index: reader can see at a
   glance what the stops are and how they connect, in order. Kinfolk × Monocle
   print-magazine treatment — hairlines, mono eyebrows, restrained colour,
   no pretend geography. Wraps gracefully on 360px columns.
   ========================================================================== */
.day-routestrip {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto clamp(1.25rem, 3vw, 2rem);
  padding: 0 clamp(1rem, 4vw, 2.5rem);
}
.day-routestrip__frame {
  position: relative;
  padding: clamp(1rem, 2.4vw, 1.5rem) clamp(1rem, 2.4vw, 1.5rem) clamp(1.1rem, 2.8vw, 1.75rem);
  background: var(--paper-3, #fcf9f0);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--rule);
}
.day-routestrip__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem 1rem;
  margin: 0 0 clamp(0.85rem, 2vw, 1.2rem);
  padding-bottom: 0.7rem;
  border-bottom: 1px dashed var(--rule);
}
.day-routestrip__eyebrow {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent-text, #8f4b17);
}
.day-routestrip__meta {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.78;
}

/* Area band — shows geographic regions in order for this day */
.day-routestrip__band {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
  margin: 0 0 clamp(0.9rem, 2vw, 1.25rem);
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.7;
}
.day-routestrip__band-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.day-routestrip__band-item::before {
  content: "";
  width: 6px; height: 6px;
  border: 1px solid currentColor;
  border-radius: 50%;
}
.day-routestrip__band-arrow {
  opacity: 0.45;
  font-family: var(--font-mono);
}

/* The list of stops */
.day-routestrip__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 0.5rem 0;
  counter-reset: stop;
}
.day-routestrip__stop {
  position: relative;
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: start;
  gap: 0.7rem;
  padding: 0.7rem 0.75rem 0.75rem 0;
  border-top: 1px solid var(--rule);
  min-height: 56px;
}
.day-routestrip__stop:first-child { border-top-color: transparent; }
.day-routestrip__num { z-index: 2; }

/* Number badge — hairline circle, mono digits */
.day-routestrip__num {
  grid-column: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-top: 0.15rem;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  color: var(--ink);
  background: var(--paper);
  letter-spacing: 0;
}

/* Text block */
.day-routestrip__body {
  grid-column: 2;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}
.day-routestrip__name {
  display: block;
  font-family: var(--font-display);
  font-size: 0.98rem;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--ink);
  word-break: break-word;
}
.day-routestrip__tag {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  line-height: 1.3;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-text, #8f4b17);
  opacity: 0.9;
}
.day-routestrip__tag-sep {
  opacity: 0.4;
}
.day-routestrip__tag-area {
  color: var(--ink);
  opacity: 0.78;
  font-weight: 500;
}

/* Type marker — tiny glyph preceding the tag */
.day-routestrip__kind {
  display: inline-flex;
  width: 10px;
  justify-content: center;
  font-size: 0.7rem;
  line-height: 1;
  color: var(--ink);
}
.day-routestrip__stop--anchor .day-routestrip__num {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.day-routestrip__stop--anchor .day-routestrip__kind { color: var(--ink); }
.day-routestrip__stop--restaurant .day-routestrip__kind { color: var(--moss); }
.day-routestrip__stop--transit .day-routestrip__kind { color: var(--accent-text, #8f4b17); }
.day-routestrip__stop--attraction .day-routestrip__kind { color: var(--ink); }

/* Connector line between stops — continuous hairline rail through the number
   column on the single-column layout. Drops on multi-column grids where the
   rows aren't linear anymore. */
.day-routestrip__stop::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 0;
  bottom: 0;
  width: 0;
  border-left: 1px dashed var(--rule);
  z-index: 1;
  display: none;
}
@media (max-width: 700px) {
  .day-routestrip__list { grid-template-columns: 1fr; gap: 0; }
  .day-routestrip__stop { border-top-color: transparent; }
  .day-routestrip__stop::before { display: block; }
  .day-routestrip__stop:first-child::before { top: 0.85rem; }
  .day-routestrip__stop:last-child::before { bottom: calc(100% - 0.85rem); }
}

/* Legend below the list */
.day-routestrip__legend {
  margin: clamp(0.9rem, 2vw, 1.2rem) 0 0;
  padding: 0.75rem 0 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.2rem;
  border-top: 1px solid var(--rule);
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.72;
}
.day-routestrip__legend li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}
.day-routestrip__legend-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  font-size: 0.75rem;
  line-height: 1;
}
.day-routestrip__legend-mark--anchor { color: var(--ink); }
.day-routestrip__legend-mark--attraction { color: var(--ink); }
.day-routestrip__legend-mark--restaurant { color: var(--moss); }
.day-routestrip__legend-mark--transit { color: var(--accent-text, #8f4b17); }

/* Narrower refinements — 360px iPhone column */
@media (max-width: 420px) {
  .day-routestrip { padding: 0 1rem; }
  .day-routestrip__frame { padding: 0.85rem 0.85rem 1rem; }
  .day-routestrip__eyebrow { font-size: 0.62rem; letter-spacing: 0.2em; }
  .day-routestrip__meta { font-size: 0.56rem; letter-spacing: 0.14em; }
  .day-routestrip__band { font-size: 0.55rem; letter-spacing: 0.14em; }
  .day-routestrip__name { font-size: 0.92rem; }
  .day-routestrip__num { width: 26px; height: 26px; font-size: 0.68rem; }
  .day-routestrip__stop { grid-template-columns: 30px 1fr; gap: 0.5rem; }
}
