/* Jon England - Site styles
   Lane: 1956 Steinway recital playbill, hand-set, candelabra glow.
   Anchor palette: gold #E5C674 over near-black, serif throughout. */

:root {
  --bg: #08070a;
  --bg-soft: #110e14;
  --bg-elev: #181420;
  --line: oklch(0.78 0.09 80 / 0.22);
  --line-strong: oklch(0.78 0.09 80 / 0.55);
  --line-hair: oklch(0.78 0.09 80 / 0.32);
  --gold: #E5C674;
  --gold-bright: #f3dfa3;
  --gold-deep: oklch(0.7 0.12 80);
  --gold-faded: oklch(0.78 0.09 80 / 0.55);
  --text: oklch(0.92 0.02 80);
  --text-muted: oklch(0.7 0.025 80);
  --white: oklch(0.98 0.01 80);
  --accent: #BF0705;
  --shadow-warm: 0 30px 70px -30px oklch(0.4 0.1 80 / 0.5);
  --r-sm: 2px;
  --maxw: 1180px;
  --maxw-narrow: 880px;

  --font-display: "Iowan Old Style", "Palatino Linotype", Palatino, "Hoefler Text", Georgia, "Times New Roman", Times, serif;
  --font-body: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, "Times New Roman", Times, serif;
  --font-meta: ui-monospace, "SF Mono", Menlo, Consolas, monospace;

  /* Modular type scale ratio ~1.45 */
  --t-meta: clamp(0.72rem, 1.1vw, 0.78rem);
  --t-body: clamp(1rem, 1.4vw, 1.1rem);
  --t-h3:   clamp(1.4rem, 2.4vw, 1.75rem);
  --t-h2:   clamp(2rem, 4.5vw, 3.1rem);
  --t-h1:   clamp(2.4rem, 6vw, 4.4rem);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background-color: var(--bg);
  /* Subtle hand-printed grain. Inline SVG so we keep zero external requests. */
  background-image:
    radial-gradient(ellipse 80% 60% at 20% 0%, oklch(0.5 0.1 80 / 0.08), transparent 60%),
    radial-gradient(ellipse 60% 40% at 100% 80%, oklch(0.45 0.05 25 / 0.06), transparent 60%),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.9 0 0 0 0 0.78 0 0 0 0 0.46 0 0 0 0.025 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  background-attachment: fixed;
  color: var(--text);
  font-family: var(--font-body);
  font-size: var(--t-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

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

a { color: var(--gold); text-decoration: none; transition: color 0.2s ease, border-color 0.2s ease; }
a:hover, a:focus-visible { color: var(--gold-bright); }
a:focus-visible { outline: 1px solid var(--gold); outline-offset: 3px; }

h1, h2, h3, h4 { font-family: var(--font-display); color: var(--white); margin: 0; font-weight: 500; letter-spacing: -0.005em; }
h1 { font-size: var(--t-h1); line-height: 0.96; font-style: italic; font-weight: 400; }
h2 { font-size: var(--t-h2); line-height: 1.05; font-style: italic; font-weight: 400; }
h3 { font-size: var(--t-h3); line-height: 1.15; }
p  { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.container-narrow { max-width: var(--maxw-narrow); margin: 0 auto; padding: 0 28px; }

.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; }
.skip-link { position: absolute; left: -10000px; top: 0; background: var(--gold); color: var(--bg); padding: 8px 12px; z-index: 999; }
.skip-link:focus { left: 12px; top: 12px; }

/* ------- meta marks (labels, eyebrows, numbers) ------- */
.eyebrow {
  font-family: var(--font-meta);
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: var(--t-meta);
  color: var(--gold);
  display: inline-block;
}
.section-number {
  font-family: var(--font-meta);
  font-size: var(--t-meta);
  letter-spacing: 0.2em;
  color: var(--gold-faded);
  text-transform: uppercase;
}
.muted { color: var(--text-muted); }
.center { text-align: center; }

/* ------- header ------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: oklch(0.13 0.01 80 / 0.78);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  backdrop-filter: saturate(150%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.site-header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 16px 28px; }
.brand { display: flex; flex-direction: column; line-height: 1.2; gap: 4px; }
.brand-name { font-family: var(--font-display); font-style: italic; font-size: 2.2rem; color: var(--white); letter-spacing: -0.005em; }
.brand-tag { font-family: var(--font-meta); text-transform: uppercase; letter-spacing: 0.3em; font-size: 0.62rem; color: var(--gold); }

.site-header-tools { display: flex; align-items: center; gap: 12px; }
.cart-btn { position: relative; display: inline-flex; align-items: center; gap: 4px; background: transparent; border: 1px solid var(--line); color: var(--gold); padding: 8px 11px; border-radius: var(--r-sm); cursor: pointer; transition: border-color 0.2s ease, color 0.2s ease; }
.cart-btn:hover { color: var(--gold-bright); border-color: var(--line-strong); }
.cart-count { position: absolute; top: -7px; right: -7px; min-width: 19px; height: 19px; padding: 0 5px; background: var(--gold); color: var(--bg); border-radius: 999px; font-family: var(--font-meta); font-size: 0.65rem; font-weight: 700; display: none; align-items: center; justify-content: center; }
.cart-count.show { display: inline-flex; }

.nav-toggle { display: inline-flex; flex-direction: column; gap: 4px; background: transparent; border: 1px solid var(--line); border-radius: var(--r-sm); padding: 9px 11px; cursor: pointer; }
.nav-toggle-bar { display: block; width: 20px; height: 1.5px; background: var(--gold); }
.site-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: oklch(0.1 0.012 80 / 0.97); border-bottom: 1px solid var(--line); padding: 8px 0 24px; }
.site-nav.open { display: block; }
.site-nav ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; }
.site-nav li a {
  display: block;
  padding: 14px 28px;
  color: var(--text);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  border-top: 1px solid var(--line);
}
.site-nav li a[aria-current="page"] { color: var(--gold); }
.site-nav-social { display: flex; justify-content: center; gap: 22px; padding: 22px 28px 6px; color: var(--gold); border-top: 1px solid var(--line); }
.site-nav-social a { color: var(--gold); }

@media (min-width: 920px) {
  .nav-toggle { display: none; }
  .site-nav { display: flex; position: static; background: transparent; border: none; padding: 0; align-items: center; gap: 28px; }
  .site-nav ul { flex-direction: row; gap: 28px; }
  .site-nav li a { padding: 8px 0; border-top: 0; font-style: normal; font-size: var(--t-meta); font-family: var(--font-meta); text-transform: uppercase; letter-spacing: 0.24em; color: var(--text-muted); }
  .site-nav li a:hover { color: var(--gold-bright); }
  .site-nav li a[aria-current="page"] { color: var(--gold); }
  .site-nav-social { padding: 0; border-top: 0; gap: 14px; }
}

/* ------- hero ------- */
.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(40px, 5vw, 80px) 0 clamp(56px, 7vw, 100px);
  border-bottom: 1px solid var(--line);
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 18% 8%, oklch(0.78 0.13 80 / 0.18), transparent 55%),
    radial-gradient(ellipse 50% 60% at 88% 90%, oklch(0.45 0.15 25 / 0.13), transparent 55%);
  z-index: -1;
}
.hero-inner { display: grid; gap: 48px; align-items: center; grid-template-columns: 1fr; }
.hero-inner > * { min-width: 0; }
.hero-copy { display: flex; flex-direction: column; min-width: 0; }
.hero-copy .hero-cta { margin-top: auto; padding-top: 24px; }
.hero-mark {
  font-family: var(--font-meta);
  text-transform: uppercase;
  letter-spacing: 0.34em;
  font-size: var(--t-meta);
  color: var(--gold);
  margin-bottom: 26px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-mark::before {
  content: "";
  display: inline-block;
  width: 42px; height: 1px;
  background: var(--gold);
}
.hero h1 {
  margin: 0 0 24px;
  font-size: clamp(1.55rem, 2.75vw, 2.15rem);
  line-height: 1.18;
  letter-spacing: -0.012em;
}
.hero h1 em { color: var(--gold); font-style: italic; font-weight: 400; }
.hero .lede {
  font-size: clamp(1.15rem, 1.8vw, 1.35rem);
  color: var(--text);
  max-width: 56ch;
  line-height: 1.5;
  font-style: italic;
  font-family: var(--font-display);
  margin-bottom: 30px;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-art {
  position: relative;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  background: linear-gradient(180deg, oklch(0.78 0.09 80 / 0.05), oklch(0.45 0.15 25 / 0.04));
  border: 1px solid var(--line-strong);
  padding: 10px;
  box-shadow: var(--shadow-warm);
}
@media (min-width: 920px) {
  .hero-art { margin: 0 32px 0 auto; }
}
.hero-art picture, .hero-art img, .hero-art .hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-art .hero-video { background: #000; }

.hero-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  display: none;
  align-items: center;
  justify-content: center;
  width: 84px; height: 84px;
  padding: 0;
  border-radius: 50%;
  background: oklch(0.08 0.005 80 / 0.55);
  border: 1px solid oklch(0.78 0.09 80 / 0.7);
  color: var(--gold);
  cursor: pointer;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
  z-index: 3;
}
.hero-play:hover {
  background: oklch(0.78 0.09 80 / 0.95);
  color: var(--bg);
  transform: translate(-50%, -50%) scale(1.04);
}
.hero-play svg { margin-left: 4px; } /* optical center of triangle */
.hero-art.is-paused .hero-play { display: inline-flex; }
.hero-art.is-paused .hero-video { filter: brightness(0.55); }
.hero-video { transition: filter 0.2s ease; }
.hero-art::after {
  content: ""; position: absolute; inset: 14px;
  border: 1px solid var(--line);
  pointer-events: none;
}

@media (min-width: 920px) {
  .hero-inner { grid-template-columns: 1.25fr 1fr; gap: 80px; }
  .hero h1 { letter-spacing: -0.022em; }
}

/* ------- buttons ------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  font-family: var(--font-meta);
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: var(--r-sm);
  border: 1px solid var(--gold);
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--gold); color: var(--bg); }
.btn-primary:hover { background: var(--gold-bright); color: var(--bg); }
.btn-ghost { background: transparent; color: var(--gold); }
.btn-ghost:hover { background: oklch(0.78 0.09 80 / 0.08); color: var(--gold-bright); }

/* ------- section frame ------- */
section.block {
  padding: clamp(72px, 9vw, 120px) 0;
  position: relative;
}
section.block + section.block { border-top: 1px solid var(--line); }

.section-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px 40px;
  align-items: end;
  margin-bottom: clamp(40px, 6vw, 64px);
}
.section-head-meta { display: flex; flex-direction: column; gap: 8px; padding-top: 6px; }
.section-head h2 { margin: 0; max-width: 24ch; }
.section-head .muted { font-style: italic; max-width: 50ch; margin-top: 10px; font-family: var(--font-display); }

@media (max-width: 720px) {
  .section-head { grid-template-columns: 1fr; gap: 12px; }
}

/* ------- ticket-stub event cards ------- */
.events-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
}
@media (min-width: 760px) { .events-grid { grid-template-columns: 1fr 1fr; gap: 36px; } }

.ticket {
  position: relative;
  background:
    linear-gradient(180deg, oklch(0.78 0.09 80 / 0.06), oklch(0.78 0.09 80 / 0.01));
  border: 1px solid var(--line-hair);
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 0;
  overflow: hidden;
}
.ticket::before {
  /* perforation along the top - subtle dotted gold hairline */
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background-image: linear-gradient(90deg, var(--gold) 50%, transparent 0);
  background-size: 6px 1px;
}
.ticket-date {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 28px 16px;
  border-right: 1px dashed var(--line-hair);
  background: oklch(0.78 0.09 80 / 0.04);
  text-align: center;
}
.ticket-dow {
  font-family: var(--font-meta);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.66rem;
  color: var(--gold);
  margin-bottom: 6px;
}
.ticket-day {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(2.6rem, 4vw, 3.2rem);
  line-height: 1;
  color: var(--white);
  margin-bottom: 6px;
}
.ticket-month {
  font-family: var(--font-meta);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.7rem;
  color: var(--text);
}
.ticket-body {
  padding: 26px 28px 26px;
  display: flex; flex-direction: column; gap: 10px;
}
.ticket-body .title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--white);
  line-height: 1.15;
  margin: 0;
}
.ticket-body .channel {
  font-family: var(--font-meta);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
}
.ticket-body .btn { align-self: flex-start; margin-top: 10px; }

/* ------- spotlight (Spirit of Candelabra) ------- */
.spotlight {
  display: grid;
  gap: 40px;
  align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 880px) { .spotlight { grid-template-columns: 0.85fr 1fr; gap: 72px; } }
.spotlight-art {
  width: 100%;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--line-strong);
  padding: 10px;
  background: oklch(0.78 0.09 80 / 0.04);
  box-shadow: var(--shadow-warm);
}
.spotlight-art picture, .spotlight-art img { width: 100%; height: 100%; object-fit: cover; }
.spotlight-body h2 { margin-bottom: 18px; }
.spotlight-body .lede { font-style: italic; font-family: var(--font-display); font-size: 1.15rem; color: var(--text); margin-bottom: 22px; max-width: 50ch; }
.spotlight-body .ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }

/* ------- catalogue (recordings as editorial list) ------- */
.catalogue-table {
  border-top: 1px solid var(--line);
}
.catalogue-row {
  display: grid;
  grid-template-columns: 80px 1fr auto auto auto;
  align-items: center;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line-hair);
  transition: background 0.18s ease;
}
.catalogue-row:hover { background: oklch(0.78 0.09 80 / 0.04); }
.catalogue-cover {
  width: 80px;
  aspect-ratio: 1 / 1;
  background: oklch(0.78 0.09 80 / 0.05);
  border: 1px solid var(--line-hair);
  overflow: hidden;
}
.catalogue-cover picture, .catalogue-cover img { width: 100%; height: 100%; object-fit: cover; }
.catalogue-title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.3rem, 2.1vw, 1.65rem);
  color: var(--white);
  line-height: 1.15;
  margin: 0;
}
.catalogue-format {
  font-family: var(--font-meta);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 6px;
}
.catalogue-price {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--text);
  font-style: italic;
}
.catalogue-add {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 11px 18px;
  font-family: var(--font-meta);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease;
}
.catalogue-add:hover { background: var(--gold); color: var(--bg); }
.catalogue-add.added { background: oklch(0.78 0.09 80 / 0.12); color: var(--gold-bright); }
.catalogue-add svg { width: 13px; height: 13px; }
.catalogue-learn {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-meta);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  padding: 6px 2px;
  border-bottom: 1px solid transparent;
  transition: color 0.18s ease, border-color 0.18s ease;
  white-space: nowrap;
}
.catalogue-learn:hover { color: var(--gold); border-bottom-color: var(--gold); }
.catalogue-learn svg { transition: transform 0.18s ease; }
.catalogue-learn:hover svg { transform: translateX(2px); }

@media (max-width: 720px) {
  .catalogue-row { grid-template-columns: 72px 1fr; row-gap: 14px; }
  .catalogue-price { grid-column: 2; justify-self: start; }
  .catalogue-learn { grid-column: 2; justify-self: start; }
  .catalogue-add { grid-column: 2; justify-self: start; }
}

/* legacy product-card grid - kept so home album strip stays the same */
.album-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
@media (min-width: 640px) { .album-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; } }
.album {
  position: relative; aspect-ratio: 1 / 1; overflow: hidden;
  border: 1px solid var(--line-hair);
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.album picture, .album img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.album:hover { border-color: var(--line-strong); transform: translateY(-2px); }
.album:hover img { transform: scale(1.04); }
.album-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, oklch(0.05 0.01 80 / 0.92) 100%);
  display: flex; align-items: flex-end; padding: 14px;
}
.album-overlay span {
  font-family: var(--font-display); font-style: italic;
  color: var(--white); font-size: 1rem;
}

/* ------- photo gallery ------- */
.photo-gallery {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 760px) {
  .photo-gallery { grid-template-columns: repeat(3, 1fr); }
}
.photo-gallery figure { margin: 0; border: 1px solid var(--line-hair); overflow: hidden; background: #08070a; }
.photo-gallery figure picture, .photo-gallery figure img { width: 100%; height: auto; display: block; }

/* ------- video grid ------- */
.video-grid { display: grid; gap: 26px; grid-template-columns: 1fr; }
@media (min-width: 760px) { .video-grid { grid-template-columns: repeat(2, 1fr); } }
.video-card { display: block; border: 1px solid var(--line-hair); background: var(--bg-soft); }
.video-card .frame { aspect-ratio: 16 / 9; background: #000; position: relative; overflow: hidden; }
.video-card .frame picture, .video-card .frame img { width: 100%; height: 100%; object-fit: cover; opacity: 0.88; }
.video-card:hover .frame img { opacity: 0.96; }
.video-card .play { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: linear-gradient(180deg, oklch(0 0 0 / 0.15), oklch(0 0 0 / 0.55)); }
.video-card .play span { display: inline-flex; width: 68px; height: 68px; border-radius: 50%; background: oklch(0.78 0.09 80 / 0.95); color: var(--bg); align-items: center; justify-content: center; font-size: 22px; }
.video-card .meta { padding: 20px 22px 22px; display: flex; flex-direction: column; gap: 4px; }
.video-card .meta h3 { font-family: var(--font-display); font-style: italic; font-size: 1.25rem; color: var(--white); margin: 0; }
.video-card .meta p { margin: 0; font-family: var(--font-meta); font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-muted); }

/* ------- biography ------- */
.bio { display: grid; gap: 40px; align-items: start; grid-template-columns: 1fr; }
@media (min-width: 880px) { .bio { grid-template-columns: 0.85fr 1.4fr; gap: 72px; } }
.bio-portrait { border: 1px solid var(--line-strong); padding: 10px; background: oklch(0.78 0.09 80 / 0.04); box-shadow: var(--shadow-warm); max-width: 240px; }
.bio-portrait picture, .bio-portrait img { width: 100% !important; height: auto !important; display: block; }
.bio-body p { font-size: clamp(1.05rem, 1.5vw, 1.18rem); line-height: 1.65; }
.bio-expand-container { position: relative; max-height: 10em; overflow: hidden; transition: max-height 0.5s ease; }
.bio-expand-container.bio-open { max-height: 9999px; transition: max-height 0.8s ease; }
.bio-expand-container::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 80px; background: linear-gradient(to bottom, transparent, #08070a); pointer-events: none; transition: opacity 0.3s ease; }
.bio-expand-container.bio-open::after { opacity: 0; }
.bio-read-more-wrap { margin-top: 16px; }
.bio-body p:first-child::first-letter {
  float: left;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 4.2rem;
  line-height: 0.92;
  padding: 6px 10px 0 0;
  color: var(--gold);
}

/* ------- contact form ------- */
.contact-grid { display: grid; gap: 48px; grid-template-columns: 1fr; }
@media (min-width: 880px) { .contact-grid { grid-template-columns: 1fr 1.4fr; gap: 80px; } }
.contact-info h3 { font-family: var(--font-meta); font-size: var(--t-meta); letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); margin: 0 0 14px; }
.contact-info p { margin: 0 0 0.4em; font-family: var(--font-display); font-style: italic; font-size: 1.15rem; }
.contact-info a { color: var(--gold); border-bottom: 1px solid var(--line-hair); padding-bottom: 1px; }
.contact-info a:hover { border-color: var(--gold); }
.contact-info-section + .contact-info-section { margin-top: 32px; }

form.contact-form { display: grid; gap: 18px; }
form.contact-form label {
  display: flex; flex-direction: column; gap: 8px;
  font-family: var(--font-meta);
  font-size: var(--t-meta);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
form.contact-form input, form.contact-form textarea {
  font-family: var(--font-display);
  font-size: 1.05rem;
  padding: 14px 16px;
  background: var(--bg-soft);
  border: 1px solid var(--line-hair);
  color: var(--text);
  border-radius: var(--r-sm);
  font-style: italic;
}
form.contact-form input:focus, form.contact-form textarea:focus { outline: none; border-color: var(--gold); }
form.contact-form .btn { justify-self: start; margin-top: 8px; }

/* ------- cart drawer ------- */
.cart-overlay { position: fixed; inset: 0; background: oklch(0 0 0 / 0.55); opacity: 0; pointer-events: none; transition: opacity 0.25s ease; z-index: 70; backdrop-filter: blur(5px); -webkit-backdrop-filter: blur(5px); }
.cart-overlay.open { opacity: 1; pointer-events: auto; }
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(440px, 100vw);
  background: var(--bg-soft);
  border-left: 1px solid var(--line-strong);
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.2, 0, 0, 1);
  z-index: 71;
  display: flex; flex-direction: column;
  box-shadow: -30px 0 60px -30px oklch(0 0 0 / 0.5);
}
.cart-drawer.open { transform: translateX(0); }
.cart-header { display: flex; align-items: center; justify-content: space-between; padding: 22px 28px; border-bottom: 1px solid var(--line-hair); }
.cart-header h3 { margin: 0; font-family: var(--font-display); font-style: italic; font-size: 1.35rem; color: var(--white); }
.cart-close { background: transparent; border: none; color: var(--gold); cursor: pointer; padding: 6px; border-radius: var(--r-sm); }
.cart-close:hover { background: oklch(0.78 0.09 80 / 0.08); }
.cart-body { flex: 1; overflow-y: auto; padding: 6px 28px; }
.cart-empty { padding: 70px 8px 50px; text-align: center; color: var(--text-muted); font-family: var(--font-display); font-style: italic; }
.cart-empty-icon { color: var(--gold); margin-bottom: 18px; display: flex; justify-content: center; }
.cart-item { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--line-hair); }
.cart-item-img { flex: 0 0 68px; height: 68px; border: 1px solid var(--line-hair); background: #000; overflow: hidden; }
.cart-item-img picture, .cart-item-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name { font-family: var(--font-display); font-style: italic; color: var(--white); font-size: 1rem; line-height: 1.25; margin-bottom: 4px; }
.cart-item-price { font-family: var(--font-meta); font-size: 0.72rem; letter-spacing: 0.12em; color: var(--text-muted); margin-bottom: 10px; }
.cart-item-controls { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.qty-controls { display: inline-flex; align-items: center; border: 1px solid var(--line-hair); border-radius: var(--r-sm); }
.qty-btn { background: transparent; border: none; color: var(--gold); width: 28px; height: 28px; cursor: pointer; font-size: 1rem; }
.qty-btn:hover { background: oklch(0.78 0.09 80 / 0.08); }
.qty-val { display: inline-flex; align-items: center; justify-content: center; min-width: 28px; font-family: var(--font-meta); font-size: 0.82rem; color: var(--text); }
.cart-item-remove { background: transparent; border: none; color: var(--text-muted); font-family: var(--font-meta); font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.2em; cursor: pointer; padding: 4px 0; }
.cart-item-remove:hover { color: var(--accent); }
.cart-footer { border-top: 1px solid var(--line); padding: 22px 28px 26px; background: var(--bg-elev); }
.cart-totals { margin-bottom: 18px; }
.cart-row { display: flex; justify-content: space-between; font-family: var(--font-display); font-style: italic; font-size: 0.95rem; color: var(--text-muted); padding: 5px 0; }
.cart-row.total { font-size: 1.15rem; color: var(--white); padding-top: 12px; border-top: 1px solid var(--line-hair); margin-top: 6px; font-style: italic; font-family: var(--font-display); }
.cart-actions { display: flex; flex-direction: column; gap: 10px; }
.btn-block { width: 100%; justify-content: center; text-align: center; }
.cart-note { margin-top: 16px; font-family: var(--font-meta); font-size: 0.66rem; color: var(--text-muted); text-align: center; letter-spacing: 0.18em; text-transform: uppercase; }
body.no-scroll { overflow: hidden; }

/* ------- checkout ------- */
.checkout-grid { display: grid; gap: 56px; align-items: start; grid-template-columns: 1fr; }
@media (min-width: 880px) { .checkout-grid { grid-template-columns: 1.3fr 1fr; gap: 80px; } }
.checkout-form { display: grid; gap: 22px; }
.checkout-form .form-row { display: grid; gap: 18px; grid-template-columns: 1fr 1fr; }
.checkout-form .form-row-3 { display: grid; gap: 18px; grid-template-columns: 2fr 1fr 1fr; }
.checkout-form label { display: flex; flex-direction: column; gap: 8px; font-family: var(--font-meta); font-size: var(--t-meta); letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); }
.checkout-form input { font-family: var(--font-display); font-style: italic; font-size: 1.05rem; padding: 14px 16px; background: var(--bg); border: 1px solid var(--line-hair); color: var(--text); border-radius: var(--r-sm); }
.checkout-form input:focus { outline: none; border-color: var(--gold); }
.checkout-section { padding: 26px 0; border-top: 1px solid var(--line-hair); }
.checkout-section:first-of-type { border-top: 0; padding-top: 0; }
.checkout-section h3 { font-family: var(--font-display); font-style: italic; font-size: 1.25rem; color: var(--white); margin-bottom: 16px; }
.checkout-summary { position: sticky; top: 100px; background: var(--bg-soft); border: 1px solid var(--line-hair); padding: 30px; box-shadow: var(--shadow-warm); }
.checkout-summary h2 { font-family: var(--font-display); font-style: italic; font-size: 1.5rem; margin-bottom: 18px; }
.summary-item { display: flex; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--line-hair); align-items: center; }
.summary-item-thumb { position: relative; width: 58px; height: 58px; border: 1px solid var(--line-hair); flex: 0 0 58px; overflow: hidden; }
.summary-item-thumb picture, .summary-item-thumb img { width: 100%; height: 100%; object-fit: cover; }
.summary-item-thumb .qty-badge { position: absolute; top: -8px; right: -8px; min-width: 22px; height: 22px; padding: 0 6px; background: var(--gold); color: var(--bg); font-family: var(--font-meta); font-size: 0.66rem; font-weight: 700; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; }
.summary-item-name { font-family: var(--font-display); font-style: italic; color: var(--white); font-size: 1rem; }
.summary-item-price { font-family: var(--font-display); font-style: italic; font-size: 1.05rem; color: var(--text); margin-left: auto; }
.summary-totals { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--line); }
.payment-icons { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.payment-icons span { font-family: var(--font-meta); font-size: 0.62rem; letter-spacing: 0.2em; font-weight: 700; color: var(--text-muted); border: 1px solid var(--line-hair); padding: 5px 9px; border-radius: 2px; }
.legal-line { font-family: var(--font-meta); font-size: 0.68rem; color: var(--text-muted); margin: 14px 0 0; letter-spacing: 0.05em; }

/* ------- order success ------- */
.order-success { text-align: center; padding: 80px 0 60px; max-width: 600px; margin: 0 auto; }
.order-success .check { width: 76px; height: 76px; border-radius: 50%; background: var(--gold); color: var(--bg); display: inline-flex; align-items: center; justify-content: center; margin-bottom: 28px; }
.order-success h1 { font-style: italic; }

/* ------- footer (marquee + restrained columns) ------- */
.site-footer { background: oklch(0.04 0.005 80); border-top: 1px solid var(--line); padding: 84px 0 32px; margin-top: 0; position: relative; }
.footer-mark {
  text-align: center;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line-hair);
  margin-bottom: 48px;
}
.footer-mark .name { font-family: var(--font-display); font-style: italic; font-size: clamp(2.5rem, 6vw, 4.5rem); color: var(--white); line-height: 1; margin: 0 0 12px; }
.footer-mark .tag { font-family: var(--font-meta); text-transform: uppercase; letter-spacing: 0.42em; color: var(--gold); font-size: 0.78rem; }
.footer-mark .phone { display: inline-block; margin-top: 22px; font-family: var(--font-display); font-style: italic; font-size: 1.25rem; color: var(--gold); border-bottom: 1px solid var(--line-hair); padding-bottom: 2px; }
.footer-mark .phone:hover { border-color: var(--gold); }

.footer-cols { display: grid; gap: 32px; grid-template-columns: 1fr; padding-bottom: 36px; border-bottom: 1px solid var(--line-hair); }
@media (min-width: 760px) { .footer-cols { grid-template-columns: repeat(3, 1fr); gap: 56px; } }
.footer-col h4 { font-family: var(--font-meta); text-transform: uppercase; letter-spacing: 0.22em; font-size: var(--t-meta); color: var(--gold); margin: 0 0 14px; font-weight: 600; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 7px; }
.footer-col a { color: var(--text); font-family: var(--font-display); font-style: italic; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between; align-items: center; padding-top: 28px; color: var(--text-muted); font-family: var(--font-meta); font-size: 0.7rem; letter-spacing: 0.06em; }
.footer-linkback a { color: var(--text-muted); border-bottom: 1px dotted var(--line); }
.footer-linkback a:hover { color: var(--gold); border-color: var(--gold); }

/* ============================================================
   Cart zone toggle + catalogue mail-order link
   ============================================================ */
.cart-zone { padding-top: 2px; padding-bottom: 6px; }
.cart-zone-link {
  background: none; border: 0; padding: 0;
  color: var(--gold-faded); font-family: var(--font-meta);
  font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase;
  text-decoration: underline; text-underline-offset: 4px; cursor: pointer;
}
.cart-zone-link:hover { color: var(--gold-bright); }

.catalogue-mail-link {
  margin: 38px auto 0; max-width: 56ch; text-align: center;
  font-family: var(--font-display); font-style: italic;
  color: var(--text-muted); padding-top: 28px; border-top: 1px solid var(--line);
}
.catalogue-mail-link a { color: var(--gold); border-bottom: 1px solid var(--gold-faded); padding-bottom: 1px; }
.catalogue-mail-link a:hover { color: var(--gold-bright); border-color: var(--gold); }

/* ============================================================
   Mail Order page
   Dual-purpose: gold-on-black for on-screen browsing,
   clean black-on-white when printed (see @media print at bottom).
   ============================================================ */
.mail-order-block { padding-bottom: 80px; }
.mail-order-head { margin-bottom: 42px; }
.mail-order-print { margin-top: 14px; }

.mail-order-paper {
  max-width: 820px; margin: 0 auto;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  padding: clamp(28px, 4vw, 56px);
  border-radius: var(--r-sm, 4px);
  box-shadow: 0 1px 0 rgba(229,198,116,0.04) inset, 0 30px 60px rgba(0,0,0,0.4);
}

.mo-header { text-align: center; margin-bottom: 32px; padding-bottom: 26px; border-bottom: 1px solid var(--line); }
.mo-title { font-family: var(--font-display); font-style: italic; font-size: clamp(1.6rem, 3vw, 2.2rem); color: var(--gold); margin: 0 0 14px; }
.mo-sub { color: var(--text-muted); margin: 0 0 12px; }
.mo-address { font-family: var(--font-display); line-height: 1.6; margin: 0; color: var(--text); }
.mo-address strong { color: var(--gold); }

.mo-table { width: 100%; border-collapse: collapse; font-family: var(--font-display); }
.mo-table th, .mo-table td { padding: 11px 10px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: middle; }
.mo-table thead th {
  font-family: var(--font-meta); font-size: 0.65rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold); font-weight: 500;
  border-bottom: 1px solid var(--gold-faded);
}
.mo-table .mo-write {
  border-bottom: 1px solid var(--gold-faded);
  font-family: var(--font-display); color: var(--text-muted);
  text-align: right; min-width: 64px;
}

.mo-items .mo-col-cover { width: 56px; }
.mo-items .mo-col-format { width: 70px; color: var(--text-muted); font-family: var(--font-meta); font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; }
.mo-items .mo-col-price, .mo-items .mo-col-total { width: 90px; text-align: right; }
.mo-items .mo-col-qty { width: 64px; }
.mo-items .mo-title-cell { font-style: italic; }
.mo-items td.mo-cover img { display: block; width: 44px; height: 44px; object-fit: cover; border: 1px solid var(--line); border-radius: 2px; }
.mo-items td.mo-cover picture { display: block; max-width: 44px !important; }

.mo-totals { margin-top: 24px; max-width: 360px; margin-left: auto; }
.mo-totals th { font-family: var(--font-meta); font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); font-weight: 500; text-align: left; }
.mo-totals .mo-hint { font-family: var(--font-display); font-size: 0.78rem; text-transform: none; letter-spacing: 0; color: var(--text-muted); font-style: italic; padding-left: 4px; }
.mo-totals tr.mo-grand th, .mo-totals tr.mo-grand td { padding-top: 14px; color: var(--gold); font-size: 1rem; letter-spacing: 0.18em; border-top: 1px solid var(--gold-faded); border-bottom: none; }

.mo-rates { margin-top: 42px; }
.mo-rates h3 { font-family: var(--font-meta); font-size: 0.78rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin: 0 0 16px; }
.mo-rate-table td { font-family: var(--font-display); color: var(--text); }

.mo-buyer { margin-top: 42px; }
.mo-buyer h3 { font-family: var(--font-meta); font-size: 0.78rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin: 0 0 18px; }
.mo-field { display: flex; align-items: baseline; gap: 16px; margin-bottom: 20px; }
.mo-field label { font-family: var(--font-meta); font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-muted); flex: 0 0 110px; }
.mo-field .mo-line { flex: 1; border-bottom: 1px solid var(--gold-faded); height: 1.4em; }
.mo-field-row { display: flex; gap: 20px; flex-wrap: wrap; }
.mo-field-grow { flex: 1 1 220px; }
.mo-field-narrow { flex: 0 0 130px; }
.mo-field-narrow label { flex: 0 0 70px; }

.mo-thanks { text-align: center; font-family: var(--font-display); font-style: italic; color: var(--gold-faded); margin: 42px 0 0; }

.mail-order-foot { margin-top: 32px; text-align: center; font-size: 0.88rem; }

@media (max-width: 640px) {
  .mo-items .mo-col-format { display: none; }
  .mo-items td:nth-child(3) { display: none; }
  .mo-table th, .mo-table td { padding: 9px 6px; font-size: 0.88rem; }
  .mo-field { flex-direction: column; gap: 4px; }
  .mo-field label { flex: none; }
  .mo-field-narrow { flex: 1 1 100%; }
}

/* ============================================================
   Print stylesheet, applies to every page but optimized for /mail-order/
   Strip dark background, hide site nav/footer/cart, render the form
   in clean black-on-white for a home B&W printer.
   ============================================================ */
@media print {
  html, body { background: #fff !important; color: #000 !important; }
  body * { color: #000 !important; }
  .site-header, .site-footer, .cart-drawer, .cart-overlay,
  .nav-toggle, .cart-btn, .site-nav, .skip-link,
  .section-head .section-head-meta, .mail-order-print, .mail-order-foot,
  .footer-bottom, .footer-cols { display: none !important; }
  main { padding: 0 !important; }
  .block { padding: 0 !important; }
  .container { max-width: none !important; padding: 0 !important; }
  .mail-order-paper {
    background: #fff !important; border: none !important; box-shadow: none !important;
    padding: 0 !important; max-width: none !important;
  }
  .mail-order-head { margin-bottom: 16px !important; }
  .mail-order-head h1 { font-size: 18pt !important; margin: 0 0 4px !important; }
  .mail-order-head p { font-size: 9pt !important; margin: 0 0 6px !important; }
  .mo-header { border-bottom: 1px solid #000 !important; margin-bottom: 14px !important; padding-bottom: 12px !important; }
  .mo-title { color: #000 !important; font-size: 15pt !important; margin-bottom: 8px !important; }
  .mo-address strong { color: #000 !important; }
  .mo-table th, .mo-table td { border-color: #000 !important; padding: 4px 6px !important; font-size: 9pt !important; }
  .mo-table .mo-write { border-bottom: 1px solid #000 !important; }
  .mo-totals tr.mo-grand th, .mo-totals tr.mo-grand td { color: #000 !important; border-top-color: #000 !important; font-size: 10pt !important; }
  .mo-rates h3, .mo-buyer h3 { color: #000 !important; font-size: 10pt !important; }
  .mo-field .mo-line { border-bottom: 1px solid #000 !important; height: 18px !important; }
  .mo-thanks { color: #000 !important; }
  a { color: #000 !important; text-decoration: none !important; }
}

/* ------- contact form: status, honeypot, turnstile ------- */
.contact-form-error {
  background: oklch(0.30 0.10 25);
  border: 1px solid oklch(0.55 0.18 25);
  color: oklch(0.95 0.04 25);
  padding: 14px 18px;
  border-radius: var(--r-sm);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  margin: 0 0 4px;
}
.contact-form-success {
  background: var(--bg-soft);
  border: 1px solid var(--line-hair);
  padding: 28px 32px;
  border-radius: var(--r-sm);
}
.contact-form-success h3 {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
  font-size: 1.6rem;
  margin-bottom: 8px;
}
.contact-form-hp {
  position: absolute;
  left: -5000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.contact-form-ts { margin: 4px 0; }
form.contact-form .btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

/* ------- checkout grid ------- */
.checkout-grid { display: grid; gap: 48px; grid-template-columns: 1fr; }
@media (min-width: 880px) { .checkout-grid { grid-template-columns: 1.4fr 1fr; gap: 64px; } }
.checkout-summary { background: var(--bg-soft); border: 1px solid var(--line-hair); padding: 28px 30px; border-radius: var(--r-sm); align-self: start; position: sticky; top: 24px; }
.checkout-summary h3 { font-family: var(--font-meta); font-size: var(--t-meta); letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); margin: 0 0 18px; }
.checkout-items { list-style: none; padding: 0; margin: 0 0 18px; }
.checkout-items li { display: grid; grid-template-columns: 38px 1fr auto; gap: 10px; align-items: baseline; padding: 8px 0; border-bottom: 1px solid var(--line-hair); font-family: var(--font-display); font-size: 0.98rem; font-style: italic; }
.checkout-items li:last-child { border-bottom: none; }
.checkout-items .ci-qty { font-family: var(--font-meta); font-style: normal; font-size: 0.82rem; color: var(--gold); }
.checkout-items .ci-line { font-family: var(--font-meta); font-style: normal; font-size: 0.92rem; }
.checkout-totals { margin-top: 14px; border-top: 1px solid var(--line-hair); padding-top: 14px; }
.checkout-line { display: flex; justify-content: space-between; padding: 6px 0; font-family: var(--font-display); font-size: 1rem; }
.checkout-line .muted { font-family: var(--font-meta); font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; margin-left: 6px; }
.checkout-line.checkout-total { font-size: 1.25rem; font-style: italic; color: var(--gold); border-top: 1px solid var(--line-hair); margin-top: 6px; padding-top: 14px; }
.checkout-row { display: grid; gap: 14px; grid-template-columns: 1fr 1fr; }
.checkout-row label:has(input[name=zip]) { grid-column: auto; }
.checkout-row:has(select) { grid-template-columns: 1.4fr 1fr 1fr; }
@media (max-width: 640px) { .checkout-row, .checkout-row:has(select) { grid-template-columns: 1fr; } }
form.checkout-form select {
  font-family: var(--font-display);
  font-size: 1.05rem;
  padding: 14px 16px;
  background: var(--bg-soft);
  border: 1px solid var(--line-hair);
  color: var(--text);
  border-radius: var(--r-sm);
  font-style: italic;
  appearance: none;
}
form.checkout-form select:focus { outline: none; border-color: var(--gold); }
form.checkout-form button:disabled { opacity: 0.45; cursor: not-allowed; }

/* ===== Album detail page (recordings/album.php) ===== */
.album-crumb { font-family: var(--font-meta); font-size: var(--t-meta); letter-spacing: 0.22em; text-transform: uppercase; margin: 0 0 28px; }
.album-crumb a { color: var(--gold); text-decoration: none; opacity: 0.85; }
.album-crumb a:hover { opacity: 1; }
.album-detail-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 36px;
  align-items: start;
  margin-bottom: 56px;
}
@media (min-width: 820px) {
  .album-detail-head { grid-template-columns: 380px 1fr; gap: 56px; }
}
.album-detail-cover picture, .album-detail-cover img { display: block; width: 100%; height: auto; max-width: 380px; border-radius: var(--r-sm); box-shadow: 0 24px 48px rgba(0,0,0,0.45); }
.album-detail-meta .eyebrow { font-family: var(--font-meta); font-size: var(--t-meta); letter-spacing: 0.32em; text-transform: uppercase; color: var(--gold); margin: 0 0 14px; }
.album-detail-meta h1 { font-family: var(--font-display); font-size: clamp(2.2rem, 4.4vw, 3.4rem); font-style: italic; font-weight: 500; line-height: 1.05; letter-spacing: -0.005em; margin: 0 0 18px; color: var(--text); }
.album-detail-format { font-family: var(--font-display); font-style: italic; font-size: 1.08rem; opacity: 0.78; margin: 0 0 10px; }
.album-detail-price { font-family: var(--font-meta); font-size: 1.45rem; color: var(--gold); letter-spacing: 0.04em; margin: 0 0 24px; }
.album-detail-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 18px; }
.album-detail-cta .btn { display: inline-flex; align-items: center; gap: 8px; }
.album-detail-sample-note { font-family: var(--font-meta); font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); opacity: 0.8; margin: 12px 0 0; }
.album-sample-mark { display: inline-flex; align-items: center; justify-content: center; width: 18px; height: 18px; border: 1px solid var(--gold); border-radius: 50%; vertical-align: -0.3em; margin: 0 4px; color: var(--gold); }

.album-tracks { margin: 0 auto 56px; max-width: 760px; }
.album-tracks h2 { font-family: var(--font-meta); font-size: var(--t-meta); letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin: 0 0 22px; }
.album-tracklist { list-style: none; counter-reset: t; padding: 0; margin: 0; border-top: 1px solid var(--line-hair); }
.album-track {
  display: grid;
  grid-template-columns: 38px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-hair);
}
.album-track-num { font-family: var(--font-meta); font-size: 0.78rem; letter-spacing: 0.18em; color: var(--gold); opacity: 0.7; text-align: right; }
.album-track-title { font-family: var(--font-display); font-style: italic; font-size: 1.08rem; line-height: 1.4; }
.album-track-play {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  font-family: var(--font-meta); font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase;
  padding: 7px 14px 7px 12px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 180ms cubic-bezier(0.16, 1, 0.3, 1), color 180ms;
}
.album-track-play:hover { background: var(--gold); color: var(--bg); }
.album-track-play .icon-pause { display: none; }
.album-track-play.is-playing { background: var(--gold); color: var(--bg); }
.album-track-play.is-playing .icon-play  { display: none; }
.album-track-play.is-playing .icon-pause { display: inline-block; }

.album-more { max-width: 980px; margin: 0 auto; }
.album-more h2 { font-family: var(--font-meta); font-size: var(--t-meta); letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin: 0 0 22px; }
.album-more-grid { display: grid; gap: 22px; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); }
.album-more-card { display: block; text-decoration: none; color: var(--text); }
.album-more-card picture, .album-more-card img { display: block; width: 100%; height: auto; aspect-ratio: 1; object-fit: cover; border-radius: var(--r-sm); transition: transform 250ms cubic-bezier(0.16, 1, 0.3, 1); }
.album-more-card:hover picture, .album-more-card:hover img { transform: translateY(-3px); }
.album-more-title { display: block; margin-top: 10px; font-family: var(--font-display); font-style: italic; font-size: 0.95rem; opacity: 0.9; }

/* Pinned mini-player */
.album-player {
  position: fixed; left: 50%; bottom: 24px; transform: translateX(-50%);
  display: flex; align-items: center; gap: 14px;
  background: rgba(20, 14, 8, 0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--gold);
  border-radius: 999px;
  padding: 8px 18px 8px 8px;
  z-index: 80;
  box-shadow: 0 24px 48px rgba(0,0,0,0.55);
  max-width: calc(100vw - 32px);
}
.album-player[hidden] { display: none; }
.album-player-toggle {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--bg);
  border: none; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  flex: 0 0 auto;
}
.album-player-toggle .icon-pause { display: none; }
.album-player.is-playing .icon-play { display: none; }
.album-player.is-playing .icon-pause { display: inline-block; }
.album-player-meta { display: flex; flex-direction: column; line-height: 1.2; min-width: 0; }
.album-player-eyebrow { font-family: var(--font-meta); font-size: 0.62rem; letter-spacing: 0.32em; text-transform: uppercase; color: var(--gold); opacity: 0.75; }
.album-player-title { font-family: var(--font-display); font-style: italic; font-size: 0.95rem; max-width: 220px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.album-player-close { background: transparent; border: none; color: var(--gold); cursor: pointer; opacity: 0.7; padding: 4px; }
.album-player-close:hover { opacity: 1; }

/* Recordings table - cover + title now act as link */
.catalogue-row .catalogue-cover a,
.catalogue-row .catalogue-text a { text-decoration: none; color: inherit; display: block; }
.catalogue-row .catalogue-cover a:hover picture,
.catalogue-row .catalogue-cover a:hover img { transform: translateY(-2px); }
.catalogue-row .catalogue-cover picture,
.catalogue-row .catalogue-cover img { transition: transform 200ms cubic-bezier(0.16,1,0.3,1); }
.catalogue-row .catalogue-text a:hover .catalogue-title { color: var(--gold); }
.catalogue-title { transition: color 180ms; }

/* Album detail: testimonials + back cover */
.album-blurbs { max-width: 760px; margin: 0 auto 48px; }
.album-blurb {
  position: relative;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.05rem, 1.4vw, 1.18rem);
  line-height: 1.65;
  color: oklch(0.86 0.025 75);
  padding: 6px 0 6px 28px;
  border-left: 1px solid var(--gold);
  margin: 0 0 22px;
}
.album-blurb:last-child { margin-bottom: 0; }
.album-blurb p { margin: 0 0 12px; }
.album-blurb cite {
  display: block;
  font-style: normal;
  font-family: var(--font-meta);
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 6px;
}
.album-back-cover { max-width: 480px; margin: 0 auto 48px; text-align: center; }
.album-back-cover h2 {
  font-family: var(--font-meta);
  font-size: var(--t-meta);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 18px;
}
.album-back-cover picture, .album-back-cover img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--r-sm);
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
  margin: 0 auto;
}

/* Download page (stream + buy destinations) */
.download-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  margin-bottom: 48px;
}
.download-card {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  gap: 6px 16px;
  align-items: center;
  padding: 22px 24px;
  text-decoration: none;
  color: var(--text);
  background: var(--bg-soft);
  border: 1px solid var(--line-hair);
  border-radius: var(--r-sm);
  transition: border-color 200ms cubic-bezier(0.16, 1, 0.3, 1), background 200ms;
}
.download-card:hover { border-color: var(--gold); background: oklch(0.78 0.09 80 / 0.04); }
.download-card-name {
  grid-row: 1; grid-column: 1;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.18rem;
  color: var(--text);
}
.download-card-desc {
  grid-row: 2; grid-column: 1;
  font-family: var(--font-meta);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.download-card-arrow {
  grid-row: 1 / span 2; grid-column: 2;
  display: inline-flex;
  width: 32px; height: 32px;
  align-items: center; justify-content: center;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  transition: background 180ms, color 180ms;
}
.download-card:hover .download-card-arrow { background: var(--gold); color: var(--bg); }
.download-card-wide { max-width: 560px; }
.download-watch h2 {
  font-family: var(--font-meta);
  font-size: var(--t-meta);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 16px;
}
.download-watch { margin-bottom: 48px; }
.download-mail {
  font-family: var(--font-meta);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  color: var(--text-muted);
  margin: 0;
}
.download-mail a { color: var(--gold); text-decoration: none; border-bottom: 1px solid var(--gold); }

/* Album detail: when a back cover exists, show front + back side-by-side
   in the hero head's left column at equal small sizes with labels under each. */
.album-detail-covers {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.album-detail-cover-fig {
  margin: 0;
  flex: 0 0 180px;
  width: 180px;
  text-align: center;
}
.album-detail-cover-fig picture,
.album-detail-cover-fig img {
  display: block;
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: var(--r-sm);
  box-shadow: 0 14px 30px rgba(0,0,0,0.5);
  max-width: none;
}
.album-detail-cover-fig figcaption {
  margin-top: 12px;
  font-family: var(--font-meta);
  font-size: 0.7rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.9;
}
@media (min-width: 820px) {
  .album-detail-head:has(.album-detail-covers) { grid-template-columns: 400px 1fr; }
}
