/* ============== COFFEE IN MOTION — landing styles ============== */

:root {
  --bus-red: #C82015;
  --bus-red-deep: #8B1409;
  --cream: #F4E8C8;
  --cream-soft: #FBF3DE;
  --butter: #F2C84B;
  --butter-soft: #F8DC85;
  --moss: #3F6B47;
  --moss-soft: #6E9C6F;
  --leaf: #A8C896;
  --ink: #1B140C;
  --ink-soft: #4B3A28;
  --paper: #FDF8EA;
  --shadow: rgba(27, 20, 12, 0.12);
  --road: #2A241C;
  --road-line: #F2C84B;

  --sky-top: #BCDFEA;
  --sky-bot: #F5E3B5;

  --bus-bounce: 0px;
  --wheel-rot: 0deg;
  --bus-shake: 0deg;
}

[data-time="dawn"] {
  --sky-top: #F4B989;
  --sky-bot: #FBE0A9;
}
[data-time="midday"] {
  --sky-top: #A9D7E5;
  --sky-bot: #F5EBC8;
}
[data-time="dusk"] {
  --sky-top: #6E4F8B;
  --sky-bot: #E58A5A;
}
[data-time="night"] {
  --sky-top: #14213A;
  --sky-bot: #2D3E6B;
  --cream: #2A2520;
  --cream-soft: #1E1A16;
  --paper: #221E18;
  --ink: #F4E8C8;
  --ink-soft: #C9B98F;
  --shadow: rgba(0,0,0,0.4);
}

[data-palette="classic"] {
  --bus-red: #C82015;
  --butter: #F2C84B;
  --moss: #3F6B47;
}
[data-palette="butter"] {
  --bus-red: #B83A2A;
  --butter: #F5D26F;
  --moss: #5A8C5C;
  --cream: #F8EBC2;
  --cream-soft: #FCF4DC;
}
[data-palette="ivy"] {
  --bus-red: #A8231A;
  --butter: #E8C158;
  --moss: #2E5A36;
  --leaf: #88B57A;
}
[data-palette="pillarbox"] {
  --bus-red: #D63426;
  --butter: #FFD96B;
  --moss: #2A4D31;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body {
  background:
    linear-gradient(to bottom, var(--sky-top) 0%, var(--sky-bot) 45%, var(--cream) 100%);
  background-attachment: fixed;
  transition: background 0.6s ease;
  padding-bottom: clamp(200px, 36vh, 320px);
}

h1, h2, h3, h4 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 0.95;
  color: var(--ink);
}

.transit, .display-transit {
  font-family: "Antonio", sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.mono {
  font-family: "JetBrains Mono", monospace;
  font-variant-numeric: tabular-nums;
}

/* ============== top bar ============== */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 32px;
  background: linear-gradient(to bottom, var(--paper) 50%, transparent);
  pointer-events: none;
}
.topbar > * { pointer-events: auto; }

.topbar .brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Antonio", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 18px;
  color: var(--bus-red);
  white-space: nowrap;
  text-decoration: none;
}
.topbar .brand-mark {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--bus-red);
  color: var(--cream);
  display: grid; place-items: center;
  font-size: 14px;
  box-shadow: 0 4px 0 var(--bus-red-deep);
}

.topbar nav {
  display: flex;
  gap: 2px;
  font-family: "Antonio", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 4px;
  box-shadow: 0 3px 0 var(--ink);
}
.topbar nav a {
  color: var(--ink);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 999px;
  transition: background 0.15s;
}
.topbar nav a:hover { background: var(--butter); }

.topbar .visit-btn {
  background: var(--ink);
  color: var(--cream);
  padding: 10px 18px;
  border-radius: 999px;
  font-family: "Antonio", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
  text-decoration: none;
  border: 2px solid var(--ink);
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 3px 0 var(--bus-red);
}
.topbar .visit-btn:hover { background: var(--bus-red); }

/* ============== sticky bus ============== */
.bus-stage {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  height: clamp(200px, 36vh, 320px);
  pointer-events: none;
  z-index: 30;
  overflow: hidden;
}
.bus-stage::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    transparent 0%,
    rgba(244, 232, 200, 0.65) 14%,
    var(--cream) 32%,
    var(--cream) 100%);
  pointer-events: none;
}

/* clouds */
.cloud-layer {
  position: absolute;
  top: 10px;
  height: 40%;
  left: -20%; right: -20%;
  pointer-events: none;
  z-index: 1;
}
.cloud {
  position: absolute;
  opacity: 0.9;
  will-change: transform;
}

/* skyline silhouette */
.skyline-wrap {
  position: absolute;
  left: -20%; right: -20%;
  bottom: 30px;
  height: clamp(120px, 18vh, 180px);
  will-change: transform;
  pointer-events: none;
  z-index: 1;
  width: 140%;
}

/* Continuous rolling hills behind the skyline — fills the full stage width
   so the green ground extends from far left all the way to the last stop. */
.hills {
  position: absolute;
  left: 0; right: 0;
  bottom: 30px;
  height: 70px;
  pointer-events: none;
  z-index: 0;
}
.hills svg { width: 100%; height: 100%; display: block; }
.skyline {
  width: 100%; height: 100%;
  display: block;
}

/* the bus */
.bus-wrap {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%) translateY(var(--bus-bounce, 0px)) rotate(var(--bus-shake, 0deg));
  width: clamp(220px, 46vw, 560px);
  filter: drop-shadow(0 10px 14px rgba(0,0,0,0.2));
  will-change: transform;
  transition: transform 0.04s linear;
  z-index: 3;
}
.bus-wrap svg { width: 100%; height: auto; display: block; }

.wheel {
  transform-origin: 0 0;
  transform: rotate(var(--wheel-rot, 0deg));
  transition: none;
}

/* steam puffs — anchored 4px to the LEFT of the bus's rear (bus faces right) */
.steam {
  position: absolute;
  bottom: 40px;
  right: calc(50% + clamp(110px, 23vw, 280px) + 4px);
  width: 50px; height: 60px;
  pointer-events: none;
  z-index: 2;
}
.steam .puff {
  position: absolute;
  bottom: 0; left: 50%;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: rgba(255,255,255,0.75);
  animation: puff 3s ease-out infinite;
}
/* mix of grey + white so the smoke reads like exhaust, not bubble bath */
.steam .puff:nth-child(2) { animation-delay: 1s; left: 25%; background: rgba(180,180,180,0.7); }
.steam .puff:nth-child(3) { animation-delay: 2s; left: 75%; background: rgba(150,150,150,0.65); width: 12px; height: 12px; }

/* drift LEFT as they rise — bus is driving right, smoke trails behind */
@keyframes puff {
  0% { transform: translate(-50%, 0) scale(0.4); opacity: 0; }
  20% { opacity: 0.75; }
  100% { transform: translate(calc(-50% - 40px), -100px) scale(1.6); opacity: 0; }
}

/* road */
.road {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 36px;
  background: var(--road);
  border-top: 3px solid var(--ink);
  overflow: hidden;
  z-index: 2;
}
.road::before {
  content: '';
  position: absolute;
  top: 50%; left: -100px; right: -100px;
  height: 5px;
  background: repeating-linear-gradient(to right,
    var(--road-line) 0 40px,
    transparent 40px 80px);
  transform: translateY(-50%) translateX(var(--road-offset, 0px));
  will-change: transform;
}

/* LAST STOP sign — slides in from the right near the bottom of the page.
   z-index sits BELOW .bus-wrap (z:3) so the bus reads as in front of the sign. */
.last-stop {
  position: absolute;
  right: 4%;
  bottom: 36px;
  z-index: 2;
  transform: translateX(var(--sign-tx, 110%));
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  will-change: transform;
}
.last-stop-sign {
  background: var(--bus-red);
  color: var(--cream);
  border: 3px solid var(--ink);
  border-radius: 10px;
  padding: 10px 18px 12px;
  box-shadow: 4px 4px 0 var(--ink);
  text-align: center;
  position: relative;
  min-width: 160px;
}
.last-stop-sign .bullet {
  font-size: 13px;
  color: var(--butter);
  letter-spacing: 0.2em;
  margin-bottom: 2px;
}
.last-stop-sign .big {
  font-family: "Antonio", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 22px;
  line-height: 1;
}
.last-stop-sign .sub {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  color: var(--butter);
  letter-spacing: 0.05em;
  margin-top: 4px;
}
.last-stop-pole {
  width: 5px;
  height: 110px;
  background: var(--ink);
  margin-top: -2px;
}

@media (max-width: 640px) {
  .last-stop-sign { min-width: 0; padding: 7px 12px 8px; }
  .last-stop-sign .big { font-size: 16px; }
  .last-stop-sign .sub { font-size: 9px; }
  .last-stop-sign .bullet { font-size: 10px; }
  .last-stop-pole { height: 70px; width: 4px; }
}

/* ============== content sections ============== */
.page {
  position: relative;
  z-index: 10;
  padding-top: 100px;
}

section {
  position: relative;
  padding: 80px 32px clamp(160px, 24vh, 220px);
  min-height: 70vh;
  z-index: 10;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
}

/* HERO */
.hero {
  min-height: auto;
  padding-top: clamp(90px, 14vh, 140px);
  padding-bottom: 48px;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.hero .destination-blind {
  display: inline-block;
  background: var(--ink);
  color: var(--butter);
  padding: 10px 22px 8px;
  font-family: "Antonio", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
  font-size: 14px;
  border-radius: 6px;
  margin-bottom: 24px;
  box-shadow: 0 4px 0 #000;
  white-space: nowrap;
}
.hero .destination-blind .dot {
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--bus-red);
  border-radius: 50%;
  vertical-align: middle;
  margin-right: 10px;
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink {
  0%, 60% { opacity: 1; }
  70%, 100% { opacity: 0.2; }
}

.hero h1 {
  font-size: clamp(32px, min(6vw, 10vh), 88px);
  margin: 0 auto 18px;
  max-width: 16ch;
  line-height: 0.98;
}
.hero h1 .squiggle {
  display: inline-block;
  color: var(--bus-red);
  font-style: italic;
  font-family: "Bricolage Grotesque", serif;
  font-weight: 500;
}
.hero h1 em {
  font-style: italic;
  color: var(--moss);
  font-weight: 500;
  font-family: "Bricolage Grotesque";
}

.hero .lede {
  max-width: 52ch;
  margin: 0 auto;
  font-size: clamp(15px, 1.4vw, 19px);
  color: var(--ink-soft);
  text-wrap: pretty;
}

.hero .cta-row {
  display: inline-flex;
  gap: 14px;
  margin-top: clamp(18px, 4vh, 36px);
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 2px solid var(--ink);
  background: var(--ink);
  color: var(--cream);
  font-family: "Antonio", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s, background 0.15s;
}
.btn:hover { transform: translateY(-2px); background: var(--bus-red); border-color: var(--bus-red); }
.btn.ghost {
  background: transparent;
  color: var(--ink);
}
.btn.ghost:hover { background: var(--butter); color: var(--ink); border-color: var(--ink); }

/* TICKER */
.ticker {
  position: relative;
  margin-top: 60px;
  background: var(--bus-red);
  color: var(--cream);
  padding: 16px 0;
  border-top: 4px solid var(--ink);
  border-bottom: 4px solid var(--ink);
  overflow: hidden;
  z-index: 12;
}
.ticker-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: ticker 40s linear infinite;
  font-family: "Antonio", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  font-size: 18px;
}
.ticker-track > span { display: inline-flex; align-items: center; gap: 48px; }
.ticker-track .star { color: var(--butter); }
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* STOP SECTIONS */
.stop {
  background: var(--cream-soft);
  border-top: 3px solid var(--ink);
  position: relative;
  z-index: 11;
}
.stop:nth-of-type(even) { background: var(--paper); }
.stop.green-stop { background: var(--leaf); }
.stop.butter-stop { background: var(--butter-soft); }
.stop.dark-stop { background: var(--ink); color: var(--cream); --paper: #2A2520; }
.stop.dark-stop h2, .stop.dark-stop h3 { color: var(--cream); }
.stop.dark-stop .menu-item { color: var(--cream); border-color: rgba(244,232,200,0.18); }
.stop.dark-stop .menu-grid { border: none; background: transparent; }
.stop.dark-stop .stop-meta { color: var(--butter); }
.stop.dark-stop .stop-num { background: var(--butter); color: var(--ink); }

.stop-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.stop-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: "Antonio", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 13px;
  color: var(--ink-soft);
  font-weight: 600;
}
.stop-meta .stop-num {
  display: inline-grid;
  place-items: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--butter);
  font-size: 16px;
  font-weight: 700;
}
.stop h2 {
  font-size: clamp(40px, 6vw, 88px);
  max-width: 16ch;
}

/* MENU CARDS — each item is its own bordered card; no outer container border */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  border: none;
  background: transparent;
  border-radius: 0;
  overflow: visible;
}
.menu-grid.three { grid-template-columns: repeat(3, 1fr); }

.menu-item {
  background: var(--paper);
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
  border: 2px solid var(--ink);
  border-radius: 14px;
  min-height: 110px;
}
/* === MENU HOVER — per-section cute pops === */
/* Default cream stops (espresso, lotus, lunch) → warm butter pop */
.menu-item:hover { background: var(--butter-soft); }
.lotus-grid .menu-item:hover { background: var(--butter-soft); }

/* Butter stops (about, breakfast) → soft peach pop on yellow */
.stop.butter-stop .menu-item:hover,
.stop.butter-stop .lotus-grid .menu-item:hover { background: #FCD8B5; }

/* Green stop (drinks) → soft pink/blush pop — warm complement to green */
.stop.green-stop .menu-item:hover,
.stop.green-stop .lotus-grid .menu-item:hover { background: #FAD9D7; }


.menu-item .row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.menu-item .name {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.menu-item .price {
  font-family: "JetBrains Mono", monospace;
  font-weight: 600;
  font-size: 16px;
  color: var(--bus-red);
  white-space: normal;
  text-align: right;
  max-width: 100%;
}
.dark-stop .menu-item .price { color: var(--butter); }
.menu-item .desc {
  font-size: 14px;
  color: var(--ink-soft);
  text-wrap: pretty;
}
.dark-stop .menu-item .desc { color: var(--leaf); }
.menu-item .reviews {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  color: var(--ink-soft);
  opacity: 0.7;
  margin-top: 4px;
}
.stop.dark-stop .menu-item .reviews { color: var(--leaf); opacity: 0.8; }
/* Dark stop (pastries) → solid butter-soft card pop with ink text for contrast */
.stop.dark-stop .menu-item:hover { background: var(--butter-soft); color: var(--ink); }
.stop.dark-stop .menu-item:hover .price { color: var(--bus-red); }
.stop.dark-stop .menu-item:hover .desc { color: var(--ink); }
.menu-item .tag {
  position: absolute;
  top: 14px; right: 18px;
  font-family: "Antonio", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 10px;
  background: var(--bus-red);
  color: var(--cream);
  padding: 3px 7px;
  border-radius: 3px;
}

/* LOTUS specials get a colored chip swatch */
.lotus-grid .menu-item {
  background: var(--cream-soft);
}
.lotus-grid .menu-item .swatch {
  display: inline-block;
  width: 14px; height: 14px;
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
  border: 2px solid var(--ink);
}

/* COMBO CARDS — bigger */
.combos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.combo-card {
  background: var(--paper);
  border: 2.5px solid var(--ink);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
  box-shadow: 6px 6px 0 var(--ink);
  transition: transform 0.2s;
}
.combo-card:hover { transform: translate(-3px, -3px); box-shadow: 9px 9px 0 var(--ink); }
.combo-card .ticket-tab {
  position: absolute;
  top: 0; right: 0;
  background: var(--bus-red);
  color: var(--cream);
  padding: 6px 14px;
  font-family: "Antonio", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 11px;
  border-bottom-left-radius: 12px;
}
.combo-card h3 {
  font-size: 26px;
  margin-top: 14px;
  line-height: 1.05;
}
.combo-card .combo-desc {
  font-size: 14px;
  color: var(--ink-soft);
  flex: 1;
  text-wrap: pretty;
}
.combo-card .combo-price {
  font-family: "JetBrains Mono", monospace;
  font-weight: 700;
  font-size: 28px;
  color: var(--bus-red);
}
.combo-card .perforation {
  border-top: 2px dashed var(--ink);
  margin: 6px -24px 0;
  padding-top: 14px;
  padding-left: 24px;
  padding-right: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* THE ROUTE intro block */
.route-card {
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: 24px;
  padding: 36px 40px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  box-shadow: 10px 10px 0 var(--bus-red);
  margin-bottom: 24px;
}
.route-card h2 {
  font-size: clamp(36px, 4.5vw, 56px);
  margin-bottom: 16px;
}
.route-card .stamps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  align-content: start;
}
.stamp {
  border: 2px dashed var(--ink);
  border-radius: 12px;
  padding: 14px;
  background: var(--cream-soft);
}
.stamp .stamp-label {
  font-family: "Antonio", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 11px;
  color: var(--ink-soft);
  margin-bottom: 4px;
}
.stamp .stamp-val {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700;
  font-size: 22px;
}

/* FOOTER / VISIT */
.visit {
  background: var(--bus-red);
  color: var(--cream);
  border-top: 4px solid var(--ink);
  padding: 100px 32px 60px;
  position: relative;
  z-index: 11;
}
.visit h2 { color: var(--cream); }
.visit a { color: var(--butter); }
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.visit .schedule {
  display: grid;
  gap: 6px;
  font-family: "JetBrains Mono", monospace;
  font-size: 15px;
}
.visit .schedule .row {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dashed rgba(255,255,255,0.3);
  padding: 8px 0;
}

footer.signoff {
  background: var(--ink);
  color: var(--cream);
  padding: 24px 32px;
  font-family: "Antonio", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Section divider — looks like a torn ticket strip */
.divider-tear {
  height: 22px;
  background:
    radial-gradient(circle at 12px 0, transparent 8px, var(--ink) 8.5px) repeat-x;
  background-size: 24px 22px;
}

/* ============== responsive ============== */
@media (max-width: 980px) {
  .topbar nav { display: none; }
  .topbar { padding: 14px 18px; }
}

@media (max-width: 880px) {
  .menu-grid, .menu-grid.three { grid-template-columns: 1fr; }
  .combos { grid-template-columns: 1fr; }
  .route-card { grid-template-columns: 1fr; gap: 24px; padding: 28px 24px; box-shadow: 8px 8px 0 var(--bus-red); }
  .visit-grid { grid-template-columns: 1fr; gap: 28px; }
  .stop-header { flex-direction: column; align-items: flex-start; gap: 16px; margin-bottom: 28px; }
  .topbar .brand { font-size: 14px; }
  .topbar .brand-mark { width: 30px; height: 30px; font-size: 12px; }
  .topbar .visit-btn { padding: 8px 14px; font-size: 12px; }
  section { padding: 56px 18px clamp(140px, 22vh, 180px); }
  .stop h2 { font-size: clamp(30px, 7vw, 48px); }
  .combo-card { padding: 20px; box-shadow: 5px 5px 0 var(--ink); }
  .combo-card:hover { transform: none; box-shadow: 5px 5px 0 var(--ink); }
  .combo-card h3 { font-size: 22px; }
  .combo-card .combo-price { font-size: 24px; }
  .combo-card .perforation { margin: 6px -20px 0; padding-left: 20px; padding-right: 20px; }
  .visit { padding: 64px 18px 40px; }
  .visit h2 { font-size: clamp(34px, 9vw, 56px) !important; }
  .ticker-track { font-size: 14px; gap: 28px; }
  .ticker-track > span { gap: 28px; }
  .stop.butter-stop { padding: 50px 18px clamp(140px, 22vh, 180px) !important; }
  footer.signoff { flex-direction: column; gap: 6px; text-align: center; padding: 18px; font-size: 11px; }
  .menu-item { min-height: 90px; padding: 18px 20px; }
  .menu-item .name { font-size: 19px; }
  .menu-item .price { font-size: 15px; }
  .schedule { font-size: 13px; }
}

@media (max-width: 540px) {
  body { padding-bottom: 200px; }
  .bus-stage { height: 200px; }
  .bus-wrap { width: min(280px, 80vw); bottom: 0; }
  .skyline-wrap { height: 110px; bottom: 28px; }
  .hills { height: 56px; bottom: 28px; }
  .hero { padding-top: 90px; }
  .hero h1 { font-size: clamp(28px, 8.5vw, 44px); }
  .hero .destination-blind { font-size: 10px; letter-spacing: 0.1em; padding: 7px 12px; }
  .hero .lede { font-size: 14px; line-height: 1.5; }
  .btn { padding: 11px 16px; font-size: 12px; }
  .cta-row { flex-direction: column; width: 100%; max-width: 280px; }
  .cta-row .btn { justify-content: center; }
  .stamp { padding: 12px; }
  .stamp .stamp-val { font-size: 18px; }
  .stamps { grid-template-columns: repeat(2, 1fr) !important; }
  .topbar { padding: 12px 14px; }
  .topbar .brand { font-size: 12px; letter-spacing: 0.06em; }
  .topbar .brand-mark { width: 26px; height: 26px; font-size: 11px; }
  .topbar .visit-btn { padding: 7px 11px; font-size: 11px; }
  section { padding: 44px 16px clamp(120px, 18vh, 160px); }
  .stop h2 { font-size: clamp(26px, 7.5vw, 38px); }
  .stop-meta { font-size: 11px; }
  .stop-meta .stop-num { width: 36px; height: 36px; font-size: 13px; }
  .menu-grid, .menu-grid.three, .menu-grid.lotus-grid { border-radius: 14px; }
  .menu-item { padding: 16px 18px; min-height: 80px; }
  .menu-item .name { font-size: 18px; }
  .menu-item .desc { font-size: 13px; }
  .menu-item .tag { font-size: 9px; padding: 3px 6px; top: 12px; right: 14px; }
  .lotus-grid .menu-item .swatch { width: 11px; height: 11px; margin-right: 6px; }
  .combo-card { padding: 18px; }
  .combo-card h3 { font-size: 20px; }
  .combo-card .combo-price { font-size: 22px; }
  .combo-card .ticket-tab { padding: 5px 11px; font-size: 10px; }
  .visit { padding: 50px 16px 32px; }
  .visit .schedule { font-size: 13px; }
  .visit h3.transit { font-size: 18px !important; }
  .ticker-track { font-size: 12px; gap: 20px; padding: 14px 0; }
  .ticker-track > span { gap: 20px; }
  .ticker { padding: 12px 0; }
  .stop.butter-stop { padding: 36px 16px clamp(120px, 18vh, 160px) !important; }
  .stop.butter-stop > .container > .route-card { margin-bottom: 0; }
  .route-card { padding: 22px 20px; box-shadow: 6px 6px 0 var(--bus-red); border-radius: 18px; }
  .route-card h2 { font-size: clamp(28px, 7vw, 42px) !important; }
  .divider-tear { height: 16px; background-size: 18px 16px; }
  footer.signoff { padding: 14px 16px; font-size: 10px; }
}

@media (max-width: 400px) {
  .topbar nav,
  .topbar .brand span:not(.brand-mark) { display: none; }
  /* keep only the round brand mark and the CTA on very narrow phones */
  .topbar { justify-content: space-between; padding: 10px 12px; }
  .hero h1 { font-size: 26px; }
  .stop h2 { font-size: 26px; }
  .last-stop-sign { padding: 6px 10px 7px; }
  .last-stop-sign .big { font-size: 14px; }
  .last-stop-sign .sub { font-size: 8px; }
  .last-stop-pole { height: 56px; }
  .bus-wrap { width: min(240px, 78vw); }
  .bus-stage { height: 180px; }
  body { padding-bottom: 180px; }
  .skyline-wrap { height: 90px; }
  .hills { height: 46px; }
}
