@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
  src: url('../fonts/cormorant-garamond-normal.woff2') format('woff2');
}

@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/cormorant-garamond-italic.woff2') format('woff2');
}

@font-face {
  font-family: 'Source Sans 3';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/source-sans-3-normal.woff2') format('woff2');
}

:root {
  --ivory: #f7f3ec;
  --ivory-deep: #ece4d8;
  --navy: #071a2b;
  --navy-soft: #102b43;
  --ink: #17202b;
  --muted: #5f6670;
  --gold: #946321;
  --gold-light: #d5ad6a;
  --burgundy: #5a181b;
  --white: #fffdf9;
  --line: rgba(23, 32, 43, 0.14);
  --shadow: 0 24px 70px rgba(7, 26, 43, 0.13);
  --radius: 3px;
  --max: 1180px;
  --display: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Source Sans 3', Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.62;
  text-rendering: optimizeLegibility;
}

body.nav-open { overflow: hidden; }

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

a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 0.2em; }

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

button { color: inherit; }

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  transform: translateY(-160%);
  padding: 10px 16px;
  background: var(--navy);
  color: var(--white);
}

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

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

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

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

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.02;
}

h1 { font-size: clamp(3.35rem, 7vw, 6.4rem); }
h2 { font-size: clamp(2.4rem, 4.5vw, 4.15rem); }
h3 { font-size: clamp(1.65rem, 2.4vw, 2.25rem); }

p { margin: 0 0 1.1em; }

.section-heading {
  position: relative;
  max-width: 760px;
  margin-bottom: 46px;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.section-heading::after,
.title-rule::after {
  content: '';
  display: block;
  width: 82px;
  height: 1px;
  margin-top: 18px;
  background: var(--gold);
}

.section-heading.center::after { margin-inline: auto; }

.section-heading p:last-child {
  max-width: 650px;
  margin-top: 20px;
  color: var(--muted);
}

.section-heading.center p:last-child { margin-inline: auto; }
.navy .eyebrow,
.navy .text-link { color: var(--gold-light); }

.button,
.text-link {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  padding: 12px 22px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  transition: 180ms ease;
}

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

.button.light {
  border-color: var(--gold-light);
  color: var(--white);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(7, 26, 43, 0.16);
}

.button.primary:hover { background: var(--navy-soft); }
.button.light:hover { background: rgba(255, 255, 255, 0.08); }

.button-badge {
  position: absolute;
  top: -9px;
  right: -9px;
  display: inline-flex;
  min-height: 20px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ivory);
  border-radius: 999px;
  padding: 5px 8px;
  background: var(--burgundy);
  box-shadow: 0 4px 10px rgba(7, 26, 43, 0.18);
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.54rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1;
  text-transform: uppercase;
}

.ruth-hero-button { position: relative; }

.text-link {
  min-height: 0;
  border: 0;
  border-bottom: 1px solid var(--gold);
  padding: 5px 0;
  color: var(--gold);
}

.text-link::after { content: '→'; }

/* Header */
.site-header {
  position: relative;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(247, 243, 236, 0.97);
}

.site-header.is-sticky {
  position: sticky;
  top: 0;
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-mark {
  position: relative;
  display: inline-grid;
  width: 60px;
  height: 56px;
  place-items: center;
  color: var(--gold);
  font-family: var(--display);
  font-size: 2.6rem;
  font-weight: 600;
  letter-spacing: -0.14em;
  line-height: 1;
}

.brand-mark span { grid-area: 1 / 1; }
.brand-mark span:first-child { transform: translateX(-7px); }
.brand-mark span:last-child { transform: translateX(8px); }

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--navy);
  transition: 180ms ease;
}

.nav-toggle[aria-expanded='true'] span:nth-child(2) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded='true'] span:nth-child(3) { opacity: 0; }
.nav-toggle[aria-expanded='true'] span:nth-child(4) { transform: translateY(-7px) rotate(-45deg); }

.site-nav ul {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 34px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav a {
  position: relative;
  display: block;
  padding: 27px 0 24px;
  font-size: 0.81rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 17px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  background: var(--gold);
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a[aria-current='page']::after { transform: scaleX(1); }
.site-nav a[aria-current='page'] { color: #8b5d20; }

/* Hero */
.home-hero {
  display: grid;
  height: 680px;
  min-height: 680px;
  grid-template-columns: minmax(0, 48%) minmax(0, 52%);
  overflow: hidden;
  background: var(--ivory);
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  padding: clamp(70px, 8vw, 120px) clamp(30px, 6vw, 95px);
}

.hero-copy::after {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  right: -120px;
  bottom: 0;
  width: 220px;
  background: linear-gradient(90deg, var(--ivory), transparent);
  pointer-events: none;
}

.hero-copy-inner { width: 100%; min-width: 0; max-width: 600px; margin-left: auto; }

.hero-copy h1 {
  color: var(--navy);
  font-size: clamp(3.4rem, 6vw, 6.25rem);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hero-tagline {
  max-width: 480px;
  margin: 28px 0 34px;
  color: #29323d;
  font-family: var(--display);
  font-size: clamp(1.45rem, 2.5vw, 2.15rem);
  font-style: italic;
  line-height: 1.2;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.swipe-hint { display: none; }

.hero-visual {
  position: relative;
  display: grid;
  height: 100%;
  min-height: 0;
  place-items: end center;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(7, 26, 43, 0.08), rgba(7, 26, 43, 0.5)),
    url('../images/concert-hall.webp') center / cover;
}

.portrait-frame {
  position: relative;
  z-index: 2;
  align-self: start;
  justify-self: end;
  width: min(78%, 520px);
  margin: 24px 5% 0 0;
}

.portrait-frame img {
  display: block;
  width: 100%;
  height: auto;
  filter: brightness(0.84) contrast(1.03) drop-shadow(0 28px 28px rgba(0, 0, 0, 0.38));
}

.hero-visual::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 90px;
  background: linear-gradient(transparent, rgba(7, 26, 43, 0.46));
}

/* Sections */
.section { padding: clamp(78px, 9vw, 126px) 0; }
.section.compact { padding: clamp(58px, 7vw, 88px) 0; }
.section.navy { background: var(--navy); color: var(--white); }
.section.white { background: var(--white); }
.section.burgundy { background: var(--burgundy); color: var(--white); }

.featured-grid,
.score-grid,
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.featured-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(213, 173, 106, 0.32);
  background: rgba(255, 255, 255, 0.025);
}

.featured-card .score-image {
  width: 100%;
  height: auto;
  aspect-ratio: 1.55 / 1;
  object-fit: cover;
  object-position: top;
  background: white;
}

.featured-card .score-image-festival {
  object-fit: contain;
}

.featured-card-body {
  display: flex;
  min-height: 238px;
  flex: 1;
  flex-direction: column;
  padding: 26px;
}

.featured-card h3 { margin-bottom: 10px; }
.featured-card p { color: rgba(255, 255, 255, 0.72); font-size: 0.95rem; }
.featured-card .audio-player { margin-top: auto; }

.section-footer { margin-top: 42px; text-align: center; }

.ruth-spotlight {
  scroll-margin-top: 100px;
  background: linear-gradient(135deg, #f2e9dc 0%, var(--ivory) 58%, var(--white) 100%);
}

.project-spotlight {
  display: grid;
  grid-template-columns: minmax(290px, 0.86fr) minmax(0, 1.14fr);
  overflow: hidden;
  border: 1px solid rgba(183, 134, 61, 0.45);
  background: var(--white);
  box-shadow: var(--shadow);
}

.project-art {
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: 430px;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: clamp(40px, 6vw, 76px);
  color: var(--white);
  background: var(--burgundy);
}

.project-art::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(37, 8, 15, 0.74) 0%, rgba(54, 13, 20, 0.56) 52%, rgba(7, 26, 43, 0.22) 100%),
    linear-gradient(0deg, rgba(7, 26, 43, 0.34), transparent 58%);
  pointer-events: none;
}

.project-art::after {
  content: '';
  position: absolute;
  inset: 24px;
  z-index: 3;
  border: 1px solid rgba(213, 173, 106, 0.42);
  pointer-events: none;
}

.project-art img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
}

.project-art > span {
  position: relative;
  z-index: 2;
}

.project-art-kicker {
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.project-art-title {
  margin-top: 6px;
  font-family: var(--display);
  font-size: clamp(5rem, 8vw, 7.4rem);
  line-height: 0.92;
}

.project-art-rule {
  width: 86px;
  margin: 24px 0;
  border-top: 1px solid var(--gold-light);
}

.project-art-quote {
  font-family: var(--display);
  font-size: clamp(1.6rem, 2.8vw, 2.35rem);
  font-style: italic;
  line-height: 1.08;
}

.project-copy {
  align-self: center;
  max-width: 700px;
  padding: clamp(42px, 7vw, 84px);
}

.project-copy h2 { max-width: 620px; }
.project-copy p:not(.eyebrow) { color: var(--muted); }
.project-copy .project-role {
  margin: 0 0 20px;
  color: var(--gold);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}
.project-copy .button { margin-top: 10px; }

.about-preview {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(270px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(45px, 8vw, 110px);
}

.about-preview figure {
  position: relative;
  margin: 0;
}

.about-preview figure::before {
  content: '';
  position: absolute;
  z-index: 0;
  top: -18px;
  right: -18px;
  bottom: 18px;
  left: 18px;
  border: 1px solid var(--gold);
}

.about-preview img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 0.88 / 1;
  object-fit: cover;
  object-position: center 28%;
  box-shadow: var(--shadow);
}

.about-preview-copy { max-width: 650px; }
.about-preview-copy p { color: var(--muted); }

.commission-strip {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(70, 13, 17, 0.98), rgba(70, 13, 17, 0.72)),
    url('../images/commissioning.webp') center 55% / cover;
}

.commission-strip .eyebrow { color: var(--gold-light); }

.commission-inner {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr auto;
  gap: 44px;
}

.commission-inner p { max-width: 630px; margin: 12px 0 0; color: rgba(255, 255, 255, 0.78); }

/* Audio players */
.audio-player {
  display: grid;
  min-width: 0;
  align-items: center;
  grid-template-columns: 42px auto minmax(70px, 1fr) auto 36px;
  gap: 10px;
}

.audio-toggle,
.audio-volume {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  background: transparent;
  color: var(--gold-light);
  cursor: pointer;
}

.audio-toggle::before {
  content: '';
  width: 0;
  height: 0;
  margin-left: 3px;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 10px solid currentColor;
}

.audio-player.is-playing .audio-toggle::before {
  width: 10px;
  height: 12px;
  margin: 0;
  border: 0;
  background: linear-gradient(90deg, currentColor 0 35%, transparent 35% 65%, currentColor 65% 100%);
}

.audio-time { min-width: 38px; color: inherit; font-size: 0.76rem; font-variant-numeric: tabular-nums; }

.audio-progress,
.audio-volume-range {
  width: 100%;
  accent-color: var(--gold);
  cursor: pointer;
}

.audio-volume {
  position: relative;
  display: flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border: 0;
}

.audio-volume::before {
  content: '';
  width: 26px;
  height: 22px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 36 32'%3E%3Cpath fill='black' d='M2 12h6l8-7v22l-8-7H2z'/%3E%3Cpath fill='none' stroke='black' stroke-linecap='round' stroke-width='2.2' d='M20 12c2 2.2 2 5.8 0 8M24 9c4 3.8 4 10.2 0 14M28 6c6 5.8 6 14.2 0 20'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 36 32'%3E%3Cpath fill='black' d='M2 12h6l8-7v22l-8-7H2z'/%3E%3Cpath fill='none' stroke='black' stroke-linecap='round' stroke-width='2.2' d='M20 12c2 2.2 2 5.8 0 8M24 9c4 3.8 4 10.2 0 14M28 6c6 5.8 6 14.2 0 20'/%3E%3C/svg%3E") center / contain no-repeat;
}

.audio-volume[aria-pressed='true']::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath fill='black' d='M2 12h6l8-7v22l-8-7H2z'/%3E%3Cpath fill='none' stroke='black' stroke-linecap='round' stroke-width='2.5' d='m21 12 8 8m0-8-8 8'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath fill='black' d='M2 12h6l8-7v22l-8-7H2z'/%3E%3Cpath fill='none' stroke='black' stroke-linecap='round' stroke-width='2.5' d='m21 12 8 8m0-8-8 8'/%3E%3C/svg%3E");
}

.audio-player.is-error { color: #f1a6aa; }
.audio-player.is-error .audio-progress { cursor: not-allowed; }

/* Scores */
.score-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.score-card {
  display: flex;
  min-width: 0;
  scroll-margin-top: 100px;
  flex-direction: column;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 13px 36px rgba(7, 26, 43, 0.08);
}

.score-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  padding: 10px 12px;
  object-fit: contain;
  object-position: center;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.score-card-body {
  display: flex;
  min-height: 224px;
  flex: 1;
  flex-direction: column;
  padding: 20px;
}

.score-card h3 { font-size: 1.55rem; line-height: 1.05; }
.score-card ul { margin: 12px 0 14px; padding-left: 19px; color: var(--muted); font-size: 0.92rem; line-height: 1.45; }
.score-card-bottom { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: auto; }
.price { color: var(--navy); font-size: 1.15rem; font-weight: 700; }
.score-card .button { min-height: 42px; padding: 10px 15px; }

/* Inner pages */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 6vw, 96px) 0;
  background: var(--white);
}

.page-hero::after {
  content: '♪';
  position: absolute;
  right: 5%;
  bottom: -80px;
  color: rgba(183, 134, 61, 0.08);
  font-family: var(--display);
  font-size: 22rem;
  line-height: 1;
}

.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--navy); font-size: clamp(3.4rem, 7vw, 6rem); text-transform: uppercase; }
.page-hero p:not(.eyebrow) { max-width: 660px; margin-top: 20px; color: var(--muted); font-size: 1.15rem; }
.page-hero .button-row { margin-top: 30px; }
.narrow { width: min(calc(100% - 40px), 780px); margin-inline: auto; }
.narrow .lead { color: var(--navy); font-family: var(--display); font-size: 1.65rem; line-height: 1.35; }

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0 0 46px;
}

.filter-button {
  border: 1px solid var(--gold);
  padding: 9px 17px;
  background: transparent;
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  cursor: pointer;
}

.filter-button.is-active,
.filter-button:hover { background: var(--navy); color: white; border-color: var(--navy); }

.work-feature {
  scroll-margin-top: 100px;
  overflow: hidden;
  margin-bottom: 28px;
  border: 1px solid rgba(183, 134, 61, 0.36);
  background: var(--navy);
  color: var(--white);
}

.work-feature-top {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
}

.work-feature-top img { width: 100%; height: 100%; min-height: 330px; object-fit: cover; object-position: top; }
.work-feature-copy { padding: clamp(32px, 5vw, 64px); }
.work-feature-copy p { color: rgba(255, 255, 255, 0.72); }

.track-list { border-top: 1px solid rgba(213, 173, 106, 0.24); }

.track-row {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(180px, 0.75fr) minmax(340px, 1.25fr);
  gap: 25px;
  padding: 18px 28px;
  border-bottom: 1px solid rgba(213, 173, 106, 0.18);
}

.track-row:last-child { border-bottom: 0; }
.track-name { font-family: var(--display); font-size: 1.35rem; }

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

.work-card {
  scroll-margin-top: 100px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 16px 40px rgba(7, 26, 43, 0.07);
}

.work-card[hidden], .work-feature[hidden] { display: none; }
.work-card > img { width: 100%; height: auto; aspect-ratio: 1.95 / 1; object-fit: cover; object-position: top; border-bottom: 1px solid var(--line); }
.work-card > img.work-card-score-image {
  aspect-ratio: 4 / 3;
  padding: clamp(10px, 1.4vw, 18px);
  object-fit: contain;
  object-position: center top;
  background: var(--white);
}
.work-card-body { padding: 28px; }
.work-card .audio-player + p { margin: 18px 0 0; }
.work-meta { margin-bottom: 8px; color: var(--gold); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.work-card p { color: var(--muted); }
.work-card .audio-player { margin-top: 22px; color: var(--ink); }

.page-music .work-grid { align-items: start; }

.track-disclosure { margin-top: 20px; border-top: 1px solid var(--line); }
.track-disclosure summary { padding: 15px 0; color: var(--navy); font-weight: 700; cursor: pointer; }
.track-disclosure .track-row { display: block; padding: 16px 0; border-color: var(--line); }
.track-disclosure .track-name { display: block; margin-bottom: 10px; }

.additional-works {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.additional-work { border-left: 2px solid var(--gold); padding: 4px 0 4px 22px; }
.additional-work p { margin: 5px 0 0; color: var(--muted); }

/* About */
.story-grid {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(300px, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(45px, 8vw, 100px);
}

.story-grid figure { position: sticky; top: 110px; margin: 0; }
.story-grid img { width: 100%; height: auto; box-shadow: var(--shadow); }
.story-copy .lead { color: var(--navy); font-family: var(--display); font-size: 1.65rem; line-height: 1.35; }

.timeline { position: relative; margin-top: 50px; padding-left: 30px; border-left: 1px solid var(--gold); }
.timeline-item { position: relative; padding: 0 0 32px 18px; }
.timeline-item::before { content: ''; position: absolute; top: 7px; left: -35px; width: 9px; height: 9px; transform: rotate(45deg); background: var(--gold); }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item time { color: var(--gold); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.timeline-item h3 { margin-top: 4px; font-size: 1.65rem; }
.timeline-item p { margin: 7px 0 0; color: var(--muted); }

.video-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 25px; }
.video-frame { overflow: hidden; aspect-ratio: 16 / 9; background: var(--navy); box-shadow: var(--shadow); }
.video-frame iframe { width: 100%; height: 100%; border: 0; }

/* Commission */
.commission-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  color: white;
  background:
    linear-gradient(90deg, rgba(7, 26, 43, 0.96) 0%, rgba(7, 26, 43, 0.75) 48%, rgba(7, 26, 43, 0.25) 100%),
    url('../images/commissioning.webp') center / cover;
}

.commission-hero-copy { max-width: 720px; padding: 90px 0; }
.commission-hero h1 { font-size: clamp(3.6rem, 8vw, 6.8rem); }
.commission-hero p:not(.eyebrow) { max-width: 600px; margin: 24px 0 30px; color: rgba(255, 255, 255, 0.8); font-size: 1.15rem; }

.prompt-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; counter-reset: prompts; }
.prompt-card { counter-increment: prompts; padding: 30px; border: 1px solid var(--line); background: var(--white); }
.prompt-card::before { content: '0' counter(prompts); display: block; margin-bottom: 20px; color: var(--gold); font-family: var(--display); font-size: 3rem; line-height: 1; }
.prompt-card p { margin: 10px 0 0; color: var(--muted); }
.prompt-swipe-hint { display: none; }

/* 404 */
.page-not-found {
  display: flex;
  min-height: 100vh;
  min-height: 100svh;
  flex-direction: column;
}

.page-not-found > main { display: flex; flex: 1 0 auto; }
.page-not-found .page-hero { display: flex; width: 100%; flex: 1; align-items: center; }
.page-not-found .button-row { display: flex; flex-wrap: wrap; gap: 12px; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(40px, 8vw, 100px);
}

.contact-grid > * { min-width: 0; }

.contact-details { padding: 38px; background: var(--navy); color: white; }
.contact-details h2 { margin-bottom: 25px; font-size: clamp(2.15rem, 4.5vw, 3.55rem); }
.contact-method { padding: 20px 0; border-top: 1px solid rgba(213, 173, 106, 0.25); }
.contact-method:last-child { border-bottom: 1px solid rgba(213, 173, 106, 0.25); }
.contact-label { display: block; color: var(--gold-light); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.contact-method a { display: inline-block; max-width: 100%; margin-top: 4px; overflow-wrap: anywhere; color: white; text-decoration-color: var(--gold); }

.contact-form { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { color: var(--navy); font-size: 0.85rem; font-weight: 700; }
.optional { color: var(--muted); font-weight: 400; }
.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(7, 26, 43, 0.27);
  border-radius: 0;
  padding: 13px 14px;
  background: var(--white);
  color: var(--ink);
}
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--gold); outline: 2px solid rgba(183, 134, 61, 0.25); }
.form-status { grid-column: 1 / -1; min-height: 27px; margin: 0; font-weight: 600; }
.form-status.success { color: #24683c; }
.form-status.error { color: #922934; }
.contact-form .button {
  justify-self: stretch;
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}
.contact-form .button:hover { background: var(--navy-soft); }
.contact-form .button:disabled { cursor: wait; opacity: 0.58; }

/* Footer */
.site-footer { padding: 56px 0 22px; background: var(--navy); color: white; }
.footer-main { display: grid; align-items: center; grid-template-columns: 1fr auto; gap: 50px; padding-bottom: 42px; }
.footer-brand { display: flex; align-items: center; gap: 20px; }
.footer-brand .brand-mark { border-right: 1px solid rgba(213, 173, 106, 0.38); padding-right: 22px; }
.footer-title { font-size: 0.93rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.footer-subtitle { color: var(--gold-light); font-family: var(--display); font-size: 1.1rem; font-style: italic; }
.footer-nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 16px 26px; }
.footer-nav a { font-size: 0.76rem; letter-spacing: 0.08em; text-decoration: none; text-transform: uppercase; }
.footer-nav a:hover { color: var(--gold-light); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.62); font-size: 0.8rem; }
.footer-bottom a { color: inherit; }

@media (max-width: 1040px) {
  .featured-grid { grid-template-columns: repeat(2, 1fr); }
  .featured-card:last-child { grid-column: 1 / -1; max-width: calc(50% - 11px); justify-self: center; }
  .score-grid { grid-template-columns: repeat(2, 1fr); }
  .home-hero { height: 610px; min-height: 610px; grid-template-columns: 51% 49%; }
  .hero-copy { padding-inline: 34px; }
  .hero-visual { min-height: 0; }
  .portrait-frame { width: min(78%, 440px); margin-right: 4%; }
  .site-nav ul { gap: 18px; }
  .site-nav a { font-size: 0.75rem; }
}

@media (min-width: 1500px) {
  .hero-copy h1 { font-size: clamp(5rem, 5vw, 5.5rem); }

  .page-music .work-feature-copy h2 { font-size: 3.25rem; }
  .page-music .work-feature .track-row {
    grid-template-columns: minmax(240px, 320px) minmax(480px, 640px);
    justify-content: space-between;
  }
}

@media (min-width: 1280px) and (max-width: 1499px) {
  .hero-copy { padding-inline: clamp(42px, 3.5vw, 52px); }
  .hero-actions { flex-wrap: nowrap; gap: 10px; }
  .hero-actions .button { padding-inline: 16px; font-size: 0.76rem; white-space: nowrap; }
}

@media (min-width: 1800px) {
  .portrait-frame {
    justify-self: center;
    width: min(62%, 520px);
    margin: 24px auto 0;
  }
}

@media (max-width: 820px) {
  body { font-size: 16px; }
  .site-header.is-sticky { position: relative; }
  .header-inner { flex-wrap: wrap; }
  .nav-toggle { display: block; }
  .site-nav {
    position: static;
    flex: 0 0 100%;
    max-height: 0;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
    background: var(--ivory);
    opacity: 0;
    visibility: hidden;
    transition: max-height 260ms ease, opacity 180ms ease;
  }
  .site-nav.is-open { max-height: calc(100vh - 78px); overflow-y: auto; opacity: 1; visibility: visible; }
  .site-nav ul { display: block; width: 100%; margin-inline: auto; padding: 12px 0 24px; }
  .site-nav a { padding: 14px 4px; border-bottom: 1px solid var(--line); font-size: 0.88rem; }
  .site-nav a::after { display: none; }

  .home-hero { display: block; height: auto; }
  .hero-copy { min-height: auto; padding: 76px 28px 62px; text-align: center; }
  .hero-copy::after { display: none; }
  .hero-copy-inner { margin-inline: auto; }
  .hero-copy h1 { font-size: clamp(3.1rem, 13vw, 5.2rem); }
  .hero-tagline { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .hero-visual { height: auto; min-height: 560px; }
  .portrait-frame { align-self: end; justify-self: center; width: min(74%, 360px); margin: 24px auto 0; }

  .about-preview,
  .story-grid { grid-template-columns: 1fr; }
  .contact-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
  }
  .project-spotlight { grid-template-columns: 1fr; }
  .project-art { min-height: 320px; }
  .project-copy { max-width: none; }
  .about-preview figure { width: 100%; max-width: 520px; margin-inline: auto; }
  .story-grid figure {
    position: static;
    width: min(100%, 680px);
    max-width: none;
    margin-inline: auto;
  }
  .commission-inner { grid-template-columns: 1fr; }
  .work-feature-top { grid-template-columns: 1fr; }
  .work-feature-top img { max-height: 360px; }
  .track-row { grid-template-columns: 1fr; gap: 10px; }
  .prompt-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-nav { justify-content: flex-start; }
}

@media (max-width: 620px) {
  body { line-height: 1.55; }
  .container { width: min(calc(100% - 30px), var(--max)); }
  h2 { font-size: 2.15rem; }
  h3 { font-size: 1.5rem; }

  .header-inner { min-height: 68px; }
  .brand-mark { width: 52px; height: 48px; font-size: 2.3rem; }
  .nav-toggle { width: 44px; height: 44px; }

  .home-hero { min-height: 0; }
  .hero-copy { padding: 46px 20px 42px; }
  .hero-copy h1 { font-size: clamp(2.5rem, 11vw, 3.15rem); }
  .hero-tagline { margin: 18px auto 24px; font-size: 1.25rem; }
  .hero-visual { min-height: 360px; }
  .portrait-frame { width: min(62vw, 250px); margin-top: 18px; }

  .section { padding-block: 52px; }
  .section.compact { padding-block: 44px; }
  .section-heading { margin-bottom: 28px; }
  .section-heading p:last-child { margin-top: 14px; }
  .section-heading::after,
  .title-rule::after { margin-top: 13px; }

  .page-hero { padding-block: 52px; }
  .page-hero h1 { font-size: 2.75rem; }
  .page-hero p:not(.eyebrow) { margin-top: 14px; font-size: 1rem; }
  .page-hero .button-row { margin-top: 22px; }

  .featured-grid,
  .work-grid,
  .additional-works,
  .video-grid,
  .score-grid { grid-template-columns: 1fr; }
  .featured-card:last-child { grid-column: auto; max-width: none; }
  .page-home .featured-grid,
  .page-home .score-grid,
  .prompt-grid {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: min(86vw, 320px);
    gap: 16px;
    margin-inline: -15px;
    padding: 0 15px 14px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-padding-inline: 15px;
    scroll-snap-type: inline mandatory;
    scrollbar-color: var(--gold) transparent;
    scrollbar-width: thin;
  }
  .page-home .featured-card,
  .page-home .score-card,
  .prompt-card { scroll-snap-align: start; }
  .page-home .featured-card { position: relative; }

  .page-home .swipe-hint {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    margin: -10px 0 14px;
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }
  .page-home .swipe-hint span { font-size: 1rem; line-height: 1; }

  .featured-card .score-image { aspect-ratio: 2.25 / 1; }
  .featured-card-body { min-height: 200px; padding: 22px; }

  .score-card { display: grid; grid-template-columns: minmax(0, 1fr); }
  .score-card img {
    width: 100%;
    height: clamp(160px, 48vw, 190px);
    min-height: 0;
    aspect-ratio: auto;
    padding: 8px;
    object-fit: contain;
    object-position: center top;
    background: var(--white);
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .score-card-body { min-height: 0; padding: 18px; }
  .score-card h3 { font-size: 1.35rem; }
  .score-card ul { margin: 10px 0 12px; padding-left: 16px; font-size: 0.86rem; line-height: 1.4; }
  .score-card-bottom { align-items: stretch; flex-direction: column; gap: 10px; }
  .score-card .button { width: 100%; min-height: 44px; }

  .about-preview figure::before { top: -12px; right: 0; bottom: 12px; left: 12px; }
  .project-art { min-height: 280px; padding: 38px 34px; }
  .project-art img { object-position: center 46%; }
  .project-art::after { inset: 16px; }
  .project-art-title { font-size: 4.35rem; }
  .project-art-rule { margin-block: 16px; }
  .project-art-quote { font-size: 1.65rem; }
  .project-copy { padding: 34px 26px; }
  .project-copy .project-role { font-size: 0.78rem; line-height: 1.45; }
  .about-preview { gap: 32px; }
  .about-preview img { height: auto; aspect-ratio: 4 / 3; object-position: center 28%; }

  .audio-player { grid-template-columns: 42px auto minmax(70px, 1fr) auto; }
  .audio-toggle { width: 42px; height: 42px; }
  .audio-volume { display: none; }

  .filter-bar { gap: 8px; margin-bottom: 30px; }
  .filter-button { min-height: 44px; padding: 8px 14px; }
  .work-feature { margin-bottom: 20px; }
  .work-feature-top img { height: 210px; min-height: 210px; max-height: 210px; }
  .work-feature-copy { padding: 24px 22px; }
  .track-row { gap: 8px; padding: 14px 18px; }
  .track-name { font-size: 1.18rem; }
  .work-card > img { aspect-ratio: 2.35 / 1; }
  .work-card-body { padding: 22px; }
  .additional-works { gap: 14px; margin-top: 28px; }
  .additional-work { padding-left: 16px; }

  .story-grid { gap: 30px; }
  .story-copy .lead,
  .narrow .lead { font-size: 1.4rem; }
  .timeline { margin-top: 36px; padding-left: 24px; }
  .timeline-item { padding: 0 0 24px 14px; }
  .timeline-item::before { left: -29px; }
  .timeline-item h3 { font-size: 1.45rem; }
  .video-grid { gap: 14px; }

  .commission-hero { min-height: 480px; background-position: 62% center; }
  .commission-hero-copy { padding: 60px 0; }
  .commission-hero h1 { font-size: 3.2rem; }
  .commission-hero p:not(.eyebrow) { margin: 18px 0 24px; font-size: 1rem; }
  .prompt-card { padding: 22px; }
  .prompt-card::before { margin-bottom: 12px; font-size: 2.25rem; }
  .prompt-card p { margin-top: 7px; }
  .page-commission .prompt-swipe-hint {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    margin: 6px 0 0;
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }
  .page-commission .prompt-swipe-hint span { font-size: 1rem; }

  .commission-inner { gap: 22px; }
  .commission-inner p { margin-top: 8px; }

  .contact-grid { grid-template-columns: 1fr; gap: 30px; }
  .contact-details { padding: 26px 24px; }
  .contact-details h2 { margin-bottom: 18px; }
  .contact-method { padding: 15px 0; }
  .contact-form { grid-template-columns: 1fr; gap: 14px; }
  .field.full { grid-column: auto; }
  .field textarea { min-height: 120px; }

  .site-footer { padding: 38px 0 18px; }
  .footer-main { gap: 26px; padding-bottom: 26px; }
  .footer-brand { gap: 14px; }
  .footer-brand .brand-mark { padding-right: 14px; }
  .footer-title { font-size: 0.82rem; }
  .footer-subtitle { font-size: 0.95rem; line-height: 1.25; }
  .footer-nav { gap: 10px 20px; }
  .footer-bottom { flex-direction: column; gap: 8px; padding-top: 16px; line-height: 1.45; }
}

@media (max-width: 400px) {
  .hero-copy { padding-inline: 18px; }
  .hero-copy h1 { font-size: clamp(2.35rem, 12vw, 3rem); }
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .contact-details { padding: 24px 20px; }
  .score-card { grid-template-columns: minmax(0, 1fr); }
  .audio-player { grid-template-columns: 42px 32px minmax(0, 1fr) 32px; gap: 6px; }
  .audio-time { min-width: 32px; font-size: 0.7rem; }
  .featured-card-body, .work-card-body { padding: 20px; }
}

@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; }
}
