/* ===== School of Life — stylesheet ===== */

:root {
  --forest: #2b3a2f;
  --forest-dark: #1c2721;
  --sage: #7c9070;
  --sage-light: #a9bb9d;
  --sand: #f3ede2;
  --sand-dark: #e7dcc7;
  --terracotta: #c17552;
  --terracotta-dark: #a75f3f;
  --cream: #fbf8f2;
  --ink: #2a2620;
  --ink-soft: #5c564b;
  --max-width: 1180px;

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 3px;
  border-radius: 4px;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.5em;
  color: var(--forest-dark);
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta-dark);
  font-weight: 600;
  margin-bottom: 14px;
}

.section {
  padding: 110px 0;
  position: relative;
}

.section--tight { padding: 80px 0; }

.section--dark {
  background: var(--forest);
  color: var(--sand);
}

.section--dark h2, .section--dark h3, .section--dark h4 { color: var(--cream); }

.section--sand { background: var(--sand); }

.section-head {
  max-width: 680px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-head p { color: var(--ink-soft); font-size: 1.08rem; }
.section--dark .section-head p { color: var(--sage-light); }

.section-image {
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 48px;
}
.section-image img {
  width: 100%;
  aspect-ratio: 21/9;
  object-fit: cover;
  display: block;
}

.lede {
  font-size: 1.2rem;
  color: var(--ink-soft);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn:hover { transform: translateY(-2px); }

.btn--primary {
  background: var(--terracotta);
  color: var(--cream);
  box-shadow: 0 8px 24px rgba(193, 117, 82, 0.35);
}
.btn--primary:hover { background: var(--terracotta-dark); }

.btn--ghost {
  background: transparent;
  color: inherit;
  border-color: currentColor;
  opacity: 0.9;
}
.btn--ghost:hover { opacity: 1; background: rgba(255,255,255,0.08); }

.btn--light {
  background: var(--cream);
  color: var(--forest-dark);
}
.btn--light:hover { background: #fff; }

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: background 0.35s ease, padding 0.35s ease, box-shadow 0.35s ease;
}

.nav.is-scrolled {
  background: rgba(251, 248, 242, 0.92);
  backdrop-filter: blur(8px);
  padding: 12px 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  background: var(--cream);
  padding: 6px 14px;
  border-radius: 14px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.12);
}

.brand img {
  height: 40px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 34px;
  align-items: center;
  font-size: 0.94rem;
  font-weight: 500;
}

.nav-links a { position: relative; color: var(--sand); opacity: 0.85; transition: opacity 0.2s ease; }
.nav-links a:hover { opacity: 1; }
.nav.is-scrolled .nav-links a { color: var(--ink); }
.nav-links a.is-active { opacity: 1; }
.nav-links a.is-active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: currentColor;
}
.nav-links a.btn.is-active::after { display: none; }

.nav-links .btn { padding: 10px 22px; font-size: 0.88rem; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--sand);
  margin: 5px 0;
  transition: transform 0.3s cubic-bezier(.4,0,.2,1), opacity 0.2s ease, background 0.25s ease;
}
.nav.is-scrolled .nav-toggle span { background: var(--ink); }
.nav-toggle.is-active span:nth-child(1) { transform: translateY(12px) rotate(45deg); }
.nav-toggle.is-active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.is-active span:nth-child(3) { transform: translateY(-12px) rotate(-45deg); }

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20,26,20,0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  z-index: 99;
}
.nav-overlay.is-open { opacity: 1; pointer-events: auto; }

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  color: var(--cream);
  background: linear-gradient(180deg, rgba(20,26,20,0.55), rgba(20,26,20,0.75)), url("../images/hero.jpg") center/cover no-repeat;
}

.hero .container {
  position: relative;
  z-index: 2;
  padding-top: 120px;
}

.hero-content { max-width: 720px; }

.hero .eyebrow { color: var(--sage-light); }

.hero h1 {
  font-size: clamp(2.6rem, 5.6vw, 4.4rem);
  color: #fff;
  margin-bottom: 0.35em;
}

.hero h1 em {
  font-style: normal;
  color: var(--sage-light);
}

.hero p.lede {
  color: rgba(255,255,255,0.88);
  max-width: 560px;
  margin-bottom: 40px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.scroll-cue {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.75);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
.scroll-cue::after {
  content: "";
  width: 1px;
  height: 34px;
  background: rgba(255,255,255,0.6);
  animation: pulse-line 2s ease-in-out infinite;
}
@keyframes pulse-line {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
}

/* ---------- Stats strip ---------- */
.stats {
  background: var(--forest-dark);
  color: var(--cream);
  padding: 46px 0;
}
.stats .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat b {
  font-family: var(--font-display);
  display: block;
  font-size: 2.1rem;
  color: var(--sage-light);
}
.stat span {
  font-size: 0.85rem;
  color: rgba(251,248,242,0.75);
  letter-spacing: 0.02em;
}

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Vision quote ---------- */
.quote-block {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}
.quote-block blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.4;
  margin: 0 0 24px;
  color: var(--forest-dark);
}
.section--dark .quote-block blockquote { color: var(--cream); }
.quote-block cite {
  font-style: normal;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--terracotta);
}

/* ---------- Two column ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split.split--reverse .split-media { order: 2; }
.split-media img {
  border-radius: 18px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/5;
}
.split-body h3 { font-size: 1.9rem; }
.split-body ul { padding-left: 0; list-style: none; margin: 24px 0 0; }
.split-body ul li {
  padding-left: 30px;
  position: relative;
  margin-bottom: 14px;
  color: var(--ink-soft);
}
.split-body ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--terracotta);
}

/* ---------- Pillars grid (the resolution) ---------- */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.pillar {
  background: var(--forest-dark);
  border: 1px solid rgba(169,187,157,0.18);
  border-radius: 16px;
  padding: 32px 26px;
  text-align: center;
}
.pillar .num {
  font-family: var(--font-display);
  color: var(--terracotta);
  font-size: 1rem;
  margin-bottom: 10px;
  display: block;
}
.pillar h4 { margin-bottom: 8px; font-size: 1.15rem; }
.pillar p { color: var(--sage-light); font-size: 0.94rem; margin: 0; }

/* ---------- Cards grid (experience / day in the life) ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.card {
  background: #fff;
  border-radius: 16px;
  padding: 30px 24px;
  box-shadow: 0 10px 30px rgba(43,58,47,0.06);
  border: 1px solid rgba(43,58,47,0.06);
}
.card .icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--sand-dark);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  font-size: 1.3rem;
}
.card h4 { font-size: 1.05rem; margin-bottom: 8px; }
.card p { color: var(--ink-soft); font-size: 0.92rem; margin: 0; }

/* ---------- Facility feature list ---------- */
.feature-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 56px;
}
.feature-row .feature h4 {
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.feature-row .feature h4 .tag {
  font-family: var(--font-display);
  color: var(--terracotta);
}
.feature-row .feature p { color: var(--ink-soft); margin: 0; font-size: 0.94rem; }

/* ---------- Team ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.team-card {
  text-align: center;
}
.team-avatar {
  width: 96px; height: 96px;
  border-radius: 50%;
  margin: 0 auto 18px;
  background: linear-gradient(135deg, var(--sage), var(--forest));
  object-fit: cover;
  border: 3px solid var(--sand-dark);
}
.team-card h4 { margin-bottom: 2px; font-size: 1.05rem; }
.team-card .role {
  display: block;
  font-size: 0.82rem;
  color: var(--terracotta-dark);
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.team-card p { font-size: 0.9rem; color: var(--ink-soft); }

/* ---------- CTA ---------- */
.cta {
  background: linear-gradient(180deg, rgba(20,26,20,0.72), rgba(20,26,20,0.85)), url("../images/cta.jpg") center/cover no-repeat;
  color: var(--cream);
  text-align: center;
  padding: 130px 0;
}
.cta h2 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); }
.cta p { color: rgba(255,255,255,0.85); max-width: 560px; margin: 0 auto 36px; font-size: 1.1rem; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- Contact / footer ---------- */
.contact {
  padding: 100px 0 60px;
}

.contact-info { display: grid; gap: 26px; align-content: start; }
.contact-info--centered {
  justify-items: center;
  text-align: center;
  gap: 36px;
}
.contact-info-item h4 { font-size: 1rem; margin-bottom: 6px; }
.contact-info-item p, .contact-info-item a { color: var(--ink-soft); font-size: 0.95rem; }
.contact-info-item a:hover { color: var(--terracotta-dark); }

.social-row { display: flex; gap: 14px; margin-top: 6px; }
.social-row a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--sand-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  color: var(--forest-dark);
}
.social-row a:hover { background: var(--forest-dark); color: var(--cream); }

footer {
  background: var(--forest-dark);
  color: rgba(251,248,242,0.65);
  padding: 30px 0;
  font-size: 0.85rem;
}
footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
footer a:hover { color: var(--cream); }

/* ---------- Generic page header (non-hero pages) ---------- */
.page-header {
  background: var(--forest);
  color: var(--sand);
  text-align: center;
  padding: 160px 0 60px;
}
.page-header .eyebrow { color: var(--sage-light); }
.page-header h1 { color: #fff; font-size: clamp(2.4rem, 5vw, 3.6rem); margin: 0 0 16px; }
.page-header .lede { color: rgba(255,255,255,0.82); max-width: 560px; margin: 0 auto; }

/* ---------- Schedule page ---------- */
.schedule-calendar {
  background: #fff;
  border: 1px solid var(--sand-dark);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(43,58,47,0.08);
}
.schedule-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--sand-dark);
}
.schedule-nav button {
  background: none;
  border: none;
  font-size: 1.3rem;
  cursor: pointer;
  color: var(--ink-soft);
  padding: 4px 14px;
  border-radius: 8px;
  transition: background 0.2s ease, color 0.2s ease;
}
.schedule-nav button:hover { background: var(--sand); color: var(--ink); }
.schedule-nav h3 { font-family: var(--font-display); font-size: 1.3rem; margin: 0; min-width: 160px; text-align: center; }

.schedule-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  border-bottom: 1px solid var(--sand-dark);
}
.schedule-weekdays span {
  text-align: center;
  padding: 12px 4px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.schedule-grid { display: grid; grid-template-columns: repeat(7, 1fr); }
.schedule-day {
  min-height: 96px;
  padding: 8px;
  border-bottom: 1px solid var(--sand-dark);
  border-right: 1px solid var(--sand-dark);
}
.schedule-day:nth-child(7n) { border-right: none; }
.schedule-day.is-empty { background: var(--sand); }
.schedule-day .date-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px; height: 26px;
  border-radius: 50%;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
}
.schedule-day.is-today .date-num { background: var(--terracotta); color: #fff; }

.schedule-event {
  display: block;
  margin-top: 6px;
  padding: 4px 6px;
  border-radius: 6px;
  font-size: 0.72rem;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.schedule-event .title { display: block; font-weight: 600; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.schedule-event .time { display: block; opacity: 0.75; font-size: 0.66rem; }
.schedule-event.chip-0 { background: var(--sage-light); color: var(--forest-dark); }
.schedule-event.chip-1 { background: rgba(196,117,82,0.18); color: var(--terracotta-dark); }
.schedule-event.chip-2 { background: rgba(124,144,112,0.22); color: var(--forest-dark); }
.schedule-more { margin-top: 4px; font-size: 0.68rem; color: var(--ink-soft); }

.schedule-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 70px 20px;
  color: var(--ink-soft);
}
.schedule-state .spinner {
  width: 28px; height: 28px;
  border: 3px solid var(--sand-dark);
  border-top-color: var(--terracotta);
  border-radius: 50%;
  margin: 0 auto 14px;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.schedule-note { text-align: center; color: var(--ink-soft); font-size: 0.9rem; margin-top: 24px; }

/* ---------- Retreats page ---------- */
.retreat-hero {
  min-height: 78vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  color: var(--cream);
  background: linear-gradient(180deg, rgba(20,26,20,0.45), rgba(20,26,20,0.75)), url("../images/retreats/retreat-hero.jpg") center/cover no-repeat;
}
.retreat-hero .container {
  position: relative;
  z-index: 2;
  padding-top: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.retreat-hero .kicker {
  font-style: italic;
  color: rgba(255,255,255,0.9);
  font-size: 1.05rem;
  margin-bottom: 14px;
}
.retreat-hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 26px;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(6px);
  color: #fff;
  padding: 10px 22px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.25);
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 30px;
}
.badge-pill .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--terracotta);
  display: inline-block;
}

.retreat-card {
  background: #fff;
  border: 1px solid var(--sand-dark);
  border-radius: 24px;
  padding: 44px;
  box-shadow: 0 20px 50px rgba(43,58,47,0.08);
}
.retreat-card .retreat-quote {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--forest-dark);
  margin-bottom: 18px;
}
.retreat-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin: 34px 0;
}
.retreat-features .feature-item { display: flex; gap: 14px; }
.retreat-features .dot-icon {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--terracotta);
  margin-top: 8px;
  flex-shrink: 0;
}
.retreat-features h4 { font-size: 1rem; margin-bottom: 4px; }
.retreat-features p { font-size: 0.9rem; color: var(--ink-soft); margin: 0; }

.retreat-schedule {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 28px;
  border-top: 1px solid var(--sand-dark);
}
.retreat-schedule .when b {
  display: block;
  color: var(--terracotta-dark);
  font-family: var(--font-display);
  font-size: 1.15rem;
}
.retreat-schedule .when span { color: var(--ink-soft); font-size: 0.92rem; }

.nutshell-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.nutshell-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--sand-dark);
  border-radius: 14px;
  padding: 16px 18px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--forest-dark);
}
.nutshell-item .dot-icon {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--terracotta);
  flex-shrink: 0;
}

.whatsapp-line {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--terracotta-dark);
}

/* ================= Responsive ================= */
@media (max-width: 980px) {
  .split { grid-template-columns: 1fr; gap: 36px; }
  .split.split--reverse .split-media { order: 0; }
  .split-media img { aspect-ratio: 16/10; }
  .section-image img { aspect-ratio: 16/10; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .pillars { grid-template-columns: repeat(3, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-row { grid-template-columns: repeat(2, 1fr); }
  .stats .container { grid-template-columns: repeat(2, 1fr); }
  .retreat-features { grid-template-columns: 1fr; }
  .nutshell-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .section { padding: 76px 0; }
  .nav-links {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(78vw, 320px);
    background: var(--forest-dark);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 40px;
    transform: translateX(100%);
    box-shadow: -10px 0 40px rgba(0,0,0,0.25);
    transition: transform 0.4s cubic-bezier(.4,0,.2,1);
  }
  .nav-links.is-open { transform: translateX(0); }
  .nav-links a {
    color: var(--sand);
    opacity: 0;
    font-size: 1.1rem;
    transform: translateX(14px);
    transition: opacity 0.35s ease, transform 0.35s ease;
  }
  .nav-links.is-open a { opacity: 1; transform: translateX(0); }
  .nav-links.is-open a:nth-child(1) { transition-delay: 0.06s; }
  .nav-links.is-open a:nth-child(2) { transition-delay: 0.11s; }
  .nav-links.is-open a:nth-child(3) { transition-delay: 0.16s; }
  .nav-links.is-open a:nth-child(4) { transition-delay: 0.21s; }
  .nav-links.is-open a:nth-child(5) { transition-delay: 0.26s; }
  .nav-links.is-open a:nth-child(6) { transition-delay: 0.31s; }
  .nav-links.is-open a:nth-child(7) { transition-delay: 0.36s; }
  .nav-toggle { display: block; z-index: 110; }
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .cards { grid-template-columns: 1fr 1fr; }
  .feature-row { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .stats .container { grid-template-columns: repeat(2, 1fr); }
  footer .container { flex-direction: column; text-align: center; }
  .retreat-card { padding: 28px; }
  .retreat-schedule { flex-direction: column; align-items: flex-start; }
  .nutshell-grid { grid-template-columns: 1fr; }
  .page-header { padding: 130px 0 44px; }
  .schedule-day { min-height: 64px; padding: 5px; }
  .schedule-nav { padding: 16px; }
  .schedule-nav h3 { font-size: 1.05rem; min-width: 120px; }
  .schedule-weekdays span { font-size: 0.62rem; padding: 8px 2px; }
  .schedule-event { padding: 2px 3px; font-size: 0.6rem; }
  .schedule-event .time { display: none; }
  .schedule-day .date-num { width: 20px; height: 20px; font-size: 0.72rem; }
}
