@font-face {
  font-family: "Bricolage Grotesque";
  font-style: normal;
  font-weight: 300 800;
  font-stretch: 100%;
  font-display: swap;
  src: url("assets/fonts/bricolage-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;
}

@font-face {
  font-family: "Bricolage Grotesque";
  font-style: normal;
  font-weight: 300 800;
  font-stretch: 100%;
  font-display: swap;
  src: url("assets/fonts/bricolage-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: "Bricolage Fallback";
  src: local("Arial");
  size-adjust: 100%;
  ascent-override: 92%;
  descent-override: 22%;
  line-gap-override: 0%;
}

:root {
  --ink: #f6efe1;
  --muted: #c9b992;
  --paper: #050505;
  --panel: #141312;
  --line: rgba(246, 239, 225, 0.16);
  --amber: #d7a64d;
  --red: #8f682a;
  --teal: #f1d084;
  --violet: #2a2723;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
  --glow: 0 0 38px rgba(215, 166, 77, 0.24), 0 18px 80px rgba(241, 208, 132, 0.11);

  accent-color: var(--amber);
  color-scheme: dark;
  interpolate-size: allow-keywords;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Bricolage Grotesque", "Bricolage Fallback", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-optical-sizing: auto;
  font-synthesis: none;
  font-feature-settings: "kern", "liga", "calt", "ss01";
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  min-width: 320px;
}

p {
  text-wrap: pretty;
}

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

body.nav-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  border-radius: 0;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 4px;
  border-radius: 4px;
}

::selection {
  background: rgba(215, 166, 77, 0.34);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 40;
  padding: 10px 14px;
  background: var(--amber);
  color: #17110b;
  font-weight: 900;
  transform: translateY(-140%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px clamp(18px, 4vw, 56px);
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.9), rgba(5, 5, 5, 0));
  transition: background 180ms ease, border-color 180ms ease, padding 180ms ease;
}

.site-header.is-solid {
  padding-top: 12px;
  padding-bottom: 12px;
  background: rgba(5, 5, 5, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  padding: 4px 6px;
  border-radius: 6px;
  overflow: hidden;
  transition: opacity 200ms ease, transform 200ms ease;
}

.brand:hover {
  opacity: 0.86;
  transform: translateY(-1px);
}

.brand-logo {
  display: block;
  width: clamp(132px, 14vw, 184px);
  height: auto;
  max-height: 32px;
  object-fit: contain;
  object-position: left center;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.5vw, 30px);
  color: var(--muted);
  font-size: 0.95rem;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
  transition: color 160ms ease;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--amber), var(--teal));
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a.is-active,
.site-nav a[aria-current="location"] {
  color: var(--ink);
}

.site-nav a:hover::after,
.site-nav a.is-active::after,
.site-nav a[aria-current="location"]::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
}

.site-nav-social {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: 4px;
  padding-left: 14px;
  border-left: 1px solid var(--line);
}

.site-header-social {
  display: none;
}

.social-icon {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: var(--muted);
  transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

.social-icon:hover,
.social-icon:focus-visible {
  color: var(--amber);
  background: rgba(215, 166, 77, 0.12);
  transform: translateY(-1px);
}

.site-nav .social-icon::after {
  display: none;
}

.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-social .social-icon {
  width: 34px;
  height: 34px;
}

.hero {
  --hero-text-max: clamp(380px, 44vw, 700px);
  --hero-pad-x: clamp(18px, 5vw, 72px);
  --hero-gap: 24px;
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 110px var(--hero-pad-x) 80px;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(248, 244, 234, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(248, 244, 234, 0.028) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.62), transparent 78%);
  content: "";
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("assets/olaboga-hero-1600.jpg");
  background-image: -webkit-image-set(
    url("assets/olaboga-hero-1600.webp") 1x
  );
  background-image: image-set(
    url("assets/olaboga-hero-1600.webp") type("image/webp"),
    url("assets/olaboga-hero-1600.jpg") type("image/jpeg")
  );
  background-position: right center;
  background-size: contain;
  background-repeat: no-repeat;
  transform: none;
  will-change: auto;
  animation: none;
}

@media (max-width: 900px) {
  .hero-media {
    background-image: url("assets/olaboga-hero-800.jpg");
    background-image: -webkit-image-set(
      url("assets/olaboga-hero-800.webp") 1x
    );
    background-image: image-set(
      url("assets/olaboga-hero-800.webp") type("image/webp"),
      url("assets/olaboga-hero-800.jpg") type("image/jpeg")
    );
  }
}

@media (min-width: 901px) {
  .hero-media {
    left: calc(var(--hero-text-max) + var(--hero-pad-x) + var(--hero-gap));
    background-position: center center;
  }
}

@media (min-width: 901px) and (max-width: 1400px) {
  .hero {
    --hero-text-max: clamp(360px, 38vw, 560px);
    --hero-gap: 16px;
    min-height: 88vh;
    padding-top: 96px;
    padding-bottom: 64px;
  }
}

.hero-overlay {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: var(--hero-text-max);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 14px;
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 26px;
  height: 1px;
  background: linear-gradient(90deg, var(--amber), rgba(215, 166, 77, 0));
  content: "";
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(1.85rem, 4.4vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: -0.012em;
  text-wrap: balance;
  text-shadow: 0 18px 60px rgba(0, 0, 0, 0.42);
  display: flex;
  flex-direction: column;
  gap: 0.2em;
}

.h1-line {
  display: block;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.h1-line--accent {
  display: block;
  font-style: italic;
  font-size: 0.82em;
  padding-left: 0.08em;
  background: linear-gradient(90deg, #c97a28, var(--amber), #ffd384, var(--amber), #c97a28);
  background-size: 300%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: text-shimmer 6s linear infinite;
}

h2 {
  margin: 0;
  max-width: 980px;
  font-size: clamp(2rem, 4.8vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.018em;
  text-wrap: balance;
}

h3 {
  margin: 0;
  font-size: 1.15rem;
}

.hero-lead {
  max-width: 650px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
  margin-bottom: 8px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  padding: 13px 22px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: var(--glow);
}

.button:active {
  transform: translateY(0) scale(0.98);
}

.button-primary {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--amber), #f1d084);
  color: #0a0908;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.42), 0 8px 22px rgba(215, 166, 77, 0.18);
}

.button-primary::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.28), transparent 55%);
  pointer-events: none;
  opacity: 0.85;
  transition: opacity 200ms ease;
  content: "";
}

.button-primary:hover {
  background: linear-gradient(135deg, #e3b864, #ffe0a0);
}

.button-primary:hover::after {
  opacity: 1;
}

.button-secondary {
  position: relative;
  overflow: hidden;
}

.button-secondary::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(215, 166, 77, 0.18), transparent 60%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease;
  content: "";
}

.button-secondary:hover {
  border-color: rgba(215, 166, 77, 0.42);
}

.button-secondary:hover::before {
  opacity: 1;
}

.button-secondary {
  border-color: var(--line);
  background: rgba(248, 244, 234, 0.08);
  color: var(--ink);
}

.member-card span {
  color: var(--amber);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-strip {
  display: grid;
  grid-template-columns: 0.7fr 1.4fr 1.2fr;
  gap: 18px;
  border-top: 1px solid var(--line);
}

.hero-strip div {
  min-height: 92px;
  padding: 18px 22px 10px 0;
  border-right: 1px solid var(--line);
}

.hero-strip div:last-child {
  border-right: 0;
  padding-right: 0;
}

.hero-strip strong,
.hero-strip span {
  display: block;
}

.hero-strip strong {
  font-size: 1rem;
  color: var(--ink);
}

.hero-strip span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

#zespol .hero-strip {
  margin: 0 0 clamp(36px, 5vw, 64px);
}

.section {
  position: relative;
  padding: clamp(74px, 10vw, 132px) clamp(18px, 5vw, 72px);
  content-visibility: auto;
  contain-intrinsic-size: 1px 720px;
}

.section-intro {
  content-visibility: visible;
}

.site-footer {
  content-visibility: auto;
  contain-intrinsic-size: 1px 140px;
}

.section > .section-heading,
.section > .intro-grid,
.section > .members-grid,
.section > .repertoire {
  max-width: 1640px;
  margin-inline: auto;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(120px, 0.4fr) minmax(0, 1fr);
  gap: clamp(22px, 5vw, 72px);
  align-items: start;
  margin-bottom: 40px;
}

.section-heading.compact {
  margin-bottom: 26px;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.35fr);
  gap: clamp(28px, 6vw, 92px) clamp(32px, 6vw, 96px);
  align-items: start;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.7;
}

.intro-aside {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-right: clamp(0px, 2vw, 24px);
  border-left: 1px solid var(--line);
  padding-left: clamp(18px, 2.5vw, 32px);
}

.intro-aside .eyebrow {
  margin: 0;
}

.intro-lead {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.05rem, 1.3vw, 1.25rem);
  line-height: 1.55;
  font-weight: 400;
}

.intro-lineup {
  list-style: none;
  margin: 6px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.intro-lineup li {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 12px 14px;
  border-left: 2px solid var(--amber);
  background: linear-gradient(90deg, rgba(215, 166, 77, 0.06), rgba(215, 166, 77, 0) 78%);
  border-radius: 0 8px 8px 0;
}

.intro-lineup-name {
  color: var(--ink);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: -0.005em;
}

.intro-lineup-role {
  color: var(--amber);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.intro-body {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 2vw, 24px);
}

.intro-body p {
  margin: 0;
}

.intro-slogan {
  grid-column: 1 / -1;
  position: relative;
  margin: clamp(8px, 2vw, 24px) 0 0;
  padding: clamp(28px, 4vw, 48px) 0 0;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: clamp(1.45rem, 2.6vw, 2.25rem);
  line-height: 1.3;
  letter-spacing: -0.012em;
  font-weight: 500;
  max-width: 1100px;
}

.intro-slogan span {
  display: inline;
  color: var(--amber);
  font-weight: 600;
}

.concerts-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 88% 18%, rgba(215, 166, 77, 0.14), transparent 28%),
    linear-gradient(180deg, #050505, #0d0c0a 55%, #050505);
}

.concerts-section::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(246, 239, 225, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(246, 239, 225, 0.025) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(90deg, transparent, #000 45%, #000);
  content: "";
}

.concerts-list {
  position: relative;
  display: grid;
  max-width: 1640px;
  margin-inline: auto;
  border-top: 1px solid var(--line);
}

.concert-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(210px, 0.8fr) minmax(220px, 1.35fr) minmax(150px, 0.7fr) auto;
  align-items: center;
  gap: clamp(24px, 4vw, 64px);
  min-height: 154px;
  padding: clamp(24px, 3vw, 40px) clamp(18px, 2vw, 30px);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(215, 166, 77, 0.045), transparent 42%);
  transition: background 240ms ease, padding 240ms ease;
}

.concert-card::before {
  position: absolute;
  top: -1px;
  bottom: -1px;
  left: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--amber), var(--teal));
  content: "";
  transform: scaleY(0);
  transform-origin: center;
  transition: transform 240ms ease;
}

.concert-card:hover {
  padding-left: clamp(24px, 2.5vw, 40px);
  background: linear-gradient(90deg, rgba(215, 166, 77, 0.12), rgba(215, 166, 77, 0.025) 55%, transparent);
}

.concert-card:hover::before {
  transform: scaleY(1);
}

.concert-date {
  display: flex;
  align-items: baseline;
  gap: 16px;
  white-space: nowrap;
}

.concert-day {
  background: linear-gradient(135deg, #f1d084, var(--amber));
  background-clip: text;
  color: transparent;
  font-size: clamp(2.5rem, 4.5vw, 4.5rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.055em;
}

.concert-time {
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.concert-details p,
.concert-ticket {
  color: var(--muted);
}

.concert-details h3,
.concert-details p,
.concert-ticket {
  margin: 0;
}

.concert-details h3 {
  color: var(--ink);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.15;
  letter-spacing: -0.015em;
}

.concert-details p {
  margin-top: 4px;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.concert-ticket {
  font-size: 0.9rem;
}

.concert-ticket strong {
  display: block;
  color: var(--ink);
  font-size: 1.15rem;
}

.concert-place-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid var(--line);
  color: var(--ink);
  background: rgba(246, 239, 225, 0.06);
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.concert-place-link:hover,
.concert-place-link:focus-visible {
  color: #10100f;
  border-color: transparent;
  background: linear-gradient(135deg, var(--amber), var(--teal));
  box-shadow: var(--glow);
  transform: translateY(-2px);
}

.concert-place-link span {
  color: var(--amber);
  transition: color 180ms ease, transform 180ms ease;
}

.concert-place-link:hover span,
.concert-place-link:focus-visible span {
  color: #10100f;
  transform: translate(2px, -2px);
}

@media (max-width: 900px) {
  .concert-card {
    grid-template-columns: minmax(180px, 0.9fr) minmax(200px, 1.2fr) auto;
  }

  .concert-ticket {
    display: none;
  }
}

@media (max-width: 640px) {
  .concert-card {
    grid-template-columns: 1fr auto;
    gap: 20px 16px;
    padding-block: 28px;
  }

  .concert-details {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .concert-place-link {
    grid-column: 1 / -1;
    grid-row: 3;
    width: 100%;
    margin-top: 4px;
  }
}

.members-section {
  overflow: hidden;
  background: linear-gradient(180deg, rgba(5, 5, 5, 0), rgba(215, 166, 77, 0.1)), #10100f;
}

.members-section::before {
  position: absolute;
  inset: 18% -12% auto auto;
  width: 54vw;
  height: 54vw;
  max-width: 760px;
  max-height: 760px;
  border: 1px solid rgba(215, 166, 77, 0.14);
  border-radius: 50%;
  content: "";
  transform: rotate(-14deg);
}

.members-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.member-card {
  position: relative;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  overflow: hidden;
  padding: 24px;
  border: 1px solid var(--line);
  background-color: #050505;
  background-image: linear-gradient(180deg, rgba(5, 5, 5, 0) 0%, rgba(5, 5, 5, 0.88) 72%), var(--member-image-fallback);
  background-image: linear-gradient(180deg, rgba(5, 5, 5, 0) 0%, rgba(5, 5, 5, 0.88) 72%), var(--member-image);
  background-size: cover, contain;
  background-position: center, center top;
  background-repeat: no-repeat;
  box-shadow: var(--shadow);
  isolation: isolate;
  transition: transform 280ms ease, border-color 280ms ease, box-shadow 280ms ease;
}

.member-card::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, rgba(215, 166, 77, 0.25), transparent 44%, rgba(241, 208, 132, 0.16));
  content: "";
  opacity: 0.6;
  transition: opacity 280ms ease;
}

.member-card::after {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--amber), var(--teal));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
  content: "";
}

.member-card:hover {
  border-color: rgba(215, 166, 77, 0.52);
  transform: translateY(-8px);
  box-shadow: var(--glow), var(--shadow);
}

.member-card:hover::before {
  opacity: 0.9;
}

.member-card:hover::after {
  transform: scaleX(1);
}

.member-card h3 {
  margin-top: 8px;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 0.92;
}

.member-card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.member-vocal {
  --member-image: image-set(
    url("assets/band/vocal-720.webp") type("image/webp"),
    url("assets/band/vocal.jpg") type("image/jpeg")
  );
  --member-image-fallback: url("assets/band/vocal.jpg");
}

.member-guitar {
  --member-image: image-set(
    url("assets/band/guitar-720.webp") type("image/webp"),
    url("assets/band/guitar.jpg") type("image/jpeg")
  );
  --member-image-fallback: url("assets/band/guitar.jpg");
}

.member-bass {
  --member-image: image-set(
    url("assets/band/bass-720.webp") type("image/webp"),
    url("assets/band/bass.jpg") type("image/jpeg")
  );
  --member-image-fallback: url("assets/band/bass.jpg");
}

.member-drums {
  --member-image: image-set(
    url("assets/band/drummer-720.webp") type("image/webp"),
    url("assets/band/drummer.jpg") type("image/jpeg")
  );
  --member-image-fallback: url("assets/band/drummer.jpg");
}

.split-section {
  background: linear-gradient(135deg, rgba(215, 166, 77, 0.42), transparent 38%), #f4eadb;
  color: #181513;
}

.split-section .eyebrow {
  color: var(--red);
}

.split-section .eyebrow::before {
  background: linear-gradient(90deg, var(--red), rgba(143, 104, 42, 0));
}

.repertoire {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(24, 21, 19, 0.18);
}

.repertoire article {
  position: relative;
  min-height: 260px;
  padding: 26px 24px;
  border-right: 1px solid rgba(24, 21, 19, 0.18);
  transition: background 200ms ease, transform 200ms ease;
}

.repertoire article::after {
  position: absolute;
  right: 22px;
  bottom: 18px;
  width: 42px;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--amber));
  content: "";
  transition: width 200ms ease;
}

.repertoire article:last-child {
  border-right: 0;
}

.repertoire article:hover {
  background: rgba(255, 255, 255, 0.32);
  transform: translateY(-4px);
}

.repertoire article:hover::after {
  width: 60px;
}

.repertoire p {
  color: #5f554b;
  line-height: 1.65;
}

.contact-section {
  display: block;
  background: radial-gradient(circle at 22% 22%, rgba(215, 166, 77, 0.2), transparent 28%), linear-gradient(135deg, rgba(241, 208, 132, 0.11), transparent 36%), #0b0a09;
}

.contact-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  max-width: 1280px;
  margin-inline: auto;
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(140deg, rgba(248, 244, 234, 0.05), rgba(248, 244, 234, 0.015) 50%, rgba(0, 0, 0, 0.25));
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.contact-panel::before {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0% 0%, rgba(215, 166, 77, 0.18), transparent 45%);
  pointer-events: none;
  content: "";
}

.contact-copy {
  position: relative;
  max-width: 560px;
}

.contact-copy h2 {
  margin-bottom: 16px;
}

.contact-copy p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.7;
}

address.contact-links {
  font-style: normal;
}

.contact-links {
  position: relative;
  display: grid;
  gap: 14px;
  margin: 0;
}

.contact-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(248, 244, 234, 0.045), rgba(248, 244, 234, 0));
  color: var(--ink);
  text-decoration: none;
  transition: transform 200ms ease, border-color 200ms ease, background 200ms ease, box-shadow 200ms ease;
}

.contact-card::before {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(215, 166, 77, 0.16), transparent 60%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
  content: "";
}

.contact-card:hover,
.contact-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(215, 166, 77, 0.45);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.32), 0 0 0 1px rgba(215, 166, 77, 0.18);
}

.contact-card:hover::before,
.contact-card:focus-visible::before {
  opacity: 1;
}

.contact-card-icon {
  position: relative;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--amber), #f1d084);
  color: #0a0908;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.42), 0 8px 20px rgba(215, 166, 77, 0.22);
}

.contact-card-body {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.contact-card-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber);
}

.contact-card-value {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  overflow-wrap: anywhere;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 24px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: #050505;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  padding: 4px 6px;
  border-radius: 6px;
  overflow: hidden;
  transition: opacity 200ms ease, transform 200ms ease;
}

.footer-brand:hover {
  opacity: 0.86;
  transform: translateY(-1px);
}

.footer-logo {
  display: block;
  width: clamp(110px, 12vw, 156px);
  height: auto;
  max-height: 26px;
  object-fit: contain;
  object-position: center;
}

.footer-credit {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 6px 14px 6px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(215, 166, 77, 0.04), rgba(20, 19, 18, 0.6));
  transition: border-color 200ms ease, background 200ms ease;
}

.footer-credit:hover {
  border-color: rgba(215, 166, 77, 0.42);
  background: linear-gradient(135deg, rgba(215, 166, 77, 0.08), rgba(20, 19, 18, 0.7));
}

.footer-credit-label {
  position: relative;
  padding-right: 14px;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-credit-label::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 1px;
  height: 14px;
  background: var(--line);
  transform: translateY(-50%);
}

.footer-credit-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--amber);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: color 200ms ease, transform 200ms ease;
}

.footer-credit-mark {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: rgba(215, 166, 77, 0.14);
  color: var(--amber);
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  transition: background 200ms ease, transform 200ms ease;
}

.footer-credit-name {
  position: relative;
}

.footer-credit-name::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 260ms cubic-bezier(0.65, 0, 0.35, 1);
}

.footer-credit-link:hover,
.footer-credit-link:focus-visible {
  color: var(--ink);
  outline: none;
}

.footer-credit-link:hover .footer-credit-mark,
.footer-credit-link:focus-visible .footer-credit-mark {
  background: var(--amber);
  color: var(--paper);
  transform: rotate(-8deg);
}

.footer-credit-link:hover .footer-credit-name::after,
.footer-credit-link:focus-visible .footer-credit-name::after {
  transform: scaleX(1);
}

.cookie-consent {
  position: fixed;
  right: clamp(16px, 4vw, 40px);
  bottom: clamp(16px, 4vw, 40px);
  left: clamp(16px, 4vw, 40px);
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  max-width: 860px;
  margin-left: auto;
  padding: 18px;
  border: 1px solid rgba(215, 166, 77, 0.28);
  background:
    linear-gradient(135deg, rgba(246, 239, 225, 0.08), rgba(215, 166, 77, 0.08)),
    rgba(5, 5, 5, 0.94);
  box-shadow: var(--shadow), 0 0 34px rgba(215, 166, 77, 0.1);
  backdrop-filter: blur(18px);
}

.cookie-consent[hidden] {
  display: none;
}

.cookie-consent p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.cookie-consent .button {
  flex: 0 0 auto;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 60;
  width: 100%;
  height: 3px;
  background: transparent;
  pointer-events: none;
}

.scroll-progress::before {
  display: block;
  height: 100%;
  width: var(--progress, 0%);
  background: linear-gradient(90deg, var(--amber), var(--teal), #ffd384);
  box-shadow: 0 0 14px rgba(241, 208, 132, 0.55);
  transition: width 80ms linear;
  content: "";
}

.back-to-top {
  position: fixed;
  right: clamp(14px, 3vw, 24px);
  bottom: clamp(14px, 3vw, 24px);
  z-index: 45;
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(215, 166, 77, 0.42);
  background: linear-gradient(135deg, rgba(5, 5, 5, 0.78), rgba(20, 19, 18, 0.92));
  color: var(--amber);
  font-size: 0.95rem;
  font-weight: 800;
  cursor: pointer;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.42);
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px) scale(0.92);
  transition: opacity 220ms ease, transform 220ms cubic-bezier(0.22, 1, 0.36, 1), background 160ms ease, border-color 160ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.back-to-top.is-near-footer {
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px) scale(0.9);
}

.back-to-top:hover {
  border-color: var(--amber);
  background: linear-gradient(135deg, rgba(20, 19, 18, 0.92), rgba(40, 30, 14, 0.95));
  color: #ffd384;
}

.back-to-top:active {
  transform: translateY(0) scale(0.94);
}

.hero {
  --spotlight-x: 50%;
  --spotlight-y: 40%;
}

.hero.has-spotlight::before {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: radial-gradient(circle 320px at var(--spotlight-x) var(--spotlight-y), rgba(241, 208, 132, 0.18), transparent 60%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms ease;
  content: "";
  mix-blend-mode: screen;
}

.hero.has-spotlight.is-spotlight-active::before {
  opacity: 1;
}

.member-card {
  transform: perspective(900px) rotateX(0deg) rotateY(0deg) translateY(0);
  transform-style: preserve-3d;
  will-change: transform;
}

.member-card.is-tilt {
  transition: transform 90ms linear, border-color 280ms ease, box-shadow 280ms ease;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal][data-delay="1"] {
  transition-delay: 120ms;
}

[data-reveal][data-delay="2"] {
  transition-delay: 240ms;
}

[data-reveal][data-delay="3"] {
  transition-delay: 360ms;
}

[data-reveal][data-delay="4"] {
  transition-delay: 480ms;
}

body.hero-out .hero-media,
body.hero-out .h1-line--accent {
  animation-play-state: paused;
}

@keyframes slow-pan {
  from {
    transform: scale(1.035) translate3d(-0.6%, 0, 0);
  }

  to {
    transform: scale(1.055) translate3d(0.8%, -0.8%, 0);
  }
}

@keyframes text-shimmer {
  0% {
    background-position: 100% center;
  }

  100% {
    background-position: -100% center;
  }
}

@media (max-width: 1180px) {
  .hero-strip {
    grid-template-columns: 0.8fr 1.4fr 1.3fr;
    gap: 14px;
  }

  .hero-strip div {
    padding-right: 14px;
  }
}

@media (max-width: 1024px) {
  .members-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

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

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

  .repertoire article {
    border-bottom: 1px solid rgba(24, 21, 19, 0.18);
  }

  .repertoire article:nth-child(2) {
    border-right: 0;
  }
}

@media (max-width: 900px) {
  html {
    scroll-padding-top: 76px;
  }

  .nav-toggle {
    position: relative;
    display: inline-grid;
    width: 46px;
    height: 46px;
    place-items: center;
    padding: 0;
    border: 1px solid rgba(215, 166, 77, 0.32);
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(215, 166, 77, 0.14), rgba(5, 5, 5, 0.78) 70%);
    color: var(--ink);
    cursor: pointer;
    transition: border-color 200ms ease, transform 200ms ease, box-shadow 200ms ease;
  }

  .nav-toggle:hover,
  .nav-toggle:focus-visible {
    border-color: var(--amber);
    box-shadow: 0 0 0 4px rgba(215, 166, 77, 0.12);
    outline: none;
  }

  .nav-toggle:active {
    transform: scale(0.95);
  }

  .nav-toggle-bars {
    position: relative;
    display: block;
    width: 20px;
    height: 14px;
  }

  .nav-toggle-bars span {
    position: absolute;
    left: 0;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
    transition: transform 260ms cubic-bezier(0.65, 0, 0.35, 1),
      width 260ms cubic-bezier(0.65, 0, 0.35, 1),
      opacity 160ms ease, top 260ms cubic-bezier(0.65, 0, 0.35, 1);
  }

  .nav-toggle-bars span:nth-child(1) {
    top: 0;
    width: 14px;
  }

  .nav-toggle-bars span:nth-child(2) {
    top: 6px;
    width: 20px;
  }

  .nav-toggle-bars span:nth-child(3) {
    top: 12px;
    width: 10px;
    left: auto;
    right: 0;
  }

  .nav-toggle[aria-expanded="true"] {
    border-color: var(--amber);
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(1) {
    top: 6px;
    width: 20px;
    transform: rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(2) {
    opacity: 0;
    transform: translateX(-8px);
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(3) {
    top: 6px;
    width: 20px;
    left: 0;
    right: auto;
    transform: rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    top: 76px;
    right: 18px;
    left: 18px;
    display: grid;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    background: rgba(5, 5, 5, 0.96);
    box-shadow: var(--shadow);
    backdrop-filter: blur(20px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    min-height: 48px;
    padding: 12px;
  }

  .site-nav a::after {
    right: 12px;
    left: 12px;
  }

  .site-nav-social {
    display: none;
  }

  .site-header-social {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-left: auto;
    margin-right: 8px;
  }

  .site-header-social .social-icon {
    width: 40px;
    height: 40px;
  }

  .hero {
    min-height: auto;
    padding: 84px 0 32px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .hero::after,
  .hero-overlay {
    display: none;
  }

  .hero-media {
    position: relative;
    inset: auto;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    height: auto;
    aspect-ratio: 7 / 5;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    transform: none;
    animation: none;
  }

  .hero-content {
    padding: 22px clamp(18px, 5vw, 36px) 0;
    max-width: 100%;
  }

  .hero-strip {
    grid-template-columns: 1fr;
    margin: 32px clamp(18px, 5vw, 36px) 0;
    gap: 0;
  }

  .hero-strip div {
    min-height: 0;
    padding: 16px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-strip div:last-child {
    border-bottom: 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
  }

  .intro-grid {
    display: block;
    grid-template-columns: 1fr;
    margin-left: 0;
    font-size: 1.02rem;
    line-height: 1.7;
  }

  .intro-aside,
  .intro-body {
    width: 100%;
    max-width: 100%;
  }

  .intro-aside {
    position: static;
    gap: 12px;
    padding: 0;
    border-left: 0;
    background: none;
    border-radius: 0;
    margin-bottom: 28px;
  }

  .intro-lead {
    font-size: 1rem;
    line-height: 1.55;
  }

  .intro-lineup {
    display: block;
    margin: 4px 0 0;
    padding: 0;
  }

  .intro-lineup li {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 0;
    border-left: 0;
    border-bottom: 1px solid var(--line);
    background: none;
    border-radius: 0;
  }

  .intro-lineup li:last-child {
    border-bottom: 0;
  }

  .intro-lineup-name {
    flex: 1 1 auto;
    min-width: 0;
  }

  .intro-lineup-role {
    flex: 0 0 auto;
    font-size: 0.7rem;
    color: var(--amber);
  }

  .intro-body {
    margin-bottom: 28px;
  }

  .intro-body p + p {
    margin-top: 16px;
  }

  .intro-slogan {
    margin: 0;
    padding: 24px 0 0;
    font-size: clamp(1.25rem, 5vw, 1.6rem);
    line-height: 1.35;
    max-width: 100%;
  }
}

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

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

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

  .repertoire article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(24, 21, 19, 0.18);
  }

  .repertoire article:last-child {
    border-bottom: 0;
  }

  .contact-panel {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

@media (max-width: 560px) {
  html {
    scroll-padding-top: 68px;
  }

  .site-header {
    padding: 14px 16px;
  }

  .brand {
    padding: 4px 6px;
  }

  .brand-logo {
    width: 140px;
    max-height: 28px;
  }

  .hero {
    padding: 72px 0 28px;
  }

  .hero-content {
    padding: 20px 16px 0;
  }

  .hero-strip {
    margin: 28px 16px 0;
  }

  .eyebrow {
    margin-bottom: 10px;
    font-size: 0.7rem;
  }

  h1 {
    font-size: clamp(1.95rem, 8.4vw, 2.6rem);
    line-height: 1.02;
  }

  h2 {
    font-size: clamp(1.9rem, 8.4vw, 2.8rem);
  }

  .hero-lead {
    margin-top: 18px;
    font-size: 0.96rem;
    line-height: 1.55;
  }

  .hero-actions {
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
  }

  .hero-actions .button {
    flex: 1 1 100%;
    min-height: 44px;
    padding: 12px 14px;
    font-size: 0.88rem;
  }

  .hero-strip {
    margin-top: 36px;
  }

  .hero-strip strong {
    font-size: 0.95rem;
  }

  .hero-strip span {
    font-size: 0.85rem;
  }

  .section {
    padding: 68px 16px;
  }

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

  .brand-logo {
    width: 130px;
    max-height: 26px;
  }

  .cookie-consent {
    align-items: stretch;
    flex-direction: column;
  }

  .back-to-top {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }
}

@media (hover: none) {
  .hero.has-spotlight::before {
    display: none;
  }

  .member-card.is-tilt {
    transform: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
    transition-delay: 0ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media (min-width: 1920px) {
  html {
    font-size: 17px;
  }

  .hero {
    --hero-text-max: clamp(720px, 44vw, 900px);
    --hero-pad-x: clamp(72px, 6vw, 140px);
    --hero-gap: 48px;
  }

  .section {
    padding-inline: clamp(72px, 6vw, 140px);
  }
}

@media (min-width: 2400px) {
  html {
    font-size: 18px;
  }

  .hero {
    --hero-text-max: clamp(900px, 42vw, 1100px);
    --hero-gap: 64px;
  }

  .contact-copy {
    max-width: 1100px;
  }

  h1 {
    max-width: 1100px;
  }
}

@media (max-width: 1440px) {
  .members-grid {
    gap: 12px;
  }

  .repertoire article {
    padding: 22px 20px;
  }
}

@media (max-width: 1280px) {
  .hero-strip {
    grid-template-columns: 0.7fr 1.5fr 1.3fr;
  }

  .intro-grid {
    grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.4fr);
    gap: clamp(24px, 4vw, 56px);
  }
}

@media (max-width: 480px) {
  html {
    scroll-padding-top: 64px;
  }

  .site-header {
    padding: 12px 14px;
  }

  .brand-logo {
    width: 118px;
    max-height: 24px;
  }

  .hero {
    padding: 68px 0 24px;
  }

  .hero-content {
    padding: 18px 14px 0;
  }

  .hero-strip {
    margin: 24px 14px 0;
  }

  h1 {
    font-size: clamp(1.45rem, 6vw, 1.95rem);
  }

  .hero-lead {
    font-size: 0.92rem;
  }

  .section {
    padding: 56px 14px;
  }

  .section-heading {
    margin-bottom: 28px;
  }

  .member-card {
    min-height: 320px;
    padding: 18px;
  }

  .member-card h3 {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
  }

  .repertoire article {
    padding: 22px 18px;
    min-height: 160px;
  }

  .contact-panel {
    padding: 22px 18px;
  }

  .contact-card {
    padding: 14px 16px;
    gap: 14px;
  }

  .contact-card-icon {
    width: 42px;
    height: 42px;
  }

  .contact-card-value {
    font-size: 0.98rem;
  }

  .cookie-consent {
    right: 12px;
    bottom: 12px;
    left: 12px;
    padding: 14px;
  }

  .cookie-consent p {
    font-size: 0.88rem;
  }

  .back-to-top {
    right: 12px;
    bottom: 12px;
    width: 34px;
    height: 34px;
    font-size: 0.85rem;
  }
}

@media (max-width: 380px) {
  .site-header {
    padding: 10px 12px;
  }

  .brand-logo {
    width: 104px;
    max-height: 22px;
  }

  .hero {
    padding: 64px 0 20px;
  }

  .hero-content {
    padding: 16px 12px 0;
  }

  .hero-strip {
    margin: 22px 12px 0;
  }

  h1 {
    font-size: clamp(1.3rem, 5.6vw, 1.7rem);
  }

  .h1-line--accent {
    font-size: 0.86em;
  }

  .hero-lead {
    margin-top: 14px;
    font-size: 0.88rem;
  }

  .hero-actions {
    margin-top: 18px;
  }

  .eyebrow {
    font-size: 0.62rem;
    letter-spacing: 0.1em;
  }

  .section {
    padding: 48px 12px;
  }

  h2 {
    font-size: clamp(1.65rem, 8vw, 2.3rem);
  }

  .member-card {
    min-height: 280px;
    padding: 16px;
  }

  .repertoire article {
    padding: 18px 14px;
  }

  .footer-logo {
    width: 100px;
    max-height: 20px;
  }

  .site-footer {
    padding: 18px 12px;
    gap: 12px;
  }

  .footer-credit {
    padding: 5px 12px;
    gap: 10px;
  }

  .footer-credit-label {
    font-size: 0.66rem;
    padding-right: 10px;
  }

  .footer-credit-link {
    font-size: 0.85rem;
  }

  .footer-credit-mark {
    width: 20px;
    height: 20px;
    font-size: 0.58rem;
  }
}

@media (max-height: 520px) and (orientation: landscape) {
  .hero {
    min-height: auto;
    padding: 84px clamp(18px, 4vw, 36px) 36px;
    display: grid;
    align-items: center;
  }

  .hero::after {
    display: block;
  }

  .hero-media {
    position: absolute;
    inset: 0;
    width: auto;
    height: auto;
    aspect-ratio: auto;
    background-position: right center;
    background-size: contain;
    -webkit-mask-image: none;
            mask-image: none;
  }

  .hero-overlay {
    display: block;
    background:
      linear-gradient(90deg, rgba(5, 5, 5, 0.94) 0%, rgba(5, 5, 5, 0.55) 45%, rgba(5, 5, 5, 0.05) 85%, rgba(5, 5, 5, 0) 100%),
      linear-gradient(180deg, rgba(5, 5, 5, 0.18), rgba(5, 5, 5, 0.4) 70%, #050505 100%);
  }

  .hero-content {
    padding: 0;
  }

  .hero-strip {
    margin: 24px 0 0;
  }

  .hero-content {
    max-width: 540px;
  }

  h1 {
    font-size: clamp(1.6rem, 4vw, 2.6rem);
    line-height: 1;
  }

  .hero-lead {
    margin-top: 12px;
    font-size: 0.9rem;
  }

  .hero-actions {
    margin-top: 14px;
  }

  .hero-strip {
    grid-template-columns: 1fr 1fr;
    margin-top: 24px;
    gap: 0;
  }

  .hero-strip div {
    padding: 10px 14px 10px 0;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .hero-strip div:nth-child(even) {
    border-right: 0;
  }

  .section {
    padding: 48px clamp(18px, 4vw, 36px);
  }
}

@media (prefers-contrast: more) {
  :root {
    --muted: #f6efe1;
    --line: rgba(246, 239, 225, 0.5);
  }

  .button-secondary {
    border-color: var(--ink);
    background: transparent;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.6)),
      linear-gradient(180deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.6) 56%, #000 100%);
  }

  .site-nav a {
    color: var(--ink);
  }
}

@media (forced-colors: active) {
  .button,
  .back-to-top,
  .site-nav a,
  .contact-links a {
    forced-color-adjust: none;
  }
}

@supports (padding: max(0px)) {
  .site-header,
  .site-footer {
    padding-left: max(clamp(18px, 5vw, 56px), env(safe-area-inset-left));
    padding-right: max(clamp(18px, 5vw, 56px), env(safe-area-inset-right));
  }

  .hero {
    padding-left: max(clamp(18px, 5vw, 72px), env(safe-area-inset-left));
    padding-right: max(clamp(18px, 5vw, 72px), env(safe-area-inset-right));
  }

  .cookie-consent,
  .back-to-top {
    bottom: max(clamp(16px, 4vw, 40px), env(safe-area-inset-bottom));
  }
}
