:root {
  --black: #050505;
  --ink: #11110f;
  --paper: #f0f0eb;
  --white: #fff;
  --red: #ff2d1f;
  --grey: #a6a69f;
  --line: rgba(17, 17, 15, .18);
  --pad: clamp(1.25rem, 3.4vw, 4.5rem);
  --header-h: 5rem;
  --ease: cubic-bezier(.16, 1, .3, 1);
}

* { box-sizing: border-box; }
html { max-width: 100%; scroll-behavior: smooth; overflow-x: hidden; }
body {
  max-width: 100%;
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Arial Narrow", "Roboto Condensed", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.45;
  overflow-x: hidden;
}
.artist-page main { overflow-x: hidden; }
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
::selection { background: var(--red); color: var(--white); }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; left: 1rem; top: -5rem; z-index: 9999; padding: .75rem 1rem;
  background: var(--red); color: white; font-weight: 800;
}
.skip-link:focus { top: 1rem; }

.site-loader {
  position: fixed; inset: 0; z-index: 9998; display: flex; align-items: center; justify-content: center;
  background: var(--black); color: var(--paper); font-size: clamp(3rem, 12vw, 11rem);
  font-weight: 950; letter-spacing: -.09em; transition: clip-path .9s var(--ease), visibility .9s;
  clip-path: inset(0 0 0 0);
}
.site-loader .loader-x { color: var(--red); }
body.is-loaded .site-loader { clip-path: inset(0 0 100% 0); visibility: hidden; }

.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 1000; height: var(--header-h); padding: 0 var(--pad);
  display: flex; align-items: center; justify-content: space-between;
  color: var(--paper); mix-blend-mode: difference; transition: transform .4s var(--ease);
}
.site-header.is-hidden { transform: translateY(-110%); }
.brand { display: flex; align-items: baseline; font-size: 1.3rem; font-weight: 950; letter-spacing: -.07em; }
.brand-mark { color: var(--red); }
.brand small { margin-left: .5rem; font-size: .62rem; letter-spacing: .12em; }
.site-nav { display: flex; align-items: center; gap: clamp(1.2rem, 2.5vw, 3rem); text-transform: uppercase; font-size: .72rem; font-weight: 850; letter-spacing: .11em; }
.site-nav a { position: relative; }
.site-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -.28rem; height: 1px; background: currentColor; transition: right .35s var(--ease); }
.site-nav a:hover::after, .site-nav a:focus-visible::after { right: 0; }
.site-nav .nav-cta { color: var(--red); }
.menu-toggle { display: none; width: 2.8rem; height: 2.8rem; border: 0; background: transparent; color: inherit; }
.menu-toggle > span:not(.sr-only) { display: block; width: 1.8rem; height: 2px; margin: 6px auto; background: currentColor; transition: transform .3s, opacity .3s; }

.section { padding: clamp(6rem, 12vw, 11rem) var(--pad); }
.section-label {
  display: flex; justify-content: space-between; padding-bottom: 1rem; margin-bottom: clamp(3rem, 7vw, 7rem);
  border-bottom: 1px solid var(--line); text-transform: uppercase; font-size: .68rem; font-weight: 850; letter-spacing: .14em;
}
.section-label.dark { border-color: rgba(240,240,235,.25); color: var(--paper); }
.kicker, .eyebrow { margin: 0 0 1.2rem; text-transform: uppercase; letter-spacing: .16em; font-size: .7rem; font-weight: 850; }
.display-title { margin: 0; font-size: clamp(3rem, 8vw, 8.5rem); line-height: .88; letter-spacing: -.075em; text-transform: uppercase; font-weight: 950; }
.button-row { display: flex; align-items: center; flex-wrap: wrap; gap: 1.6rem; margin-top: 2.2rem; }
.button {
  display: inline-flex; justify-content: center; align-items: center; min-height: 3.5rem; padding: .9rem 1.25rem;
  border: 1px solid currentColor; text-transform: uppercase; font-size: .69rem; font-weight: 900; letter-spacing: .12em;
  transition: color .3s, background .3s, border-color .3s, transform .3s var(--ease);
}
.button:hover, .button:focus-visible { transform: translateY(-3px); }
.button-light { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.button-light:hover { background: var(--red); border-color: var(--red); color: var(--white); }
.button-red { background: var(--red); color: white; border-color: var(--red); }
.button-red:hover { background: white; color: var(--black); border-color: white; }
.button-outline { color: var(--paper); }
.button-outline:hover { background: var(--paper); color: var(--black); }
.text-link { display: inline-block; border-bottom: 1px solid currentColor; padding-bottom: .2rem; text-transform: uppercase; font-size: .7rem; font-weight: 850; letter-spacing: .12em; }
.text-link.on-dark { margin-top: 1rem; color: var(--paper); }

.reveal { opacity: 0; transform: translateY(45px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.image-reveal { position: relative; overflow: hidden; }
.image-reveal::after { content: ""; position: absolute; inset: 0; z-index: 2; background: var(--red); transform-origin: top; transition: transform 1.1s var(--ease); }
.image-reveal:not(.is-visible) img { transform: scale(1.06); }
.image-reveal img { transition: transform 1.4s var(--ease); }
.image-reveal.is-visible::after { transform: scaleY(0); }
.image-reveal.is-visible img { transform: scale(1); }

/* Artist hero */
.hero { min-height: 100svh; display: grid; grid-template-columns: 52% 48%; background: var(--black); color: var(--paper); }
.hero-copy { position: relative; z-index: 2; min-height: 100svh; padding: calc(var(--header-h) + 6vh) var(--pad) 4vh; display: flex; flex-direction: column; justify-content: center; }
.hero-title { margin: auto 0; font-size: clamp(5.2rem, 13.5vw, 14.5rem); line-height: .69; letter-spacing: -.105em; font-weight: 950; }
.hero-title span { display: block; }
.hero-title .outline { color: transparent; -webkit-text-stroke: 2px var(--paper); transform: translateX(9%); }
.hero-bottom { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; }
.hero-bottom p { max-width: 22rem; margin: 0; font-size: clamp(1rem, 1.4vw, 1.35rem); }
.round-link { width: 3.5rem; height: 3.5rem; border: 1px solid rgba(255,255,255,.45); border-radius: 50%; display: grid; place-items: center; font-size: 1.35rem; transition: background .3s, color .3s; }
.round-link:hover { background: var(--paper); color: var(--black); }
.hero-portrait { min-height: 100svh; margin: 0; background: white; }
.hero-portrait img { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: contrast(1.06); }
.hero-portrait figcaption { position: absolute; right: 1.25rem; bottom: 1.25rem; z-index: 3; color: var(--black); font-size: .65rem; font-weight: 850; text-transform: uppercase; letter-spacing: .15em; }
.hero-stamp { position: absolute; z-index: 4; right: 2.2vw; top: 15vh; color: var(--red); font-size: clamp(5rem, 9vw, 10rem); font-weight: 950; line-height: 1; transform: rotate(90deg); mix-blend-mode: multiply; }

.ticker { max-width: 100vw; overflow: clip; contain: inline-size; background: var(--red); color: var(--black); border-top: 2px solid var(--black); border-bottom: 2px solid var(--black); }
.ticker-track { display: flex; align-items: center; width: max-content; animation: ticker 25s linear infinite; }
.ticker span { padding: .8rem 1.5rem; font-size: clamp(1.4rem, 3vw, 3rem); font-weight: 950; letter-spacing: -.055em; white-space: nowrap; }
.ticker i { font-style: normal; font-size: 2rem; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* Release */
.release { background: var(--black); color: var(--paper); }
.release .section-label { border-color: rgba(240,240,235,.25); }
.release-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(20rem, 1.1fr); align-items: end; gap: clamp(2rem, 7vw, 8rem); }
.release-copy { padding-bottom: 1rem; }
.release-text { max-width: 35rem; margin: 2rem 0 0; color: #c8c8c1; font-size: clamp(1rem, 1.5vw, 1.3rem); }
.release-art { margin: 0; aspect-ratio: 4 / 3; background: white; }
.release-art img { width: 100%; height: 100%; object-fit: cover; }
.art-index { position: absolute; right: 1rem; bottom: 1rem; z-index: 3; color: var(--red); font-size: .7rem; font-weight: 950; letter-spacing: .12em; }
.catalogue { margin-top: clamp(5rem, 10vw, 9rem); border-top: 1px solid rgba(240,240,235,.25); }
.catalogue a { display: grid; grid-template-columns: 5rem 1fr 1fr auto; align-items: center; gap: 1rem; padding: 1.35rem 0; border-bottom: 1px solid rgba(240,240,235,.25); transition: color .25s, padding .35s var(--ease); }
.catalogue a:hover { color: var(--red); padding-left: 1rem; }
.catalogue span, .catalogue em { color: var(--grey); font-size: .72rem; font-style: normal; text-transform: uppercase; letter-spacing: .12em; }
.catalogue strong { font-size: clamp(1.5rem, 3vw, 3rem); line-height: 1; letter-spacing: -.045em; }
.spotify-embed { max-width: 100%; margin-top: 3rem; }
.spotify-embed iframe { display: block; border: 0; border-radius: 0; }

/* About */
.about { background: var(--red); color: var(--black); }
.about .section-label { border-color: rgba(0,0,0,.35); color: var(--black); }
.about-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: clamp(3rem, 8vw, 9rem); align-items: start; }
.about-body { max-width: 38rem; padding-top: .4rem; font-size: clamp(1.05rem, 1.65vw, 1.45rem); }
.about-body p:first-child { margin-top: 0; }
.about-body .on-dark { color: var(--black); }
.about-image { width: min(78vw, 90rem); margin: clamp(5rem, 11vw, 11rem) auto 0; aspect-ratio: 4 / 3; }
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-image figcaption { position: absolute; z-index: 3; left: 1rem; bottom: 1rem; color: white; font-size: .68rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; mix-blend-mode: difference; }

/* Visual */
.visual { background: var(--paper); }
.visual-heading { display: flex; justify-content: space-between; align-items: end; gap: 3rem; }
.visual-heading .display-title span { color: var(--red); }
.visual-heading > p { max-width: 24rem; margin: 0; font-size: 1.15rem; }
.gallery { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(1rem, 2.5vw, 2.5rem); margin-top: clamp(4rem, 9vw, 9rem); align-items: start; }
.gallery-item { margin: 0; background: white; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.gallery-item figcaption { position: absolute; left: .75rem; bottom: .75rem; z-index: 3; padding: .25rem .4rem; background: var(--paper); color: var(--ink); font-size: .62rem; text-transform: uppercase; font-weight: 850; letter-spacing: .1em; }
.gallery-tall { grid-column: 1 / 6; aspect-ratio: 4 / 5; }
.gallery-wide { grid-column: 7 / 13; margin-top: 12vw; aspect-ratio: 4 / 3; }
.gallery > :nth-child(3) { grid-column: 3 / 8; aspect-ratio: 1; margin-top: -5vw; }
.gallery-symbol { grid-column: 9 / 13; aspect-ratio: 1; margin-top: 4vw; }

/* Mixing teaser */
.mixing-teaser { position: relative; min-height: 90svh; overflow: hidden; display: flex; align-items: center; padding: var(--pad); background: var(--black); color: var(--paper); }
.mixing-teaser-bg { position: absolute; left: -3vw; top: 50%; transform: translateY(-50%); color: transparent; -webkit-text-stroke: 2px rgba(240,240,235,.2); font-size: 45vw; line-height: .7; font-weight: 950; letter-spacing: -.12em; }
.mixing-teaser-copy { position: relative; z-index: 2; margin-left: auto; width: min(58rem, 72%); }
.mixing-teaser h2 { margin: 0; font-size: clamp(3.8rem, 9vw, 10rem); line-height: .82; text-transform: uppercase; letter-spacing: -.08em; }
.mixing-teaser p { max-width: 31rem; margin: 2rem 0; color: var(--grey); font-size: 1.2rem; }

/* Footer */
.site-footer { padding: 4rem var(--pad) 2rem; background: var(--paper); color: var(--ink); }
.footer-brand { font-size: clamp(5rem, 17vw, 18rem); line-height: .7; letter-spacing: -.11em; font-weight: 950; white-space: nowrap; }
.footer-brand span { color: var(--red); }
.footer-links { display: flex; flex-wrap: wrap; gap: 1rem 2.5rem; margin-top: 5rem; padding: 1.25rem 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); text-transform: uppercase; font-size: .7rem; font-weight: 850; letter-spacing: .12em; }
.footer-links a:hover { color: var(--red); }
.footer-meta { display: flex; justify-content: space-between; padding-top: 1.25rem; color: #66665f; font-size: .68rem; text-transform: uppercase; letter-spacing: .11em; }

/* Studio page */
.mixing-page { background: var(--black); color: var(--paper); }
.studio-hero { position: relative; min-height: 100svh; overflow: hidden; display: grid; grid-template-columns: 58% 42%; background: var(--black); }
.studio-hero-copy, .studio-portrait, .studio-about-grid > *, .contact-copy { min-width: 0; }
.studio-grid-bg { position: absolute; inset: 0; opacity: .18; background-image: linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px); background-size: 4rem 4rem; mask-image: linear-gradient(to right, black, transparent 80%); }
.studio-hero-copy { position: relative; z-index: 2; min-height: 100svh; padding: calc(var(--header-h) + 8vh) var(--pad) 4vh; display: flex; flex-direction: column; justify-content: center; }
.studio-title { margin: auto 0; font-size: clamp(4rem, 10.5vw, 11rem); line-height: .78; letter-spacing: -.09em; font-weight: 950; }
.studio-title span { color: var(--red); }
.studio-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; border-top: 1px solid rgba(255,255,255,.3); padding-top: 1rem; text-transform: uppercase; font-size: .72rem; font-weight: 800; letter-spacing: .11em; }
.studio-intro p { margin: 0; }
.studio-portrait { z-index: 1; min-height: 100svh; margin: 0; }
.studio-portrait img { width: 100%; height: 100%; object-fit: cover; filter: invert(1) contrast(1.25); mix-blend-mode: screen; opacity: .88; }
.studio-portrait-double { background: var(--white); }
.studio-portrait-double img { filter: contrast(1.15); mix-blend-mode: normal; opacity: 1; object-position: center; }
.studio-portrait figcaption { position: absolute; z-index: 3; right: 1rem; bottom: 1rem; font-size: .65rem; font-weight: 850; text-transform: uppercase; letter-spacing: .12em; }
.meter { position: absolute; z-index: 4; right: var(--pad); top: 10rem; display: flex; gap: 4px; align-items: end; height: 4rem; }
.meter i { display: block; width: 5px; background: var(--red); animation: meter 1.2s ease-in-out infinite alternate; }
.meter i:nth-child(3n) { animation-delay: -.8s; }.meter i:nth-child(2n) { animation-delay: -.35s; }
@keyframes meter { from { height: 8%; } to { height: 100%; } }

.studio-about { background: var(--black); }
.studio-about-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(3rem, 8vw, 9rem); }
.studio-about .about-body { color: #cecec7; }
.fact-row { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 2rem; }
.fact-row span { padding: .55rem .7rem; border: 1px solid rgba(255,255,255,.25); font-size: .65rem; text-transform: uppercase; letter-spacing: .1em; }

.services { background: var(--paper); color: var(--ink); }
.service-list { margin-top: clamp(4rem, 8vw, 8rem); border-top: 1px solid var(--line); }
.service-card { display: grid; grid-template-columns: 5rem minmax(11rem,.7fr) minmax(16rem,1.2fr) 1fr; gap: clamp(1rem, 3vw, 4rem); padding: 2.2rem 0; border-bottom: 1px solid var(--line); align-items: start; }
.service-card > span { color: #777; font-size: .7rem; letter-spacing: .1em; }
.service-card h3 { margin: 0; font-size: clamp(2rem, 4vw, 4.3rem); line-height: .9; letter-spacing: -.06em; text-transform: uppercase; }
.service-card p { margin: 0; font-size: 1.05rem; }
.service-card ul { margin: 0; padding: 0; list-style: none; color: #686861; font-size: .82rem; }
.service-card li { padding: .4rem 0; border-bottom: 1px solid var(--line); }
.service-featured h3, .service-featured > span { color: var(--red); }
.service-note { max-width: 38rem; margin: 2rem 0 0 auto; color: #6d6d66; font-size: .83rem; }

.pricing { background: var(--black); color: var(--paper); }
.pricing-heading { display: flex; justify-content: space-between; align-items: end; gap: 3rem; }
.pricing-heading > p { max-width: 28rem; margin: 0; color: var(--grey); font-size: 1.1rem; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; margin-top: clamp(4rem, 8vw, 8rem); background: rgba(240,240,235,.28); border: 1px solid rgba(240,240,235,.28); }
.price-card { position: relative; min-height: 39rem; overflow: hidden; display: flex; flex-direction: column; padding: clamp(1.4rem, 2.7vw, 2.6rem); background: var(--black); }
.price-card-featured { background: var(--red); color: var(--black); }
.price-top { display: flex; justify-content: space-between; gap: 1rem; padding-bottom: .9rem; border-bottom: 1px solid currentColor; text-transform: uppercase; font-size: .62rem; font-weight: 850; letter-spacing: .12em; }
.price-card h3 { position: relative; z-index: 2; margin: 2rem 0 1rem; font-size: clamp(2.5rem, 4.6vw, 5.3rem); line-height: .82; letter-spacing: -.075em; text-transform: uppercase; }
.price { display: flex; align-items: flex-start; margin: auto 0 1.5rem; line-height: .8; }
.price strong { font-size: clamp(7rem, 13vw, 13rem); letter-spacing: -.11em; }
.price > span { margin: .7rem 0 0 .4rem; font-size: clamp(2rem, 4vw, 4rem); font-weight: 950; }
.price small { align-self: flex-end; margin: 0 0 .5rem .7rem; text-transform: uppercase; font-size: .58rem; font-weight: 850; letter-spacing: .1em; }
.price-card p { position: relative; z-index: 2; max-width: 25rem; color: var(--grey); font-size: .85rem; }
.price-card-featured p { color: rgba(0,0,0,.72); }
.price-card > a { position: relative; z-index: 2; align-self: flex-start; margin-top: 1rem; padding-bottom: .2rem; border-bottom: 1px solid currentColor; text-transform: uppercase; font-size: .65rem; font-weight: 900; letter-spacing: .1em; }
.price-card > a:hover { color: var(--red); }
.price-card-featured > a:hover { color: white; }
.price-card-pack { background: var(--paper); color: var(--black); }
.price-card-pack p { margin-top: auto; color: #66665f; }
.pack-mark { position: absolute; right: -1rem; bottom: 5rem; color: transparent; -webkit-text-stroke: 1px var(--red); font-size: clamp(10rem, 18vw, 20rem); font-weight: 950; line-height: .7; letter-spacing: -.1em; opacity: .75; }

.portfolio { background: var(--red); color: var(--black); }
.portfolio .section-label { border-color: rgba(0,0,0,.35); color: var(--black); }
.portfolio-heading { display: flex; align-items: end; justify-content: space-between; gap: 3rem; }
.portfolio-heading > p { max-width: 28rem; margin: 0; font-size: 1.15rem; }
.playlist-card { display: block; margin: clamp(3rem, 7vw, 7rem) 0 0; border: 2px solid var(--black); background: var(--black); color: var(--paper); box-shadow: 1rem 1rem 0 rgba(0,0,0,.28); transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.playlist-card:hover, .playlist-card:focus-visible { transform: translate(-.35rem, -.35rem); box-shadow: 1.35rem 1.35rem 0 rgba(0,0,0,.38); }
.playlist-card-top { display: flex; justify-content: space-between; gap: 1rem; padding: 1rem 1.25rem; border-bottom: 1px solid rgba(240,240,235,.3); text-transform: uppercase; font-size: .65rem; font-weight: 850; letter-spacing: .12em; }
.playlist-card-top span:last-child { color: var(--red); }
.playlist-card-body { min-height: clamp(18rem, 36vw, 34rem); display: grid; grid-template-columns: auto 1fr; align-items: end; gap: clamp(1.5rem, 4vw, 4rem); padding: clamp(1.4rem, 4vw, 4rem); background-image: radial-gradient(circle at 80% 10%, rgba(255,45,31,.18), transparent 35%), linear-gradient(135deg, rgba(255,255,255,.04), transparent 48%); }
.play-symbol { width: clamp(4rem, 8vw, 8rem); height: clamp(4rem, 8vw, 8rem); display: grid; place-items: center; border: 2px solid var(--red); border-radius: 50%; color: var(--red); font-size: clamp(1.4rem, 3vw, 3rem); padding-left: .2em; }
.playlist-card h3 { max-width: 55rem; margin: 0; font-size: clamp(2.8rem, 7vw, 7rem); line-height: .82; letter-spacing: -.075em; text-transform: uppercase; }
.playlist-card p { max-width: 35rem; margin: 1.25rem 0 0; color: var(--grey); }
.portfolio .button-outline { color: var(--black); }
.portfolio .button-outline:hover { background: var(--black); color: var(--paper); }

.process { background: var(--paper); color: var(--ink); }
.process-list { margin: clamp(4rem,8vw,8rem) 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.process-list li { display: grid; grid-template-columns: 1fr 2fr; gap: 2rem; padding: 2.5rem 0; border-bottom: 1px solid var(--line); }
.process-list > li > span { font-size: clamp(3rem,7vw,7rem); font-weight: 950; line-height: .8; color: transparent; -webkit-text-stroke: 1px var(--red); }
.process-list h3 { margin: 0 0 .6rem; font-size: clamp(1.5rem,3vw,3rem); text-transform: uppercase; letter-spacing: -.045em; }
.process-list p { max-width: 34rem; margin: 0; color: #64645e; }

.studio-contact { position: relative; overflow: hidden; min-height: 90svh; padding: clamp(6rem,12vw,11rem) var(--pad); background: var(--black); display: grid; grid-template-columns: 1.3fr .7fr; gap: 4rem; align-items: end; }
.contact-symbol { position: absolute; right: -2vw; top: -10vw; color: var(--red); font-size: 47vw; line-height: .8; font-weight: 950; opacity: .14; transform: rotate(90deg); }
.contact-copy, .contact-links { position: relative; z-index: 2; }
.contact-copy h2 { margin: 0; font-size: clamp(4rem,10vw,11rem); line-height: .78; letter-spacing: -.09em; text-transform: uppercase; }
.contact-copy > p:not(.kicker) { max-width: 33rem; color: var(--grey); font-size: 1.15rem; margin: 2rem 0; }
.contact-links { border-top: 1px solid rgba(255,255,255,.3); }
.contact-links > a, .contact-links > span { display: flex; justify-content: space-between; gap: 1rem; padding: 1.2rem 0; border-bottom: 1px solid rgba(255,255,255,.3); font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; }
.contact-links a:hover strong { color: var(--red); }
.contact-actions { margin-top: 2rem; }
.phone-link strong { color: var(--red); }
.site-footer-studio { background: var(--black); color: var(--paper); border-top: 1px solid rgba(255,255,255,.2); }
.site-footer-studio .footer-brand { font-size: clamp(4rem, 14vw, 14rem); }
.site-footer-studio .footer-links { border-color: rgba(255,255,255,.2); }

@media (max-width: 900px) {
  :root { --header-h: 4.5rem; }
  .menu-toggle { display: block; position: relative; z-index: 3; }
  .site-nav { position: fixed; inset: 0; z-index: 2; display: flex; flex-direction: column; justify-content: center; gap: 1.5rem; background: var(--black); color: var(--paper); font-size: clamp(1.8rem, 8vw, 4rem); opacity: 0; visibility: hidden; transform: translateY(-2rem); transition: opacity .35s, transform .35s var(--ease), visibility .35s; mix-blend-mode: normal; }
  body.nav-open .site-nav { opacity: 1; visibility: visible; transform: none; }
  body.nav-open .menu-toggle > span:not(.sr-only):nth-of-type(2) { transform: translateY(4px) rotate(45deg); }
  body.nav-open .menu-toggle > span:not(.sr-only):nth-of-type(3) { transform: translateY(-4px) rotate(-45deg); }
  .hero, .studio-hero { grid-template-columns: 1fr; }
  .hero-copy, .studio-hero-copy { min-height: 70svh; }
  .hero-portrait, .studio-portrait { min-height: 60svh; }
  .hero-title { font-size: clamp(6.2rem, 28vw, 13rem); }
  .hero-stamp { top: 68svh; }
  .release-grid, .about-grid, .studio-about-grid { grid-template-columns: 1fr; }
  .about-heading { max-width: 50rem; }
  .visual-heading, .portfolio-heading { align-items: start; flex-direction: column; }
  .pricing-heading { align-items: start; flex-direction: column; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card { min-height: 34rem; }
  .mixing-teaser-copy { width: 100%; }
  .service-card { grid-template-columns: 3rem 1fr; }
  .service-card p, .service-card ul { grid-column: 2; }
  .studio-contact { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .section { padding-top: 5.5rem; padding-bottom: 5.5rem; }
  .display-title { font-size: clamp(2.9rem, 16vw, 5rem); }
  .hero-copy { padding-top: 6rem; }
  .hero-title { font-size: 26vw; }
  .hero-title .outline { transform: none; }
  .hero-bottom { align-items: center; }
  .hero-portrait { min-height: 52svh; }
  .hero-stamp { display: none; }
  .release-grid { gap: 3rem; }
  .catalogue a { grid-template-columns: 3.5rem 1fr auto; }
  .catalogue em { display: none; }
  .spotify-embed iframe { height: 152px; }
  .about-image { width: 100%; }
  .gallery { display: block; }
  .gallery-item { width: 100%; margin: 0 0 1.25rem !important; aspect-ratio: 1 !important; }
  .gallery-wide { aspect-ratio: 4/3 !important; }
  .mixing-teaser { min-height: 75svh; }
  .mixing-teaser h2 { font-size: 13vw; }
  .footer-brand { font-size: 23vw; }
  .footer-links { margin-top: 3rem; }
  .footer-meta { gap: 1rem; }
  .studio-title { font-size: 15vw; }
  .mixing-page .display-title { font-size: clamp(2.5rem, 13.2vw, 5rem); }
  .studio-intro { grid-template-columns: 1fr; }
  .studio-portrait { min-height: 55svh; }
  .studio-portrait-double img { object-position: center; }
  .meter { display: none; }
  .service-card { grid-template-columns: 2.3rem 1fr; padding: 1.7rem 0; }
  .playlist-card { box-shadow: .5rem .5rem 0 rgba(0,0,0,.28); }
  .playlist-card-body { min-height: 24rem; grid-template-columns: 1fr; align-content: end; }
  .process-list li { grid-template-columns: 4.5rem 1fr; }
  .process-list > li > span { font-size: 3.2rem; }
  .contact-copy h2 { font-size: 17vw; }
  .contact-actions { align-items: stretch; flex-direction: column; }
  .contact-actions .button { width: 100%; }
  .site-footer-studio .footer-brand { font-size: 12vw; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .ticker-track { width: 100%; max-width: 100%; animation: none !important; transform: none !important; }
  .ticker-track > :nth-child(n+5) { display: none; }
  .reveal { opacity: 1; transform: none; }
  .image-reveal::after { display: none; }
}
