/* ============================================
   Schedule Page — provisional flow
   ============================================ */

.schedule {
  position: relative;
  padding-top: var(--header-h);
  overflow: hidden;
  min-height: 100vh;
}

.schedule__bg {
  position: fixed;
  inset: 0;
  z-index: var(--z-base);
}

.schedule__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.schedule__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 31, 43, 0.5) 0%, rgba(1, 15, 22, 0.85) 100%);
}

.schedule__container {
  position: relative;
  z-index: var(--z-content);
  max-width: 920px;
  margin: 0 auto;
  padding: var(--space-10) var(--space-6) var(--space-16);
}

.schedule__header {
  text-align: center;
  margin-bottom: var(--space-12);
  padding-bottom: var(--space-8);
  border-bottom: 1px solid var(--color-border-subtle);
}

.schedule__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--color-text-primary);
  margin: 0 0 var(--space-3);
  text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

.schedule__subtitle {
  font-family: var(--font-serif);
  font-size: var(--text-md);
  font-style: italic;
  color: var(--color-cyan-soft);
  margin: 0 0 var(--space-3);
  letter-spacing: 0.05em;
}

.schedule__note {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin: 0;
}

/* ---- Day section ---- */
.schedule__day {
  margin-bottom: var(--space-12);
  padding: var(--space-8);
  background: rgba(11, 31, 43, 0.5);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid var(--color-border-subtle);
}

.schedule__day-header {
  display: flex;
  align-items: baseline;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--color-border-accent);
}

.schedule__day-label {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--color-cyan-bright);
  text-transform: uppercase;
}

.schedule__day-date {
  font-family: var(--font-serif);
  font-size: var(--text-lg);
  font-weight: 400;
  color: var(--color-text-primary);
  margin: 0;
}

/* ---- Timeline ---- */
.schedule__timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}

.schedule__timeline::before {
  content: '';
  position: absolute;
  left: 130px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: linear-gradient(180deg,
    transparent 0%,
    var(--color-cyan-glow) 10%,
    var(--color-cyan-glow) 90%,
    transparent 100%);
  opacity: 0.4;
}

.schedule__item {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: var(--space-5);
  margin-bottom: var(--space-5);
  position: relative;
}

.schedule__item::before {
  content: '';
  position: absolute;
  left: 124px;
  top: 8px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-cyan-bright);
  border: 2px solid var(--color-deep-ocean);
  box-shadow: 0 0 0 1px var(--color-cyan-bright), 0 0 8px rgba(86, 190, 211, 0.5);
  z-index: 1;
}

.schedule__time {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--color-cyan-soft);
  text-align: right;
  padding-right: var(--space-4);
  white-space: nowrap;
  line-height: 1.5;
}

.schedule__content {
  padding-left: var(--space-5);
}

.schedule__content h3 {
  font-family: var(--font-display);
  font-size: var(--text-md);
  font-weight: 500;
  color: var(--color-text-primary);
  margin: 0 0 var(--space-2);
  letter-spacing: 0.05em;
}

.schedule__content p {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  line-height: 1.6;
  color: var(--color-text-secondary);
  margin: 0;
}

.schedule__footnote {
  margin-top: var(--space-8);
  padding: var(--space-5) var(--space-6);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  text-align: center;
  border-top: 1px solid var(--color-border-subtle);
  border-bottom: 1px solid var(--color-border-subtle);
}

@media (max-width: 700px) {
  .schedule__day { padding: var(--space-5); }
  .schedule__day-header { flex-direction: column; gap: var(--space-1); }
  .schedule__timeline::before { left: 0; }
  .schedule__item { grid-template-columns: 1fr; gap: var(--space-2); padding-left: var(--space-5); }
  .schedule__item::before { left: -6px; top: 4px; width: 10px; height: 10px; }
  .schedule__time { text-align: left; padding-right: 0; font-size: var(--text-xs); }
  .schedule__content { padding-left: 0; }
}
