/* =========================================================
   Sonja Kahler — organist
   Typography: Bodoni (display) + Avenir (text), per CD cover.
   Falls back to Bodoni Moda / Nunito Sans from Google Fonts
   on systems without the native faces.
   Accent red from the CD cover: #DB423F
   ========================================================= */

:root {
  --red: #DB423F;
  --ink: #2b2b2b;
  --paper: #fdfcfa;
  --serif: "Bodoni 72", "Bodoni MT", "Bodoni Moda", Didot, serif;
  --sans: "Avenir Next", Avenir, "Nunito Sans", "Helvetica Neue", Arial, sans-serif;
}

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

body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ===== Header ===== */

.site-header {
  text-align: center;
  padding: 4.5rem 1.5rem 3.5rem;
  border-bottom: 4px solid var(--red);
}

.name {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.6rem, 7vw, 4.5rem);
  letter-spacing: 0.02em;
  color: var(--red);
}

.tagline {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  margin-top: 0.25rem;
}

.location {
  margin-top: 1rem;
  font-size: 0.95rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

/* ===== About ===== */

.about {
  padding: 4rem 1.5rem;
}

.about-inner {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(220px, 340px) 1fr;
  gap: 3rem;
  align-items: start;
}

.portrait img {
  border: 6px solid #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.bio h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 2.2rem;
  color: var(--red);
  margin-bottom: 1rem;
}

.bio p {
  font-size: 1.1rem;
  max-width: 32rem;
}

/* ===== CD section ===== */

.cd {
  background: var(--red);
  color: #fff;
  padding: 4.5rem 1.5rem;
}

.cd-inner {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.cd-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.2rem, 6vw, 3.6rem);
  letter-spacing: 0.04em;
}

.cd-title em {
  font-weight: 400;
  letter-spacing: 0;
}

.cd-subtitle {
  font-size: clamp(1.05rem, 2.5vw, 1.35rem);
  margin-top: 0.5rem;
}

.cd-covers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 3rem auto;
  max-width: 820px;
}

.cd-covers img {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s ease;
}

.cd-covers a:hover img {
  transform: scale(1.02);
}

.cd-details {
  max-width: 40rem;
  margin: 0 auto 2.5rem;
  font-size: 1.05rem;
}

/* ===== Liner notes links (main page, red section) ===== */

.liner-notes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

/* ===== Buttons ===== */

.btn {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-decoration: none;
  padding: 0.85rem 2rem;
  border-radius: 3px;
  transition: background 0.2s ease, color 0.2s ease;
}

.btn-primary {
  background: #fff;
  color: var(--red);
}

.btn-primary:hover {
  background: var(--ink);
  color: #fff;
}

.btn-outline {
  border: 2px solid #fff;
  color: #fff;
}

.btn-outline:hover {
  background: #fff;
  color: var(--red);
}

.btn-service {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

/* Inline monochrome icon; fill/stroke use currentColor so it
   follows the button's text color (white, or red on hover). */
.service-icon {
  width: 1.15em;
  height: 1.15em;
  flex-shrink: 0;
}

.streaming {
  margin-top: 3rem;
}

.streaming-label {
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.streaming-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* ===== Footer ===== */

.site-footer {
  text-align: center;
  padding: 3rem 1.5rem;
}

.contact a {
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--red);
  text-decoration: none;
}

.contact a:hover {
  text-decoration: underline;
}

.copyright {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: #8a8a8a;
}

/* ===== Subpages (liner notes) ===== */

.subpage-header {
  padding: 3rem 1.5rem 2.5rem;
}

.home-link {
  margin-bottom: 2rem;
}

.home-link a {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--red);
  text-decoration: none;
}

.home-link a:hover {
  text-decoration: underline;
}

.page-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.9rem, 5vw, 3rem);
  color: var(--red);
  max-width: 46rem;
  margin: 0 auto;
}

.page-subtitle {
  margin-top: 0.75rem;
  font-size: 1.05rem;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}

.notes {
  max-width: 44rem;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  font-size: 1.08rem;
}

.notes p {
  margin-bottom: 1.25rem;
}

.notes section {
  margin-top: 2.75rem;
}

.notes h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.8rem;
  color: var(--red);
  margin-bottom: 0.25rem;
}

.notes h2 .dates {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1rem;
  color: #777;
  white-space: nowrap;
}

.notes h3 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.worklist {
  font-size: 0.98rem;
  color: #555;
  border-left: 3px solid var(--red);
  padding-left: 1rem;
}

ul.worklist {
  list-style: none;
  margin-bottom: 1.25rem;
}

ul.worklist li {
  margin: 0.4rem 0;
}

/* Hidden container holding the streaming-icon symbol definitions */
.icon-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

/* Row of small per-track streaming links */
.track-links {
  white-space: nowrap;
  margin-left: 0.5rem;
}

.track-links a {
  color: #b0b0b0;
  display: inline-block;
  margin-left: 0.45rem;
}

.track-links a:first-child {
  margin-left: 0;
}

.track-links a:hover {
  color: var(--red);
}

.track-icon {
  width: 1em;
  height: 1em;
  fill: currentColor;
  vertical-align: -0.15em;
}

.signature {
  margin-top: 1.5rem;
}

.signature a {
  color: var(--red);
  text-decoration: none;
}

.signature a:hover {
  text-decoration: underline;
}

.spec-intro {
  color: #555;
}

.stoplist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem 2.5rem;
  margin-top: 1.5rem;
}

.division h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.25rem;
  color: var(--red);
  border-bottom: 2px solid var(--red);
  padding-bottom: 0.3rem;
  margin-bottom: 0.6rem;
}

.division .manual {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 0.85rem;
  color: #777;
}

.division ul {
  list-style: none;
  font-size: 0.98rem;
  line-height: 1.75;
}

.division .note {
  font-size: 0.82rem;
  color: #888;
}

.note-photo {
  margin-bottom: 2.25rem;
}

.note-photo img {
  border: 6px solid #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.note-photo figcaption {
  margin-top: 0.75rem;
  text-align: center;
  font-size: 0.9rem;
  color: #777;
  font-style: italic;
}

.notes-source {
  margin-top: 3rem;
  font-size: 0.92rem;
  color: #777;
  font-style: italic;
}

.notes-source a {
  color: var(--red);
}

.notes-nav {
  margin-top: 2rem;
  font-family: var(--serif);
  font-size: 1.15rem;
}

.notes-nav a {
  color: var(--red);
  text-decoration: none;
}

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

/* ===== Small screens ===== */

@media (max-width: 700px) {
  .about-inner {
    grid-template-columns: 1fr;
  }

  .portrait {
    max-width: 320px;
    margin: 0 auto;
  }

  .cd-covers {
    grid-template-columns: 1fr;
    max-width: 420px;
  }

  .stoplist {
    grid-template-columns: 1fr;
  }
}
