:root {
  --bg: #09111f;
  --bg-soft: #0f1a2a;
  --panel: #142235;
  --text: #f0ede7;
  --muted: #a8b1bd;
  --line: rgba(221, 231, 241, 0.14);
  --accent: #9fb3c8;
  --accent-dark: #101c2b;
  --warm: #c4aa8f;
  --max: 1240px;
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.035;
  z-index: 20;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.6'/%3E%3C/svg%3E");
}

a { color: inherit; }
img { max-width: 100%; display: block; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); }
.skip-link {
  position: fixed; top: 12px; left: 12px; z-index: 100;
  padding: 10px 14px; background: var(--accent); color: #111; transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(22px, 4vw, 64px);
  border-bottom: 1px solid transparent;
  transition: background 220ms ease, border-color 220ms ease, height 220ms ease;
}
.site-header.scrolled {
  height: 72px;
  background: rgba(9, 17, 31, 0.9);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}

.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand-logo {
  width: auto;
  height: 62px;
  object-fit: contain;
}

.main-nav { display: flex; align-items: center; gap: clamp(20px, 3vw, 44px); }
.main-nav a { font-size: 13px; text-decoration: none; color: #c7d0da; }
.main-nav a:hover, .main-nav a:focus-visible { color: white; }
.main-nav .nav-cta { padding: 10px 18px; color: #111; background: var(--accent); border-radius: 999px; }
.menu-button { display: none; }

.hero {
  position: relative;
  min-height: 900px;
  padding: 180px max(5vw, calc((100vw - var(--max)) / 2)) 72px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  grid-template-rows: 1fr auto;
  gap: 48px 80px;
  overflow: hidden;
}
.hero-glow {
  position: absolute; width: 680px; height: 680px; right: -190px; top: -170px;
  border-radius: 50%; background: rgba(106, 133, 163, .18); filter: blur(120px);
  animation: hero-glow-drift 11s ease-in-out infinite alternate;
}
.hero-motion { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hero-orbit { position: absolute; border: 1px solid rgba(159,179,200,.13); border-radius: 50%; }
.hero-orbit::after { content: ""; position: absolute; width: 8px; height: 8px; top: 50%; right: -4px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 28px rgba(159,179,200,.75); }
.hero-orbit-one { width: 560px; height: 560px; right: -105px; top: 100px; animation: hero-orbit-spin 24s linear infinite; }
.hero-orbit-two { width: 390px; height: 390px; right: -20px; top: 185px; border-style: dashed; opacity: .55; animation: hero-orbit-spin 19s linear infinite reverse; }
.hero-pulse { position: absolute; left: max(5vw, calc((100vw - var(--max)) / 2)); bottom: 195px; height: 58px; display: flex; align-items: center; gap: 7px; opacity: .28; }
.hero-pulse i { display: block; width: 3px; height: 12px; border-radius: 99px; background: var(--accent); transform-origin: center; animation: hero-pulse-wave 1.7s ease-in-out infinite; }
.hero-pulse i:nth-child(2), .hero-pulse i:nth-child(8) { animation-delay: -.2s; }
.hero-pulse i:nth-child(3), .hero-pulse i:nth-child(7) { animation-delay: -.4s; }
.hero-pulse i:nth-child(4), .hero-pulse i:nth-child(6) { animation-delay: -.6s; }
.hero-pulse i:nth-child(5) { animation-delay: -.8s; }
.hero-portrait { animation: hero-portrait-float 7s ease-in-out 1s infinite; }
.portrait-frame img { transform: scale(1.035); animation: hero-portrait-breathe 12s ease-in-out infinite alternate; }
@keyframes hero-glow-drift { from { transform: translate3d(-25px, 5px, 0) scale(.94); opacity: .7; } to { transform: translate3d(45px, 55px, 0) scale(1.12); opacity: 1; } }
@keyframes hero-orbit-spin { to { transform: rotate(360deg); } }
@keyframes hero-pulse-wave { 0%, 100% { transform: scaleY(.6); opacity: .45; } 50% { transform: scaleY(3.9); opacity: 1; } }
@keyframes hero-portrait-float { 0%, 100% { translate: 0 0; } 50% { translate: 0 -10px; } }
@keyframes hero-portrait-breathe { from { transform: scale(1.035); } to { transform: scale(1.075); } }
.hero-copy { position: relative; z-index: 1; align-self: center; }
.eyebrow { margin: 0 0 24px; color: var(--accent); font-size: 11px; font-weight: 750; letter-spacing: .22em; text-transform: uppercase; }
.hero h1, .section h2, .contact-inner h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .93;
}
.hero h1 {
  max-width: 760px;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(62px, 7.1vw, 112px);
  font-weight: 900;
  letter-spacing: -.07em;
  line-height: .84;
  text-transform: uppercase;
}
.hero h1 em {
  display: inline-block;
  color: transparent;
  font-style: normal;
  font-weight: 900;
  -webkit-text-stroke: 2px var(--accent);
  text-stroke: 2px var(--accent);
  transform-origin: left center;
  animation: hero-impact-drift 6.5s ease-in-out 1.2s infinite;
}
.hero-title-solid { display: inline-block; animation: hero-title-breathe 7.5s ease-in-out .8s infinite; }
@keyframes hero-title-breathe { 0%, 100% { translate: 0 0; text-shadow: 0 0 0 rgba(159,179,200,0); } 50% { translate: 0 -5px; text-shadow: 0 12px 38px rgba(159,179,200,.12); } }
@keyframes hero-impact-drift { 0%, 100% { translate: 0 0; opacity: .82; -webkit-text-stroke-color: #91a8bf; } 50% { translate: 10px 0; opacity: 1; -webkit-text-stroke-color: #b6c7d7; } }
.hero-intro { max-width: 620px; margin: 34px 0 0; color: #bdc4cc; font-size: clamp(17px, 1.7vw, 22px); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 38px; }
.button { padding: 14px 22px; border-radius: 999px; text-decoration: none; font-size: 13px; font-weight: 700; }
.button-primary { background: var(--accent); color: #111; }
.button-primary:hover { background: #b7c8d8; }
.button-quiet { border: 1px solid var(--line); color: #d8dfe6; }
.button-quiet:hover { border-color: rgba(255,255,255,.35); }

.hero-portrait { position: relative; align-self: center; justify-self: end; z-index: 1; width: min(100%, 460px); }
.portrait-frame { position: relative; border-radius: 240px 240px 28px 28px; overflow: hidden; aspect-ratio: .82; background: #222; }
.portrait-frame::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 80px rgba(0,0,0,.22); }
.portrait-frame img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.72) contrast(1.05); }
.portrait-caption { display: flex; justify-content: space-between; align-items: end; gap: 20px; margin-top: 16px; }
.portrait-caption span { font-family: Georgia, serif; font-size: 21px; }
.portrait-caption small { max-width: 180px; text-align: right; color: var(--muted); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }

.hero-stats { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.hero-stats div { display: flex; gap: 18px; align-items: center; padding: 28px 0; }
.hero-stats div + div { border-left: 1px solid var(--line); padding-left: 36px; }
.hero-stats strong { font-family: Georgia, serif; font-size: 42px; font-weight: 400; line-height: 1; }
.hero-stats span { max-width: 130px; color: var(--muted); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }

.marquee { overflow: hidden; border-block: 1px solid var(--line); background: #0d1725; }
.marquee-track { width: max-content; display: flex; align-items: center; gap: 26px; padding: 18px 0; animation: marquee 34s linear infinite; }
.marquee-track span { color: #c5ced8; font-size: 11px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.marquee-track i { width: 5px; height: 5px; border-radius: 50%; background: var(--accent); }
@keyframes marquee { to { transform: translateX(-50%); } }

.section { padding: 130px max(5vw, calc((100vw - var(--max)) / 2)); }
.section-heading { display: grid; grid-template-columns: 1.3fr .7fr; gap: 90px; align-items: end; margin-bottom: 64px; }
.section h2 { font-size: clamp(50px, 6vw, 86px); }
.section-heading > p { margin: 0 0 4px; color: var(--muted); font-size: 16px; }

.project-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px 24px; }
.project-card { min-width: 0; }
.project-art { position: relative; overflow: hidden; aspect-ratio: 1; border-radius: var(--radius); background: #222; }
.project-art::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(255,255,255,.11), inset 0 -50px 80px rgba(0,0,0,.08); pointer-events: none; }
.project-art img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms ease, filter 500ms ease; }
.project-art img.bwo-portrait { object-position: 50% 48%; transform: scale(1.08); }
.project-art img.markoolio-portrait { object-position: 50% 40%; transform: scale(1.035); }
.project-art img.victoria-portrait { object-position: 50% 36%; transform: scale(1.035); filter: saturate(.82) contrast(1.04); }
.project-art img.victoria-red-portrait { object-position: 50% 5%; }
.project-card:hover .project-art img { transform: scale(1.035); filter: saturate(1.08); }
.project-card:hover .project-art img.bwo-portrait { transform: scale(1.12); }
.project-card:hover .project-art img.markoolio-portrait { transform: scale(1.075); }
.project-card:hover .project-art img.victoria-portrait { transform: scale(1.075); }
.project-card:hover .project-art img.victoria-red-portrait { transform: scale(1.035); }
.art-reggae { color: #15170c; background: radial-gradient(circle at 75% 25%, #c7aa72, transparent 30%), linear-gradient(135deg, #82906f, #465f55); }
.art-storm { background: radial-gradient(circle at 65% 25%, #adc2d2, transparent 28%), linear-gradient(135deg, #1c3551, #66798f); }
.art-pilots { background: radial-gradient(circle at 20% 25%, #b47f70, transparent 30%), linear-gradient(135deg, #3b3048, #765563); }
.art-miio { color: #191111; background: radial-gradient(circle at 80% 25%, #ddd0bd, transparent 34%), linear-gradient(135deg, #b58b92, #b9a28b); }
.art-sims { color: #101a18; background: radial-gradient(circle at 70% 20%, #a9c5c3, transparent 31%), linear-gradient(135deg, #668f8d, #516b83); }
.project-info { display: flex; justify-content: space-between; gap: 28px; padding: 18px 4px 10px; }
.project-type { margin: 0 0 6px; color: var(--accent); font-size: 9px; font-weight: 750; letter-spacing: .14em; text-transform: uppercase; }
.project-info h3 { margin: 0; font-family: Georgia, serif; font-size: 25px; font-weight: 400; }
.project-info div > p:last-child { margin: 4px 0 0; color: var(--muted); font-size: 13px; }
.project-credit { display: inline-block; margin-top: 7px; color: #8290a2; font-size: 9px; line-height: 1.45; letter-spacing: .035em; }
.project-credit a { color: inherit; text-decoration: underline; text-decoration-color: rgba(130, 144, 162, .55); text-underline-offset: 3px; }
.project-credit a:hover, .project-credit a:focus-visible { color: var(--accent); text-decoration-color: currentColor; }
.project-year { color: var(--muted); font-size: 11px; }
.section-link { margin-top: 58px; padding-top: 24px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; color: var(--muted); font-size: 13px; }
.section-link a { color: var(--text); text-decoration: none; }
.catalogue-panel { margin-top: 34px; padding-bottom: 4px; border-block: 1px solid var(--line); }
.catalogue-panel > summary { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 34px 4px; cursor: pointer; list-style: none; }
.catalogue-panel summary::-webkit-details-marker { display: none; }
.catalogue-panel > summary:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; border-radius: 12px; }
.catalogue-panel > summary > span { display: grid; gap: 6px; }
.catalogue-panel > summary small { color: var(--accent); font-size: 9px; font-weight: 750; letter-spacing: .16em; text-transform: uppercase; }
.catalogue-panel > summary strong { font-family: Georgia, serif; font-size: clamp(30px, 3.5vw, 46px); font-weight: 400; }
.catalogue-panel > summary::after { content: "+"; display: grid; place-items: center; width: 46px; height: 46px; flex: 0 0 46px; border: 1px solid var(--line); border-radius: 50%; color: var(--accent); font-size: 25px; font-weight: 300; }
.catalogue-panel[open] > summary::after { content: "–"; }
.catalogue-intro { max-width: 760px; margin: 4px 4px 34px; color: var(--muted); font-size: 15px; line-height: 1.7; }
.catalogue-tools { display: grid; grid-template-columns: 1fr auto; gap: 22px; align-items: end; margin: 0 4px 20px; }
.catalogue-search { display: grid; gap: 8px; max-width: 620px; }
.catalogue-search > span { color: var(--accent); font-size: 9px; font-weight: 750; letter-spacing: .15em; text-transform: uppercase; }
.catalogue-search input { width: 100%; padding: 15px 18px; border: 1px solid var(--line); border-radius: 14px; outline: none; background: var(--bg-soft); color: var(--text); font: inherit; font-size: 14px; }
.catalogue-search input::placeholder { color: #738091; }
.catalogue-search input:focus { border-color: rgba(159, 179, 200, .7); box-shadow: 0 0 0 3px rgba(159, 179, 200, .1); }
.catalogue-counts { display: flex; align-items: center; justify-content: flex-end; flex-wrap: wrap; gap: 10px; }
.catalogue-counts > span, .catalogue-counts button { min-height: 44px; display: inline-flex; align-items: center; gap: 6px; padding: 9px 13px; border: 1px solid var(--line); border-radius: 999px; background: transparent; color: var(--muted); font-size: 10px; }
.catalogue-counts strong { color: var(--text); font-family: Georgia, serif; font-size: 18px; font-weight: 400; }
.catalogue-counts button { cursor: pointer; color: var(--text); font-weight: 700; }
.catalogue-counts button[hidden] { display: none; }
.catalogue-counts button:hover, .catalogue-counts button:focus-visible { border-color: var(--accent); outline: none; }
.catalogue-source-strip { display: flex; align-items: center; flex-wrap: wrap; gap: 8px 16px; margin: 0 4px 28px; color: var(--muted); font-size: 10px; }
.catalogue-source-strip > span { padding-left: 14px; border-left: 1px solid var(--line); }
.catalogue-source-strip > span:first-child { padding-left: 0; border-left: 0; color: var(--accent); font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.catalogue-source-strip output { margin-left: auto; color: var(--accent); }
.catalogue-grid { counter-reset: catalogue-artist; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin-bottom: 36px; }
.catalogue-group { counter-increment: catalogue-artist; min-width: 0; overflow: hidden; align-self: start; border: 1px solid var(--line); border-radius: 18px; background: linear-gradient(145deg, rgba(159,179,200,.07), rgba(255,255,255,.015)); transition: border-color 180ms ease, background 180ms ease; }
.catalogue-group:hover, .catalogue-group.is-open, .catalogue-group.search-open { border-color: rgba(159,179,200,.35); background: linear-gradient(145deg, rgba(159,179,200,.11), rgba(255,255,255,.025)); }
.catalogue-artist-toggle { width: 100%; display: grid; grid-template-columns: 38px 1fr auto 28px; gap: 14px; align-items: center; padding: 21px 22px; border: 0; background: transparent; color: inherit; cursor: pointer; text-align: left; }
.catalogue-artist-toggle::before { content: counter(catalogue-artist, decimal-leading-zero); color: #718093; font-size: 9px; font-weight: 750; letter-spacing: .12em; }
.catalogue-artist-name { min-width: 0; color: #eef2f5; font-family: Georgia, serif; font-size: 21px; line-height: 1.15; }
.catalogue-artist-meta { color: var(--muted); font-size: 9px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; white-space: nowrap; }
.catalogue-artist-icon { position: relative; width: 28px; height: 28px; border: 1px solid var(--line); border-radius: 50%; }
.catalogue-artist-icon::before, .catalogue-artist-icon::after { content: ""; position: absolute; left: 8px; right: 8px; top: 13px; height: 1px; background: var(--accent); transition: transform 180ms ease; }
.catalogue-artist-icon::after { transform: rotate(90deg); }
.catalogue-group.is-open .catalogue-artist-icon::after, .catalogue-group.search-open .catalogue-artist-icon::after { transform: rotate(0); }
.catalogue-artist-toggle:focus-visible { outline: 2px solid var(--accent); outline-offset: -3px; border-radius: 17px; }
.catalogue-group ul { display: none; margin: 0 22px 22px 74px; padding: 14px 0 0; border-top: 1px solid var(--line); list-style: none; }
.catalogue-group.is-open ul, .catalogue-group.search-open ul { display: block; }
.catalogue-group li { position: relative; padding: 9px 0 9px 17px; color: #d8dfe6; font-size: 13px; line-height: 1.4; }
.catalogue-group li::before { content: ""; position: absolute; left: 0; top: 16px; width: 5px; height: 5px; border-radius: 50%; background: #70879d; }
.catalogue-group li + li { border-top: 1px solid rgba(221, 231, 241, .08); }
.catalogue-group[hidden], .catalogue-group li[hidden] { display: none; }
.catalogue-footnote { max-width: 760px; margin: -8px 4px 36px; color: var(--muted); font-size: 10px; line-height: 1.65; }

.info-panel { border-block: 1px solid var(--line); }
.info-panel + .info-panel { border-top: 0; }
.info-panel-summary { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 27px 4px; cursor: pointer; list-style: none; }
.info-panel-summary::-webkit-details-marker { display: none; }
.info-panel-summary > span { display: grid; gap: 5px; }
.info-panel-summary small { color: var(--accent); font-size: 9px; font-weight: 750; letter-spacing: .16em; text-transform: uppercase; }
.info-panel-summary strong { color: var(--text); font-family: Georgia, serif; font-size: clamp(22px, 2.7vw, 34px); font-weight: 400; }
.info-panel-summary::after { content: "+"; display: grid; place-items: center; width: 42px; height: 42px; flex: 0 0 42px; border: 1px solid var(--line); border-radius: 50%; color: var(--accent); font-size: 24px; font-weight: 300; }
.info-panel[open] > .info-panel-summary::after { content: "–"; }
.info-panel-summary:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; border-radius: 12px; }
.info-panel[open] > .logo-grid, .info-panel[open] > .major-labels-heading, .info-panel[open] > .chart-archive-heading { margin-top: 34px; }
.partners-section .info-panel { border-color: rgba(20, 32, 51, .18); }
.partners-section .info-panel-summary small { color: #526b83; }
.partners-section .info-panel-summary strong { color: #142033; }
.partners-section .info-panel-summary::after { border-color: rgba(20, 32, 51, .2); color: #40566d; }
.career-facts-panel { margin-top: 34px; }
.about-section .career-facts-panel { border-color: rgba(20, 32, 51, .2); }
.about-section .career-facts-panel .info-panel-summary small { color: #40566d; }
.about-section .career-facts-panel .info-panel-summary strong { color: #142033; }
.about-section .career-facts-panel .info-panel-summary::after { border-color: rgba(20, 32, 51, .24); color: #40566d; }
.career-facts-panel .verified-highlights { margin-top: 32px; }
.career-facts-panel .experience-list { margin-bottom: 34px; }

.chart-archive { margin-top: 34px; }
.chart-archive-heading { display: grid; grid-template-columns: 1.1fr .9fr; gap: 70px; align-items: end; margin-bottom: 36px; }
.chart-archive-heading .eyebrow { margin-bottom: 14px; }
.chart-archive-heading h3 { margin: 0; font-family: Georgia, serif; font-size: clamp(38px, 5vw, 66px); font-weight: 400; letter-spacing: -.045em; line-height: 1; }
.chart-archive-heading > p { max-width: 520px; margin: 0 0 4px; color: var(--muted); font-size: 14px; line-height: 1.7; }
.chart-ledger { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.chart-ledger-card { min-width: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 22px; background: var(--bg-soft); }
.chart-ledger-card header { display: flex; align-items: end; justify-content: space-between; gap: 20px; padding: 23px 24px; border-bottom: 1px solid var(--line); background: rgba(159, 179, 200, .055); }
.chart-ledger-card header span { color: var(--accent); font-size: 9px; font-weight: 750; letter-spacing: .15em; text-transform: uppercase; }
.chart-ledger-card header strong { color: #dce4eb; font-family: Georgia, serif; font-size: 18px; font-weight: 400; text-align: right; }
.chart-row { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 72px; padding: 14px 24px; text-decoration: none; transition: background 180ms ease; }
.chart-row + .chart-row { border-top: 1px solid rgba(221, 231, 241, .09); }
.chart-row:hover, .chart-row:focus-visible { background: rgba(159, 179, 200, .09); outline: none; }
.chart-row span { min-width: 0; display: grid; gap: 2px; }
.chart-row strong { color: #edf1f4; font-family: Georgia, serif; font-size: 16px; font-weight: 400; line-height: 1.25; }
.chart-row small { color: var(--muted); font-size: 10px; line-height: 1.45; }
.chart-row b { flex: 0 0 auto; max-width: 155px; color: var(--accent); font-size: 11px; line-height: 1.35; text-align: right; }
.chart-method-note { max-width: 850px; margin: 24px 2px 0; color: var(--muted); font-size: 11px; line-height: 1.7; }

.partners-section { background: #e7e9ec; color: #142033; }
.partners-section .eyebrow { color: #40566d; }
.partners-section .section-heading > p { color: #586675; }
.logo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.logo-card {
  min-width: 0;
  min-height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 34px;
  border: 1px solid rgba(0,0,0,.1);
  border-radius: 20px;
  background: rgba(255,255,255,.68);
  transition: transform 200ms ease, background 200ms ease;
}
.logo-card:hover { transform: translateY(-3px); background: #fff; }
.logo-card img { width: 75%; max-width: 190px; height: 90px; object-fit: contain; image-rendering: auto; }
.logo-card-brand img { width: 92%; max-width: 245px; height: 105px; }
.logo-card-remixed img { width: 94%; max-width: 250px; height: auto; }
.logo-card-text { flex-direction: column; gap: 2px; line-height: 1; }
.logo-card-text strong { font-size: 47px; letter-spacing: -.07em; }
.logo-card-text span { color: #777169; font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.logo-card-long strong { max-width: 100%; font-size: clamp(18px, 2.4vw, 38px); letter-spacing: -.045em; text-align: center; }
.logo-card-stacked { flex-direction: column; gap: 12px; }
.logo-card-stacked img { height: 70px; }
.logo-card-stacked span { color: #777169; font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.logo-card-swemix img { width: auto; height: 125px; }
.major-labels-block { margin-top: 42px; }
.major-labels-heading { display: grid; grid-template-columns: 1.15fr .85fr; gap: 26px 80px; align-items: end; margin-bottom: 42px; }
.major-labels-heading .eyebrow { grid-column: 1 / -1; margin-bottom: -4px; }
.major-labels-heading h3 { margin: 0; font-family: Georgia, serif; font-size: clamp(38px, 5vw, 64px); font-weight: 400; letter-spacing: -.045em; line-height: 1; }
.major-labels-heading > p:last-child { margin: 0 0 4px; color: #586675; font-size: 15px; }
.major-label-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.major-label-card { min-width: 0; padding: 28px; border: 1px solid rgba(20, 32, 51, .12); border-radius: 20px; background: rgba(255, 255, 255, .58); }
.major-label-card h4 { margin: 0 0 20px; color: #2f475e; font-size: 12px; letter-spacing: .13em; text-transform: uppercase; }
.major-label-card ul { margin: 0; padding: 0; list-style: none; }
.major-label-card li { display: grid; gap: 2px; padding: 10px 0; }
.major-label-card li + li { border-top: 1px solid rgba(20, 32, 51, .1); }
.major-label-card strong { color: #142033; font-family: Georgia, serif; font-size: 18px; font-weight: 400; line-height: 1.25; }
.major-label-card span { color: #586675; font-size: 12px; line-height: 1.45; }
.major-labels-note { margin: 30px 0 0; color: #586675; font-size: 13px; line-height: 1.7; }

.about-section { background: #dce1e5; color: #142033; }
.about-quote { max-width: 980px; margin: 0 auto 130px; text-align: center; }
.quote-mark { display: block; height: 82px; color: #526b82; font-family: Georgia, serif; font-size: 120px; line-height: 1; }
blockquote { margin: 0; font-family: Georgia, serif; font-size: clamp(36px, 5vw, 72px); line-height: 1.05; letter-spacing: -.045em; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; border-top: 1px solid rgba(0,0,0,.18); padding-top: 80px; }
.about-section .eyebrow { color: #40566d; }
.about-copy .lead { margin-top: 0; font-family: Georgia, serif; font-size: clamp(23px, 2.4vw, 34px); line-height: 1.25; }
.about-copy > p:not(.lead) { color: #52606d; font-size: 16px; }
.verified-highlights { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin-top: 38px; }
.verified-highlights article { display: flex; flex-direction: column; min-width: 0; padding: 21px; border: 1px solid rgba(20, 32, 51, .13); border-radius: 17px; background: rgba(255, 255, 255, .42); }
.verified-highlights span { color: #40566d; font-size: 9px; font-weight: 750; letter-spacing: .14em; text-transform: uppercase; }
.verified-highlights strong { margin-top: 8px; font-family: Georgia, serif; font-size: 21px; font-weight: 400; line-height: 1.15; }
.verified-highlights p { margin: 10px 0 16px; color: #52606d; font-size: 12px; line-height: 1.55; }
.verified-highlights a { margin-top: auto; color: #2f475e; font-size: 10px; font-weight: 700; line-height: 1.4; text-underline-offset: 4px; }
.experience-list { margin-top: 48px; border-top: 1px solid rgba(0,0,0,.18); }
.experience-item { padding: 28px 0; border-bottom: 1px solid rgba(0,0,0,.18); }
.experience-item h3 { margin: 0 0 10px; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; }
.experience-item p { margin: 0; color: #52606d; font-size: 15px; line-height: 1.7; }
.biography-panel { margin-top: 44px; border-block: 1px solid rgba(20, 32, 51, .2); }
.biography-panel summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 25px 0; cursor: pointer; list-style: none; }
.biography-panel summary::-webkit-details-marker { display: none; }
.biography-panel summary:focus-visible { outline: 2px solid #526b82; outline-offset: 5px; border-radius: 10px; }
.biography-panel summary span { display: grid; gap: 4px; }
.biography-panel summary small { color: #40566d; font-size: 9px; font-weight: 750; letter-spacing: .16em; text-transform: uppercase; }
.biography-panel summary strong { font-family: Georgia, serif; font-size: clamp(22px, 2.3vw, 30px); font-weight: 400; line-height: 1.15; }
.biography-panel summary::after { content: "+"; display: grid; place-items: center; width: 40px; height: 40px; flex: 0 0 40px; border: 1px solid rgba(20, 32, 51, .24); border-radius: 50%; color: #40566d; font-size: 23px; font-weight: 300; }
.biography-panel[open] summary::after { content: "–"; }
.biography-content { display: grid; grid-template-columns: 1fr; gap: 12px; padding: 8px 0 34px; }
.biography-content section { padding: 24px; border: 1px solid rgba(20, 32, 51, .12); border-radius: 18px; background: rgba(255, 255, 255, .34); }
.biography-content h3 { margin: 0 0 13px; color: #2f475e; font-size: 12px; letter-spacing: .1em; line-height: 1.35; text-transform: uppercase; }
.biography-content p { margin: 0; color: #52606d; font-size: 14px; line-height: 1.75; }
.biography-content p + p { margin-top: 14px; }
.biography-source-link { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin: -18px 0 34px; padding: 20px 22px; border-radius: 16px; background: #142033; }
.biography-source-link p { margin: 0; color: #b8c3ce; font-size: 13px; }
.biography-source-link a { flex: 0 0 auto; padding: 10px 15px; border-radius: 999px; background: #9fb3c8; color: #101c2b; font-size: 12px; font-weight: 700; text-decoration: none; }
.biography-source-link a:hover { background: #b7c8d8; }
.about-links { display: flex; gap: 28px; margin-top: 34px; }
.about-links a { font-size: 12px; font-weight: 700; text-underline-offset: 5px; }

.studio-section { padding-top: 100px; padding-bottom: 100px; background: #0d1725; }
.studio-panel { display: grid; grid-template-columns: 1fr 1fr; min-height: 620px; border-radius: 32px; overflow: hidden; background: var(--panel); }
.studio-visual { position: relative; display: flex; align-items: center; justify-content: center; min-height: 520px; background: radial-gradient(circle at 50% 45%, #2a3c50, #0b1420 64%); }
.studio-visual > span { position: absolute; bottom: 28px; left: 32px; color: #bcb8af; font-size: 10px; letter-spacing: .15em; text-transform: uppercase; }
.soundwave { height: 230px; display: flex; align-items: center; gap: 10px; }
.soundwave i { display: block; width: 8px; height: var(--h); border-radius: 999px; background: var(--accent); box-shadow: 0 0 30px rgba(159,179,200,.2); }
.soundwave i:nth-child(1), .soundwave i:nth-child(11) { --h: 45px; }
.soundwave i:nth-child(2), .soundwave i:nth-child(10) { --h: 90px; }
.soundwave i:nth-child(3), .soundwave i:nth-child(9) { --h: 145px; }
.soundwave i:nth-child(4), .soundwave i:nth-child(8) { --h: 205px; }
.soundwave i:nth-child(5), .soundwave i:nth-child(7) { --h: 125px; }
.soundwave i:nth-child(6) { --h: 230px; }
.studio-copy { align-self: center; padding: clamp(48px, 6vw, 88px); }
.studio-copy p:not(.eyebrow) { color: var(--muted); }
.studio-tags { display: flex; flex-wrap: wrap; gap: 9px; margin: 32px 0 0; padding: 0; list-style: none; }
.studio-tags li { padding: 9px 13px; border: 1px solid var(--line); border-radius: 999px; color: #d4d0c8; font-size: 11px; }

.contact-section { padding-top: 150px; padding-bottom: 150px; background: var(--accent); color: #111; }
.contact-inner { display: grid; grid-template-columns: minmax(0, .82fr) minmax(460px, 1.18fr); gap: clamp(58px, 8vw, 120px); max-width: 1180px; margin: 0 auto; align-items: start; }
.contact-copy { position: sticky; top: 130px; }
.contact-inner .eyebrow { color: #33485d; }
.contact-copy > p:not(.eyebrow) { max-width: 520px; margin-top: 30px; color: #35495d; }
.contact-form { display: grid; gap: 24px; padding: clamp(28px, 4vw, 48px); border: 1px solid rgba(17, 17, 17, .18); border-radius: 28px; background: rgba(255, 255, 255, .24); box-shadow: 0 24px 70px rgba(39, 57, 75, .12); text-align: left; }
.contact-form-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.contact-form label { display: grid; gap: 10px; }
.contact-form label > span { font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: #263b50; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; border: 1px solid rgba(17, 17, 17, .24); border-radius: 14px; background: rgba(255, 255, 255, .68); color: #111; font: inherit; padding: 15px 16px; outline: none; transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease; }
.contact-form textarea { min-height: 150px; resize: vertical; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: #263b50; background: #fff; box-shadow: 0 0 0 4px rgba(38, 59, 80, .12); }
.contact-file-field { padding: 18px; border: 1px dashed rgba(17, 17, 17, .3); border-radius: 16px; background: rgba(255, 255, 255, .3); }
.contact-file-field > span { display: flex; justify-content: space-between; gap: 16px; }
.contact-file-field > span small { font-size: 10px; color: #52677b; }
.contact-form .contact-file-field input[type="file"] { padding: 11px; background: rgba(255, 255, 255, .72); cursor: pointer; }
.contact-form input[type="file"]::file-selector-button { margin-right: 14px; padding: 9px 13px; border: 0; border-radius: 999px; background: #263b50; color: #fff; font: inherit; font-size: 12px; font-weight: 700; cursor: pointer; }
.contact-file-note { color: #40566b; font-size: 12px; line-height: 1.5; }
.contact-form-footer { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.contact-form-footer p { max-width: 310px; color: #40566b; font-size: 13px; line-height: 1.5; }
.contact-submit { display: inline-flex; align-items: center; justify-content: center; gap: 16px; min-height: 52px; padding: 0 22px; border: 1px solid #111; border-radius: 999px; background: #111; color: #fff; font-weight: 700; cursor: pointer; transition: transform 180ms ease, background 180ms ease; }
.contact-submit:hover { transform: translateY(-2px); background: #263b50; }
.contact-submit span { transition: transform 180ms ease; }
.contact-submit:hover span { transform: translate(3px, -3px); }
.contact-submit:disabled { cursor: wait; opacity: .68; transform: none; }
.contact-status { min-height: 1.4em; margin: -8px 0 0; color: #263b50; font-size: 13px; }

.site-footer { max-width: var(--max); margin: 0 auto; min-height: 150px; padding: 40px 0; display: flex; align-items: center; justify-content: space-between; gap: 24px; color: var(--muted); font-size: 11px; }
.site-footer > a:last-child { text-decoration: none; }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity 700ms ease, transform 700ms ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 900px) {
  .site-header { height: 72px; }
  .menu-button { width: 42px; height: 42px; padding: 10px; display: flex; flex-direction: column; justify-content: center; gap: 5px; background: transparent; border: 1px solid var(--line); border-radius: 50%; color: white; }
  .menu-button span:not(.sr-only) { width: 100%; height: 1px; background: currentColor; transition: transform 160ms ease; }
  .main-nav { position: absolute; left: 0; right: 0; top: 72px; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 12px 24px 24px; background: rgba(9,17,31,.97); border-bottom: 1px solid var(--line); }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 14px 0; border-bottom: 1px solid var(--line); }
  .main-nav .nav-cta { margin-top: 12px; padding: 12px 18px; border: 0; text-align: center; }
  .hero { min-height: auto; padding-top: 128px; grid-template-columns: 1fr; gap: 60px; }
  .hero-portrait { justify-self: center; width: min(78vw, 460px); }
  .hero-stats { grid-template-columns: 1fr; }
  .hero-stats div + div { border-left: 0; border-top: 1px solid var(--line); padding-left: 0; }
  .section-heading, .about-grid { grid-template-columns: 1fr; gap: 44px; }
  .major-labels-heading { grid-template-columns: 1fr; gap: 18px; }
  .project-grid, .logo-grid { grid-template-columns: repeat(2, 1fr); }
  .catalogue-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .catalogue-tools { grid-template-columns: 1fr; align-items: stretch; }
  .catalogue-counts { justify-content: flex-start; }
  .catalogue-source-strip output { width: 100%; margin-left: 0; }
  .chart-archive-heading { grid-template-columns: 1fr; gap: 24px; }
  .chart-ledger { grid-template-columns: 1fr; }
  .about-quote { margin-bottom: 90px; }
  .studio-panel { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; gap: 46px; }
  .contact-copy { position: static; }
  .site-footer { margin-inline: 24px; }
}

@media (max-width: 620px) {
  .brand-logo { height: 54px; }
  .hero { padding-inline: 22px; padding-bottom: 52px; }
  .hero h1 { font-size: clamp(54px, 17vw, 78px); }
  .hero-intro { font-size: 17px; }
  .portrait-caption { flex-direction: column; align-items: flex-start; }
  .portrait-caption small { text-align: left; }
  .section { padding: 92px 22px; }
  .section h2 { font-size: 47px; }
  .project-grid { grid-template-columns: 1fr; }
  .catalogue-grid { grid-template-columns: 1fr; }
  .catalogue-panel summary { padding-inline: 0; }
  .catalogue-counts { gap: 7px; }
  .catalogue-artist-toggle { grid-template-columns: 24px 1fr 28px; gap: 10px; padding: 18px 16px; }
  .catalogue-artist-meta { display: none; }
  .catalogue-group ul { margin: 0 16px 18px 50px; }
  .chart-archive { margin-top: 64px; padding-top: 52px; }
  .chart-ledger-card header, .chart-row { padding-inline: 18px; }
  .chart-row { align-items: flex-start; }
  .chart-row b { max-width: 112px; }
  .biography-content { grid-template-columns: 1fr; }
  .verified-highlights { grid-template-columns: 1fr; }
  .biography-source-link { flex-direction: column; align-items: flex-start; }
  .logo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .major-label-grid { grid-template-columns: 1fr; }
  .project-art { aspect-ratio: 1; }
  .logo-card { min-height: 130px; padding: 24px; }
  .section-link { flex-direction: column; gap: 16px; }
  .about-grid { padding-top: 54px; }
  .studio-section { padding: 22px; }
  .studio-panel { border-radius: 22px; }
  .studio-visual { min-height: 390px; }
  .studio-copy { padding: 38px 26px 44px; }
  .contact-section { padding-block: 110px; }
  .contact-form-row { grid-template-columns: 1fr; }
  .contact-form-footer { align-items: stretch; flex-direction: column; }
  .contact-submit { width: 100%; }
  .site-footer { flex-direction: column; align-items: flex-start; padding-block: 36px; }
}
