:root {
  /* Design A — Cinema / Spotlight */
  --bg:             #0E1024;     /* midnight indigo */
  --bg-soft:        #16182E;
  --bg-deep:        #07081A;
  --ink:            #F2EAD3;     /* cream */
  --ink-soft:       #B8B4A8;
  --rule:           #2A2D45;
  --saffron:        #F5B23A;
  --saffron-d:      #C8861E;
  --magenta:        #E8407A;
  --teal:           #4FB1B8;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; background: var(--bg-deep); overflow-x: hidden; }
body {
  font-family: 'Assistant', sans-serif;
  font-weight: 400;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--saffron); color: var(--bg-deep); }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* Scroll-triggered reveals */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -3rem;
  inset-inline-start: 1rem;
  z-index: 1001;
  background: var(--saffron);
  color: var(--bg-deep);
  padding: 0.6rem 1.1rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  border-radius: 4px;
  transition: top .2s ease;
}
.skip-link:focus { top: 1rem; outline: 2px solid var(--bg-deep); outline-offset: 2px; }

/* Focus rings — keyboard nav */
.feature-card:focus-visible,
.album-tile:focus-visible,
.contact-icon:focus-visible,
.show-cta:focus-visible,
.section-cta:focus-visible,
.songbook-card:focus-visible,
.lang-toggle:focus-visible,
.site-nav a:focus-visible,
.lightbox-close:focus-visible {
  outline: 2px solid var(--saffron);
  outline-offset: 4px;
}

.italic-en { font-family: 'Cormorant Garamond', serif; font-style: italic; }

/* ─── Header ─── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 2.4rem;
  background: transparent;
  transition: background-color .3s ease, padding .3s ease, backdrop-filter .3s ease;
  color: var(--ink);
}
.site-header.scrolled {
  background: rgba(14,16,36,0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 0.85rem 2.4rem;
  border-bottom: 1px solid var(--rule);
}
.brand {
  font-family: 'Karantina', serif;
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  color: inherit;
  display: inline-flex;
  align-items: center;
}
.brand-logo {
  height: 4rem;
  width: auto;
  display: block;
}
.lang-toggle {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: inherit;
  padding: 0.4rem 0.9rem;
  border: 1px solid currentColor;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.lang-toggle:hover { background: var(--saffron); color: var(--bg-deep); border-color: var(--saffron); }

/* ─── Site nav ─── */
.site-nav {
  display: flex;
  gap: 1.5rem;
  margin-inline-start: auto;
  margin-inline-end: 1rem;
}
.site-nav a {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: inherit;
  opacity: 0.85;
  transition: color .2s ease, opacity .2s ease;
}
.site-nav a:hover { color: var(--saffron); opacity: 1; }
.nav-toggle {
  display: none;
  width: 2.4rem;
  height: 2.4rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  justify-content: space-between;
  margin-inline-start: auto;
  margin-inline-end: 0.75rem;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: currentColor;
  transition: transform .25s ease, opacity .25s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 880px) {
  .site-nav {
    position: fixed;
    inset: 4rem 0 auto 0;
    flex-direction: column;
    gap: 0;
    padding: 1.5rem 2rem;
    background: rgba(14,16,36,0.96);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--rule);
    margin: 0;
    transform: translateY(-110%);
    transition: transform .3s ease;
    visibility: hidden;
  }
  .site-nav.is-open { transform: translateY(0); visibility: visible; }
  .site-nav a {
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    color: var(--ink);
    font-size: 1rem;
    letter-spacing: 0.04em;
  }
  .site-nav a:last-child { border-bottom: none; }
  .nav-toggle { display: flex; }
}

/* ─── Hero — full-bleed logo image + subtitle ─── */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--bg-deep) url('/assets/photos/hero-logo.webp') center 40%/contain no-repeat;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 4rem;
}
.hero-subtitle {
  text-align: center;
  font-family: 'Karantina', 'Frank Ruhl Libre', serif;
  font-weight: 300;
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  color: var(--saffron);
  letter-spacing: 0.08em;
  margin: 0;
  padding: 0 1.5rem;
  text-shadow: 0 2px 16px rgba(0,0,0,0.6);
}
:lang(en) .hero-subtitle {
  font-family: 'Cormorant Garamond', 'EB Garamond', serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  letter-spacing: 0.03em;
}
@media (max-width: 720px) {
  .hero {
    background-image: url('/assets/photos/hero-logo-mobile.webp');
    min-height: 75vh;
    padding-bottom: 2.5rem;
  }
}

/* ─── Sections — dark cinema ─── */
section { padding: 7rem 2rem; }
#featured { padding: 0 2rem 6rem; background: var(--bg); }
#works {
  background: var(--bg-soft);
  padding-top: 5rem;
}
#about {
  padding: 6rem 2rem;
  background: var(--bg);
  border-top: 1px solid var(--rule);
}
.about-inner { max-width: 48rem; margin: 0 auto; text-align: center; }
.about-meta {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  margin-top: 1.5rem;
  line-height: 1.7;
}
#contact { background: var(--bg-soft); border-top: 1px solid var(--rule); }

/* ─── Project list (concertina) ─── */
.project-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--rule);
}
.project { border-bottom: 1px solid var(--rule); }
.project details > summary {
  list-style: none;
  cursor: pointer;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto auto;
  grid-template-areas:
    "meta arrow"
    "title arrow"
    "tagline arrow";
  align-items: center;
  gap: 0.4rem 1.5rem;
  padding: 1.75rem 1rem;
  position: relative;
  background-color: transparent;
  background-position: center 50%;
  background-size: cover;
  background-repeat: no-repeat;
  transition: background-color .35s ease;
  overflow: hidden;
  min-height: 11rem;
}
.project details > summary.bg-top { background-position: center 18%; }
.project details > summary.bg-bottom { background-position: center 80%; }
.project details > summary::-webkit-details-marker { display: none; }
.project details > summary::before {
  /* Dark veil over poster bg so text legible */
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(14,16,36,0.95) 0%, rgba(14,16,36,0.78) 60%, rgba(14,16,36,0.55) 100%);
  pointer-events: none;
  z-index: 0;
  transition: background .35s ease;
}
:dir(ltr) .project details > summary::before {
  background: linear-gradient(270deg, rgba(14,16,36,0.95) 0%, rgba(14,16,36,0.78) 60%, rgba(14,16,36,0.55) 100%);
}
.project details > summary:hover::before {
  background: linear-gradient(90deg, rgba(14,16,36,0.85) 0%, rgba(14,16,36,0.55) 60%, rgba(14,16,36,0.3) 100%);
}
:dir(ltr) .project details > summary:hover::before {
  background: linear-gradient(270deg, rgba(14,16,36,0.85) 0%, rgba(14,16,36,0.55) 60%, rgba(14,16,36,0.3) 100%);
}
.project details > summary > * { position: relative; z-index: 1; }

.project-meta {
  grid-area: meta;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--saffron);
}
.project-title {
  grid-area: title;
  font-family: 'Karantina', serif;
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.005em;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}
:lang(en) .project-title { font-family: 'Cormorant Garamond', 'EB Garamond', serif; font-style: italic; font-weight: 500; }
.project-tagline {
  grid-area: tagline;
  font-family: 'Karantina', 'Frank Ruhl Libre', serif;
  font-weight: 300;
  font-size: 1.2rem;
  line-height: 1.4;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
  word-spacing: 0.08em;
  text-shadow: 0 1px 8px rgba(0,0,0,0.55);
}
:lang(en) .project-tagline {
  font-family: 'EB Garamond', Georgia, serif;
  font-weight: 400;
  letter-spacing: 0;
  font-size: 1rem;
}
.project-arrow {
  grid-area: arrow;
  font-family: 'Inter', sans-serif;
  font-size: 1.4rem;
  color: var(--saffron);
  transition: transform .3s cubic-bezier(.2,.7,.2,1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1.5px solid var(--saffron);
  border-radius: 50%;
}
.project details[open] > summary .project-arrow { transform: rotate(180deg); }
.project details[open] > summary::before {
  background: linear-gradient(90deg, rgba(14,16,36,0.92) 0%, rgba(14,16,36,0.7) 60%, rgba(14,16,36,0.4) 100%);
}

.project-body {
  padding: 1.5rem 1rem 2.5rem;
  background: var(--bg-soft);
  border-top: 1px solid var(--rule);
}
@media (max-width: 720px) {
  .project-body {
    padding: 1.25rem 1rem 2rem;
    background: rgba(245,178,58,0.04);
    border-top: 1px solid rgba(245,178,58,0.35);
    box-shadow: inset 3px 0 0 rgba(245,178,58,0.4);
    margin: 0;
  }
  :dir(ltr) .project-body { box-shadow: inset -3px 0 0 rgba(245,178,58,0.4); }
  /* Smaller, distinct play button inside open section vs project-arrow */
  .project-body .play-cue {
    width: 3.2rem;
    height: 3.2rem;
    background: rgba(245,178,58,0.9);
    color: var(--bg-deep);
    border-color: var(--saffron);
  }
  .project-body .play-cue svg { width: 1.1rem; height: 1.1rem; }
}
.project-cta {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bg-deep);
  background: var(--saffron);
  padding: 0.7rem 1.3rem;
  margin-bottom: 1.5rem;
  border: 2px solid var(--saffron);
  transition: background .2s ease, color .2s ease;
}
.project-cta:hover { background: transparent; color: var(--saffron); }
.project-body .featured-grid { margin-top: 0; }

/* details animate height (modern browsers); reduced-motion respected */
@media (prefers-reduced-motion: no-preference) {
  .project details::details-content {
    interpolate-size: allow-keywords;
    block-size: 0;
    overflow-y: clip;
    transition: block-size .4s cubic-bezier(.2,.7,.2,1), content-visibility .4s allow-discrete;
  }
  .project details[open]::details-content { block-size: auto; }
}

/* ─── Featured — collage grid ─── */
.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  margin-bottom: 2.5rem;
}
.section-header .section-title { margin: 0; }
.title-link {
  color: inherit;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color .2s ease, border-color .2s ease;
}
.title-link:hover { color: var(--saffron); border-bottom-color: var(--saffron); }
.section-cta {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bg-deep);
  background: var(--saffron);
  padding: 0.75rem 1.4rem;
  border: 2px solid var(--saffron);
  display: inline-flex;
  align-items: center;
  transition: background .2s ease, color .2s ease, transform .15s ease, box-shadow .2s ease;
}
.section-cta:hover {
  background: transparent;
  color: var(--saffron);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245,178,58,0.25);
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  grid-auto-flow: dense;
  grid-auto-rows: minmax(8rem, auto);
}
.feature-card {
  position: relative;
  grid-column: span 3;
  aspect-ratio: 16 / 9;
  background: var(--bg-deep) center/cover no-repeat;
  border: 1px solid var(--rule);
  cursor: pointer;
  overflow: hidden;
  padding: 0;
  font: inherit;
  color: inherit;
  text-align: start;
  outline: none;
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}
.feature-card.span-wide { grid-column: span 4; }
.feature-card.span-large { grid-column: span 6; }
.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(7,8,26,0.15) 0%,
    rgba(7,8,26,0) 25%,
    rgba(7,8,26,0) 35%,
    rgba(7,8,26,0.6) 60%,
    rgba(7,8,26,0.95) 100%);
  pointer-events: none;
  transition: background .3s ease;
}
.feature-card:hover {
  border-color: var(--saffron);
  box-shadow: 0 0 0 1px var(--saffron), 0 24px 60px rgba(245,178,58,0.15);
  transform: translateY(-2px);
}
@media (max-width: 900px) {
  .featured-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-card,
  .feature-card.span-wide { grid-column: span 1; }
  .feature-card.span-large { grid-column: span 2; }
}
.feature-overlay {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  padding: 2rem 1.25rem 1.1rem;
  display: flex;
  flex-direction: column;
  pointer-events: none;
  background: linear-gradient(180deg,
    rgba(7,8,26,0) 0%,
    rgba(7,8,26,0.55) 35%,
    rgba(7,8,26,0.92) 100%);
}
.feature-card .feature-tag {
  display: inline-block;
  width: max-content;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 0.4rem;
}
.feature-card .feature-title {
  font-family: 'Karantina', serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
  line-height: 0.95;
  color: #fff;
  letter-spacing: -0.005em;
  text-shadow: 0 2px 12px rgba(0,0,0,0.55);
  margin-bottom: 0.3rem;
}
.feature-card.span-wide .feature-title,
.feature-card.span-large .feature-title { font-size: clamp(1.8rem, 3.5vw, 3rem); }
:lang(en) .feature-card .feature-title { font-family: 'Cormorant Garamond', 'EB Garamond', serif; font-style: italic; font-weight: 500; }
.feature-card .feature-note {
  font-family: 'Karantina', 'Frank Ruhl Libre', serif;
  font-weight: 300;
  font-size: 1.3rem;
  letter-spacing: 0.06em;
  word-spacing: 0.14em;
  color: rgba(255,255,255,0.92);
  line-height: 1.6;
  text-shadow: 0 1px 8px rgba(0,0,0,0.55);
  max-width: 36rem;
}
:lang(en) .feature-card .feature-note {
  font-family: 'EB Garamond', 'Frank Ruhl Libre', Georgia, serif;
  font-weight: 400;
  font-size: 0.95rem;
  letter-spacing: 0;
  line-height: 1.45;
}
.media-toggle { width: 100%; }
.play-cue {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 4.5rem; height: 4.5rem;
  border-radius: 50%;
  background: rgba(14,16,36,0.55);
  border: 1.5px solid var(--saffron);
  color: var(--saffron);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: transform .25s cubic-bezier(.2,.8,.2,1), background .25s ease;
  z-index: 2;
}
.play-cue svg {
  width: 1.5rem;
  height: 1.5rem;
  display: block;
  transform: translateX(2px);
}
.feature-card:hover .play-cue {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--saffron);
  color: var(--bg-deep);
}

/* ─── Lightbox player ─── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(7,8,26,0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1.5rem;
  animation: lightbox-fade .25s ease-out;
}
.lightbox[hidden] { display: none; }
@keyframes lightbox-fade { from { opacity: 0; } to { opacity: 1; } }
.lightbox-frame {
  position: relative;
  width: 100%;
  max-width: 1200px;
  aspect-ratio: 16 / 9;
  background: #000;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  border: 1px solid var(--saffron);
}
.lightbox-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.lightbox-close {
  position: absolute;
  top: 1.25rem;
  inset-inline-end: 1.5rem;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 1.5px solid var(--saffron);
  background: rgba(14,16,36,0.6);
  color: var(--saffron);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.lightbox-close:hover { background: var(--saffron); color: var(--bg-deep); transform: scale(1.05); }
body.lightbox-open { overflow: hidden; }

/* ─── Songbook card ─── */
.songbook-card {
  display: grid;
  grid-template-columns: minmax(14rem, 24rem) 1fr;
  gap: 2.5rem;
  align-items: center;
  text-decoration: none;
  color: inherit;
  margin-top: 2.5rem;
  transition: transform .25s ease;
}
.songbook-card:hover { transform: translateY(-3px); }
.songbook-image {
  aspect-ratio: 3 / 4;
  background: var(--bg-deep) center/cover no-repeat;
  border: 1px solid var(--rule);
  box-shadow: 0 14px 40px rgba(0,0,0,0.4);
  transition: border-color .25s ease, box-shadow .25s ease;
}
.songbook-card:hover .songbook-image {
  border-color: var(--saffron);
  box-shadow: 0 24px 60px rgba(245,178,58,0.2);
}
.songbook-title {
  font-family: 'Karantina', serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1;
  margin: 0 0 1rem;
  color: var(--ink);
  letter-spacing: -0.005em;
}
:lang(en) .songbook-title { font-family: 'Cormorant Garamond', 'EB Garamond', serif; font-style: italic; font-weight: 500; }
.songbook-note {
  font-family: 'Karantina', 'Frank Ruhl Libre', serif;
  font-weight: 300;
  font-size: 1.5rem;
  color: var(--ink-soft);
  margin: 0 0 1.5rem;
  max-width: 32rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
  word-spacing: 0.08em;
}
:lang(en) .songbook-note {
  font-family: 'EB Garamond', 'Frank Ruhl Libre', Georgia, serif;
  font-weight: 400;
  font-size: 1.05rem;
  letter-spacing: 0;
  line-height: 1.55;
}
.songbook-cta {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--saffron);
  border-bottom: 1px solid var(--saffron);
  padding-bottom: 3px;
}
@media (max-width: 720px) {
  .songbook-card { grid-template-columns: 1fr; gap: 1.5rem; }
  .songbook-image { max-width: 18rem; aspect-ratio: 3 / 4; }
}
.feature-meta {
  padding: 1.25rem 1.4rem 1.4rem;
}
.feature-tag {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 0.5rem;
}
.feature-title {
  font-family: 'Karantina', serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 0.95;
  margin-bottom: 0.4rem;
  color: var(--ink);
  letter-spacing: -0.005em;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}
.feature-large .feature-title { font-size: clamp(2rem, 4.5vw, 3.6rem); }
:lang(en) .feature-title { font-family: 'Cormorant Garamond', 'EB Garamond', serif; font-style: italic; font-weight: 500; }
.feature-note {
  font-family: 'Karantina', 'Frank Ruhl Libre', serif;
  font-weight: 300;
  font-size: 0.98rem;
  color: var(--ink-soft);
  max-width: 36rem;
  line-height: 1.5;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}
@media (max-width: 720px) {
  .featured-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .feature-large { grid-column: auto; }
}
.section-inner { max-width: 64rem; margin: 0 auto; }
.section-kicker {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 1.25rem;
}
.section-title {
  font-family: 'Karantina', serif;
  font-weight: 700;
  font-size: clamp(2rem, 6vw, 4rem);
  line-height: 0.95;
  margin-bottom: 2rem;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.section-body { font-size: 1.1rem; max-width: 42rem; }
.section-body p { margin-bottom: 1rem; }


/* ─── Band callout — Pinhas & Sons + carousel ─── */
/* ─── Works section frame ─── */
.works-section {
  padding: 5rem 2rem 4rem;
  background: var(--bg);
  position: relative;
}
.works-section .section-inner { max-width: 80rem; margin: 0 auto; position: relative; z-index: 1; }

/* P&S section gets band photo backdrop, heavily darkened */
#band {
  background:
    linear-gradient(rgba(7,8,26,0.85), rgba(7,8,26,0.92)),
    url('/assets/photos/band-bg.webp') center/cover no-repeat fixed;
}
@media (max-width: 720px) {
  #band {
    background:
      linear-gradient(rgba(7,8,26,0.88), rgba(7,8,26,0.94)),
      url('/assets/photos/band-bg-mobile.webp') center/cover no-repeat;
  }
}

/* ─── Upcoming show ─── */
.show-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: 1.75rem 1.5rem;
  border: 1px solid var(--rule);
  background: rgba(79,177,184,0.05);
  transition: border-color .25s ease, background .25s ease;
}
.show-item:hover { border-color: var(--teal); background: rgba(79,177,184,0.1); }
.show-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: 'Inter', sans-serif;
  color: var(--teal);
  line-height: 1;
}
.show-day {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.show-year {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  margin-top: 0.4rem;
  color: var(--ink-soft);
}
.show-title {
  font-family: 'Karantina', serif;
  font-weight: 700;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  line-height: 1.05;
  color: var(--ink);
  margin: 0 0 0.4rem;
  letter-spacing: -0.005em;
}
:lang(en) .show-title { font-family: 'Cormorant Garamond', 'EB Garamond', serif; font-style: italic; font-weight: 500; }
.show-venue {
  font-family: 'Karantina', 'Frank Ruhl Libre', serif;
  font-weight: 300;
  color: var(--ink-soft);
  margin: 0;
  font-size: 1.3rem;
  line-height: 1.45;
  letter-spacing: 0.04em;
  word-spacing: 0.08em;
}
:lang(en) .show-venue {
  font-family: 'EB Garamond', 'Frank Ruhl Libre', Georgia, serif;
  font-weight: 400;
  font-size: 0.98rem;
  line-height: 1.45;
  letter-spacing: 0;
}
.show-cta {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  border: 1px solid var(--teal);
  padding: 0.7rem 1.2rem;
  white-space: nowrap;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.show-cta:hover { background: var(--teal); color: var(--bg-deep); border-color: var(--teal); }
@media (max-width: 720px) {
  .show-item { grid-template-columns: 1fr; gap: 1rem; text-align: start; }
  .show-date { flex-direction: row; gap: 0.6rem; }
}

/* ─── Albums + Songbook ─── */
.album-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem 1.25rem;
  margin-top: 2.5rem;
}
.album-grid-second { margin-top: 2rem; }
@media (max-width: 720px) {
  .album-grid { grid-template-columns: repeat(2, 1fr); }
}
.album-tile {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform .25s ease;
}
.album-tile:hover { transform: translateY(-3px); }
.album-cover {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: var(--bg-deep) center/cover no-repeat;
  border: 1px solid var(--rule);
  box-shadow: 0 6px 20px rgba(0,0,0,0.35);
  transition: border-color .25s ease, box-shadow .25s ease;
}
.album-tile:hover .album-cover {
  border-color: var(--saffron);
  box-shadow: 0 14px 36px rgba(245,178,58,0.18);
}
.album-cover-songbook {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--bg-deep) 0%, #1a1d3a 100%);
  border: 1px solid var(--saffron);
}
.songbook-mark {
  font-family: 'Karantina', serif;
  font-size: clamp(4rem, 12vw, 7rem);
  color: var(--saffron);
  line-height: 1;
}
.album-title {
  margin-top: 0.75rem;
  font-family: 'Karantina', serif;
  font-weight: 700;
  font-size: 1.15rem;
  line-height: 1.15;
  color: var(--ink);
  letter-spacing: -0.005em;
}
:lang(en) .album-title {
  font-family: 'Cormorant Garamond', 'EB Garamond', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 1.05rem;
}

/* ─── Contact ─── */
#contact {
  padding: 7rem 2rem 6rem;
  background: var(--bg-deep);
  text-align: center;
  position: relative;
}
#contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(245,178,58,0.08) 0%, rgba(7,8,26,0) 60%);
  pointer-events: none;
}
#contact .section-inner { text-align: center; position: relative; }
.contact-headline {
  font-family: 'Karantina', serif;
  font-weight: 700;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1;
  color: var(--ink);
  margin: 0 0 0.75rem;
  letter-spacing: -0.005em;
}
:lang(en) .contact-headline { font-family: 'Cormorant Garamond', 'EB Garamond', serif; font-style: italic; font-weight: 500; }
.contact-title {
  margin: 0 0 2.5rem;
  text-align: center;
}
.contact-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
}
.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 5.5rem;
  height: 5.5rem;
  color: var(--ink);
  border: 1.5px solid var(--rule);
  border-radius: 50%;
  transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease;
}
.contact-icon svg {
  width: 2.4rem;
  height: 2.4rem;
  display: block;
}
.contact-icon:hover {
  color: #fff;
  transform: translateY(-3px) scale(1.05);
}

/* Per-platform brand colors */
.contact-icon--email   { color: color-mix(in srgb, #B8B4A8 70%, #F5B23A); border-color: color-mix(in srgb, var(--rule) 60%, #F5B23A); }
.contact-icon--email:hover   { background: #F5B23A; border-color: #F5B23A; color: var(--bg-deep); }

.contact-icon--instagram { color: color-mix(in srgb, #B8B4A8 60%, #E1306C); border-color: color-mix(in srgb, var(--rule) 55%, #E1306C); }
.contact-icon--instagram:hover { background: linear-gradient(135deg, #F58529, #DD2A7B, #8134AF); border-color: #DD2A7B; }

.contact-icon--facebook { color: color-mix(in srgb, #B8B4A8 60%, #1877F2); border-color: color-mix(in srgb, var(--rule) 55%, #1877F2); }
.contact-icon--facebook:hover { background: #1877F2; border-color: #1877F2; }

.contact-icon--youtube  { color: color-mix(in srgb, #B8B4A8 55%, #FF0000); border-color: color-mix(in srgb, var(--rule) 50%, #FF0000); }
.contact-icon--youtube:hover  { background: #FF0000; border-color: #FF0000; }

.contact-icon--bandcamp { color: color-mix(in srgb, #B8B4A8 60%, #1DA0C3); border-color: color-mix(in srgb, var(--rule) 55%, #1DA0C3); }
.contact-icon--bandcamp:hover { background: #1DA0C3; border-color: #1DA0C3; }

.contact-icon--spotify  { color: color-mix(in srgb, #B8B4A8 55%, #1DB954); border-color: color-mix(in srgb, var(--rule) 50%, #1DB954); }
.contact-icon--spotify:hover  { background: #1DB954; border-color: #1DB954; }

/* ─── Footer ─── */
.site-footer {
  background: var(--bg-deep);
  color: var(--ink-soft);
  padding: 3rem 2rem 2rem;
  text-align: center;
  font-size: 0.85rem;
  border-top: 1px solid var(--rule);
}
.site-footer a { color: var(--saffron); }

/* ─── Mobile ─── */
@media (max-width: 640px) {
  section { padding: 4rem 1.25rem; }
  .site-header { padding: 1rem 1.25rem; }
  .hero { padding: 5rem 1.25rem 3rem; }
}
