:root {
  color-scheme: dark;
  --bg: #070b0f;
  --panel: #111820;
  --panel-strong: #17222d;
  --line: #253444;
  --text: #f7fafc;
  --muted: #b6c3cf;
  --soft: #81909f;
  --accent: #e8c06a;
  --accent-2: #7bc7b4;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(7, 11, 15, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.brand {
  font-size: 22px;
  font-weight: 700;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.nav a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  color: var(--muted);
  border: 1px solid transparent;
  border-radius: 6px;
}

.nav a:hover {
  color: var(--text);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
}

.language-switcher a {
  min-width: 36px;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.language-switcher a.active {
  background: var(--accent);
  color: #16120a;
}

.hero {
  position: relative;
  min-height: 0;
  display: block;
  overflow: visible;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: #04070a;
}

.hero-image {
  position: relative;
  width: min(80vw, 1536px);
  height: auto;
  margin: 0 auto;
  object-fit: contain;
  filter: saturate(0.96) brightness(0.62);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(7, 11, 15, 0.78), rgba(7, 11, 15, 0.24) 52%, rgba(7, 11, 15, 0.42));
}

.hero-content {
  position: absolute;
  left: 50%;
  top: 46%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: min(920px, calc(100% - 36px));
  margin: 0 auto;
  padding: 0;
}

.hero-content p,
.eyebrow {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-content h1 {
  max-width: 760px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(54px, 9vw, 116px);
  line-height: 0.92;
  font-weight: 700;
}

.hero-content span {
  display: block;
  max-width: 520px;
  margin: 22px 0 28px;
  color: #edf2f7;
  font-size: 20px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  background: var(--accent);
  color: #16120a;
  border-radius: 6px;
  font-weight: 800;
}

.button:hover {
  background: #f1ce82;
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.intro {
  padding: 72px 0 34px;
}

.intro h2,
.page-title h1,
.work-heading h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.04;
}

.intro p:last-child,
.page-title p,
.work-heading h2 {
  max-width: 720px;
  color: var(--muted);
  font-size: 18px;
}

.people-grid,
.album-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 28px 0 78px;
}

.person-card,
.album-card,
.work-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.person-photo {
  display: block;
  aspect-ratio: 4 / 5;
  background: #0d1319;
}

.person-photo img,
.album-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.person-body,
.album-card div {
  padding: 18px;
}

.person-body h3,
.album-card h2 {
  margin: 0 0 6px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
}

.person-body p,
.album-card p,
.work-card p {
  margin: 0 0 14px;
  color: var(--muted);
}

.person-body a,
.album-card span,
.back-link {
  color: var(--accent-2);
  font-weight: 800;
}

.work-band {
  padding: 72px 0 86px;
  background: linear-gradient(rgba(7, 11, 15, 0.82), rgba(7, 11, 15, 0.86)), url("/assets/images/main.jpg") center/cover fixed;
  border-block: 1px solid rgba(255, 255, 255, 0.08);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.work-card {
  padding: 22px;
}

.work-card img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--accent);
  margin-bottom: 18px;
}

.work-card strong,
.work-card span {
  display: block;
}

.work-card span {
  color: var(--soft);
}

.page-title {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 82px 0 24px;
}

.page-title.compact {
  padding-bottom: 10px;
}

.album-card a {
  display: grid;
  grid-template-rows: 260px auto;
  height: 100%;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: 26px 0 84px;
}

.photo-tile {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  padding: 0;
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
}

.photo-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 160ms ease;
}

.photo-tile:hover img {
  transform: scale(1.035);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 64px 18px 18px;
  background: rgba(0, 0, 0, 0.88);
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-width: min(1200px, 100%);
  max-height: calc(100vh - 92px);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.lightbox-close {
  position: fixed;
  top: 18px;
  right: 18px;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--panel-strong);
  color: var(--text);
  font-weight: 800;
  cursor: pointer;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  padding: 26px clamp(18px, 4vw, 56px);
  color: var(--soft);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

  .nav {
    justify-content: flex-start;
  }

  .language-switcher {
    align-self: flex-start;
  }

  .people-grid,
  .album-grid,
  .work-grid {
    grid-template-columns: 1fr;
  }

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

  .work-band {
    background-attachment: scroll;
  }
}

@media (max-width: 560px) {
  .hero {
    min-height: 0;
  }

  .hero-content {
    top: 50%;
    padding: 0;
  }

  .hero-content span,
  .intro p:last-child,
  .page-title p {
    font-size: 16px;
  }

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