:root {
  --ink: #f8f4ea;
  --muted: #c8c0b0;
  --paper: #11100e;
  --panel: #191715;
  --line: rgba(248, 244, 234, 0.16);
  --amber: #f0b35a;
  --red: #b84a3f;
  --teal: #4aa3a1;
  --violet: #7f5fd3;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
  --glow: 0 0 38px rgba(240, 179, 90, 0.22), 0 18px 80px rgba(74, 163, 161, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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;
}

::selection {
  background: rgba(240, 179, 90, 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(17, 16, 14, 0.88), rgba(17, 16, 14, 0));
  transition: background 180ms ease, border-color 180ms ease, padding 180ms ease;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(240, 179, 90, 0.52);
  background: linear-gradient(135deg, rgba(240, 179, 90, 0.2), rgba(74, 163, 161, 0.08)), rgba(17, 16, 14, 0.64);
  color: var(--amber);
  font-size: 0.82rem;
  letter-spacing: 0;
  box-shadow: var(--glow);
}

.brand-text {
  font-size: 1.05rem;
}

.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 {
  color: var(--ink);
}

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

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 96vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 110px clamp(18px, 5vw, 72px) 118px;
}

.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.png");
  background-position: center;
  background-size: cover;
  transform: scale(1.035);
  will-change: transform;
  animation: slow-pan 18s ease-in-out infinite alternate;
}

.hero-overlay {
  background:
    radial-gradient(circle at 64% 24%, rgba(240, 179, 90, 0.22), transparent 28%),
    radial-gradient(circle at 24% 46%, rgba(74, 163, 161, 0.18), transparent 30%),
    linear-gradient(90deg, rgba(17, 16, 14, 0.96) 0%, rgba(17, 16, 14, 0.72) 34%, rgba(17, 16, 14, 0.2) 72%),
    linear-gradient(180deg, rgba(17, 16, 14, 0.2) 0%, rgba(17, 16, 14, 0.4) 62%, #11100e 100%);
}

.stage-lights {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0.68;
}

.stage-lights span {
  position: absolute;
  top: -16vh;
  width: 18vw;
  min-width: 170px;
  height: 76vh;
  background: linear-gradient(180deg, rgba(240, 179, 90, 0.32), rgba(240, 179, 90, 0));
  clip-path: polygon(45% 0, 55% 0, 100% 100%, 0 100%);
  filter: blur(10px);
  transform-origin: top;
  animation: sweep 7s ease-in-out infinite alternate;
}

.stage-lights span:nth-child(1) {
  left: 38%;
}

.stage-lights span:nth-child(2) {
  left: 54%;
  background: linear-gradient(180deg, rgba(74, 163, 161, 0.3), rgba(74, 163, 161, 0));
  animation-delay: -2s;
}

.stage-lights span:nth-child(3) {
  left: 70%;
  animation-delay: -4s;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  margin: 0;
  max-width: 850px;
  font-size: clamp(3.2rem, 8vw, 7.8rem);
  line-height: 0.92;
  letter-spacing: -0.01em;
  text-wrap: balance;
  text-shadow: 0 18px 60px rgba(0, 0, 0, 0.42);
  display: flex;
  flex-direction: column;
  gap: 0.12em;
}

.h1-line {
  display: block;
}

.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;
  letter-spacing: -0.01em;
  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;
}

.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 {
  background: linear-gradient(135deg, var(--amber), #ffd384);
  color: #17110b;
}

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

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

.sound-wave {
  position: absolute;
  right: clamp(18px, 6vw, 90px);
  bottom: 158px;
  z-index: 3;
  display: flex;
  align-items: end;
  gap: 8px;
  height: 84px;
  padding: 12px 14px;
  border: 1px solid rgba(248, 244, 234, 0.18);
  background: rgba(17, 16, 14, 0.42);
  backdrop-filter: blur(12px);
}

.sound-wave span {
  display: block;
  width: 6px;
  height: 34px;
  background: linear-gradient(180deg, var(--amber), var(--teal));
  transform-origin: bottom;
  animation: equalize 900ms ease-in-out infinite alternate;
}

.sound-wave span:nth-child(2),
.sound-wave span:nth-child(7) {
  animation-delay: -260ms;
}

.sound-wave span:nth-child(3),
.sound-wave span:nth-child(8) {
  animation-delay: -520ms;
}

.sound-wave span:nth-child(4),
.sound-wave span:nth-child(9) {
  animation-delay: -120ms;
}

.sound-wave span:nth-child(5) {
  animation-delay: -700ms;
}

.hero-card {
  position: absolute;
  right: clamp(18px, 5vw, 72px);
  bottom: 276px;
  z-index: 3;
  width: min(340px, calc(100vw - 36px));
  padding: 20px;
  border: 1px solid rgba(248, 244, 234, 0.18);
  background: linear-gradient(135deg, rgba(248, 244, 234, 0.12), rgba(74, 163, 161, 0.1));
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  animation: float 5s ease-in-out infinite;
}

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

.hero-card strong {
  display: block;
  margin-top: 8px;
  font-size: 1.35rem;
  line-height: 1.08;
}

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

.hero-strip {
  position: absolute;
  right: clamp(18px, 5vw, 72px);
  bottom: 28px;
  left: clamp(18px, 5vw, 72px);
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

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

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

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

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

.hero-strip span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.9rem;
}

.section {
  position: relative;
  padding: clamp(74px, 10vw, 132px) clamp(18px, 5vw, 72px);
}

.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: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 6vw, 86px);
  margin-left: min(28vw, 330px);
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.7;
}

.members-section {
  overflow: hidden;
  background: linear-gradient(180deg, rgba(17, 16, 14, 0), rgba(184, 74, 63, 0.1)), #121514;
}

.members-section::before {
  position: absolute;
  inset: 18% -12% auto auto;
  width: 54vw;
  height: 54vw;
  max-width: 760px;
  max-height: 760px;
  border: 1px solid rgba(240, 179, 90, 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: 360px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  overflow: hidden;
  padding: 24px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(17, 16, 14, 0) 0%, rgba(17, 16, 14, 0.88) 72%), var(--member-image);
  background-size: 190% auto;
  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(240, 179, 90, 0.25), transparent 44%, rgba(74, 163, 161, 0.22));
  content: "";
  opacity: 0.6;
  transition: opacity 280ms ease;
}

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

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

.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: url("assets/olaboga-vocal.png");
  background-position: 56% center;
}

.member-guitar {
  --member-image: url("assets/olaboga-guitar.png");
  background-position: 88% center;
}

.member-bass {
  --member-image: url("assets/olaboga-bass.png");
  background-position: 22% center;
}

.member-drums {
  --member-image: url("assets/olaboga-drums.png");
  background-position: 72% center;
}

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

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

.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;
}

.shows-section {
  background: radial-gradient(circle at 82% 18%, rgba(240, 179, 90, 0.16), transparent 32%), linear-gradient(135deg, rgba(74, 163, 161, 0.16), transparent 36%), var(--panel);
}

.shows-list {
  border-top: 1px solid var(--line);
}

.show-row {
  display: grid;
  grid-template-columns: 80px minmax(180px, 0.42fr) minmax(0, 1fr);
  gap: 28px;
  align-items: baseline;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  transition: border-color 200ms ease, transform 200ms ease;
}

.show-row:hover {
  border-color: rgba(240, 179, 90, 0.34);
  transform: translateX(8px);
}

.show-row span {
  color: var(--teal);
  font-weight: 800;
  font-size: 1.1rem;
}

.show-row p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.gallery-section {
  padding-bottom: clamp(60px, 8vw, 104px);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.75fr 0.7fr;
  grid-template-rows: 230px 230px 180px;
  gap: 14px;
}

.gallery-tile {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  box-shadow: var(--shadow);
  filter: saturate(1.08);
}

.gallery-tile::before {
  position: absolute;
  inset: 0;
  background-image: var(--gallery-image);
  background-size: cover;
  background-position: center;
  content: "";
  transition: transform 600ms ease;
  z-index: 0;
}

.gallery-tile::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(240, 179, 90, 0.12), transparent 45%, rgba(74, 163, 161, 0.18));
  content: "";
  transition: opacity 200ms ease;
}

.gallery-tile:hover::before {
  transform: scale(1.06);
}

.gallery-tile:hover::after {
  opacity: 0.35;
}

.tile-one {
  --gallery-image: url("assets/olaboga-vocal.png");
  grid-row: span 3;
}

.tile-one::before {
  background-position: 58% center;
}

.tile-two {
  --gallery-image: url("assets/olaboga-guitar.png");
  grid-column: span 2;
}

.tile-two::before {
  background-position: 54% center;
}

.tile-three {
  --gallery-image: url("assets/olaboga-bass.png");
}

.tile-three::before {
  background-position: 46% center;
}

.tile-four {
  --gallery-image: url("assets/olaboga-drums.png");
  grid-column: span 2;
  grid-row: span 2;
}

.tile-four::before {
  background-position: center;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: clamp(30px, 7vw, 96px);
  background: radial-gradient(circle at 22% 22%, rgba(74, 163, 161, 0.22), transparent 28%), linear-gradient(135deg, rgba(127, 95, 211, 0.16), transparent 36%), #0d1818;
}

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

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

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.contact-links a {
  border-bottom: 1px solid rgba(240, 179, 90, 0.58);
  color: var(--amber);
  font-weight: 800;
  transition: border-color 160ms ease, color 160ms ease;
}

.contact-links a:hover {
  border-color: var(--amber);
  color: #ffd384;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(248, 244, 234, 0.09), rgba(248, 244, 234, 0.045));
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(248, 244, 234, 0.2);
  background: rgba(17, 16, 14, 0.72);
  color: var(--ink);
  font: inherit;
  padding: 13px 14px;
  outline: 0;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

input::placeholder,
textarea::placeholder {
  color: rgba(200, 192, 176, 0.58);
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 4px rgba(240, 179, 90, 0.12);
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--amber);
  font-weight: 700;
}

.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: #090807;
}

.site-footer span:first-child {
  color: var(--ink);
  font-weight: 800;
}

.site-footer nav a {
  color: var(--muted);
  font-size: 0.9rem;
  transition: color 160ms ease;
}

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

[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;
}

@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 sweep {
  from {
    transform: rotate(-16deg) translateX(-2vw);
  }

  to {
    transform: rotate(12deg) translateX(2vw);
  }
}

@keyframes equalize {
  from {
    transform: scaleY(0.42);
  }

  to {
    transform: scaleY(1.28);
  }
}

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

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

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@media (max-width: 1060px) {
  .hero-card {
    display: none;
  }
}

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

  .nav-toggle {
    display: inline-grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid var(--line);
    background: rgba(17, 16, 14, 0.68);
    color: var(--ink);
    cursor: pointer;
  }

  .nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: currentColor;
    transition: transform 160ms ease;
  }

  .nav-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(5px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-5px) 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(17, 16, 14, 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;
  }

  .hero {
    min-height: 100vh;
    padding-bottom: 220px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(17, 16, 14, 0.94), rgba(17, 16, 14, 0.54)),
      linear-gradient(180deg, rgba(17, 16, 14, 0.16), rgba(17, 16, 14, 0.42) 58%, #11100e 100%);
  }

  .sound-wave {
    right: 18px;
    bottom: 150px;
    height: 68px;
  }

  .hero-strip {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

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

  .intro-grid {
    grid-template-columns: 1fr;
    margin-left: 0;
    gap: 20px;
  }

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

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

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

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

  .show-row {
    grid-template-columns: 54px 1fr;
  }

  .show-row p {
    grid-column: 2;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 320px 220px 240px 260px;
  }

  .tile-one,
  .tile-two,
  .tile-three,
  .tile-four {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 720px) {
  .hero-strip {
    grid-template-columns: 1fr;
  }

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

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

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

  .repertoire article {
    min-height: auto;
    border-right: 0;
  }
}

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

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

  .hero {
    min-height: 100svh;
    padding: 98px 16px 280px;
  }

  h1 {
    font-size: clamp(2.8rem, 14vw, 4.2rem);
  }

  h2 {
    font-size: clamp(1.9rem, 9vw, 3rem);
  }

  .hero-lead {
    margin-top: 22px;
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-strip {
    right: 16px;
    bottom: 18px;
    left: 16px;
  }

  .sound-wave {
    display: none;
  }

  .section {
    padding: 68px 16px;
  }

  .gallery-grid {
    grid-template-rows: 260px 190px 210px 230px;
  }

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

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

  .repertoire article {
    min-height: 190px;
  }

  .contact-form {
    padding: 20px;
  }

  .brand-text {
    font-size: 1rem;
  }

  .show-row {
    gap: 16px;
  }
}

@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;
  }
}
