:root {
  --bg: #050506;
  --bg-soft: #040507;
  --panel: #303238;
  --line: rgba(255, 255, 255, 0.18);
  --text: #f4f5f6;
  --muted: rgba(244, 245, 246, 0.82);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Rajdhani", sans-serif;
  overflow-x: hidden;
}

.noise-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.08;
  background-image: radial-gradient(rgba(255, 255, 255, 0.38) 0.5px, transparent 0.5px);
  background-size: 2px 2px;
}

main,
footer,
header,
aside {
  position: relative;
  z-index: 2;
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 88px 1fr;
  align-items: center;
  gap: 1.2rem;
  padding: 1.45rem 2rem 1.2rem;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.24) 70%, rgba(0, 0, 0, 0));
  transition: padding 0.25s ease, background 0.25s ease;
}

.topbar.is-compact {
  padding-top: 1rem;
  padding-bottom: 0.9rem;
  background: rgba(7, 7, 8, 0.88);
}

.brand {
  display: inline-grid;
  color: var(--text);
  text-decoration: none;
  font-family: "Bebas Neue", sans-serif;
  font-size: 3.05rem;
  line-height: 0.88;
  letter-spacing: 0.03em;
  text-transform: lowercase;
}

.brand span:last-child {
  margin-top: -0.5rem;
}

.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.95rem;
  width: min(1220px, 100%);
  margin: 0 auto;
}

.main-nav a {
  color: var(--text);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color 0.2s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: #cfd5dc;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-left: 0.45rem;
}

.lang-btn {
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font-family: "Rajdhani", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1;
  padding: 0.35rem 0.5rem;
  border-radius: 0.38rem;
  cursor: pointer;
}

.lang-btn.is-active {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.62);
}

.menu-toggle {
  display: none;
  justify-self: end;
  border: 0;
  background: transparent;
  padding: 0;
  width: 2.8rem;
  height: 2.8rem;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 1.5rem;
  height: 3px;
  margin: 4px auto;
  background: var(--text);
  border-radius: 2px;
}

.social-rail {
  --social-item-size: 2.1rem;
  --social-item-gap: 0.85rem;
  position: fixed;
  right: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 30;
  display: grid;
  grid-auto-rows: var(--social-item-size);
  gap: var(--social-item-gap);
  justify-items: center;
  align-content: center;
  min-height: calc((var(--social-item-size) * 7) + (var(--social-item-gap) * 6));
}

.social-rail a {
  width: var(--social-item-size);
  height: var(--social-item-size);
  display: grid;
  place-items: center;
  color: var(--text);
  text-decoration: none;
  /* background: rgba(0, 0, 0, 0.66); */
  border: 0;
  border-radius: 0.45rem;
}

.social-rail a .icon-svg {
  width: 1.65rem;
  height: 1.65rem;
}

.social-rail a .icon-text {
  font-family: "Rajdhani", sans-serif;
  font-size: 2.05rem;
  font-weight: 800;
  line-height: 1;
  text-transform: lowercase;
}

.social-rail a .icon-bars {
  width: 1.65rem;
  height: 1.65rem;
  display: block;
  fill: currentColor;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 4.4rem;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero-video,
.hero-media,
.hero-scrim {
  position: absolute;
  inset: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: contrast(0.92) brightness(0.66);
}

.hero-media {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.86) 6%, rgba(0, 0, 0, 0.22) 48%, rgba(0, 0, 0, 0.72) 100%);
}

.hero-scrim {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.18) 36%, rgba(0, 0, 0, 0.84) 92%),
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.08), transparent 44%);
}

.hero-content {
  position: relative;
  z-index: 4;
  margin: 11vh auto 0;
  width: min(1120px, 90vw);
  text-align: center;
}

.hero-content h1 {
  margin: 0;
  text-transform: uppercase;
  font-size: clamp(2.8rem, 7.2vw, 5.85rem);
  letter-spacing: 0.38em;
  font-weight: 400;
  line-height: 0.95;
  text-shadow: 0 14px 28px rgba(0, 0, 0, 0.55);
  white-space: nowrap;
}

.hero-content h1 span {
  display: inline-block;
}

.hero-content h1 .hero-dot {
  font-size: 0.72em;
  margin: 0 0.21em;
  transform: translateY(-0.07em);
}

.hero-tagline {
  margin: 3rem auto 0;
  max-width: 740px;
  text-transform: uppercase;
  letter-spacing: 0.015em;
  font-size: clamp(1rem, 1.6vw, 2rem);
  font-weight: 600;
}

.event-strip {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(4, minmax(240px, 1fr));
  background: rgb(4 5 7);
  /* border-top: 1px solid rgb(255 255 255 / 18%); */
}

.event-card {
  padding: 0.95rem 0.85rem 0.88rem;
  /* border-right: 1px dashed rgba(255, 255, 255, 0.2); */
  text-align: center;
}

.event-card:last-child {
  border-right: 0;
}

.event-card h3 {
  margin: 0;
  text-transform: uppercase;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.7rem, 1.95vw, 2.28rem);
  letter-spacing: 0.06em;
  font-weight: 400;
}

.event-city {
  margin: 0.15rem 0;
  text-transform: uppercase;
  font-size: 0.88rem;
  font-weight: 600;
}

.event-date {
  margin: 0;
  text-transform: uppercase;
  font-size: 0.83rem;
  letter-spacing: 0.02em;
  font-weight: 500;
}

.bio-feature {
  background: #040507;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.bio-inner {
  width: min(1400px, 96vw);
  margin: 0 auto;
  padding: 6rem 0 4.4rem;
  display: grid;
  grid-template-columns: 1.08fr 1fr;
  gap: 2.4rem;
  align-items: center;
  position: relative;
}

.bio-photo {
  min-height: 560px;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.12)),
    url("wp-content/uploads/2026/6/PIC\ 1-342.jpg") center/cover no-repeat;
}

.bio-copy {
  max-width: 560px;
}

.bio-copy h2 {
  margin: 0;
  text-transform: uppercase;
  font-size: clamp(2.5rem, 3.2vw, 4rem);
  letter-spacing: 0.045em;
  font-weight: 500;
}

.bio-copy p {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 1.16rem;
  line-height: 1.35;
}

.bio-mark {
  position: absolute;
  right: 7%;
  top: 20%;
  font-family: "Bebas Neue", sans-serif;
  font-size: 7.4rem;
  line-height: 0.84;
  text-transform: lowercase;
  opacity: 0.95;
}

.bio-mark span:last-child {
  margin-top: -1.2rem;
  display: block;
}

.biography-page-main {
  padding-top: 4.75rem;
  background: #020304;
}

.biography-hero {
  min-height: min(72vh, 760px);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  background: #040506;
}

.biography-hero-image {
  min-height: 460px;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.64)),
    url("wp-content/uploads/2026/6/PIC 1-342.jpg") center 22%/cover no-repeat;
  filter: grayscale(1);
}

.biography-hero-copy {
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 26%, rgba(255, 255, 255, 0.1), transparent 40%),
    linear-gradient(90deg, rgba(12, 14, 18, 0.92), rgba(3, 4, 5, 0.98));
}

.biography-hero-copy h1 {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.06em;
  font-size: clamp(3rem, 7.4vw, 6.2rem);
  font-weight: 400;
}

.biography-story {
  width: min(1260px, 92vw);
  margin: 0 auto;
  padding: 5.2rem 0 3.3rem;
}

.biography-story-intro {
  margin: 0;
  max-width: 1100px;
  font-size: clamp(1.18rem, 1.8vw, 2rem);
  line-height: 1.28;
  color: #f8f8f8;
}

.biography-story-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: minmax(280px, 44%) 1fr;
  gap: 1.6rem;
  align-items: start;
}

.biography-story-photo {
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #0a0b0c;
}

.biography-story-photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  filter: grayscale(1) contrast(0.95);
}

.biography-story-copy p {
  margin: 0 0 1rem;
  color: var(--text);
  font-size: 1.04rem;
  line-height: 1.4;
}

.biography-story-copy p:last-child {
  margin-bottom: 0;
}

.biography-gallery {
  padding: 1.8rem 0 1.4rem;
}

.biography-gallery-track {
  width: min(1280px, 92vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.2rem;
}

.biography-gallery-track figure {
  margin: 0;
  min-height: 420px;
  overflow: hidden;
}

.biography-gallery-track img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.biography-gallery-track figure:nth-child(1) img {
  object-position: 18% center;
  filter: saturate(0.95) hue-rotate(-18deg);
}

.biography-gallery-track figure:nth-child(2) img {
  object-position: center;
  filter: saturate(1.1) contrast(1.08);
}

.biography-gallery-track figure:nth-child(3) img {
  object-position: 82% center;
  filter: saturate(1.05) hue-rotate(18deg);
}

.biography-cta {
  width: min(1260px, 92vw);
  margin: 0 auto;
  padding: 1.4rem 0 4rem;
  display: flex;
  gap: 0.8rem;
}

.biography-cta .outline-button {
  margin-top: 0;
}

.outline-button {
  margin-top: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.68);
  color: var(--text);
  text-decoration: none;
  text-transform: none;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0;
  padding: 0.86rem 2.05rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 144px;
}

.section-inner {
  width: min(1230px, 92vw);
  margin: 0 auto;
  padding: 5.6rem 0;
}

.section-inner h2 {
  margin: 0;
  text-align: center;
  text-transform: uppercase;
  font-size: clamp(2.45rem, 4vw, 4.35rem);
  letter-spacing: 0.03em;
  font-weight: 500;
}

.section-label {
  margin: 2rem 0 1.2rem;
  text-transform: uppercase;
  font-size: 1.9rem;
  letter-spacing: 0.06em;
}

.shop-showcase {
  background: var(--bg-soft);
}

.shop-row {
  display: grid;
  grid-template-columns: repeat(6, minmax(120px, 1fr));
  gap: 1.15rem;
}

.shop-item {
  text-align: center;
}

.shop-item img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.26);
}

.shop-item p {
  margin: 0.62rem 0 0;
  font-size: 1rem;
  line-height: 1.05;
}

.outline-pill {
  margin: 2.1rem auto 0;
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.7);
  color: var(--text);
  text-decoration: none;
  border-radius: 999px;
  padding: 0.62rem 1.65rem;
  font-size: 1.05rem;
  font-weight: 600;
}

.music-showcase {
  background: #060708;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.carousel-shell {
  margin-top: 2.1rem;
  display: grid;
  grid-template-columns: 36px 1fr 36px;
  gap: 0.8rem;
  align-items: center;
}

.carousel-arrow {
  border: 0;
  background: transparent;
  color: var(--text);
  font-size: 3.2rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.85;
}

.music-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(180px, 1fr));
  gap: 1.35rem;
}

.album-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.centered-button {
  display: flex;
  width: fit-content;
  margin-inline: auto;
}

.news-showcase {
  background: var(--bg-soft);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.ad-section {
  background: #050607;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-section {
  background: #040507;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.contact-lead {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 1.08rem;
}

.contact-form {
  display: grid;
  gap: 0.6rem;
}

.contact-form label {
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.95rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  padding: 0.72rem 0.78rem;
  font: inherit;
}

.honey-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.contact-status {
  margin: 0.2rem 0 0;
  min-height: 1.2em;
  font-size: 0.96rem;
}

.contact-status.ok {
  color: #7ce7b0;
}

.contact-status.err {
  color: #ff8f8f;
}

.news-row {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(180px, 1fr));
  gap: 1.25rem;
}

.news-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.news-item p {
  margin: 0;
  padding: 0.95rem 0.6rem;
  min-height: 86px;
  text-transform: uppercase;
  font-size: 1rem;
  line-height: 1.08;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-top: 0;
}

.footer {
  background: #0e0f12;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.9rem 6.5vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.footer p {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 500;
}

.footer a {
  color: var(--text);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.9rem 1.8rem;
  font-size: 1.08rem;
  font-weight: 600;
}

.anchor-point {
  position: relative;
  top: -96px;
  height: 0;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.7s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  .main-nav a {
    font-size: 0.94rem;
  }

  .event-strip {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
  }

  .bio-inner {
    grid-template-columns: 1fr;
    padding-top: 4.8rem;
  }

  .bio-mark {
    right: 2.4rem;
    top: 5.2rem;
    font-size: 6rem;
  }

  .shop-row {
    grid-template-columns: repeat(3, minmax(160px, 1fr));
  }

  .contact-inner {
    grid-template-columns: 1fr;
  }

  .music-row,
  .news-row {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
  }

  .biography-story-copy p {
    font-size: 1.12rem;
  }
}

@media (max-width: 900px) {
  .topbar {
    grid-template-columns: auto auto;
    padding: 1.15rem 1.15rem;
    background: rgba(8, 8, 10, 0.95);
  }

  .brand {
    font-size: 2.15rem;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    display: none;
    position: absolute;
    left: 0.8rem;
    right: 0.8rem;
    top: calc(100% + 0.45rem);
    width: auto;
    margin: 0;
    padding: 0.8rem 0.9rem;
    background: rgba(12, 12, 14, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.22);
    flex-direction: column;
    align-items: flex-start;
    gap: 0.55rem;
  }

  .language-switcher {
    margin-left: 0;
    margin-top: 0.25rem;
  }

  .main-nav.open {
    display: flex;
  }

  .social-rail {
    right: 0.85rem;
    gap: var(--social-item-gap);
  }

  .social-rail a {
    width: var(--social-item-size);
    height: var(--social-item-size);
    border-radius: 0.45rem;
  }

  .hero {
    min-height: 92vh;
    padding-top: 4.1rem;
  }

  .hero-content {
    margin-top: 9vh;
  }

  .hero-content h1 {
    font-size: clamp(2.2rem, 10vw, 4.15rem);
    letter-spacing: 0.2em;
  }

  .hero-tagline {
    max-width: 360px;
    margin-top: 1.2rem;
    font-size: 1.05rem;
    line-height: 1.2;
  }

  .event-strip {
    display: none;
  }

  .bio-photo {
    min-height: 430px;
  }

  .bio-copy p {
    font-size: 1rem;
  }

  .carousel-shell {
    grid-template-columns: 1fr;
  }

  .carousel-arrow {
    display: none;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.4rem 1.1rem;
  }

  .footer p,
  .footer a {
    font-size: 0.98rem;
  }

  .biography-page-main {
    padding-top: 4.25rem;
  }

  .biography-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .biography-hero-image {
    min-height: 54vh;
    background-position: center 18%;
  }

  .biography-hero-copy {
    min-height: 200px;
    padding: 1.6rem 1rem;
  }

  .biography-story {
    padding-top: 3.1rem;
  }

  .biography-story-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .biography-story-photo img {
    min-height: 420px;
  }

  .biography-gallery-track {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }

  .biography-gallery-track figure {
    min-height: 300px;
  }

  .biography-cta {
    flex-direction: column;
    padding-bottom: 3rem;
  }

  .biography-cta .outline-button {
    width: 100%;
  }
}

@media (max-width: 620px) {
  .bio-mark {
    display: none;
  }

  .shop-row,
  .music-row,
  .news-row {
    grid-template-columns: 1fr;
  }

  .section-label {
    font-size: 1.3rem;
  }

  .section-inner h2,
  .bio-copy h2 {
    font-size: 2.1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
