
:root {
  --bg: #f7f5f0;
  --paper: #fff;
  --text: #222;
  --muted: #666;
  --accent: #7b1e24;
  --line: #ddd6cb;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text); background: var(--bg); line-height: 1.6;
}
a { color: var(--accent); }
header { background: var(--paper); border-bottom: 1px solid var(--line); }
.nav {
  max-width: 1050px; margin: auto; padding: 14px 20px;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
}
.brand { text-decoration: none; color: var(--text); font-weight: 800; letter-spacing: .08em; }
nav a { text-decoration: none; margin-left: 18px; font-weight: 600; }
main { max-width: 1050px; margin: auto; padding: 0 20px 60px; }
.hero { margin-top: 22px; background: var(--paper); }
.hero img { display:block; width:100%; height:auto; max-height:620px; object-fit:cover; }
.anniv {
  text-align:center; padding: 22px 16px; background: var(--accent); color:white;
}
.anniv strong { display:block; font-size: clamp(1.5rem, 4vw, 2.4rem); }
.anniv span { font-size: 1.05rem; }
section { background: var(--paper); margin-top: 22px; padding: 28px; }
h1, h2 { line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.3rem); margin: 0 0 10px; }
h2 { font-size: 1.7rem; margin-top: 0; }
.lead { font-size: 1.15rem; color: var(--muted); }
.event { padding: 14px 0; border-bottom: 1px solid var(--line); }
.event:last-child { border-bottom:0; }
.date { font-weight:800; font-size:1.05rem; }
.past { color:#888; }
.note { color:var(--muted); font-size:.95rem; }
.musicians { list-style:none; padding:0; margin:0; }
.musicians li { padding:10px 0; border-bottom:1px solid var(--line); }
.musicians li:last-child { border-bottom:0; }
footer { max-width:1050px; margin:auto; padding:25px 20px 45px; color:var(--muted); font-size:.9rem; }
footer a { margin-right:16px; }
@media (max-width: 650px) {
  .nav { align-items:flex-start; flex-direction:column; }
  nav a { margin:0 14px 0 0; display:inline-block; }
  section { padding:22px 18px; }
}
