:root {
  --bg: #100f0f;
  --bg-soft: #171413;
  --panel: rgba(22, 18, 17, 0.92);
  --panel-strong: #1c1817;
  --line: rgba(229, 196, 154, 0.16);
  --text: #f5ead8;
  --muted: #c9b39b;
  --accent: #d47a2c;
  --accent-soft: #ebb171;
  --shadow: 0 26px 72px rgba(0, 0, 0, 0.4);
  --radius: 30px;
  --max: 1260px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(212,122,44,.14), transparent 26%),
    radial-gradient(circle at right 20%, rgba(235,177,113,.08), transparent 16%),
    linear-gradient(180deg, #0f0e0e 0%, #141211 50%, #0d0c0c 100%);
  color: var(--text);
  font-family: Inter, system-ui, sans-serif;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
iframe { display: block; }
.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  background: var(--accent);
  color: #120d09;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 700;
  z-index: 999;
}
.skip-link:focus { top: 16px; }
.texture {
  position: fixed; inset: 0; pointer-events: none; opacity: .08;
  background-image:
    radial-gradient(circle at 25% 25%, rgba(255,255,255,.08) 0 1px, transparent 1px),
    radial-gradient(circle at 75% 70%, rgba(255,255,255,.04) 0 1px, transparent 1px);
  background-size: 18px 18px, 22px 22px;
}
.site-header, main, .site-footer {
  width: min(calc(100% - 32px), var(--max));
  margin-inline: auto;
}
.site-header {
  position: sticky;
  top: 12px;
  z-index: 100;
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(16,15,15,.76);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}
.logo, h1, h2, h3, .button, .eyebrow, .link-card strong {
  font-family: Oswald, Inter, sans-serif;
}
.logo {
  font-size: 1.9rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.primary-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}
.primary-nav a {
  color: var(--muted);
  font-weight: 700;
  font-size: .92rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.primary-nav a[aria-current="page"] { color: var(--text); }
.primary-nav a:hover,
.primary-nav a:focus-visible,
.text-link:hover,
.text-link:focus-visible { color: var(--text); }
.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: transparent;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px auto;
  background: var(--text);
}
main { padding: 30px 0 48px; }
.section { margin-top: 34px; }
.hero, .sub-hero {
  min-height: calc(100vh - 146px);
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr);
  gap: 26px;
  align-items: stretch;
}
.hero-copy, .hero-art, .release-card, .embed-card, .panel, .link-card, .bio-card, .about-side, .sub-hero-copy, .sub-hero-art, .press-links {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(27,23,22,.96), rgba(16,15,15,.96));
  box-shadow: var(--shadow);
}
.hero-copy, .sub-hero-copy, .panel, .bio-card { padding: 42px; }
.hero-art, .sub-hero-art { overflow: hidden; min-height: 680px; }
.hero-art img, .sub-hero-art img { width: 100%; height: 100%; object-fit: cover; }
.eyebrow {
  margin: 0 0 14px;
  color: var(--accent-soft);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .22em;
}
h1, h2, h3 {
  margin: 0;
  line-height: .95;
  letter-spacing: -.03em;
}
h1 { font-size: clamp(4rem, 11vw, 8.4rem); text-transform: uppercase; }
h2 { font-size: clamp(2.35rem, 5vw, 4.2rem); text-transform: uppercase; }
h3 { font-size: 1.45rem; text-transform: uppercase; }
.hero-line {
  margin: 18px 0 0;
  max-width: 15ch;
  font-size: clamp(1.65rem, 2.8vw, 2.8rem);
  line-height: 1.07;
}
.hero-line.smaller { max-width: 12ch; }
.hero-body, .section-heading p, .release-copy p, .panel p, .bio-card p, .catalog-meta span, .link-card span, .site-footer p, .member p, figcaption span {
  color: var(--muted);
  line-height: 1.75;
}
.hero-body { max-width: 54ch; margin-top: 22px; font-size: 1.04rem; }
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.button-row.compact { margin-top: 22px; }
.button {
  min-height: 52px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: .95rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 700;
  border: 1px solid transparent;
}
.button:hover, .button:focus-visible { transform: translateY(-1px); }
.button-primary { background: var(--accent); color: #120d09; }
.button-secondary { background: rgba(255,255,255,.06); border-color: var(--line); }
.button-ghost { background: transparent; border-color: var(--line); color: var(--muted); }
.section-heading { margin-bottom: 18px; }
.narrow { max-width: 640px; }
.release-layout, .about-grid { display: grid; grid-template-columns: 1.04fr .96fr; gap: 24px; align-items: start; }
.release-card { display: grid; grid-template-columns: minmax(220px, 320px) 1fr; gap: 24px; padding: 24px; }
.release-art { border-radius: 22px; overflow: hidden; }
.embed-card { padding: 16px; }
.portrait-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
  margin-top: 8px;
}
.portrait-card {
  margin: 0;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(25,21,20,.96), rgba(17,15,14,.96));
  box-shadow: var(--shadow);
}
.portrait-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: contain;
  object-position: center center;
  background: linear-gradient(180deg, #121110, #0e0d0c);
}
.portrait-card-center { transform: none; }
.portrait-card figcaption {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 16px 18px; text-align: center;
}
.portrait-card strong { font-size: 1.12rem; }
.portrait-card span { font-size: .92rem; }
.photo-editorial {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 28px;
}
.cinema {
  margin: 0;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: var(--panel-strong);
  box-shadow: var(--shadow);
}
.cinema img { width: 100%; height: 100%; object-fit: cover; }
.feature-wide { max-height: 760px; }
.editorial-row {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 18px;
}
.tall-shot img { aspect-ratio: 4 / 5; object-fit: cover; }
.mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 18px;
}
.mosaic .cinema img { aspect-ratio: 4 / 3; }
.links-grid {
  display: grid;
  gap: 18px;
}
.catalog-grid { grid-template-columns: 1.3fr 1fr 1fr 1fr; }
.catalog-card { overflow: hidden; }
.catalog-card img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.catalog-meta {
  padding: 16px 16px 18px; text-align: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.catalog-meta strong { font-size: 1.02rem; }
.featured-card { transform: translateY(-10px); }
.links-grid { grid-template-columns: repeat(3, 1fr); }
.link-card {
  padding: 24px;
  min-height: 142px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.link-card strong {
  font-size: 1.38rem;
  text-transform: uppercase;
}
.about-side {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.side-note { padding: 6px 8px 2px; }
.member + .member { padding-top: 14px; border-top: 1px solid var(--line); }
.side-photo {
  overflow: hidden;
  border-radius: 22px;
}
.side-photo img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.portrait-full img { aspect-ratio: 3 / 4; object-fit: contain; background: linear-gradient(180deg, #121110, #0e0d0c); }
.site-footer { padding: 12px 0 42px; }
.text-link { color: var(--accent-soft); font-weight: 700; }
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }
@media (max-width: 1080px) {
  .hero, .sub-hero, .release-layout, .about-grid, .editorial-row, .links-grid, .mosaic { grid-template-columns: 1fr; }
  .release-card { grid-template-columns: 1fr; }
  .featured-card, .portrait-card-center { transform: none; }
  .hero-art, .sub-hero-art { min-height: 440px; }
}
@media (max-width: 1024px) {
  .primary-nav {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 26px;
    background: rgba(17,16,16,.97);
  }
  .primary-nav.open { display: flex; }
  .nav-toggle { display: block; }
  .hero-copy, .sub-hero-copy, .panel, .bio-card { padding: 30px; }
  .portrait-strip, .links-grid { grid-template-columns: 1fr; }
  h1 { font-size: clamp(3.2rem, 18vw, 5.3rem); }
  h2 { font-size: clamp(2rem, 10vw, 3rem); }
  .hero, .sub-hero { min-height: auto; }
}


.press-links { padding: 32px; margin-top: 22px; }
.editorial-copy h2 { margin-bottom: 18px; }
