:root {
  --bg: #3e2b1e;
  --bg-elevated: #4b3621;
  --surface: #523828;
  --text: #e6d5b8;
  --text-muted: #b89a78;
  --accent: #8b5e3c;
  --accent-hover: #a6754a;
  --accent-soft: rgba(139, 94, 60, 0.22);
  --border: rgba(230, 213, 184, 0.12);
  --radius: 10px;
  --font-display: "Rye", "Libre Baskerville", Georgia, serif;
  --font-body: "Libre Baskerville", Georgia, serif;
  --shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  position: relative;
}

/* Subtle paper / leather grain */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

body > * {
  position: relative;
  z-index: 1;
}

.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 100;
  padding: 0.5rem 1rem;
  background: var(--accent);
  color: var(--bg);
  font-weight: 600;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(62, 43, 30, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  overflow: visible;
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.65rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  overflow: visible;
}

.brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: inherit;
  min-width: 0;
}

.brand-logo {
  flex-shrink: 0;
  object-fit: contain;
  height: 4.25rem;
  width: auto;
  max-width: min(220px, 52vw);
  border-radius: 4px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

/* Logo already reads “Isaac Glover Music”; keep text for a11y / SEO, hide visually */
.brand-name {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
  gap: 0.1rem;
}

.brand-tagline {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-style: italic;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 1.1rem;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: var(--font-body);
}

.nav a {
  color: var(--text-muted);
  text-decoration: none;
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--text);
  border-bottom-color: var(--accent);
}

.nav-item--dropdown {
  position: relative;
  display: flex;
  align-items: center;
  align-self: center;
}

.nav-dropdown-trigger {
  color: var(--text-muted);
  text-decoration: none;
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  font-weight: 600;
}

.nav-dropdown-trigger:hover,
.nav-dropdown-trigger:focus-visible {
  color: var(--text);
  border-bottom-color: var(--accent);
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 6px);
  min-width: 12.5rem;
  margin: 0;
  padding: 0.4rem 0;
  list-style: none;
  background: rgba(62, 43, 30, 0.98);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s ease, visibility 0.18s, transform 0.18s ease;
  z-index: 80;
}

.nav-item--dropdown:hover .nav-dropdown,
.nav-item--dropdown:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 2px);
}

.nav-dropdown li {
  margin: 0;
}

.nav-dropdown a {
  display: block;
  padding: 0.55rem 1.1rem;
  color: var(--text-muted);
  text-decoration: none;
  border-bottom: none;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: none;
  font-weight: 600;
}

.nav-dropdown a:hover,
.nav-dropdown a:focus-visible {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.library-main {
  min-height: 42vh;
}

.library-page-title {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 4vw, 2.1rem);
  margin: 0 0 0.75rem;
}

.library-page-lead {
  color: var(--text-muted);
  margin: 0;
  max-width: 48ch;
}

.library-album-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1.5rem;
  justify-items: center;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
}

.library-album-list > li {
  max-width: min(100%, 520px);
}

.library-album-card {
  display: block;
  padding: 0;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: border-color 0.15s, transform 0.15s, box-shadow 0.15s;
}

.library-album-card:hover,
.library-album-card:focus-visible {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.library-album-thumb {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}

main {
  overflow-x: hidden;
}

.hero {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 3.5rem 1.25rem 4.5rem;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 38rem;
  padding-left: 0.35rem;
  border-left: 3px solid var(--accent);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4.5vw, 2.65rem);
  font-weight: 400;
  line-height: 1.2;
  margin: 0 0 1rem;
  letter-spacing: 0.02em;
  text-shadow: 1px 2px 0 rgba(0, 0, 0, 0.2);
}

.hero-lead {
  color: var(--text-muted);
  font-size: 1.08rem;
  margin: 0 0 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.35rem;
  border-radius: 4px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s, filter 0.15s;
}

.btn-primary {
  background: var(--accent);
  color: #f5f5dc;
  border-color: rgba(0, 0, 0, 0.15);
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.2);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--accent-hover);
  filter: brightness(1.02);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  border-color: var(--accent);
  color: var(--text);
}

.btn-buy {
  flex: 1 1 auto;
  min-width: 130px;
  font-size: 0.78rem;
  padding: 0.5rem 0.65rem;
}

.btn-buy[disabled],
.btn-buy.is-placeholder {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.hero-accent {
  position: absolute;
  right: -8%;
  top: 5%;
  width: min(380px, 50vw);
  height: min(380px, 50vw);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, var(--accent-soft), transparent 70%);
  pointer-events: none;
}

.section {
  padding: 2.75rem 0;
  border-top: 1px solid var(--border);
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section-inner.narrow {
  max-width: 640px;
}

.section-title {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 400;
  margin: 0 0 0.75rem;
  letter-spacing: 0.03em;
}

.section-intro {
  color: var(--text-muted);
  margin: 0 0 2rem;
  max-width: 54ch;
}

.listen-teaser .section-inner {
  padding-bottom: 0;
}

.works-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 720px) {
  .works-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.work-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem 1.35rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: var(--shadow);
}

.work-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.75rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.work-meta span:not(:last-child)::after {
  content: "·";
  margin-left: 0.75rem;
  opacity: 0.5;
}

.work-title {
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 400;
  margin: 0;
  line-height: 1.25;
  letter-spacing: 0.02em;
}

.work-desc {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
  flex-grow: 1;
}

.audio-block label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.audio-block audio {
  width: 100%;
  border-radius: 6px;
  opacity: 0.95;
}

.buy-actions-header {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.buy-row {
  width: 100%;
}

.buy-row-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
}

.buy-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  flex: 1 1 120px;
}

.buy-label strong {
  color: var(--text);
  font-weight: 700;
}

.about-section code {
  font-size: 0.85em;
  background: var(--surface);
  padding: 0.15em 0.4em;
  border-radius: 4px;
}

.email-link {
  color: var(--accent-hover);
  font-weight: 700;
  text-decoration: none;
}

.email-link:hover,
.email-link:focus-visible {
  text-decoration: underline;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 2rem 1.25rem;
  margin-top: 2rem;
}

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

.footer-copy {
  margin: 0 0 0.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-note {
  margin: 0;
  font-size: 0.8rem;
  color: var(--text-muted);
  opacity: 0.92;
  max-width: 44rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.55;
}

@media (max-width: 640px) {
  .nav {
    justify-content: flex-end;
  }

  body.page-ol-glory .nav {
    justify-content: center;
  }

  .header-inner {
    flex-wrap: wrap;
  }

  .hero-content {
    border-left-width: 2px;
    padding-left: 0.75rem;
  }
}

/* ----- Hero carousel (home) ----- */
.hero-carousel-section {
  padding: 1.25rem 0 2.5rem;
}

.hero-carousel {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
  --carousel-panel-h: min(70vh, 620px);
}

.carousel-viewport {
  overflow: hidden;
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: var(--bg-elevated);
}

.carousel-track {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
  flex-shrink: 0;
  position: relative;
  height: var(--carousel-panel-h);
}

.carousel-slide-link {
  display: flex;
  align-items: stretch;
  justify-content: center;
  height: var(--carousel-panel-h);
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.carousel-cover-img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  background: #1a1520;
}

.carousel-slide-link--featured .carousel-featured-inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #1a1520;
  box-sizing: border-box;
}

.carousel-featured-ribbon {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.8vw, 1.45rem);
  text-align: center;
  margin: 0;
  padding: 0.55rem 1rem;
  background: linear-gradient(90deg, #6b1f1f 0%, #9b2323 50%, #6b1f1f 100%);
  color: #f4f1e6;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.carousel-featured-img {
  flex: 1 1 auto;
  min-height: 0;
}

.carousel-featured-title {
  font-family: var(--font-body);
  text-align: center;
  margin: 0;
  padding: 0.85rem 1.25rem 1rem;
  background: #f4f1e6;
  color: #1b264f;
  font-weight: 700;
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  line-height: 1.35;
  border-top: 3px solid #1b264f;
}

.carousel-slide-link--social .carousel-social-inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 2rem 1.5rem;
  background: linear-gradient(160deg, #f4f1e6 0%, #e4dcc8 100%);
  border: 3px solid #1b264f;
  box-sizing: border-box;
}

.carousel-social-ribbon {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3.5vw, 1.85rem);
  color: #1b264f;
  margin: 0;
}

.carousel-social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 1.75rem;
  align-items: center;
  justify-content: center;
}

.carousel-brand-svg {
  display: block;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.15));
}

.carousel-social-hint {
  font-size: 0.95rem;
  color: #1b264f;
  margin: 0;
  opacity: 0.88;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.carousel-slide--tba .carousel-tba-inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
  background: linear-gradient(135deg, #1b264f 0%, #3e2b1e 45%, #6b1f1f 100%);
  color: #f4f1e6;
  text-align: center;
  box-sizing: border-box;
}

.carousel-tba-title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3.5vw, 1.75rem);
  margin: 0 0 0.5rem;
}

.carousel-tba-sub {
  margin: 0;
  max-width: 30ch;
  opacity: 0.95;
  line-height: 1.55;
}

.carousel-dots {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.carousel-arrow {
  position: absolute;
  top: calc(var(--carousel-panel-h) / 2);
  transform: translateY(-50%);
  width: auto;
  height: auto;
  border: 0;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.1rem 0.15rem;
  z-index: 3;
  box-shadow: none;
}

.carousel-arrow::before {
  content: none;
}

.carousel-arrow span {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.2vw, 3.4rem);
  line-height: 1;
  transform: translateY(-0.02em);
  color: #e6d5b8;
  text-shadow:
    0 1px 0 #3b2a1d,
    0 2px 0 #2f2117,
    0 6px 14px rgba(0, 0, 0, 0.45);
}

.carousel-arrow--prev {
  left: -1rem;
}

.carousel-arrow--next {
  right: -1rem;
}

.carousel-arrow:hover,
.carousel-arrow:focus-visible {
  outline: none;
}

.carousel-arrow:hover span,
.carousel-arrow:focus-visible span {
  color: #f3e6ce;
  text-shadow:
    0 1px 0 #4b3424,
    0 2px 0 #3b291d,
    0 8px 16px rgba(0, 0, 0, 0.5);
}

.carousel-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background 0.15s, transform 0.15s;
}

.carousel-dot.is-active {
  background: var(--accent);
  transform: scale(1.15);
}

@media (max-width: 640px) {
  .carousel-arrow--prev {
    left: -0.75rem;
  }

  .carousel-arrow--next {
    right: -0.75rem;
  }
}

.hero-home-copy {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 1.25rem 0;
  border-left: 3px solid var(--accent);
}

.hero-home-title {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 4vw, 2.45rem);
  margin: 0 0 0.75rem;
  line-height: 1.2;
}

.hero-home-lead {
  color: var(--text-muted);
  margin: 0 0 1.25rem;
  max-width: 54ch;
}

.hero-home-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.follow-social-section {
  border-top: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.12);
}

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

.follow-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1.35rem 1rem;
  border-radius: var(--radius);
  text-decoration: none;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  color: var(--text);
  transition: border-color 0.15s, transform 0.15s, box-shadow 0.15s;
}

.follow-tile:hover,
.follow-tile:focus-visible {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.follow-tile-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.follow-icon-svg {
  display: block;
}

.follow-tile-label {
  font-weight: 700;
  font-size: 0.92rem;
  text-align: center;
  line-height: 1.35;
}

.follow-tile--youtube {
  color: #c94a4a;
}

.follow-tile--facebook {
  color: #6b8cce;
}

.follow-tile--instagram {
  color: #c76b5c;
}

.follow-tile--x {
  color: #b89a78;
}

/* ----- Ol' Glory album page ----- */
.album-banner-wrap {
  background: #1b264f;
  line-height: 0;
}

.album-banner-img {
  width: 100%;
  height: auto;
  max-height: min(50vh, 480px);
  object-fit: cover;
  display: block;
  object-position: center 20%;
}

.album-tracks-section {
  background: linear-gradient(180deg, #f4f1e6 0%, #ebe4d4 55%, #e2d9c8 100%);
  color: #1b264f;
  border-top: 4px solid #9b2323;
}

.album-tracks-title {
  color: #1b264f;
}

body.page-ol-glory .header-inner {
  justify-content: center;
  flex-wrap: wrap;
}

body.page-ol-glory .nav {
  justify-content: center;
}

body.page-ol-glory .album-tracks-title {
  text-align: center;
  width: 100%;
}

.album-page-lead,
.album-catalog-intro {
  color: #3d3655;
}

.ol-glory-teaser-text {
  text-align: center;
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  line-height: 1.65;
  max-width: 42ch;
  margin: 0 auto;
  color: #2f2a48;
  font-weight: 600;
}

.page-ol-glory .work-card {
  background: #fffef9;
  border-color: rgba(27, 38, 79, 0.22);
  color: #1b264f;
  box-shadow: 0 18px 42px rgba(27, 38, 79, 0.12);
}

.page-ol-glory .work-meta {
  color: #5a5470;
}

.page-ol-glory .work-title {
  color: #1b264f;
}

.page-ol-glory .work-desc {
  color: #4a4458;
}

.page-ol-glory .buy-actions-header {
  color: #5a5470;
}

.page-ol-glory .buy-label {
  color: #4a4458;
}

.page-ol-glory .buy-label strong {
  color: #1b264f;
}

.page-ol-glory .audio-block label {
  color: #5a5470;
}

.page-ol-glory .btn-primary {
  background: #9b2323;
  color: #f4f1e6;
  border-color: rgba(27, 38, 79, 0.35);
}

.page-ol-glory .btn-primary:hover,
.page-ol-glory .btn-primary:focus-visible {
  filter: brightness(1.07);
}

.work-cover {
  margin: 0 0 1rem;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(27, 38, 79, 0.12);
}

.work-cover img {
  width: 100%;
  display: block;
  max-height: 220px;
  object-fit: cover;
}

/* ----- About page (logo hero + bio / company copy) ----- */
.about-intro-section {
  border-bottom: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.06);
}

.about-logo-hero {
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.75rem 1.25rem 0.25rem;
}

.about-logo-hero-img {
  display: inline-block;
  width: auto;
  height: auto;
  max-width: min(260px, 72vw);
  max-height: min(38vh, 380px);
  object-fit: contain;
  vertical-align: middle;
}

.about-intro-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.75rem 1.25rem 2.5rem;
}

.about-intro-text {
  max-width: 100%;
}

.about-body-with-note {
  position: relative;
}

.about-body-with-note::after {
  content: "";
  display: table;
  clear: both;
}

/* Floated eighth notes (several): alternate margins, stack down the page, text wraps */
.about-decor-note {
  width: min(120px, 26vw);
  height: min(152px, 33vw);
  margin-top: 0.35rem;
  margin-bottom: 0.65rem;
  shape-outside: ellipse(46% 50% at 48% 52%);
  color: var(--accent);
  opacity: 0.48;
  pointer-events: none;
  user-select: none;
}

.about-decor-note:first-child {
  margin-top: 0.1rem;
  opacity: 0.55;
}

.about-decor-note--margin-right {
  float: right;
  clear: none;
  margin-left: 1rem;
  margin-right: 0;
}

.about-decor-note--margin-left {
  float: left;
  clear: both;
  margin-right: 1rem;
  margin-left: 0;
  shape-outside: ellipse(46% 50% at 52% 52%);
}

.about-decor-note--margin-right:not(:first-child) {
  clear: both;
}

.about-decor-note-rotate {
  display: block;
  width: 100%;
  height: 100%;
  transform: rotate(var(--note-angle, 10deg)) scale(var(--note-scale, 1));
  transform-origin: 50% 50%;
}

.about-decor-note-svg {
  width: 100%;
  height: 100%;
  display: block;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.25));
}

@media (max-width: 520px) {
  .about-decor-note {
    float: none !important;
    clear: both !important;
    width: min(88px, 38vw);
    height: min(112px, 48vw);
    margin: 0 auto 0.65rem !important;
    shape-outside: none;
    display: block;
    opacity: 0.42;
  }

  .about-decor-note:first-child {
    margin-top: 0;
  }
}

.about-page-body--catalog {
  margin-top: 0.25rem;
}

.about-page-body--catalog code {
  font-size: 0.92em;
  padding: 0.1em 0.35em;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.08);
}

.about-page-main {
  min-height: 50vh;
}

.about-page-title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.35rem);
  margin: 0 0 0.85rem;
}

.about-page-body {
  color: var(--text-muted);
  line-height: 1.65;
  text-align: justify;
}

.about-page-body p {
  margin: 0 0 1rem;
}

.about-page-body p.about-lead {
  margin: 0 0 1.35rem;
  color: var(--text);
  font-size: 1.06rem;
}

/* Background Text Highlighter (BTH): left accent bar + tinted panel + radius + shadow. Add class `bth` when you want this (e.g. `about-lead bth` on the first About paragraph). */
.bth {
  padding: 1rem 1.2rem 1.15rem 1.2rem;
  border-left: 4px solid var(--accent);
  border-radius: 0 8px 8px 0;
  background: rgba(155, 35, 35, 0.09);
  box-shadow: 0 1px 3px rgba(27, 38, 79, 0.06);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.album-index-scroll {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.album-index-table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  font-size: 0.95rem;
  background: #fffef9;
  border: 1px solid rgba(27, 38, 79, 0.2);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(27, 38, 79, 0.08);
}

.album-index-table thead {
  background: #1b264f;
  color: #f4f1e6;
}

.album-index-table th {
  text-align: left;
  padding: 0.65rem 0.75rem;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.album-index-table td {
  padding: 0.55rem 0.75rem;
  border-top: 1px solid rgba(27, 38, 79, 0.12);
  vertical-align: middle;
  color: #1b264f;
}

.album-index-table tbody tr:hover {
  background: rgba(155, 35, 35, 0.06);
}

.album-index-num {
  width: 2.25rem;
  text-align: right;
  font-variant-numeric: tabular-nums;
  color: #5a5470;
}

.album-index-star {
  color: #c9a227;
  font-size: 1.05rem;
  line-height: 1;
}

.album-index-thumb-col {
  width: 4.5rem;
}

.album-index-thumb img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 4px;
  display: block;
  border: 1px solid rgba(27, 38, 79, 0.2);
}

.album-index-cat {
  white-space: nowrap;
  font-weight: 700;
  color: #6b2f2f;
}

.album-index-title a {
  color: #1b264f;
  font-weight: 700;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.album-index-title a:hover,
.album-index-title a:focus-visible {
  color: #9b2323;
  text-decoration: underline;
}

.album-index-inst {
  color: #4a4458;
  font-size: 0.88rem;
}

.song-page-shell {
  background: linear-gradient(180deg, #f4f1e6 0%, #ebe4d4 40%, #e5dcc8 100%);
}

.song-root {
  max-width: 720px;
  margin: 0 auto;
  padding: 1.5rem 1.25rem 3rem;
  color: #1b264f;
}

.song-breadcrumb {
  margin-bottom: 1.25rem;
}

.song-breadcrumb-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  font-size: 0.88rem;
}

.song-breadcrumb-list li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.song-breadcrumb-list li + li::before {
  content: "›";
  opacity: 0.45;
  font-weight: 400;
}

.song-breadcrumb-list a {
  color: #5a2a2a;
  font-weight: 600;
  text-decoration: none;
}

.song-breadcrumb-list a:hover,
.song-breadcrumb-list a:focus-visible {
  text-decoration: underline;
}

.song-cover-hero {
  margin: 0 0 1.25rem;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid rgba(27, 38, 79, 0.2);
  box-shadow: 0 12px 32px rgba(27, 38, 79, 0.12);
}

.song-cover-img {
  width: 100%;
  display: block;
  max-height: min(56vh, 520px);
  object-fit: contain;
  background: #2a2438;
}

.song-piece-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4.5vw, 2.35rem);
  margin: 0 0 0.5rem;
  line-height: 1.15;
}

.song-piece-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.song-chip {
  display: inline-block;
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
  background: rgba(27, 38, 79, 0.1);
  font-size: 0.82rem;
  font-weight: 700;
}

.song-chip--muted {
  background: rgba(155, 35, 35, 0.15);
  color: #5a2a2a;
}

.song-chip--bonus {
  background: rgba(201, 162, 39, 0.2);
  color: #6b4f00;
}

.song-piece-desc p {
  margin: 0 0 1.25rem;
  line-height: 1.65;
  color: #3d3655;
  white-space: pre-line;
  text-align: justify;
}

.song-desc-title-line {
  display: inline-block;
  width: 100%;
  text-align: center;
  font-size: 200%;
  line-height: 1.25;
}

.song-piece-desc .song-desc-lyrics {
  display: inline-block;
  width: 100%;
  text-align: center;
  margin: 0.4rem 0;
  box-sizing: border-box;
}

.song-desc-text.is-collapsed {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
}

.song-read-more {
  appearance: none;
  border: 1px solid rgba(27, 38, 79, 0.25);
  background: rgba(27, 38, 79, 0.08);
  color: #1b264f;
  border-radius: 6px;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.4rem 0.7rem;
  cursor: pointer;
}

.song-read-more:hover,
.song-read-more:focus-visible {
  background: rgba(27, 38, 79, 0.14);
}

.song-composer-notes,
.song-media,
.song-youtube,
.song-shop {
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(27, 38, 79, 0.15);
}

.song-composer-notes-text {
  margin: 0 0 0.95rem;
  color: #3d3655;
  line-height: 1.65;
  text-align: justify;
}

.song-composer-notes-text.is-collapsed {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
}

.song-read-more--notes {
  margin-bottom: 1rem;
}

.song-composer-quote {
  display: block;
  margin: 1.25rem 0 0;
  text-align: center;
  font-style: italic;
  color: #4a4458;
  line-height: 1.65;
}

.song-section-heading {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin: 0 0 0.75rem;
}

.song-youtube-note {
  margin: 0 0 1rem;
  font-size: 0.92rem;
  color: #4a4458;
}

.yt-placeholder-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 1.1rem;
  border-radius: 8px;
  background: #5c3d2e;
  color: #f4f1e6 !important;
  text-decoration: none;
  font-weight: 700;
  border: 2px solid #3e2b1e;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.15);
}

.yt-placeholder-btn:hover,
.yt-placeholder-btn:focus-visible {
  filter: brightness(1.06);
}

.song-not-found,
.song-pick-message {
  color: #1b264f;
  line-height: 1.55;
}

.song-pick-message code {
  font-size: 0.85em;
  background: rgba(27, 38, 79, 0.08);
  padding: 0.1em 0.35em;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  .carousel-track {
    transition: none;
  }
}
