:root {
  --primary: #1c1c1c;
  --secondary: #2e2a26;
  --copper: #b57a3d;
  --sand: #e8dcc8;
  --white: #ffffff;
  --green: #5f8a5d;
  --mist: #f8f5ef;
  --line: rgba(46, 42, 38, 0.14);
  --shadow: 0 18px 48px rgba(28, 28, 28, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--primary);
  background: var(--mist);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand {
  color: var(--secondary);
  font-size: 1.05rem;
  font-weight: 800;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: rgba(28, 28, 28, 0.78);
  font-size: 0.92rem;
}

.site-nav a:hover,
.site-footer a:hover {
  color: var(--copper);
}

.section-shell {
  padding: 56px clamp(18px, 5vw, 72px);
}

.section-heading {
  max-width: 680px;
  margin-bottom: 24px;
}

.section-heading h1,
.section-heading h2,
.about-band h2 {
  margin: 0;
  color: var(--secondary);
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.1;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--copper);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.muted-band {
  background: var(--sand);
}

.about-band {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(260px, 1fr);
  gap: 28px;
  padding: 56px clamp(18px, 5vw, 72px);
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-band p:last-child {
  margin: 0;
  max-width: 760px;
  color: rgba(28, 28, 28, 0.72);
  font-size: 1.08rem;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 72px);
  color: var(--white);
  background: var(--primary);
}

.empty-state {
  padding: 24px;
  color: rgba(28, 28, 28, 0.68);
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.button,
button {
  min-height: 44px;
  padding: 11px 18px;
  color: var(--white);
  background: var(--green);
  border: 0;
  border-radius: 6px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.button.secondary,
button.secondary {
  color: var(--secondary);
  background: var(--sand);
}

.button.copper,
button.copper {
  background: var(--copper);
}
