:root {
  color-scheme: dark;
  --bg: #050505;
  --panel: #0b0c0b;
  --panel-soft: #10120f;
  --text: #f3f0e8;
  --muted: #aaa59a;
  --faint: #6e695f;
  --line: rgba(255, 255, 255, 0.1);
  --accent: #e7dfcf;
  --green: #a8b092;
  --radius: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 80% 10%, rgba(82, 92, 65, 0.18), transparent 31rem),
    radial-gradient(circle at 20% 70%, rgba(31, 58, 52, 0.16), transparent 30rem),
    var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 0;
}

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;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0;
  background: rgba(5, 5, 5, 0.86);
}

.brand,
.nav-links {
  display: flex;
  align-items: center;
}

.brand {
  gap: 9px;
  font-size: 14px;
  font-weight: 700;
}

.brand-mark {
  width: 18px;
  height: 18px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, var(--accent) 0 2px, transparent 3px);
}

.nav-links {
  gap: 28px;
  color: var(--muted);
  font-size: 12px;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-button,
.primary-action {
  border-radius: 999px;
  background: var(--text);
  color: #111;
  font-weight: 700;
}

.nav-button {
  padding: 10px 16px;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 1.05fr);
  gap: 42px;
  align-items: center;
  width: min(1120px, calc(100% - 32px));
  min-height: calc(100vh - 78px);
  margin: 0 auto;
  padding: 42px 0 86px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: inline-flex;
  margin: 0 0 18px;
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  max-width: 660px;
  font-size: clamp(64px, 11vw, 142px);
  line-height: 0.82;
  font-weight: 800;
}

h1 span {
  color: transparent;
  -webkit-text-stroke: 1.4px var(--text);
}

.hero-text {
  max-width: 460px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-top: 28px;
}

.primary-action {
  padding: 14px 21px;
  font-size: 12px;
}

.text-action {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.hero-collage {
  position: relative;
  min-height: 640px;
}

.hero-collage img {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.38);
}

.collage-main {
  right: 0;
  top: 58px;
  width: min(76%, 430px);
  height: 520px;
}

.collage-top {
  top: 0;
  left: 16px;
  width: 240px;
  height: 300px;
}

.collage-bottom {
  right: 52px;
  bottom: 18px;
  width: 285px;
  height: 210px;
}

.section-block {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 76px 0;
}

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

.section-heading h2,
.about-copy h2 {
  margin-bottom: 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 0.95;
}

.section-heading > a {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.featured-grid,
.archive-grid {
  display: grid;
  gap: 18px;
}

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

.photo-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  cursor: pointer;
}

.photo-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transform: translateZ(0);
  transition: transform 260ms ease;
}

.photo-card:hover img {
  transform: translateZ(0) scale(1.025);
}

.photo-meta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 14px 2px 0;
  color: var(--muted);
  font-size: 11px;
}

.photo-meta strong {
  color: var(--text);
  font-size: 13px;
}

.featured-grid .photo-card {
  background: transparent;
  border: 0;
}

.featured-grid .photo-card img {
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.about-band {
  display: grid;
  grid-template-columns: 0.9fr 0.8fr 1fr;
  gap: 42px;
  align-items: center;
  width: min(1120px, calc(100% - 32px));
  margin: 42px auto;
  padding: 78px 0;
}

.about-image img {
  width: 100%;
  height: 420px;
  border-radius: var(--radius);
  object-fit: cover;
}

.about-copy p:not(.eyebrow) {
  margin-top: 22px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}

.principles {
  display: grid;
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.principles li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 0 16px;
  padding-left: 12px;
  border-left: 1px solid var(--line);
}

.principles span {
  color: var(--faint);
  font-size: 12px;
}

.principles strong {
  font-size: 15px;
}

.principles p {
  grid-column: 2;
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.archive-heading {
  align-items: start;
}

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

.filter-button {
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
}

.filter-button.active,
.filter-button:hover {
  border-color: var(--accent);
  color: var(--text);
}

.archive-grid {
  grid-template-columns: repeat(6, 1fr);
}

.archive-grid .photo-card {
  grid-column: span 2;
}

.archive-grid .photo-card:nth-child(1),
.archive-grid .photo-card:nth-child(6) {
  grid-column: span 3;
}

.archive-grid .photo-card img {
  height: 280px;
}

.archive-grid .photo-card:nth-child(1) img,
.archive-grid .photo-card:nth-child(6) img {
  height: 330px;
}

.archive-grid .photo-meta {
  padding: 14px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 42px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

.site-footer p {
  margin: 0;
}

.lightbox {
  width: min(980px, calc(100% - 28px));
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #090909;
  color: var(--text);
}

.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.78);
}

.lightbox img {
  width: 100%;
  max-height: 76vh;
  object-fit: contain;
  background: #030303;
}

.lightbox-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.58);
  color: var(--text);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.lightbox-caption {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px 18px;
  color: var(--muted);
  font-size: 12px;
}

.lightbox-caption strong {
  color: var(--text);
}

@media (max-width: 860px) {
  .site-header,
  .section-heading,
  .site-footer,
  .hero-actions,
  .lightbox-caption {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    display: none;
  }

  .hero,
  .about-band {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 34px;
  }

  .hero-collage {
    min-height: 500px;
  }

  .collage-main {
    width: 76%;
    height: 390px;
  }

  .collage-top {
    width: 44%;
    height: 230px;
  }

  .collage-bottom {
    right: 0;
    width: 54%;
    height: 180px;
  }

  .featured-grid,
  .archive-grid {
    grid-template-columns: 1fr;
  }

  .archive-grid .photo-card,
  .archive-grid .photo-card:nth-child(1),
  .archive-grid .photo-card:nth-child(6) {
    grid-column: auto;
  }

  .about-band {
    gap: 30px;
    padding: 42px 0;
  }

  .filter-group {
    justify-content: flex-start;
  }
}

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

  .photo-card img {
    transition: none;
  }

  .photo-card:hover img {
    transform: none;
  }
}
