/* Manrope - self-hosted varijabilni font (200-800), latin + latin-ext (hr dijakritika) */
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url("/assets/fonts/manrope-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url("/assets/fonts/manrope-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --ink: #15181c;
  --muted: #646b73;
  --paper: #eceef0;
  --paper-strong: #f7f8f9;
  --wine: #1c1714;
  --wine-deep: #0f0b0a;
  --gold: #8d8275;
  --sage: #4a433c;
  --sage-soft: #ede9e1;
  --line: #dadde1;
  --soft: #e6e8ea;
  --noir: #100b0c;
  --cream: #f3efe7;
  --shadow: 0 22px 60px rgba(18, 22, 28, 0.12);
  color-scheme: light;
  font-family: "Manrope", ui-sans-serif, system-ui, -apple-system, sans-serif;
  font-size: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  letter-spacing: 0;
}

body.lightbox-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2 {
  font-family: "Manrope", system-ui, sans-serif;
  font-weight: 500;
  letter-spacing: -0.02em;
}

h1 {
  color: var(--wine);
  font-size: 6.6rem;
  line-height: 0.88;
}

h2 {
  font-size: 3.5rem;
  line-height: 1.02;
}

h3 {
  font-size: 1.1rem;
  line-height: 1.25;
}

p {
  color: var(--muted);
  line-height: 1.72;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 2rem;
  align-items: center;
  min-height: 76px;
  padding: 0.75rem 4rem;
  border-bottom: 1px solid rgba(21, 24, 28, 0.13);
  background: #eceef0;
}

.brand {
  color: var(--wine);
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.nav-links a {
  color: #3a4047;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a[aria-current="page"] {
  color: var(--wine);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 46px;
  border: 1px solid rgba(21, 24, 28, 0.22);
  border-radius: 4px;
  background: rgba(247, 249, 251, 0.88);
  color: var(--wine);
  cursor: pointer;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.nav-toggle svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 2;
}

.mobile-menu {
  position: fixed;
  inset: 76px 0 0;
  z-index: 45;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  background: rgba(36, 31, 29, 0.32);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu-panel {
  display: grid;
  align-content: start;
  justify-self: end;
  width: min(420px, 100%);
  height: 100%;
  padding: 1rem;
  border-left: 1px solid var(--line);
  background: rgba(247, 249, 251, 0.98);
  box-shadow: -28px 0 70px rgba(18, 22, 28, 0.18);
}

.mobile-menu-links {
  display: grid;
  gap: 0.3rem;
}

.mobile-menu-links a {
  display: flex;
  justify-content: space-between;
  min-height: 54px;
  border-bottom: 1px solid rgba(21, 24, 28, 0.12);
  color: var(--ink);
  font-size: 1rem;
  font-weight: 850;
  align-items: center;
}

.mobile-menu-links a[aria-current="page"],
.mobile-menu-links a:hover,
.mobile-menu-links a:focus-visible {
  color: var(--wine);
}

.mobile-menu-cta {
  width: 100%;
  margin-top: 1.2rem;
}

body.nav-open {
  overflow: hidden;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 0.9rem 1.25rem;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.header-cta,
.button.primary {
  background: var(--wine);
  color: #fff;
}

.button.primary.light {
  background: #fff;
  color: var(--wine);
}

.button.secondary {
  border-color: rgba(21, 24, 28, 0.28);
  background: rgba(247, 249, 251, 0.86);
  color: var(--wine);
}

.header-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

@media (prefers-reduced-motion: no-preference) {
  .motion-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition:
      opacity 560ms cubic-bezier(0.2, 0.75, 0.24, 1),
      transform 560ms cubic-bezier(0.2, 0.75, 0.24, 1),
      box-shadow 260ms ease,
      background-color 260ms ease;
    transition-delay: var(--reveal-delay, 0ms);
  }

  .motion-reveal.in-view {
    opacity: 1;
    transform: translateY(0);
  }

  .decision-media.motion-reveal,
  .quote-panel.motion-reveal,
  .video-panel.motion-reveal {
    transform: translate(-18px, 22px);
  }

  .decision-media.motion-reveal.in-view,
  .quote-panel.motion-reveal.in-view,
  .video-panel.motion-reveal.in-view {
    transform: translate(0, 0);
  }
}

.hero {
  position: relative;
  min-height: calc(100svh - 76px);
  overflow: hidden;
  padding: clamp(5rem, 9vh, 7rem) 4rem 3.2rem;
  background: #100b0c;
  border-bottom: none;
}

.hero::before {
  position: absolute;
  inset: 0;
  background: url("assets/luna-hero-web.webp") center 30% / cover;
  content: "";
  filter: saturate(0.96) contrast(1.03) brightness(0.74);
  opacity: 1;
}

/* Hero pozadina - responsive: desktop najveca (2800), tablet 2000, mobitel 1280 */
@media (max-width: 1180px) {
  .hero::before {
    background-image: url("assets/luna-hero-1400.webp");
  }
}

@media (max-width: 760px) {
  .hero::before {
    background-image: url("assets/luna-hero-820.webp");
  }
}

.hero::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(16, 11, 12, 0.55) 0%, rgba(16, 11, 12, 0.22) 38%, rgba(16, 11, 12, 0.82) 100%),
    radial-gradient(95% 75% at 50% 55%, rgba(16, 11, 12, 0) 40%, rgba(16, 11, 12, 0.55) 100%);
  content: "";
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  align-content: center;
  justify-items: center;
  text-align: center;
  gap: clamp(2.4rem, 8vh, 5rem);
  width: min(100%, 1480px);
  min-height: calc(100svh - 76px - 8rem);
  margin: 0 auto;
}

.hero-copy {
  max-width: 820px;
  margin-inline: auto;
  padding-top: 0;
}

.hero h1 {
  color: #f3efe7;
  font-weight: 200;
  font-size: clamp(3.5rem, 10vw, 8.5rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1;
}

.hero-subtitle {
  margin-top: 1.4rem;
  color: #f3efe7;
  font-family: "Manrope", system-ui, sans-serif;
  font-weight: 300;
  font-size: clamp(1.3rem, 2.2vw, 1.75rem);
  line-height: 1.3;
}

.hero-lede {
  max-width: 600px;
  margin-top: 1.1rem;
  color: rgba(243, 239, 231, 0.74);
  font-weight: 300;
  font-size: 1.15rem;
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.hero-media {
  display: none;
  grid-column: 2;
  grid-row: 1 / span 2;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  height: min(62vh, 690px);
  min-height: 430px;
  object-fit: cover;
  object-position: 52% 43%;
}

.trust-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  max-width: 780px;
  margin: 0;
}

.trust-points div {
  padding-top: 1rem;
  border-top: 1px solid rgba(243, 239, 231, 0.22);
}

.trust-points dt {
  margin-bottom: 0.38rem;
  color: rgba(243, 239, 231, 0.6);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trust-points dd {
  margin: 0;
  color: #f3efe7;
  font-family: "Manrope", system-ui, sans-serif;
  font-weight: 600;
  font-size: 1.65rem;
  line-height: 1.12;
}

/* hero CTA na tamnom: sekundarni gumb = ghost */
.hero-actions .button.secondary {
  background: transparent;
  border-color: rgba(243, 239, 231, 0.4);
  color: #f3efe7;
}

.hero-actions .button.secondary:hover {
  border-color: #f3efe7;
  background: rgba(243, 239, 231, 0.08);
}

.section {
  padding: 7rem 4rem;
}

.section-grid,
.section-heading,
.event-rail,
.why-section,
.repertoire-inner,
.contact-section,
.site-footer {
  width: min(100%, 1440px);
  margin: 0 auto;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.58fr);
  gap: 5rem;
  align-items: center;
}

.page-hero {
  --hero-shade: linear-gradient(180deg, rgba(16, 11, 12, 0.42) 0%, rgba(16, 11, 12, 0.3) 42%, rgba(16, 11, 12, 0.88) 100%),
    linear-gradient(90deg, rgba(16, 11, 12, 0.62) 0%, rgba(16, 11, 12, 0.18) 65%);
  min-height: 58vh;
  display: grid;
  align-items: end;
  padding: 7rem 4rem 4rem;
  border-bottom: none;
  background: var(--hero-shade), url("assets/luna-hero-web.webp") center center / cover;
}

/* Svaka podstranica ima svoju fotku iz highlights seta (razlicita od landinga) */
.repertoire-page-hero {
  background-image: var(--hero-shade), url("assets/hero-repertoar.webp");
}
.media-page-hero {
  background-image: var(--hero-shade), url("assets/hero-galerija.webp");
}
.reference-page-hero {
  background-image: var(--hero-shade), url("assets/hero-reference.webp");
  background-position: center 42%;
}
.contact-page-hero {
  background-image: var(--hero-shade), url("assets/hero-kontakt.webp");
  background-position: center 20%;
}
.live-page-hero {
  background-image: var(--hero-shade), url("assets/hero-snimke.webp");
  background-position: center 5%;
}

.page-hero-copy {
  width: min(100%, 980px);
}

.page-hero h1 {
  max-width: 900px;
  font-size: clamp(2.4rem, 4.4vw, 4.2rem);
  line-height: 1.06;
  color: #f5f7f9;
}

.page-hero .section-label {
  color: rgba(247, 249, 251, 0.74);
}

.page-hero p:not(.section-label) {
  max-width: 700px;
  margin-top: 1.6rem;
  color: rgba(247, 249, 251, 0.82);
  font-size: 1.15rem;
}

.explore-section {
  background: var(--paper-strong);
}

.explore-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  width: min(100%, 1440px);
  margin: 0 auto;
  border: 1px solid var(--line);
  background: var(--line);
}

.explore-card {
  display: grid;
  align-content: end;
  min-height: 360px;
  padding: 1.5rem;
  background: #fff;
  color: var(--ink);
}

.explore-card span {
  margin-bottom: auto;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.explore-card strong {
  display: block;
  color: var(--wine);
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.04;
}

.explore-card p {
  margin-top: 1rem;
}

.feature-card,
.audio-teaser-card,
.media-teaser-card,
.reference-teaser-card {
  background-size: cover;
  background-position: center;
}

.feature-card {
  background-image: linear-gradient(rgba(247, 249, 251, 0.88), rgba(247, 249, 251, 0.98)), url("assets/luna-hero-1400.webp");
}

.audio-teaser-card {
  background-image: linear-gradient(rgba(247, 249, 251, 0.88), rgba(247, 249, 251, 0.98)), url("assets/luna-band-live-web.webp");
}

.media-teaser-card {
  background-image: linear-gradient(rgba(247, 249, 251, 0.88), rgba(247, 249, 251, 0.98)), url("assets/luna-live-web.webp");
}

.reference-teaser-card {
  background-image: linear-gradient(rgba(247, 249, 251, 0.88), rgba(247, 249, 251, 0.98)), url("assets/luna-wedding-web.webp");
}

.highlight-section {
  background: #f0f3f6;
  border-block: 1px solid var(--line);
}

.highlight-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(360px, 0.72fr);
  gap: 5rem;
  align-items: center;
  width: min(100%, 1440px);
  margin: 0 auto;
}

.highlight-copy p:not(.section-label) {
  max-width: 650px;
  margin-top: 1.1rem;
}

.highlight-media {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.highlight-media img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.decision-section {
  background: var(--paper-strong);
  border-block: 1px solid var(--line);
}

.decision-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.62fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  width: min(100%, 1440px);
  margin: 0 auto 3rem;
}

.decision-media {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.decision-media img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.decision-copy {
  display: grid;
  align-content: center;
}

.decision-copy h2 {
  max-width: 850px;
}

.decision-copy p:not(.section-label) {
  max-width: 680px;
  margin-top: 1.1rem;
}

.decision-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.decision-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 clamp(2rem, 5vw, 5rem);
  width: min(100%, 1440px);
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.decision-link {
  position: relative;
  display: grid;
  align-content: start;
  min-height: auto;
  padding: 1.5rem 3rem 1.55rem 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
}

.decision-link::after {
  position: absolute;
  top: 1.75rem;
  right: 0.25rem;
  width: 0.65rem;
  height: 0.65rem;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  color: rgba(21, 24, 28, 0.58);
  content: "";
  transform: rotate(45deg);
  transition: transform 180ms ease, color 180ms ease;
}

.decision-link strong {
  color: var(--wine);
  font-family: "Manrope", system-ui, sans-serif;
  font-size: clamp(1.55rem, 2.2vw, 2rem);
  font-weight: 500;
  line-height: 1.06;
}

.decision-link p {
  margin-top: 0.9rem;
}

.decision-link:hover,
.decision-link:focus-visible {
  color: var(--wine);
  outline: none;
}

.decision-link:hover::after,
.decision-link:focus-visible::after {
  color: var(--wine);
  transform: translateX(4px) rotate(45deg);
}

.page-cta {
  display: grid;
  justify-items: center;
  gap: 1.2rem;
  padding: 5rem 1rem;
  text-align: center;
}

.page-cta h2 {
  max-width: 820px;
}

.page-cta p {
  max-width: 620px;
}

.section-label {
  margin-bottom: 0.9rem;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-copy p:not(.section-label),
.section-heading p:not(.section-label),
.why-copy p,
.contact-info p {
  max-width: 690px;
  margin-top: 1.1rem;
  font-size: 1rem;
}

.quote-panel {
  display: grid;
  gap: 1.4rem;
  padding: 1.2rem 0 1.2rem 2rem;
  border-left: 4px solid var(--sage);
  background: transparent;
}

.quote-panel p {
  color: var(--ink);
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 2rem;
  line-height: 1.15;
}

.quote-panel span {
  color: var(--sage);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.events-section {
  background: var(--paper);
  border-block: 1px solid var(--line);
}

.section-heading {
  display: grid;
  gap: 0.25rem;
  margin-bottom: 3rem;
}

.split-heading {
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 2rem;
}

.split-heading h2 {
  max-width: 980px;
}

.event-rail {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 clamp(2rem, 5vw, 5rem);
  border-top: 1px solid var(--line);
}

.event-rail article {
  min-height: auto;
  padding: 1.75rem 0 2rem;
  border-bottom: 1px solid var(--line);
  background: transparent;
}

.event-rail h3 {
  font-family: "Manrope", system-ui, sans-serif;
  font-size: clamp(1.65rem, 2.4vw, 2.35rem);
  font-weight: 500;
  line-height: 1.05;
  color: var(--wine);
}

.event-rail p {
  max-width: 560px;
  margin-top: 0.85rem;
}

.repertoire-section {
  padding: 7rem 4rem;
  background: var(--wine);
  color: #fff;
}

.repertoire-section .section-label,
.repertoire-section h2,
.repertoire-section p {
  color: #fff;
}

.repertoire-section p {
  color: rgba(255, 255, 255, 0.86);
}

.repertoire-inner {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.28fr);
  gap: 4rem;
  align-items: start;
}

.repertoire-intro {
  position: sticky;
  top: 100px;
}

.repertoire-intro p:not(.section-label) {
  margin-top: 1.2rem;
}

.repertoire-intro .button {
  margin-top: 2rem;
}

.repertoire-catalog {
  display: grid;
  gap: 1rem;
  min-width: 0;
}

.catalog-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.18);
}

.catalog-summary div {
  display: grid;
  gap: 0.25rem;
  min-height: 100px;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.08);
}

.catalog-summary strong {
  color: #fff;
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 2rem;
  font-weight: 500;
}

.catalog-summary span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.catalog-toolbar {
  display: grid;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.category-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 0.5rem 0.75rem 0.5rem 0.95rem;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-size: 0.86rem;
}

.category-tab[aria-pressed="true"] {
  background: #fff;
  color: var(--wine);
}

.category-tab strong {
  display: grid;
  place-items: center;
  min-width: 32px;
  height: 26px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  font-size: 0.75rem;
}

.category-tab[aria-pressed="true"] strong {
  background: rgba(21, 24, 28, 0.12);
}

.search-field {
  display: grid;
  gap: 0.45rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.search-field input {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font: inherit;
  font-size: 1rem;
  padding: 0.95rem 1rem;
}

.search-field input::placeholder {
  color: rgba(255, 255, 255, 0.54);
}

.catalog-status {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
}

.table-shell {
  max-height: 620px;
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.repertoire-table {
  width: 100%;
  border-collapse: collapse;
  color: #fff;
  font-size: 0.95rem;
}

.repertoire-table th,
.repertoire-table td {
  padding: 0.82rem 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  text-align: left;
  vertical-align: top;
}

.repertoire-table th {
  position: sticky;
  top: 0;
  z-index: 1;
  background: var(--wine-deep);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.repertoire-table td:first-child {
  width: 54px;
  color: #f0cb8c;
  font-weight: 800;
}

.repertoire-table td:nth-child(2) {
  font-weight: 800;
}

.repertoire-table td:nth-child(3),
.repertoire-table td:nth-child(4) {
  color: rgba(255, 255, 255, 0.76);
}

.page-repertoire {
  padding-top: 4.5rem;
  padding-bottom: 6rem;
  border-block: 1px solid var(--line);
  background: var(--paper-strong);
  color: var(--ink);
}

.page-repertoire .section-label {
  color: var(--gold);
}

.page-repertoire h2 {
  color: var(--ink);
}

.page-repertoire p {
  color: var(--muted);
}

.page-repertoire .button.primary.light {
  background: var(--wine);
  color: #fff;
}

.repertoire-browser-shell {
  display: grid;
  grid-template-columns: minmax(260px, 0.36fr) minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
  width: min(100%, 1240px);
  margin: 0 auto;
}

.page-repertoire .repertoire-intro {
  position: static;
  display: grid;
  gap: 0.85rem;
  max-width: 920px;
}

.page-repertoire .repertoire-intro h2 {
  max-width: 880px;
  font-size: clamp(2.35rem, 3vw, 3.35rem);
}

.page-repertoire .repertoire-intro p:not(.section-label) {
  margin-top: 0;
  max-width: 760px;
}

.page-repertoire .repertoire-catalog {
  gap: 1rem;
}

.page-repertoire .catalog-summary {
  border-color: var(--line);
  background: var(--line);
  box-shadow: 0 18px 50px rgba(18, 22, 28, 0.08);
}

.page-repertoire .catalog-summary div {
  min-height: 94px;
  background: #fff;
}

.page-repertoire .catalog-summary strong {
  color: var(--wine);
}

.page-repertoire .catalog-summary span {
  color: var(--muted);
}

.page-repertoire .catalog-toolbar {
  gap: 1.2rem;
  border-color: var(--line);
  background: #fff;
  box-shadow: 0 18px 50px rgba(18, 22, 28, 0.08);
}

.page-repertoire .search-field {
  color: var(--wine);
}

.page-repertoire .search-field input {
  min-height: 58px;
  border-color: #dccfc0;
  background: var(--paper-strong);
  color: var(--ink);
  font-size: 1.08rem;
}

.page-repertoire .search-field input::placeholder {
  color: #93857c;
}

.page-repertoire .category-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.55rem;
}

.page-repertoire .category-tab {
  justify-content: space-between;
  width: 100%;
  min-height: 58px;
  border-color: #e0d4c6;
  border-radius: 4px;
  background: #f7f8f9;
  color: var(--ink);
  padding: 0.72rem 0.85rem;
}

.page-repertoire .category-tab[aria-pressed="true"] {
  border-color: var(--wine);
  background: var(--wine);
  color: #fff;
}

.page-repertoire .category-tab strong {
  background: rgba(21, 24, 28, 0.1);
  color: inherit;
}

.page-repertoire .category-tab[aria-pressed="true"] strong {
  background: rgba(255, 255, 255, 0.18);
}

.page-repertoire .catalog-status {
  color: var(--wine);
  font-weight: 850;
}

.song-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.song-card {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  gap: 0.85rem;
  align-items: center;
  min-height: 86px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 0.9rem;
  box-shadow: 0 10px 28px rgba(18, 22, 28, 0.06);
}

.song-number {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #f5eee5;
  color: var(--wine);
  font-weight: 900;
}

.song-card div {
  display: grid;
  gap: 0.22rem;
  min-width: 0;
}

.song-card strong {
  overflow: hidden;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.song-card small {
  overflow: hidden;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.song-card em {
  align-self: start;
  border: 1px solid rgba(21, 24, 28, 0.13);
  border-radius: 999px;
  color: var(--wine);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 850;
  padding: 0.32rem 0.55rem;
}

.repertoire-accordion {
  display: grid;
  gap: 0.34rem;
}

.repertoire-accordion-item {
  overflow: hidden;
  border-radius: 6px;
  background: #272523;
  color: #fff;
}

.repertoire-accordion-item summary {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  min-height: 62px;
  padding: 0.95rem 1.2rem;
  cursor: pointer;
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
  font-weight: 950;
  line-height: 1.15;
  list-style: none;
  text-transform: uppercase;
}

.repertoire-accordion-item summary::-webkit-details-marker {
  display: none;
}

.accordion-marker {
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  color: currentColor;
  flex: 0 0 auto;
}

.accordion-marker::before {
  width: 8px;
  height: 8px;
  border: solid currentColor;
  border-width: 0 2px 2px 0;
  content: "";
  transform: translateY(-2px) rotate(45deg);
  transition: transform 160ms ease;
}

.repertoire-accordion-item[open] {
  background: #fff;
  color: var(--ink);
}

.repertoire-accordion-item[open] summary {
  border-bottom: 1px solid #171514;
  color: #66615d;
}

.repertoire-accordion-item[open] .accordion-marker::before {
  transform: translateY(2px) rotate(225deg);
}

.repertoire-song-list {
  columns: 2;
  column-gap: clamp(2rem, 5vw, 4rem);
  max-height: min(62vh, 620px);
  overflow: auto;
  padding: 2rem 1.35rem;
  margin: 0;
  color: var(--ink);
  list-style: none;
}

.repertoire-song {
  display: block;
  break-inside: avoid;
  margin: 0 0 0.66rem;
  font-size: 1.02rem;
  line-height: 1.35;
}

.repertoire-song strong {
  font-weight: 500;
}

.repertoire-song small {
  color: #4f4742;
  font-size: inherit;
}

.repertoire-song small::before {
  content: " - ";
}

.media-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 1.2rem;
  align-items: stretch;
  width: min(100%, 1440px);
  margin: 0 auto;
}

.video-panel,
.video-playlist,
.audio-grid article,
.booking-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-strong);
  box-shadow: 0 12px 32px rgba(18, 22, 28, 0.08);
}

.video-panel {
  overflow: hidden;
}

.video-panel iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

.video-caption {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 1rem 1.2rem;
  color: var(--muted);
}

.video-caption strong {
  color: var(--ink);
}

.video-caption a {
  color: var(--wine);
  font-weight: 850;
}

.video-playlist {
  display: grid;
  overflow: hidden;
}

.video-choice {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 0.8rem;
  align-items: center;
  min-height: 96px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  padding: 1.25rem;
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.video-choice:last-child {
  border-bottom: 0;
}

.video-choice span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--wine);
  color: #fff;
  font-family: "Manrope", system-ui, sans-serif;
}

.video-choice strong {
  font-weight: 850;
  line-height: 1.45;
}

.audio-section,
.gallery-section {
  display: grid;
  gap: 1.2rem;
  width: min(100%, 1440px);
  margin: 4rem auto 0;
}

.audio-section h3,
.gallery-section h3 {
  color: var(--ink);
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1.05;
}

.audio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.audio-grid article {
  display: grid;
  gap: 0.9rem;
  padding: 1rem;
}

.audio-grid strong {
  color: var(--wine);
  line-height: 1.3;
}

.audio-grid audio {
  width: 100%;
}

.gallery-grid {
  column-count: 4;
  column-gap: 0.75rem;
}

.gallery-item {
  position: relative;
  display: block;
  width: 100%;
  margin: 0 0 0.75rem;
  break-inside: avoid;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  background: #dde1e6;
  box-shadow: 0 12px 32px rgba(18, 22, 28, 0.1);
  color: #fff;
  cursor: pointer;
  padding: 0;
  text-align: left;
  transform: translateZ(0);
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition:
    filter 420ms ease,
    transform 520ms cubic-bezier(0.2, 0.75, 0.24, 1);
}

.gallery-item::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(36, 31, 29, 0), rgba(36, 31, 29, 0.58));
  content: "";
  opacity: 0;
  transition: opacity 260ms ease;
}

.gallery-item-label {
  position: absolute;
  right: 0.85rem;
  bottom: 0.8rem;
  z-index: 1;
  color: #fff;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  opacity: 0;
  text-transform: uppercase;
  transform: translateY(8px);
  transition:
    opacity 260ms ease,
    transform 260ms ease;
}

.gallery-item:disabled {
  cursor: wait;
}

.gallery-item.is-loaded:hover,
.gallery-item.is-loaded:focus-visible {
  box-shadow: 0 22px 55px rgba(18, 22, 28, 0.18);
  outline: none;
  transform: translateY(-4px);
}

.gallery-item.is-loaded:hover img,
.gallery-item.is-loaded:focus-visible img {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.045);
}

.gallery-item.is-loaded:hover::after,
.gallery-item.is-loaded:focus-visible::after,
.gallery-item.is-loaded:hover .gallery-item-label,
.gallery-item.is-loaded:focus-visible .gallery-item-label {
  opacity: 1;
  transform: translateY(0);
}

.gallery-lightbox[hidden] {
  display: none;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 72px;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  background: rgba(20, 17, 16, 0.9);
  backdrop-filter: blur(18px);
  color: #f7f8f9;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.gallery-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-top {
  grid-column: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 52px;
}

.lightbox-counter,
.lightbox-caption {
  color: rgba(247, 249, 251, 0.76);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.lightbox-close,
.lightbox-nav {
  display: grid;
  place-items: center;
  border: 1px solid rgba(247, 249, 251, 0.22);
  border-radius: 999px;
  background: rgba(247, 249, 251, 0.1);
  color: #fff;
  cursor: pointer;
}

.lightbox-close {
  width: 48px;
  height: 48px;
}

.lightbox-nav {
  width: 58px;
  height: 58px;
  justify-self: center;
}

.lightbox-close svg,
.lightbox-nav svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.lightbox-close:hover,
.lightbox-close:focus-visible,
.lightbox-nav:hover,
.lightbox-nav:focus-visible {
  background: #f7f8f9;
  color: var(--wine);
  outline: none;
}

.lightbox-nav:disabled {
  cursor: default;
  opacity: 0.4;
}

.lightbox-prev {
  grid-column: 1;
  grid-row: 2;
}

.lightbox-next {
  grid-column: 3;
  grid-row: 2;
}

.lightbox-stage {
  display: grid;
  grid-column: 2;
  grid-row: 2;
  min-height: 0;
  place-items: center;
}

.lightbox-image {
  max-width: min(100%, 1180px);
  max-height: calc(100svh - 172px);
  border-radius: 8px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.44);
  object-fit: contain;
}

.lightbox-caption {
  grid-column: 2;
  margin: 0;
  text-align: center;
}

@media (max-width: 760px) {
  .gallery-lightbox {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto minmax(0, 1fr) auto auto;
    gap: 0.75rem;
    padding: 0.75rem;
  }

  .lightbox-top,
  .lightbox-stage,
  .lightbox-caption {
    grid-column: 1 / -1;
  }

  .lightbox-image {
    max-height: calc(100svh - 220px);
  }

  .lightbox-prev,
  .lightbox-next {
    grid-row: 3;
    width: 100%;
    height: 52px;
  }

  .lightbox-prev {
    grid-column: 1;
  }

  .lightbox-next {
    grid-column: 2;
  }

  .lightbox-caption {
    grid-row: 4;
  }
}

.audio-page {
  background: var(--paper);
}

.audio-landing {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(0.9rem, 2vw, 1.4rem);
  justify-items: center;
  min-height: calc(100vh - 76px);
  padding: clamp(1.25rem, 2vw, 2rem) 4rem clamp(3.2rem, 4vw, 4rem);
  background: var(--paper-strong);
  border-bottom: 1px solid var(--line);
}

.playlist-landing {
  grid-template-columns: 1fr;
  min-height: auto;
  padding-top: clamp(2.4rem, 4vw, 3.6rem);
}

.playlist-copy {
  position: static;
  display: grid;
  justify-items: center;
  gap: 0.85rem;
  width: min(100%, 920px);
  max-width: none;
  margin: 0 auto;
  text-align: center;
}

.audio-copy h1 {
  max-width: 900px;
  color: var(--wine);
  font-size: clamp(2.8rem, 3.8vw, 4.2rem);
  line-height: 0.94;
}

.audio-copy p:not(.section-label) {
  max-width: 720px;
  margin-top: 0.8rem;
  color: #3a4047;
  font-size: 1rem;
  line-height: 1.52;
}

.audio-page-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
}

.audio-page-actions .button {
  margin-top: 0;
}

.modern-player {
  overflow: hidden;
  border-radius: 8px;
}

.app-player {
  position: relative;
  display: grid;
  grid-template-columns: minmax(340px, 0.7fr) minmax(400px, 0.9fr);
  width: min(100%, 1120px);
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #050505;
  color: #fff;
  box-shadow: 0 34px 90px rgba(36, 31, 29, 0.34);
}

.app-player::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: min(52%, 620px);
  height: 100%;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.22), #050505 96%),
    url("assets/luna-hero-1400.webp") center 30% / cover;
  content: "";
  filter: saturate(0.9);
}

.now-playing-panel,
.playlist-panel,
.mini-player {
  position: relative;
  z-index: 1;
}

.now-playing-panel {
  display: grid;
  align-content: center;
  gap: 1.15rem;
  justify-items: center;
  min-height: 690px;
  padding: 3.2rem clamp(1.4rem, 3vw, 2.6rem);
}

.player-visual {
  position: relative;
  width: min(220px, 56vw);
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 8px;
  background: #171312;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.44);
}

.player-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.player-visual-caption {
  display: none;
}

.player-panel {
  display: grid;
  gap: 0.95rem;
  justify-items: center;
  width: 100%;
}

.player-meta {
  display: grid;
  justify-items: center;
  gap: 0.35rem;
  max-width: 420px;
  text-align: center;
}

.player-meta strong {
  display: -webkit-box;
  overflow: hidden;
  color: #fff;
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  font-weight: 900;
  line-height: 1.08;
  text-transform: uppercase;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.player-meta small {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.96rem;
  font-weight: 800;
}

.player-meta > span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.8rem;
  font-weight: 900;
}

.player-meta > span::after {
  border-radius: 999px;
  background: var(--gold);
  color: #14100e;
  content: "LIVE";
  font-size: 0.62rem;
  padding: 0.28rem 0.55rem;
}

.player-cta-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  width: min(100%, 356px);
  margin-top: 0.8rem;
}

.player-main-button,
.player-shuffle-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-size: 1rem;
  font-weight: 900;
  padding: 0.85rem 1.15rem;
}

.player-main-button {
  background: #fff;
  color: #090909;
}

.player-shuffle-button {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.player-main-button svg,
.player-shuffle-button svg {
  width: 22px;
  height: 22px;
  margin-right: 0.45rem;
  fill: currentColor;
}

.player-progress {
  -webkit-appearance: none;
  appearance: none;
  width: min(100%, 400px);
  height: 5px;
  margin-top: 0.3rem;
  background: transparent;
  cursor: pointer;
}

.player-progress::-webkit-slider-runnable-track {
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.player-progress::-webkit-slider-thumb {
  width: 16px;
  height: 16px;
  margin-top: -5.5px;
  border-radius: 50%;
  background: #fff;
  -webkit-appearance: none;
}

.player-progress::-moz-range-track {
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.player-progress::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border: 0;
  border-radius: 50%;
  background: #fff;
}

.player-time {
  display: flex;
  justify-content: space-between;
  width: min(100%, 400px);
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
  font-weight: 800;
}

.player-controls {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
  width: min(100%, 300px);
  margin-top: 0.1rem;
}

.player-controls button {
  display: grid;
  justify-items: center;
  gap: 0.45rem;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-size: 0.72rem;
  font-weight: 800;
}

.player-controls svg,
.mini-actions svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.player-controls button:hover,
.player-controls button:focus-visible,
.mini-actions button:hover,
.mini-actions button:focus-visible,
.player-shuffle-button:hover,
.player-shuffle-button:focus-visible {
  outline: none;
  background: rgba(255, 255, 255, 0.18);
}

.playlist-panel {
  display: grid;
  align-content: start;
  gap: 0.6rem;
  min-width: 0;
  padding: 2rem 0 0;
  background: rgba(255, 255, 255, 0.035);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.playlist-heading {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: end;
  padding: 0 1.25rem 0.35rem;
}

.playlist-heading .section-label {
  color: rgba(255, 255, 255, 0.6);
}

.playlist-heading h2 {
  max-width: 300px;
  color: #fff;
  font-size: 1.25rem;
  line-height: 1.12;
}

.playlist-heading .button.secondary {
  min-height: 38px;
  border-color: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 0.66rem;
  padding: 0.65rem 0.85rem;
}

.track-list {
  display: grid;
  align-content: start;
  max-height: 560px;
  overflow: auto;
  padding-bottom: 0.4rem;
}

.track-list::-webkit-scrollbar {
  width: 9px;
}

.track-list::-webkit-scrollbar-track {
  background: transparent;
}

.track-list::-webkit-scrollbar-thumb {
  border: 3px solid #050505;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
}

.track-item {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) 34px;
  gap: 0.85rem;
  align-items: center;
  min-height: 56px;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font: inherit;
  padding: 0.52rem 1.25rem;
  text-align: left;
}

.track-item:hover,
.track-item:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

.track-item[aria-current="true"] {
  background: rgba(255, 255, 255, 0.12);
}

.track-item > span:first-child {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.86rem;
  font-weight: 700;
}

.track-item > span:nth-child(2) {
  display: grid;
  gap: 0.18rem;
  min-width: 0;
}

.track-item strong {
  overflow: hidden;
  color: #fff;
  font-size: 0.95rem;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.track-item small {
  overflow: hidden;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.82rem;
  line-height: 1.15;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.track-item em {
  color: rgba(255, 255, 255, 0.64);
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-align: right;
}

.mini-player {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) auto;
  gap: 0.8rem;
  align-items: center;
  min-height: 86px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  padding: 0.85rem 1rem;
  backdrop-filter: blur(18px);
}

.mini-player > img {
  width: 52px;
  height: 52px;
  border-radius: 4px;
  object-fit: cover;
}

.mini-track {
  display: grid;
  gap: 0.16rem;
  min-width: 0;
}

.mini-track span {
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 900;
}

.mini-track strong {
  overflow: hidden;
  color: #fff;
  font-size: 0.94rem;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mini-actions {
  display: flex;
  gap: 0.4rem;
}

.mini-actions button {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.references-section {
  background: var(--paper-strong);
  border-block: 1px solid var(--line);
}

.references-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.58fr) minmax(0, 1fr);
  gap: 4rem;
  align-items: center;
  width: min(100%, 1440px);
  margin: 0 auto;
}

.references-copy p:not(.section-label) {
  max-width: 640px;
  margin-top: 1.1rem;
}

.reference-logos {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.reference-logos div {
  display: grid;
  place-items: center;
  min-height: 132px;
  padding: 1rem;
  background: #fff;
}

.reference-logos img {
  max-width: 150px;
  max-height: 82px;
  object-fit: contain;
}

.reference-logos.large {
  width: min(100%, 1440px);
  margin: 0 auto;
}

.members-section {
  overflow: hidden;
  background: #f0f3f6;
  border-block: 1px solid var(--line);
}

.members-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.46fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: end;
  width: min(100%, 1440px);
  margin: 0 auto clamp(2rem, 4vw, 3.2rem);
}

.members-header h2 {
  max-width: 870px;
}

.members-header p:not(.section-label) {
  max-width: 470px;
}

.members-intro {
  display: grid;
  justify-items: start;
  gap: 1.1rem;
}

.member-controls {
  display: flex;
  gap: 0.55rem;
}

.member-controls button {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(21, 24, 28, 0.24);
  border-radius: 50%;
  background: var(--paper-strong);
  color: var(--wine);
  cursor: pointer;
}

.member-controls button:disabled {
  cursor: default;
  opacity: 0.38;
}

.member-controls svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.members-carousel {
  display: grid;
  grid-template-columns: minmax(270px, 1.42fr) repeat(4, minmax(0, 1fr));
  gap: 1rem;
  width: min(100%, 1440px);
  margin: 0 auto;
  overflow: visible;
}

.members-carousel::-webkit-scrollbar {
  height: 8px;
}

.members-carousel::-webkit-scrollbar-track {
  background: #f0e6d9;
}

.members-carousel::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(21, 24, 28, 0.28);
}

.member-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #251f1d;
  min-height: 460px;
  scroll-snap-align: start;
}

.member-card img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  filter: grayscale(0.08);
  transition: transform 420ms ease, filter 420ms ease;
}

.member-card::after {
  position: absolute;
  inset: 42% 0 0;
  background: linear-gradient(180deg, rgba(37, 31, 29, 0), rgba(37, 31, 29, 0.84));
  content: "";
}

.member-card div {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  z-index: 1;
  display: grid;
  color: #f7f8f9;
}

.member-card strong {
  font-family: "Manrope", system-ui, sans-serif;
  font-size: clamp(1.55rem, 2.5vw, 2.2rem);
  font-weight: 500;
  line-height: 1;
}

.member-card:hover img,
.member-card:focus-within img {
  filter: grayscale(0);
  transform: scale(1.035);
}

.instagram-section {
  background: var(--paper-strong);
  border-bottom: 1px solid var(--line);
}

.instagram-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  width: min(100%, 1440px);
  margin: 0 auto;
}

.instagram-copy {
  display: grid;
  gap: 1.2rem;
  align-content: center;
}

.instagram-copy h2 {
  max-width: 560px;
}

.instagram-copy p:not(.section-label) {
  max-width: 450px;
}

.instagram-copy .button {
  justify-self: start;
  margin-top: 0.4rem;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 170px;
  gap: 0.75rem;
}

.instagram-tile {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #241f1d;
  color: #fff;
}

.instagram-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.instagram-tile::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(36, 31, 29, 0), rgba(36, 31, 29, 0.64));
  content: "";
  opacity: 0.74;
}

.instagram-tile span {
  position: absolute;
  right: 0.8rem;
  bottom: 0.8rem;
  left: 0.8rem;
  z-index: 1;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.instagram-tile:hover img,
.instagram-tile:focus-visible img {
  transform: scale(1.045);
}

.instagram-tile:focus-visible {
  outline: 3px solid rgba(21, 24, 28, 0.55);
  outline-offset: 3px;
}

.instagram-tile.tall {
  grid-row: span 2;
}

.instagram-tile.wide {
  grid-column: span 2;
}

.video-choice,
.reference-logos div,
.contact-info,
.booking-form {
  transition:
    background-color 260ms ease,
    box-shadow 260ms ease,
    transform 260ms ease;
}

@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .video-choice:hover,
  .reference-logos div:hover {
    box-shadow: 0 20px 50px rgba(18, 22, 28, 0.13);
    transform: translateY(-5px);
  }
}

.why-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1fr);
  gap: 4rem;
  padding: 7rem 4rem;
}

.why-copy {
  align-self: center;
}

.why-copy .button {
  margin-top: 2rem;
}

.proof-list {
  display: grid;
  grid-template-columns: 1fr;
  align-content: center;
  border-top: 1px solid var(--line);
}

.proof-list article {
  display: grid;
  grid-template-columns: minmax(180px, 0.45fr) minmax(0, 1fr);
  gap: clamp(1.25rem, 3vw, 2.6rem);
  min-height: auto;
  padding: 1.45rem 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
}

.proof-list strong {
  display: block;
  color: var(--wine);
  font-family: "Manrope", system-ui, sans-serif;
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  font-weight: 500;
  line-height: 1.08;
}

.proof-list span {
  display: block;
  margin-top: 0;
  color: var(--muted);
  line-height: 1.65;
}

.booking-section {
  background: var(--sage-soft);
  border-block: 1px solid #dce8e3;
}

.process-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1.5rem, 4vw, 3.2rem);
  width: min(100%, 1440px);
  padding: 0;
  margin: 0 auto;
  border: 0;
  background: transparent;
  list-style: none;
}

.process-list::before {
  position: absolute;
  top: 0.85rem;
  right: 0;
  left: 0;
  height: 1px;
  background: #cfded9;
  content: "";
}

.process-list li {
  position: relative;
  min-height: auto;
  padding: 2.45rem 0 0;
  background: transparent;
}

.process-list li::before {
  position: absolute;
  top: 0.48rem;
  left: 0;
  width: 0.78rem;
  height: 0.78rem;
  border: 3px solid var(--sage-soft);
  border-radius: 50%;
  background: var(--sage);
  content: "";
}

.process-list strong {
  display: block;
  margin-bottom: 0.65rem;
  color: var(--wine);
  font-family: "Manrope", system-ui, sans-serif;
  font-size: clamp(1.45rem, 2vw, 1.85rem);
  font-weight: 500;
  line-height: 1.08;
}

.contact-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.6fr) minmax(440px, 1.4fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
  padding: 7.5rem 4rem;
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.contact-section::before {
  position: absolute;
  top: 4rem;
  bottom: 4rem;
  left: 4rem;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(21, 24, 28, 0.45), rgba(21, 24, 28, 0.04));
  content: "";
}

.contact-info {
  position: sticky;
  top: 110px;
  align-self: start;
  max-width: 660px;
  padding: 0 0 0 2.2rem;
}

.contact-info h2 {
  max-width: 460px;
  color: var(--ink);
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  line-height: 1.08;
}

.contact-info p:not(.section-label) {
  max-width: 420px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.contact-links,
.social-links {
  display: grid;
  gap: 0;
  max-width: 540px;
  margin-top: 2.2rem;
}

.contact-links {
  border-top: 1px solid rgba(21, 24, 28, 0.18);
}

.contact-links a {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 1rem;
  align-items: baseline;
  min-height: 64px;
  border-bottom: 1px solid rgba(21, 24, 28, 0.18);
  color: var(--ink);
  padding: 1rem 0;
}

.contact-links span {
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-links strong {
  color: var(--wine);
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  line-height: 1.22;
}

.contact-links a:hover strong,
.contact-links a:focus-visible strong {
  color: var(--sage);
}

.social-links a {
  border: 1px solid rgba(21, 24, 28, 0.18);
  border-radius: 999px;
  color: var(--wine);
  font-size: 0.78rem;
  font-weight: 900;
  padding: 0.7rem 0.95rem;
  text-transform: uppercase;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  background: var(--wine);
  color: #fff;
  outline: none;
  transform: translateY(-2px);
}

.social-links {
  grid-template-columns: repeat(3, max-content);
  gap: 0.7rem;
  margin-top: 1.3rem;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  border: 1px solid rgba(21, 24, 28, 0.14);
  border-radius: 8px;
  background: rgba(247, 249, 251, 0.92);
  box-shadow: 0 24px 70px rgba(18, 22, 28, 0.12);
  padding: clamp(1.25rem, 3vw, 2.4rem);
}

.booking-form label {
  display: grid;
  gap: 0.45rem;
  color: #4a5159;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  border: 1px solid rgba(21, 24, 28, 0.14);
  border-radius: 4px;
  background: #f0f3f6;
  color: var(--ink);
  font: inherit;
  font-size: 1rem;
  padding: 0.95rem 1rem;
  transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.booking-form textarea {
  resize: vertical;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  outline: 2px solid rgba(21, 24, 28, 0.55);
  border-color: var(--gold);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(21, 24, 28, 0.08);
}

.full-field {
  grid-column: 1 / -1;
}

.booking-form .button {
  width: 100%;
  cursor: pointer;
}

.form-privacy {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--muted);
}

.form-status {
  grid-column: 1 / -1;
  min-height: 1.5rem;
  color: var(--wine);
  font-weight: 800;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.2rem 2rem;
  padding: 1.8rem 4rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer a {
  color: var(--wine);
  font-weight: 800;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  line-height: 1.3;
}

.footer-brand strong {
  color: var(--ink);
  font-weight: 800;
  font-size: 1rem;
}

.footer-brand a.footer-legal {
  margin-top: 0.1rem;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 500;
}

.footer-brand a.footer-legal:hover {
  color: var(--ink);
}

/* Pravne stranice (politika privatnosti) */
.legal {
  width: min(100%, 820px);
  margin: 0 auto;
}

.legal h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.08;
  margin: 0.4rem 0 1.4rem;
}

.legal h2 {
  font-size: 1.3rem;
  margin: 2.4rem 0 0.6rem;
}

.legal p,
.legal li {
  color: var(--muted);
  line-height: 1.7;
  max-width: 70ch;
}

.legal p {
  margin: 0 0 1rem;
}

.legal ul {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
}

.legal a {
  color: var(--wine);
  font-weight: 700;
  text-decoration: underline;
}

.legal-updated {
  margin-top: 2.6rem;
  font-size: 0.85rem;
}

.footer-top {
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 0.4rem;
}

/* Kredit autora - puna sirina, divider iznad, centrirano */
.footer-credit {
  flex: 0 0 100%;
  margin: 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  text-align: center;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.footer-credit a {
  color: var(--muted);
  font-weight: 700;
}

.footer-credit a:hover {
  color: var(--ink);
}

/* Social ikone (footer + hero) */
.social-icons {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--soft);
  color: var(--wine);
  border: 1px solid rgba(21, 24, 28, 0.12);
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.social-icons a svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  display: block;
}

.social-icons a:hover,
.social-icons a:focus-visible {
  background: var(--gold);
  color: #2a1c05;
  border-color: var(--gold);
  transform: translateY(-3px);
  outline: none;
}

.hero-social {
  margin-top: 1.9rem;
}

.hero-social-label {
  margin: 0 0 0.65rem;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: auto auto auto;
    justify-content: space-between;
    gap: 0.8rem;
    padding-right: 1.4rem;
    padding-left: 1.4rem;
  }

  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .hero,
  .page-hero,
  .audio-landing,
  .section,
  .repertoire-section,
  .why-section,
  .contact-section {
    padding-right: 1.4rem;
    padding-left: 1.4rem;
  }

  .hero-layout,
  .section-grid,
  .audio-landing,
  .highlight-layout,
  .decision-layout,
  .repertoire-inner,
  .repertoire-browser-shell,
  .references-layout,
  .members-header,
  .instagram-layout,
  .why-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero-media {
    grid-column: 1;
    grid-row: auto;
  }

  .contact-section::before {
    top: 3rem;
    bottom: auto;
    left: 1.4rem;
    height: 128px;
  }

  .contact-info {
    position: static;
    padding-left: 1.8rem;
  }

  .repertoire-intro {
    position: static;
  }

  .event-rail,
  .process-list,
  .explore-grid,
  .decision-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-list::before {
    display: none;
  }

  .process-list li {
    padding-top: 1.2rem;
    border-top: 1px solid #cfded9;
  }

  .process-list li::before {
    display: none;
  }

  .playlist-copy {
    grid-template-columns: 1fr;
    position: static;
  }

  .audio-page-actions {
    justify-content: flex-start;
  }

  .modern-player,
  .playlist-player {
    grid-template-columns: 1fr;
  }

  .app-player {
    grid-template-columns: 1fr;
    width: min(100%, 760px);
  }

  .app-player::before {
    inset: 0 0 auto;
    width: 100%;
    height: 360px;
    background:
      linear-gradient(180deg, rgba(5, 5, 5, 0.26), #050505 94%),
      url("assets/luna-hero-1400.webp") center 30% / cover;
  }

  .now-playing-panel {
    min-height: 0;
  }

  .playlist-panel {
    border-left: 0;
  }

  .page-repertoire .repertoire-intro {
    position: static;
  }

  .page-repertoire .category-tabs,
  .song-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .player-visual,
  .player-visual img {
    min-height: 0;
  }

  .members-carousel {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(260px, 42vw);
    overflow-x: auto;
    padding-bottom: 0.6rem;
    scroll-snap-type: x mandatory;
  }

  .instagram-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: 155px;
  }

  .media-layout {
    grid-template-columns: 1fr;
  }

  .video-playlist,
  .audio-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid {
    column-count: 3;
  }

  .reference-logos {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .video-choice {
    border-right: 1px solid var(--line);
  }
}

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: auto auto;
    min-height: 68px;
    padding: 0.75rem 1rem;
  }

  .brand {
    font-size: 1.52rem;
  }

  .header-cta {
    display: none;
  }

  .mobile-menu {
    inset: 68px 0 0;
  }

  h1 {
    font-size: 4.45rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  .hero {
    min-height: calc(100svh - 68px);
    padding: 3rem 1rem 2.4rem;
  }

  .hero::before {
    background-position: 58% 44%;
    opacity: 0.86;
  }

  .hero::after {
    background:
      linear-gradient(90deg, rgba(247, 249, 251, 0.84), rgba(247, 249, 251, 0.4)),
      linear-gradient(180deg, rgba(247, 249, 251, 0.02), rgba(247, 249, 251, 0.52));
  }

  .hero-layout {
    min-height: calc(100svh - 68px - 5.4rem);
    gap: 1.75rem;
  }

  .hero-copy {
    padding-top: 0;
  }

  .hero h1 {
    font-size: clamp(4.25rem, 21vw, 6.4rem);
  }

  .hero-subtitle {
    font-size: 1.55rem;
  }

  .hero-lede {
    font-size: 1.02rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-media img {
    height: 380px;
    min-height: 360px;
    object-position: 50% 40%;
  }

  .trust-points {
    grid-template-columns: 1fr;
    margin-top: 0;
  }

  .section,
  .page-hero,
  .audio-landing,
  .repertoire-section,
  .why-section,
  .contact-section {
    padding: 3.6rem 1rem;
  }

  .audio-page .audio-landing {
    padding-top: 2rem;
  }

  .audio-copy h1 {
    font-size: clamp(3rem, 13vw, 4.8rem);
  }

  .audio-page-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .audio-page-actions .button {
    justify-content: center;
    width: 100%;
  }

  .section-grid,
  .audio-landing,
  .highlight-layout,
  .decision-layout,
  .split-heading,
  .event-rail,
  .explore-grid,
  .decision-links,
  .catalog-summary,
  .proof-list,
  .process-list,
  .booking-form,
  .members-header,
  .instagram-layout {
    grid-template-columns: 1fr;
  }

  .page-hero {
    min-height: 430px;
  }

  .page-hero h1,
  .page-hero h1 {
    font-size: clamp(2.1rem, 9vw, 3.1rem);
  }

  .explore-card {
    min-height: 260px;
  }

  .highlight-media img {
    height: 360px;
  }

  .decision-layout {
    margin-bottom: 1.25rem;
  }

  .decision-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .decision-link {
    min-height: auto;
  }

  .decision-links,
  .event-rail {
    gap: 0;
  }

  .decision-link {
    padding-right: 2.3rem;
  }

  .proof-list article {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }

  .contact-section::before {
    top: 3.6rem;
    left: 1rem;
    height: 92px;
  }

  .contact-info {
    padding: 0 0 0 1.25rem;
  }

  .contact-info h2 {
    font-size: clamp(3rem, 16vw, 4.6rem);
  }

  .contact-links a {
    grid-template-columns: 1fr;
    gap: 0.25rem;
    min-height: auto;
  }

  .members-carousel {
    grid-auto-columns: minmax(260px, 82vw);
    margin-right: -1rem;
    padding-right: 1rem;
  }

  .feature-member {
    grid-column: auto;
  }

  .member-card {
    min-height: 430px;
  }

  .member-card img {
    min-height: 430px;
  }

  .instagram-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 165px;
    gap: 0.55rem;
  }

  .instagram-tile.wide {
    grid-column: span 2;
  }

  .modern-player {
    grid-template-columns: 1fr;
  }

  .playlist-player {
    min-height: 0;
  }

  .now-playing-panel {
    padding: 2.2rem 1rem 1.1rem;
  }

  .player-visual,
  .player-visual img {
    min-height: 0;
  }

  .player-main-button {
    width: auto;
    height: auto;
  }

  .player-meta {
    grid-template-columns: none;
  }

  .player-meta span {
    font-size: 0.8rem;
  }

  .player-meta strong {
    font-size: clamp(1.15rem, 5.4vw, 1.65rem);
  }

  .playlist-heading {
    grid-template-columns: 1fr;
    padding: 1rem;
  }

  .playlist-heading .button {
    width: auto;
    justify-content: center;
  }

  .track-list {
    max-height: none;
  }

  .page-repertoire .category-tabs,
  .song-list {
    grid-template-columns: 1fr;
  }

  .repertoire-song-list {
    columns: 1;
    max-height: none;
    padding: 1.25rem 1rem;
  }

  .repertoire-accordion-item summary {
    min-height: 56px;
    padding: 0.85rem 1rem;
  }

  .song-card {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .song-card em {
    grid-column: 2;
    justify-self: start;
  }

  .track-item {
    grid-template-columns: 28px minmax(0, 1fr) 32px;
    min-height: 58px;
  }

  .track-item small {
    grid-column: auto;
    justify-self: start;
  }

  .mini-player {
    position: relative;
    display: grid;
    width: 100%;
    min-height: 78px;
    border-radius: 0;
    padding: 0.75rem 0.85rem;
  }

  .mini-actions {
    gap: 0.3rem;
  }

  .mini-actions button {
    width: 40px;
    height: 40px;
  }

  .split-heading .button {
    justify-self: start;
  }

  .quote-panel {
    padding: 1.4rem;
  }

  .quote-panel p {
    font-size: 1.55rem;
  }

  .event-rail article,
  .process-list li {
    min-height: auto;
  }

  .table-shell {
    max-height: 520px;
  }

  .repertoire-table {
    min-width: 700px;
  }

  .video-playlist,
  .audio-grid,
  .reference-logos {
    grid-template-columns: 1fr 1fr;
  }

  /* Mozaik (editorijal): svaka 3. fotka puna sirina, ostale u paru */
  .gallery-grid {
    column-count: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
  }

  .gallery-item {
    margin: 0;
    aspect-ratio: 1 / 1;
  }

  .gallery-item img {
    height: 100%;
    object-fit: cover;
  }

  .gallery-item:nth-child(3n + 1) {
    grid-column: 1 / -1;
    aspect-ratio: 16 / 10;
  }

  .video-choice {
    min-height: auto;
    border-right: 0;
  }

  .booking-form {
    padding: 1.25rem;
  }

  .social-links {
    grid-template-columns: 1fr;
  }

  .site-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.1rem;
    padding: 1.8rem 1rem;
  }
}

@media (max-width: 430px) {
  h1 {
    font-size: 3.75rem;
  }

  h2 {
    font-size: 2.05rem;
  }

  .hero-media img {
    height: 330px;
    min-height: 330px;
  }

  .video-playlist,
  .audio-grid,
  .reference-logos {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   NASLOVNICA - kinematografski redizajn (body.home)
   ============================================================ */
.home {
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Nav: prozirni preko hero-a, solid na scroll --- */
.home .site-header {
  position: fixed;
  inset: 0 0 auto;
  background: transparent;
  border-bottom: 1px solid transparent;
  color: var(--cream);
  transition: background 0.5s var(--ease), color 0.5s var(--ease),
    border-color 0.5s var(--ease), padding 0.4s var(--ease);
}
.home .site-header .brand {
  color: var(--cream);
}
.home .site-header .nav-links a {
  color: rgba(243, 239, 231, 0.82);
}
.home .site-header .nav-links a:hover,
.home .site-header .nav-links a:focus-visible,
.home .site-header .nav-links a[aria-current="page"] {
  color: var(--cream);
}
.home .site-header .header-cta {
  background: transparent;
  border-color: rgba(243, 239, 231, 0.5);
  color: var(--cream);
}
.home .site-header .header-cta:hover {
  background: var(--cream);
  color: var(--noir);
}
.home .site-header .nav-toggle {
  background: transparent;
  border-color: rgba(243, 239, 231, 0.4);
  color: var(--cream);
}

.home .site-header.is-solid {
  background: rgba(236, 238, 240, 0.92);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
  color: var(--ink);
}
.home .site-header.is-solid .brand {
  color: var(--ink);
}
.home .site-header.is-solid .nav-links a {
  color: var(--muted);
}
.home .site-header.is-solid .nav-links a:hover,
.home .site-header.is-solid .nav-links a:focus-visible,
.home .site-header.is-solid .nav-links a[aria-current="page"] {
  color: var(--ink);
}
.home .site-header.is-solid .header-cta {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--cream);
}
.home .site-header.is-solid .header-cta:hover {
  background: var(--noir);
}
.home .site-header.is-solid .nav-toggle {
  border-color: var(--line);
  color: var(--ink);
}

/* --- Zajednicki homepage primitivi --- */
.home main [id] {
  scroll-margin-top: 88px;
}
.home .h-wrap {
  width: min(100% - 3rem, 1280px);
  margin-inline: auto;
}
.home .h-eyebrow {
  margin: 0;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}
.h-hero .h-eyebrow,
.h-arc .h-eyebrow,
.h-end .h-eyebrow {
  color: rgba(243, 239, 231, 0.7);
}
.home .h-link {
  display: inline-flex;
  align-items: center;
  margin-top: 2rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: border-color 0.3s var(--ease);
}
.home .h-link:hover {
  border-color: var(--ink);
}

/* --- HERO --- */
.h-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100svh;
  overflow: hidden;
  text-align: center;
  background: var(--noir);
}
.h-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.h-hero__bg img {
  width: 100%;
  height: 112%;
  object-fit: cover;
  object-position: center 28%;
  filter: saturate(0.95) brightness(0.66);
  animation: hKen 34s var(--ease) infinite alternate;
}
.h-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(16, 11, 12, 0.5), rgba(16, 11, 12, 0.16) 40%, rgba(16, 11, 12, 0.86)),
    radial-gradient(90% 80% at 50% 50%, transparent 38%, rgba(16, 11, 12, 0.58));
}
.h-hero__in {
  position: relative;
  z-index: 2;
  max-width: 60rem;
  padding: 1.5rem;
  text-shadow: 0 1px 34px rgba(16, 11, 12, 0.4);
}
.h-hero h1 {
  margin: 1.3rem 0 0;
  color: var(--cream);
  font-weight: 200;
  font-size: clamp(3.4rem, 11.5vw, 9rem);
  letter-spacing: 0.07em;
  line-height: 1;
  text-transform: uppercase;
}
.h-hero__sub {
  max-width: 30ch;
  margin: 1.5rem auto 0;
  color: #efe7d9;
  font-weight: 300;
  font-size: clamp(1.15rem, 1.9vw, 1.45rem);
  line-height: 1.4;
}
.h-hero__cta {
  display: inline-flex;
  align-items: center;
  margin-top: 2.3rem;
  padding: 1rem 2rem;
  border: 1px solid rgba(243, 239, 231, 0.45);
  border-radius: 2px;
  color: var(--cream);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: background 0.4s var(--ease), color 0.4s var(--ease), border-color 0.4s var(--ease);
}
.h-hero__cta:hover {
  background: var(--cream);
  color: var(--noir);
  border-color: var(--cream);
}
.h-hero__cue {
  position: absolute;
  bottom: 1.4rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 1rem;
  color: rgba(243, 239, 231, 0.62);
  font-size: 0.64rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
@keyframes hKen {
  from { transform: scale(1.03); }
  to { transform: scale(1.13); }
}
@media (prefers-reduced-motion: no-preference) {
  .h-hero__in > * {
    opacity: 0;
    animation: hRise 1.4s var(--ease) forwards;
  }
  .h-hero__in > .h-eyebrow { animation-delay: 0.25s; }
  .h-hero__in > h1 { animation-delay: 0.45s; }
  .h-hero__in > .h-hero__sub { animation-delay: 0.8s; }
  .h-hero__in > .h-hero__cta { animation-delay: 1.05s; }
  .h-hero__cue { opacity: 0; animation: hFade 1.2s var(--ease) 1.5s forwards; }
}
@keyframes hRise {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: none; }
}
@keyframes hFade {
  to { opacity: 1; }
}

/* --- MANIFEST --- */
.h-manifest {
  padding: clamp(6rem, 14vw, 10rem) 0;
  text-align: center;
}
.h-manifest h2 {
  max-width: 18ch;
  margin-inline: auto;
  font-size: clamp(2.2rem, 5.5vw, 4.2rem);
  font-weight: 300;
  line-height: 1.06;
}
.h-manifest h2 b {
  font-weight: 500;
}
.h-manifest__lead {
  max-width: 52ch;
  margin: 2rem auto 0;
  font-size: 1.12rem;
}

/* --- O BENDU --- */
.h-about {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: stretch;
  border-top: 1px solid var(--line);
}
.h-about__media {
  min-height: 560px;
  overflow: hidden;
}
.h-about__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.h-about__copy {
  align-self: center;
  padding: clamp(3rem, 6vw, 6rem);
}
.h-about__copy h2 {
  max-width: 16ch;
  margin-top: 1rem;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.08;
}
.h-about__copy p {
  max-width: 46ch;
  margin-top: 1.4rem;
}
.h-about__stats {
  display: flex;
  gap: clamp(1.5rem, 4vw, 3rem);
  margin: 2.6rem 0 0;
  padding-top: 1.8rem;
  border-top: 1px solid var(--line);
}
.h-about__stats > div {
  display: flex;
  flex-direction: column;
}
.h-about__stats dd {
  order: 0;
  margin: 0;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.h-about__stats dt {
  order: 1;
  margin-top: 0.35rem;
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* --- SVIRAMO --- */
.h-play {
  padding: clamp(4rem, 9vw, 7rem) 0;
}
.h-play > h2 {
  max-width: 18ch;
  margin-bottom: 2.4rem;
  font-size: clamp(1.9rem, 3.6vw, 2.7rem);
  font-weight: 300;
  line-height: 1.12;
}
.h-play__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.5fr);
  gap: 1.5rem;
  align-items: baseline;
  padding: 1.6rem 0;
  border-top: 1px solid var(--line);
  transition: padding-left 0.4s var(--ease);
}
.h-play__row:last-child {
  border-bottom: 1px solid var(--line);
}
.h-play__row:hover {
  padding-left: 0.8rem;
}
.h-play__ttl {
  color: var(--ink);
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  font-weight: 400;
}
.h-play__ds {
  color: var(--muted);
  font-size: 0.98rem;
}

/* --- TIJEK VECERI --- */
.h-arc {
  position: relative;
  overflow: hidden;
  padding: clamp(6rem, 13vw, 9rem) 0;
  color: var(--cream);
}
.h-arc__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.h-arc__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4) saturate(0.9);
}
.h-arc__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(16, 11, 12, 0.6), rgba(16, 11, 12, 0.8));
}
.h-arc__in {
  position: relative;
  z-index: 1;
}
.h-arc__in h2 {
  max-width: 20ch;
  margin: 1.1rem 0 3.4rem;
  color: var(--cream);
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.1;
}
.h-arc__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem, 4vw, 4rem);
}
.h-arc__t {
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.h-arc__step h3 {
  margin: 1rem 0 0.8rem;
  color: var(--cream);
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.15;
}
.h-arc__step p {
  color: rgba(243, 239, 231, 0.7);
  font-size: 0.98rem;
  font-weight: 300;
}

/* --- BEND (accordion) --- */
.h-mem {
  padding: clamp(4rem, 9vw, 7rem) 0;
}
.h-mem__head {
  margin-bottom: clamp(2.6rem, 5vw, 3.6rem);
  text-align: center;
}
.h-mem__head h2 {
  max-width: 18ch;
  margin: 0.8rem auto 0;
  font-size: clamp(2rem, 4vw, 2.9rem);
  font-weight: 300;
}
.h-mem__grid {
  display: flex;
  gap: 6px;
  height: min(72vh, 560px);
}
.h-mc {
  position: relative;
  flex: 1;
  min-width: 0;
  overflow: hidden;
  cursor: pointer;
  transition: flex 1s var(--ease);
}
.h-mc:hover,
.h-mc:focus-within {
  flex: 3.4;
}
.h-mc img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  filter: grayscale(1) brightness(0.82);
  transition: filter 1s var(--ease), transform 1.1s var(--ease);
}
.h-mc:hover img,
.h-mc:focus-within img {
  filter: grayscale(0) brightness(1);
  transform: scale(1.03);
}
.h-mc::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 48%, rgba(16, 11, 12, 0.82));
}
.h-mc__nm {
  position: absolute;
  left: 50%;
  bottom: 1.5rem;
  z-index: 2;
  color: var(--cream);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  transition: all 0.6s var(--ease);
}
.h-mc:hover .h-mc__nm,
.h-mc:focus-within .h-mc__nm {
  left: 1.5rem;
  writing-mode: horizontal-tb;
  transform: none;
}
.h-mc__nm b {
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.h-mc__nm span {
  display: block;
  margin-top: 0.35rem;
  color: rgba(243, 239, 231, 0.65);
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.5s;
}
.h-mc:hover .h-mc__nm span,
.h-mc:focus-within .h-mc__nm span {
  opacity: 1;
}

/* --- SNIMKE (split) --- */
.h-listen {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
}
.h-listen__pic {
  position: relative;
  min-height: 460px;
  overflow: hidden;
}
.h-listen__pic img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.12);
}
.h-listen__body {
  align-self: center;
  padding: clamp(3rem, 6vw, 5rem);
}
.h-listen__body h2 {
  max-width: 16ch;
  margin-top: 1rem;
  font-size: clamp(1.9rem, 3.6vw, 2.7rem);
  font-weight: 300;
}
.h-listen__lead {
  max-width: 42ch;
  margin: 1.2rem 0 0;
}
.h-listen__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1.8rem 0 0;
  padding: 0;
  list-style: none;
}
.h-listen__tags li {
  padding: 0.5rem 1rem;
  border: 1px solid var(--line);
  border-radius: 2px;
  color: var(--muted);
  font-size: 0.82rem;
}

/* --- GALERIJA --- */
.h-gal {
  padding: clamp(4rem, 9vw, 7rem) 0 0;
}
.h-gal__head {
  margin-bottom: 2.2rem;
}
.h-gal__head h2 {
  margin-top: 0.8rem;
  font-size: clamp(2rem, 4vw, 2.9rem);
  font-weight: 300;
}
.h-gal__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 38vh;
  gap: 0;
}
.h-gi {
  position: relative;
  overflow: hidden;
}
.h-gi img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
/* Portretne fotke u landscape kadru: drzi lice/glavu u kadru, ne rezi vrh */
.h-gi img.h-gi--top {
  object-position: center 18%;
}
.h-gi:hover img {
  transform: scale(1.06);
}
.h-gi:first-child {
  grid-row: span 2;
}

/* --- REFERENCE (citat + marquee) --- */
.h-refs {
  padding: clamp(5rem, 11vw, 7rem) 0 0;
  border-top: 1px solid var(--line);
  text-align: center;
}
.h-refs__q {
  max-width: 24ch;
  margin: 1.3rem auto 0;
  color: var(--ink);
  font-weight: 300;
  font-size: clamp(1.6rem, 3.4vw, 2.4rem);
  line-height: 1.34;
}
.h-refs cite {
  display: block;
  margin-top: 1.5rem;
  color: var(--gold);
  font-style: normal;
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.h-logos {
  margin-top: clamp(3.5rem, 7vw, 5rem);
  padding: 2.8rem 0;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.h-logos__track {
  display: flex;
  align-items: center;
  gap: clamp(3rem, 6vw, 5.5rem);
  width: max-content;
  animation: hScroll 60s linear infinite;
}
.h-logos:hover .h-logos__track {
  animation-play-state: paused;
}
.h-logos img {
  height: 46px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  opacity: 1;
}
@keyframes hScroll {
  to { transform: translateX(-50%); }
}

/* --- CTA --- */
.h-end {
  position: relative;
  overflow: hidden;
  padding: clamp(6rem, 14vw, 10rem) 1.5rem;
  color: var(--cream);
  text-align: center;
}
.h-end__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.h-end__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4);
}
.h-end__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(16, 11, 12, 0.55), rgba(16, 11, 12, 0.72));
}
.h-end__in {
  position: relative;
  z-index: 1;
}
.h-end h2 {
  max-width: 16ch;
  margin: 1.1rem auto 0;
  color: var(--cream);
  font-weight: 200;
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.h-end__lead {
  max-width: 40ch;
  margin: 1.3rem auto 2.2rem;
  color: rgba(243, 239, 231, 0.72);
}
.h-end__cta {
  display: inline-block;
  padding: 1.1rem 2.2rem;
  border-radius: 2px;
  background: var(--cream);
  color: var(--noir);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: transform 0.4s var(--ease);
}
.h-end__cta:hover {
  transform: translateY(-3px);
}

/* --- Responsive --- */
@media (max-width: 840px) {
  .h-about {
    grid-template-columns: 1fr;
  }
  .h-about__media {
    order: -1;
    min-height: 340px;
  }
  .h-listen {
    grid-template-columns: 1fr;
  }
  .h-listen__pic {
    min-height: 280px;
  }
}
@media (max-width: 760px) {
  /* mobilni hero: portret fotka benda (Gazda dostavio, 854x1840) - full-bleed cover,
     svih 5 stane bez rezanja jer je portret omjer ~= mobilni ekran. */
  .h-hero__bg img {
    height: 100%;
    object-position: center 34%;
    animation: none;
  }
  .h-arc__grid {
    grid-template-columns: 1fr;
    gap: 2.4rem;
  }
  .h-gal__grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 26vh;
  }
  .h-gi:first-child {
    grid-row: auto;
    grid-column: span 2;
  }
}
@media (max-width: 680px) {
  .h-play__row {
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }
  .h-mem__grid {
    flex-direction: column;
    height: auto;
  }
  .h-mc {
    height: 96px;
  }
  .h-mc:hover,
  .h-mc:focus-within {
    flex: 1;
    height: 320px;
  }
  .h-mc__nm {
    left: 1.4rem;
    bottom: 1.2rem;
    writing-mode: horizontal-tb;
    transform: none;
  }
  .h-mc__nm span {
    opacity: 1;
  }
}
@media (prefers-reduced-motion: reduce) {
  .h-hero__bg img,
  .h-logos__track {
    animation: none;
  }
}

/* FAQ (kontakt) */
.faq-section {
  padding: clamp(3.5rem, 6vw, 6rem) clamp(1.4rem, 4vw, 4rem) clamp(4rem, 7vw, 7rem);
  border-top: 1px solid var(--line);
  background: var(--paper-strong);
}
.faq-inner {
  width: min(100%, 820px);
  margin: 0 auto;
}
.faq-inner h2 {
  margin: 0.6rem 0 2rem;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 300;
  letter-spacing: 0.01em;
}
.faq-item {
  border-top: 1px solid var(--line);
}
.faq-item:last-child {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.2rem;
  padding: 1.35rem 0;
  cursor: pointer;
  list-style: none;
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: "+";
  flex: none;
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1;
  color: var(--muted);
}
.faq-item[open] summary::after {
  content: "\2212";
}
.faq-item p {
  margin: 0 0 1.35rem;
  max-width: 64ch;
  color: var(--muted);
  line-height: 1.7;
}
