@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Merriweather:wght@700&display=swap');

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

:root {
  --bg: #f7f6f2;
  --surface: #ffffff;
  --border: #e2dfd8;
  --text: #1a1a1a;
  --muted: #6b6860;
  --accent: #2d6a4f;
  --accent-light: #d8f3dc;
  --tag-bg: #eef2ff;
  --tag-text: #3730a3;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.logo {
  font-family: 'Merriweather', serif;
  font-size: 1.2rem;
  color: var(--accent);
  text-decoration: none;
}

nav a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.9rem;
  margin-left: 1.5rem;
  font-weight: 500;
}

nav a:hover, nav a.active { color: var(--text); }

.page-hero {
  max-width: 720px;
  margin: 3.5rem auto 2.5rem;
  padding: 0 2rem;
}

.page-hero .section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.page-hero h1 {
  font-family: 'Merriweather', serif;
  font-size: 2rem;
  line-height: 1.25;
  margin-bottom: 0.75rem;
}

.page-hero p {
  color: var(--muted);
  font-size: 1rem;
  max-width: 560px;
}

.section {
  max-width: 900px;
  margin: 0 auto 4rem;
  padding: 0 2rem;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.section h2 {
  font-family: 'Merriweather', serif;
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.25rem;
}

.card h3 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.card p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.5;
}

.tag {
  display: inline-block;
  background: var(--tag-bg);
  color: var(--tag-text);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  margin-bottom: 0.6rem;
}

.about-band {
  background: var(--accent-light);
  border-top: 1px solid #b7e4c7;
  padding: 3rem 2rem;
  text-align: center;
}

.about-band p {
  max-width: 560px;
  margin: 0 auto;
  font-size: 0.95rem;
  color: #1b4332;
  line-height: 1.7;
}

footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 1.25rem 2rem;
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
}
