:root {
  --ink: #121212;
  --paper: #f3f1ec;
  --red: #b7352d;
  --line: #cbc8c0;
  --muted: #66645e;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.55;
}
.site-header {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4vw;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  background: rgba(243, 241, 236, 0.94);
  backdrop-filter: blur(12px);
  z-index: 10;
}
.brand {
  font-weight: 700;
  font-size: 1.25rem;
  color: inherit;
  text-decoration: none;
}
.site-header nav {
  display: flex;
  gap: 2rem;
}
.site-header nav a,
.social a {
  color: inherit;
  text-decoration: none;
}
.site-header nav a:hover,
.social a:hover {
  color: var(--red);
}
.menu {
  display: none;
  background: none;
  border: 1px solid var(--ink);
  padding: 0.5rem 0.8rem;
  font: inherit;
}
.hero {
  min-height: calc(100vh - 76px);
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  border-bottom: 1px solid var(--line);
}
.hero-copy {
  padding: 8vw 4vw 4vw;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--red);
}
h1 {
  font-size: clamp(4rem, 10vw, 10rem);
  line-height: 0.78;
  letter-spacing: -0.075em;
  margin: 1.25rem 0 0;
}
.hero-title {
  width: min(100%, 46rem);
  max-width: 100%;
  margin-top: auto;
}
.hero-title h1 {
  margin: 0;
  font-size: inherit;
  line-height: 1;
  letter-spacing: 0;
}
.hero-logo {
  display: block;
  width: 100%;
  height: auto;
}
.hero-role {
  margin: 0 0 1.25rem;
  color: var(--red);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 0.1em;
  line-height: 1.4;
}
h2 {
  font-size: clamp(3rem, 7vw, 7rem);
  line-height: 0.9;
  letter-spacing: -0.018em;
  font-variant-ligatures: none;
  margin: 0 0 4rem;
}
.lead {
  font-size: clamp(1.15rem, 2vw, 1.7rem);
  max-width: 20ch;
  margin: 0;
}
.hero figure {
  margin: 0;
  overflow: hidden;
  background: #222;
}
.hero figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  display: block;
}
.intro,
.works,
.records,
.media,
.projects {
  padding: 8rem 4vw;
  display: grid;
  grid-template-columns: 10vw 1fr;
  border-bottom: 1px solid var(--line);
}
.section-no {
  color: var(--red);
  margin: 0;
}
.large {
  font-size: clamp(1.5rem, 3vw, 2.7rem);
  line-height: 1.28;
  max-width: 38ch;
}
.columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 64rem;
  margin-top: 4rem;
}
.work-list {
  border-top: 1px solid var(--ink);
}
.work-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 2.5rem 0 3rem;
}
.work-tabs button {
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  padding: 0.65rem 1rem;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
}
.work-tabs button[aria-selected="true"] {
  background: var(--ink);
  color: var(--paper);
}
.work-tabs button:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; }
.work-group[hidden] { display: none; }
.work-list article {
  display: grid;
  grid-template-columns: 6rem fit-content(34rem) minmax(12rem, 1fr);
  column-gap: 1.25rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.work-list h4,
.work-list p {
  margin: 0;
}
.work-list h4 {
  font-size: 1rem;
  line-height: 1.25;
}
.work-list p {
  color: var(--muted);
  font-size: 0.9rem;
  font-style: italic;
  line-height: 1.35;
}
.work-list span {
  color: var(--red);
}
.work-list a {
  color: var(--red);
  font-style: normal;
}
.work-group + .work-group {
  margin-top: 0;
}
.work-group > h3 {
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.1;
  margin: 0 0 2rem;
}
.instrumentation {
  max-width: 66rem;
  margin: -0.5rem 0 2.5rem;
  color: var(--muted);
}
details {
  margin-top: 2rem;
}
summary {
  cursor: pointer;
  font-weight: 700;
}
.record-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem 1.5rem;
}
.album-open {
  appearance: none;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  padding: 0;
  margin: 0;
  text-align: left;
  cursor: pointer;
}
.record-grid img,
.type-cover {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  background: #ddd;
  filter: saturate(0.88);
  transition: 0.3s;
}
.album-open:hover img,
.album-open:hover .type-cover,
.album-open:focus-visible img,
.album-open:focus-visible .type-cover {
  filter: saturate(1.08);
  transform: translateY(-4px);
}
.album-open:focus-visible { outline: 2px solid var(--red); outline-offset: 6px; }
.type-cover {
  box-sizing: border-box;
  background: #111;
  color: #f4f1e9;
  padding: 12%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.type-cover strong { font-size: clamp(2rem, 3.5vw, 4rem); line-height: 0.9; letter-spacing: -0.06em; }
.type-cover small { color: var(--red); font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; }
.album-caption {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.8rem;
  font-size: 0.9rem;
}
.album-caption > span { color: var(--muted); }
.album-dialog {
  width: min(76rem, calc(100% - 2rem));
  max-height: calc(100vh - 2rem);
  box-sizing: border-box;
  border: 0;
  border-radius: 0;
  padding: clamp(1.5rem, 4vw, 4rem);
  background: var(--paper);
  color: var(--ink);
  overflow: auto;
}
.album-dialog::backdrop { background: rgba(8, 8, 8, 0.76); backdrop-filter: blur(5px); }
.dialog-close {
  position: sticky;
  z-index: 2;
  top: 0;
  float: right;
  border: 0;
  background: var(--red);
  color: white;
  width: 3rem;
  height: 3rem;
  font: 300 2rem/1 sans-serif;
  cursor: pointer;
}
.dialog-layout { display: grid; grid-template-columns: minmax(15rem, 0.7fr) minmax(20rem, 1.3fr); gap: clamp(2rem, 5vw, 5rem); align-items: start; }
.dialog-cover img, .dialog-cover .type-cover { width: 100%; aspect-ratio: 1; object-fit: cover; display: block; }
.dialog-year { color: var(--red); font-weight: 800; letter-spacing: 0.12em; margin: 0 0 0.5rem; }
.dialog-copy h2 { font-size: clamp(2.3rem, 5vw, 5rem); line-height: 0.92; letter-spacing: -0.05em; margin: 0 0 2.5rem; }
.dialog-body { font-size: 1rem; line-height: 1.65; }
.dialog-body > :first-child { margin-top: 0; }
.dialog-body blockquote { border-left: 3px solid var(--red); margin: 2rem 0; padding-left: 1.5rem; }
.dialog-body cite { display: block; margin-top: 1rem; font-style: normal; font-weight: 800; color: var(--red); }
.track-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 1rem;
  font-size: 0.875rem;
}
.track-columns h3 {
  margin: 0 0 0.75rem;
}
.track-columns ol {
  margin: 0;
  padding-left: 1.4rem;
}
.track-columns li {
  margin-bottom: 0.35rem;
}
figcaption {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.8rem;
  font-size: 0.9rem;
}
figcaption span {
  color: var(--muted);
}
.media-heading {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  align-items: flex-end;
  margin-bottom: 4rem;
}
.media-heading h2 {
  margin: 0;
}
.media-heading p {
  max-width: 27rem;
  margin: 0;
  color: var(--muted);
}
.media-grid {
  display: grid;
  grid-template-columns: 1.65fr 0.75fr;
  gap: 1.5rem;
}
.media-grid figure {
  margin: 0;
  overflow: hidden;
  background: #222;
}
.media-grid img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.media-wide {
  aspect-ratio: 16/9;
}
.media-detail {
  aspect-ratio: 3/4;
}
.media-detail img {
  object-position: 64% center;
  transform: scale(1.34);
}
.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 3rem;
  background: var(--line);
  border: 1px solid var(--line);
}
.project-grid a {
  min-height: 13rem;
  box-sizing: border-box;
  padding: clamp(1.5rem, 3vw, 3rem);
  background: var(--paper);
  color: var(--ink);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: background 0.2s, color 0.2s;
}
.project-hassasburgu {
  position: relative;
  overflow: hidden;
}
.project-hassasburgu img {
  width: min(72%, 240px);
  height: 105px;
  margin: auto auto 0.6rem;
  object-fit: contain;
  object-position: center;
  display: block;
}
.language-switch{display:flex;gap:2px;margin-left:1rem;padding:3px;border:1px solid var(--line);border-radius:999px}.language-switch button{appearance:none;border:0;border-radius:999px;background:transparent;color:var(--muted);padding:.46rem .6rem;font:700 .7rem/1 inherit;letter-spacing:.06em;cursor:pointer}.language-switch button:hover{color:var(--ink)}.language-switch button[aria-current="true"]{background:var(--ink);color:var(--paper)}
.project-grid a:hover,
.project-grid a:focus-visible {
  background: var(--ink);
  color: var(--paper);
}
.project-grid a > span {
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.project-grid strong {
  margin-top: 1.2rem;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1;
}
.project-grid small {
  display: block;
  margin-top: 0.8rem;
  font-size: 0.9rem;
  line-height: 1.4;
  color: var(--muted);
}
.project-grid i {
  margin-top: auto;
  padding-top: 2rem;
  font-style: normal;
  color: var(--muted);
}
footer {
  background: #171717;
  color: #f5f2eb;
  padding: 8rem 4vw 3rem;
}
.mail {
  font-size: clamp(2.5rem, 8vw, 8rem);
  line-height: 1;
  color: inherit;
  text-decoration: none;
  letter-spacing: -0.06em;
  display: block;
  margin: 2rem 0 5rem;
  overflow-wrap: anywhere;
}
.mail:hover {
  color: #e7584d;
}
.social {
  display: flex;
  gap: 2rem;
}
.copyright {
  margin-top: 6rem;
  color: #999;
}
@media (max-width: 800px) {
  .site-header{gap:.5rem}.site-header>.brand{order:1;margin-right:auto}.site-header>.language-switch{order:2;margin-left:0}.site-header>.menu{order:3}.site-header>nav{order:4}
  .site-header nav {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--paper);
    padding: 2rem 4vw;
    flex-direction: column;
    border-bottom: 1px solid var(--line);
  }
  .site-header nav.open {
    display: flex;
  }
  .menu {
    display: block;
  }
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-copy {
    min-height: 58vh;
  }
  .hero figure {
    height: 55vh;
  }
  .hero-title h1 { margin: 0; }
  .intro,
  .works,
  .records,
  .media,
  .projects {
    padding: 5rem 5vw;
    grid-template-columns: 1fr;
  }
  .section-no {
    margin-bottom: 3rem;
  }
  .columns {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .work-list article {
    grid-template-columns: 4.5rem 1fr;
    column-gap: 1rem;
    row-gap: 0.3rem;
  }
  .work-list article p {
    grid-column: 2;
  }
  .record-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 1rem;
  }
  .dialog-layout { grid-template-columns: 1fr; }
  .dialog-cover { max-width: 24rem; }
  .track-columns {
    grid-template-columns: 1fr;
  }
  footer {
    padding: 6rem 5vw 2rem;
  }
  .social {
    flex-wrap: wrap;
  }
  .media-heading {
    display: block;
  }
  .media-heading h2 {
    margin-bottom: 2rem;
  }
  .media-grid {
    grid-template-columns: 1fr;
  }
  .media-detail {
    display: none;
  }
  .project-grid { grid-template-columns: 1fr; }
}
@media (max-width: 440px) {
  .record-grid {
    grid-template-columns: 1fr;
  }
  .record-grid img {
    aspect-ratio: auto;
  }
  .type-cover { aspect-ratio: 1; }
  .album-dialog { width: 100%; max-height: 100%; height: 100%; margin: 0; }
  .dialog-cover { max-width: 15rem; }
  .hero figure {
    height: 46vh;
  }
}
