:root {
  --bg: #000000;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.45, 0, 0.55, 1);
  --glass-bg: rgba(255, 255, 255, 0.028);
  --glass-border: rgba(255, 255, 255, 0.078);
  --glass-inner: rgba(255, 255, 255, 0.022);
  --nbulai-violet: rgba(186, 170, 255, 0.92);
}

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

html {
  background: var(--bg);
  height: 100%;
  scroll-behavior: auto;
}

body.schedule-page {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "SF Pro Text", sans-serif;
  font-weight: 300;
  background: var(--bg);
  color: rgba(255, 255, 255, 0.9);
  min-height: 100%;
  min-height: 100dvh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

.schedule-skip {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.schedule-skip:focus {
  left: max(0.5rem, env(safe-area-inset-left));
  top: max(0.5rem, env(safe-area-inset-top));
  width: auto;
  height: auto;
  padding: 0.5rem 1rem;
  background: #111;
  z-index: 10120;
  outline: 1px solid rgba(255, 255, 255, 0.3);
}

body:not(.alma-ready) {
  overflow: hidden;
}

body:not(.alma-ready) .schedule-main,
body:not(.alma-ready) .top-glass-dock,
body:not(.alma-ready) .bottom-glass {
  visibility: hidden;
  pointer-events: none;
}

/* —— Top nav (same recipe as Philosophy / Creations — was missing on Schedule-only CSS) —— */
.top-glass {
  position: fixed;
  top: max(0.65rem, calc(env(safe-area-inset-top) + 0.35rem));
  left: 50%;
  transform: translate3d(-50%, 0, 0);
  z-index: 1300;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.15rem, 1.2vw, 0.45rem);
  padding: 0.42rem clamp(0.45rem, 1.5vw, 0.65rem);
  border-radius: 9999px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.35) inset,
    0 1px 0 var(--glass-inner) inset;
  backdrop-filter: blur(14px) saturate(1.04);
  -webkit-backdrop-filter: blur(14px) saturate(1.04);
  pointer-events: auto;
  overflow: visible;
  isolation: isolate;
  max-width: calc(100vw - 1.25rem);
}

@supports (-webkit-touch-callout: none) {
  .top-glass {
    backdrop-filter: blur(12px) saturate(1.03);
    -webkit-backdrop-filter: blur(12px) saturate(1.03);
  }
}

.top-glass nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(0.05rem, 0.8vw, 0.28rem);
}

.top-glass a {
  font-size: clamp(0.52rem, 1.05vw, 0.62rem);
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
  text-decoration: none;
  padding: 0.38rem clamp(0.5rem, 1.4vw, 0.72rem);
  border-radius: 9999px;
  transition: color 0.45s var(--ease), background 0.45s var(--ease);
  white-space: nowrap;
}

.top-glass a:hover,
.top-glass a:focus-visible {
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.05);
}

.top-glass a:focus-visible {
  outline: 1px solid rgba(255, 255, 255, 0.22);
  outline-offset: 2px;
}

.top-glass a.top-glass__core {
  letter-spacing: 0.14em;
}

.top-glass a.top-glass__here {
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.06);
}

.top-glass__lab-home {
  position: relative;
  z-index: 1;
  isolation: isolate;
  color: rgba(255, 255, 255, 0.52) !important;
  padding-inline: clamp(0.5rem, 1.5vw, 0.78rem) !important;
  overflow: visible;
  text-overflow: clip;
}

.top-glass__lab-home::before {
  content: "";
  position: absolute;
  inset: -12px -16px;
  border-radius: 9999px;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 100% 145% at 32% 38%, rgba(255, 252, 248, 0.2) 0%, rgba(255, 255, 255, 0.06) 44%, transparent 72%),
    radial-gradient(ellipse 90% 130% at 72% 58%, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 48%, transparent 70%),
    radial-gradient(ellipse 70% 95% at 50% 82%, rgba(255, 252, 248, 0.1) 0%, transparent 58%);
  filter: blur(14px);
  opacity: 0.56;
  animation: schedule-nav-nebula 10.5s ease-in-out infinite;
}

@keyframes schedule-nav-nebula {
  0%,
  100% {
    opacity: 0.5;
    transform: scale(0.98);
    filter: blur(12px);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.04);
    filter: blur(15px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .top-glass__lab-home::before {
    animation: none;
  }
}

/* Footer shell: alma-universal.css (same credit + Media rail as rest of site) */

/* Sound hint: sit above footer, still clear of audio corner */
body.schedule-page .alma-sound-whisper {
  bottom: calc(max(0.55rem, env(safe-area-inset-bottom)) + 5.55rem);
  z-index: 1275;
  max-width: 14.5rem;
}

.schedule-main {
  position: relative;
  padding-bottom: clamp(5.75rem, 14vh, 8.5rem);
}

.schedule-hero {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  min-height: 100dvh;
  padding: clamp(5.25rem, 12vh, 7rem) clamp(1.1rem, 4.5vw, 2.25rem) clamp(2.75rem, 8vh, 4.25rem);
  background: radial-gradient(ellipse 100% 85% at 50% 18%, #0a0a0c 0%, #000 58%, #020203 100%);
  overflow: hidden;
}

.schedule-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

/* Parallax layers: deep → veil → mid (behind copy) → content → fore (in front of glass, still no hit-testing) */
.schedule-dots-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.schedule-dots-layer--deep {
  z-index: 1;
}

.schedule-hero__veil {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: radial-gradient(
    ellipse 78% 68% at 50% 42%,
    transparent 0%,
    rgba(0, 0, 0, 0.22) 55%,
    rgba(0, 0, 0, 0.65) 100%
  );
}

.schedule-dots-layer--mid {
  z-index: 3;
}

.schedule-dots-layer--fore {
  z-index: 11;
  mix-blend-mode: normal;
}

/* —— Particles: Creations orbit-dot recipe (orbit/style.css) —— */
.schedule-particle {
  position: absolute;
  left: 0;
  top: 0;
  width: 44px;
  height: 44px;
  margin: -22px 0 0 -22px;
  transform: translate3d(var(--px, 0px), var(--py, 0px), 0) scale(var(--p-scale, 1));
  opacity: var(--p-op, 1);
  pointer-events: none;
  will-change: transform;
  contain: layout style;
}

.schedule-particle--orbit .schedule-orbit-dot__glow {
  position: relative;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
}

.schedule-particle--orbit .schedule-orbit-dot__halo {
  position: absolute;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 45%, rgba(255, 255, 255, 0.2) 0%, transparent 68%);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.schedule-particle--orbit .schedule-orbit-dot__point {
  position: relative;
  z-index: 1;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  box-shadow:
    0 0 8px rgba(255, 255, 255, 0.9),
    0 0 22px rgba(255, 255, 255, 0.35);
  animation: schedule-orbit-point-pulse 4s cubic-bezier(0.45, 0, 0.55, 1) infinite;
  animation-delay: var(--pulse-delay, 0s);
}

@keyframes schedule-orbit-point-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.94;
  }
  50% {
    transform: scale(1.06);
    opacity: 1;
  }
}

/* Core journey white core (index.html .soul-core defaults) — small distant sparks */
.schedule-particle--core {
  width: 36px;
  height: 36px;
  margin: -18px 0 0 -18px;
  display: grid;
  place-items: center;
}

.schedule-soul-core {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow:
    0 0 6px rgba(255, 255, 255, 0.3),
    0 0 18px rgba(255, 252, 248, 0.14),
    0 0 36px rgba(255, 248, 238, 0.08);
  animation: schedule-soul-core-pulse 3.6s cubic-bezier(0.45, 0, 0.55, 1) infinite;
  animation-delay: var(--pulse-delay, 0s);
}

@keyframes schedule-soul-core-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.88;
  }
  50% {
    transform: scale(1.05);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .schedule-particle--orbit .schedule-orbit-dot__point,
  .schedule-soul-core {
    animation: none;
  }
}

.schedule-hero__content {
  position: relative;
  z-index: 10;
  isolation: isolate;
  max-width: 36rem;
  margin: 0 auto;
  pointer-events: auto;
}

.schedule-hero__kicker {
  font-size: clamp(0.5rem, 1vw, 0.58rem);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.36);
  margin-bottom: 0.85rem;
  text-align: center;
}

.schedule-hero__title {
  font-size: clamp(1.65rem, 5vw, 2.5rem);
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
  color: rgba(255, 255, 255, 0.94);
  margin-bottom: 0.4rem;
  text-shadow: 0 0 36px rgba(255, 255, 255, 0.05);
}

.schedule-hero__sub {
  font-size: clamp(0.76rem, 1.45vw, 0.88rem);
  font-weight: 300;
  letter-spacing: 0.12em;
  text-align: center;
  color: rgba(255, 255, 255, 0.44);
  margin-bottom: 1.75rem;
  line-height: 1.5;
}

.schedule-glass {
  position: relative;
  z-index: 1;
  background: var(--alma-liquid-shine), var(--alma-liquid-veil);
  border: 1px solid var(--alma-liquid-border);
  border-radius: 1.1rem;
  padding: clamp(1rem, 2.6vw, 1.35rem) clamp(1.05rem, 2.8vw, 1.5rem);
  margin-bottom: 0.75rem;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.32) inset,
    0 1px 0 var(--alma-liquid-inset) inset,
    var(--alma-liquid-shadow);
  backdrop-filter: blur(var(--alma-liquid-blur)) saturate(var(--alma-liquid-sat));
  -webkit-backdrop-filter: blur(var(--alma-liquid-blur)) saturate(var(--alma-liquid-sat));
}

.schedule-glass p {
  font-size: clamp(0.76rem, 1.5vw, 0.88rem);
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.68);
  margin: 0;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.45);
}

.schedule-glass p + p {
  margin-top: 0.8rem;
}

.schedule-glass em {
  font-style: normal;
  color: rgba(255, 255, 255, 0.78);
}

.schedule-form {
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
}

.schedule-field label {
  display: block;
  font-size: clamp(0.48rem, 0.9vw, 0.54rem);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  margin-bottom: 0.42rem;
}

.schedule-field input,
.schedule-field textarea {
  width: 100%;
  font-family: inherit;
  font-size: clamp(0.82rem, 1.4vw, 0.92rem);
  font-weight: 300;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0.75rem;
  padding: 0.72rem 0.95rem;
  outline: none;
  transition: border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.schedule-field textarea {
  min-height: 8.5rem;
  resize: vertical;
  line-height: 1.55;
}

.schedule-field input:focus,
.schedule-field textarea:focus {
  border-color: rgba(255, 255, 255, 0.32);
  box-shadow: 0 0 0 1px rgba(198, 172, 255, 0.12);
}

.schedule-field input::placeholder,
.schedule-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.28);
}

.schedule-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.schedule-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  cursor: pointer;
  font-size: clamp(0.72rem, 1.35vw, 0.82rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.03em;
}

.schedule-consent input {
  margin-top: 0.2rem;
  flex-shrink: 0;
  accent-color: rgba(200, 190, 255, 0.65);
}

.schedule-submit {
  align-self: center;
  margin-top: 0.35rem;
  font-family: inherit;
  font-weight: 400;
  font-size: clamp(0.65rem, 1.2vw, 0.76rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.9rem 1.75rem;
  border-radius: 9999px;
  cursor: pointer;
  backdrop-filter: blur(18px) saturate(1.05);
  -webkit-backdrop-filter: blur(18px) saturate(1.05);
  transition: border-color 0.4s var(--ease), background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.schedule-submit:hover:not(:disabled),
.schedule-submit:focus-visible:not(:disabled) {
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 32px rgba(198, 172, 255, 0.08);
}

.schedule-submit:focus-visible {
  outline: 1px solid rgba(255, 255, 255, 0.22);
  outline-offset: 3px;
}

.schedule-submit:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.schedule-feedback {
  min-height: 1.25rem;
  text-align: center;
  font-size: clamp(0.72rem, 1.35vw, 0.82rem);
  letter-spacing: 0.04em;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.45);
}

.schedule-feedback--ok {
  color: rgba(175, 252, 255, 0.97);
  font-weight: 500;
  letter-spacing: 0.045em;
  text-shadow:
    0 0 22px rgba(80, 220, 235, 0.45),
    0 1px 2px rgba(0, 0, 0, 0.35);
  margin-top: 0.5rem;
  margin-left: auto;
  margin-right: auto;
  max-width: min(36rem, 100%);
  padding: 0.85rem 1.1rem;
  background: linear-gradient(
    145deg,
    rgba(18, 72, 88, 0.72) 0%,
    rgba(12, 48, 62, 0.78) 50%,
    rgba(16, 58, 75, 0.72) 100%
  );
  border: 1px solid rgba(110, 228, 242, 0.42);
  border-radius: 0.85rem;
  box-shadow:
    0 4px 28px rgba(0, 0, 0, 0.22),
    0 0 40px rgba(64, 200, 220, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.schedule-feedback--err {
  color: rgba(255, 190, 175, 0.88);
}

@media (pointer: coarse) {
  .top-glass a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 380px) {
  .top-glass {
    padding-inline: 0.35rem;
  }

  .top-glass a {
    padding-inline: clamp(0.38rem, 2.5vw, 0.55rem);
    font-size: 0.5rem;
    letter-spacing: 0.1em;
  }
}

@media (max-width: 520px) {
  body.schedule-page .alma-sound-whisper {
    bottom: calc(max(0.5rem, env(safe-area-inset-bottom)) + 6.2rem);
    max-width: 11.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .schedule-dots-layer .schedule-particle {
    opacity: 0.35 !important;
  }
}

html.alma-safari .schedule-hero {
  isolation: auto;
}

html.alma-safari .schedule-hero__bg {
  transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
}

html.alma-safari .schedule-hero__content {
  isolation: auto;
  transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
}

html.alma-safari .schedule-glass {
  background: linear-gradient(168deg, rgba(255, 252, 248, 0.1) 0%, rgba(22, 22, 26, 0.04) 100%), rgba(6, 6, 8, 0.38);
  -webkit-backdrop-filter: blur(16px) saturate(1.06);
  backdrop-filter: blur(16px) saturate(1.06);
}

/* —— Carved calendar — sculpted glass, not a widget —— */
.schedule-carved {
  width: 100%;
  max-width: min(52rem, 96vw);
  margin: 0 auto clamp(1.75rem, 4vw, 2.75rem);
}

.schedule-carved__frame {
  position: relative;
  border-radius: 1.35rem;
  padding: clamp(1.15rem, 2.8vw, 1.65rem) clamp(1rem, 2.5vw, 1.45rem) clamp(1.25rem, 2.8vw, 1.55rem);
  background: var(--alma-liquid-shine),
    linear-gradient(165deg, rgba(255, 255, 255, 0.04) 0%, rgba(0, 0, 0, 0.2) 100%);
  border: 1px solid var(--alma-liquid-border, rgba(255, 255, 255, 0.14));
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.4) inset,
    0 1px 0 rgba(255, 255, 255, 0.05) inset,
    0 28px 90px rgba(0, 0, 0, 0.45),
    0 0 60px rgba(255, 252, 248, 0.04);
  backdrop-filter: blur(22px) saturate(1.05);
  -webkit-backdrop-filter: blur(22px) saturate(1.05);
  overflow: hidden;
}

.schedule-carved__frame::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
  mix-blend-mode: screen;
  opacity: 0.5;
}

.schedule-carved__eyebrow {
  position: relative;
  z-index: 1;
  font-size: clamp(0.52rem, 1.05vw, 0.62rem);
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
  margin: 0 0 1rem;
  text-align: center;
}

.schedule-carved__body {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(0.85rem, 2.2vw, 1.35rem);
  align-items: start;
}

.schedule-carved__col-title {
  display: block;
  font-size: clamp(0.48rem, 0.95vw, 0.55rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.36);
  margin-bottom: 0.45rem;
}

.schedule-carved__hint {
  font-size: clamp(0.58rem, 1.15vw, 0.68rem);
  font-weight: 300;
  letter-spacing: 0.06em;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.32);
  margin: 0 0 0.65rem;
}

.schedule-cal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.35rem;
  margin-bottom: 0.55rem;
}

.schedule-cal-nav__btn {
  appearance: none;
  font: inherit;
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  transition: color 0.35s var(--ease), border-color 0.35s var(--ease), background 0.35s var(--ease);
}

.schedule-cal-nav__btn:hover {
  color: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.07);
}

.schedule-cal-nav__label {
  flex: 1;
  text-align: center;
  font-size: clamp(0.62rem, 1.2vw, 0.72rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.52);
}

.schedule-cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.2rem;
  margin-bottom: 0.35rem;
  font-size: clamp(0.45rem, 0.9vw, 0.52rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
  text-align: center;
}

.schedule-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.28rem;
}

.schedule-cal-day {
  aspect-ratio: 1;
  min-height: 2.15rem;
  border-radius: 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.42);
  font: inherit;
  font-size: clamp(0.58rem, 1.15vw, 0.68rem);
  font-weight: 300;
  cursor: default;
  transition: border-color 0.35s var(--ease), background 0.35s var(--ease), color 0.35s var(--ease);
}

.schedule-cal-day--muted {
  opacity: 0.22;
  pointer-events: none;
}

.schedule-cal-day--pickable {
  cursor: pointer;
  color: rgba(255, 255, 255, 0.72);
}

.schedule-cal-day--pickable:hover {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
}

.schedule-cal-day--selected {
  border-color: rgba(255, 252, 248, 0.35);
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 252, 248, 0.95);
  box-shadow: 0 0 24px rgba(255, 252, 248, 0.06);
}

.schedule-pill-list {
  display: flex;
  flex-direction: column;
  gap: 0.42rem;
}

.schedule-pill {
  appearance: none;
  font: inherit;
  text-align: left;
  padding: 0.55rem 0.75rem;
  border-radius: 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.18);
  color: rgba(255, 255, 255, 0.62);
  font-size: clamp(0.62rem, 1.2vw, 0.74rem);
  letter-spacing: 0.05em;
  line-height: 1.35;
  cursor: pointer;
  transition: border-color 0.35s var(--ease), background 0.35s var(--ease), color 0.35s var(--ease);
}

.schedule-pill:hover {
  border-color: rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.88);
}

.schedule-pill--selected {
  border-color: rgba(255, 252, 248, 0.32);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 252, 248, 0.95);
}

.schedule-carved__selection {
  position: relative;
  z-index: 1;
  margin: 1rem 0 0;
  min-height: 1.25em;
  text-align: center;
  font-size: clamp(0.58rem, 1.1vw, 0.68rem);
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.38);
}

.schedule-glass--note {
  border-color: rgba(255, 255, 255, 0.1);
}

@media (max-width: 900px) {
  .schedule-carved__body {
    grid-template-columns: 1fr;
  }
}
