@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@1,600;1,700&family=Sora:wght@400;500;600;700;800&family=Space+Grotesk:wght@400;500;700&display=swap");

:root {
  --bg: #09070a;
  --surface: rgba(27, 20, 22, 0.58);
  --surface-strong: rgba(22, 16, 18, 0.84);
  --text: #fbf2e7;
  --muted: rgba(240, 221, 201, 0.76);
  --line: rgba(255, 208, 166, 0.16);
  --accent: #ff9b6b;
  --accent-cool: #9fd8e8;
  --accent-mint: #f2d8a7;
  --accent-soft: rgba(255, 179, 125, 0.18);
  --shadow: 0 32px 90px rgba(0, 0, 0, 0.38);
  --max-width: 1280px;
  --radius: 28px;
  --radius-tight: 18px;
  --caps-font: "Sora", sans-serif;
  --caps-size: 0.78rem;
  --caps-spacing: 0.22em;
  --caps-weight: 400;
  --caps-color: rgba(241, 224, 204, 0.8);
  --pointer-x: 0px;
  --pointer-y: 0px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  font-family: "Space Grotesk", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 14% 16%, rgba(255, 174, 122, 0.22), transparent 24%),
    radial-gradient(circle at 82% 12%, rgba(255, 138, 99, 0.16), transparent 22%),
    radial-gradient(circle at 64% 72%, rgba(159, 216, 232, 0.08), transparent 24%),
    linear-gradient(180deg, #070508 0%, #0b0810 40%, #110b10 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(transparent 0%, rgba(255, 255, 255, 0.015) 49%, transparent 100%),
    repeating-linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.012) 0,
      rgba(255, 255, 255, 0.012) 1px,
      transparent 1px,
      transparent 7px
    );
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0.28;
}

body::after {
  content: "";
  position: fixed;
  inset: -10% -8%;
  background:
    radial-gradient(circle at 12% 22%, rgba(255, 174, 122, 0.14), transparent 20%),
    radial-gradient(circle at 84% 18%, rgba(255, 138, 99, 0.13), transparent 22%),
    radial-gradient(circle at 56% 84%, rgba(159, 216, 232, 0.07), transparent 22%);
  filter: blur(48px);
  pointer-events: none;
  z-index: -1;
}

main {
  position: relative;
  isolation: isolate;
}

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

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

button {
  font: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: rgba(16, 11, 14, 0.56);
  border-bottom: 1px solid rgba(255, 208, 166, 0.1);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--caps-font);
  font-weight: 500;
  letter-spacing: 0.16em;
  font-size: 0.8rem;
  text-transform: uppercase;
}

.brand-mark {
  position: relative;
  width: 28px;
  height: 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, #f5c987, var(--accent-mint) 42%, var(--accent) 100%);
  box-shadow: 0 0 24px rgba(255, 166, 107, 0.22);
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: inherit;
  background: rgba(11, 7, 9, 0.56);
}

.brand-name {
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  font-family: var(--caps-font);
  font-size: var(--caps-size);
  font-weight: var(--caps-weight);
  color: var(--caps-color);
  text-transform: uppercase;
  letter-spacing: var(--caps-spacing);
}

.site-nav a {
  position: relative;
  padding-bottom: 0.18rem;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.15rem;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--accent);
  transition: transform 220ms ease;
}

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

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0;
  background: rgba(9, 9, 9, 0.9);
  color: var(--text);
  align-items: center;
  justify-content: center;
  gap: 0.28rem;
  flex-direction: column;
}

.nav-toggle span {
  width: 18px;
  height: 1px;
  background: currentColor;
  transition: transform 220ms ease, opacity 220ms ease;
}

.hero {
  position: relative;
  min-height: 100svh;
  padding: 7.5rem 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: clip;
}

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

.hero-media {
  background:
    radial-gradient(circle at 16% 74%, rgba(16, 9, 8, 0.5) 0%, rgba(16, 9, 8, 0.24) 24%, transparent 46%),
    radial-gradient(circle at 24% 34%, rgba(255, 196, 135, 0.1), transparent 26%),
    linear-gradient(90deg, rgba(16, 9, 8, 0.58) 0%, rgba(16, 10, 10, 0.36) 18%, rgba(16, 10, 10, 0.08) 40%, rgba(13, 10, 12, 0.18) 100%),
    url("IMG_1001.jpeg") 70% 10% / cover no-repeat;
  transform: translate3d(calc(var(--pointer-x) * -0.4), calc(var(--pointer-y) * -0.4), 0) scale(1.04);
  transition: transform 220ms ease-out;
}

.hero-shadow {
  background:
    radial-gradient(circle at 16% 18%, rgba(255, 192, 126, 0.24), transparent 24%),
    radial-gradient(circle at 34% 32%, rgba(255, 138, 99, 0.14), transparent 24%),
    radial-gradient(circle at 82% 14%, rgba(255, 242, 221, 0.12), transparent 18%),
    linear-gradient(180deg, rgba(10, 8, 9, 0.02) 0%, rgba(10, 8, 9, 0.16) 56%, rgba(10, 8, 9, 0.9) 100%);
}

.hero-grid,
.hero-footer,
.section-head,
.story-grid,
.signal-list,
.music-layout,
.showreel-lead,
.showreel-grid,
.show-list,
.gallery-grid,
.contact-shell {
  width: min(100%, var(--max-width));
  margin: 0 auto;
}

.hero-grid {
  width: min(100%, 1400px);
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(300px, 0.7fr) minmax(420px, 1.3fr);
  align-items: stretch;
  gap: clamp(2rem, 4vw, 4.5rem);
  flex: 1;
}

.hero-copy {
  position: relative;
  max-width: 40rem;
  align-self: end;
  padding-right: 1rem;
  padding-bottom: clamp(0.5rem, 1.8vh, 1.2rem);
}

.hero-copy::before {
  content: "";
  position: absolute;
  top: 1rem;
  left: -6.5rem;
  width: 19rem;
  height: 19rem;
  background:
    radial-gradient(circle, rgba(255, 194, 128, 0.12) 0%, rgba(255, 138, 99, 0.08) 34%, transparent 70%);
  filter: blur(28px);
  z-index: -1;
}

.hero-copy::after {
  content: "";
  position: absolute;
  inset: -1rem 4rem -1rem -1.25rem;
  background: linear-gradient(90deg, rgba(11, 8, 10, 0.42), rgba(11, 8, 10, 0.12) 72%, transparent 100%);
  border-radius: 32px;
  z-index: -2;
}

.eyebrow {
  margin: 0 0 1rem;
  font-family: var(--caps-font);
  font-weight: var(--caps-weight);
  color: var(--caps-color);
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.hero h1,
.section-head h2,
.track-head h3,
.contact-copy h2,
.lineup-head h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  letter-spacing: -0.045em;
}

.hero h1 {
  display: block;
  margin-top: 0.7rem;
  max-width: none;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(4.8rem, 7vw, 7.4rem);
  font-style: italic;
  font-weight: 600;
  line-height: 0.84;
  letter-spacing: -0.055em;
  text-transform: none;
  text-shadow: 0 10px 32px rgba(0, 0, 0, 0.18);
  white-space: nowrap;
}

.hero h1 span {
  display: inline-block;
  color: transparent;
  background: linear-gradient(90deg, rgba(251, 242, 231, 0.98) 0%, rgba(255, 228, 188, 0.97) 52%, rgba(255, 173, 119, 0.92) 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-tagline {
  width: min(100%, 24rem);
  margin: 1.35rem 0 0;
  font-size: clamp(0.88rem, 1.15vw, 1rem);
  line-height: 1.68;
  color: rgba(251, 239, 224, 0.88);
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.36);
}

.hero-photo-mobile {
  display: none;
}

.hero-actions,
.contact-actions,
.stream-links,
.social-links {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.hero-actions {
  margin-top: 2rem;
}

.button,
.stream-links a,
.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.82rem 1.2rem;
  border-radius: 999px;
  font-family: var(--caps-font);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.73rem;
  border: 1px solid rgba(255, 208, 166, 0.18);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background 220ms ease,
    color 220ms ease,
    box-shadow 220ms ease;
}

.button:hover,
.button:focus-visible,
.stream-links a:hover,
.stream-links a:focus-visible,
.social-links a:hover,
.social-links a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 208, 166, 0.34);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.button-primary {
  background: linear-gradient(135deg, #ffd5a1 0%, #ffc488 44%, #ff9b6b 100%);
  color: #1b0e09;
  border-color: transparent;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: linear-gradient(135deg, #ffddb4 0%, #ffc98d 44%, #ffa67b 100%);
}

.button-secondary,
.stream-links a,
.social-links a {
  background: rgba(26, 18, 20, 0.52);
  backdrop-filter: blur(14px);
}

.hero-panel,
.story-visual,
.contact-meta {
  background:
    linear-gradient(180deg, rgba(255, 246, 233, 0.06), rgba(255, 246, 233, 0.018)),
    rgba(24, 16, 19, 0.62);
  border: 1px solid rgba(255, 208, 166, 0.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.hero-panel {
  position: relative;
  padding: 1.6rem;
  transform: translate3d(calc(var(--pointer-x) * 0.22), calc(var(--pointer-y) * 0.22), 0);
  transition: transform 220ms ease-out;
}

.hero-panel::before {
  content: "";
  position: absolute;
  left: 1.5rem;
  right: 1.5rem;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 214, 156, 0.82), rgba(255, 138, 99, 0.72), transparent);
}

.panel-label,
.panel-meta {
  margin: 0;
  font-family: var(--caps-font);
  font-weight: var(--caps-weight);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  color: var(--caps-color);
}

.hero-panel h2 {
  margin: 0.75rem 0 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.9rem, 3.8vw, 3.15rem);
  letter-spacing: -0.055em;
  font-weight: 700;
}

.panel-meta {
  margin-top: 0.3rem;
}

.panel-copy {
  margin: 1rem 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.text-link {
  display: inline-block;
  margin-top: 1.2rem;
  color: var(--text);
  font-family: var(--caps-font);
  font-weight: var(--caps-weight);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.74rem;
  border-bottom: 1px solid rgba(255, 214, 156, 0.56);
  padding-bottom: 0.22rem;
}

.hero-footer {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 2rem;
}

.hero-footer div {
  border-radius: 20px;
  border: 1px solid rgba(255, 208, 166, 0.12);
  padding: 1rem 1.15rem;
  background: rgba(24, 17, 20, 0.48);
  backdrop-filter: blur(16px);
}

.hero-footer span,
.contact-line span {
  display: block;
  font-family: var(--caps-font);
  font-weight: var(--caps-weight);
  color: var(--caps-color);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
}

.hero-footer strong,
.contact-line strong {
  display: block;
  margin-top: 0.5rem;
  font-size: 1rem;
  font-weight: 500;
}

.range-band {
  position: relative;
  padding: 2.4rem 1.5rem 0;
}

.range-shell {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding: 2rem 0 0;
  border-top: 1px solid rgba(255, 214, 156, 0.18);
}

.range-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.64fr) minmax(280px, 0.36fr);
  gap: 2rem;
  align-items: start;
}

.range-grid h2 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.range-copy {
  max-width: 28rem;
  justify-self: end;
}

.section {
  position: relative;
  padding: 6.5rem 1.5rem;
}

.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1.5rem;
  right: 1.5rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 214, 156, 0.24) 16%, rgba(255, 138, 99, 0.22) 52%, rgba(255, 214, 156, 0.2) 84%, transparent);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.34fr) minmax(0, 0.66fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: 2.5rem;
}

.story .section-head {
  grid-template-columns: 1fr;
  gap: 0;
  margin-bottom: 0.9rem;
}

.section-head h2,
.track-head h3,
.contact-copy h2 {
  font-size: clamp(2.5rem, 6.6vw, 4.7rem);
  line-height: 1;
  text-wrap: balance;
}

.section-head-compact {
  grid-template-columns: 1fr;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

#showreel-heading:empty {
  display: none;
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(220px, 0.78fr);
  gap: 2.2rem;
  align-items: start;
}

.story-copy {
  max-width: 48rem;
}

.story-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.78;
  font-size: 1.04rem;
}

.story-copy p + p {
  margin-top: 1rem;
}

.story-visual {
  position: relative;
  display: flex;
  justify-self: end;
  align-self: start;
  margin: 0;
  max-width: 20rem;
  margin-top: -0.2rem;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.story-quote {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(255, 208, 166, 0.14);
  border-left: 2px solid #ffcf92;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(25, 16, 18, 0.24), rgba(25, 16, 18, 0.68));
  backdrop-filter: blur(10px);
  z-index: 2;
}

.story-quote p {
  margin: 0;
  font-size: clamp(0.94rem, 1.35vw, 1.08rem);
  line-height: 1.6;
  color: rgba(244, 230, 212, 0.88);
}

.signal-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  list-style: none;
  padding: 0;
  margin-top: 2.4rem;
}

.signal-list li {
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 208, 166, 0.12);
}

.lineup-block {
  display: grid;
  grid-template-columns: minmax(0, 0.3fr) minmax(0, 0.7fr);
  gap: 2.1rem;
  align-items: start;
  width: min(100%, var(--max-width));
  margin: 2.75rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 208, 166, 0.12);
}

.lineup-head h3 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.02;
}

.member-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.lineup-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
  gap: 2.2rem;
  align-items: center;
}

.lineup-block > .lineup-layout:only-child {
  grid-column: 1 / -1;
}

.member-list li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: end;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.member-name {
  font-family: "Sora", sans-serif;
  font-size: clamp(1.35rem, 2.4vw, 1.95rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.member-role {
  color: rgba(222, 232, 244, 0.72);
  text-transform: none;
  letter-spacing: 0.03em;
  font-size: 0.92rem;
  text-align: right;
}

.lineup-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  min-height: 0;
  align-items: stretch;
  width: min(100%, 720px);
  justify-self: stretch;
  align-self: center;
}

.lineup-shot {
  position: relative;
  min-height: 0;
  aspect-ratio: 2.25 / 1.08;
  overflow: hidden;
  border: 1px solid rgba(255, 208, 166, 0.12);
  border-radius: 24px;
  background: rgba(9, 7, 10, 0.92);
  box-shadow: var(--shadow);
}

.lineup-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 46%;
  padding: 0;
  background: rgba(9, 7, 10, 0.92);
  filter: saturate(0.96) contrast(1.05) brightness(0.82);
  transition: transform 320ms ease, filter 320ms ease;
}

.lineup-shot:hover img,
.lineup-shot:focus-within img {
  transform: scale(1.015);
  filter: saturate(1) contrast(1.06) brightness(0.86);
}

.signal-label {
  display: block;
  font-family: var(--caps-font);
  font-weight: var(--caps-weight);
  color: var(--caps-color);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.signal-value {
  display: block;
  margin-top: 0.55rem;
  font-family: "Sora", sans-serif;
  font-size: 1.7rem;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.music-layout {
  display: grid;
  grid-template-columns: minmax(420px, 1.08fr) minmax(0, 0.92fr);
  gap: 4.5rem;
  align-items: center;
}

.music .section-head {
  grid-template-columns: minmax(0, 0.26fr) minmax(0, 0.74fr);
  align-items: start;
  margin-bottom: 1.1rem;
}

.music .section-head h2 {
  font-size: clamp(1.4rem, 2.3vw, 1.95rem);
  line-height: 1.08;
  max-width: 16ch;
}

.record-stack {
  position: relative;
  width: min(100%, 840px);
  margin: 0 auto;
  aspect-ratio: 1.34 / 0.78;
}

.record-stack::before {
  content: "";
  position: absolute;
  inset: 14% 6% 8% 0;
  background: radial-gradient(circle, rgba(255, 199, 133, 0.2) 0%, rgba(255, 138, 99, 0.12) 36%, transparent 72%);
  filter: blur(26px);
}

.record-disc {
  position: absolute;
  top: 7%;
  right: -4%;
  width: 78%;
  height: 78%;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, #171015 0 12%, #09070a 12% 18%, #3d2018 18% 19%, #09070a 19% 23%, #271714 23% 24%, #09070a 24% 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 208, 166, 0.08), 0 20px 40px rgba(0, 0, 0, 0.32);
  animation: spin 20s linear infinite;
}

.record-disc::after {
  content: "";
  position: absolute;
  inset: 43%;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffd8a6, var(--accent));
  box-shadow: 0 0 26px rgba(255, 177, 122, 0.28);
}

.record-sleeve {
  position: absolute;
  inset: 0 auto auto 0;
  width: 96%;
  height: 92%;
  border: 1px solid rgba(255, 208, 166, 0.12);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.record-sleeve::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.14), transparent 35%, transparent 100%);
  pointer-events: none;
}

.record-sleeve img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% 24%;
  background: #050505;
}

.track-panel {
  display: grid;
  gap: 1.6rem;
  padding: 1.8rem 2rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 208, 166, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 246, 233, 0.04), rgba(255, 246, 233, 0.012)),
    rgba(25, 17, 20, 0.38);
  backdrop-filter: blur(18px);
}

.track-head h3 {
  font-size: clamp(2rem, 4.6vw, 3.3rem);
}

.track-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.track-list li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.track-number {
  font-family: "Sora", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent);
}

.track-name {
  font-size: 1rem;
}

.track-length {
  color: var(--muted);
  font-size: 0.94rem;
}

.showreel-lead {
  margin: 0 0 1.6rem;
  max-width: 44rem;
  color: var(--muted);
  line-height: 1.72;
  font-size: 1.02rem;
}

.showreel-lead:empty {
  display: none;
}

#showreel-heading:empty {
  display: none;
}

.showreel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  align-items: start;
}

.showreel-card {
  display: grid;
  gap: 0.9rem;
  padding: 1rem;
  border-radius: 28px;
  border: 1px solid rgba(255, 208, 166, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 246, 233, 0.04), rgba(255, 246, 233, 0.015)),
    rgba(24, 16, 19, 0.44);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.showreel-card.is-featured {
  grid-column: span 2;
}

.showreel-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 22px;
  background:
    radial-gradient(circle at 24% 12%, rgba(255, 189, 125, 0.16), transparent 28%),
    rgba(8, 7, 10, 0.92);
}

.showreel-card.is-featured .showreel-frame {
  aspect-ratio: 16 / 8.6;
}

.showreel-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.showreel-poster {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  gap: 0.9rem;
  padding: 1.2rem;
  border: 0;
  border-radius: inherit;
  color: var(--text);
  cursor: pointer;
  background-color: #0a0910;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  transition: transform 220ms ease, filter 220ms ease;
}

.showreel-poster::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 201, 139, 0.16), transparent 20%),
    linear-gradient(180deg, rgba(8, 7, 10, 0.12) 0%, rgba(8, 7, 10, 0.52) 100%);
}

.showreel-poster:hover,
.showreel-poster:focus-visible {
  transform: scale(1.01);
  filter: saturate(1.03) brightness(1.04);
}

.showreel-play,
.showreel-watch {
  position: relative;
  z-index: 1;
}

.showreel-play {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(255, 219, 177, 0.96), rgba(255, 169, 115, 0.94));
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.3);
}

.showreel-play::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 53%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 19px solid #1b0e09;
}

.showreel-watch {
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  background: rgba(11, 8, 10, 0.58);
  border: 1px solid rgba(255, 208, 166, 0.16);
  font-family: var(--caps-font);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.68rem;
}

.showreel-meta {
  display: grid;
  gap: 0.4rem;
}

.showreel-note {
  margin: 0;
  font-family: var(--caps-font);
  font-weight: var(--caps-weight);
  color: var(--caps-color);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
}

.showreel-meta h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  font-weight: 700;
  letter-spacing: -0.045em;
}

.show-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  width: min(100%, 56rem);
  border-top: 1px solid var(--line);
}

.show-row {
  position: relative;
  display: grid;
  grid-template-columns: minmax(110px, 160px) minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  border-radius: 20px;
  transition: transform 220ms ease, background 220ms ease;
}

.show-row::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 90, 54, 0.12), transparent 42%);
  opacity: 0;
  transition: opacity 220ms ease;
}

.show-row:hover,
.show-row:focus-within {
  transform: translateX(0.35rem);
  background: rgba(27, 18, 20, 0.32);
}

.show-row:hover::before,
.show-row:focus-within::before {
  opacity: 1;
}

.show-date,
.show-venue {
  position: relative;
  z-index: 1;
}

.show-date {
  font-family: "Sora", sans-serif;
  font-size: 1.65rem;
  font-weight: 700;
  letter-spacing: -0.05em;
}

.show-city {
  position: relative;
  z-index: 1;
  font-size: 1.1rem;
  font-weight: 500;
}

.show-note {
  position: relative;
  z-index: 1;
  font-family: var(--caps-font);
  font-weight: var(--caps-weight);
  color: var(--caps-color);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 1rem;
}

.gallery-panel {
  position: relative;
  grid-column: span 4;
  min-height: 360px;
  display: flex;
  align-items: end;
  padding: 1.5rem;
  border: 1px solid rgba(255, 208, 166, 0.12);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.gallery-panel::before,
.gallery-panel::after {
  content: "";
  position: absolute;
  inset: 0;
}

.gallery-panel::before {
  background:
    linear-gradient(180deg, rgba(4, 4, 4, 0.02) 0%, rgba(4, 4, 4, 0.12) 100%);
  z-index: 1;
}

.gallery-panel::after {
  background: linear-gradient(135deg, rgba(255, 232, 198, 0.08), transparent 34%);
  opacity: 0;
  z-index: 2;
}

.gallery-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.02) contrast(1.02) brightness(0.94);
  transform: scale(1.01);
  transition: transform 320ms ease, filter 320ms ease;
}

.gallery-panel:nth-child(1),
.gallery-panel:nth-child(6) {
  grid-column: 1 / -1;
}

.gallery-panel:nth-child(2) {
  grid-column: span 7;
}

.gallery-panel:nth-child(3) {
  grid-column: span 5;
}

.gallery-panel:nth-child(5) {
  grid-column: span 8;
}

.gallery-panel-full-band {
  background: rgba(8, 7, 10, 0.96);
}

.gallery-panel-full-band img {
  object-fit: contain;
  object-position: center center;
  padding: 0.45rem;
  background: rgba(8, 7, 10, 0.96);
  transform: none;
}

.gallery-panel-lead-shot img {
  object-fit: cover;
  object-position: center 32%;
  padding: 0;
  background: none;
  transform: scale(1.045);
}

.gallery-panel-feature {
  min-height: 520px;
}

.gallery-panel-lead-shot {
  min-height: 640px;
}

.gallery-panel-lead-shot::before {
  background:
    linear-gradient(180deg, rgba(4, 4, 4, 0.08) 0%, rgba(4, 4, 4, 0.38) 100%),
    radial-gradient(circle at 35% 15%, rgba(255, 184, 120, 0.14), transparent 26%);
}

.gallery-panel-lead-shot::after {
  background:
    linear-gradient(transparent 0%, rgba(255, 255, 255, 0.03) 50%, transparent 100%),
    repeating-linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.015) 0,
      rgba(255, 255, 255, 0.015) 1px,
      transparent 1px,
      transparent 7px
    );
  mix-blend-mode: screen;
  opacity: 0.18;
}

.gallery-panel-no-copy {
  padding: 0;
}

.gallery-panel-no-copy::before {
  background: linear-gradient(180deg, rgba(4, 4, 4, 0.01) 0%, rgba(4, 4, 4, 0.08) 100%);
}

.gallery-panel-no-copy::after {
  opacity: 0;
}

.gallery-panel:hover img,
.gallery-panel:focus-within img {
  transform: scale(1.035);
  filter: saturate(1.06) contrast(1.04) brightness(0.98);
}

.gallery-panel-full-band:hover img,
.gallery-panel-full-band:focus-within img {
  transform: none;
  filter: saturate(1) contrast(1.05) brightness(0.84);
}

.gallery-panel-lead-shot:hover img,
.gallery-panel-lead-shot:focus-within img {
  transform: scale(1.065);
  filter: saturate(1) contrast(1.06) brightness(0.84);
}

.gallery-copy {
  position: relative;
  z-index: 3;
}

.gallery-copy h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.05em;
}

.gallery-copy p {
  margin: 0.55rem 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.rider-layout {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(240px, 0.34fr) minmax(0, 0.66fr);
  gap: 2rem;
  align-items: start;
}

.rider-intro p {
  margin: 0;
  max-width: 24rem;
  color: var(--muted);
  line-height: 1.78;
}

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

.rider-card {
  padding: 1.45rem 1.5rem;
  border: 1px solid rgba(255, 208, 166, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 246, 233, 0.04), rgba(255, 246, 233, 0.015)),
    rgba(24, 16, 19, 0.44);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.rider-card.is-wide {
  grid-column: span 2;
}

.rider-card h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.25rem, 2.4vw, 1.8rem);
  font-weight: 700;
  letter-spacing: -0.045em;
}

.rider-list {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
  color: var(--muted);
  display: grid;
  gap: 0.72rem;
  line-height: 1.62;
}

.contact-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.54fr) minmax(320px, 0.74fr);
  gap: 1.6rem;
  align-items: start;
}

.contact-copy {
  display: grid;
  gap: 0.55rem;
  align-content: start;
}

.contact-copy .eyebrow {
  margin-bottom: 0;
}

.contact-copy p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.75;
  max-width: 18rem;
  margin: 0;
}

.contact-actions {
  margin-top: 2rem;
}

.contact-meta {
  padding: 1.4rem;
}

.contact-line + .contact-line {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.contact-line-identity {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.contact-line-identity strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  font-weight: 700;
  letter-spacing: -0.04em;
}

.social-links-single {
  justify-content: flex-start;
}

.social-links-single a {
  min-width: 168px;
}

.social-links-qr {
  display: block;
  max-width: 220px;
}

.social-link-qr {
  min-height: auto;
  padding: 0.45rem;
  border-radius: 24px;
  background: rgba(26, 18, 20, 0.52);
  backdrop-filter: blur(14px);
}

.social-link-qr img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 18px;
}

.site-footer {
  padding: 0 1.5rem 1.5rem;
}

.site-footer p {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: var(--caps-color);
  font-family: var(--caps-font);
  font-weight: var(--caps-weight);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.74rem;
}

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

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

.hero-copy,
.hero-panel,
.hero-footer {
  animation: rise-in 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-panel {
  animation-delay: 140ms;
}

.hero-footer {
  animation-delay: 240ms;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(26px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .range-grid,
  .section-head,
  .story-grid,
  .music-layout,
  .rider-layout,
  .contact-shell,
  .lineup-block {
    grid-template-columns: 1fr;
  }

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

  .lineup-gallery {
    min-height: 0;
    width: 100%;
    justify-self: stretch;
  }

  .lineup-shot {
    aspect-ratio: 16 / 10;
  }

  .hero-grid {
    gap: 1.75rem;
  }

  .section-head {
    gap: 1rem;
    margin-bottom: 1.75rem;
  }

  .hero h1 {
    max-width: none;
  }

  .range-copy {
    max-width: none;
    justify-self: start;
  }

  .track-panel {
    padding: 1.5rem;
  }

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

  .showreel-card.is-featured {
    grid-column: auto;
  }

  .rider-groups {
    grid-template-columns: 1fr;
  }

  .rider-card.is-wide {
    grid-column: auto;
  }

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

  .gallery-panel,
  .gallery-panel:nth-child(1),
  .gallery-panel:nth-child(2),
  .gallery-panel:nth-child(3),
  .gallery-panel:nth-child(5),
  .gallery-panel:nth-child(6) {
    grid-column: auto;
  }

  .member-list li {
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }

  .member-role {
    text-align: left;
  }

  .story-visual {
    max-width: none;
    justify-self: stretch;
    margin-top: 0;
  }

  .show-row {
    grid-template-columns: 1fr;
    gap: 0.45rem;
    padding: 1rem 0;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 0.9rem 1rem;
  }

  .brand {
    gap: 0.65rem;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
  }

  .brand-mark {
    width: 24px;
    height: 14px;
  }

  .nav-toggle {
    display: inline-flex;
    width: 44px;
    height: 44px;
  }

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

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

  .site-nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 1rem;
    right: 1rem;
    display: grid;
    gap: 0.95rem;
    padding: 1rem;
    background: rgba(19, 13, 16, 0.92);
    border: 1px solid rgba(255, 208, 166, 0.12);
    border-radius: 22px;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 220ms ease, transform 220ms ease;
  }

  .site-nav a {
    padding: 0.35rem 0;
  }

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

  .hero {
    min-height: auto;
    padding: 6.5rem 1rem 1rem;
  }

  .hero-grid {
    gap: 1.25rem;
  }

  .hero-copy {
    max-width: 100%;
    padding-right: 0;
    padding-bottom: 0;
  }

  .hero-copy::before {
    top: -2rem;
    left: -1.5rem;
    width: 18rem;
    height: 18rem;
    filter: blur(18px);
  }

  .hero-copy::after {
    inset: -0.8rem 1rem -0.8rem -0.8rem;
  }

  .hero h1 {
    margin-top: 0.5rem;
    font-size: clamp(3.4rem, 12.5vw, 5.2rem);
    line-height: 0.88;
  }

  .hero-tagline {
    width: 100%;
    max-width: 24rem;
    font-size: 0.92rem;
    line-height: 1.62;
  }

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

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

  .hero-photo-mobile {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    border: 1px solid rgba(255, 208, 166, 0.12);
    border-radius: 24px;
    background-color: #09070a;
    box-shadow: var(--shadow);
  }

  .hero-media {
    filter: saturate(0.56) brightness(0.24) blur(12px);
    opacity: 0.72;
    transform: scale(1.08);
  }

  .range-band {
    padding: 2rem 1rem 0;
  }

  .range-shell {
    padding-top: 1.5rem;
  }

  .range-grid {
    gap: 1rem;
  }

  .range-grid h2 {
    font-size: clamp(2rem, 10vw, 3.1rem);
  }

  .panel-copy {
    font-size: 0.96rem;
    line-height: 1.6;
  }

  .hero-footer {
    grid-template-columns: 1fr;
    gap: 0.65rem;
    margin-top: 1.25rem;
  }

  .hero-footer div {
    padding: 0.85rem 1rem;
  }

  .section {
    padding: 4.75rem 1rem;
  }

  .section::before {
    left: 1rem;
    right: 1rem;
  }

  .section-head h2,
  .track-head h3,
  .contact-copy h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .story-grid {
    gap: 1rem;
  }

  .story-copy p {
    font-size: 0.98rem;
    line-height: 1.72;
  }

  .story-visual {
    display: block;
    max-width: 100%;
  }

  .story-quote {
    width: auto;
    padding: 0.95rem 1rem;
  }

  .story-quote p {
    font-size: 0.98rem;
    line-height: 1.56;
  }

  .signal-list {
    gap: 0.85rem;
    margin-top: 1.7rem;
  }

  .signal-value {
    font-size: 1.4rem;
  }

  .lineup-block {
    margin-top: 2rem;
    padding-top: 1.5rem;
    gap: 1rem;
  }

  .lineup-layout {
    gap: 1rem;
  }

  .lineup-gallery {
    width: 100%;
    gap: 0.85rem;
  }

  .lineup-shot {
    aspect-ratio: 16 / 10;
  }

  .music-layout {
    gap: 1.35rem;
  }

  .music .section-head h2 {
    font-size: clamp(1.45rem, 6.4vw, 1.95rem);
    max-width: 100%;
  }

  .showreel-lead {
    margin-bottom: 1.1rem;
    font-size: 0.97rem;
    line-height: 1.66;
  }

  .rider-layout {
    gap: 1.2rem;
  }

  .rider-card {
    padding: 1.15rem;
  }

  .showreel-card {
    padding: 0.85rem;
    gap: 0.8rem;
  }

  .showreel-frame,
  .showreel-card.is-featured .showreel-frame {
    aspect-ratio: 16 / 9.4;
    border-radius: 18px;
  }

  .showreel-play {
    width: 68px;
    height: 68px;
  }

  .track-panel {
    order: 1;
    padding: 1.15rem;
    gap: 1.15rem;
  }

  .record-stack {
    order: 2;
    width: min(100%, 380px);
  }

  .record-stack {
    width: min(100%, 340px);
  }

  .record-disc {
    top: 10%;
    width: 68%;
    height: 68%;
  }

  .record-sleeve {
    width: 88%;
    height: 86%;
  }

  .record-sleeve img {
    object-position: 68% 24%;
  }

  .track-list li {
    grid-template-columns: auto minmax(0, 1fr);
    align-items: start;
    gap: 0.75rem;
    padding: 0.85rem 0;
  }

  .track-length {
    grid-column: 2;
    justify-self: start;
    font-size: 0.88rem;
  }

  .show-list {
    border-top: none;
  }

  .show-row {
    padding: 0.95rem 1rem;
    border: 1px solid rgba(255, 208, 166, 0.12);
    margin-bottom: 0.7rem;
  }

  .show-date {
    font-size: 1.4rem;
  }

  .gallery-panel {
    min-height: 320px;
    padding: 1rem;
  }

  .gallery-panel-feature {
    min-height: 420px;
  }

  .gallery-copy h3 {
    font-size: 1.45rem;
  }

  .contact-copy p:not(.eyebrow) {
    max-width: none;
  }

  .contact-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .contact-meta {
    padding: 1.2rem;
  }

  .social-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
  }

  .site-footer {
    padding: 0 1rem 1rem;
  }

  .gallery-panel,
  .story-visual,
  .record-sleeve,
  .rider-card,
  .showreel-card,
  .showreel-frame,
  .track-panel,
  .hero-panel,
  .contact-meta {
    border-radius: 24px;
  }
}

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

  .site-header {
    padding: 0.8rem 0.85rem;
  }

  .hero {
    padding: 6rem 0.85rem 0.85rem;
  }

  .hero h1 {
    margin-top: 0.4rem;
    font-size: clamp(2.7rem, 11vw, 4rem);
  }

  .hero-tagline {
    font-size: 0.88rem;
  }

  .hero-photo-mobile {
    aspect-ratio: 16 / 10;
    border-radius: 20px;
  }

  .range-band {
    padding: 1.7rem 0.85rem 0;
  }

  .range-grid h2 {
    font-size: clamp(1.85rem, 9vw, 2.5rem);
  }

  .button,
  .stream-links a,
  .social-links a {
    min-height: 46px;
    padding: 0.78rem 1rem;
    font-size: 0.68rem;
    letter-spacing: 0.16em;
  }

  .section {
    padding: 4.2rem 0.85rem;
  }

  .section::before {
    left: 0.85rem;
    right: 0.85rem;
  }

  .section-head h2,
  .track-head h3,
  .contact-copy h2 {
    font-size: clamp(1.8rem, 9vw, 2.5rem);
  }

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

  .rider-list {
    gap: 0.62rem;
    font-size: 0.96rem;
  }

  .member-name {
    font-size: 1.2rem;
  }

  .member-role {
    font-size: 0.84rem;
  }

  .hero-footer span,
  .contact-line span {
    font-size: 0.68rem;
  }

  .hero-footer strong,
  .contact-line strong {
    font-size: 0.95rem;
  }

  .gallery-panel,
  .story-visual,
  .record-sleeve,
  .rider-card,
  .showreel-card,
  .showreel-frame,
  .track-panel,
  .hero-panel,
  .contact-meta,
  .hero-footer div {
    border-radius: 20px;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

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

  .hero-media,
  .hero-panel {
    transform: none !important;
  }
}
