:root {
  --gold: #b8860b;
  --gold-light: #d4a84b;
  --blue-deep: #1a237e;
  --blue-medium: #283593;
  --cream: #faf8f5;
  --cream-dark: #f0ebe3;
  --ink: #2c2416;
  --ink-muted: #5c5344;
}

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

body {
  font-family: 'PT Serif', Georgia, serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.7;
  min-height: 100vh;
}

a {
  color: var(--blue-deep);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  color: var(--ink-muted);
  font-size: 0.95rem;
}

.back-link:hover {
  color: var(--blue-deep);
}

header {
  background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue-medium) 100%);
  color: var(--cream);
  padding: 2rem 1.5rem;
  text-align: center;
}

header h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.3rem, 3.5vw, 1.8rem);
  font-weight: 700;
}

header .subtitle {
  font-size: 0.85rem;
  opacity: 0.9;
  margin-top: 0.5rem;
}

main {
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem 1.5rem 3rem;
}

h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--blue-deep);
  margin-bottom: 1rem;
  padding-bottom: 0.4rem;
  border-bottom: 2px solid var(--gold);
}

section {
  margin-bottom: 2rem;
}

section p {
  margin-bottom: 0.75rem;
  color: var(--ink);
}

section ul {
  margin: 0.75rem 0 0 1.5rem;
}

section ul li {
  margin-bottom: 0.4rem;
}

.schedule-table-wrap {
  margin-top: 0.5rem;
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
}

.schedule-table th,
.schedule-table td {
  padding: 0.6rem 1rem;
  text-align: left;
  border: 1px solid rgba(184, 134, 11, 0.3);
}

.schedule-table th {
  background: var(--cream-dark);
  color: var(--blue-deep);
  font-weight: 600;
}

footer {
  text-align: center;
  padding: 1.5rem;
  color: var(--ink-muted);
  font-size: 0.85rem;
}

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

footer a:hover {
  text-decoration: underline;
}

@media (max-width: 600px) {
  header {
    padding: 1.5rem 1rem;
  }
  header h1 {
    font-size: 1.2rem;
  }
  main {
    padding: 1.25rem 1rem 2rem;
  }
  h2 {
    font-size: 1.15rem;
  }
  .schedule-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .schedule-table {
    min-width: 280px;
  }
  .schedule-table th,
  .schedule-table td {
    padding: 0.5rem 0.75rem;
    font-size: 0.9rem;
  }
  .back-link {
    font-size: 0.9rem;
  }
}
