:root {
  --ink: #f6f0e6;
  --ink-soft: rgba(246, 240, 230, 0.72);
  --ink-faint: rgba(246, 240, 230, 0.52);
  --night: #090a09;
  --coal: #101311;
  --moss: #1b211d;
  --brass: #d6aa55;
  --brass-deep: #a97928;
  --line: rgba(246, 240, 230, 0.15);
  --line-strong: rgba(246, 240, 230, 0.24);
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(135deg, #070807 0%, #121613 46%, #090a09 100%);
  font-family: "Segoe UI", Aptos, sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(246, 240, 230, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(246, 240, 230, 0.035) 1px, transparent 1px);
  background-size: 86px 86px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 90%);
}

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

:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 3px;
}

.button-primary:focus-visible {
  outline-color: var(--ink);
}

iframe {
  max-width: 100%;
}

[id] {
  scroll-margin-top: 96px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  padding: 24px clamp(18px, 4vw, 56px);
  transition: padding 220ms ease, background 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled {
  padding-top: 13px;
  padding-bottom: 13px;
  border-bottom: 1px solid var(--line);
  background: rgba(9, 10, 9, 0.82);
  backdrop-filter: blur(18px);
}

.menu-toggle {
  display: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.8vw, 32px);
  color: rgba(246, 240, 230, 0.78);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 1px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--brass);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  padding: 132px clamp(18px, 6vw, 84px) 78px;
}

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

.hero-media {
  z-index: -2;
  overflow: hidden;
  transform: none;
}

.hero-media-frame {
  position: absolute;
  inset: 0;
  display: block;
  background-image: url("assets/banner-hero-duet.webp");
  background-position: 68% center;
  background-size: cover;
  filter: saturate(0.9) contrast(1.08);
  transform: scale(1.03);
  transform-origin: center;
  animation: heroKenBurns 22s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes heroKenBurns {
  from {
    transform: scale(1.03) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.14) translate3d(-2.6%, -2%, 0);
  }
}

.hero-shadow {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(4, 5, 4, 1) 0%, rgba(4, 5, 4, 0.92) 32%, rgba(4, 5, 4, 0.34) 54%, rgba(4, 5, 4, 0.16) 74%, rgba(4, 5, 4, 0.42) 100%),
    linear-gradient(0deg, rgba(9, 10, 9, 0.93) 0%, rgba(9, 10, 9, 0) 44%);
}

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

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--brass);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
.section-title {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  max-width: 520px;
  font-size: clamp(46px, 5.3vw, 76px);
}

h1 span {
  display: block;
}

.hero-title-connector {
  width: min(360px, 100%);
  display: grid;
  grid-template-columns: minmax(42px, 1fr) auto minmax(42px, 1fr);
  align-items: center;
  gap: 16px;
  margin: 0.12em 0 0.16em;
  color: var(--brass);
  font-size: 0.26em;
  line-height: 1;
}

.hero-title-connector::before,
.hero-title-connector::after {
  height: 1px;
  content: "";
  background: rgba(214, 170, 85, 0.52);
}

.hero-lead {
  max-width: 500px;
  margin: 26px 0 0;
  color: rgba(246, 240, 230, 0.84);
  font-size: clamp(18px, 1.45vw, 22px);
  line-height: 1.45;
}

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

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  padding: 0 23px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: #11100c;
  background: linear-gradient(135deg, #e5bd68, var(--brass));
  box-shadow: 0 18px 58px rgba(214, 170, 85, 0.18);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #f0ca78;
}

.button-ghost {
  border-color: rgba(246, 240, 230, 0.34);
  color: var(--ink);
  background: rgba(9, 10, 9, 0.26);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: var(--brass);
  color: #f0ca78;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  max-width: 560px;
  margin: 42px 0 0;
  padding: 0;
  border: 1px solid rgba(246, 240, 230, 0.18);
  background: rgba(246, 240, 230, 0.07);
}

.hero-facts div {
  padding: 18px 20px;
  background: rgba(9, 10, 9, 0.26);
}

.hero-facts dt {
  margin: 0 0 5px;
  color: var(--brass);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 0;
  color: rgba(246, 240, 230, 0.8);
  text-wrap: balance;
}

.intro-band {
  position: relative;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background:
    radial-gradient(circle at 18% 8%, rgba(214, 170, 85, 0.12), transparent 24rem),
    linear-gradient(180deg, rgba(16, 19, 17, 0.9), rgba(8, 9, 8, 0.98));
}

.intro-band::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.38;
  background:
    linear-gradient(90deg, transparent, rgba(246, 240, 230, 0.13), transparent),
    linear-gradient(rgba(246, 240, 230, 0.035) 1px, transparent 1px);
  background-size: 100% 100%, 100% 34px;
}

.intro-inner {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.72fr);
  align-items: end;
  gap: clamp(34px, 6vw, 84px);
  padding: clamp(44px, 5.5vw, 66px) clamp(18px, 4vw, 28px);
}

.intro-copy {
  display: grid;
  gap: 18px;
}

.intro-kicker {
  margin: 0;
  color: var(--brass);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.intro-statement {
  max-width: 820px;
  margin: 0;
  color: rgba(246, 240, 230, 0.9);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 3.8vw, 52px);
  font-weight: 500;
  line-height: 1.02;
}

.intro-motifs {
  display: grid;
  border-top: 1px solid rgba(246, 240, 230, 0.18);
  border-bottom: 1px solid rgba(246, 240, 230, 0.18);
}

.intro-motifs span {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px;
  align-items: baseline;
  border-bottom: 1px solid rgba(246, 240, 230, 0.12);
  padding: 17px 0;
  color: rgba(246, 240, 230, 0.78);
  font-size: 15px;
  line-height: 1.35;
}

.intro-motifs span:last-child {
  border-bottom: 0;
}

.intro-motifs b {
  color: var(--brass);
  font-size: 11px;
  letter-spacing: 0.14em;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(82px, 10vw, 136px) clamp(18px, 4vw, 28px);
}

.section-title {
  font-size: clamp(40px, 5.4vw, 76px);
}

.story-grid,
.contact-content {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(330px, 0.78fr);
  gap: clamp(36px, 7vw, 92px);
  align-items: start;
}

.story-copy {
  border-left: 1px solid var(--line);
  padding-left: clamp(24px, 4vw, 46px);
  color: var(--ink-soft);
  font-size: clamp(17px, 1.35vw, 20px);
}

.story-copy p {
  margin: 0;
}

.story-copy p + p {
  margin-top: 24px;
}

.profile-grid {
  display: grid;
  gap: 18px;
  margin-top: clamp(42px, 7vw, 82px);
}

.profile-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: clamp(26px, 5vw, 58px);
  align-items: stretch;
  border-top: 1px solid var(--line);
  padding-top: clamp(28px, 5vw, 52px);
}

.profile-card-alt {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
}

.profile-card-alt .profile-media {
  order: 2;
}

.profile-media {
  align-self: center;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border: 1px solid rgba(246, 240, 230, 0.16);
  background: rgba(246, 240, 230, 0.045);
}

.profile-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.06);
}

.profile-card:first-child .profile-media img {
  object-position: 50% 18%;
}

.profile-card-alt .profile-media img {
  object-position: 42% center;
}

.profile-copy {
  display: grid;
  align-content: center;
  padding-block: 10px;
}

.profile-role {
  margin: 0 0 12px;
  color: var(--brass);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.profile-copy h3 {
  margin: 0 0 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4.2vw, 58px);
  font-weight: 500;
  line-height: 1;
}

.profile-copy p:not(.profile-role) {
  max-width: 650px;
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(16px, 1.25vw, 19px);
}

.profile-copy p + p {
  margin-top: 18px;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 34px;
  align-items: end;
  margin-bottom: 38px;
}

.section-note {
  max-width: 440px;
  margin: 0;
  color: var(--ink-soft);
}

.stage-section {
  padding-top: clamp(62px, 8vw, 110px);
}

.stage-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
  grid-auto-rows: minmax(230px, auto);
  gap: 18px;
}

.stage-photo {
  position: relative;
  min-height: 250px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(246, 240, 230, 0.16);
  background: rgba(246, 240, 230, 0.045);
}

.stage-photo::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 96px;
  content: "";
  pointer-events: none;
  background: linear-gradient(0deg, rgba(9, 10, 9, 0.72), rgba(9, 10, 9, 0));
}

.stage-photo-large {
  grid-row: span 2;
  min-height: 560px;
}

.stage-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.06);
  transition: transform 500ms ease, filter 500ms ease;
}

.stage-photo:hover img {
  transform: scale(1.035);
  filter: saturate(1.02) contrast(1.08);
}

.stage-photo-large img {
  object-position: 50% 42%;
}

.stage-photo:not(.stage-photo-large):first-of-type img {
  object-position: 45% center;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.video-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(246, 240, 230, 0.16);
  background: rgba(246, 240, 230, 0.045);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  transition: transform 180ms ease, border-color 180ms ease;
}

.video-card:hover {
  transform: translateY(-4px);
  border-color: rgba(214, 170, 85, 0.5);
}

.video-shell {
  position: relative;
  aspect-ratio: 16 / 9;
  background:
    linear-gradient(135deg, rgba(214, 170, 85, 0.22), rgba(9, 10, 9, 0.08) 44%),
    linear-gradient(145deg, #2a2d25, #080908);
}

.video-shell iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-loading,
.video-local-warning {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  color: rgba(246, 240, 230, 0.72);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.video-local-warning {
  align-content: center;
  gap: 10px;
  color: var(--ink);
  letter-spacing: 0;
  text-transform: none;
}

.video-local-warning strong {
  color: var(--brass);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.video-local-warning span {
  max-width: 340px;
  color: rgba(246, 240, 230, 0.72);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
}

.video-caption {
  min-height: 112px;
  display: grid;
  gap: 14px;
  align-content: start;
  padding: 22px;
}

.video-caption span {
  color: var(--brass);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.video-caption h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(25px, 2.7vw, 34px);
  font-weight: 500;
  line-height: 1.05;
}

.video-open {
  justify-self: start;
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(214, 170, 85, 0.72);
  padding-bottom: 5px;
}

.video-open:hover {
  color: var(--brass);
}

.concert-live-section {
  padding-top: clamp(62px, 8vw, 110px);
}

.concert-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.concert-shot {
  position: relative;
  aspect-ratio: 3 / 2;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(246, 240, 230, 0.16);
  background: rgba(246, 240, 230, 0.045);
}

.concert-shot::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 96px;
  content: "";
  pointer-events: none;
  background: linear-gradient(0deg, rgba(9, 10, 9, 0.72), rgba(9, 10, 9, 0));
}

.concert-shot img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.06);
  transition: transform 500ms ease, filter 500ms ease;
}

.concert-shot:hover img {
  transform: scale(1.035);
  filter: saturate(1.02) contrast(1.08);
}

.concert-shot-tall {
  grid-row: span 2;
  aspect-ratio: auto;
}

.concert-shot-tall img {
  object-position: 50% 28%;
}

.concert-live-videos {
  margin-top: 18px;
}

.concert-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.74fr);
  gap: clamp(36px, 7vw, 78px);
  padding: clamp(34px, 5.5vw, 64px);
  border: 1px solid rgba(246, 240, 230, 0.18);
  background:
    linear-gradient(135deg, rgba(214, 170, 85, 0.12), rgba(214, 170, 85, 0) 42%),
    rgba(16, 19, 17, 0.88);
}

.concert-list {
  display: grid;
  gap: 16px;
}

.concert-list article {
  padding-top: 17px;
  border-top: 1px solid var(--line);
}

.concert-list h3 {
  margin: 0;
  color: var(--ink);
  font-family: "Segoe UI", Aptos, sans-serif;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.03em;
}

.concert-list p {
  margin: 8px 0 0;
  color: var(--ink-soft);
}

.faq-section {
  padding-top: clamp(74px, 9vw, 120px);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid rgba(246, 240, 230, 0.16);
  background:
    linear-gradient(135deg, rgba(214, 170, 85, 0.08), transparent 42%),
    rgba(16, 19, 17, 0.72);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 22px clamp(20px, 3vw, 30px);
  color: var(--ink);
  font-size: clamp(18px, 1.7vw, 24px);
  font-weight: 800;
}

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

.faq-item summary::after {
  float: right;
  color: var(--brass);
  content: "+";
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  max-width: 780px;
  margin: -6px 0 0;
  padding: 0 clamp(20px, 3vw, 30px) 24px;
  color: var(--ink-soft);
  font-size: 17px;
}

.contact-section {
  padding-top: clamp(70px, 9vw, 126px);
}

.contact-section .section-title {
  max-width: 620px;
  font-size: clamp(40px, 5vw, 68px);
}

.contact-copy {
  max-width: 610px;
  color: var(--ink-soft);
  font-size: clamp(18px, 1.45vw, 21px);
}

.contact-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 620px;
  margin-top: 30px;
}

.contact-points span {
  border: 1px solid rgba(246, 240, 230, 0.16);
  padding: 10px 13px;
  color: rgba(246, 240, 230, 0.76);
  background: rgba(246, 240, 230, 0.045);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-stack {
  display: grid;
  gap: 18px;
}

.contact-card,
.booking-form {
  border: 1px solid rgba(246, 240, 230, 0.16);
  background: rgba(246, 240, 230, 0.045);
}

.contact-card {
  display: grid;
}

.contact-link {
  display: grid;
  gap: 4px;
  padding: 22px 24px;
  border-bottom: 1px solid rgba(246, 240, 230, 0.12);
  transition: background 180ms ease, border-color 180ms ease;
}

.contact-link:hover,
.contact-link:focus-visible {
  background: rgba(214, 170, 85, 0.08);
}

.contact-link span {
  color: var(--brass);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-link strong {
  overflow-wrap: anywhere;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 500;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 20px 24px;
}

.social-links:empty {
  display: none;
}

.footer-social {
  padding: 0;
}

.nav-social {
  padding: 0;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(246, 240, 230, 0.18);
  color: rgba(246, 240, 230, 0.82);
}

.social-links a svg {
  width: 20px;
  height: 20px;
  display: block;
}

.booking-form {
  display: grid;
  gap: 15px;
  padding: clamp(22px, 3.6vw, 30px);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
}

.hidden-field {
  position: absolute;
  left: -9999px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.booking-form label {
  display: grid;
  gap: 8px;
}

.booking-form label span {
  color: var(--brass);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.booking-form input,
.booking-form textarea {
  width: 100%;
  border: 1px solid rgba(246, 240, 230, 0.18);
  border-radius: 4px;
  padding: 13px 14px;
  color: var(--ink);
  background: rgba(9, 10, 9, 0.56);
  font: inherit;
  outline: none;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.booking-form textarea {
  min-height: 124px;
  resize: vertical;
}

.booking-form input::placeholder,
.booking-form textarea::placeholder {
  color: rgba(246, 240, 230, 0.42);
}

.booking-form input:focus,
.booking-form textarea:focus {
  border-color: rgba(214, 170, 85, 0.72);
  background: rgba(9, 10, 9, 0.76);
  box-shadow: 0 0 0 3px rgba(214, 170, 85, 0.1);
}

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

.form-note {
  margin: -3px 0 0;
  color: var(--ink-faint);
  font-size: 13px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
  color: rgba(246, 240, 230, 0.58);
  font-size: 13px;
}

.site-footer > a,
.site-credit a {
  transition: color 180ms ease;
}

.site-footer > a:hover,
.site-credit a:hover {
  color: var(--brass);
}

.site-credit {
  color: rgba(246, 240, 230, 0.42);
  font-size: 12px;
  letter-spacing: 0.03em;
}

.site-credit a {
  color: rgba(246, 240, 230, 0.68);
}

/* Interaction polish: hover/focus parity and micro-interactions */
.button:active {
  transform: translateY(0);
}

.video-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(214, 170, 85, 0.5);
}

.video-open:focus-visible {
  color: var(--brass);
}

.faq-item summary {
  transition: background 180ms ease, color 180ms ease;
}

.faq-item summary:hover {
  background: rgba(214, 170, 85, 0.06);
}

.faq-item summary::after {
  transition: color 180ms ease;
}

.faq-item:hover summary::after {
  color: #f0ca78;
}

.social-links a {
  transition: border-color 180ms ease, color 180ms ease, background 180ms ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  border-color: var(--brass);
  color: var(--ink);
  background: rgba(214, 170, 85, 0.08);
}

/* Smooth FAQ expand where the browser supports it (graceful no-op otherwise) */
@supports (interpolate-size: allow-keywords) {
  :root {
    interpolate-size: allow-keywords;
  }

  .faq-item::details-content {
    overflow: clip;
    block-size: 0;
    opacity: 0;
    transition: block-size 280ms ease, opacity 220ms ease, content-visibility 280ms;
    transition-behavior: allow-discrete;
  }

  .faq-item[open]::details-content {
    block-size: auto;
    opacity: 1;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(6px);
  transition: opacity 900ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 900ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-delay-1 {
  transition-delay: 120ms;
}

.reveal-delay-2 {
  transition-delay: 220ms;
}

.reveal-delay-3 {
  transition-delay: 330ms;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* Kinowy tytuł hero: nazwiska wjeżdżają zza krawędzi maski */
.hero-title-line {
  display: block;
  overflow: hidden;
  padding-block: 0.06em;
  margin-block: -0.06em;
}

.hero-title-line > span {
  display: block;
  transform: translateY(115%);
  transition: transform 1150ms cubic-bezier(0.16, 1, 0.3, 1);
}

#hero-title.is-visible .hero-title-line-1 > span {
  transition-delay: 240ms;
}

#hero-title.is-visible .hero-title-line-2 > span {
  transition-delay: 420ms;
}

#hero-title.is-visible .hero-title-line > span {
  transform: translateY(0);
}

/* Wskaźnik przewijania */
.hero-scroll-cue {
  position: absolute;
  left: clamp(18px, 6vw, 84px);
  bottom: 30px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: rgba(246, 240, 230, 0.6);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  opacity: 0;
  animation: cueIn 900ms ease forwards 1000ms;
  transition: color 200ms ease;
}

.hero-scroll-cue:hover {
  color: var(--brass);
}

.hero-scroll-cue i {
  position: relative;
  display: block;
  width: 1px;
  height: 40px;
  overflow: hidden;
  background: rgba(246, 240, 230, 0.22);
}

.hero-scroll-cue i::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 45%;
  content: "";
  background: var(--brass);
  animation: cueRun 1.9s cubic-bezier(0.7, 0, 0.3, 1) infinite;
}

@keyframes cueRun {
  0% {
    transform: translateY(-105%);
  }
  55%,
  100% {
    transform: translateY(322%);
  }
}

@keyframes cueIn {
  to {
    opacity: 1;
  }
}

/* Zdjęcia "wycierają się" clip-path + settle scale przy wejściu w kadr */
.concert-shot.reveal,
.stage-photo.reveal {
  opacity: 1;
  transform: none;
  filter: none;
}

.concert-shot.reveal img,
.stage-photo.reveal img {
  transform: scale(1.12);
  clip-path: inset(0 0 100% 0);
  transition: transform 1200ms cubic-bezier(0.16, 1, 0.3, 1),
    clip-path 1200ms cubic-bezier(0.16, 1, 0.3, 1), filter 500ms ease;
}

.concert-shot.reveal.is-visible img,
.stage-photo.reveal.is-visible img {
  transform: scale(1);
  clip-path: inset(0 0 0 0);
}

.concert-shot.reveal.is-visible:hover img,
.stage-photo.reveal.is-visible:hover img {
  transform: scale(1.035);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
    filter: none;
  }

  .hero-media-frame {
    animation: none;
    transform: none;
  }

  .hero-title-line > span {
    transform: none;
  }

  .hero-scroll-cue {
    display: none;
  }

  .concert-shot.reveal img,
  .stage-photo.reveal img {
    transform: none;
    clip-path: none;
  }
}

@media (max-width: 960px) {
  .site-header {
    align-items: flex-start;
  }

  .site-nav {
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 8px clamp(12px, 2.4vw, 22px);
  }

  .hero {
    min-height: 96svh;
    padding-top: 136px;
  }

  .hero-media {
    background-position: 65% center;
  }

  .hero-shadow {
    background:
      linear-gradient(90deg, rgba(4, 5, 4, 0.97) 0%, rgba(4, 5, 4, 0.76) 54%, rgba(4, 5, 4, 0.34) 100%),
      linear-gradient(0deg, rgba(9, 10, 9, 0.95) 0%, rgba(9, 10, 9, 0) 54%);
  }

  .intro-inner,
  .stage-grid,
  .profile-card,
  .profile-card-alt,
  .story-grid,
  .concert-panel,
  .contact-content {
    grid-template-columns: 1fr;
  }

  .profile-card-alt .profile-media {
    order: 0;
  }

  .stage-photo-large {
    grid-row: auto;
    min-height: 360px;
  }

  .stage-photo {
    min-height: 280px;
  }

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

  .intro-inner {
    align-items: start;
    gap: 28px;
  }

  .intro-statement {
    max-width: 680px;
  }

  .story-copy {
    border-left: 0;
    padding-left: 0;
  }

  .section-heading {
    display: grid;
    align-items: start;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  body.has-menu-open {
    overflow: hidden;
  }

  .site-header {
    align-items: flex-start;
    padding: 14px 16px;
  }

  .site-header::before {
    position: fixed;
    inset: 0;
    z-index: 20;
    content: "";
    background: rgba(4, 5, 4, 0.62);
    opacity: 0;
    pointer-events: none;
    transition: opacity 220ms ease;
    backdrop-filter: blur(4px);
  }

  .site-header.is-menu-open::before {
    opacity: 1;
  }

  .nav-social {
    position: fixed;
    top: 14px;
    left: 16px;
    z-index: 32;
    gap: 8px;
  }

  .nav-social a {
    background: rgba(9, 10, 9, 0.86);
    box-shadow: 0 16px 44px rgba(0, 0, 0, 0.34);
    backdrop-filter: blur(14px);
  }

  .menu-toggle {
    position: fixed;
    top: 14px;
    right: 16px;
    z-index: 32;
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(246, 240, 230, 0.32);
    padding: 0 14px;
    color: var(--ink);
    background: rgba(9, 10, 9, 0.86);
    font: inherit;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    box-shadow: 0 16px 44px rgba(0, 0, 0, 0.34);
    backdrop-filter: blur(14px);
  }

  .menu-toggle i,
  .menu-toggle i::before,
  .menu-toggle i::after {
    display: block;
    width: 15px;
    height: 1px;
    background: var(--brass);
    content: "";
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .menu-toggle i {
    position: relative;
  }

  .menu-toggle i::before,
  .menu-toggle i::after {
    position: absolute;
    left: 0;
  }

  .menu-toggle i::before {
    top: -5px;
  }

  .menu-toggle i::after {
    top: 5px;
  }

  .site-header.is-menu-open .menu-toggle i {
    background: transparent;
  }

  .site-header.is-menu-open .menu-toggle i::before {
    transform: translateY(5px) rotate(45deg);
  }

  .site-header.is-menu-open .menu-toggle i::after {
    transform: translateY(-5px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    display: grid;
    width: min(86vw, 360px);
    min-height: 100svh;
    align-content: start;
    gap: 0;
    max-width: none;
    z-index: 30;
    border-left: 1px solid rgba(246, 240, 230, 0.16);
    padding: 92px 24px 30px;
    color: var(--ink);
    background:
      linear-gradient(155deg, rgba(214, 170, 85, 0.13), transparent 34%),
      linear-gradient(180deg, rgba(18, 22, 19, 0.98), rgba(7, 8, 7, 0.99));
    box-shadow: -28px 0 90px rgba(0, 0, 0, 0.48);
    counter-reset: nav-item;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transform: translateX(18px);
    transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
    backdrop-filter: blur(22px);
  }

  .site-header.is-menu-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transform: translateX(0);
  }

  .site-nav a {
    counter-increment: nav-item;
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    align-items: baseline;
    column-gap: 12px;
    border-bottom: 1px solid rgba(246, 240, 230, 0.11);
    padding: 16px 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(25px, 8vw, 34px);
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0;
    text-align: left;
    text-transform: none;
  }

  .site-nav a::before {
    content: "0" counter(nav-item);
    color: var(--brass);
    font-family: "Segoe UI", Aptos, sans-serif;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }

  .site-nav a::after {
    display: none;
  }

  .site-nav a:last-child {
    grid-template-columns: 1fr;
    justify-items: center;
    margin-top: 26px;
    border: 1px solid rgba(214, 170, 85, 0.66);
    padding: 15px 16px;
    color: #080908;
    background: var(--brass);
    font-family: "Segoe UI", Aptos, sans-serif;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }

  .site-nav a:last-child::before {
    display: none;
  }

  .hero {
    min-height: auto;
    display: block;
    padding: 0 18px 56px;
    background:
      radial-gradient(circle at 20% 0%, rgba(214, 170, 85, 0.12), transparent 18rem),
      var(--night);
  }

  .hero-media {
    position: relative;
    inset: auto;
    z-index: 0;
    width: calc(100% + 36px);
    height: min(520px, 58svh);
    margin: 0 -18px 30px;
    transform: none;
  }

  .hero-media-frame {
    background-position: 57% center;
  }

  .hero-scroll-cue {
    display: none;
  }

  .hero-shadow {
    display: none;
  }

  .hero-content {
    max-width: none;
  }

  h1 {
    font-size: clamp(45px, 13.4vw, 64px);
  }

  .hero-lead {
    font-size: 18px;
  }

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

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

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

  .concert-shot-tall {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 3 / 4;
  }

  .stage-photo,
  .stage-photo-large {
    min-height: 260px;
  }

  .button {
    width: 100%;
  }

  .hero-facts {
    margin-top: 28px;
  }

  .section {
    padding-inline: 18px;
  }

  .section-title,
  .contact-section .section-title {
    font-size: clamp(38px, 12vw, 52px);
  }

  .concert-panel {
    padding: 28px 22px;
  }

  .contact-link,
  .booking-form {
    padding-inline: 22px;
  }

  .video-open {
    padding-block: 8px 12px;
  }

  .site-footer {
    display: grid;
    gap: 12px;
  }

  .site-footer > a {
    justify-self: start;
    padding: 8px 0;
  }

  .site-credit a {
    display: inline-block;
    padding: 6px 0;
  }
}
