/* ---------- Czech-inspired palette ---------- */
:root {
  --cream: #f6efe1;
  --ivory: #fbf6ea;
  --red: #b8242a;
  --red-dark: #8e1a1f;
  --navy: #11457e;
  --navy-dark: #0c3261;
  --gold: #c9a961;
  --ink: #1a1f2e;
  --muted: #5a6072;
  --border: rgba(26, 31, 46, 0.12);
  --shadow: 0 12px 40px rgba(12, 50, 97, 0.10);
  --max: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--red); text-decoration: none; }
a:hover { color: var(--red-dark); }

h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin: 0 0 0.5em;
}
h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.75rem); }
h3 { font-size: 1.35rem; }

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

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 246, 234, 0.92);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--border);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: flex; align-items: center; gap: 0.65rem; color: var(--ink); font-weight: 600; }
.brand-mark {
  display: inline-grid; place-items: center;
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--red); color: var(--ivory);
  font-size: 1rem; box-shadow: var(--shadow);
}
.brand-name { font-family: 'Playfair Display', serif; font-size: 1.05rem; }
.nav-links { display: flex; gap: 1.75rem; list-style: none; margin: 0; padding: 0; }
.nav-links a { color: var(--ink); font-weight: 500; font-size: 0.95rem; }
.nav-links a:hover { color: var(--red); }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; transition: transform .2s; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block; padding: 0.95rem 1.75rem;
  font-weight: 600; font-size: 0.95rem; letter-spacing: 0.02em;
  border-radius: 2px; border: 0; cursor: pointer; transition: transform .15s, background .15s;
}
.btn-primary { background: var(--red); color: var(--ivory); }
.btn-primary:hover { background: var(--red-dark); color: var(--ivory); transform: translateY(-1px); }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, var(--ivory) 0%, var(--cream) 100%);
  padding: clamp(4rem, 10vw, 8rem) 0 clamp(5rem, 12vw, 9rem);
}
.hero-inner { position: relative; z-index: 1; max-width: 820px; }
.eyebrow, .section-eyebrow {
  display: inline-block; text-transform: uppercase; letter-spacing: 0.18em;
  font-size: 0.78rem; font-weight: 600; color: var(--red);
  margin-bottom: 1rem;
}
.section-eyebrow-light { color: var(--gold); }
.hero h1 { color: var(--navy); }
.hero-tagline { font-size: 1.2rem; color: var(--muted); max-width: 38em; margin: 0 0 2rem; }
.hero-ornament {
  position: absolute; right: -120px; top: -120px;
  width: 480px; height: 480px; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(184, 36, 42, 0.18), transparent 60%),
              radial-gradient(circle at 70% 70%, rgba(17, 69, 126, 0.18), transparent 60%);
  filter: blur(8px);
}

/* ---------- Sections ---------- */
.section { padding: clamp(4rem, 8vw, 6.5rem) 0; }
.section-light { background: var(--ivory); }
.section-cream { background: var(--cream); }
.section-dark { background: var(--navy); color: var(--ivory); }
.section-dark h2 { color: var(--ivory); }
.section-lede { font-size: 1.1rem; color: var(--muted); max-width: 42em; margin: 0 0 3rem; }
.section-lede-light { color: rgba(251, 246, 234, 0.78); }

/* ---------- Program cards ---------- */
.card-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.card {
  background: #fff; padding: 2rem 1.75rem; border-radius: 4px;
  border-top: 3px solid var(--red);
  box-shadow: var(--shadow); transition: transform .2s, box-shadow .2s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 18px 50px rgba(12, 50, 97, 0.14); }
.card-number { font-family: 'Playfair Display', serif; color: var(--gold); font-size: 0.95rem; letter-spacing: 0.08em; }
.card h3 { color: var(--navy); margin-top: 0.4rem; }
.card p { color: var(--muted); margin: 0; }

/* ---------- Why Play list ---------- */
.reason-list {
  list-style: none; padding: 0; margin: 1.5rem 0 0;
  display: grid; gap: 1rem;
  max-width: 52em;
}
.reason-list li {
  position: relative;
  padding: 0.25rem 0 0.25rem 2rem;
  color: rgba(251, 246, 234, 0.85);
  font-size: 1.05rem;
}
.reason-list li::before {
  content: "♪";
  position: absolute; left: 0; top: 0.15rem;
  color: var(--gold);
  font-size: 1.15rem;
}
.reason-list strong { color: var(--ivory); font-weight: 600; }

/* ---------- Schedule list ---------- */
.schedule-list { list-style: none; padding: 0; margin: 0; }
.schedule-list li {
  display: grid;
  grid-template-columns: 180px 160px 1fr;
  gap: 1.5rem; align-items: baseline;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(251, 246, 234, 0.18);
}
.schedule-list li:last-child { border-bottom: 0; }
.schedule-day { font-family: 'Playfair Display', serif; font-size: 1.25rem; color: var(--ivory); }
.schedule-time { color: var(--gold); font-weight: 500; letter-spacing: 0.04em; }
.schedule-desc { color: rgba(251, 246, 234, 0.78); }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid; gap: 3rem;
  grid-template-columns: 1fr 1.1fr;
  align-items: start;
}
.contact-meta { list-style: none; padding: 0; margin: 2rem 0 0; display: grid; gap: 1rem; }
.contact-meta li { display: grid; grid-template-columns: 110px 1fr; gap: 0.5rem; }
.contact-meta strong {
  font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--red); font-weight: 600;
}
.contact-meta span { color: var(--ink); }

.contact-form {
  display: grid; gap: 1rem;
  background: #fff; padding: 2.25rem; border-radius: 4px;
  border-top: 3px solid var(--navy);
  box-shadow: var(--shadow);
}
.contact-form label {
  display: grid; gap: 0.4rem;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted);
}
.contact-form input, .contact-form textarea {
  font-family: inherit; font-size: 1rem; font-weight: 400;
  text-transform: none; letter-spacing: normal; color: var(--ink);
  padding: 0.75rem 0.9rem; border: 1px solid var(--border); border-radius: 3px;
  background: var(--ivory); transition: border-color .15s, background .15s, box-shadow .15s;
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: 0; border-color: var(--navy); background: #fff;
  box-shadow: 0 0 0 3px rgba(17, 69, 126, 0.12);
}
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form .btn { justify-self: start; margin-top: 0.5rem; }
.form-status { margin: 0; font-size: 0.9rem; min-height: 1.2em; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-dark); color: rgba(251, 246, 234, 0.7);
  padding: 2.25rem 0; font-size: 0.9rem;
}
.footer-inner { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center; }
.footer-tag { font-style: italic; color: var(--gold); margin: 0; }
.site-footer p { margin: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 820px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute; top: 72px; left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: var(--ivory); border-bottom: 1px solid var(--border);
    max-height: 0; overflow: hidden; transition: max-height .25s ease;
  }
  .nav-links.open { max-height: 320px; }
  .nav-links li { width: 100%; border-top: 1px solid var(--border); }
  .nav-links a { display: block; padding: 1rem 1.5rem; }

  .schedule-list li { grid-template-columns: 1fr; gap: 0.25rem; padding: 1.25rem 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-meta li { grid-template-columns: 90px 1fr; }
  .footer-inner { justify-content: center; text-align: center; }
  .brand-name { font-size: 0.95rem; }
}
