/* ============ SCHEDULE page styles ============ */

.sched-hero {
  padding: 140px 0 60px;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}
.sched-hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 78% 28%, rgba(226, 106, 31, 0.22), transparent 45%),
    radial-gradient(circle at 18% 78%, rgba(27, 106, 156, 0.25), transparent 45%);
  -webkit-mask-image: linear-gradient(to bottom, black 0%, black 55%, transparent 100%);
          mask-image: linear-gradient(to bottom, black 0%, black 55%, transparent 100%);
  z-index: 0;
  pointer-events: none;
}
.sched-hero::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(244, 238, 227, 0.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(244, 238, 227, 0.06) 1px, transparent 1px);
  background-size: 80px 80px;
  -webkit-mask-image: radial-gradient(ellipse 85% 70% at 50% 38%, black 25%, transparent 95%);
          mask-image: radial-gradient(ellipse 85% 70% at 50% 38%, black 25%, transparent 95%);
  z-index: 0;
  pointer-events: none;
}
.sched-hero .wrap { position: relative; z-index: 1; }
.sched-title {
  font-size: clamp(48px, 8vw, 112px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.95;
  margin: 20px 0 28px;
  max-width: 14ch;
}
.sched-title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--orange);
}
.sched-lede {
  font-size: clamp(17px, 1.4vw, 20px);
  color: var(--ink-dim);
  max-width: 56ch;
}

/* ---------- overview strip ---------- */
.sched-overview {
  padding: 60px 0;
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
}
.overview-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}
.ov-cell {
  background: var(--bg-2);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  transition: background .2s;
}
.ov-cell:hover { background: #131C33; }
.ov-cell.is-arrival,
.ov-cell.is-depart { background: rgba(11,18,32,0.7); }
.ov-cell .day-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.ov-cell .day-name {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
}
.ov-cell .day-name .sub {
  display: block;
  font-size: 13px;
  color: var(--ink-dim);
  margin-top: 6px;
  letter-spacing: 0;
  font-weight: 400;
}
.ov-cell .day-tag {
  margin-top: auto;
  padding-top: 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--orange);
  text-transform: uppercase;
}
.ov-cell.is-arrival .day-tag,
.ov-cell.is-depart .day-tag { color: var(--blue); }

/* ---------- day blocks ---------- */
.sched-body { padding: clamp(60px, 8vw, 120px) 0 120px; background: var(--bg); }

.day-block {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: clamp(40px, 6vw, 96px);
  padding: 80px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.day-block:first-child { padding-top: 0; }
.day-block:last-child  { border-bottom: 0; }

.day-aside { position: sticky; top: 100px; }
.day-tag-eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 12px;
}
.day-aside h2 {
  font-size: clamp(36px, 4.8vw, 64px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 0.95;
}
.day-aside h2 .day-of {
  display: block;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 0.6em;
  color: var(--orange);
  margin-top: 4px;
  letter-spacing: -0.02em;
}
.day-aside p {
  margin-top: 18px;
  font-size: 15px;
  color: var(--ink-dim);
  line-height: 1.55;
  max-width: 32ch;
}

/* timeline */
.timeline { list-style: none; padding: 0; margin: 0; position: relative; }
.timeline::before {
  content: "";
  position: absolute;
  left: 88px;
  top: 16px;
  bottom: 16px;
  width: 1px;
  background: var(--line);
}
.tl-item {
  display: grid;
  grid-template-columns: 76px 24px 1fr;
  gap: 16px;
  padding: 14px 0;
  align-items: start;
}
.tl-time {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--ink-mute);
  text-align: right;
  padding-top: 4px;
  white-space: nowrap;
}
.tl-dot {
  position: relative;
  width: 24px; height: 24px;
  display: grid; place-items: center;
}
.tl-dot::after {
  content: "";
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--bg);
  border: 1.5px solid var(--ink-mute);
  margin-top: 4px;
  z-index: 1;
}
.tl-item.is-key .tl-dot::after { background: var(--orange); border-color: var(--orange); }
.tl-item.is-meal .tl-dot::after { background: var(--blue); border-color: var(--blue); }
.tl-body { padding-top: 0; }
.tl-title {
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1.3;
}
.tl-title .pill {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 8px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(226,106,31,0.12);
  color: var(--orange);
  vertical-align: 2px;
}
.tl-item.is-meal .tl-title .pill { background: rgba(42,136,196,0.12); color: var(--blue); }
.tl-desc {
  font-size: 14px;
  color: var(--ink-dim);
  margin-top: 4px;
  line-height: 1.5;
  max-width: 60ch;
}

/* note callout */
.sched-note {
  margin-top: 64px;
  padding: 28px 32px;
  border-left: 2px solid var(--orange);
  background: linear-gradient(90deg, rgba(226,106,31,0.06), transparent);
  font-size: 15px;
  color: var(--ink-dim);
  max-width: 56ch;
}
.sched-note strong { color: var(--ink); font-weight: 500; }

/* responsive */
@media (max-width: 960px) {
  .overview-grid { grid-template-columns: 1fr 1fr; }
  .day-block { grid-template-columns: 1fr; gap: 32px; padding: 60px 0; }
  .day-aside { position: relative; top: 0; }
  .timeline::before { left: 64px; }
  .tl-item { grid-template-columns: 56px 20px 1fr; gap: 12px; }
}
@media (max-width: 560px) {
  .overview-grid { grid-template-columns: 1fr; }
}

/* ============ COMING SOON VEIL ============ */
.sched-body { position: relative; }

.schedule-veil {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  pointer-events: none;
  z-index: 5;
}
.schedule-veil::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(11, 18, 32, 0.55);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0, black 80px, black calc(100% - 200px), transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0, black 80px, black calc(100% - 200px), transparent 100%);
  pointer-events: auto;
}

.veil-card {
  position: sticky;
  top: 30vh;
  margin-top: 18vh;
  max-width: 600px;
  width: calc(100% - 48px);
  padding: 44px 44px 40px;
  border-radius: 24px;
  background: rgba(17, 26, 46, 0.82);
  backdrop-filter: blur(28px) saturate(160%);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
  border: 1px solid var(--line-strong);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  pointer-events: auto;
  z-index: 1;
}
.veil-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.veil-eyebrow::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(226, 106, 31, 0.18);
  animation: veilPulse 2s ease-in-out infinite;
}
@keyframes veilPulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(226, 106, 31, 0.15); }
  50%      { box-shadow: 0 0 0 8px rgba(226, 106, 31, 0.05); }
}
.veil-title {
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin-bottom: 18px;
}
.veil-title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--orange);
}
.veil-copy {
  font-size: 16px;
  color: var(--ink-dim);
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 52ch;
}
.veil-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

@media (max-width: 600px) {
  .veil-card { padding: 32px 24px 28px; top: 25vh; margin-top: 15vh; }
}
