/* Shared global typography scaling */
html { font-size: 130%; scroll-behavior: smooth; }
@media (max-width: 700px) { html { font-size: 120%; } }

.locale-switch {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-left: 1rem;
}

.locale-switch a {
  color: rgba(242,237,230,0.65);
  text-decoration: none;
  padding: 0.12rem;
  border: 1px solid rgba(184,151,106,0.22);
  border-radius: 999px;
  width: 1.7rem;
  height: 1.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.locale-switch a svg {
  width: 1.35rem;
  height: 0.9rem;
  display: block;
}

.locale-switch a:hover,
.locale-switch a.is-active {
  color: var(--gold-light, #d4b48a);
  border-color: rgba(184,151,106,0.6);
}

/* ===== Index (index.html) ===== */
body.page-index *, body.page-index *::before, body.page-index *::after { box-sizing: border-box; margin: 0; padding: 0; }
  body.page-index {
    --ink: #1a1612;
    --parchment: #f2ede6;
    --gold: #b8976a;
    --gold-light: #d4b48a;
    --deep: #0d0b09;
  }

  html { font-size: 130%; scroll-behavior: smooth; }
@media (max-width: 700px) { html { font-size: 120%; } }
  body.page-index {
    background: var(--deep);
    color: var(--parchment);
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.125rem;
    line-height: 1.7;
    overflow-x: hidden;
  }

  /* ── HERO ── */
  body.page-index .hero {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 480px;
    max-height: 720px;
    overflow: hidden;
  }

  body.page-index .hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    display: block;
    filter: brightness(0.75) saturate(0.9);
  }

  body.page-index .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to bottom,
      rgba(13,11,9,0.15) 0%,
      rgba(13,11,9,0.05) 40%,
      rgba(13,11,9,0.6) 80%,
      rgba(13,11,9,1) 100%
    );
  }

  body.page-index .hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    gap: 1.5rem;
  }

  body.page-index .hero-quote {
    font-family: 'IM Fell English', Georgia, serif;
    font-style: italic;
    font-size: clamp(1.3rem, 3vw, 2rem);
    color: var(--parchment);
    letter-spacing: 0.02em;
    text-shadow: 0 2px 20px rgba(0,0,0,0.8);
    max-width: 700px;
    line-height: 1.5;
    opacity: 0;
    animation: fadeUp 1.8s ease 0.3s forwards;
  }

  body.page-index .hero-quote-attr {
    font-family: 'Cinzel', serif;
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    color: var(--gold);
    text-shadow: 0 1px 10px rgba(0,0,0,0.9);
    opacity: 0;
    animation: fadeUp 1.8s ease 0.8s forwards;
  }

  /* ── NAV ── */
  body.page-index nav {
    position: absolute;
    top: 0; left: 0; right: 0;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 1rem;
    z-index: 10;
  }

  body.page-index .nav-logo {
    width: 224px;
    height: 224px;
    display: block;
    border-radius: 50%;
    opacity: 0.92;
    filter: drop-shadow(0 2px 12px rgba(0,0,0,0.6));
  }

  body.page-index .nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
  }

  body.page-index .nav-links a {
    font-family: 'Cinzel', serif;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: var(--parchment);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.2s, color 0.2s;
  }

  body.page-index .nav-links a:hover { opacity: 1; color: var(--gold-light); }

  /* ── INTRO ── */
  body.page-index .intro {
    max-width: 780px;
    margin: 0 auto;
    padding: 6rem 2rem 5rem;
    text-align: center;
  }



  body.page-index .intro p {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    font-weight: 300;
    color: var(--parchment);
    line-height: 1.85;
    opacity: 0;
    animation: fadeUp 1.4s ease 0.2s forwards;
  }

  body.page-index .intro em {
    font-style: italic;
    color: var(--gold-light);
  }

  /* ── DIVIDER ── */
  body.page-index .divider {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 2rem;
  }

  body.page-index .divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
  }

  body.page-index .divider-moon {
    color: var(--gold);
    font-size: 1.2rem;
    opacity: 0.7;
  }

  /* ── ARTISTS ── */
  body.page-index .artists-section {
    padding: 5rem 2rem 8rem;
    max-width: 1100px;
    margin: 0 auto;
  }

  body.page-index .section-header {
    text-align: center;
    margin-bottom: 1.5rem;
  }

  body.page-index .section-label {
    font-family: 'Cinzel', serif;
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    color: var(--gold);
    display: block;
    margin-bottom: 0.5rem;
  }

  body.page-index .section-intro {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    font-weight: 300;
    color: rgba(242,237,230,0.75);
    max-width: 680px;
    margin: 1.5rem auto 4rem;
    line-height: 1.8;
    text-align: center;
  }

  body.page-index .artists-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
@media (max-width: 700px) {
    body.page-index .artists-grid { grid-template-columns: 1fr; }
    body.page-index nav { padding: 1rem; }
    body.page-index .nav-links { gap: 1.5rem; }
    body.page-index .nav-logo { width: 160px; height: 160px; }
  }

  body.page-index .artist-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    padding: 2.5rem 2rem;
    border: 1px solid rgba(184,151,106,0.15);
    background: rgba(255,255,255,0.02);
    transition: border-color 0.4s, background 0.4s;
    position: relative;
    text-decoration: none;
    cursor: pointer;
  }

  body.page-index .artist-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(184,151,106,0.04), transparent);
    opacity: 0;
    transition: opacity 0.4s;
  }

  body.page-index .artist-card:hover { border-color: rgba(184,151,106,0.35); }
  body.page-index .artist-card:hover::before { opacity: 1; }

  body.page-index .artist-portrait {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    border: 1px solid rgba(184,151,106,0.3);
    filter: sepia(0.15) brightness(0.95);
    transition: filter 0.4s;
  }

  body.page-index .artist-card:hover .artist-portrait {
    filter: sepia(0.05) brightness(1.02);
  }

  body.page-index .artist-name {
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--parchment);
    margin-bottom: 0.1rem;
  }

  body.page-index .artist-genre {
    font-family: 'Cinzel', serif;
    font-size: 0.62rem;
    letter-spacing: 0.25em;
    color: var(--gold);
    text-transform: uppercase;
  }

  body.page-index .artist-bio {
    font-size: 1rem;
    font-weight: 300;
    color: rgba(242,237,230,0.7);
    line-height: 1.8;
    font-style: italic;
  }

  body.page-index .artist-link {
    font-family: 'Cinzel', serif;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    color: var(--gold);
    text-decoration: none;
    border-bottom: 1px solid rgba(184,151,106,0.3);
    padding-bottom: 2px;
    transition: color 0.2s, border-color 0.2s;
  }

  body.page-index .artist-link:hover { color: var(--gold-light); border-color: var(--gold-light); }

  /* ── FOOTER ── */
  body.page-index footer {
    border-top: 1px solid rgba(184,151,106,0.15);
    padding: 2.5rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
  }

  body.page-index .footer-logo {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    opacity: 0.6;
  }

  body.page-index .footer-copy {
    font-family: 'Cinzel', serif;
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    color: rgba(242,237,230,0.3);
  }

  body.page-index .footer-links {
    display: flex;
    gap: 2rem;
    list-style: none;
  }

  body.page-index .footer-links a {
    font-family: 'Cinzel', serif;
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    color: rgba(242,237,230,0.35);
    text-decoration: none;
    transition: color 0.2s;
  }

  body.page-index .footer-links a:hover { color: var(--gold); }
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
  }

/* ===== Alonso (alonso-quijano.html) ===== */
body.page-alonso *, body.page-alonso *::before, body.page-alonso *::after { box-sizing: border-box; margin: 0; padding: 0; }
  body.page-alonso {
    --parchment: #f2ede6;
    --gold: #b8976a;
    --gold-light: #d4b48a;
    --deep: #0d0b09;
  }

  html { font-size: 130%; scroll-behavior: smooth; }
@media (max-width: 700px) { html { font-size: 120%; } }
  body.page-alonso {
    background: var(--deep);
    color: var(--parchment);
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.125rem;
    line-height: 1.7;
    overflow-x: hidden;
  }

  body.page-alonso nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 1rem;
    z-index: 100;
    background: transparent;
    backdrop-filter: none;
  }
  body.page-alonso nav::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 96px;
    background: linear-gradient(to bottom, rgba(13,11,9,0.85), transparent);
    backdrop-filter: blur(4px);
    pointer-events: none;
    z-index: 0;
  }
  body.page-alonso nav > * {
    position: relative;
    z-index: 1;
  }

  body.page-alonso .nav-logo {
    width: 224px; height: 224px;
    display: block;
    border-radius: 50%;
    opacity: 0.9;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.6));
  }

  body.page-alonso .nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
  }

  body.page-alonso .nav-links a {
    font-family: 'Cinzel', serif;
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    color: var(--parchment);
    text-decoration: none;
    opacity: 0.75;
    transition: opacity 0.2s, color 0.2s;
  }

  body.page-alonso .nav-links a:hover { opacity: 1; color: var(--gold-light); }
  body.page-alonso .nav-links .back { opacity: 0.5; font-size: 0.62rem; }
  body.page-alonso .nav-links .back:hover { opacity: 0.8; }

  body.page-alonso .hero {
    position: relative;
    width: 100%;
    height: 65vh;
    min-height: 420px;
    max-height: 680px;
    overflow: hidden;
  }

  body.page-alonso .hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
    filter: brightness(0.82) saturate(1.02);
  }

  body.page-alonso .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(13,11,9,0.08) 0%, rgba(13,11,9,0.0) 35%, rgba(13,11,9,0.45) 75%, rgba(13,11,9,1) 100%);
  }

  body.page-alonso .hero-content {
    position: absolute;
    bottom: 3rem;
    left: 0; right: 0;
    text-align: center;
    padding: 0 2rem;
    opacity: 0;
    animation: fadeUp 1.6s ease 0.3s forwards;
  }

  body.page-alonso .hero-genre {
    font-family: 'Cinzel', serif;
    font-size: 0.68rem;
    letter-spacing: 0.35em;
    color: var(--gold);
    margin-bottom: 0.75rem;
  }

  body.page-alonso .hero-name {
    font-family: 'Cinzel', serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 400;
    letter-spacing: 0.12em;
    color: var(--parchment);
    text-shadow: 0 2px 30px rgba(0,0,0,0.8);
    line-height: 1.1;
  }

  body.page-alonso .bio-section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 5rem 2rem;
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 4rem;
    align-items: start;
  }
@media (max-width: 720px) {
    body.page-alonso .bio-section { grid-template-columns: 1fr; text-align: center; }
    body.page-alonso .portrait-wrap { margin: 0 auto; }
    body.page-alonso nav { padding: 1rem; }
    body.page-alonso .nav-links { gap: 1.2rem; }
    body.page-alonso .album-card { grid-template-columns: 1fr; }
  }

  body.page-alonso .portrait-wrap {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  body.page-alonso .portrait {
    width: 220px; height: 220px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    border: 1px solid rgba(184,151,106,0.3);
    filter: sepia(0.15) brightness(0.95);
  }

  body.page-alonso .spotify-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Cinzel', serif;
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    color: var(--gold);
    text-decoration: none;
    border: 1px solid rgba(184,151,106,0.3);
    padding: 0.6rem 1.2rem;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
  }

  body.page-alonso .spotify-btn:hover {
    border-color: var(--gold);
    background: rgba(184,151,106,0.08);
    color: var(--gold-light);
  }

  body.page-alonso .bio-text p {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    font-weight: 300;
    line-height: 1.9;
    color: rgba(242,237,230,0.88);
    margin-bottom: 1.5rem;
  }

  body.page-alonso .bio-text p:last-child { margin-bottom: 0; }
  body.page-alonso .bio-text em { font-style: italic; color: var(--gold-light); }

  body.page-alonso .divider {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 2rem;
  }

  body.page-alonso .divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
  }

  body.page-alonso .divider-glyph {
    color: var(--gold);
    font-size: 1rem;
    opacity: 0.6;
  }

  body.page-alonso .releases-section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 4rem 2rem 3rem;
  }

  body.page-alonso .section-label {
    font-family: 'Cinzel', serif;
    font-size: 0.68rem;
    letter-spacing: 0.3em;
    color: var(--gold);
    display: block;
    text-align: center;
    margin-bottom: 3rem;
  }

  body.page-alonso .release-card a {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  body.page-alonso .release-cover {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border: 1px solid rgba(184,151,106,0.15);
    filter: sepia(0.1) brightness(0.9);
    transition: filter 0.3s, border-color 0.3s;
  }

  body.page-alonso .release-card a:hover .release-cover {
    filter: sepia(0) brightness(1);
    border-color: rgba(184,151,106,0.4);
  }

  body.page-alonso .release-title {
    font-family: 'Cinzel', serif;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    color: var(--parchment);
    line-height: 1.4;
  }

  body.page-alonso .release-type {
    font-family: 'Cinzel', serif;
    font-size: 0.58rem;
    letter-spacing: 0.2em;
    color: var(--gold);
    opacity: 0.7;
    margin-top: 0.1rem;
  }

  body.page-alonso .album-section {
    margin: 4rem auto;
    max-width: 1000px;
    padding: 0 2rem 6rem;
  }

  body.page-alonso .album-card {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
    align-items: center;
    border: 1px solid rgba(184,151,106,0.2);
    padding: 3rem;
    background: rgba(74,46,26,0.1);
    position: relative;
    overflow: hidden;
  }

  body.page-alonso .album-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(139,105,20,0.08), transparent);
    pointer-events: none;
  }

  body.page-alonso .album-cover {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border: 1px solid rgba(184,151,106,0.2);
  }

  body.page-alonso .album-info {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
  }

  body.page-alonso .album-badge {
    font-family: 'Cinzel', serif;
    font-size: 0.58rem;
    letter-spacing: 0.3em;
    color: var(--gold);
    opacity: 0.8;
  }

  body.page-alonso .album-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 400;
    letter-spacing: 0.06em;
    color: var(--parchment);
    line-height: 1.3;
  }

  body.page-alonso .album-desc {
    font-size: 1rem;
    font-weight: 300;
    color: rgba(242,237,230,0.7);
    line-height: 1.85;
    font-style: italic;
  }

  body.page-alonso footer {
    border-top: 1px solid rgba(184,151,106,0.15);
    padding: 2rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
  }

  body.page-alonso .footer-logo {
    width: 36px; height: 36px;
    border-radius: 50%;
    opacity: 0.5;
  }

  body.page-alonso .footer-copy {
    font-family: 'Cinzel', serif;
    font-size: 0.58rem;
    letter-spacing: 0.15em;
    color: rgba(242,237,230,0.25);
  }

  body.page-alonso .footer-links {
    display: flex;
    gap: 2rem;
    list-style: none;
  }

  body.page-alonso .footer-links a {
    font-family: 'Cinzel', serif;
    font-size: 0.58rem;
    letter-spacing: 0.15em;
    color: rgba(242,237,230,0.3);
    text-decoration: none;
    transition: color 0.2s;
  }

  body.page-alonso .footer-links a:hover { color: var(--gold); }
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(14px); }
    to { opacity: 1; transform: translateY(0); }
  }

/* ===== Thom (thom-skerry.html) ===== */
body.page-thom *, body.page-thom *::before, body.page-thom *::after { box-sizing: border-box; margin: 0; padding: 0; }
  body.page-thom {
    --parchment: #f2ede6;
    --gold: #b8976a;
    --gold-light: #d4b48a;
    --deep: #0d0b09;
    --teal: #2a4a4f;
    --teal-light: #3d6b72;
    --mist: rgba(242,237,230,0.07);
  }

  html { font-size: 130%; scroll-behavior: smooth; }
@media (max-width: 700px) { html { font-size: 120%; } }
  body.page-thom {
    background: var(--deep);
    color: var(--parchment);
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.125rem;
    line-height: 1.7;
    overflow-x: hidden;
  }

  /* ── NAV ── */
  body.page-thom nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 1rem;
    z-index: 100;
    background: transparent;
    backdrop-filter: none;
  }
  body.page-thom nav::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 96px;
    background: linear-gradient(to bottom, rgba(13,11,9,0.85), transparent);
    backdrop-filter: blur(4px);
    pointer-events: none;
    z-index: 0;
  }
  body.page-thom nav > * {
    position: relative;
    z-index: 1;
  }

  body.page-thom .nav-logo {
    width: 224px;
    height: 224px;
    display: block;
    border-radius: 50%;
    opacity: 0.9;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.6));
  }

  body.page-thom .nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
  }

  body.page-thom .nav-links a {
    font-family: 'Cinzel', serif;
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    color: var(--parchment);
    text-decoration: none;
    opacity: 0.75;
    transition: opacity 0.2s, color 0.2s;
  }

  body.page-thom .nav-links a:hover { opacity: 1; color: var(--gold-light); }
  body.page-thom .nav-links .back { opacity: 0.5; font-size: 0.62rem; }
  body.page-thom .nav-links .back:hover { opacity: 0.8; }

  /* ── HERO ── */
  body.page-thom .hero {
    position: relative;
    width: 100%;
    height: 65vh;
    min-height: 420px;
    max-height: 680px;
    overflow: hidden;
  }

  body.page-thom .hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    filter: brightness(0.86) saturate(0.95);
  }

  body.page-thom .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to bottom,
      rgba(13,11,9,0.08) 0%,
      rgba(13,11,9,0.0) 35%,
      rgba(13,11,9,0.45) 75%,
      rgba(13,11,9,1) 100%
    );
  }

  body.page-thom .hero-content {
    position: absolute;
    bottom: 3rem;
    left: 0; right: 0;
    text-align: center;
    padding: 0 2rem;
    opacity: 0;
    animation: fadeUp 1.6s ease 0.3s forwards;
  }

  body.page-thom .hero-genre {
    font-family: 'Cinzel', serif;
    font-size: 0.68rem;
    letter-spacing: 0.35em;
    color: var(--gold);
    margin-bottom: 0.75rem;
  }

  body.page-thom .hero-name {
    font-family: 'Cinzel', serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 400;
    letter-spacing: 0.12em;
    color: var(--parchment);
    text-shadow: 0 2px 30px rgba(0,0,0,0.8);
    line-height: 1.1;
  }

  /* ── PORTRAIT + BIO ── */
  body.page-thom .bio-section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 5rem 2rem;
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 4rem;
    align-items: start;
  }
@media (max-width: 720px) {
    body.page-thom .bio-section { grid-template-columns: 1fr; text-align: center; }
    body.page-thom .portrait-wrap { margin: 0 auto; }
    body.page-thom nav { padding: 1rem; }
    body.page-thom .nav-links { gap: 1.2rem; }
  }

  body.page-thom .portrait-wrap {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  body.page-thom .portrait {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    border: 1px solid rgba(184,151,106,0.3);
    filter: sepia(0.1) brightness(0.95);
  }

  body.page-thom .spotify-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Cinzel', serif;
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    color: var(--gold);
    text-decoration: none;
    border: 1px solid rgba(184,151,106,0.3);
    padding: 0.6rem 1.2rem;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
  }

  body.page-thom .spotify-btn:hover {
    border-color: var(--gold);
    background: rgba(184,151,106,0.08);
    color: var(--gold-light);
  }

  body.page-thom .bio-text p {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    font-weight: 300;
    line-height: 1.9;
    color: rgba(242,237,230,0.88);
    margin-bottom: 1.5rem;
  }

  body.page-thom .bio-text p:last-child { margin-bottom: 0; }
  body.page-thom .bio-text em { font-style: italic; color: var(--gold-light); }

  /* ── DIVIDER ── */
  body.page-thom .divider {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 2rem;
  }

  body.page-thom .divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
  }

  body.page-thom .divider-glyph {
    color: var(--gold);
    font-size: 1rem;
    opacity: 0.6;
    font-family: 'Cinzel', serif;
    letter-spacing: 0.1em;
  }

  /* ── RELEASES ── */
  body.page-thom .releases-section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 4rem 2rem 3rem;
  }

  body.page-thom .section-label {
    font-family: 'Cinzel', serif;
    font-size: 0.68rem;
    letter-spacing: 0.3em;
    color: var(--gold);
    display: block;
    text-align: center;
    margin-bottom: 3rem;
  }

  body.page-thom .releases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
  }

  body.page-thom .release-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    cursor: default;
  }

  body.page-thom .release-card a {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  body.page-thom .release-cover {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border: 1px solid rgba(184,151,106,0.15);
    filter: sepia(0.1) brightness(0.9);
    transition: filter 0.3s, border-color 0.3s;
  }

  body.page-thom .release-card a:hover .release-cover {
    filter: sepia(0) brightness(1);
    border-color: rgba(184,151,106,0.4);
  }

  body.page-thom .release-title {
    font-family: 'Cinzel', serif;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    color: var(--parchment);
    line-height: 1.4;
  }

  body.page-thom .release-type {
    font-family: 'Cinzel', serif;
    font-size: 0.58rem;
    letter-spacing: 0.2em;
    color: var(--gold);
    opacity: 0.7;
    margin-top: 0.1rem;
  }

  /* ── ALBUM ANNOUNCEMENT ── */
  body.page-thom .album-section {
    margin: 4rem auto;
    max-width: 1000px;
    padding: 0 2rem 6rem;
  }

  body.page-thom .album-card {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
    align-items: center;
    border: 1px solid rgba(184,151,106,0.2);
    padding: 3rem;
    background: rgba(42,74,79,0.08);
    position: relative;
    overflow: hidden;
  }

  body.page-thom .album-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(42,74,79,0.12), transparent);
    pointer-events: none;
  }
@media (max-width: 720px) {
    body.page-thom .album-card { grid-template-columns: 1fr; }
    body.page-thom .album-cover { max-width: 260px; margin: 0 auto; }
  }

  body.page-thom .album-cover {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border: 1px solid rgba(184,151,106,0.2);
    filter: sepia(0.15) brightness(0.9);
  }

  body.page-thom .album-info {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
  }

  body.page-thom .album-badge {
    font-family: 'Cinzel', serif;
    font-size: 0.58rem;
    letter-spacing: 0.3em;
    color: var(--gold);
    opacity: 0.8;
  }

  body.page-thom .album-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 400;
    letter-spacing: 0.06em;
    color: var(--parchment);
    line-height: 1.2;
  }

  body.page-thom .album-desc {
    font-size: 1rem;
    font-weight: 300;
    color: rgba(242,237,230,0.7);
    line-height: 1.85;
    font-style: italic;
  }

  body.page-thom .tracklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-top: 0.5rem;
  }

  body.page-thom .tracklist li {
    font-family: 'Cinzel', serif;
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    color: rgba(242,237,230,0.45);
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  body.page-thom .tracklist li.done { color: rgba(242,237,230,0.65); }

  body.page-thom .track-num {
    color: var(--gold);
    opacity: 0.5;
    min-width: 1.2rem;
  }

  /* ── FOOTER ── */
  body.page-thom footer {
    border-top: 1px solid rgba(184,151,106,0.15);
    padding: 2rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
  }

  body.page-thom .footer-logo {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    opacity: 0.5;
  }

  body.page-thom .footer-copy {
    font-family: 'Cinzel', serif;
    font-size: 0.58rem;
    letter-spacing: 0.15em;
    color: rgba(242,237,230,0.25);
  }

  body.page-thom .footer-links {
    display: flex;
    gap: 2rem;
    list-style: none;
  }

  body.page-thom .footer-links a {
    font-family: 'Cinzel', serif;
    font-size: 0.58rem;
    letter-spacing: 0.15em;
    color: rgba(242,237,230,0.3);
    text-decoration: none;
    transition: color 0.2s;
  }

  body.page-thom .footer-links a:hover { color: var(--gold); }
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(14px); }
    to { opacity: 1; transform: translateY(0); }
  }

/* ===== Legal (legal.html) ===== */
body.page-legal *, body.page-legal *::before, body.page-legal *::after { box-sizing: border-box; margin: 0; padding: 0; }
  body.page-legal { --parchment: #f2ede6; --gold: #b8976a; --gold-light: #d4b48a; --deep: #0d0b09; }
  html { font-size: 130%; }
@media (max-width: 700px) { html { font-size: 120%; } }
  body.page-legal { background: var(--deep); color: var(--parchment); font-family: 'Cormorant Garamond', Georgia, serif; font-size: 1.125rem; line-height: 1.7; }
  body.page-legal nav { position: relative; display: flex; align-items: flex-start; justify-content: space-between; padding: 1.5rem; border-bottom: 1px solid rgba(184,151,106,0.1); }
  body.page-legal .nav-logo { width: 224px; height: 224px; display: block; border-radius: 50%; opacity: 0.9; }
  body.page-legal .nav-links { display: flex; gap: 2rem; list-style: none; }
  body.page-legal .nav-links a { font-family: 'Cinzel', serif; font-size: 0.68rem; letter-spacing: 0.2em; color: var(--parchment); text-decoration: none; opacity: 0.6; transition: opacity 0.2s, color 0.2s; }
  body.page-legal .nav-links a:hover { opacity: 1; color: var(--gold-light); }
  body.page-legal .content { max-width: 680px; margin: -3.5rem auto 0; padding: 0 2rem 8rem; }
  body.page-legal .page-label { font-family: 'Cinzel', serif; font-size: 0.68rem; letter-spacing: 0.3em; color: var(--gold); display: block; margin-bottom: 2rem; }
  body.page-legal h1 { font-family: 'Cinzel', serif; font-size: 2rem; font-weight: 400; letter-spacing: 0.08em; color: var(--parchment); margin-bottom: 3rem; }
  body.page-legal h2 { font-family: 'Cinzel', serif; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.2em; color: var(--gold); margin: 2.5rem 0 1rem; }
  body.page-legal p { font-size: 1rem; font-weight: 300; color: rgba(242,237,230,0.8); line-height: 1.85; margin-bottom: 1rem; }
  body.page-legal a { color: var(--gold); text-decoration: none; }
  body.page-legal a:hover { color: var(--gold-light); }
  body.page-legal .divider { height: 1px; background: linear-gradient(to right, transparent, rgba(184,151,106,0.3), transparent); margin: 3rem 0; }
  body.page-legal footer { border-top: 1px solid rgba(184,151,106,0.15); padding: 2rem 3rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
  body.page-legal .footer-logo { width: 36px; height: 36px; border-radius: 50%; opacity: 0.5; }
  body.page-legal .footer-copy { font-family: 'Cinzel', serif; font-size: 0.58rem; letter-spacing: 0.15em; color: rgba(242,237,230,0.25); }
  body.page-legal .footer-links { display: flex; gap: 2rem; list-style: none; }
  body.page-legal .footer-links a { font-family: 'Cinzel', serif; font-size: 0.58rem; letter-spacing: 0.15em; color: rgba(242,237,230,0.3); text-decoration: none; transition: color 0.2s; }
  body.page-legal .footer-links a:hover { color: var(--gold); }

/* ===== Privacy (privacy.html) ===== */
body.page-privacy *, body.page-privacy *::before, body.page-privacy *::after { box-sizing: border-box; margin: 0; padding: 0; }
  body.page-privacy { --parchment: #f2ede6; --gold: #b8976a; --gold-light: #d4b48a; --deep: #0d0b09; }
  html { font-size: 130%; }
@media (max-width: 700px) { html { font-size: 120%; } }
  body.page-privacy { background: var(--deep); color: var(--parchment); font-family: 'Cormorant Garamond', Georgia, serif; font-size: 1.125rem; line-height: 1.7; }
  body.page-privacy nav { position: relative; display: flex; align-items: flex-start; justify-content: space-between; padding: 1.5rem; border-bottom: 1px solid rgba(184,151,106,0.1); }
  body.page-privacy .nav-logo { width: 224px; height: 224px; display: block; border-radius: 50%; opacity: 0.9; }
  body.page-privacy .nav-links { display: flex; gap: 2rem; list-style: none; }
  body.page-privacy .nav-links a { font-family: 'Cinzel', serif; font-size: 0.68rem; letter-spacing: 0.2em; color: var(--parchment); text-decoration: none; opacity: 0.6; transition: opacity 0.2s, color 0.2s; }
  body.page-privacy .nav-links a:hover { opacity: 1; color: var(--gold-light); }
  body.page-privacy .content { max-width: 680px; margin: -3.5rem auto 0; padding: 0 2rem 8rem; }
  body.page-privacy .page-label { font-family: 'Cinzel', serif; font-size: 0.68rem; letter-spacing: 0.3em; color: var(--gold); display: block; margin-bottom: 2rem; }
  body.page-privacy h1 { font-family: 'Cinzel', serif; font-size: 2rem; font-weight: 400; letter-spacing: 0.08em; color: var(--parchment); margin-bottom: 3rem; }
  body.page-privacy h2 { font-family: 'Cinzel', serif; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.2em; color: var(--gold); margin: 2.5rem 0 1rem; }
  body.page-privacy p { font-size: 1rem; font-weight: 300; color: rgba(242,237,230,0.8); line-height: 1.85; margin-bottom: 1rem; }
  body.page-privacy a { color: var(--gold); text-decoration: none; }
  body.page-privacy a:hover { color: var(--gold-light); }
  body.page-privacy .divider { height: 1px; background: linear-gradient(to right, transparent, rgba(184,151,106,0.3), transparent); margin: 3rem 0; }
  body.page-privacy footer { border-top: 1px solid rgba(184,151,106,0.15); padding: 2rem 3rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
  body.page-privacy .footer-logo { width: 36px; height: 36px; border-radius: 50%; opacity: 0.5; }
  body.page-privacy .footer-copy { font-family: 'Cinzel', serif; font-size: 0.58rem; letter-spacing: 0.15em; color: rgba(242,237,230,0.25); }
  body.page-privacy .footer-links { display: flex; gap: 2rem; list-style: none; }
  body.page-privacy .footer-links a { font-family: 'Cinzel', serif; font-size: 0.58rem; letter-spacing: 0.15em; color: rgba(242,237,230,0.3); text-decoration: none; transition: color 0.2s; }
  body.page-privacy .footer-links a:hover { color: var(--gold); }

/* ===== Inline Style Replacements ===== */
body.page-alonso .release-wrap {
  max-width: 260px;
  margin: 0 auto;
}

body.page-alonso .divider-tight,
body.page-thom .divider-tight {
  margin: 1rem auto 0;
}

body.page-alonso .section-label-spaced,
body.page-thom .section-label-spaced {
  margin-bottom: 2rem;
  display: block;
}

body.page-privacy .last-updated {
  font-size: 0.85rem;
  color: rgba(242,237,230,0.4);
}

body.page-alonso .artist-social,
body.page-thom .artist-social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
}

body.page-alonso .social-icon,
body.page-thom .social-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(242,237,230,0.8);
  background: rgba(242,237,230,0.06);
  border: 1px solid rgba(184,151,106,0.35);
  transition: transform 0.2s ease, color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

body.page-alonso .social-icon svg,
body.page-thom .social-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

body.page-alonso .social-icon:hover,
body.page-thom .social-icon:hover {
  transform: translateY(-1px);
  color: var(--gold-light);
  border-color: var(--gold);
  background: rgba(184,151,106,0.12);
}

body.page-alonso .social-icon.is-disabled,
body.page-thom .social-icon.is-disabled {
  opacity: 0.35;
  pointer-events: none;
}

body.page-alonso .sr-only,
body.page-thom .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


