﻿:root {
  --ink: #101010;
  --paper: #f5f0e8;
  --white: #ffffff;
  --muted: #6f6a64;
  --red: #c82222;
  --red-dark: #8b1515;
  --gold: #e2b950;
  --blue: #047f9d;
  --line: rgba(16, 16, 16, 0.14);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 10px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: rgba(10, 10, 10, 0.92);
  border-bottom: 3px solid var(--red);
}

.brand {
  width: clamp(190px, 28vw, 340px);
  text-decoration: none;
}

.brand img {
  width: 100%;
  height: auto;
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px 18px;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

nav a,
.text-link {
  text-decoration: none;
}

nav a:hover,
.text-link:hover {
  color: var(--gold);
}

.hero {
  min-height: min(720px, 82svh);
  display: grid;
  align-items: end;
  padding: clamp(44px, 8vw, 96px) clamp(20px, 6vw, 88px);
  color: var(--white);
  background:
    linear-gradient(rgba(0, 0, 0, 0.36), rgba(0, 0, 0, 0.74)),
    url("../downloads/pano_1024x768.jpg") center / cover no-repeat;
}

.hero-copy {
  max-width: 860px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: 6rem;
  line-height: 0.86;
  letter-spacing: 0;
  text-transform: uppercase;
}

h2 {
  margin: 0;
  font-size: 3.75rem;
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: uppercase;
}

h3 {
  margin: 0;
  font-size: 1.15rem;
  letter-spacing: 0;
}

p {
  font-size: 1rem;
  line-height: 1.65;
}

.lede {
  max-width: 660px;
  margin: 22px 0 0;
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  border: 2px solid currentColor;
  border-radius: 6px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.button.primary {
  color: var(--white);
  background: var(--red);
  border-color: var(--red);
}

.button.primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
}

.button.secondary {
  color: var(--white);
  background: rgba(0, 0, 0, 0.34);
}

.intro,
.section,
.story,
.contact,
footer {
  padding: clamp(44px, 7vw, 86px) clamp(20px, 6vw, 88px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1.1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: end;
  color: var(--white);
  background: var(--ink);
}

.intro p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

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

.music-layout {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.album,
.note,
.video,
.asset {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 40px rgba(20, 20, 20, 0.08);
}

.album {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 152px;
  padding: 20px;
}

.album img {
  width: 112px;
  height: 112px;
}

.album p,
.note p {
  margin: 8px 0 0;
  color: var(--muted);
}

.note {
  padding: 24px;
  border-top: 5px solid var(--blue);
}

.videos {
  color: var(--white);
  background: #16110d;
}

.videos .text-link {
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
}

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

.video {
  overflow: hidden;
  color: var(--ink);
}

.video iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  background: #000;
}

.video h3 {
  padding: 16px 18px 18px;
}

.story {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(280px, 1.1fr);
  gap: clamp(28px, 6vw, 70px);
  align-items: center;
}

.story-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  border: 6px solid var(--white);
  box-shadow: 0 24px 54px rgba(20, 20, 20, 0.18);
}

.story-copy p:not(.eyebrow) {
  color: #4f4941;
}

.archive {
  background: #fff8ec;
}

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

.asset {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 112px;
  padding: 16px;
  font-weight: 900;
  text-decoration: none;
}

.asset:hover {
  border-color: var(--red);
}

.asset img {
  width: 80px;
  height: 60px;
  object-fit: cover;
}

.icons-strip {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}

.icons-strip img {
  width: 50px;
  height: 50px;
  image-rendering: auto;
}

.icons-strip img:first-child {
  width: 64px;
  height: 64px;
}

.archive-note {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--muted);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 1fr);
  gap: 28px;
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(rgba(8, 8, 8, 0.74), rgba(8, 8, 8, 0.74)),
    url("../downloads/door_1024x768.jpg") center / cover no-repeat;
}

.contact p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
}

footer {
  color: rgba(255, 255, 255, 0.76);
  background: var(--ink);
}

footer p {
  margin: 0;
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  h1 {
    font-size: 4.5rem;
  }

  h2 {
    font-size: 2.75rem;
  }

  .site-header,
  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    justify-content: flex-start;
  }

  .intro,
  .story,
  .contact,
  .music-layout,
  .archive-grid {
    grid-template-columns: 1fr;
  }

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

  .hero {
    min-height: 560px;
  }
}

@media (max-width: 560px) {
  h1 {
    font-size: 2.55rem;
  }

  h2 {
    font-size: 1.55rem;
  }

  .lede {
    max-width: 28ch;
    font-size: 1rem;
  }

  .site-header {
    position: static;
    padding: 10px 16px;
  }

  nav {
    gap: 6px 12px;
    font-size: 0.8rem;
  }

  .brand {
    width: min(100%, 300px);
  }

  .album,
  .asset {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .album {
    display: block;
  }

  .album img {
    margin-bottom: 16px;
  }

  .asset {
    display: grid;
  }

  .button {
    width: 100%;
  }
}








