:root {
  --bg: #0c0c0d;
  --surface-1: #111213;
  --surface-2: #17181a;
  --surface-3: #1d1f21;
  --panel: rgba(255, 255, 255, 0.04);
  --panel-2: rgba(212, 206, 198, 0.045);
  --text: #f4f0e9;
  --muted: rgba(244, 240, 233, 0.82);
  --soft: rgba(244, 240, 233, 0.64);
  --line: rgba(255, 255, 255, 0.09);
  --line-soft: rgba(255, 255, 255, 0.05);
  --accent: #d6c3a2;
  --max: 1240px;
  --radius: 1.4rem;
  --shadow: 0 24px 54px rgba(0, 0, 0, 0.18);
  --font-sans: "Inter", "Helvetica Neue", "Avenir Next", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.intro-sequence .hero-subline {
  opacity: 0;
  transform: translateY(1rem);
  filter: blur(16px);
}
body.intro-sequence.is-subline-visible .hero-subline {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
p, h1, h2 { margin: 0; }
figure { margin: 0; }
button { font: inherit; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 1rem;
  z-index: 1000;
  background: #fff;
  color: #000;
  padding: 0.75rem 1rem;
}
.skip-link:focus { left: 1rem; }

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


.site-header,
main,
.section,
.container,
.split-grid > *,
.contact-shell > *,
.footer-grid > *,
.site-nav,
.stack,
.body-copy,
.contact-copy,
.contact-card {
  min-width: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 0.8rem 0;
  transition: opacity 900ms cubic-bezier(0.22, 1, 0.36, 1), transform 900ms cubic-bezier(0.22, 1, 0.36, 1), background-color 260ms ease, backdrop-filter 260ms ease, box-shadow 260ms ease;
}
.site-header.is-revealed .brand-stack {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.site-header.is-scrolled {
  background: rgba(12, 12, 13, 0.58);
  backdrop-filter: blur(12px) saturate(110%);
  box-shadow: 0 1px 0 var(--line-soft);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  font-family: var(--font-sans);
  font-size: clamp(0.96rem, 0.92rem + 0.3vw, 1.08rem);
  font-weight: 500;
  letter-spacing: -0.02em;
}
.brand-stack {
  display: inline-grid;
  gap: 0;
  justify-items: center;
  align-items: start;
  width: fit-content;
  min-width: max-content;
  opacity: 0;
  transform: translateY(-0.6rem);
  pointer-events: none;
  transition: opacity 820ms cubic-bezier(0.22, 1, 0.36, 1), transform 820ms cubic-bezier(0.22, 1, 0.36, 1);
}
.brand-name {
  display: block;
  font-size: clamp(0.84rem, 0.8rem + 0.24vw, 0.95rem);
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  letter-spacing: -0.02em;
}
.brand-tagline {
  display: none !important;
  opacity: 0;
  visibility: hidden;
  width: 100%;
  font-family: var(--font-sans);
  font-size: clamp(0.4rem, 0.35rem + 0.19vw, 0.54rem);
  line-height: 1.1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  text-align: center;
  color: rgba(242, 238, 232, 0.8);
  transform: scaleX(0.84);
  transform-origin: center top;
}
.site-nav {
  display: flex;
  gap: clamp(1rem, 1.8vw, 2rem);
  align-items: center;
  margin-left: auto;
}
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--soft);
  font-size: 0.83rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.lang-btn {
  appearance: none;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  padding: 0;
  letter-spacing: inherit;
  text-transform: inherit;
}
.lang-btn.is-active,
.lang-btn:hover,
.lang-btn:focus-visible {
  color: var(--text);
}
.site-nav a,
.footer-links a {
  color: var(--soft);
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  transition: color 180ms ease, opacity 180ms ease;
}
.site-nav a:hover,
.site-nav a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible,
.text-link:hover,
.text-link:focus-visible,
.contact-row:hover,
.contact-row:focus-visible {
  color: var(--text);
}
.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 3rem;
  height: 3rem;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 1.4rem;
  height: 1px;
  background: var(--text);
  margin: 0.35rem auto;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: clip;
}
.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-image {
  object-fit: cover;
  object-position: 62% center;
}
.hero-overlay {
  background:
    linear-gradient(to top, rgba(12, 12, 13, 0.72) 5%, rgba(12, 12, 13, 0.12) 42%, rgba(12, 12, 13, 0.28) 100%),
    linear-gradient(to right, rgba(12, 12, 13, 0.44) 0%, rgba(12, 12, 13, 0.08) 40%, rgba(12, 12, 13, 0.16) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: clamp(7.2rem, 14vw, 12rem) 0 5.1rem;
  max-width: 46rem;
}
.hero-title-group {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: fit-content;
  max-width: 100%;
}
.hero h1,
.section-head h2 {
  font-family: var(--font-sans);
  font-weight: 500;
  letter-spacing: -0.04em;
}
.hero h1 {
  font-size: clamp(3.1rem, 5.4vw, 5.4rem);
  line-height: 0.9;
}
.hero-subline {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.7em;
  margin-top: 1.05rem;
  width: auto;
  max-width: 100%;
  color: rgba(244, 240, 233, 0.82);
  font-size: clamp(0.76rem, 0.72rem + 0.18vw, 0.9rem);
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
  transition: opacity 2400ms cubic-bezier(0.3, 0, 0.18, 1), transform 2400ms cubic-bezier(0.3, 0, 0.18, 1), filter 2400ms cubic-bezier(0.3, 0, 0.18, 1);
  filter: blur(14px);
}
.hero-subline-word,
.hero-subline-separator {
  display: inline-block;
  opacity: 0;
  will-change: opacity, transform, filter, letter-spacing;
}
.hero-subline-word {
  position: relative;
  color: rgba(244, 240, 233, 0.74);
  transform: translate3d(0, 0.65rem, 0) scale(1.9);
  filter: blur(12px);
  transition:
    opacity 2560ms cubic-bezier(0.3, 0, 0.18, 1),
    transform 2560ms cubic-bezier(0.3, 0, 0.18, 1),
    filter 2560ms cubic-bezier(0.3, 0, 0.18, 1),
    letter-spacing 2560ms cubic-bezier(0.3, 0, 0.18, 1),
    color 2560ms cubic-bezier(0.3, 0, 0.18, 1),
    text-shadow 2560ms cubic-bezier(0.3, 0, 0.18, 1);
}
.hero-subline-separator {
  color: rgba(244, 240, 233, 0.38);
  transition: opacity 2560ms cubic-bezier(0.3, 0, 0.18, 1), color 2560ms cubic-bezier(0.3, 0, 0.18, 1), filter 2560ms cubic-bezier(0.3, 0, 0.18, 1);
  filter: blur(3px);
}
.hero-subline-word.is-active {
  opacity: 1;
  color: rgba(244, 240, 233, 0.95);
  transform: translate3d(0, 0, 0) scale(1.5);
  filter: blur(0);
}
.hero-subline-word[data-word="groove"].is-active {
  transform: translate3d(0, 1px, 0) scale(1.52);
  letter-spacing: 0.22em;
  text-shadow: 0 0 0.42rem rgba(244, 240, 233, 0.08);
}
.hero-subline-word[data-word="time"].is-active {
  transform: translate3d(0, -0.02rem, 0) scale(1.5);
  letter-spacing: 0.205em;
  text-shadow: 0 0 0.22rem rgba(244, 240, 233, 0.04);
}
.hero-subline-word[data-word="sound"].is-active {
  transform: translate3d(0, 0, 0) scale(1.56);
  filter: blur(0.15px);
  letter-spacing: 0.275em;
  text-shadow: 0 0 0.95rem rgba(244, 240, 233, 0.14);
}
.hero-subline-word[data-word="feel"].is-active {
  transform: translate3d(0, -0.05rem, 0) scale(1.51);
  letter-spacing: 0.238em;
  text-shadow: 0 0 0.46rem rgba(244, 240, 233, 0.08);
}
.hero-subline.is-sequence-complete .hero-subline-word {
  opacity: 0.82;
  color: rgba(244, 240, 233, 0.82);
  filter: blur(0);
  text-shadow: none;
  transform: translate3d(0, 0, 0) scale(1);
  transition-duration: 864ms, 864ms, 864ms, 864ms, 864ms, 864ms;
  transition-timing-function: cubic-bezier(0.24, 0.72, 0.26, 1), cubic-bezier(0.24, 0.72, 0.26, 1), cubic-bezier(0.24, 0.72, 0.26, 1), cubic-bezier(0.24, 0.72, 0.26, 1), cubic-bezier(0.24, 0.72, 0.26, 1), cubic-bezier(0.24, 0.72, 0.26, 1);
}
.hero-subline.is-sequence-complete .hero-subline-separator {
  opacity: 0.5;
  color: rgba(244, 240, 233, 0.42);
  filter: blur(0);
  transition-duration: 720ms, 720ms, 720ms;
  transition-timing-function: cubic-bezier(0.24, 0.72, 0.26, 1), cubic-bezier(0.24, 0.72, 0.26, 1), cubic-bezier(0.24, 0.72, 0.26, 1);
}
@media (max-width: 640px) {
  .portrait-inline-note {
    width: min(100%, 28rem);
  }

  .hero-subline {
    flex-wrap: wrap;
    row-gap: 0.38rem;
    column-gap: 0.48rem;
    justify-content: center;
    white-space: normal;
    max-width: min(92vw, 24rem);
    line-height: 1.5;
  }
}

.section { padding: clamp(4.5rem, 7vw, 7.4rem) 0; }
.artist { background: linear-gradient(180deg, #111213 0%, #141517 100%); }
.teaching { background: linear-gradient(180deg, #17181a 0%, #1b1d1f 100%); }
.media { background: linear-gradient(180deg, #101113 0%, #151618 100%); }
.contact { background: linear-gradient(180deg, #18191b 0%, #1f2023 100%); }
.section-kicker {
  color: rgba(244, 240, 233, 0.72);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.section-head {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 1.6rem;
}
.section-head--tight { margin-bottom: 1.1rem; }
.section-head h2 {
  font-size: clamp(1.75rem, 2.7vw, 2.75rem);
  line-height: 0.98;
}
.split-grid,
.contact-shell,
.footer-grid {
  display: grid;
  gap: 1.6rem;
}
.split-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: start;
}

.split-grid--portrait-refined {
  grid-template-columns: minmax(0, 1.02fr) minmax(390px, 0.98fr);
  gap: clamp(2.2rem, 3vw, 3.8rem);
  align-items: stretch;
}
.body-copy--portrait {
  align-content: start;
  padding-right: clamp(0rem, 1vw, 0.75rem);
}
.body-copy--portrait .portrait-inline-note {
  justify-self: center;
}
.portrait-inline-note {
  margin: clamp(1.35rem, 2.4vw, 2.25rem) auto 0;
  width: min(100%, 36.4rem);
}
.portrait-inline-note__frame {
  position: relative;
  overflow: hidden;
  border-radius: 1.22rem;
  border: 1px solid rgba(255,255,255,0.035);
  background: #08090c;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
  isolation: isolate;
}
.portrait-inline-note__frame::before,
.portrait-inline-note__frame::after {
  content: none;
}
.portrait-inline-note img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  filter: none;
}
.portrait-inline-note figcaption {
  padding: 1rem 0.15rem 0;
  color: rgba(244, 240, 233, 0.78);
  font-size: 0.95rem;
  line-height: 1.72;
  text-align: center;
  letter-spacing: 0.01em;
  max-width: 31ch;
  margin: 0 auto;
}
.portrait-inline-note--text {
  padding-top: 1.05em;
  color: rgba(244, 240, 233, 0.78);
  font-size: 0.95rem;
  line-height: 1.72;
  letter-spacing: 0.01em;
  text-align: left;
  width: 100%;
  max-width: none;
  margin: 0;
  white-space: nowrap;
}
.feature-media--portrait-stage {
  align-self: stretch;
}
.feature-media--portrait-stage img {
  object-position: 50% 34%;
  transform: scale(1.045);
}
.split-grid--teaching {
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
}
.stack { display: grid; gap: 1rem; }

.body-copy p,
.contact-copy p:not(.section-kicker) {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.86;
}
.body-copy p:first-child {
  color: rgba(242, 238, 232, 0.96);
}

.values-line {
  color: rgba(242, 238, 232, 0.94);
  font-size: clamp(1.14rem, 1.04rem + 0.38vw, 1.38rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.32;
}

.feature-media,
.media-tile,
.contact-card,
.stat-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.025));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: clip;
  box-shadow: var(--shadow);
}
.feature-media img,
.media-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.feature-media--portrait {
  position: relative;
  height: 100%;
  min-height: clamp(42rem, 54vw, 50rem);
  background:
    radial-gradient(circle at 22% 18%, rgba(56, 103, 190, 0.22), transparent 34%),
    radial-gradient(circle at 82% 28%, rgba(216, 133, 73, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(10, 11, 16, 0.98), rgba(14, 12, 14, 0.94));
}
.feature-media--portrait::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 24%, rgba(56, 103, 190, 0.14), transparent 28%),
    radial-gradient(circle at 86% 18%, rgba(216, 133, 73, 0.12), transparent 22%),
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0) 18%, rgba(0,0,0,0.1) 100%);
  pointer-events: none;
  z-index: 2;
}
.feature-media--portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 34%;
}
.feature-media--detail {
  aspect-ratio: 4 / 5;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.95rem;
  margin-top: 1.35rem;
  align-items: stretch;
}
.stat-card {
  padding: 1.1rem 1.1rem 1.15rem;
}
.stat-card p {
  color: rgba(242, 238, 232, 0.9);
  font-size: 0.98rem;
  line-height: 1.62;
  max-width: 25ch;
}
.stat-label {
  display: inline-block;
  color: var(--accent);
  margin-bottom: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.77rem;
}
.zildjian-card {
  padding: 0;
}
.endorser-link {
  display: grid;
  gap: 0.65rem;
  padding: 0.7rem;
  height: 100%;
}
.zildjian-logo-wrap {
  display: grid;
  place-items: center;
  background: #000;
  border-radius: 1rem;
  padding: 1rem 1.1rem;
  min-height: 7.1rem;
}
.zildjian-logo-wrap img {
  width: min(100%, 14.75rem);
  height: auto;
}
.endorser-copy {
  color: rgba(242, 238, 232, 0.88);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.74rem;
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(0, 0.78fr) minmax(0, 0.78fr);
  gap: 1rem;
  align-items: stretch;
}

.gallery-grid > * {
  min-width: 0;
}
.media-tile--landscape { aspect-ratio: 3 / 2; }
.media-tile--square { aspect-ratio: 1 / 1; }

.text-link {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.drumcity-note {
  margin-top: 0.8rem;
  color: rgba(242, 238, 232, 0.54);
  font-size: 0.78rem;
  line-height: 1.55;
}

.drumcity-note-link {
  color: rgba(242, 238, 232, 0.62);
  text-decoration: none;
  border-bottom: 1px solid rgba(242, 238, 232, 0.12);
  transition: color 180ms ease, border-color 180ms ease;
}

.drumcity-note-link:hover,
.drumcity-note-link:focus-visible {
  color: rgba(242, 238, 232, 0.78);
  border-color: rgba(242, 238, 232, 0.22);
}

.contact-row--social {
  align-items: center;
}

.social-icons {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.7rem;
  margin-left: auto;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.65rem;
  height: 2.65rem;
  color: rgba(242, 238, 232, 0.56);
  transition: color 180ms ease, transform 180ms ease, opacity 180ms ease;
}

.social-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.social-icon:hover,
.social-icon:focus-visible {
  color: rgba(242, 238, 232, 0.78);
  transform: translateY(-1px);
}

.contact-shell {
  grid-template-columns: 0.8fr 1.2fr;
  align-items: start;
}
.contact-card {
  padding: 0.55rem 1rem;
}

.contact-card--flush-end {
  align-self: end;
}
.contact-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0.35rem;
  border-bottom: 1px solid var(--line);
  transition: color 180ms ease;
}
.contact-row:last-child { border-bottom: 0; }
.contact-label {
  color: var(--soft);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
}
.contact-row span:last-child {
  color: rgba(242, 238, 232, 0.92);
  font-size: 0.98rem;
}

.contact-row--back {
  justify-content: flex-end;
  border-bottom: 0;
  padding-top: 1.1rem;
}
.contact-row--back span {
  margin-left: auto;
  color: rgba(242, 238, 232, 0.96);
  font-size: 0.96rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  padding-right: 1.35rem;
}
.contact-row--back span::after {
  content: '›';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-51%);
  font-size: 1.08rem;
  opacity: 0.78;
  transition: transform 180ms ease, opacity 180ms ease;
}
.contact-row--back:hover span::after,
.contact-row--back:focus-visible span::after {
  transform: translate(3px, -51%);
  opacity: 1;
}

.site-footer {
  margin-top: clamp(2.5rem, 6vw, 4.5rem);
  border-top: 1px solid rgba(242, 238, 232, 0.08);
  background: transparent;
  padding: 1.5rem 0 2.2rem;
}
.footer-grid {
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0.9rem 1.25rem;
}
.footer-grid p {
  color: rgba(242, 238, 232, 0.48);
  font-size: 0.82rem;
  letter-spacing: 0.01em;
}
.footer-zildjian-link {
  display: inline-flex;
  justify-self: center;
  align-items: center;
  padding: 0.08rem 0;
  opacity: 0.94;
  transition: opacity 180ms ease, transform 180ms ease;
}
.footer-zildjian-link img {
  display: block;
  height: 4.1rem;
  width: auto;
  max-width: min(56vw, 26rem);
  object-fit: contain;
  mix-blend-mode: screen;
  filter: drop-shadow(0 0 10px rgba(212, 206, 198, 0.045));
}
.footer-zildjian-link:hover,
.footer-zildjian-link:focus-visible {
  opacity: 1;
  transform: translateY(-1px);
}
.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.footer-links a {
  font-size: 0.82rem;
}

.legal-page {
  background: #121315;
}
.legal-wrap {
  padding: 8rem 0 4rem;
}
.legal-card {
  max-width: 52rem;
  margin: 0 auto;
  background: #18191b;
  border: 1px solid var(--line);
  border-radius: 1.5rem;
  padding: clamp(1.4rem, 2vw, 2rem);
}
.legal-card h1,
.legal-card h2,
.legal-card h3 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 400;
}
.legal-card p,
.legal-card li {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.78;
}

@media (max-width: 980px) {
  .split-grid,
  .split-grid--teaching,
  .contact-shell,
  .gallery-grid,
  .stats-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-zildjian-link {
    justify-self: flex-start;
  }
  .footer-zildjian-link img {
    height: 3rem;
    max-width: min(76vw, 19rem);
  }
  .footer-links {
    justify-content: flex-start;
  }

  .split-grid--portrait-refined {
    gap: 1.8rem;
  }
  .portrait-inline-note {
    width: 100%;
    max-width: 29rem;
  }
  .feature-media--portrait {
    min-height: 34rem;
  }
  .feature-media--portrait img {
    object-fit: cover;
    object-position: center 30%;
    transform: scale(1.03);
  }
  .feature-media--detail {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 760px) {

  .portrait-inline-note--text {
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .body-copy--portrait {
    padding-right: 0;
  }
  .portrait-inline-note {
    width: min(100%, 25rem);
    margin-top: 1.25rem;
  }
  .portrait-inline-note figcaption {
    max-width: 28ch;
    font-size: 0.94rem;
  }
  .feature-media--portrait {
    min-height: 27rem;
  }
  .site-header { padding: 0.68rem 0; }
  .nav-toggle { display: inline-block; }
  .site-nav {
    position: absolute;
    right: 1rem;
    top: calc(100% + 0.5rem);
    min-width: 14rem;
    padding: 0.8rem;
    border: 1px solid var(--line);
    border-radius: 1rem;
    background: rgba(14, 14, 15, 0.94);
    backdrop-filter: blur(18px);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    margin-left: 0;
  }
  .brand-stack {
    justify-items: center;
    gap: 0.12rem;
  }
  .brand-name {
    text-align: center;
  }
  .site-nav.is-open { display: flex; }
  .hero-image { object-position: 67% center; }
  .hero-content { padding-bottom: 3.6rem; }
  .contact-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .contact-row--social {
    align-items: flex-start;
  }
  .social-icons {
    justify-content: flex-start;
    margin-left: 0;
  }
  .drumcity-note-link {
    display: inline-block;
    white-space: nowrap;
    font-size: 0.79rem;
    line-height: 1.3;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .site-header, .brand-stack, .hero-subline, .hero-subline-word, .hero-subline-separator { transition: none !important; }
  .hero-subline, .hero-subline-word { filter: none !important; }
  .hero-subline-word { transform: none !important; letter-spacing: inherit !important; text-shadow: none !important; }
}

/* Studio subpage */
.studio-brand {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.studio-hero {
  position: relative;
  min-height: clamp(28rem, 72svh, 46rem);
  display: grid;
  align-items: end;
  overflow: clip;
  background: #0f1012;
}

.studio-hero-image,
.studio-hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.studio-hero-image {
  object-fit: cover;
  object-position: center center;
}

.studio-hero-overlay {
  background:
    linear-gradient(to top, rgba(12, 12, 13, 0.9) 3%, rgba(12, 12, 13, 0.18) 36%, rgba(12, 12, 13, 0.24) 100%),
    linear-gradient(to right, rgba(12, 12, 13, 0.24) 0%, rgba(12, 12, 13, 0.04) 46%, rgba(12, 12, 13, 0.22) 100%);
}

.studio-hero-content {
  position: relative;
  z-index: 1;
  padding: clamp(8rem, 15vw, 12rem) 0 4.4rem;
}

.studio-hero-content h1 {
  font-family: var(--font-sans);
  font-size: clamp(2.6rem, 4.8vw, 4.8rem);
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: -0.045em;
  max-width: 10ch;
}

.studio-intro {
  background: linear-gradient(180deg, #111213 0%, #141517 100%);
}

.studio-intro-head {
  margin-bottom: 1.9rem;
}

.split-grid--studio-intro {
  grid-template-columns: minmax(0, 1.03fr) minmax(360px, 0.97fr);
  gap: clamp(2rem, 3vw, 3.8rem);
  align-items: stretch;
}

.studio-copy {
  padding-right: clamp(0rem, 1vw, 0.5rem);
}

.studio-feature-media {
  min-height: clamp(28rem, 44vw, 39rem);
}

.studio-feature-media img {
  object-position: 46% center;
}

.studio-process {
  background: linear-gradient(180deg, #17181a 0%, #1b1d1f 100%);
}

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

.process-card {
  position: relative;
  padding: 1.35rem 1.35rem 1.45rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.024));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.process-number {
  display: inline-block;
  margin-bottom: 0.75rem;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
}

.process-card h3 {
  margin: 0 0 0.7rem;
  font-size: 1.08rem;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.process-card p {
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.8;
}

.studio-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.75rem, 1.2vw, 1.05rem);
  align-items: stretch;
  width: min(100%, 84rem);
  margin-inline: auto;
}

.studio-gallery-tile {
  width: 100%;
  justify-self: stretch;
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.14);
  aspect-ratio: 0.92 / 1;
}

.studio-gallery-tile img {
  object-position: center center;
  transition: transform 360ms ease;
}

.studio-gallery-tile:hover img,
.studio-gallery-tile:focus-within img {
  transform: scale(1.018);
}

.studio-partners {
  margin-top: 1.5rem;
}

.studio-partners-strip {
  --studio-logo-scale: 0.62;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: clamp(1rem, 1.4vw, 1.6rem) clamp(1.35rem, 2vw, 2.25rem);
  padding: 1.1rem 1.15rem 0.1rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.studio-partner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 1.4rem;
  opacity: 0.68;
  transition: opacity 180ms ease, transform 180ms ease;
}

.studio-partner img {
  display: block;
  width: auto;
  height: 100%;
  max-width: 100%;
  filter: none;
}

.studio-partner:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.studio-partner--gretsch { height: calc(clamp(1.05rem, 1rem + 0.75vw, 1.45rem) * var(--studio-logo-scale)); }
.studio-partner--remo { height: calc(clamp(1.15rem, 1.1rem + 0.7vw, 1.5rem) * var(--studio-logo-scale)); }
.studio-partner--zildjian { height: calc(clamp(1rem, 0.95rem + 0.7vw, 1.35rem) * var(--studio-logo-scale)); }
.studio-partner--rme { height: calc(clamp(0.95rem, 0.9rem + 0.7vw, 1.32rem) * var(--studio-logo-scale)); }
.studio-partner--shure { height: calc(clamp(0.95rem, 0.9rem + 0.7vw, 1.28rem) * var(--studio-logo-scale)); }
.studio-partner--neumann { height: calc(clamp(1.3rem, 1.2rem + 0.8vw, 1.7rem) * var(--studio-logo-scale)); }
.studio-partner--sennheiser { height: calc(clamp(1.05rem, 1rem + 0.7vw, 1.42rem) * var(--studio-logo-scale)); }
.studio-partner--rode { height: calc(clamp(0.95rem, 0.9rem + 0.7vw, 1.26rem) * var(--studio-logo-scale)); }
.studio-partner--apple { height: calc(clamp(1.15rem, 1.05rem + 0.8vw, 1.52rem) * var(--studio-logo-scale)); }

@media (max-width: 900px) {
  .split-grid--studio-intro,
  .studio-gallery-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .studio-gallery-grid {
    width: 100%;
    gap: 0.82rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .studio-gallery-tile {
    width: 100%;
    justify-self: stretch;
  }

  .studio-feature-media {
    min-height: 24rem;
  }
}

@media (max-width: 640px) {
  .studio-partners-strip {
    gap: 0.95rem 1.25rem;
    padding-top: 0.95rem;
  }

  .studio-partner {
    opacity: 0.76;
  }

  .studio-hero {
    min-height: 26rem;
  }

  .studio-hero-content {
    padding: 7.2rem 0 3.2rem;
  }

  .process-card {
    padding: 1.15rem 1.05rem 1.2rem;
  }
}


.studio-precheck{
  background: linear-gradient(180deg, #151618 0%, #18191b 100%);
}

.split-grid--precheck{
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  gap: clamp(2rem, 3vw, 4rem);
  align-items: start;
}

.precheck-copy{
  max-width: 42rem;
}

.precheck-link{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  min-height: 2.9rem;
  margin-top: 0.35rem;
  padding: 0 1rem;
  border-bottom: 1px solid rgba(244, 240, 233, 0.42);
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.precheck-link:hover,
.precheck-link:focus-visible{
  color: var(--accent);
  border-color: rgba(214, 195, 162, 0.72);
  transform: translateY(-1px);
}

.precheck-footnote{
  margin-top: 0.7rem;
  color: rgba(244, 240, 233, 0.58);
  font-size: 0.9rem;
}

.precheck-details{
  border-top: 1px solid var(--line);
}

.precheck-row{
  display: grid;
  grid-template-columns: minmax(0, 9rem) minmax(0, 1fr);
  gap: 1rem;
  padding: 1rem 0 1.05rem;
  border-bottom: 1px solid var(--line-soft);
}

.precheck-row__label{
  color: rgba(244, 240, 233, 0.7);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.6;
}

.precheck-row__text{
  margin: 0;
  color: rgba(244, 240, 233, 0.84);
}

.project-request-section{
  background: linear-gradient(180deg, #17181a 0%, #1b1d1f 100%);
}

.project-form-wrap{
  width: min(100%, 54rem);
}

.project-form{
  width: 100%;
}

.project-form-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 1.5rem;
  row-gap: 1.3rem;
}

.project-field{
  display: grid;
  gap: 0.55rem;
}

.project-field--full{
  grid-column: 1 / -1;
}

.project-field__label{
  color: rgba(244, 240, 233, 0.74);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.project-field__input{
  width: 100%;
  min-width: 0;
  border: 0;
  border-bottom: 1px solid rgba(244, 240, 233, 0.18);
  background: transparent;
  color: var(--text);
  padding: 0 0 0.78rem;
  font: inherit;
  line-height: 1.6;
  border-radius: 0;
  transition: border-color 180ms ease, color 180ms ease;
}

.project-field__input:focus{
  outline: none;
  border-bottom-color: rgba(214, 195, 162, 0.72);
}

.project-field__input--textarea{
  min-height: 8.75rem;
  resize: vertical;
}

.project-field__hint{
  color: rgba(244, 240, 233, 0.56);
  font-size: 0.9rem;
  line-height: 1.65;
}

.project-form-actions{
  display: grid;
  gap: 0.75rem;
  margin-top: 2rem;
}

.project-form-submit{
  background: transparent;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  cursor: pointer;
}

.project-form-note{
  margin-top: 0;
}

@media (max-width: 900px){
  .project-form-grid{
    grid-template-columns: 1fr;
  }

  .project-field--full{
    grid-column: auto;
  }

  .precheck-row{
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }
}

@media (max-width: 720px){
  .split-grid--precheck{
    grid-template-columns: 1fr;
  }

  .project-form-wrap{
    width: 100%;
  }
}


.form-honeypot{
  position:absolute !important;
  left:-9999px !important;
  width:1px !important;
  height:1px !important;
  opacity:0 !important;
  pointer-events:none !important;
}

.project-form-status{
  margin-bottom: 1.4rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.project-form-status.is-success{
  color: var(--text);
}

.project-form-status.is-error{
  color: #f0c8c8;
}

.project-form-submit[disabled]{
  opacity: 0.55;
  cursor: wait;
  transform: none;
}

.budget-input-wrap{
  position: relative;
  display: flex;
  align-items: center;
}
.project-field__input--budget{
  padding-right: 1.8rem;
}
.budget-currency{
  position: absolute;
  right: 0;
  bottom: .78rem;
  color: rgba(244, 240, 233, 0.72);
  font-size: 1rem;
  pointer-events: none;
}


.request-success-banner{
  margin-bottom: 1rem;
  padding: 1rem 1.1rem 1.05rem;
  border: 1px solid rgba(127, 177, 135, 0.34);
  background: linear-gradient(180deg, rgba(83, 138, 95, 0.16) 0%, rgba(83, 138, 95, 0.10) 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
}

.request-success-banner__title{
  margin: 0 0 0.3rem;
  color: #dff1e0;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.request-success-banner__text{
  color: rgba(234, 245, 235, 0.9);
}

.request-success-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 1.5rem;
  margin-top: 0.35rem;
}

.request-success .precheck-link{
  margin-top: 0;
}

.project-form-status{
  margin-top: 1.2rem;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(244,240,233,0.12);
  color: var(--text);
}

.project-form-status.is-success{
  border-color: rgba(127, 177, 135, 0.34);
  background: linear-gradient(180deg, rgba(83, 138, 95, 0.16) 0%, rgba(83, 138, 95, 0.10) 100%);
  color: #e4f4e5;
}

.project-form-status.is-error{
  border-color: rgba(182, 107, 107, 0.28);
  background: linear-gradient(180deg, rgba(134, 63, 63, 0.15) 0%, rgba(134, 63, 63, 0.09) 100%);
}

@media (max-width: 720px){
  .request-success-actions{
    flex-direction: column;
    align-items: flex-start;
  }
}

.request-card-shell{
  padding-top: 0.5rem;
}

.request-card{
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: 2rem;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.015) 100%),
    linear-gradient(135deg, rgba(255,255,255,0.018) 0%, rgba(255,255,255,0.005) 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.035);
  padding: clamp(2rem, 4vw, 3rem);
}

.request-card__head{
  margin-bottom: 1.8rem;
}

.request-card__kicker{
  margin-bottom: 0.9rem;
}

.request-card__body{
  display:grid;
  grid-template-columns:minmax(0,1.1fr) minmax(320px,.9fr);
  gap: clamp(2rem,3vw,3.2rem);
  align-items:start;
}

.request-card__copy{
  max-width: 42rem;
}

.request-card__meta{
  border-top:1px solid var(--line);
}

.request-card__footer{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap: 1rem 1.4rem;
  margin-top: 2rem;
  padding-top: 1.2rem;
  border-top:1px solid var(--line-soft);
}

.request-card__link{
  margin-top:0;
}

.request-card__note{
  margin-top:0;
}

@media (max-width: 900px){
  .request-card__body{
    grid-template-columns:1fr;
  }
}

@media (max-width: 720px){
  .request-card{
    border-radius:1.5rem;
    padding:1.5rem;
  }
  .request-card__footer{
    flex-direction:column;
    align-items:flex-start;
  }
}

.request-card--project{
  margin-bottom: 0.5rem;
}

.request-card--form{
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: 2rem;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.015) 100%),
    linear-gradient(135deg, rgba(255,255,255,0.018) 0%, rgba(255,255,255,0.005) 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.035);
  padding: clamp(1.6rem, 3vw, 2.4rem);
}

.request-card--form .project-form-actions{
  margin-top: 2.2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line-soft);
}

/* Project request typography refinement */
.request-card__head--project{
  max-width: 42rem;
  margin-bottom: 2rem;
}

.project-request-heading{
  font-size: clamp(2.2rem, 4.2vw, 3.6rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
  font-weight: 500;
  text-wrap: balance;
}

.project-request-form-head{
  margin-bottom: 1.35rem;
}

.project-request-form-heading{
  font-size: clamp(1.7rem, 2.6vw, 2.45rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  font-weight: 500;
  text-wrap: balance;
}

.project-request-form-head .section-kicker,
.request-card__head--project .section-kicker{
  font-size: 0.74rem;
  letter-spacing: 0.17em;
}

.request-card--project .request-card__copy{
  padding-top: 0.15rem;
}

@media (max-width: 720px){
  .project-request-heading{
    font-size: clamp(1.95rem, 9vw, 2.45rem);
    line-height: 0.96;
  }

  .project-request-form-heading{
    font-size: clamp(1.42rem, 6.5vw, 1.85rem);
    line-height: 1;
  }

  .request-card__head--project{
    margin-bottom: 1.6rem;
  }
}
