@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;500;600&family=Bodoni+Moda:ital,opsz,wght@0,6..96,400;0,6..96,500;1,6..96,400;1,6..96,500&family=Manrope:wght@300;400;500;600&family=Newsreader:ital,opsz,wght@0,6..72,400;0,6..72,500;1,6..72,400&display=swap');

:root {
  --ink: #0b0a09;
  --ink-soft: #151210;
  --wine: #3a1518;
  --ember: #d79746;
  --ember-light: #f0c27c;
  --bone: #eee8dc;
  --paper: #d9d0c1;
  --smoke: #9c958b;
  --line: rgba(238, 232, 220, 0.16);
  --display: 'Bodoni Moda', Georgia, serif;
  --hero-display: 'Newsreader', Georgia, serif;
  --body: 'Manrope', sans-serif;
  --utility: 'Barlow Condensed', sans-serif;
  --gutter: clamp(1.25rem, 4vw, 4.5rem);
  --section: clamp(5.5rem, 10vw, 10rem);
  --ease: cubic-bezier(.2, .75, .25, 1);
  --spot-x: 68%;
  --spot-y: 42%;
  --parallax-x: 0px;
  --parallax-y: 0px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body {
  margin: 0;
  color: var(--bone);
  background:
    radial-gradient(circle at 76% 12%, rgba(92, 36, 25, .22), transparent 32rem),
    var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  opacity: .075;
  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='.88' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

/* The first page view begins like a performance: bow, tension, then reveal. */
html.preloader-pending, html.preloader-pending body { overflow: hidden; }
html.preloader-pending body > :not(.site-preloader) { visibility: hidden; }
html.preloader-pending .intro-reveal { animation-play-state: paused; }
.site-preloader { position: fixed; inset: 0; z-index: 5000; display: grid; grid-template-rows: auto 1fr auto; min-height: 100svh; padding: clamp(1.3rem,4vw,4rem); overflow: hidden; color: var(--bone); background: radial-gradient(circle at 50% 50%, #2a1711 0%, #110d0b 38%, #070605 76%); clip-path: inset(0); transition: clip-path .9s var(--ease), visibility .9s; }
.site-preloader::before { content: ''; position: absolute; inset: 0; pointer-events: none; opacity: .14; background: linear-gradient(rgba(238,232,220,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(238,232,220,.08) 1px, transparent 1px); background-size: 6rem 6rem; mask-image: radial-gradient(circle, #000, transparent 72%); }
.site-preloader.is-leaving { clip-path: inset(0 0 100% 0); visibility: hidden; }
.preloader-head { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.preloader-brand { display: flex; align-items: center; gap: .85rem; color: var(--paper); font: 500 .72rem var(--utility); letter-spacing: .22em; text-transform: uppercase; }
.preloader-brand img { width: 2.5rem; height: 2.5rem; object-fit: contain; }
.preloader-head > span { color: #8c8479; font: 500 .65rem var(--utility); letter-spacing: .18em; text-transform: uppercase; }
.preloader-center { position: relative; display: grid; place-items: center; min-height: 20rem; }
.preloader-score { position: relative; width: min(78vw,52rem); height: min(50vh,28rem); }
.preloader-score::before, .preloader-score::after { content: ''; position: absolute; left: 50%; top: 50%; width: min(26rem,72%); aspect-ratio: 1; transform: translate(-50%,-50%); border: 1px solid rgba(240,194,124,.13); border-radius: 50%; }
.preloader-score::after { width: min(15rem,42%); border-style: dashed; animation: preload-orbit 10s linear infinite; }
@keyframes preload-orbit { to { transform: translate(-50%,-50%) rotate(360deg); } }
.preloader-strings { position: absolute; left: 50%; top: 50%; width: 7.5rem; height: 100%; transform: translate(-50%,-50%); }
.preloader-string { position: absolute; top: 0; bottom: 0; left: var(--string-x); width: 1rem; display: grid; grid-template-rows: repeat(15,1fr); transform: translateX(-50%); }
.preloader-string::before { content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 1px; background: linear-gradient(transparent, rgba(238,232,220,.28) 9%, rgba(240,194,124,.72) 50%, rgba(238,232,220,.28) 91%, transparent); }
.preloader-string i { position: relative; justify-self: center; width: 1px; height: calc(100% + 1px); background: var(--ember-light); opacity: 0; animation: preload-string 1.8s var(--ease) infinite; animation-delay: var(--string-delay); }
@keyframes preload-string {
  0%, 23%, 66%, 100% { opacity: 0; transform: translateX(0); }
  29% { opacity: .95; transform: translateX(var(--wave)); }
  36% { opacity: .75; transform: translateX(var(--wave-neg)); }
  43% { opacity: .62; transform: translateX(var(--wave)); }
  51% { opacity: .4; transform: translateX(var(--wave-neg)); }
  60% { opacity: 0; transform: translateX(0); }
}
.preloader-bow { position: absolute; left: 50%; top: 50%; width: min(76vw,46rem); height: 2.2rem; transform: translate(-50%,-8rem) rotate(-7deg); animation: preload-bow 1.8s var(--ease) infinite; }
.preloader-bow::before { content: ''; position: absolute; left: 0; right: 0; top: 50%; height: 2px; background: linear-gradient(90deg, transparent, #8c5a32 6%, #d29a5f 82%, #6d4228 94%, transparent); box-shadow: 0 4px 0 -1px rgba(238,232,220,.78); }
.preloader-bow::after { content: ''; position: absolute; right: 4%; top: calc(50% - .55rem); width: 3.1rem; height: 1.1rem; border: 1px solid rgba(240,194,124,.5); border-radius: 50%; transform: rotate(-3deg); }
@keyframes preload-bow {
  0% { transform: translate(-50%,-8rem) rotate(-7deg); }
  48% { transform: translate(-50%,1.5rem) rotate(-4deg); }
  100% { transform: translate(-50%,8rem) rotate(-8deg); }
}
.preloader-note { position: absolute; left: 50%; top: 50%; width: 3.2rem; height: 3.2rem; display: grid; place-items: center; transform: translate(-50%,-50%); border: 1px solid rgba(240,194,124,.42); border-radius: 50%; color: var(--ember-light); font: italic 400 1.15rem var(--display); background: rgba(8,7,6,.66); box-shadow: 0 0 0 0 rgba(240,194,124,.18); animation: preload-note 1.8s var(--ease) infinite; }
@keyframes preload-note { 0%,22%,100% { box-shadow: 0 0 0 0 rgba(240,194,124,.18); } 44% { box-shadow: 0 0 0 3.5rem rgba(240,194,124,0); } }
.preloader-foot { position: relative; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 1rem; color: #9d958a; font: 500 .66rem var(--utility); letter-spacing: .18em; text-transform: uppercase; }
.preloader-foot i { height: 1px; overflow: hidden; background: rgba(238,232,220,.14); }
.preloader-foot i::before { content: ''; display: block; width: 34%; height: 100%; background: var(--ember-light); animation: preload-progress 1.5s var(--ease) infinite; }
@keyframes preload-progress { from { transform: translateX(-110%); } to { transform: translateX(310%); } }
.preloader-foot em { color: var(--ember-light); font-style: normal; }

@media (pointer: fine) and (prefers-reduced-motion: no-preference) {
  body.has-bow-cursor, body.has-bow-cursor a, body.has-bow-cursor button,
  body.has-bow-cursor input, body.has-bow-cursor select, body.has-bow-cursor textarea,
  body.has-bow-cursor summary { cursor: none; }
}
::selection { background: var(--ember); color: var(--ink); }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
:focus-visible { outline: 2px solid var(--ember-light); outline-offset: 5px; }

.skip-link { position: fixed; top: .5rem; left: .5rem; transform: translateY(-180%); z-index: 999; padding: .7rem 1rem; background: var(--bone); color: var(--ink); }
.skip-link:focus { transform: translateY(0); }
.shell { width: min(100%, 1600px); margin-inline: auto; padding-inline: var(--gutter); }
.section { position: relative; padding-block: var(--section); }
.section--tight { padding-block: clamp(3.5rem, 7vw, 6.5rem); }
.section--paper { background: var(--bone); color: var(--ink); }
.section--wine { background: var(--wine); }
.line-top { border-top: 1px solid var(--line); }
.eyebrow {
  margin: 0 0 1.4rem;
  font: 500 .88rem/1 var(--utility);
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ember-light);
}
.section--paper .eyebrow { color: #864e24; }
.display { margin: 0; font-family: var(--display); font-weight: 400; line-height: .94; letter-spacing: -.04em; }
.display em { color: var(--ember-light); font-weight: 400; }
.display-xl { font-size: clamp(4rem, 9vw, 9.7rem); }
.display-lg { font-size: clamp(3.15rem, 7vw, 7rem); }
.display-md { font-size: clamp(2.5rem, 4.8vw, 4.8rem); }
.lede { max-width: 42rem; font-size: clamp(1.05rem, 1.5vw, 1.35rem); color: var(--paper); font-weight: 300; }
.section--paper .lede { color: #3c3832; }
.muted { color: var(--smoke); }
.balance { text-wrap: balance; }
.button-row { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 2.2rem; }
.button {
  min-height: 3.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .7rem;
  padding: .85rem 1.35rem;
  border: 1px solid var(--ember);
  background: var(--ember);
  color: var(--ink);
  font: 600 .9rem/1 var(--utility);
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .3s var(--ease), color .3s var(--ease), transform .3s var(--ease);
}
.button::after { content: '↗'; font-size: 1.1rem; transition: transform .3s var(--ease); }
.button:hover { background: var(--ember-light); transform: translateY(-2px); }
.button:hover::after { transform: translate(2px, -2px); }
.button--ghost { background: transparent; color: var(--bone); border-color: rgba(238,232,220,.45); }
.button--ghost:hover { color: var(--ink); border-color: var(--ember-light); }
.text-link { display: inline-flex; gap: .55rem; align-items: center; font: 500 .9rem var(--utility); letter-spacing: .14em; text-transform: uppercase; border-bottom: 1px solid currentColor; padding-bottom: .2rem; }

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  padding-top: .7rem;
  transition: padding .3s ease;
}
.site-header.is-scrolled { padding-top: .35rem; }
.nav-shell { width: min(calc(100% - 1.5rem), 1500px); height: 5.25rem; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 2rem; padding-inline: 1.2rem; border: 1px solid rgba(238,232,220,.12); background: rgba(9,8,7,.38); backdrop-filter: blur(12px); transition: height .3s ease, background .3s ease, border-color .3s ease; }
.is-scrolled .nav-shell { height: 4.6rem; background: rgba(9,8,7,.9); border-color: rgba(238,232,220,.18); }
.brand { position: relative; z-index: 3; display: inline-grid; grid-template-columns: 2.65rem auto; align-items: center; gap: .85rem; min-width: 12rem; }
.brand img { width: 2.65rem; height: 2.65rem; object-fit: contain; filter: saturate(.9) drop-shadow(0 0 14px rgba(215,151,70,.16)); }
.brand-name { display: flex; flex-direction: column; font: 500 .98rem/1 var(--utility); letter-spacing: .25em; }
.brand-name small { margin-top: .42rem; color: var(--smoke); font-size: .6rem; letter-spacing: .16em; }
.site-nav { display: block; }
.nav-links { display: flex; justify-content: center; gap: clamp(1rem, 2.2vw, 2.45rem); }
.site-nav a { position: relative; padding-block: .5rem; color: #c9c1b5; font: 500 .78rem/1 var(--utility); letter-spacing: .15em; text-transform: uppercase; }
.site-nav a::after { content: ''; position: absolute; left: 0; right: 100%; bottom: 0; height: 1px; background: var(--ember); transition: right .3s var(--ease); }
.site-nav a:hover, .site-nav a[aria-current='page'] { color: var(--bone); }
.site-nav a:hover::after, .site-nav a[aria-current='page']::after { right: 0; }
.nav-cta { display: flex; align-items: center; gap: 1.5rem; min-height: 3rem; font: 500 .78rem var(--utility); letter-spacing: .14em; text-transform: uppercase; border: 1px solid var(--ember); padding: .7rem .8rem .7rem 1.05rem; transition: background .3s, color .3s; }
.nav-cta b { width: 1.65rem; height: 1.65rem; display: grid; place-items: center; border-radius: 50%; background: var(--ember); color: var(--ink); font-size: .85rem; }
.nav-cta:hover { background: var(--ember); color: var(--ink); }
.nav-cta:hover b { background: var(--ink); color: var(--ember-light); }
.mobile-nav-contact { display: none; }
.mobile-menu-meta { display: none; }
.menu-toggle { position: relative; z-index: 3; display: none; width: 3.7rem; height: 3.25rem; background: transparent; border: 1px solid var(--line); cursor: pointer; }
.menu-toggle span, .menu-toggle::before, .menu-toggle::after { content: ''; display: block; width: 1.25rem; height: 1px; margin: 5px auto; background: currentColor; transition: .3s; }
.menu-toggle small { display: none; }
.menu-toggle[aria-expanded='true'] span { opacity: 0; }
.menu-toggle[aria-expanded='true']::before { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded='true']::after { transform: translateY(-6px) rotate(-45deg); }

/* Hero */
.hero { min-height: 100svh; display: grid; align-items: end; padding: 9.5rem var(--gutter) 3rem; isolation: isolate; overflow: hidden; }
.hero-media { position: absolute; inset: 0; z-index: -4; overflow: hidden; background: #080706; }
.hero-bg { position: absolute; inset: 0; z-index: -3; width: 100%; height: 100%; object-fit: cover; object-position: 58% 34%; filter: saturate(.75) contrast(1.05); }
.hero-video { position: absolute; left: 50%; top: 50%; width: 177.78vh; min-width: 100%; height: 56.25vw; min-height: 100%; transform: translate(-50%,-50%) scale(1.28); border: 0; pointer-events: none; opacity: .86; filter: saturate(.72) contrast(1.04); }
.hero::before { content: ''; position: absolute; inset: 0; z-index: -2; background: linear-gradient(90deg, rgba(11,10,9,.94) 0%, rgba(11,10,9,.63) 48%, rgba(11,10,9,.18) 82%), linear-gradient(0deg, rgba(11,10,9,.94), transparent 58%, rgba(11,10,9,.26)); }
.hero::after { content: ''; position: absolute; inset: 0; z-index: -1; background: radial-gradient(circle at var(--spot-x) var(--spot-y), rgba(240,194,124,.25), transparent 20rem); transition: background .12s linear; }
.hero .hero-bg, .page-hero .page-hero-bg { transform: translate3d(var(--parallax-x), var(--parallax-y), 0) scale(1.035); transition: transform .2s ease-out; }
.hero-copy { position: relative; z-index: 2; width: min(68rem, 76vw); }
.hero-copy .display { max-width: 12ch; font-family: var(--hero-display); font-size: clamp(4rem, 7.4vw, 7.9rem); font-weight: 400; line-height: .95; letter-spacing: -.035em; text-shadow: 0 3px 35px rgba(0,0,0,.55); }
.hero-copy .display em { font-family: var(--hero-display); }
.hero-bottom { display: grid; grid-template-columns: 1fr minmax(14rem, 26rem); align-items: end; gap: 3rem; margin-top: 2rem; }
.hero-note { color: #cec5b8; max-width: 34rem; }
.play-pill { justify-self: end; display: grid; place-items: center; width: 8.3rem; height: 8.3rem; border-radius: 50%; border: 1px solid rgba(238,232,220,.5); background: rgba(11,10,9,.28); backdrop-filter: blur(8px); font: 500 .75rem var(--utility); letter-spacing: .16em; text-transform: uppercase; cursor: pointer; transition: .4s var(--ease); }
.play-pill:hover { background: var(--ember); color: var(--ink); border-color: var(--ember); transform: scale(1.05) rotate(-5deg); }
.intro-reveal { animation: rise .9s var(--ease) both; }
.intro-reveal:nth-child(2) { animation-delay: .12s; }
.intro-reveal:nth-child(3) { animation-delay: .24s; }
@keyframes rise { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
.marquee { overflow: hidden; border-block: 1px solid var(--line); background: var(--ink-soft); }
.marquee-track { width: max-content; display: flex; align-items: center; gap: 2rem; padding: 1rem 0; animation: marquee 25s linear infinite; font: 500 .82rem var(--utility); letter-spacing: .18em; text-transform: uppercase; color: var(--paper); }
.marquee-track span::after { content: '✦'; margin-left: 2rem; color: var(--ember); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* Services appear immediately after the promise, so visitors can act while interest is highest. */
.services-opening { overflow: hidden; }
.services-opening-head { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 2rem; margin-bottom: 3rem; }
.services-opening-head .display { max-width: 13ch; }
.home-services-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 1px; background: rgba(11,10,9,.16); border: 1px solid rgba(11,10,9,.16); }
.home-service { position: relative; min-height: 29rem; display: flex; flex-direction: column; justify-content: flex-end; padding: 1.5rem; overflow: hidden; isolation: isolate; color: var(--bone); background: var(--ink); }
.home-service img { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; filter: saturate(.62) brightness(.68); transition: transform .8s var(--ease), filter .6s ease; }
.home-service::before { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(0deg, rgba(7,6,5,.98), rgba(7,6,5,.08) 75%); }
.home-service:hover img { transform: scale(1.055); filter: saturate(.9) brightness(.78); }
.service-use { margin-bottom: auto; color: #eee6d8; font: 500 .72rem var(--utility); letter-spacing: .16em; text-transform: uppercase; }
.home-service h3 { margin: 0 0 .55rem; font: 400 clamp(2rem,2.7vw,3rem)/1 var(--hero-display); }
.home-service p { margin: 0 0 1.3rem; color: #c8c0b4; font-size: .88rem; }
.home-service .service-arrow { width: 2.4rem; height: 2.4rem; display: grid; place-items: center; border: 1px solid rgba(238,232,220,.42); border-radius: 50%; transition: background .3s, color .3s, transform .3s; }
.home-service:hover .service-arrow { background: var(--ember); color: var(--ink); border-color: var(--ember); transform: translate(3px,-3px); }
.service-assurance { display: flex; justify-content: center; flex-wrap: wrap; gap: 1rem 2.5rem; padding-top: 2rem; color: #595249; font: 500 .72rem var(--utility); letter-spacing: .13em; text-transform: uppercase; }
.service-assurance span::before { content: '✓'; margin-right: .65rem; color: #8a5528; }

/* The violin becomes a background character and crosses the frame with the scroll. */
.instrument-journey { --instrument-x: 16vw; --instrument-scale: .94; --opening-opacity: 1; --closing-opacity: 0; --opening-y: 0px; --closing-y: 28px; --watermark-x: 0vw; --journey-progress: 0%; position: relative; height: 230svh; background: #0a0807; }
.instrument-sticky { position: sticky; top: 0; height: 100svh; min-height: 42rem; overflow: hidden; isolation: isolate; background: radial-gradient(circle at 66% 45%, #2b1812 0%, #120e0b 40%, #080706 78%); }
.instrument-sticky::before { content: ''; position: absolute; inset: 0; z-index: -2; background: linear-gradient(rgba(238,232,220,.028) 1px, transparent 1px), linear-gradient(90deg, rgba(238,232,220,.028) 1px, transparent 1px); background-size: 5rem 5rem; mask-image: linear-gradient(90deg, transparent 4%, #000 35%, #000 96%, transparent); }
.instrument-watermark { position: absolute; left: -.04em; bottom: -.17em; z-index: -1; color: transparent; -webkit-text-stroke: 1px rgba(238,232,220,.065); font: italic 400 clamp(10rem,25vw,26rem)/.75 var(--display); letter-spacing: -.07em; pointer-events: none; transform: translate3d(var(--watermark-x),0,0); will-change: transform; }
.instrument-scene { position: absolute; inset: 0; z-index: 0; pointer-events: none; transform: translate3d(var(--instrument-x),0,0) scale(var(--instrument-scale)); transform-origin: center; will-change: transform; }
.instrument-halo { position: absolute; left: 64%; top: 49%; width: min(47rem,62vw); aspect-ratio: 1; transform: translate(-50%,-50%); border: 1px solid rgba(240,194,124,.17); border-radius: 50%; box-shadow: 0 0 0 5rem rgba(240,194,124,.022), 0 0 0 10rem rgba(240,194,124,.014); }
.instrument-halo::before, .instrument-halo::after { content: ''; position: absolute; inset: 14%; border: 1px dashed rgba(240,194,124,.13); border-radius: inherit; }
.instrument-halo::after { inset: 30%; border-style: solid; }
.instrument-strings { position: absolute; inset: -10%; display: flex; justify-content: center; gap: clamp(1rem,2vw,2.2rem); transform: rotate(-8deg) scale(1.15); opacity: .28; }
.instrument-strings i { width: 1px; height: 120%; background: linear-gradient(transparent, rgba(240,194,124,.08) 15%, rgba(240,194,124,.42) 50%, rgba(240,194,124,.08) 85%, transparent); }
.instrument-model { position: absolute; left: 64%; top: 50%; width: min(58vw,52rem); height: 94svh; transform: translate(-50%,-50%); opacity: 0; filter: drop-shadow(0 35px 32px rgba(0,0,0,.46)); transition: opacity .8s var(--ease); --poster-color: transparent; --progress-bar-color: var(--ember); --progress-bar-height: 2px; }
.instrument-sticky.is-loaded .instrument-model { opacity: .94; }
.instrument-loader { position: absolute; left: 64%; top: 50%; width: min(18rem,45vw); display: grid; gap: .7rem; transform: translate(-50%,-50%); transition: opacity .4s ease, visibility .4s; }
.instrument-loader > span { width: 100%; height: 1px; overflow: hidden; background: rgba(238,232,220,.18); }
.instrument-loader i { display: block; width: 0; height: 100%; background: var(--ember-light); transition: width .18s linear; }
.instrument-loader small { color: var(--smoke); font: 500 .65rem var(--utility); letter-spacing: .15em; text-align: center; text-transform: uppercase; }
.instrument-sticky.is-loaded .instrument-loader { opacity: 0; visibility: hidden; }
.instrument-vignette { position: absolute; inset: 0; z-index: 1; pointer-events: none; background: linear-gradient(90deg, rgba(7,6,5,.96) 0%, rgba(7,6,5,.7) 27%, transparent 51%, rgba(7,6,5,.22) 72%, rgba(7,6,5,.72) 100%), linear-gradient(0deg, rgba(7,6,5,.75), transparent 30%, rgba(7,6,5,.24)); }
.instrument-story { position: relative; z-index: 2; height: 100%; display: grid; grid-template-columns: 1fr 1fr; align-items: center; padding-top: 5rem; padding-bottom: 6rem; pointer-events: none; }
.instrument-copy { width: min(100%,38rem); will-change: opacity, transform; }
.instrument-copy .display { max-width: 10ch; }
.instrument-copy .lede { max-width: 33rem; }
.instrument-copy--opening { opacity: var(--opening-opacity); transform: translate3d(0,var(--opening-y),0); }
.instrument-copy--closing { justify-self: end; align-self: end; margin-bottom: clamp(3rem,8vh,7rem); text-align: right; opacity: var(--closing-opacity); transform: translate3d(0,var(--closing-y),0); }
.instrument-copy--closing .display { max-width: 11ch; margin-left: auto; }
.instrument-scroll-cue { position: absolute; z-index: 3; left: var(--gutter); right: var(--gutter); bottom: 1.4rem; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 1rem; color: #8e877d; font: 500 .65rem var(--utility); letter-spacing: .15em; text-transform: uppercase; }
.instrument-scroll-cue i { height: 1px; background: rgba(238,232,220,.16); overflow: hidden; }
.instrument-scroll-cue b { display: block; width: var(--journey-progress); height: 100%; background: var(--ember-light); }
.instrument-scroll-cue em { color: var(--ember-light); font-style: normal; }

/* The violin is the interaction model: four strings bend toward the bow-like pointer. */
.resonance-canvas { position: absolute; inset: 0; z-index: 1; width: 100%; height: 100%; pointer-events: none; mix-blend-mode: screen; opacity: .85; }
.page-hero-copy { position: relative; z-index: 2; }
.bow-cursor { --cursor-color: #f0c27c; --cursor-glow: rgba(240,194,124,.8); position: fixed; left: 0; top: 0; width: 0; height: 0; z-index: 999; color: var(--cursor-color); pointer-events: none; opacity: 0; transition: opacity .25s ease, color .22s ease; will-change: transform; }
.bow-cursor.is-visible { opacity: 1; }
.bow-cursor.is-dark { --cursor-color: #351416; --cursor-glow: rgba(53,20,22,.42); }
.bow-cursor-ring { position: absolute; left: -22px; top: -22px; width: 44px; height: 44px; border: 1px solid currentColor; border-radius: 50%; opacity: .72; transition: width .35s var(--ease), height .35s var(--ease), left .35s var(--ease), top .35s var(--ease), background .35s ease, border-color .22s ease; }
.bow-cursor-core { position: absolute; left: -2px; top: -2px; width: 4px; height: 4px; border-radius: 50%; background: currentColor; box-shadow: 0 0 14px var(--cursor-glow); }
.bow-cursor-stick { position: absolute; left: -42px; top: 0; width: 84px; height: 1px; transform-origin: center; background: linear-gradient(90deg, transparent, currentColor 18%, currentColor 82%, transparent); transition: width .35s var(--ease), left .35s var(--ease), background .22s ease; will-change: transform; }
.bow-cursor.is-active .bow-cursor-ring { left: -32px; top: -32px; width: 64px; height: 64px; background: color-mix(in srgb, currentColor 10%, transparent); border-color: currentColor; opacity: 1; }
.bow-cursor.is-active .bow-cursor-stick { left: -52px; width: 104px; }
.bow-cursor.is-pressed .bow-cursor-ring { transform: scale(.78); }

.music-burst { --burst-color: #f0c27c; position: fixed; left: 0; top: 0; z-index: 1000; width: 0; height: 0; color: var(--burst-color); pointer-events: none; }
.music-burst.is-dark { --burst-color: #351416; }
.music-burst span { position: absolute; left: -.35rem; top: -.7rem; color: currentColor; font: italic 500 1.1rem/1 var(--display); text-shadow: 0 0 14px color-mix(in srgb, currentColor 45%, transparent); opacity: 0; animation: music-flight .72s var(--ease) forwards; animation-delay: var(--note-delay); }
@keyframes music-flight {
  0% { opacity: 0; transform: translate3d(0,0,0) rotate(-10deg) scale(.7); }
  18% { opacity: 1; }
  100% { opacity: 0; transform: translate3d(var(--note-x),var(--note-y),0) rotate(var(--note-r)) scale(1.08); }
}

.emotion-score { overflow: hidden; }
.emotion-score::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 17% 52%, rgba(58,21,24,.68), transparent 35rem); pointer-events: none; }
.emotion-grid { position: relative; display: grid; grid-template-columns: minmax(20rem,.85fr) minmax(0,1.15fr); gap: clamp(3rem,8vw,10rem); align-items: start; }
.emotion-anchor { position: sticky; top: 9rem; min-height: 26rem; display: flex; flex-direction: column; justify-content: space-between; }
.emotion-word { display: block; margin-left: -.04em; color: transparent; -webkit-text-stroke: 1px rgba(240,194,124,.56); font: italic 400 clamp(5rem,12vw,12rem)/.75 var(--display); letter-spacing: -.07em; text-transform: uppercase; transition: opacity .22s ease, transform .45s var(--ease); }
.emotion-word.is-changing { opacity: 0; transform: translateY(12px); }
.emotion-intro { max-width: 27rem; color: var(--smoke); }
.emotion-beats { border-top: 1px solid var(--line); }
.emotion-beat { position: relative; display: grid; grid-template-columns: 9rem 1fr; gap: 2rem; padding: 2.3rem 0; border-bottom: 1px solid var(--line); transition: padding .45s var(--ease), background .3s ease; }
.emotion-beat::after { content: ''; position: absolute; left: 0; bottom: -1px; width: 0; height: 1px; background: var(--ember-light); transition: width .6s var(--ease); }
.emotion-beat:is(:hover,:focus-within) { padding-left: 1.25rem; }
.emotion-beat:is(:hover,:focus-within)::after { width: 100%; }
.emotion-phase { color: var(--ember-light); font: 500 .75rem var(--utility); letter-spacing: .16em; text-transform: uppercase; }
.emotion-beat h3 { margin: 0 0 .55rem; font: italic 400 clamp(2rem,3.4vw,3.6rem)/1 var(--display); }
.emotion-beat p { max-width: 34rem; margin: 0; color: var(--smoke); }
.emotion-beat button { position: absolute; inset: 0; border: 0; background: transparent; color: transparent; }

.breath-reveal { overflow: hidden; }
.breath-reveal > span { display: inline-block; animation: phrase-in 1.15s var(--ease) both; }
@keyframes phrase-in { from { opacity: 0; transform: translateY(105%) skewY(3deg); } to { opacity: 1; transform: none; } }

/* Layouts */
.statement-grid { display: grid; grid-template-columns: minmax(0,1.3fr) minmax(17rem,.7fr); gap: clamp(3rem,8vw,10rem); align-items: end; }
.statement-copy { max-width: 34rem; margin-left: auto; }
.statement-copy strong { color: var(--ember-light); font-weight: 500; }
.split { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: clamp(2.5rem,7vw,8rem); align-items: center; }
.split--wide { grid-template-columns: minmax(0,1.2fr) minmax(18rem,.8fr); }
.image-frame { position: relative; overflow: hidden; background: #1c1916; }
.image-frame::after { content: ''; position: absolute; inset: 0; border: 1px solid rgba(238,232,220,.18); pointer-events: none; }
.image-frame img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.image-frame:hover img { transform: scale(1.025); }
.portrait-frame { aspect-ratio: 4 / 5; }
.landscape-frame { aspect-ratio: 16 / 10; }
.image-caption { display: flex; justify-content: space-between; gap: 1rem; margin-top: .8rem; color: var(--smoke); font: 400 .72rem var(--utility); letter-spacing: .13em; text-transform: uppercase; }
.card-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); border-left: 1px solid var(--line); }
.service-card { min-height: 31rem; position: relative; display: flex; flex-direction: column; justify-content: flex-end; padding: 2rem; border-right: 1px solid var(--line); border-block: 1px solid var(--line); overflow: hidden; }
.service-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; filter: grayscale(.25) saturate(.75); transition: transform .8s var(--ease), filter .5s; }
.service-card::before { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(0deg, rgba(11,10,9,.98), rgba(11,10,9,.1) 75%); }
.service-card:hover img { transform: scale(1.06); filter: none; }
.service-card h3 { font: 400 clamp(2rem,3vw,3.2rem)/1 var(--display); margin: 0 0 .65rem; }
.service-card p { color: #c8c0b4; max-width: 29rem; }
.service-card .text-link { margin-top: 1rem; color: var(--ember-light); align-self: flex-start; }
.number-tag { position: absolute; top: 1.5rem; left: 1.5rem; font: 500 .75rem var(--utility); letter-spacing: .16em; color: var(--paper); }
.metric-strip { display: grid; grid-template-columns: repeat(3,1fr); border-block: 1px solid var(--line); }
.metric { padding: 2rem var(--gutter); border-right: 1px solid var(--line); }
.metric:last-child { border-right: 0; }
.metric strong { display: block; color: var(--ember-light); font: 400 clamp(2.2rem,4vw,4rem)/1 var(--display); }
.metric span { font: 500 .75rem var(--utility); letter-spacing: .14em; text-transform: uppercase; color: var(--smoke); }
.quote-feature { max-width: 80rem; margin: 0 auto; text-align: center; }
.quote-mark { color: var(--ember); font: 400 5rem/1 var(--display); }
.quote-feature blockquote { margin: 0; font: 400 clamp(2rem,4.3vw,4.7rem)/1.15 var(--display); }
.quote-feature cite { display: block; margin-top: 2rem; color: var(--ember-light); font: 500 .85rem var(--utility); letter-spacing: .16em; text-transform: uppercase; font-style: normal; }
.feature-list { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--line); }
.feature { padding: 2rem; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.feature:last-child { border-right: 0; }
.feature svg { width: 2rem; color: var(--ember); margin-bottom: 2rem; }
.feature h3 { margin: 0 0 .75rem; font: 400 1.75rem var(--display); }
.feature p { color: var(--smoke); margin: 0; }
.cta-panel { padding: clamp(3rem,7vw,7rem); background: linear-gradient(125deg, var(--wine), #160c0c 72%); border: 1px solid rgba(240,194,124,.22); overflow: hidden; }
.cta-panel .display { max-width: 12ch; }

/* Inner page heroes */
.page-hero { min-height: 72svh; display: grid; align-items: end; position: relative; padding: 10rem var(--gutter) 4rem; overflow: hidden; isolation: isolate; }
.page-hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -3; filter: saturate(.65); }
.page-hero::before { content: ''; position: absolute; inset: 0; z-index: -2; background: linear-gradient(90deg, rgba(11,10,9,.97), rgba(11,10,9,.6) 58%, rgba(11,10,9,.18)), linear-gradient(0deg, rgba(11,10,9,.9), transparent 60%); }
.page-hero-copy { max-width: 74rem; }
.page-hero-copy .display { max-width: 13ch; }
.page-hero-copy .lede { margin-top: 1.5rem; }
.page-index { position: absolute; right: var(--gutter); bottom: 3rem; font: 400 clamp(5rem,12vw,12rem)/.8 var(--display); color: rgba(238,232,220,.08); }

/* About */
.story-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(3rem,8vw,9rem); }
.sticky-label { position: sticky; top: 9rem; align-self: start; }
.story-copy p { font-size: clamp(1.05rem,1.4vw,1.25rem); color: #c7beb1; }
.story-copy .dropcap::first-letter { float: left; padding: .12em .12em 0 0; color: var(--ember-light); font: 400 5.5em/.7 var(--display); }
.career { margin-top: 4rem; border-top: 1px solid var(--line); }
.career-item { display: grid; grid-template-columns: 7rem 1fr; gap: 2rem; padding: 1.6rem 0; border-bottom: 1px solid var(--line); }
.career-item time { color: var(--ember-light); font: 500 .85rem var(--utility); letter-spacing: .1em; }
.career-item h3 { margin: 0 0 .4rem; font: 400 1.8rem var(--display); }
.career-item p { margin: 0; font-size: .95rem; }
.photo-duet { display: grid; grid-template-columns: 1.15fr .85fr; gap: 1rem; align-items: end; }
.photo-duet .image-frame:first-child { aspect-ratio: 4/5; }
.photo-duet .image-frame:last-child { aspect-ratio: 3/4; transform: translateY(10%); }

/* Services */
.service-row { display: grid; grid-template-columns: 7rem 1fr 1fr; gap: clamp(1.5rem,4vw,4rem); padding: 4rem 0; border-top: 1px solid var(--line); align-items: start; }
.service-row:last-child { border-bottom: 1px solid var(--line); }
.service-row .roman { color: var(--ember); font: 400 2rem var(--display); }
.service-row h2 { margin: 0; font: 400 clamp(2.8rem,5vw,5.5rem)/.95 var(--display); }
.service-row p { margin-top: 0; color: var(--smoke); }
.chips { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.3rem; }
.chip { padding: .45rem .7rem; border: 1px solid var(--line); color: var(--paper); font: 500 .72rem var(--utility); letter-spacing: .1em; text-transform: uppercase; }
.process { counter-reset: process; display: grid; grid-template-columns: repeat(4,1fr); }
.process-step { counter-increment: process; padding: 2rem; min-height: 19rem; border: 1px solid rgba(11,10,9,.15); margin-left: -1px; display: flex; flex-direction: column; }
.process-step::before { content: '0' counter(process); color: #8d5a27; font: 500 .8rem var(--utility); letter-spacing: .15em; }
.process-step h3 { margin: auto 0 .8rem; font: 400 2rem var(--display); }
.process-step p { color: #565047; font-size: .92rem; }
.faq { max-width: 65rem; margin-left: auto; }
.faq details { border-top: 1px solid var(--line); }
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; list-style: none; display: flex; justify-content: space-between; gap: 2rem; padding: 1.4rem 0; font: 400 1.45rem var(--display); }
.faq summary::after { content: '+'; color: var(--ember-light); }
.faq details[open] summary::after { content: '−'; }
.faq details p { color: var(--smoke); padding: 0 2rem 1.5rem 0; }

/* Media */
.video-feature { display: grid; grid-template-columns: 1.3fr .7fr; gap: clamp(2rem,5vw,5rem); align-items: center; }
.video-stage { position: relative; aspect-ratio: 16/9; background: #000; box-shadow: 0 2rem 6rem rgba(0,0,0,.4); }
.video-stage iframe { width: 100%; height: 100%; border: 0; }
.video-poster { position: absolute; inset: 0; width: 100%; height: 100%; padding: 0; border: 0; background: #000; cursor: pointer; overflow: hidden; }
.video-poster img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease), filter .5s; }
.video-poster::after { content: '▶'; position: absolute; left: 50%; top: 50%; width: 4.5rem; height: 4.5rem; display: grid; place-items: center; border-radius: 50%; background: var(--ember); color: var(--ink); transform: translate(-50%,-50%); box-shadow: 0 1rem 3rem rgba(0,0,0,.35); }
.video-poster:hover img { transform: scale(1.03); filter: brightness(.8); }
.video-card-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.video-card { position: relative; min-height: 30rem; background: var(--ink); overflow: hidden; cursor: pointer; }
.video-card img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.65) brightness(.65); transition: .7s var(--ease); }
.video-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(11,10,9,.95), transparent 67%); }
.video-card:hover img { transform: scale(1.05); filter: saturate(.9) brightness(.8); }
.video-card-copy { position: absolute; inset: auto 1.5rem 1.5rem; z-index: 2; }
.video-card-copy h3 { margin: .5rem 0; font: 400 2rem/1.1 var(--display); }
.play-dot { width: 3rem; height: 3rem; border-radius: 50%; display: grid; place-items: center; background: var(--ember); color: var(--ink); font-size: .85rem; }
.gallery { display: grid; grid-template-columns: repeat(12,1fr); grid-auto-rows: 7vw; gap: .75rem; }
.gallery .image-frame:nth-child(1) { grid-column: 1/6; grid-row: 1/7; }
.gallery .image-frame:nth-child(2) { grid-column: 6/10; grid-row: 1/5; }
.gallery .image-frame:nth-child(3) { grid-column: 10/13; grid-row: 1/6; }
.gallery .image-frame:nth-child(4) { grid-column: 6/10; grid-row: 5/10; }
.gallery .image-frame:nth-child(5) { grid-column: 1/6; grid-row: 7/11; }
.gallery .image-frame:nth-child(6) { grid-column: 10/13; grid-row: 6/11; }

/* Repertoire */
.song-tools { display: flex; gap: 1rem; justify-content: space-between; align-items: center; margin-bottom: 3rem; }
.search-wrap { position: relative; width: min(100%, 28rem); }
.search-wrap input { width: 100%; padding: 1rem 1rem 1rem 2.8rem; color: var(--bone); background: transparent; border: 0; border-bottom: 1px solid var(--line); outline: none; }
.search-wrap::before { content: '⌕'; position: absolute; left: .7rem; top: .7rem; color: var(--ember); font-size: 1.4rem; }
.filter-tabs { display: flex; flex-wrap: wrap; gap: .5rem; }
.filter-tabs button { background: transparent; color: var(--smoke); border: 1px solid var(--line); padding: .6rem .9rem; cursor: pointer; font: 500 .72rem var(--utility); letter-spacing: .1em; text-transform: uppercase; }
.filter-tabs button.is-active { background: var(--ember); color: var(--ink); border-color: var(--ember); }
.song-list { border-top: 1px solid var(--line); }
.song { display: grid; grid-template-columns: 4rem 1fr 12rem; gap: 1rem; padding: 1rem .5rem; border-bottom: 1px solid var(--line); transition: background .2s; }
.song:hover { background: rgba(238,232,220,.035); }
.song-number { color: var(--smoke); font: 500 .75rem var(--utility); }
.song-title { color: var(--paper); }
.song-genre { color: var(--ember-light); text-align: right; font: 500 .7rem var(--utility); letter-spacing: .12em; text-transform: uppercase; }
.empty-state { display: none; padding: 4rem 0; color: var(--smoke); }

/* Reviews */
.reviews-grid { columns: 3 21rem; column-gap: 1rem; }
.review-card { display: inline-block; width: 100%; break-inside: avoid; padding: 2rem; margin: 0 0 1rem; border: 1px solid var(--line); background: rgba(238,232,220,.025); }
.review-card .stars { color: var(--ember-light); letter-spacing: .2em; }
.review-card blockquote { margin: 1.4rem 0 2rem; font: 400 clamp(1.25rem,1.7vw,1.7rem)/1.45 var(--display); }
.review-card cite { color: var(--smoke); font: 500 .75rem var(--utility); letter-spacing: .12em; text-transform: uppercase; font-style: normal; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(3rem,8vw,9rem); }
.contact-aside { position: sticky; top: 8rem; align-self: start; }
.contact-list { margin-top: 3rem; border-top: 1px solid var(--line); }
.contact-list a, .contact-list div { display: block; padding: 1.1rem 0; border-bottom: 1px solid var(--line); }
.contact-list small { display: block; color: var(--smoke); font: 500 .7rem var(--utility); letter-spacing: .15em; text-transform: uppercase; }
.contact-form { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.2rem; }
.field { display: flex; flex-direction: column; gap: .5rem; }
.field--full { grid-column: 1/-1; }
.field label { color: var(--paper); font: 500 .72rem var(--utility); letter-spacing: .14em; text-transform: uppercase; }
.field input, .field select, .field textarea { width: 100%; padding: .95rem 0; background: transparent; color: var(--bone); border: 0; border-bottom: 1px solid rgba(238,232,220,.3); border-radius: 0; outline: 0; }
.field select { color-scheme: dark; }
.field textarea { min-height: 8rem; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--ember-light); }
.form-note { grid-column: 1/-1; color: var(--smoke); font-size: .8rem; }
.form-status { grid-column: 1/-1; min-height: 1.5rem; color: var(--ember-light); }

/* Footer + modal */
.site-footer { padding: 5rem var(--gutter) 2rem; border-top: 1px solid var(--line); background: #080706; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .65fr .65fr .65fr; gap: 3rem; }
.footer-brand img { width: 5rem; margin-bottom: 1.5rem; }
.footer-brand p { max-width: 26rem; color: var(--smoke); }
.footer-col h3 { margin: 0 0 1.2rem; color: var(--ember-light); font: 500 .75rem var(--utility); letter-spacing: .15em; text-transform: uppercase; }
.footer-col a, .footer-col span { display: block; margin-bottom: .65rem; color: #bdb5aa; font-size: .9rem; }
.footer-col a:hover { color: var(--bone); }
.footer-bottom { display: flex; justify-content: space-between; gap: 2rem; margin-top: 4rem; padding-top: 1.5rem; border-top: 1px solid var(--line); color: #716d67; font: 400 .7rem var(--utility); letter-spacing: .1em; text-transform: uppercase; }
.video-modal { width: min(92vw, 1100px); padding: 0; border: 1px solid rgba(240,194,124,.4); background: #050505; color: var(--bone); }
.video-modal::backdrop { background: rgba(0,0,0,.85); backdrop-filter: blur(8px); }
.modal-close { position: absolute; top: .75rem; right: .75rem; z-index: 2; width: 2.8rem; height: 2.8rem; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; background: rgba(0,0,0,.5); cursor: pointer; }
.modal-frame { aspect-ratio: 16/9; }
.modal-frame iframe { width: 100%; height: 100%; border: 0; }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1050px) {
  body.menu-open { overflow: hidden; }
  .site-header { padding-top: .35rem; }
  .nav-cta { display: none; }
  .menu-toggle { position: absolute; right: .85rem; top: 50%; display: block; transform: translateY(-50%); }
  .nav-shell, .is-scrolled .nav-shell { position: relative; width: calc(100% - .7rem); height: 4.8rem; padding-inline: .85rem 5.5rem; }
  .site-nav { position: fixed; inset: 0; min-height: 100svh; display: flex; flex-direction: column; padding: 7rem clamp(1.3rem,6vw,4rem) 1.5rem; overflow-y: auto; background: linear-gradient(90deg, rgba(8,7,6,.985), rgba(8,7,6,.93)), url('assets/home-wide.avif') center/cover; clip-path: circle(0 at calc(100% - 3rem) 2.8rem); opacity: 0; visibility: hidden; transition: clip-path .75s var(--ease), opacity .25s ease, visibility .75s; }
  .site-nav.is-open { clip-path: circle(150% at calc(100% - 3rem) 2.8rem); opacity: 1; visibility: visible; }
  .nav-links { display: grid; justify-content: stretch; gap: 0; }
  .site-nav .nav-links a { display: flex; align-items: center; justify-content: space-between; padding: .55rem 0; border-bottom: 1px solid var(--line); color: var(--bone); font: 400 clamp(2.3rem,6vw,4rem)/1 var(--hero-display); letter-spacing: -.03em; text-transform: none; opacity: 0; transform: translateY(18px); transition: color .25s, opacity .45s var(--ease), transform .45s var(--ease); }
  .site-nav.is-open .nav-links a { opacity: 1; transform: none; }
  .site-nav.is-open .nav-links a:nth-child(2) { transition-delay: .05s; }
  .site-nav.is-open .nav-links a:nth-child(3) { transition-delay: .1s; }
  .site-nav.is-open .nav-links a:nth-child(4) { transition-delay: .15s; }
  .site-nav.is-open .nav-links a:nth-child(5) { transition-delay: .2s; }
  .site-nav.is-open .nav-links a:nth-child(6) { transition-delay: .25s; }
  .site-nav.is-open .nav-links a:nth-child(7) { transition-delay: .3s; }
  .site-nav .nav-links a::after { content: '↗'; position: static; display: block; width: auto; height: auto; color: var(--ember-light); background: none; font: 400 1rem var(--body); }
  .site-nav .mobile-nav-contact { display: block; }
  .mobile-menu-meta { display: grid; grid-template-columns: 1fr; gap: 1rem; margin-top: 2rem; padding-top: 1rem; }
  .mobile-menu-meta > p { margin: 0; color: var(--ember-light); font: 500 .7rem var(--utility); letter-spacing: .17em; text-transform: uppercase; }
  .mobile-service-links { display: flex; flex-wrap: wrap; gap: .45rem; }
  .site-nav .mobile-service-links a { padding: .55rem .7rem; border: 1px solid var(--line); color: #cfc6ba; font: 500 .72rem var(--utility); letter-spacing: .1em; text-transform: uppercase; }
  .site-nav .mobile-service-links a::after, .site-nav .mobile-menu-bottom a::after { display: none; }
  .mobile-menu-bottom { display: grid; grid-template-columns: 1fr auto; gap: 1rem; align-items: center; margin-top: .5rem; }
  .site-nav .mobile-menu-bottom a { color: var(--paper); font: 500 .8rem var(--utility); letter-spacing: .12em; text-transform: uppercase; }
  .site-nav .mobile-menu-bottom .mobile-booking { display: flex; justify-content: space-between; padding: 1rem 1.1rem; background: var(--ember); color: var(--ink); }
  .menu-open .nav-shell { background: transparent; border-color: transparent; backdrop-filter: none; }
  .nav-shell { grid-template-columns: auto 1fr; }
  .home-services-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .card-grid, .feature-list, .video-card-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 25rem; }
  .service-row { grid-template-columns: 4rem 1fr; }
  .service-row > div:last-child { grid-column: 2; }
  .process { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-brand { grid-column: 1/-1; }
  .video-feature { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  :root { --gutter: 1.2rem; --section: 5rem; }
  .site-preloader { padding: 1.1rem; }
  .preloader-head > span, .preloader-foot em { display: none; }
  .preloader-score { width: 94vw; height: 54vh; }
  .preloader-bow { width: 112vw; }
  .preloader-foot { grid-template-columns: auto 1fr; }
  .nav-shell, .is-scrolled .nav-shell { height: 4.5rem; gap: 1rem; }
  .brand { min-width: 0; }
  .brand img { width: 2.2rem; height: 2.2rem; }
  .brand-name { font-size: .85rem; }
  .brand-name small { display: none; }
  .menu-toggle { right: .7rem; width: 5rem; height: 3rem; }
  .menu-toggle small { display: block; position: absolute; left: .65rem; top: 50%; transform: translateY(-50%); color: var(--paper); font: 500 .68rem var(--utility); letter-spacing: .13em; text-transform: uppercase; }
  .menu-toggle span, .menu-toggle::before, .menu-toggle::after { position: absolute; right: .65rem; width: 1rem; margin: 0; }
  .menu-toggle::before { top: 1.05rem; }
  .menu-toggle span { top: 1.48rem; }
  .menu-toggle::after { top: 1.9rem; }
  .menu-toggle[aria-expanded='true']::before { top: 1.5rem; transform: rotate(45deg); }
  .menu-toggle[aria-expanded='true']::after { top: 1.5rem; transform: rotate(-45deg); }
  .site-nav { padding-top: 6.4rem; }
  .site-nav .nav-links a { font-size: clamp(2.25rem,11vw,3.3rem); }
  .mobile-menu-bottom { grid-template-columns: 1fr; }
  .hero { min-height: 100svh; padding-top: 6.5rem; }
  .hero-copy { width: 100%; }
  .hero-copy .display { max-width: 10ch; font-size: clamp(3.4rem,14vw,4.6rem); line-height: .98; letter-spacing: -.025em; }
  .hero-bottom { grid-template-columns: 1fr; }
  .play-pill { justify-self: start; width: 6.5rem; height: 6.5rem; }
  .display-xl { font-size: clamp(3.6rem,17vw,6rem); }
  .services-opening-head { grid-template-columns: 1fr; align-items: start; }
  .home-services-grid { display: flex; margin-inline: calc(var(--gutter) * -1); padding-inline: var(--gutter); gap: .7rem; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; background: transparent; border: 0; }
  .home-services-grid::-webkit-scrollbar { display: none; }
  .home-service { min-width: 82vw; min-height: 28rem; scroll-snap-align: center; }
  .service-assurance { justify-content: flex-start; }
  .instrument-journey { height: 195svh; }
  .instrument-sticky { min-height: 38rem; }
  .instrument-scene { transform: translate3d(var(--instrument-x),5vh,0) scale(var(--instrument-scale)); }
  .instrument-halo { left: 63%; top: 60%; width: 96vw; }
  .instrument-model { left: 63%; top: 60%; width: 112vw; height: 72svh; }
  .instrument-vignette { background: linear-gradient(180deg, rgba(7,6,5,.96), rgba(7,6,5,.46) 38%, transparent 60%, rgba(7,6,5,.7)); }
  .instrument-story { grid-template-columns: 1fr; align-items: start; padding-top: 7rem; padding-bottom: 5rem; }
  .instrument-copy { width: min(92%,31rem); }
  .instrument-copy .display { max-width: 9ch; font-size: clamp(3.15rem,14vw,4.8rem); }
  .instrument-copy .lede { max-width: 24rem; font-size: 1rem; }
  .instrument-copy--closing { align-self: end; justify-self: end; margin-bottom: 4rem; }
  .instrument-copy--closing .display { max-width: 9ch; }
  .instrument-scroll-cue { grid-template-columns: auto 1fr; }
  .instrument-scroll-cue em { display: none; }
  .statement-grid, .split, .split--wide, .story-grid, .contact-grid { grid-template-columns: 1fr; }
  .emotion-grid { grid-template-columns: 1fr; }
  .emotion-anchor { position: relative; top: auto; min-height: auto; gap: 2rem; }
  .emotion-word { font-size: clamp(4.6rem,24vw,7rem); line-height: .9; }
  .emotion-beat { grid-template-columns: 1fr; gap: .6rem; }
  .statement-copy { margin-left: 0; }
  .metric-strip { grid-template-columns: 1fr; }
  .metric { border-right: 0; border-bottom: 1px solid var(--line); }
  .feature-list { grid-template-columns: 1fr; }
  .feature { border-right: 0; }
  .page-hero { min-height: 65svh; padding-top: 8rem; }
  .page-index { display: none; }
  .career-item { grid-template-columns: 1fr; gap: .4rem; }
  .photo-duet { grid-template-columns: 1fr 1fr; }
  .service-row { grid-template-columns: 2.5rem 1fr; padding: 3rem 0; }
  .process { grid-template-columns: 1fr; }
  .process-step { min-height: 14rem; }
  .gallery { display: grid; grid-template-columns: 1fr 1fr; grid-auto-rows: 16rem; }
  .gallery .image-frame:nth-child(n) { grid-column: auto; grid-row: auto; }
  .song-tools { align-items: stretch; flex-direction: column; }
  .song { grid-template-columns: 2.5rem 1fr; }
  .song-genre { grid-column: 2; text-align: left; }
  .contact-aside { position: static; }
  .contact-form { grid-template-columns: 1fr; }
  .field--full { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1/-1; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .resonance-canvas, .bow-cursor { display: none !important; }
  .instrument-journey { height: auto; min-height: 100svh; }
  .instrument-sticky { position: relative; min-height: 100svh; }
  .instrument-scene { transform: none; }
  .instrument-copy--opening { opacity: 1; transform: none; }
  .instrument-copy--closing { display: none; }
  .preloader-score::after, .preloader-string i, .preloader-bow, .preloader-note, .preloader-foot i::before { animation: none; }
  .preloader-bow { transform: translate(-50%,0) rotate(-6deg); }
}
