/* ============================================================
   LEMAN CLASSICS — Homepage
   ============================================================ */

:root {
  --serif-display: 'Cormorant Garamond', 'Times New Roman', serif;
  --serif-body: 'EB Garamond', Georgia, serif;
  --cream: #f4efe6;
  --gold: #c9a86a;
  --ink: #1c2126;
  --water-blue: #6f8190;
  --max: 1160px;
  --nav-h: 100px;
}

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

html { scroll-behavior: smooth; font-size: 107.5%; } /* nudge all rem-based text up a touch */

body {
  font-family: var(--serif-body);
  color: var(--cream);
  background: #2b3138;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.section-inner { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 40px; }

/* Every primary section fills the viewport, content vertically centered */
.hero,
.spotlight,
.catalogue,
.about,
.artists,
.streaming,
.contact {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Shared display title */
.section-title {
  font-family: var(--serif-display);
  font-weight: 300;
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 1.04;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 24px rgba(0,0,0,.35);
}

.section-lead {
  font-size: 1.16rem;
  line-height: 1.65;
  max-width: 760px;
  margin-top: 1.3rem;
  color: rgba(244,239,230,.92);
  text-shadow: 0 1px 10px rgba(0,0,0,.4);
}

/* Section titles read further left than their body text */
.catalogue-head .section-lead { padding-left: 54px; }

/* Discover link with leading rule */
.discover-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: .72rem;
  letter-spacing: .22em;
  font-weight: 500;
  margin-top: 1.6rem;
  color: var(--cream);
  transition: color .25s, gap .25s;
}
.discover-link .line { width: 34px; height: 1px; background: currentColor; opacity: .8; transition: width .25s; }
.discover-link:hover { gap: 18px; color: #fff; }
.discover-link:hover .line { width: 48px; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background .4s ease, height .3s ease, box-shadow .4s;
}
.site-header.scrolled {
  background: rgba(28,33,38,.92);
  height: 80px;
  box-shadow: 0 2px 24px rgba(0,0,0,.3);
  backdrop-filter: blur(8px);
}
.nav-inner {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 42px;
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav-logo img { height: 50px; width: auto; }
.nav-links {
  display: flex;
  gap: 40px;
  margin: 0 auto;
}
.nav-links a {
  font-size: .92rem;
  letter-spacing: .18em;
  font-weight: 500;
  color: rgba(244,239,230,.88);
  padding: 8px 0;
  position: relative;
  transition: color .25s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .3s ease;
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { width: 100%; }

.nav-cart {
  background: none; border: 0; cursor: pointer;
  color: rgba(244,239,230,.88);
  display: flex; align-items: center;
  transition: color .25s;
}
.nav-cart svg { width: 28px; height: 28px; }
.nav-cart:hover { color: #fff; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none; border: 0; cursor: pointer;
  padding: 6px;
}
.nav-toggle span { width: 26px; height: 2px; background: var(--cream); transition: .3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO  (fixed parallax water)
   ============================================================ */
.hero {
  position: relative;
  align-items: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('../images/741929445.jpg') center/cover no-repeat;
  background-attachment: fixed;
  transform: scale(1.05);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,28,34,.45) 0%, rgba(28,36,42,.25) 40%, rgba(20,28,34,.55) 100%);
}
.hero-content { position: relative; z-index: 2; padding-top: var(--nav-h); }
.hero-logo {
  width: clamp(220px, 32vw, 360px);
  margin: 0 auto;
  filter: drop-shadow(0 4px 26px rgba(0,0,0,.45));
}
.hero-tagline {
  font-family: var(--serif-display);
  font-weight: 400;
  font-size: clamp(1.05rem, 2.4vw, 1.55rem);
  letter-spacing: .02em;
  margin-top: 14px;
  text-shadow: 0 2px 16px rgba(0,0,0,.5);
}
.hero-headline {
  position: relative;
  z-index: 2;
  font-family: var(--serif-display);
  font-weight: 300;
  font-size: clamp(2.2rem, 6.4vw, 5.2rem);
  line-height: 1.05;
  letter-spacing: .5px;
  max-width: 1100px;
  padding: 0 30px;
  margin-top: clamp(40px, 9vh, 110px);
  text-shadow: 0 3px 30px rgba(0,0,0,.5);
}

/* ============================================================
   SPOTLIGHT carousel (single album over water)
   ============================================================ */
.spotlight {
  position: relative;
  padding: 60px 20px;
  overflow: hidden;
  /* size of the large rotating cover — also drives the dots offset */
  --cover: clamp(280px, 46vw, 560px);
}
.spotlight-bg {
  position: absolute; inset: 0;
  background: url('../images/230748694.jpg') center/cover no-repeat fixed;
}
.spotlight-bg::after { content:''; position:absolute; inset:0; background: rgba(30,40,48,.45); }
.spotlight-inner {
  position: relative; z-index: 2;
  width: min(92vw, 680px);
  margin: 0 auto;
  text-align: center;
}
.spotlight-track { position: relative; min-height: calc(var(--cover) + 260px); }
/* block flow inside each slide — avoids flexbox cross-axis collapse */
.spotlight-slide {
  position: absolute; inset: 0;
  opacity: 0; visibility: hidden;
  transition: opacity .8s ease;
}
.spotlight-slide.is-active { opacity: 1; visibility: visible; }
.spotlight-slide img {
  display: block;
  width: var(--cover); height: var(--cover);
  margin: 0 auto;
  object-fit: cover;
  box-shadow: 0 30px 70px rgba(0,0,0,.55);
}
.spotlight-slide figcaption { width: 100%; margin-top: 50px; }
.spotlight-dots {
  position: absolute;
  top: calc(var(--cover) + 18px);
  left: 50%;
  transform: translateX(-50%);
  display: flex; justify-content: center; gap: 9px;
}
.spotlight-dots button {
  width: 7px; height: 7px; border-radius: 50%;
  border: 1px solid rgba(244,239,230,.7);
  background: transparent; cursor: pointer; padding: 0;
  transition: background .25s;
}
.spotlight-dots button.active { background: var(--cream); }
.spot-title {
  font-family: var(--serif-display);
  font-size: 1.3rem;
  letter-spacing: .04em;
  margin-top: 0;
  line-height: 1.35;
}
.spot-quote {
  font-style: italic;
  margin-top: 16px;
  font-size: .96rem;
  color: rgba(244,239,230,.85);
}
.spot-quote span { font-style: normal; font-size: .76rem; letter-spacing: .1em; }

/* ============================================================
   SECTIONS over fixed water (catalogue / about / artists)
   ============================================================ */
.catalogue, .about, .artists, .streaming, .contact { position: relative; overflow: hidden; }

.catalogue-bg, .about-bg, .artists-bg, .streaming-bg, .contact-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.catalogue-bg { background-image: url('../images/741929445.jpg'); }
.about-bg     { background-image: url('../images/553294548.jpg'); }
.artists-bg   { background-image: url('../images/741929445.jpg'); }
.streaming-bg { background-image: url('../images/230748694.jpg'); }
.contact-bg   { background-image: url('../images/741929445.jpg'); }

.catalogue-overlay { position:absolute; inset:0; background: linear-gradient(180deg, rgba(30,40,48,.62), rgba(30,40,48,.5)); }
.about-overlay     { position:absolute; inset:0; background: rgba(40,52,62,.58); }
.artists-overlay   { position:absolute; inset:0; background: rgba(22,30,36,.62); }
.streaming-overlay { position:absolute; inset:0; background: rgba(40,52,62,.55); }
.contact-overlay   { position:absolute; inset:0; background: rgba(30,40,48,.42); }

/* ---- CATALOGUE ---- */
.catalogue { padding: 90px 0; }
.catalogue-head { position: relative; z-index: 2; }
/* ---- AUTO-SCROLLING CAROUSELS (continuous marquee) ---- */
.cover-carousel, .artist-carousel {
  position: relative; z-index: 2;
  margin-top: 54px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
}
.cover-track, .artist-track {
  display: flex;
  width: max-content;
  padding: 10px 0;
  will-change: transform;
  animation: marquee var(--marquee-dur, 50s) linear infinite;
}
/* each item owns its trailing gap via margin so the -50% loop is seamless */
.cover-carousel:hover .cover-track,
.artist-carousel:hover .artist-track { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.cover-item {
  flex: 0 0 auto;
  width: 232px; height: 232px;
  margin-right: 24px;
  box-shadow: 0 16px 36px rgba(0,0,0,.45);
  transition: transform .35s ease, box-shadow .35s;
}
.cover-item img { width: 100%; height: 100%; object-fit: cover; }
.cover-item:hover { transform: translateY(-7px) scale(1.03); box-shadow: 0 24px 48px rgba(0,0,0,.55); }

.carousel-arrow { display: none; }
.catalogue .discover-link { position: relative; z-index: 2; }

@media (prefers-reduced-motion: reduce) {
  .cover-track, .artist-track { animation: none; }
  .cover-carousel, .artist-carousel { overflow-x: auto; }
}

/* ---- ABOUT ---- */
.about { padding: 90px 0; }
/* grid: title top-left, map top-right; text spans full width below; free-delivery below */
.about-inner {
  position: relative; z-index: 2;
  padding-top: 40px;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas:
    "title map"
    "text  text"
    "foot  foot";
  align-items: end;   /* title + map bottoms align, sitting just above the text */
  column-gap: 40px;
}
.about-inner .section-title { grid-area: title; align-self: end; }
.about-map {
  grid-area: map;
  justify-self: end;
  width: clamp(320px, 38vw, 540px);
  opacity: .92;
  pointer-events: none;
}
.about-text {
  grid-area: text;
  max-width: 1040px;
  margin-top: 1.8rem;
  padding-left: 54px;
  font-size: 1.22rem;
  line-height: 1.75;
}
.about-text p { margin-bottom: 1.3rem; color: rgba(244,239,230,.94); text-shadow: 0 1px 10px rgba(0,0,0,.4); }
.about-inner .discover-link { grid-area: foot; }   /* aligned with the title (inner-left) */

@media (max-width: 720px) {
  .about-inner { grid-template-columns: 1fr; grid-template-areas: "title" "map" "text" "foot"; }
  .about-map { justify-self: start; }
}

/* ---- ARTISTS ---- */
.artists { padding: 90px 0; }
.artists-head { position: relative; z-index: 2; }
.artists-head .discover-link { margin-top: .8rem; }
.artist-item {
  flex: 0 0 auto;
  width: 288px;
  margin-right: 22px;
}
.artist-item img {
  width: 288px; height: 286px;
  object-fit: cover;
  filter: grayscale(8%);
  box-shadow: 0 16px 36px rgba(0,0,0,.45);
  transition: filter .35s, transform .35s;
}
.artist-item:hover img { filter: grayscale(0); transform: translateY(-5px); }
.artist-caption { padding-top: 14px; }
.artist-name { display: block; font-family: var(--serif-display); font-size: 1.3rem; letter-spacing: .04em; }
.artist-role { display: block; font-size: .72rem; letter-spacing: .2em; color: rgba(244,239,230,.74); margin-top: 3px; }

/* ============================================================
   RECORDINGS — sticky/parallax fixed background, scrolling cards
   ============================================================ */
/* Sticky parallax: the background pins at 100vh and the albums scroll over it,
   then it releases and the next section moves up once all albums have passed. */
.recordings {
  position: relative;
  background: #232b31;
}
.recordings-bg {
  position: sticky;
  top: 0;
  height: 100vh;
  margin-bottom: -100vh;   /* pull the albums up to overlay the pinned background */
  z-index: 0;
  background: url('../images/553294548.jpg') center / cover no-repeat;
}
.recordings-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(34,44,52,.72), rgba(28,38,46,.66));
}
.recordings-inner {
  position: relative; z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  padding: 110px 40px 120px;
  display: flex;
  flex-direction: column;
  gap: 64px;
}
.record {
  display: grid;
  grid-template-columns: 180px 1fr 250px;
  gap: 40px;
  align-items: start;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(244,239,230,.14);
}
.recordings-inner .record:last-child { border-bottom: 0; padding-bottom: 0; }
.record-cover img {
  width: 180px; height: 180px; object-fit: cover;
  box-shadow: 0 16px 36px rgba(0,0,0,.5);
  transition: transform .35s;
}
.record-cover:hover img { transform: scale(1.04); }
.record-body h3 {
  font-family: var(--serif-display);
  font-weight: 600;
  font-size: 1.5rem;
  letter-spacing: .02em;
  line-height: 1.2;
}
.record-sub { font-family: var(--serif-display); font-size: 1.18rem; margin-top: 7px; color: var(--cream); }
.record-prog { font-size: 1.02rem; margin-top: 10px; color: rgba(244,239,230,.84); font-style: italic; }
.record-cd { font-size: .88rem; letter-spacing: .12em; margin-top: 16px; color: rgba(244,239,230,.9); }
.record-links { display: flex; flex-direction: column; gap: 12px; }
.record-links a {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: .68rem; letter-spacing: .14em; font-weight: 500;
  transition: gap .25s, color .25s;
}
.record-links a .line { width: 26px; height: 1px; background: currentColor; opacity:.8; transition: width .25s; }
.record-links a:hover { color:#fff; gap: 16px; }
.record-links a:hover .line { width: 38px; }
.record-substream { font-size: .68rem; letter-spacing: .12em; color: rgba(244,239,230,.6); padding-left: 38px; line-height: 1.7; }

/* ============================================================
   ARTIST FEATURE PANELS (full-bleed)
   ============================================================ */
.artist-panel {
  position: relative;
  min-height: 100vh;
  display: flex;
  overflow: hidden;
}
.panel-photo {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center top;
}
.artist-panel::after {
  content: '';
  position: absolute; inset: 0;
}
/* tonal washes per panel to keep text legible like the design */
.panel-light::after  { background: linear-gradient(90deg, rgba(20,30,40,.15) 0%, rgba(30,42,54,.55) 55%, rgba(20,30,40,.35) 100%); }
.panel-blue::after   { background: linear-gradient(270deg, rgba(20,30,45,.12) 0%, rgba(24,36,52,.6) 60%); }
.panel-warm::after   { background: linear-gradient(90deg, rgba(28,18,10,.2) 0%, rgba(40,26,14,.5) 60%); }
.panel-dark::after   { background: linear-gradient(180deg, rgba(10,12,16,.45), rgba(10,12,16,.6)); }
.panel-red::after    { background: linear-gradient(90deg, rgba(30,8,8,.25) 0%, rgba(40,14,14,.5) 60%); }
.panel-cream::after  { background: linear-gradient(180deg, rgba(244,239,230,.05), rgba(40,46,52,.3)); }

.panel-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 70px 50px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.panel-content.align-right { align-items: flex-end; text-align: right; }
.panel-content.align-left  { align-items: flex-start; text-align: left; }
.panel-content.dark-text { color: var(--ink); }
.panel-content.dark-text .panel-name,
.panel-content.dark-text .panel-eyebrow,
.panel-content.dark-text .panel-role { color: var(--ink); }

.panel-quotes {
  max-width: 360px;
  font-size: .92rem;
  line-height: 1.5;
  text-shadow: 0 1px 12px rgba(0,0,0,.5);
  margin-bottom: auto;
  margin-top: 4vh;
}
.panel-quotes p { margin-bottom: 1rem; }
.panel-quotes em { font-style: normal; letter-spacing: .08em; font-size: .76rem; opacity: .9; }
.panel-years { font-family: var(--serif-display); font-size: 1.1rem; letter-spacing: .1em; }
.panel-award { font-weight: 600; letter-spacing: .1em; font-size: .82rem; }

.panel-meta { display: flex; flex-direction: column; gap: 8px; margin: 22px 0 14px; }
.panel-content.align-right .panel-meta { align-items: flex-end; }
.panel-meta .discover-link { margin-top: 0; }
.panel-sub { font-size: .68rem; letter-spacing: .14em; opacity: .7; padding-left: 48px; }
.panel-content.align-right .panel-sub { padding-left: 0; padding-right: 48px; }

.panel-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: .68rem; letter-spacing: .2em; opacity: .85;
  margin-bottom: 6px;
}
.panel-eyebrow .line { width: 30px; height: 1px; background: currentColor; }
.panel-content.align-right .panel-eyebrow { flex-direction: row-reverse; }
.panel-name {
  font-family: var(--serif-display);
  font-weight: 400;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.02;
  letter-spacing: .01em;
  text-shadow: 0 3px 26px rgba(0,0,0,.5);
}
.panel-role { font-size: .82rem; letter-spacing: .22em; margin-top: 8px; opacity: .92; }
.panel-role small { font-size: .68rem; letter-spacing: .14em; opacity: .8; }
.panel-credit { font-size: .64rem; letter-spacing: .08em; opacity: .55; margin-top: 10px; }

/* ---- SUSANNE MEBES — bespoke full-screen panel ---- */
.panel-mebes {
  position: relative;
  height: 100vh;
  min-height: 100vh;
  overflow: hidden;
}
.panel-mebes .panel-photo {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: left center;
}
.panel-mebes::after { display: none; }   /* no tonal wash — the photo already fades to sea */

/* centred press quotes over the sea (right of centre) */
.panel-mebes .mebes-quotes {
  position: absolute;
  z-index: 3;
  top: 50%;
  right: 13.5%;
  transform: translateY(-60%);
  width: min(28vw, 400px);
  text-align: center;
  color: #ffffff;
  /* vmin so the quote scales with the smaller viewport dimension and never
     grows into the links on shorter desktop windows */
  font-size: clamp(0.9rem, 1.95vmin, 1.32rem);
  line-height: 1.5;
  text-shadow: 0 1px 12px rgba(0,0,0,.6), 0 0 2px rgba(0,0,0,.4);
}
.panel-mebes .mebes-quotes p { margin-bottom: 1.4em; }
.panel-mebes .mebes-quotes .src {
  display: block;
  letter-spacing: .08em;
  margin-bottom: .35em;
  font-size: .9em;
}
.panel-mebes .mebes-quotes .src-years { letter-spacing: .12em; margin-bottom: 1.8em; font-size: 1.05em; }
.panel-mebes .mebes-quotes .src-url { font-weight: 600; letter-spacing: .04em; margin-bottom: 1.8em; }
.panel-mebes .mebes-quotes .src-url a { border-bottom: 1px solid transparent; transition: border-color .25s; }
.panel-mebes .mebes-quotes .src-url a:hover { border-color: rgba(255,255,255,.7); }

/* streaming / buy / discover links, lower-right */
.panel-mebes .mebes-meta {
  position: absolute;
  z-index: 3;
  right: 13.5%;
  bottom: 8%;
  width: min(28vw, 400px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: #ffffff;
  text-shadow: 0 1px 10px rgba(0,0,0,.55);
}
.panel-mebes .mebes-meta .discover-link { margin-top: 0; color: #ffffff; font-weight: 600; font-size: .82rem; }
.panel-mebes .mebes-meta .panel-sub {
  font-size: .8rem; letter-spacing: .12em;
  padding-left: 48px; color: rgba(255,255,255,.92); line-height: 1.7;
}

/* name block, bottom-left over the photo */
.panel-mebes .mebes-name {
  position: absolute;
  z-index: 3;
  left: clamp(28px, 3.4vw, 60px);
  bottom: clamp(36px, 6vh, 64px);
  max-width: 52vw;   /* never reach into the quotes/links column */
  color: var(--cream);
}
.panel-mebes .mebes-name .panel-eyebrow { color: rgba(244,239,230,.92); margin-bottom: 8px; }
.panel-mebes .mebes-name .panel-name {
  font-size: clamp(1.9rem, 4.5vw, 5rem);   /* scales with width so it never overlaps the links */
  line-height: .98;
  text-shadow: 0 3px 28px rgba(0,0,0,.45);
}
.panel-mebes .mebes-name .panel-role {
  font-size: clamp(.9rem, 1.4vw, 1.2rem);
  letter-spacing: .26em;
  margin-top: 12px;
}

/* vertical column of her recordings on the extreme right */
.panel-mebes .mebes-albums {
  position: absolute;
  z-index: 3;
  top: 0; bottom: 0;
  right: clamp(16px, 1.4vw, 26px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: clamp(6px, 1.2vh, 16px);
  padding: 2.5vh 0;
}
/* covers scale to fit the viewport height so they never get clipped on shorter screens */
.panel-mebes .mebes-albums img {
  width: auto;
  height: auto;
  max-width: clamp(108px, 9.6vw, 152px);
  max-height: calc((100vh - 9vh) / 5);
  object-fit: contain;
  box-shadow: 0 10px 26px rgba(0,0,0,.45);
  transition: transform .35s;
}
.panel-mebes .mebes-albums img:hover { transform: scale(1.06); }

@media (max-width: 860px) {
  .panel-mebes .mebes-quotes { right: auto; left: 5%; width: 64%; top: 30%; transform: none; }
  .panel-mebes .mebes-meta { right: auto; left: 5%; width: 64%; bottom: 16%; }
  .panel-mebes .mebes-albums { display: none; }
}

/* ---- JOAQUIM FREIRE — bespoke full-screen panel (mirror of Mebes) ---- */
.panel-freire {
  position: relative;
  height: 100vh;
  min-height: 100vh;
  overflow: hidden;
}
.panel-freire .panel-photo {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: right center;   /* his face sits on the right */
}
.panel-freire::after { display: none; }

/* centred press quotes over the sea (left of centre) */
.panel-freire .freire-quotes {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 13.5%;
  transform: translateY(-60%);
  width: min(28vw, 400px);
  text-align: center;
  color: #ffffff;
  font-size: clamp(0.9rem, 1.95vmin, 1.32rem);
  line-height: 1.5;
  text-shadow: 0 1px 12px rgba(0,0,0,.6), 0 0 2px rgba(0,0,0,.4);
}
.panel-freire .freire-quotes p { margin-bottom: 1.4em; }
.panel-freire .freire-quotes .src {
  display: block;
  letter-spacing: .08em;
  margin-bottom: .35em;
  font-size: .9em;
}

/* streaming / buy / discover links, lower-left */
.panel-freire .freire-meta {
  position: absolute;
  z-index: 3;
  left: 13.5%;
  bottom: 8%;
  width: min(28vw, 400px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: #ffffff;
  text-shadow: 0 1px 10px rgba(0,0,0,.55);
}
.panel-freire .freire-meta .discover-link { margin-top: 0; color: #ffffff; font-weight: 600; font-size: .82rem; }
.panel-freire .freire-meta .panel-sub {
  font-size: .8rem; letter-spacing: .12em;
  padding-left: 48px; color: rgba(255,255,255,.92); line-height: 1.7;
}

/* name block, bottom-right over the photo */
.panel-freire .freire-name {
  position: absolute;
  z-index: 3;
  right: clamp(28px, 3.4vw, 60px);
  bottom: clamp(36px, 6vh, 64px);
  max-width: 52vw;
  color: var(--cream);
  text-align: right;
}
.panel-freire .freire-name .panel-eyebrow { color: rgba(244,239,230,.92); margin-bottom: 8px; }
.panel-freire .freire-name .panel-name {
  font-size: clamp(1.9rem, 4.5vw, 5rem);
  line-height: .98;
  text-shadow: 0 3px 28px rgba(0,0,0,.45);
}
.panel-freire .freire-name .panel-role {
  font-size: clamp(.9rem, 1.4vw, 1.2rem);
  letter-spacing: .26em;
  margin-top: 12px;
}

/* vertical column of his recordings on the extreme left */
.panel-freire .freire-albums {
  position: absolute;
  z-index: 3;
  top: 0; bottom: 0;
  left: clamp(16px, 1.4vw, 26px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: clamp(6px, 1.2vh, 16px);
  padding: 2.5vh 0;
}
.panel-freire .freire-albums img {
  width: auto;
  height: auto;
  max-width: clamp(108px, 9.6vw, 152px);
  max-height: calc((100vh - 9vh) / 5);
  object-fit: contain;
  box-shadow: 0 10px 26px rgba(0,0,0,.45);
  transition: transform .35s;
}
.panel-freire .freire-albums img:hover { transform: scale(1.06); }

@media (max-width: 860px) {
  .panel-freire .freire-quotes { left: 5%; width: 64%; top: 28%; transform: none; }
  .panel-freire .freire-meta { left: 5%; width: 64%; bottom: 16%; }
  .panel-freire .freire-albums { display: none; }
}

/* ---- SUSANNE MEBES & JOAQUIM FREIRE — bespoke duo panel ---- */
.panel-duo { position: relative; height: 100vh; min-height: 100vh; overflow: hidden; }
.panel-duo .panel-photo { position: absolute; inset: 0; background-size: cover; background-position: center; }
/* dark overlay so the white text reads over the light window/faces */
.panel-duo::after {
  content: '';
  position: absolute; inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,.34) 0%, rgba(0,0,0,.28) 38%, rgba(0,0,0,.62) 100%);
  pointer-events: none;
}

/* quotes top-left */
.panel-duo .duo-quotes {
  position: absolute;
  z-index: 3;
  top: clamp(90px, 13vh, 150px);
  left: clamp(28px, 3.4vw, 60px);
  width: min(48vw, 640px);
  color: #ffffff;
  text-align: left;
  font-size: clamp(1rem, 1.3vw, 1.28rem);
  line-height: 1.5;
  text-shadow: 0 1px 12px rgba(0,0,0,.6), 0 0 2px rgba(0,0,0,.4);
}
.panel-duo .duo-quotes p { margin-bottom: 1em; }
.panel-duo .duo-quotes .src-award { font-weight: 600; letter-spacing: .04em; font-size: 1.18em; margin: .3em 0 1em; }
.panel-duo .duo-quotes .src { display: block; letter-spacing: .08em; font-size: .86em; }
.panel-duo .duo-quotes .src-inline { letter-spacing: .06em; font-size: .86em; white-space: nowrap; }

/* streaming / buy / discover, mid-left */
.panel-duo .duo-meta {
  position: absolute;
  z-index: 3;
  left: clamp(28px, 3.4vw, 60px);
  top: 56%;
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: #ffffff;
  text-shadow: 0 1px 10px rgba(0,0,0,.55);
}
.panel-duo .duo-meta .discover-link { margin-top: 0; color: #ffffff; font-weight: 600; font-size: .82rem; }
.panel-duo .duo-meta .panel-sub { font-size: .8rem; letter-spacing: .12em; padding-left: 48px; color: rgba(255,255,255,.92); line-height: 1.7; }

/* full-width name across the bottom; eyebrow + role right-aligned */
.panel-duo .duo-name {
  position: absolute;
  z-index: 3;
  left: clamp(28px, 3.4vw, 60px);
  right: clamp(28px, 3.4vw, 60px);
  bottom: clamp(28px, 5vh, 56px);
  color: var(--cream);
}
.panel-duo .duo-name .panel-eyebrow { display: flex; justify-content: flex-end; color: rgba(244,239,230,.92); margin-bottom: 8px; }
.panel-duo .duo-name .panel-name {
  text-align: right;   /* aligned right with ABOUT THE ARTISTS / GUITARS */
  font-size: clamp(1.8rem, 4.3vw, 4.8rem);
  line-height: 1;
  text-shadow: 0 3px 28px rgba(0,0,0,.5);
}
.panel-duo .duo-name .panel-role { text-align: right; font-size: clamp(.9rem, 1.4vw, 1.2rem); letter-spacing: .26em; margin-top: 10px; }

/* recordings on the far right */
.panel-duo .duo-albums {
  position: absolute;
  z-index: 3;
  top: 0; bottom: 0;
  right: clamp(16px, 1.4vw, 26px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: clamp(6px, 1.2vh, 16px);
  padding: 2.5vh 0;
}
.panel-duo .duo-albums img {
  width: auto; height: auto;
  max-width: clamp(108px, 9.6vw, 152px);
  max-height: calc((100vh - 9vh) / 5);
  object-fit: contain;
  box-shadow: 0 10px 26px rgba(0,0,0,.45);
  transition: transform .35s;
}
.panel-duo .duo-albums img:hover { transform: scale(1.06); }

@media (max-width: 860px) {
  .panel-duo .duo-quotes { width: 62%; }
  .panel-duo .duo-meta { top: auto; bottom: 26%; }
  .panel-duo .duo-albums { display: none; }
  .panel-duo .duo-name .panel-name { font-size: 1.9rem; }
}

/* ---- THE TRIO LIGETI — photo/name left (white), cream right column (dark) ---- */
.panel-trio { position: relative; height: 100vh; min-height: 100vh; overflow: hidden; }
.panel-trio .panel-photo { position: absolute; inset: 0; background-size: cover; background-position: left center; }
.panel-trio::after { display: none; }

/* competition heading, top-right (dark on the cream side) */
.panel-trio .trio-heading {
  position: absolute;
  z-index: 3;
  top: clamp(80px, 13vh, 150px);
  right: clamp(40px, 6vw, 110px);
  width: min(34vw, 460px);
  color: #1b2025;
  font-family: var(--serif-display);
  font-weight: 500;
  font-size: clamp(1.3rem, 2vw, 2.05rem);
  line-height: 1.25;
  letter-spacing: .02em;
  text-align: right;   /* lines end aligned with the album below */
}

/* album sits below the heading and is sized by viewport height, so it never
   collides with the heading above or the links below on any desktop size */
.panel-trio .trio-album {
  position: absolute;
  z-index: 3;
  top: clamp(220px, 34vh, 380px);
  right: clamp(40px, 6vw, 110px);
}
.panel-trio .trio-album img {
  width: auto;
  height: auto;
  max-height: 34vh;
  max-width: min(32vw, 340px);
  box-shadow: 0 12px 30px rgba(0,0,0,.3);
}

/* links lower-right (dark) */
.panel-trio .trio-meta {
  position: absolute;
  z-index: 3;
  right: clamp(40px, 6vw, 110px);
  bottom: clamp(40px, 7vh, 80px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: #1a1f24;
}
.panel-trio .trio-meta .discover-link { margin-top: 0; color: #11161a; font-weight: 600; font-size: .82rem; }
.panel-trio .trio-meta .panel-sub { font-size: .8rem; letter-spacing: .12em; padding-left: 48px; color: #2c343b; line-height: 1.7; }

/* name + members, bottom-left (white over the photo) */
.panel-trio .trio-name {
  position: absolute;
  z-index: 3;
  left: clamp(28px, 3.4vw, 60px);
  bottom: clamp(28px, 5vh, 56px);
  color: var(--cream);
  text-shadow: 0 2px 18px rgba(0,0,0,.5);
}
.panel-trio .trio-name .panel-eyebrow { color: rgba(244,239,230,.92); margin-bottom: 8px; }
.panel-trio .trio-name .panel-name {
  font-size: clamp(2.4rem, 4.8vw, 4.6rem);
  line-height: .98;
  margin-bottom: 10px;
}
.panel-trio .trio-member {
  font-family: var(--serif-display);
  font-size: clamp(1.4rem, 2.4vw, 2.4rem);
  line-height: 1.18;
  letter-spacing: .02em;
}
.panel-trio .trio-member small { font-size: .5em; letter-spacing: .18em; opacity: .85; }

@media (max-width: 860px) {
  .panel-trio .panel-photo { background-position: 30% center; }
  .panel-trio .trio-heading { right: 5%; width: 60%; font-size: 1.2rem; }
  .panel-trio .trio-album { display: none; }
  .panel-trio .trio-meta { right: auto; left: clamp(28px,3.4vw,60px); bottom: 30%; color: #fff; }
  .panel-trio .trio-meta .discover-link { color: #fff; }
  .panel-trio .trio-meta .panel-sub { color: rgba(255,255,255,.9); }
}

/* ---- THE DANIEL TRIO — black panel, three photos top-right ---- */
.panel-danieltrio { position: relative; height: 100vh; min-height: 100vh; overflow: hidden; background: #000; }
/* flat black overlay across the ENTIRE section, above the photos but below the text */
.panel-danieltrio::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(0,0,0,.5);
  pointer-events: none;
}

/* member photos in a full-width 4-column grid; left column stays black,
   the three photos fill the right three columns */
.panel-danieltrio .dt-photos {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 1;
  width: 100%;
  height: min(60vh, 600px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.panel-danieltrio .dt-photos img { width: 100%; height: 100%; object-fit: cover; display: block; }
.panel-danieltrio .dt-photos img:first-child { grid-column: 2; } /* leave column 1 empty (black) */

/* quote, top-left (white) */
.panel-danieltrio .dt-quote {
  position: absolute;
  z-index: 3;
  top: clamp(60px, 10vh, 120px);
  left: clamp(28px, 3.4vw, 60px);
  width: min(20vw, 280px);   /* stays inside the empty left column */
  color: #fff;
  font-size: clamp(1rem, 1.2vw, 1.22rem);
  line-height: 1.4;
}
.panel-danieltrio .dt-quote .src { display: block; letter-spacing: .08em; font-size: .82em; margin-top: .2em; }

/* album, left (below the quote) */
.panel-danieltrio .dt-album {
  position: absolute;
  z-index: 3;
  left: clamp(28px, 3.4vw, 60px);
  top: clamp(150px, 26vh, 270px);
}
.panel-danieltrio .dt-album img {
  width: clamp(150px, 15vw, 220px);
  height: auto;
  box-shadow: 0 12px 30px rgba(0,0,0,.6);
}

/* links, lower-left (white) */
.panel-danieltrio .dt-meta {
  position: absolute;
  z-index: 3;
  left: clamp(28px, 3.4vw, 60px);
  bottom: clamp(40px, 9vh, 120px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: #fff;
}
.panel-danieltrio .dt-meta .discover-link { margin-top: 0; color: #fff; font-weight: 600; font-size: .82rem; }
.panel-danieltrio .dt-meta .panel-sub { font-size: .8rem; letter-spacing: .12em; padding-left: 48px; color: rgba(255,255,255,.92); line-height: 1.7; }

/* name + members, bottom-right (white, right-aligned) */
.panel-danieltrio .dt-name {
  position: absolute;
  z-index: 3;
  right: clamp(28px, 3.4vw, 60px);
  bottom: clamp(20px, 3.5vh, 44px);
  text-align: right;
  color: var(--cream);
}
.panel-danieltrio .dt-name .panel-eyebrow { display: flex; justify-content: flex-end; color: rgba(244,239,230,.92); margin-bottom: 8px; }
.panel-danieltrio .dt-name .panel-name { font-size: clamp(2.4rem, 5vw, 5rem); line-height: .98; margin-bottom: 4px; }
.panel-danieltrio .dt-member {
  font-family: var(--serif-display);
  font-size: clamp(1.5rem, 3vw, 3rem);
  line-height: 1.12;
}
.panel-danieltrio .dt-member small { font-size: .42em; letter-spacing: .16em; opacity: .85; }
.panel-danieltrio .dt-credit { font-size: .62rem; letter-spacing: .06em; opacity: .55; margin-top: 12px; }

@media (max-width: 860px) {
  .panel-danieltrio .dt-photos { position: relative; width: 100%; height: 38vh; }
  .panel-danieltrio .dt-quote { position: relative; top: auto; left: auto; width: auto; padding: 24px clamp(24px,5vw,40px) 0; }
  .panel-danieltrio .dt-album, .panel-danieltrio .dt-meta { position: relative; left: auto; top: auto; bottom: auto; margin: 18px clamp(24px,5vw,40px) 0; }
  .panel-danieltrio .dt-name { position: relative; right: auto; bottom: auto; text-align: left; padding: 24px clamp(24px,5vw,40px) 40px; }
  .panel-danieltrio .dt-name .panel-eyebrow { justify-content: flex-start; }
  .panel-danieltrio { height: auto; min-height: 100vh; }
}

/* ============================================================
   STREAMING
   ============================================================ */
.streaming { padding: 110px 0 120px; }
.streaming .section-inner { position: relative; z-index: 2; }
/* body content indented so the title reads further left;
   only the top-level discover link is indented (the one inside .streaming-buy isn't) */
.streaming-lead, .platform-list, .streaming-note,
.streaming .section-inner > .discover-link, .streaming-buy { margin-left: 54px; }
.streaming-lead { margin-top: 1.7rem; font-size: 1.12rem; color: rgba(244,239,230,.92); }
.platform-list {
  list-style: none;
  display: flex; flex-wrap: wrap; align-items: center; gap: 12px 26px;
  margin-top: 16px;
}
/* leading rule to the left of PRESTO CLASSICAL, like the DISCOVER link */
.platform-list::before {
  content: '';
  flex: 0 0 auto;
  width: 34px; height: 1px;
  margin-right: -2px;
  background: rgba(244,239,230,.8);
}
.platform-list li {
  font-size: .84rem; letter-spacing: .14em; font-weight: 500;
  color: rgba(244,239,230,.95);
  position: relative;
  cursor: default;
  transition: color .25s;
}
.platform-list li:hover { color: #fff; }
.streaming-note { margin-top: 2.2rem; max-width: 660px; font-size: 1.08rem; color: rgba(244,239,230,.9); }
.streaming-buy { margin-top: 2.6rem; }
.streaming-buy .discover-link { margin-left: 0; }
/* same size as the DISCOVER label and aligned with the leading line */
.streaming-sub { font-size: .72rem; letter-spacing: .16em; color: rgba(244,239,230,.7); margin-top: 8px; padding-left: 0; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { padding: 110px 0 120px; }
.contact-inner { position: relative; z-index: 2; text-align: center; }
.contact-title { text-align: center; }
.contact-org { margin-top: 1rem; letter-spacing: .04em; font-size: .95rem; }
.contact-links { margin-top: 4px; font-size: .92rem; }
.contact-links a { border-bottom: 1px solid transparent; transition: border-color .25s; }
.contact-links a:hover { border-color: var(--gold); }
.contact-form {
  max-width: 540px;
  margin: 2.6rem auto 0;
  text-align: left;
}
.field {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 1.5rem;
}
.field > span { width: 78px; font-size: .92rem; letter-spacing: .02em; flex: 0 0 auto; }
.field input, .field textarea {
  flex: 1;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(244,239,230,.5);
  color: var(--cream);
  font-family: var(--serif-body);
  font-size: 1rem;
  padding: 6px 2px;
  transition: border-color .25s;
}
.field-message { align-items: flex-start; }
.field textarea {
  border: 1px solid rgba(244,239,230,.5);
  padding: 10px;
  resize: vertical;
  min-height: 96px;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--gold); }
.field-check {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .78rem; color: rgba(244,239,230,.8);
  margin-bottom: 1.8rem;
}
.field-check input { margin-top: 3px; accent-color: var(--gold); }
.send-btn {
  display: block;
  margin: 0 auto;
  background: transparent;
  border: 1px solid rgba(244,239,230,.7);
  color: var(--cream);
  font-family: var(--serif-body);
  font-size: .78rem;
  letter-spacing: .22em;
  padding: 13px 40px;
  cursor: pointer;
  transition: background .3s, color .3s, border-color .3s;
}
.send-btn:hover { background: var(--cream); color: var(--ink); border-color: var(--cream); }
.form-status { text-align: center; margin-top: 1rem; font-size: .9rem; min-height: 1.2em; color: var(--gold); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #14191e;
  text-align: center;
  padding: 46px 20px;
}
.footer-logo { width: 150px; margin: 0 auto 16px; opacity: .85; }
.site-footer p { font-size: .8rem; letter-spacing: .04em; color: rgba(244,239,230,.6); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {
  .record { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
  .record.in-view { opacity: 1; transform: none; }
  .panel-content { opacity: 0; transform: translateY(20px); transition: opacity .8s ease .1s, transform .8s ease .1s; }
  .artist-panel.in-view .panel-content { opacity: 1; transform: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .record { grid-template-columns: 130px 1fr; }
  .record-links { grid-column: 1 / -1; flex-direction: row; flex-wrap: wrap; gap: 18px 28px; margin-top: 8px; }
  .record-substream { padding-left: 0; }
}

@media (max-width: 860px) {
  /* fixed backgrounds are janky on mobile; switch to scroll */
  .hero-bg, .catalogue-bg, .about-bg, .artists-bg, .streaming-bg, .contact-bg,
  .spotlight-bg, .recordings { background-attachment: scroll; }
  .hero-bg { position: absolute; }

  .nav-links {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(78vw, 320px);
    flex-direction: column;
    gap: 22px;
    background: rgba(20,26,31,.97);
    padding: 100px 40px 40px;
    margin: 0;
    transform: translateX(100%);
    transition: transform .4s ease;
    backdrop-filter: blur(10px);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: .82rem; }
  .nav-toggle { display: flex; margin-left: auto; order: 3; z-index: 101; }
  .nav-cart { order: 2; margin-left: auto; }
  .nav-logo { order: 1; }

  .about-map { position: relative; top: 0; margin: 0 0 24px auto; }
  .panel-content { padding: 60px 32px; }
  .panel-quotes { max-width: 100%; }
}

@media (max-width: 560px) {
  .section-inner, .recordings-inner { padding-left: 24px; padding-right: 24px; }
  .record { grid-template-columns: 1fr; gap: 18px; }
  .record-cover img { width: 130px; height: 130px; }
  .cover-track, .artist-track { padding-left: 24px; padding-right: 24px; }
  .carousel-arrow { display: none; }
  .catalogue .discover-link, .artists-head { margin-left: 0; }
  .hero-headline { font-size: clamp(2rem, 9vw, 3rem); }
  .field { flex-direction: column; align-items: stretch; gap: 6px; }
  .field > span { width: auto; }
}
