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

:root {
  --red: #7e0917;
  --red-dark: #3e0917;
  --gray: #999;
  --white: #fff;
}

html, body {
  height: 100%;
}

body {
  background: var(--white);
  color: #111;
  font-family: Verdana, Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.6;
}

a {
  color: var(--red);
  text-decoration: none;
}
a:visited {
  color: var(--red);
}
a:hover {
  text-decoration: underline;
}

/* ── Layout ─────────────────────────────────── */
.site-wrapper {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 16px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ── Header / title bar ──────────────────────── */
.site-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 2px solid var(--red-dark);
  flex-shrink: 0;
}

.site-header a {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-header img {
  display: block;
}

/* ── Body grid ───────────────────────────────── */
.site-body {
  display: flex;
  gap: 24px;
  padding: 20px 0;
  align-items: stretch;
  flex: 1 0 auto;
}

/* ── Nav ─────────────────────────────────────── */
.site-nav {
  flex: 0 0 130px;
}

.site-nav ul {
  list-style: none;
}

.site-nav li {
  margin-bottom: 4px;
}

.site-nav a {
  display: block;
}

.site-nav a img {
  display: block;
  width: 100%;
  max-width: 120px;
}

.site-nav a:hover {
  text-decoration: underline;
}

.site-nav .mailing-list {
  margin-top: 16px;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ── Main content ────────────────────────────── */
.site-content {
  flex: 1 1 auto;
  min-width: 0;
  background: url('images/2012logo_BG.jpg') no-repeat center 60px;
}

/* ── News / index ────────────────────────────── */
.news-item {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--red-dark);
}

.news-item:last-child {
  border-bottom: none;
}

.news-headline {
  font-weight: bold;
  margin-bottom: 4px;
}

.news-date {
  color: var(--gray);
  font-size: 12px;
  margin-bottom: 8px;
}

/* ── Music page ──────────────────────────────── */
.track-list {
  list-style: none;
}

.track-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--red-dark);
}

.track-list li:first-child {
  border-top: 1px solid var(--red-dark);
}

.track-list .track-title {
  font-weight: bold;
  margin-bottom: 6px;
}

.track-list audio {
  width: 100%;
  max-width: 480px;
  display: block;
  margin-top: 4px;
}

/* ── Bio / History ───────────────────────────── */
.bio-grid {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.bio-grid img {
  max-width: 160px;
  flex-shrink: 0;
}

.history-photo {
  display: block;
  max-width: 100%;
  margin: 20px auto 0;
}

/* ── Footer ──────────────────────────────────── */
.site-footer {
  border-top: 1px solid #ddd;
  padding: 12px 0;
  color: var(--gray);
  font-size: 11px;
  text-align: center;
  flex-shrink: 0;
}

/* ── Responsive ──────────────────────────────── */
@media (max-width: 600px) {
  .site-body {
    flex-direction: column;
  }

  .site-nav {
    flex: none;
    width: 100%;
  }

  .site-nav ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .bio-grid {
    flex-direction: column;
  }
}
