@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-display: swap;
  font-weight: 400;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+1E00-1E9F;
  src: url('../fonts/inter-latin-ext-400-normal.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-display: swap;
  font-weight: 400;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2212;
  src: url('../fonts/inter-latin-400-normal.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-display: swap;
  font-weight: 600;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+1E00-1E9F;
  src: url('../fonts/inter-latin-ext-600-normal.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-display: swap;
  font-weight: 600;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2212;
  src: url('../fonts/inter-latin-600-normal.woff2') format('woff2');
}

@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-display: swap;
  font-weight: 400;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+1E00-1E9F;
  src: url('../fonts/cormorant-garamond-latin-ext-400-normal.woff2') format('woff2');
}

@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-display: swap;
  font-weight: 400;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2212;
  src: url('../fonts/cormorant-garamond-latin-400-normal.woff2') format('woff2');
}

@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-display: swap;
  font-weight: 500;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+1E00-1E9F;
  src: url('../fonts/cormorant-garamond-latin-ext-500-normal.woff2') format('woff2');
}

@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-display: swap;
  font-weight: 500;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2212;
  src: url('../fonts/cormorant-garamond-latin-500-normal.woff2') format('woff2');
}

@font-face {
  font-family: 'jagu-logo';
  font-style: normal;
  font-display: swap;
  font-weight: 400;
  src: url('../fonts/jagu-logo.woff') format('woff');
}

:root {
  --black: #050505;
  --night: #0b0b0b;
  --charcoal: #151515;
  --graphite: #262626;
  --paper: #f7f7f5;
  --white: #ffffff;
  --muted: #b7b7b1;
  --ink-muted: #5f5f5a;
  --line-dark: rgba(255, 255, 255, 0.16);
  --line-light: rgba(5, 5, 5, 0.16);
  --brass: #caa661;
  --brass-soft: #dec993;
  --max-width: 1240px;
  --header-height: 84px;
  color-scheme: dark light;
  font-family: 'Inter', Arial, sans-serif;
  background: var(--black);
  color: var(--white);
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

html {
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body,
button,
input,
select,
textarea {
  font: inherit;
}

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

button {
  color: inherit;
}

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

[hidden],
.icon-sprite {
  display: none !important;
}

.icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  vertical-align: -0.15em;
}

.arrow {
  width: 18px;
  height: 18px;
}

.site-shell {
  min-height: 100vh;
  overflow-x: clip;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  display: grid;
  grid-template-columns: minmax(220px, 260px) 1fr auto;
  align-items: center;
  min-height: var(--header-height);
  padding: 0 clamp(22px, 5vw, 72px);
  background: var(--black);
  transition: background 180ms ease, min-height 180ms ease;
}

.site-header::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--line-dark);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.site-header.is-scrolled,
.menu-open .site-header {
  min-height: 72px;
  background: var(--black);
}

.site-header.is-scrolled::after,
.menu-open .site-header::after {
  opacity: 1;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
}

.brand-logo {
  display: block;
  width: clamp(180px, 14vw, 198px);
  max-width: 56vw;
  height: auto;
}

.desktop-nav,
.site-footer nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 2.4vw, 44px);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 12px;
  font-weight: 700;
}

.site-footer nav {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  align-items: center;
  column-gap: clamp(20px, 3vw, 46px);
  row-gap: 2px;
}

.desktop-nav a,
.site-footer nav a {
  position: relative;
  padding: 10px 0;
  color: rgba(255, 255, 255, 0.82);
}

.site-footer nav a {
  padding: 6px 0;
}

.desktop-nav a::after,
.site-footer nav a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--brass);
  transition: transform 160ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after,
.site-footer nav a:hover::after {
  transform: scaleX(1);
}

.note-burst-layer {
  position: fixed;
  inset: 0;
  z-index: 40;
  overflow: hidden;
  pointer-events: none;
}

.note-particle {
  --note-color: var(--brass);
  --note-mask: none;
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 22px;
  height: 22px;
  background: var(--note-color);
  opacity: 0;
  pointer-events: none;
  transform-origin: center;
  will-change: transform, opacity;
  -webkit-mask-image: var(--note-mask);
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-image: var(--note-mask);
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}

.header-actions > a,
.socials a,
.lightbox > button {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  transition: border-color 160ms ease, color 160ms ease, background 160ms ease;
}

.header-actions > a:hover,
.socials a:hover,
.lightbox > button:hover {
  border-color: var(--line-dark);
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  padding: 8px 12px;
  background: transparent;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
  display: block;
  width: 20px;
  height: 1px;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}

.menu-icon {
  position: relative;
}

.menu-icon::before,
.menu-icon::after {
  content: '';
  position: absolute;
  left: 0;
}

.menu-icon::before {
  top: -6px;
}

.menu-icon::after {
  top: 6px;
}

.menu-toggle[aria-expanded='true'] .menu-icon {
  background: transparent;
}

.menu-toggle[aria-expanded='true'] .menu-icon::before {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded='true'] .menu-icon::after {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-nav {
  display: none;
}

.section-dark {
  background:
    radial-gradient(circle at 65% 15%, rgba(255, 255, 255, 0.06), transparent 36%),
    linear-gradient(180deg, var(--black), var(--night));
  color: var(--white);
}

.section-light {
  background: var(--paper);
  color: var(--black);
}

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 820px;
  padding: 132px clamp(22px, 5vw, 72px) 88px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.98) 0%, rgba(5, 5, 5, 0.96) 30%, rgba(5, 5, 5, 0.7) 38%, rgba(5, 5, 5, 0.28) 46%, rgba(5, 5, 5, 0.06) 54%, rgba(5, 5, 5, 0) 66%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.56) 0%, rgba(5, 5, 5, 0.04) 34%, rgba(5, 5, 5, 0.08) 70%, rgba(5, 5, 5, 0.86) 100%);
  pointer-events: none;
  z-index: 1;
}

.hero-copy,
.hero-buttons {
  position: relative;
  z-index: 2;
}

.hero-copy {
  max-width: 530px;
}

.eyebrow,
.section-label {
  margin: 0 0 26px;
  color: var(--brass-soft);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  font-weight: 700;
}

.hero h1,
h2 {
  margin: 0;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 560px;
  font-size: clamp(54px, 5vw, 72px);
  line-height: 0.9;
}

.hero-lede {
  max-width: 480px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 42px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 58px;
  padding: 0 27px;
  border: 1px solid currentColor;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 12px;
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  border-color: var(--brass);
  background: var(--brass);
  color: var(--black);
}

.btn-secondary {
  border-color: var(--line-dark);
  background: rgba(255, 255, 255, 0.02);
  color: var(--white);
}

.btn-dark {
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  margin: 0;
  overflow: hidden;
  transform: translateX(clamp(240px, 22vw, 380px));
}

.hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.94) contrast(1.03) brightness(1.03);
}

@media (min-width: 1800px) {
  .hero-media {
    left: auto;
    right: 0;
    width: min(78vw, 2000px);
    transform: none;
  }
}

.numbered-section {
  padding: clamp(78px, 8vw, 126px) clamp(22px, 5vw, 72px);
}

.numbered-section > * {
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 14px;
  color: inherit;
  margin-bottom: 38px;
}

.section-label span {
  color: var(--ink-muted);
  font-weight: 600;
}

.section-dark .section-label span {
  color: rgba(255, 255, 255, 0.45);
}

.section-heading-row {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 46px;
}

h2 {
  max-width: 620px;
  font-size: clamp(40px, 4vw, 56px);
  line-height: 0.98;
}

.section-heading-row p,
.about-grid p {
  max-width: 540px;
  color: var(--ink-muted);
  line-height: 1.9;
}

.section-dark .section-heading-row p {
  color: rgba(255, 255, 255, 0.68);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(460px, 1.2fr);
  gap: clamp(48px, 7vw, 108px);
  align-items: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
}

.stat-item {
  min-height: 142px;
  padding: 24px 30px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.stat-item:nth-child(2n) {
  border-right: 0;
}

.stat-item:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.stat-item dt {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1;
  opacity: 1;
}

.stats-grid.is-stat-animation-ready [data-animate-stat] {
  opacity: 0;
  visibility: hidden;
}

.stats-grid.is-stat-animation-running [data-animate-stat] {
  opacity: var(--stat-value-opacity, 0);
  visibility: visible;
}

.stats-grid.is-stat-animation-complete [data-animate-stat] {
  opacity: 1;
  visibility: visible;
}

.stat-item dd {
  margin: 12px 0 0;
  color: var(--ink-muted);
  font-size: 13px;
}

.repertoire {
  padding-top: 104px;
  padding-bottom: 110px;
}

.tabs {
  display: flex;
  gap: clamp(14px, 2.4vw, 42px);
  overflow-x: auto;
  overflow-y: hidden;
  border-bottom: 1px solid var(--line-dark);
  scrollbar-width: none;
}

.tabs::-webkit-scrollbar {
  display: none;
}

.tabs button {
  position: relative;
  flex: 0 0 auto;
  padding: 0 0 18px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.tabs button::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: var(--brass);
  transform: scaleX(0);
  transform-origin: left;
}

.tabs button.active {
  color: var(--white);
}

.tabs button.active::after {
  transform: scaleX(1);
}

.repertoire-carousel {
  padding-top: 34px;
}

.repertoire-list {
  display: grid;
  align-content: start;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(22px, 3vw, 30px) clamp(34px, 6vw, 72px);
  min-height: 238px;
}

.repertoire-list article {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 104px;
  padding: 0 0 18px;
  border-bottom: 1px solid var(--line-dark);
}

.repertoire-list strong,
.concert-title h3,
.concert-place strong,
.member-card p {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 25px;
  font-weight: 500;
  line-height: 1.1;
}

.repertoire-credits,
.concert-title p,
.concert-place span,
.member-card small {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.6;
}

.repertoire-credits {
  display: grid;
  gap: 3px;
  font-size: 14px;
  line-height: 1.45;
}

.repertoire-credit {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px;
}

.repertoire-credit-label {
  color: rgba(222, 201, 147, 0.78);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.4;
}

.repertoire-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  margin-top: 30px;
}

.repertoire-controls[hidden] {
  display: none;
}

.repertoire-arrow {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  transition:
    border-color 180ms ease,
    color 180ms ease,
    opacity 180ms ease;
}

.repertoire-arrow:hover:not(:disabled),
.repertoire-arrow:focus-visible {
  border-color: rgba(207, 183, 130, 0.78);
  color: var(--brass);
}

.repertoire-arrow:focus-visible {
  outline: 2px solid rgba(207, 183, 130, 0.55);
  outline-offset: 3px;
}

.repertoire-arrow:disabled {
  opacity: 0.32;
  cursor: default;
}

.repertoire-arrow-prev .icon {
  transform: rotate(180deg);
}

.repertoire-page {
  min-width: 54px;
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
  letter-spacing: 0.08em;
  font-size: 12px;
  font-weight: 800;
}

.members-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid var(--line-light);
}

.member-card {
  min-height: 240px;
  padding: 4px 34px 8px;
  border-right: 1px solid var(--line-light);
}

.member-card p {
  margin: 0;
  color: var(--black);
}

.member-card span {
  display: block;
  margin-top: 8px;
  color: var(--ink-muted);
  text-transform: lowercase;
}

.member-card span::after {
  content: '';
  display: block;
  width: 36px;
  height: 2px;
  margin-top: 26px;
  background: var(--brass);
}

.member-card small {
  display: block;
  margin-top: 34px;
  color: var(--ink-muted);
  font-size: 14px;
}

.concert-list {
  display: grid;
  border-top: 1px solid var(--line-dark);
}

.concert-row {
  display: grid;
  grid-template-columns: 112px 130px minmax(280px, 1fr) minmax(200px, 0.55fr);
  gap: 26px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--line-dark);
}

.concert-row.has-detail {
  grid-template-columns: 112px 120px minmax(260px, 1fr) minmax(190px, 0.5fr) minmax(128px, auto);
}

.concert-empty {
  display: grid;
  gap: 14px;
  width: 100%;
  padding: clamp(34px, 6vw, 58px) 0;
  border-bottom: 1px solid var(--line-dark);
}

.concert-empty-label,
.concert-empty h3,
.concert-empty p {
  width: min(50%, 600px);
}

.concert-empty-label {
  color: var(--brass);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 11px;
  font-weight: 800;
}

.concert-empty h3 {
  margin: 0;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 500;
  line-height: 1.04;
}

.concert-empty p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.75;
}

.concert-date {
  display: grid;
  gap: 3px;
  justify-items: center;
  text-align: center;
  text-transform: uppercase;
}

.concert-date strong {
  color: var(--brass);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 45px;
  font-weight: 500;
  line-height: 0.86;
}

.concert-date span,
.concert-time {
  color: rgba(255, 255, 255, 0.78);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.concert-date span {
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.concert-date span:first-of-type {
  margin-top: 6px;
  font-size: 11px;
}

.concert-title h3,
.concert-title p,
.concert-place strong,
.concert-place span {
  margin: 0;
}

.concert-title h3,
.concert-place strong {
  line-height: 1.04;
}

.concert-title p,
.concert-place span {
  line-height: 1.32;
}

.concert-title,
.concert-place {
  display: grid;
  grid-template-rows: auto auto;
  gap: 8px;
  align-content: center;
}

.concert-detail {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 10px;
  color: rgba(255, 255, 255, 0.72);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 11px;
  font-weight: 800;
  transition: color 160ms ease, transform 160ms ease;
}

.concert-detail:hover,
.concert-detail:focus-visible {
  color: var(--brass);
  transform: translateX(2px);
}

.concert-detail:focus-visible {
  outline: 2px solid rgba(207, 183, 130, 0.55);
  outline-offset: 4px;
}

.concert-detail .icon {
  width: 17px;
  height: 17px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 18px;
  width: 100%;
}

.gallery-item {
  position: relative;
  display: block;
  width: 100%;
  min-height: 360px;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line-light);
  border-radius: 0;
  background: var(--charcoal);
  cursor: zoom-in;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9);
  transition: transform 260ms ease;
}

.gallery-item:hover img {
  transform: scale(1.035);
}

.gallery-item span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 8px 12px;
  background: rgba(5, 5, 5, 0.76);
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 12px;
  font-weight: 700;
}

.contact-map-section {
  position: relative;
  min-height: 575px;
  overflow: hidden;
  isolation: isolate;
}

.contact-map,
.contact-map-overlay {
  position: absolute;
  inset: 0;
}

.contact-map {
  z-index: 0;
  background: var(--paper);
}

.contact-map.leaflet-container,
.contact-map .leaflet-pane,
.contact-map .leaflet-tile-pane {
  background: var(--paper);
}

.contact-map .leaflet-tile {
  filter: grayscale(1) saturate(0) contrast(0.92) brightness(1.04);
}

.contact-map .leaflet-control-attribution {
  background: rgba(247, 247, 245, 0.84);
  color: rgba(5, 5, 5, 0.62);
  font-size: 10px;
}

.contact-map .leaflet-control-attribution a {
  color: rgba(5, 5, 5, 0.78);
}

.contact-map .leaflet-control-zoom {
  border: 1px solid rgba(5, 5, 5, 0.16);
  border-radius: 0;
  box-shadow: 0 14px 28px rgba(5, 5, 5, 0.16);
}

.contact-map .leaflet-control-zoom a {
  width: 38px;
  height: 38px;
  border-bottom-color: rgba(5, 5, 5, 0.14);
  background: rgba(247, 247, 245, 0.94);
  color: var(--black);
  line-height: 38px;
}

.contact-map .leaflet-control-zoom a:hover,
.contact-map .leaflet-control-zoom a:focus {
  background: var(--black);
  color: var(--brass);
}

.contact-map-marker {
  display: block;
  width: 32px;
  height: 42px;
  background: transparent;
  border: 0;
}

.contact-map-marker svg {
  display: block;
  width: 32px;
  height: 42px;
  overflow: visible;
}

.contact-map-marker__pin {
  fill: var(--black);
}

.contact-map-marker__dot {
  fill: var(--brass);
  stroke: rgba(255, 255, 255, 0.74);
  stroke-width: 2;
}

.contact-map-overlay {
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(247, 247, 245, 0.99) 0%,
    rgba(247, 247, 245, 0.96) 20%,
    rgba(247, 247, 245, 0.72) 30%,
    rgba(247, 247, 245, 0.26) 40%,
    rgba(247, 247, 245, 0) 49%
  );
}

.contact-content {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  width: min(100%, calc(var(--max-width) + clamp(44px, 10vw, 144px)));
  min-height: inherit;
  margin: 0 auto;
  padding: clamp(78px, 8vw, 126px) clamp(22px, 5vw, 72px);
  pointer-events: none;
}

.contact-map-section .section-label {
  width: fit-content;
  pointer-events: auto;
}

.contact-details {
  max-width: 520px;
  pointer-events: auto;
}

.contact-details h2 {
  margin-bottom: 38px;
}

.contact-details a,
.contact-details p {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 18px 0;
  color: var(--ink-muted);
}

.contact-details .icon {
  flex: 0 0 auto;
  color: var(--black);
}

.socials {
  display: flex;
  gap: 12px;
  margin-top: 34px;
}

.socials a {
  display: inline-grid;
  place-items: center;
  gap: 0;
  margin: 0;
  border-color: var(--line-light);
  color: var(--black);
}

.site-footer {
  display: grid;
  grid-template-columns: 260px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 34px clamp(22px, 5vw, 72px);
  border-top: 1px solid var(--line-dark);
  background: var(--black);
}

.footer-brand .brand-logo {
  width: clamp(172px, 14vw, 198px);
  opacity: 0.94;
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.footer-meta {
  display: grid;
  justify-items: end;
  gap: 7px;
  text-align: right;
}

.jagu-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: rgba(255, 255, 255, 0.62);
  font-family: inherit;
  font-size: 13px;
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
  transition: color 160ms ease;
}

.jagulogo-jagu-line::before {
  content: '\e989';
  color: currentColor;
  font-family: 'jagu-logo';
  font-size: 1.35em;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  speak: never;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.jagu-link:hover,
.jagu-link:focus-visible {
  color: var(--brass-soft);
}

.jagulogo-jagu-line:hover::before,
.jagulogo-jagu-line:focus-visible::before {
  content: '\e988';
  color: #f8981d;
}

.jagu-link:focus-visible {
  outline: 2px solid rgba(207, 183, 130, 0.55);
  outline-offset: 3px;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(0, 0, 0, 0.86);
}

.lightbox > button {
  position: absolute;
  top: 22px;
  right: 22px;
  border-color: var(--line-dark);
  background: rgba(255, 255, 255, 0.04);
}

.lightbox figure {
  width: min(1120px, 92vw);
  margin: 0;
}

.lightbox img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
}

.lightbox figcaption {
  display: grid;
  gap: 6px;
  margin-top: 16px;
  color: var(--white);
}

.lightbox figcaption span {
  color: rgba(255, 255, 255, 0.68);
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav,
  .header-actions > a,
  .site-footer nav {
    display: none;
  }

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

  .mobile-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    pointer-events: none;
    background: rgba(5, 5, 5, 0.96);
    transition: max-height 180ms ease, visibility 0s linear 180ms;
  }

  .menu-open .mobile-nav {
    max-height: 420px;
    visibility: visible;
    pointer-events: auto;
    border-top: 1px solid var(--line-dark);
    border-bottom: 1px solid var(--line-dark);
    transition: max-height 180ms ease;
  }

  .mobile-nav a {
    padding: 18px clamp(22px, 5vw, 72px);
    border-bottom: 1px solid var(--line-dark);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 12px;
    font-weight: 800;
  }

  .hero {
    min-height: 780px;
    padding-top: 116px;
    padding-bottom: 82px;
  }

  .hero-copy {
    max-width: 680px;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(5, 5, 5, 0.98) 0%, rgba(5, 5, 5, 0.94) 36%, rgba(5, 5, 5, 0.58) 50%, rgba(5, 5, 5, 0.18) 64%, rgba(5, 5, 5, 0) 82%),
      linear-gradient(180deg, rgba(5, 5, 5, 0.72) 0%, rgba(5, 5, 5, 0.14) 42%, rgba(5, 5, 5, 0.18) 72%, rgba(5, 5, 5, 0.92) 100%);
  }

  .hero-media {
    transform: translateX(clamp(160px, 20vw, 240px));
  }

  .hero-media img {
    object-fit: cover;
    object-position: center center;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .members-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .repertoire-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .repertoire-controls {
    justify-content: flex-start;
  }

  .concert-row {
    grid-template-columns: 106px 90px 1fr;
  }

  .concert-row.has-detail {
    grid-template-columns: 106px 90px 1fr;
  }

  .concert-place {
    grid-column: 3;
  }

  .concert-detail {
    grid-column: 3;
    justify-self: start;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer {
    grid-template-columns: 1fr auto;
  }

  .footer-meta {
    grid-column: 1 / -1;
    justify-items: start;
    text-align: left;
  }
}

@media (max-width: 700px) {
  :root {
    --header-height: 72px;
  }

  .site-header {
    padding-inline: 18px;
  }

  .brand-logo {
    width: min(158px, 54vw);
  }

  .footer-brand .brand-logo {
    width: min(176px, 58vw);
  }

  .hero {
    align-items: stretch;
    justify-content: flex-start;
    min-height: auto;
    padding: 104px 18px 0;
  }

  .hero::before {
    display: none;
  }

  .hero-media {
    position: relative;
    inset: auto;
    width: calc(100% + 36px);
    aspect-ratio: 4 / 3;
    margin: 12px -18px 0;
    transform: none;
  }

  .hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 66%;
    transform: scale(1.45);
    transform-origin: center 38%;
  }

  .hero h1 {
    font-size: clamp(44px, 12vw, 54px);
    text-wrap: balance;
  }

  .hero-lede {
    font-size: 16px;
  }

  .hero-buttons {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-buttons {
    margin-top: 22px;
    margin-bottom: 18px;
  }

  .btn {
    width: 100%;
  }

  .numbered-section {
    padding: 66px 18px;
  }

  h2 {
    font-size: clamp(40px, 12vw, 54px);
  }

  .stats-grid,
  .members-grid,
  .repertoire-list,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
    margin-inline: 0;
  }

  .contact-map-section {
    min-height: 575px;
  }

  .contact-map-overlay {
    background: linear-gradient(
      180deg,
      rgba(247, 247, 245, 0.99) 0%,
      rgba(247, 247, 245, 0.96) 22%,
      rgba(247, 247, 245, 0.52) 35%,
      rgba(247, 247, 245, 0.08) 47%,
      rgba(247, 247, 245, 0) 60%
    );
  }

  .contact-content {
    align-content: start;
    width: 100%;
    padding: 66px 18px 280px;
  }

  .contact-details {
    max-width: 100%;
  }

  .contact-details h2 {
    margin-bottom: 30px;
  }

  .repertoire-list {
    min-height: 482px;
  }

  .repertoire-controls {
    justify-content: space-between;
    gap: 10px;
  }

  .stat-item,
  .member-card {
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
    padding-left: 0;
  }

  .member-card {
    min-height: auto;
    padding: 24px 0;
  }

  .stat-item {
    min-height: 116px;
    padding: 18px 0;
  }

  .stats-grid,
  .members-grid {
    border-left: 0;
  }

  .stats-grid .stat-item {
    border-bottom: 1px solid var(--line-light);
  }

  .stats-grid .stat-item:last-child {
    border-bottom: 0;
  }

  .concert-row {
    grid-template-columns: 96px 1fr;
    gap: 12px 22px;
  }

  .concert-row.has-detail {
    grid-template-columns: 96px 1fr;
  }

  .concert-date {
    justify-items: start;
    text-align: left;
  }

  .concert-empty-label,
  .concert-empty h3,
  .concert-empty p {
    width: 100%;
  }

  .concert-time {
    justify-self: end;
  }

  .concert-title,
  .concert-place {
    grid-column: 1 / -1;
  }

  .concert-detail {
    grid-column: 1 / -1;
    justify-self: start;
    margin-top: 6px;
  }

  .gallery-item {
    min-height: 280px;
  }

  .site-footer {
    justify-items: start;
  }
}
