@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600&family=EB+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500;1,600&display=swap');

:root {
  --ink: #111114;
  --navy: #0e1428;
  --paper: #f1f0ec;
  --blush: #e7e4de;
  --teal: #227c9d;
  --teal-light: #56a9c8;
  --muted: rgba(250, 240, 240, 0.67);
  --line: rgba(251, 254, 249, 0.14);
  --line-strong: rgba(251, 254, 249, 0.25);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
  --serif: "EB Garamond", Georgia, "Times New Roman", serif;
  --sans: "DM Sans", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container: 1200px;
  --header-height: 78px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--paper);
  background: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

::selection {
  color: var(--paper);
  background: var(--teal);
}

:focus-visible {
  outline: 2px solid var(--teal-light);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 16px;
  color: var(--navy);
  background: var(--paper);
  border-radius: 2px;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  border-bottom: 1px solid var(--line);
  background: rgba(17, 17, 20, 0.9);
  backdrop-filter: blur(20px) saturate(140%);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  position: relative;
  z-index: 102;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: 0 0 auto;
  letter-spacing: -0.01em;
}

.brand img {
  width: 39px;
  height: 39px;
}

.brand-text {
  display: grid;
  line-height: 1.04;
}

.brand-text strong {
  font-family: var(--serif);
  font-size: 1.17rem;
  font-weight: 400;
}

.brand-text span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.61rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(15px, 2vw, 28px);
}

.site-nav a {
  position: relative;
  padding: 11px 0;
  color: rgba(251, 254, 249, 0.72);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 1px;
  background: var(--teal-light);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--paper);
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--paper);
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 200ms ease, opacity 200ms ease;
}

.nav-open .nav-toggle span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.nav-open .nav-toggle span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

main {
  overflow: hidden;
}

.section {
  position: relative;
  padding-block: clamp(76px, 9vw, 132px);
}

.section--compact {
  padding-block: clamp(58px, 7vw, 92px);
}

.section--navy {
  background: var(--navy);
}

.section--paper {
  color: var(--navy);
  background: var(--paper);
}

.section-rule {
  border-top: 1px solid var(--line);
}

.eyebrow {
  display: none;
  align-items: center;
  gap: 10px;
  margin: 0 0 19px;
  color: var(--teal-light);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 1px;
  background: currentColor;
  content: "";
}

.section--paper .eyebrow {
  color: var(--teal);
}

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

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 0.98;
  overflow-wrap: break-word;
}

h1 {
  max-width: 900px;
  margin-bottom: 27px;
  font-size: clamp(4rem, 9.5vw, 8.4rem);
  letter-spacing: -0.045em;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.7rem, 5vw, 5.1rem);
  letter-spacing: -0.035em;
}

h3 {
  margin-bottom: 13px;
  font-size: clamp(1.65rem, 2.7vw, 2.35rem);
  letter-spacing: -0.02em;
}

.display-italic {
  color: var(--blush);
  font-style: normal;
}

.section--paper .display-italic {
  color: var(--teal);
}

em {
  font-style: normal;
}

.piece-link em,
.card[href] h3,
body[data-score-src] .page-hero h1 {
  font-style: italic;
}

body[data-score-src] .page-hero h1 .display-italic,
body[data-score-src] .work-detail__content h2 .display-italic {
  color: inherit;
}

.work-page .page-hero h1 {
  font-style: italic;
}

.lede {
  max-width: 670px;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
}

.section--paper .lede,
.section--paper .muted {
  color: rgba(14, 20, 40, 0.68);
}

.muted {
  color: var(--muted);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 200ms ease, background-color 200ms ease, border-color 200ms ease, transform 200ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  color: var(--paper);
  background: var(--teal);
}

.button--primary:hover {
  background: #2c8eb2;
}

.button--ghost {
  color: var(--paper);
  border-color: var(--line-strong);
  background: rgba(251, 254, 249, 0.03);
}

.button--ghost:hover {
  border-color: var(--teal-light);
  background: rgba(34, 124, 157, 0.09);
}

.section--paper .button--ghost {
  color: var(--navy);
  border-color: rgba(14, 20, 40, 0.24);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-block: 3px;
  color: var(--paper);
  border-bottom: 1px solid rgba(86, 169, 200, 0.65);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: gap 180ms ease, color 180ms ease;
}

.text-link::after {
  content: "\2197";
}

.text-link--internal::after {
  content: "\2192";
}

.text-link:hover {
  gap: 15px;
  color: var(--teal-light);
}

.section--paper .text-link {
  color: var(--navy);
}

.hero {
  min-height: calc(100svh - var(--header-height));
  display: grid;
  align-items: center;
  padding-block: clamp(54px, 8vw, 104px);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(330px, 0.78fr);
  align-items: center;
  gap: clamp(45px, 8vw, 120px);
}

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

.hero-copy .lede {
  max-width: 590px;
}

.hero-name span {
  display: block;
}

.hero-name span:last-child {
  margin-left: clamp(0px, 5vw, 72px);
  color: var(--blush);
  font-style: normal;
}

.hero-art {
  position: relative;
  width: min(100%, 475px);
  justify-self: end;
}

.hero-art::before {
  position: absolute;
  top: -24px;
  right: -24px;
  width: 44%;
  height: 42%;
  border-top: 1px solid var(--teal-light);
  border-right: 1px solid var(--teal-light);
  content: "";
}

.hero-art::after {
  position: absolute;
  bottom: -22px;
  left: -22px;
  width: 34%;
  height: 28%;
  border-bottom: 1px solid rgba(250, 240, 240, 0.5);
  border-left: 1px solid rgba(250, 240, 240, 0.5);
  content: "";
}

.image-slot {
  position: relative;
  display: grid;
  min-height: 360px;
  overflow: hidden;
  place-items: center;
  border: 1px solid var(--line);
  background: var(--navy);
  box-shadow: var(--shadow);
}

.image-slot--portrait {
  aspect-ratio: 4 / 5;
}

.image-slot--landscape {
  aspect-ratio: 16 / 10;
  min-height: 0;
}

.image-slot--square {
  aspect-ratio: 1;
  min-height: 0;
}

.image-slot > img {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--focus, 50% 50%);
}

.image-slot::before,
.image-slot::after {
  position: absolute;
  border: 1px solid rgba(86, 169, 200, 0.28);
  border-radius: 50%;
  content: "";
}

.image-slot::before {
  width: 72%;
  aspect-ratio: 1;
}

.image-slot::after {
  width: 48%;
  aspect-ratio: 1;
}

.image-slot__label {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  color: rgba(251, 254, 249, 0.72);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-align: center;
  text-transform: uppercase;
}

.image-slot__label svg {
  width: 34px;
  margin-bottom: 13px;
  color: var(--teal-light);
}

.hero-index {
  position: absolute;
  right: 14px;
  bottom: 11px;
  color: rgba(251, 254, 249, 0.42);
  font-family: var(--serif);
  font-size: 0.95rem;
  font-style: normal;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 54px;
  padding-top: 23px;
  border-top: 1px solid var(--line);
}

.hero-meta span {
  display: block;
  color: rgba(251, 254, 249, 0.44);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-meta strong {
  display: block;
  margin-top: 6px;
  color: var(--blush);
  font-family: var(--serif);
  font-size: 1.12rem;
  font-weight: 400;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: clamp(36px, 5vw, 66px);
}

.section-heading h2,
.section-heading p {
  margin-bottom: 0;
}

.section-heading .lede {
  max-width: 430px;
  padding-bottom: 8px;
}

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

.card {
  position: relative;
  padding: clamp(26px, 4vw, 46px);
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(251, 254, 249, 0.035);
  transition: border-color 220ms ease, transform 220ms ease, background-color 220ms ease;
}

.card:hover {
  border-color: rgba(86, 169, 200, 0.58);
  background: rgba(34, 124, 157, 0.07);
  transform: translateY(-4px);
}

.section--paper .card {
  border-color: rgba(14, 20, 40, 0.15);
  background: rgba(14, 20, 40, 0.025);
}

.section--paper .card:hover {
  border-color: rgba(34, 124, 157, 0.52);
  background: rgba(34, 124, 157, 0.07);
}

.section--paper .card__number {
  color: rgba(14, 20, 40, 0.68);
}

.section--paper .card p {
  color: rgba(14, 20, 40, 0.65);
}

.card__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: clamp(36px, 7vw, 90px);
}

.card__number {
  color: rgba(251, 254, 249, 0.38);
  font-family: var(--serif);
  font-size: 0.92rem;
  font-style: normal;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal-light);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.status::before {
  width: 6px;
  height: 6px;
  background: currentColor;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(34, 124, 157, 0.13);
  content: "";
}

.card h3 {
  max-width: 420px;
}

.card p {
  max-width: 500px;
  margin-bottom: 24px;
  color: var(--muted);
}

.featured-works-section {
  padding-block: clamp(42px, 5vw, 64px);
}

.featured-works-section .section-heading {
  margin-bottom: 28px;
}

.featured-works-section .section-heading h2 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
}

.featured-works-section .section-heading .lede {
  max-width: 500px;
  font-size: 0.95rem;
}

.featured-works-section .card {
  padding: 24px;
  color: var(--paper);
  border-color: var(--navy);
  background: var(--navy);
}

.featured-works-section .card:hover {
  border-color: var(--teal);
  background: var(--navy);
}

.featured-works-section .card__topline {
  margin-bottom: 26px;
}

.featured-works-section .card h3 {
  font-size: clamp(1.65rem, 3vw, 2.2rem);
}

.featured-works-section .card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.featured-works-section .card__number {
  color: rgba(251, 254, 249, 0.55);
}

.feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  align-items: center;
  gap: clamp(48px, 8vw, 118px);
}

.feature-grid--reverse {
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
}

.feature-grid--reverse .feature-media {
  order: 2;
}

.feature-copy p:not(.eyebrow) {
  max-width: 580px;
  color: var(--muted);
}

.feature-copy,
.project-copy,
.contact-copy {
  min-width: 0;
}

.section--paper .feature-copy p:not(.eyebrow) {
  color: rgba(14, 20, 40, 0.69);
}

.detail-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 30px;
  margin: 30px 0 0;
  padding: 25px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.section--paper .detail-list {
  border-color: rgba(14, 20, 40, 0.14);
}

.detail-list span {
  display: block;
  color: rgba(251, 254, 249, 0.42);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section--paper .detail-list span {
  color: rgba(14, 20, 40, 0.5);
}

.detail-list strong {
  display: block;
  margin-top: 4px;
  font-family: var(--serif);
  font-size: 1.12rem;
  font-weight: 400;
}

.work-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.work-list li {
  display: grid;
  grid-template-columns: 62px 1fr auto;
  align-items: center;
  gap: 20px;
  min-height: 103px;
  padding: 18px 4px;
  border-bottom: 1px solid var(--line);
}

.work-list__number {
  color: rgba(251, 254, 249, 0.35);
  font-family: var(--serif);
  font-style: normal;
}

.work-list h3 {
  margin: 0;
  font-size: clamp(1.55rem, 3vw, 2.65rem);
}

.work-list__meta {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-align: right;
  text-transform: uppercase;
}

.page-hero {
  position: relative;
  display: flex;
  min-height: clamp(300px, 38svh, 430px);
  align-items: end;
  padding-block: clamp(64px, 8vw, 96px) clamp(44px, 5vw, 64px);
  border-bottom: 1px solid var(--line);
}

.page-hero::after {
  position: absolute;
  right: max(24px, calc((100vw - var(--container)) / 2));
  bottom: 0;
  width: min(36vw, 440px);
  height: 1px;
  background: var(--teal);
  content: "";
}

.page-hero h1 {
  margin-bottom: 20px;
  font-size: clamp(3.2rem, 7vw, 6rem);
}

.page-hero .lede {
  max-width: 720px;
  margin-bottom: 0;
}

.page-count {
  position: absolute;
  right: max(24px, calc((100vw - var(--container)) / 2));
  bottom: 28px;
  color: rgba(251, 254, 249, 0.38);
  font-family: var(--serif);
  font-style: normal;
}

.project-stack {
  display: grid;
  gap: clamp(74px, 10vw, 138px);
}

.project {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.82fr);
  align-items: center;
  gap: clamp(42px, 7vw, 95px);
}

.project:nth-child(even) {
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.08fr);
}

.project:nth-child(even) .project-media {
  order: 2;
}

.project-copy .status {
  margin-bottom: 25px;
}

.project-copy > p {
  max-width: 520px;
  color: var(--muted);
}

.project-facts {
  margin: 28px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.project-facts li {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.83rem;
}

.project-facts span {
  color: rgba(251, 254, 249, 0.45);
}

.project-facts strong {
  font-weight: 500;
  text-align: right;
}

.about-bio {
  max-width: 1000px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3.8vw, 3.35rem);
  line-height: 1.16;
  letter-spacing: -0.025em;
}

.about-bio em {
  color: var(--teal-light);
  font-style: normal;
}

.about-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(50px, 7vw, 90px);
  background: var(--line);
  border: 1px solid var(--line);
}

.about-fact {
  min-height: 180px;
  padding: 30px;
  background: var(--ink);
}

.about-fact span {
  color: var(--teal-light);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.about-fact p {
  margin: 32px 0 0;
  color: var(--blush);
  font-family: var(--serif);
  font-size: 1.45rem;
  line-height: 1.25;
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 16px;
}

.work-tile {
  grid-column: span 4;
  display: flex;
  min-height: 310px;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--navy);
  transition: border-color 220ms ease, transform 220ms ease;
}

.work-tile:nth-child(1),
.work-tile:nth-child(7) {
  grid-column: span 8;
}

.work-tile:hover {
  border-color: rgba(86, 169, 200, 0.55);
  transform: translateY(-4px);
}

.work-tile__number {
  color: rgba(251, 254, 249, 0.35);
  font-family: var(--serif);
  font-style: normal;
}

.work-tile p {
  margin: 0 0 10px;
  color: var(--teal-light);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.work-tile h2 {
  max-width: 500px;
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.45rem);
}

.works-catalogue,
.works-accordion {
  max-width: 920px;
}

.works-sort {
  display: flex;
  gap: 12px 26px;
  margin-bottom: 34px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(14, 20, 40, 0.2);
}

.works-sort button {
  padding: 0;
  color: rgba(14, 20, 40, 0.5);
  border: 0;
  border-bottom: 1px solid transparent;
  background: transparent;
  cursor: pointer;
  font-weight: 600;
}

.works-sort button[aria-pressed="true"] {
  color: var(--teal);
  border-color: currentColor;
}

.works-panel[hidden] {
  display: none;
}

.instrument-group {
  border-top: 1px solid var(--line-strong);
}

.instrument-group:last-child {
  border-bottom: 1px solid var(--line-strong);
}

.instrument-group summary {
  display: flex;
  min-height: 94px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--blush);
  cursor: pointer;
  font-family: var(--serif);
  font-size: clamp(1.75rem, 4vw, 2.65rem);
  line-height: 1.1;
  list-style: none;
}

.instrument-group summary::-webkit-details-marker {
  display: none;
}

.instrument-group summary small {
  margin-left: 8px;
  color: var(--teal-light);
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 500;
}

.instrument-group__icon {
  position: relative;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
}

.instrument-group__icon::before,
.instrument-group__icon::after {
  position: absolute;
  top: 10px;
  left: 0;
  width: 22px;
  height: 1px;
  background: var(--teal-light);
  content: "";
  transition: transform 180ms ease;
}

.instrument-group__icon::after {
  transform: rotate(90deg);
}

.instrument-group[open] .instrument-group__icon::after {
  transform: rotate(0);
}

.instrument-group__body {
  display: grid;
  padding: 0 0 32px;
}

.piece-link {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  gap: 10px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  transition: color 180ms ease, padding 180ms ease;
}

.piece-link:hover {
  padding-left: 10px;
  color: var(--teal-light);
}

.piece-link em {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 3vw, 1.7rem);
}

.piece-link span {
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.piece-link .piece-year {
  color: rgba(14, 20, 40, 0.58);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.piece-link .piece-title {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  color: inherit;
  letter-spacing: 0;
  text-transform: none;
}

  .piece-link .piece-title em {
    font-family: var(--serif);
    font-style: italic;
  }


.works-chronological {
  border-top: 1px solid rgba(14, 20, 40, 0.2);
}

.section--paper .instrument-group {
  border-color: rgba(14, 20, 40, 0.2);
}

.section--paper .instrument-group summary,
.section--paper .piece-link {
  color: var(--navy);
}

.section--paper .piece-link {
  border-color: rgba(14, 20, 40, 0.14);
}

.section--paper .piece-link span {
  color: rgba(14, 20, 40, 0.6);
}

.section--paper .program-notes {
  color: rgba(14, 20, 40, 0.72);
}

body[data-score-src] main > .section:not(.section--navy) {
  color: var(--navy);
  background: var(--paper);
}

body[data-score-src] main > .section:not(.section--navy) .program-notes {
  color: rgba(14, 20, 40, 0.72);
}

.work-detail {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(380px, 1.28fr);
  gap: clamp(50px, 9vw, 130px);
}

.work-detail__label {
  margin: 0;
  color: var(--teal-light);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.work-detail__content h2 {
  margin-top: 0;
}

.program-notes {
  max-width: 720px;
  color: var(--muted);
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  line-height: 1.45;
}

.program-notes--long {
  max-width: 820px;
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.75;
}

.program-note-credit {
  margin-top: 28px;
  font-size: 0.88rem;
  font-weight: 600;
}

.work-detail__content .media-embed + .text-link,
.work-detail__content .media-embed + .button {
  margin-top: 24px;
}

.score-slot {
  min-height: 250px;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid var(--line-strong);
  background: var(--ink);
}

.score-slot svg {
  width: 42px;
  margin-bottom: 32px;
  color: var(--teal-light);
}

.score-slot h2 {
  margin-bottom: 10px;
}

.score-slot p {
  max-width: 580px;
  margin-bottom: 0;
  color: var(--muted);
}

.score-slot__button {
  margin-top: 28px;
}

.back-link {
  margin-top: 32px;
}

.work-inquiry {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: clamp(38px, 5vw, 64px);
  padding-top: 28px;
  border-top: 1px solid currentColor;
}

.work-inquiry strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.15rem);
  font-weight: 500;
}

.work-inquiry strong em {
  font-style: italic;
}

.work-inquiry p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.section--paper .work-inquiry {
  border-color: rgba(14, 20, 40, 0.18);
}

.section--paper .work-inquiry p {
  color: rgba(14, 20, 40, 0.65);
}

.media-embed {
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background: var(--ink);
}

.media-embed--video {
  aspect-ratio: 16 / 9;
}

.media-embed--audio {
  height: 120px;
}

.media-embed--score {
  min-height: 520px;
}

.media-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.media-embed audio {
  display: block;
  width: 100%;
  height: 100%;
}

.audio-player {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 22px 0;
  border-block: 1px solid rgba(241, 240, 236, 0.22);
}

.audio-player audio {
  display: none;
}

.audio-player__toggle {
  display: grid;
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  place-items: center;
  padding: 0;
  color: var(--navy);
  border: 0;
  border-radius: 50%;
  background: var(--teal-light);
  cursor: pointer;
}

.audio-player__toggle span {
  margin-left: 3px;
  font-size: 1rem;
}

.audio-player__toggle[aria-pressed="true"] span {
  margin-left: 0;
}

.audio-player__toggle:focus-visible {
  outline: 2px solid var(--paper);
  outline-offset: 4px;
}

.audio-player__body {
  min-width: 0;
  flex: 1;
}

.audio-player__meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
}

.audio-player__meta strong {
  color: var(--paper);
  font-family: var(--serif);
  font-size: 1.2rem;
  font-style: italic;
  font-weight: 500;
}

.audio-player__meta span {
  color: var(--muted);
  font-size: 0.74rem;
}

.audio-player__controls {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) 40px;
  align-items: center;
  gap: 12px;
}

.audio-player__time {
  color: var(--muted);
  font-size: 0.72rem;
  font-variant-numeric: tabular-nums;
}

.audio-player__time:last-child {
  text-align: right;
}

.audio-player__seek {
  width: 100%;
  height: 18px;
  margin: 0;
  accent-color: var(--teal-light);
  cursor: pointer;
}

.media-embed object {
  display: block;
  width: 100%;
  min-height: 520px;
  border: 0;
}

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

.media-card {
  display: flex;
  min-height: 340px;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--line);
  background: var(--ink);
}

.media-card__icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: auto;
  color: var(--teal-light);
  border: 1px solid rgba(86, 169, 200, 0.46);
  place-items: center;
  font-family: var(--serif);
  font-size: 1.1rem;
  font-style: normal;
}

.media-card h2 {
  margin: 44px 0 8px;
  font-size: 2.4rem;
}

.media-card p {
  color: var(--muted);
}

.media-card .text-link {
  align-self: flex-start;
  margin-top: 12px;
}

.media-links-section .section-heading {
  margin-bottom: 28px;
}

.media-links-section .section-heading h2 {
  font-size: clamp(2.1rem, 4vw, 3.4rem);
}

.media-links-section .media-card {
  min-height: 0;
  padding: 22px;
}

.media-links-section .media-card__icon {
  width: 36px;
  height: 36px;
  margin-bottom: 22px;
  font-size: 0.85rem;
}

.media-links-section .media-card__icon svg {
  width: 20px;
  height: 20px;
}

.media-links-section .media-card:nth-child(2) .media-card__icon {
  background: none;
}

.media-links-section .media-card:nth-child(2) .media-card__icon::before {
  width: 22px;
  height: 22px;
  background: currentColor;
  content: "";
  -webkit-mask: url("assets/linket-logo.png") center / contain no-repeat;
  mask: url("assets/linket-logo.png") center / contain no-repeat;
}

.media-links-section .media-card:nth-child(2) .media-card__icon svg {
  display: none;
}

.media-links-section .media-card h2 {
  margin: 0 0 14px;
  font-size: 1.75rem;
}

.media-links-section .media-card .text-link {
  margin-top: 0;
}

.media-links-section .media-card .status {
  margin-top: 2px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1.28fr);
  gap: clamp(60px, 9vw, 130px);
}

.contact-copy {
  position: sticky;
  top: calc(var(--header-height) + 42px);
  align-self: start;
}

.contact-copy h2 {
  font-size: clamp(3rem, 5.7vw, 5.4rem);
}

.contact-methods {
  margin: 38px 0 0;
  padding: 0;
  list-style: none;
}

.contact-methods li {
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.contact-methods span {
  display: block;
  color: rgba(251, 254, 249, 0.42);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-methods a {
  display: inline-block;
  margin-top: 5px;
  color: var(--blush);
  overflow-wrap: anywhere;
}

.contact-form {
  padding: clamp(26px, 4vw, 50px);
  color: var(--navy);
  border: 1px solid var(--paper);
  background: var(--paper);
}

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

.field {
  margin-bottom: 23px;
}

.field label {
  display: block;
  margin-bottom: 8px;
  color: rgba(14, 20, 40, 0.72);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  color: var(--navy);
  border: 1px solid rgba(14, 20, 40, 0.26);
  border-radius: 2px;
  outline: none;
  background: #e5e4e0;
  transition: border-color 180ms ease, background 180ms ease;
}

.field input,
.field select {
  height: 52px;
  padding: 0 15px;
}

.field textarea {
  min-height: 170px;
  padding: 14px 15px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--teal);
  background: #f7f6f2;
}

.field select option {
  color: var(--navy);
  background: var(--paper);
}

.form-note {
  margin: 16px 0 0;
  color: rgba(14, 20, 40, 0.62);
  font-size: 0.76rem;
}

.form-status {
  min-height: 1.5em;
  margin: 15px 0 0;
  color: var(--teal-light);
  font-size: 0.82rem;
}

.cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-strip h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.7rem, 5.4vw, 5.2rem);
}

.compact-cta {
  padding-block: clamp(34px, 4vw, 52px);
}

.compact-cta .cta-strip {
  max-width: 900px;
  gap: clamp(28px, 6vw, 80px);
}

.compact-cta .cta-strip h2 {
  max-width: 620px;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.05;
}

.compact-cta .button {
  flex: 0 0 auto;
}

.site-footer {
  padding: 55px 0 30px;
  border-top: 1px solid var(--line);
  background: var(--ink);
}

.footer-top {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 45px;
}

.footer-title {
  display: none;
  max-width: 560px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1;
  letter-spacing: -0.03em;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 22px;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links a:hover {
  color: var(--teal-light);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  color: rgba(251, 254, 249, 0.54);
  border-top: 1px solid var(--line);
  font-size: 0.69rem;
  letter-spacing: 0.06em;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1040px) {
  .brand-text span {
    display: none;
  }

  .site-nav {
    gap: 15px;
  }

  .site-nav a {
    font-size: 0.75rem;
  }

  .hero-grid {
    gap: 46px;
  }

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

  .media-card:last-child {
    grid-column: 1 / -1;
    min-height: 260px;
  }

  .media-links-section .media-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .media-links-section .media-card:last-child {
    grid-column: auto;
    min-height: 0;
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 70px;
  }

  .container {
    width: min(calc(100% - 36px), var(--container));
  }

  .brand-text span {
    display: block;
  }

  .nav-toggle {
    position: relative;
    z-index: 102;
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 0 auto auto 0;
    z-index: 101;
    display: flex;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    padding: 108px 28px 42px;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    overflow-y: auto;
    background: var(--ink);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 220ms ease, transform 220ms ease, visibility 0s linear 220ms;
  }

  .site-nav a {
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    font-family: var(--serif);
    font-size: clamp(1.75rem, 7vw, 2.6rem);
    font-weight: 400;
    letter-spacing: -0.02em;
  }

  .site-nav a::after {
    display: none;
  }

  .nav-open .site-nav {
    opacity: 1;
    visibility: visible;
    transform: none;
    transition-delay: 0s;
  }

  html:not(.js) .site-header {
    height: auto;
  }

  html:not(.js) .nav-shell {
    flex-wrap: wrap;
    padding-block: 14px;
  }

  html:not(.js) .nav-toggle {
    display: none;
  }

  html:not(.js) .site-nav {
    position: static;
    width: 100%;
    height: auto;
    padding: 14px 0 0;
    flex-direction: row;
    flex-wrap: wrap;
    overflow: visible;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
  }

  html:not(.js) .site-nav a {
    width: auto;
    padding: 8px 12px 8px 0;
    border: 0;
    font-family: var(--sans);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.02em;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid,
  .feature-grid,
  .feature-grid--reverse,
  .project,
  .project:nth-child(even),
  .contact-grid,
  .work-detail {
    grid-template-columns: 1fr;
  }

  .hero-art {
    width: min(82vw, 500px);
    justify-self: center;
  }

  .feature-grid--reverse .feature-media,
  .project:nth-child(even) .project-media {
    order: 0;
  }

  .project-media {
    width: min(100%, 680px);
  }

  .contact-copy {
    position: static;
  }

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

  .work-tile,
  .work-tile:nth-child(1),
  .work-tile:nth-child(7) {
    grid-column: auto;
  }

  .work-tile:first-child,
  .work-tile:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding-block: 70px;
  }

  .section--compact {
    padding-block: 54px;
  }

  .compact-cta {
    padding-block: 38px;
  }

  .brand-text strong {
    font-size: 1.03rem;
  }

  .brand-text span {
    font-size: 0.55rem;
  }

  .hero {
    padding-block: 52px 76px;
  }

  .eyebrow {
    gap: 8px;
    font-size: 0.62rem;
    letter-spacing: 0.12em;
  }

  .eyebrow::before {
    width: 18px;
  }

  .hero-name span:last-child {
    margin-left: 0;
  }

  .button-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button-row .button {
    width: 100%;
  }

  .hero-meta,
  .card-grid,
  .detail-list,
  .about-facts,
  .works-grid,
  .media-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .hero-meta {
    gap: 14px;
  }

  .hero-meta div {
    padding-bottom: 12px;
    border-bottom: 1px solid var(--line);
  }

  .hero-art {
    width: calc(100% - 24px);
  }

  .hero-art::before {
    top: -13px;
    right: -13px;
  }

  .hero-art::after {
    bottom: -13px;
    left: -13px;
  }

  .image-slot {
    min-height: 300px;
  }

  .image-slot--landscape,
  .image-slot--square {
    min-height: 0;
  }

  .section-heading {
    display: block;
  }

  .section-heading .lede {
    margin-top: 18px;
  }

  .card__topline {
    margin-bottom: 45px;
  }

  .work-list li {
    grid-template-columns: 40px 1fr;
    gap: 12px;
  }

  .work-list__meta {
    grid-column: 2;
    text-align: left;
  }

  .instrument-group summary {
    min-height: 82px;
  }

  .piece-link {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  .works-catalogue .piece-link {
    align-items: baseline;
    flex-direction: row;
    gap: 10px;
  }

  .works-catalogue .piece-title {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  .page-hero {
    min-height: 300px;
    align-items: end;
    padding-block: 64px 54px;
  }

  .page-count {
    right: 18px;
    bottom: 20px;
  }

  .about-facts {
    gap: 1px;
  }

  .about-fact {
    min-height: 150px;
  }

  .work-tile,
  .work-tile:first-child,
  .work-tile:last-child {
    grid-column: auto;
    min-height: 260px;
  }

  .media-card,
  .media-card:last-child {
    grid-column: auto;
    min-height: 290px;
  }

  .media-links-section .media-grid {
    grid-template-columns: 1fr;
  }

  .media-links-section .media-card,
  .media-links-section .media-card:last-child {
    min-height: 0;
  }

  .contact-grid {
    gap: 48px;
  }

  .contact-form {
    margin-inline: -2px;
  }

  .cta-strip,
  .footer-top,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .cta-strip .button {
    width: 100%;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

/* Compact individual work pages */
.work-page .page-hero,
body[data-score-src] .page-hero {
  min-height: 230px;
  padding-block: 46px 38px;
}

.work-page .page-hero h1,
body[data-score-src] .page-hero h1 {
  margin-bottom: 10px;
  font-size: clamp(2.8rem, 5vw, 4.8rem);
}

.work-page main > .section,
body[data-score-src] main > .section {
  padding-block: clamp(48px, 5vw, 72px);
}

.work-page .work-detail,
body[data-score-src] .work-detail {
  grid-template-columns: 140px minmax(0, 1fr);
  gap: clamp(32px, 4vw, 58px);
}

.work-page .work-detail__content,
body[data-score-src] .work-detail__content {
  width: 100%;
  max-width: 850px;
}

.work-page .work-detail__content h2,
body[data-score-src] .work-detail__content h2 {
  margin-bottom: 18px;
  font-size: clamp(2.25rem, 4vw, 3.6rem);
}

.work-page .program-notes,
body[data-score-src] .program-notes {
  max-width: 850px;
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  line-height: 1.42;
}

.work-page .program-notes--long,
body[data-score-src] .program-notes--long {
  font-size: 0.98rem;
  line-height: 1.62;
}

.work-page .media-embed--score,
.work-page .media-embed object {
  min-height: 430px;
}

.work-page .back-link,
body[data-score-src] .back-link {
  margin-top: 22px;
}

@media (max-width: 860px) {
  .work-page .work-detail,
  body[data-score-src] .work-detail {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .work-page .page-hero,
  body[data-score-src] .page-hero {
    min-height: 210px;
    padding-block: 42px 34px;
  }

  .work-page main > .section,
  body[data-score-src] main > .section {
    padding-block: 44px;
  }

  .work-page .media-embed--score,
  .work-page .media-embed object {
    min-height: 360px;
  }
}

@media (max-width: 640px) {
  .work-page .page-hero,
  body[data-score-src] .page-hero {
    min-height: 190px;
    padding-block: 36px 30px;
  }

  .work-page main > .section,
  body[data-score-src] main > .section {
    padding-block: 36px;
  }

  .work-page .work-detail__content h2,
  body[data-score-src] .work-detail__content h2 {
    margin-bottom: 14px;
  }

  .work-page .media-embed--score,
  .work-page .media-embed object {
    min-height: 300px;
  }

  .audio-player {
    align-items: flex-start;
    gap: 14px;
    padding-block: 18px;
  }

  .audio-player__toggle {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
  }

  .audio-player__meta {
    display: block;
    margin-bottom: 10px;
  }

  .audio-player__meta span {
    display: block;
    margin-top: 2px;
  }

  .audio-player__controls {
    grid-template-columns: 34px minmax(0, 1fr) 34px;
    gap: 8px;
  }

  .work-inquiry {
    align-items: stretch;
    flex-direction: column;
    gap: 20px;
    padding-top: 22px;
  }

  .work-inquiry .button {
    width: 100%;
    text-align: center;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
