:root {
  --bg: #0c0c0d;
  --surface-1: #111213;
  --surface-2: #17181a;
  --surface-3: #1d1f21;
  --panel: rgba(255, 255, 255, 0.04);
  --panel-2: rgba(255, 255, 255, 0.06);
  --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; }
body {
  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(0.9rem);
  filter: blur(12px);
}
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 {
  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: block;
  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 2200ms cubic-bezier(0.16, 1, 0.3, 1), transform 2200ms cubic-bezier(0.16, 1, 0.3, 1), filter 2200ms cubic-bezier(0.16, 1, 0.3, 1);
  filter: blur(10px);
}

.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--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.96);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
}

.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 {
  aspect-ratio: 4 / 5;
}
.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;
}
.values-line strong {
  font-weight: 700;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.22fr 0.78fr 0.78fr;
  gap: 1rem;
  align-items: stretch;
}
.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;
}

.contact-shell {
  grid-template-columns: 0.8fr 1.2fr;
  align-items: start;
}
.contact-card {
  padding: 0.55rem 1rem;
}
.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;
}

.site-footer {
  border-top: 1px solid var(--line-soft);
  background: #161719;
  padding: 1.2rem 0 2rem;
}
.footer-grid {
  grid-template-columns: 1fr auto;
  align-items: center;
}
.footer-grid p {
  color: var(--soft);
  font-size: 0.92rem;
}
.footer-links {
  display: flex;
  gap: 1.2rem;
}

.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;
  }
  .feature-media--portrait,
  .feature-media--detail {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 760px) {
  .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;
  }
  .body-copy p,
  .contact-row span:last-child {
    font-size: 0.98rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .site-header, .brand-stack, .hero-subline { transition: none !important; }
  .hero-subline { filter: none !important; }
}
