:root {
  --ink: #2A2724;
  --graphite: #2A2724;
  --slate: #5A564F;
  --stone: #8A847A;
  --mist: #B8B3A9;
  --fog: #E3DED5;
  --linen: #F1ECE3;
  --cream: #FBF6EE;
  --paper: #FFFDF8;
  --primary: #4A6FA5;
  --primary-dark: #3A5A87;
  --primary-light: #EAF0F8;
  --accent: #4A6FA5;
  --accent-light: #EAF0F8;
  --gold: #C99A3B;
  --gold-light: #FAF2E0;
  --positive: #2E7D5B;
  --positive-light: #E4F3EC;
  --transit: #2563A8;
  --transit-light: #E3EEF9;
  --sans: 'Nunito', system-ui, sans-serif;
  --serif: 'Quicksand', system-ui, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;
}

.micro {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.day-column {
  background: transparent;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(42, 39, 36, 0.05), 0 2px 6px rgba(42, 39, 36, 0.03);
  transition: transform 0.22s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.22s ease;
}

.day-column:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(42, 39, 36, 0.08), 0 4px 12px rgba(42, 39, 36, 0.04);
}

.day-band {
  border-radius: 16px 16px 0 0;
  border: 1px solid var(--fog);
  border-bottom: 0;
  padding: 20px 24px;
  position: relative;
  overflow: hidden;
}

.city-tab {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 11px;
  border-radius: 99px;
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.city-dot {
  width: 7px;
  height: 7px;
  border-radius: 99px;
}

.theme-title {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.04;
}

.vibe {
  font-family: var(--serif);
  font-size: 14px;
  font-style: italic;
  color: var(--slate);
  line-height: 1.45;
  margin-top: 6px;
  max-width: 560px;
}

.day-band-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
}

.day-band-main {
  min-width: 0;
  flex: 1;
}

.day-band-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
  flex-wrap: wrap;
}

.factstack {
  display: flex;
  flex-direction: column;
  gap: 9px;
  align-items: flex-end;
  flex-shrink: 0;
}

.fact {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--sans);
  font-size: 12px;
  color: var(--slate);
  white-space: nowrap;
}

.fact .micro {
  color: var(--stone);
}

.fact .fact-value {
  font-weight: 600;
  color: var(--graphite);
}

.day-body {
  background: var(--paper);
  border: 1px solid var(--fog);
  border-top: 0;
  padding: 6px 24px 14px;
}

.day-foot {
  background: var(--cream);
  border: 1px solid var(--fog);
  border-top: 1px dashed var(--fog);
  border-radius: 0 0 16px 16px;
  padding: 11px 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}

/* Responsive Day Band for Mobile */
@media (max-width: 767px) {
  .day-band-content {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .factstack {
    flex-direction: row;
    justify-content: flex-start;
    gap: 16px;
    align-items: center;
    margin-top: 8px;
    border-top: 1px dashed var(--fog);
    padding-top: 10px;
  }
  .theme-title {
    font-size: 22px;
  }
  .vibe {
    font-size: 13.5px;
  }
}
