:root {
  --black: #070706;
  --ink: #12110f;
  --ink-soft: #1b1916;
  --ivory: #f2eee5;
  --ivory-soft: #d8d0c3;
  --copper: #d8782d;
  --gold: #d0a14d;
  --line: rgba(242, 238, 229, 0.16);
  --line-dark: rgba(18, 17, 15, 0.16);
  --muted: #a8a096;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --condensed: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
  --max: 1180px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--black);
  color: var(--ivory);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
}

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

img, video { max-width: 100%; }
button, a { font: inherit; }
a { color: inherit; text-decoration: none; }
button { color: inherit; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: -5rem;
  left: 1rem;
  padding: .7rem 1rem;
  background: var(--ivory);
  color: var(--ink);
}
.skip-link:focus { top: 1rem; }

.site-header {
  position: sticky;
  z-index: 40;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(7, 7, 6, .88);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(calc(100% - 2.5rem), var(--max));
  min-height: 74px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .85rem;
  min-width: 0;
}

.brand-mark {
  display: grid;
  flex: 0 0 auto;
  width: 2.65rem;
  height: 2.65rem;
  place-items: center;
  border: 1px solid var(--copper);
  border-radius: 50%;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
}

.brand-copy { display: grid; line-height: 1.05; }
.brand-copy strong {
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .72rem;
}
.brand-copy span { margin-top: .28rem; color: var(--muted); font-size: .7rem; }

.header-nav { display: flex; align-items: center; gap: clamp(1rem, 2.5vw, 2.4rem); }
.header-nav a {
  position: relative;
  color: #d6d0c7;
  font-size: .82rem;
}
.header-nav a::after {
  position: absolute;
  right: 0;
  bottom: -.45rem;
  left: 0;
  height: 1px;
  content: "";
  background: var(--copper);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .2s ease;
}
.header-nav a:hover::after, .header-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.language-switcher {
  display: flex;
  align-items: center;
  padding: .2rem;
  border: 1px solid var(--line);
  border-radius: 999px;
}
.language-switcher a {
  min-width: 2.15rem;
  padding: .34rem .48rem;
  border-radius: 999px;
  color: var(--muted);
  text-align: center;
  font-size: .69rem;
  font-weight: 700;
  letter-spacing: .08em;
}
.language-switcher a[aria-current="page"] { background: var(--ivory); color: var(--ink); }

.hero {
  position: relative;
  min-height: calc(100svh - 74px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(350px, .95fr);
  align-items: stretch;
  background:
    radial-gradient(circle at 69% 26%, rgba(208, 161, 77, .13), transparent 28%),
    linear-gradient(115deg, #0c0b09, #050505 68%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(100%, 760px);
  min-width: 0;
  justify-self: end;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(4.5rem, 8vw, 8rem) clamp(2rem, 4vw, 5rem) clamp(4rem, 7vw, 7rem) clamp(1.25rem, 4vw, 5rem);
}

.kicker {
  margin: 0 0 1.3rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .72rem;
  font-weight: 700;
}

.hero h1 {
  max-width: 100%;
  margin: 0;
  font-family: var(--condensed);
  font-size: clamp(3.4rem, 6.2vw, 7rem);
  font-stretch: condensed;
  font-weight: 800;
  line-height: .87;
  letter-spacing: -.035em;
  text-transform: uppercase;
}
.hero h1 em { display: block; color: var(--copper); font-family: var(--serif); font-size: .58em; font-weight: 400; text-transform: none; letter-spacing: -.03em; }

.hero-lead {
  max-width: 660px;
  margin: 2rem 0 0;
  color: #c5beb5;
  font-size: clamp(1.02rem, 1.6vw, 1.23rem);
}

.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2.1rem; }
.button {
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  padding: .75rem 1.25rem;
  border: 1px solid var(--copper);
  background: var(--copper);
  color: #120d08;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .7rem;
  font-weight: 800;
  transition: transform .18s ease, background .18s ease, color .18s ease;
}
.button:hover { transform: translateY(-2px); background: #ee913f; }
.button.ghost { background: transparent; color: var(--ivory); border-color: rgba(242,238,229,.35); }
.button.ghost:hover { border-color: var(--gold); color: var(--gold); }

.role-line {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem 1.25rem;
  padding: 0;
  margin: 2.4rem 0 0;
  list-style: none;
  color: #8f8981;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .68rem;
}

.hero-visual { position: relative; min-height: 640px; margin: 0; overflow: hidden; }
.hero-visual::before {
  position: absolute;
  z-index: 2;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, #070706 0%, transparent 23%, transparent 75%, rgba(7,7,6,.22) 100%), linear-gradient(0deg, rgba(7,7,6,.78), transparent 35%);
}
.hero-visual img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: 56% center; filter: saturate(.82) contrast(1.06); }
.hero-caption {
  position: absolute;
  z-index: 3;
  right: clamp(1.4rem, 4vw, 4rem);
  bottom: 2rem;
  left: clamp(1.4rem, 4vw, 4rem);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(255,255,255,.35);
  padding-top: .85rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: .68rem;
}
.hero-caption span:last-child { color: var(--gold); }

.proof-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #0e0d0c; }
.proof-inner {
  width: min(calc(100% - 2.5rem), var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.proof-item { min-height: 112px; padding: 1.5rem clamp(1rem, 3vw, 2.4rem); display: grid; align-content: center; border-right: 1px solid var(--line); }
.proof-item:first-child { border-left: 1px solid var(--line); }
.proof-item strong { color: var(--gold); font-family: var(--serif); font-size: 1.55rem; font-weight: 400; }
.proof-item span { color: var(--muted); font-size: .78rem; }

.section { padding: clamp(5rem, 9vw, 9rem) max(1.25rem, calc((100vw - var(--max)) / 2)); }
.section-heading { display: grid; grid-template-columns: .65fr 1.35fr; gap: clamp(2rem, 7vw, 7rem); align-items: end; margin-bottom: clamp(2.5rem, 5vw, 5rem); }
.section-heading h2 {
  max-width: 850px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5vw, 5.5rem);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.04em;
}
.section-heading p:last-child { max-width: 650px; margin: 0; color: var(--muted); }
.section-number { align-self: start; color: var(--gold); text-transform: uppercase; letter-spacing: .18em; font-size: .7rem; font-weight: 700; }

.offers { background: var(--ivory); color: var(--ink); }
.offers .section-heading p:last-child { color: #625e57; }
.offer-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line-dark); border-left: 1px solid var(--line-dark); }
.offer-card { min-height: 360px; display: flex; flex-direction: column; padding: clamp(1.5rem, 3vw, 2.6rem); border-right: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.offer-card .index { color: var(--copper); font-family: var(--serif); font-size: 1rem; }
.offer-card h3 { margin: auto 0 1rem; font-family: var(--condensed); font-size: clamp(2rem, 3.2vw, 3.3rem); line-height: .94; text-transform: uppercase; }
.offer-card p { margin: 0; color: #5e5952; }
.artist-statement { display: grid; grid-template-columns: minmax(180px, 250px) 1fr; gap: clamp(1.5rem, 5vw, 4.5rem); align-items: center; max-width: 900px; margin: clamp(3rem, 7vw, 6rem) auto 0; padding: 1.1rem; border: 1px solid var(--line-dark); background: rgba(18,17,15,.025); }
.artist-statement figure { margin: 0; overflow: hidden; background: #000; }
.artist-statement img { display: block; width: 100%; height: auto; }
.artist-statement blockquote { max-width: 610px; margin: .8rem 0 1rem; font-family: var(--serif); font-size: clamp(1.65rem, 3.2vw, 2.9rem); line-height: 1.08; }
.artist-statement div > span { color: #99511c; text-transform: uppercase; letter-spacing: .15em; font-size: .7rem; font-weight: 700; }

.masterclass-showcase {
  background:
    radial-gradient(circle at 18% 28%, rgba(255,85,0,.2), transparent 27%),
    linear-gradient(135deg, #110b07, #070706 62%);
}
.masterclass-layout { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr); gap: clamp(2.5rem, 8vw, 8rem); align-items: center; }
.masterclass-copy { max-width: 670px; }
.masterclass-copy .kicker { color: var(--copper); }
.masterclass-copy h2 { margin: .65rem 0 1.5rem; font-family: var(--serif); font-size: clamp(3rem, 6vw, 6.3rem); font-weight: 400; line-height: .92; letter-spacing: -.04em; }
.masterclass-copy > p { max-width: 640px; margin: 0 0 2rem; color: #bbb4aa; font-size: clamp(1rem, 1.35vw, 1.15rem); }
.masterclass-copy > strong { color: var(--gold); text-transform: uppercase; letter-spacing: .14em; font-size: .7rem; }
.masterclass-poster { width: 100%; max-width: 410px; margin: 0 auto; padding: .65rem; border: 1px solid rgba(242,238,229,.2); background: rgba(255,255,255,.035); box-shadow: 0 2rem 5rem rgba(0,0,0,.42); }
.masterclass-poster a { display: block; }
.masterclass-poster img { display: block; width: 100%; height: auto; object-fit: contain; }
.masterclass-poster figcaption { padding: .8rem .2rem .15rem; color: #aaa299; text-transform: uppercase; letter-spacing: .14em; font-size: .66rem; }

.map-section { background: #0a0908; }
.voice-map { display: grid; grid-template-columns: minmax(0, .95fr) minmax(360px, 1.05fr); gap: clamp(2rem, 7vw, 7rem); align-items: stretch; }
.map-nav { display: grid; grid-template-columns: 1fr 1fr; gap: .65rem; align-content: start; }
.map-tab {
  min-height: 108px;
  padding: 1.15rem;
  border: 1px solid var(--line);
  background: transparent;
  color: #b6afa6;
  cursor: pointer;
  text-align: left;
  transition: border-color .2s ease, background .2s ease, color .2s ease;
}
.map-tab span { display: block; margin-bottom: .75rem; color: #716b64; font-size: .66rem; letter-spacing: .16em; }
.map-tab strong { font-family: var(--serif); font-size: 1.45rem; font-weight: 400; }
.map-tab[aria-selected="true"] { border-color: var(--copper); background: var(--copper); color: #160e08; }
.map-tab[aria-selected="true"] span { color: rgba(22,14,8,.62); }
.map-tab:last-child { grid-column: 1 / -1; }

.map-panel {
  position: relative;
  min-height: 450px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(2rem, 5vw, 4.5rem);
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 75% 18%, rgba(216,120,45,.2), transparent 30%),
    #12100e;
  overflow: hidden;
}
.map-panel::before {
  position: absolute;
  top: 1.8rem;
  right: 2rem;
  content: attr(data-number);
  color: rgba(242,238,229,.06);
  font-family: var(--condensed);
  font-size: clamp(7rem, 17vw, 15rem);
  font-weight: 800;
  line-height: .8;
}
.map-panel > * { position: relative; z-index: 1; }
.map-kicker { margin: 0 0 .65rem; color: var(--gold); text-transform: uppercase; letter-spacing: .16em; font-size: .7rem; }
.map-panel h3 { margin: 0; font-family: var(--serif); font-size: clamp(3rem, 6vw, 6rem); font-weight: 400; line-height: 1; }
.map-panel p { max-width: 660px; margin: 1.5rem 0 0; color: #bab3aa; }
.map-panel blockquote { max-width: 700px; margin: 1.5rem 0 0; padding-left: 1.2rem; border-left: 2px solid var(--copper); font-family: var(--serif); font-size: clamp(1.15rem, 2vw, 1.55rem); font-style: italic; }
.map-connection { color: var(--gold) !important; text-transform: uppercase; letter-spacing: .1em; font-size: .68rem; }
.is-updating { animation: panelIn .36s ease both; }
@keyframes panelIn { from { opacity: .25; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

.approach { background: var(--ink); }
.approach-intro { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2rem, 7vw, 7rem); }
.approach-copy h2 { margin: 0; font-family: var(--serif); font-size: clamp(2.7rem, 5vw, 5.4rem); font-weight: 400; line-height: 1; }
.approach-copy > p { max-width: 720px; color: #b7b0a7; }
.research-note { margin-top: 2rem; padding: 1.5rem; border-left: 2px solid var(--copper); background: rgba(255,255,255,.035); }
.research-note strong { display: block; margin-bottom: .4rem; color: var(--gold); text-transform: uppercase; letter-spacing: .13em; font-size: .69rem; }
.research-note p { margin: 0; color: #b7b0a7; }

.process-card { align-self: start; border-top: 1px solid var(--line); }
.process-step { display: grid; grid-template-columns: 3rem 1fr; gap: 1rem; padding: 1.25rem 0; border-bottom: 1px solid var(--line); }
.process-step span { color: var(--copper); font-family: var(--serif); }
.process-step strong { display: block; margin-bottom: .2rem; }
.process-step p { margin: 0; color: var(--muted); font-size: .9rem; }

.book { background: #ece5da; color: var(--ink); }
.book-layout { display: grid; grid-template-columns: minmax(360px, .9fr) 1.1fr; gap: clamp(2rem, 6vw, 6rem); align-items: center; }
.book-visual { width: 100%; max-width: 500px; aspect-ratio: 8 / 9; margin: 0 auto; overflow: hidden; border: 1px solid rgba(18,17,15,.18); background: #080706; }
.book-visual img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center 38%; }
.book-copy .section-number { color: #9a541f; }
.book-copy h2 { margin: .5rem 0 1.3rem; font-family: var(--serif); font-size: clamp(3rem, 6vw, 6rem); font-weight: 400; line-height: .9; }
.book-copy p { max-width: 660px; color: #5a554e; }
.book-copy blockquote { max-width: 680px; margin: 2rem 0; font-family: var(--serif); font-size: clamp(1.55rem, 3vw, 2.6rem); line-height: 1.1; }
.book-copy .button { color: #120d08; }
.official-logo { display: block; width: min(100%, 250px); height: auto; margin-top: 1.6rem; border: 1px solid rgba(18,17,15,.14); background: #000; }

.next-book {
  background:
    radial-gradient(circle at 78% 30%, rgba(216,120,45,.18), transparent 26%),
    linear-gradient(135deg, #111b22, #07131d 62%, #050b10);
}
.next-book-layout { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr); gap: clamp(2.5rem, 8vw, 8rem); align-items: center; }
.next-book-copy { max-width: 650px; }
.next-book-copy h2 { margin: .55rem 0 1.5rem; font-family: var(--serif); font-size: clamp(2.7rem, 5vw, 5.3rem); font-weight: 400; line-height: .98; letter-spacing: -.035em; }
.next-book-copy > p:last-child { max-width: 620px; margin: 0; color: #bbb6ae; }
.next-book-visual { width: 100%; max-width: 390px; margin: 0 auto; padding: .65rem; border: 1px solid rgba(242,238,229,.18); background: rgba(255,255,255,.035); box-shadow: 0 2rem 5rem rgba(0,0,0,.36); }
.next-book-visual img { display: block; width: 100%; height: auto; max-height: none; object-fit: contain; }
.next-book-visual figcaption { padding: .8rem .2rem .15rem; color: #aca59b; text-transform: uppercase; letter-spacing: .14em; font-size: .66rem; }

.video-section { background: #0b0a09; }
.video-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(2rem, 7vw, 7rem); align-items: center; }
.video-copy h2 { margin: 0; font-family: var(--serif); font-size: clamp(2.4rem, 4.4vw, 4.6rem); font-weight: 400; line-height: 1; }
.video-copy p { color: var(--muted); }
.video-frame { margin: 0; border: 1px solid var(--line); background: #000; }
.video-frame video { width: 100%; display: block; }
.video-frame figcaption { padding: .7rem 1rem; border-top: 1px solid var(--line); color: #8e877f; font-size: .72rem; text-transform: uppercase; letter-spacing: .14em; }

.art-program {
  background:
    radial-gradient(circle at 18% 24%, rgba(219, 28, 119, .16), transparent 27%),
    radial-gradient(circle at 82% 68%, rgba(216, 120, 45, .15), transparent 30%),
    #080706;
}
.art-program-layout { display: grid; grid-template-columns: minmax(280px, .78fr) minmax(0, 1.22fr); gap: clamp(2.5rem, 8vw, 8rem); align-items: center; }
.art-program-poster { width: 100%; max-width: 430px; margin: 0 auto; padding: .65rem; border: 1px solid rgba(242,238,229,.2); background: rgba(255,255,255,.035); box-shadow: 0 2rem 5rem rgba(0,0,0,.42); }
.art-program-poster a { display: block; }
.art-program-poster img { display: block; width: 100%; height: auto; object-fit: contain; }
.art-program-poster figcaption { padding: .8rem .2rem .15rem; color: #aaa299; text-transform: uppercase; letter-spacing: .14em; font-size: .66rem; }
.art-program-copy { max-width: 690px; }
.art-program-kicker { margin: .55rem 0 1.1rem; color: var(--copper); text-transform: uppercase; letter-spacing: .18em; font-size: .72rem; font-weight: 800; }
.art-program-copy h2 { margin: 0 0 1.3rem; font-family: var(--serif); font-size: clamp(3.2rem, 6vw, 6.5rem); font-weight: 400; line-height: .9; letter-spacing: -.04em; }
.art-program-lead { max-width: 680px; margin: 0; color: #c1bab1; font-size: clamp(1rem, 1.35vw, 1.15rem); }
.art-program-themes { display: flex; flex-wrap: wrap; gap: .55rem; padding: 0; margin: 2rem 0; list-style: none; }
.art-program-themes li { padding: .45rem .72rem; border: 1px solid rgba(208,161,77,.38); border-radius: 999px; color: var(--gold); text-transform: uppercase; letter-spacing: .12em; font-size: .65rem; font-weight: 800; }
.art-program-people { border-top: 1px solid var(--line); }
.art-program-person { display: grid; grid-template-columns: minmax(150px, .8fr) 1.2fr; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--line); }
.art-program-person strong { font-family: var(--serif); font-size: 1.12rem; font-weight: 400; }
.art-program-person span { color: var(--muted); font-size: .84rem; }
.art-program-note { margin: 1.6rem 0 0; color: var(--gold); font-family: var(--serif); font-size: clamp(1.2rem, 2vw, 1.55rem); font-style: italic; }

.experience { background: var(--ivory); color: var(--ink); }
.experience .section-heading p:last-child { color: #625e57; }
.cv-controls { display: flex; gap: .55rem; margin-bottom: 2rem; overflow-x: auto; padding-bottom: .35rem; scrollbar-width: thin; }
.cv-filter { flex: 0 0 auto; min-height: 2.7rem; padding: .55rem 1rem; border: 1px solid var(--line-dark); border-radius: 999px; background: transparent; color: #5b5650; cursor: pointer; font-size: .78rem; }
.cv-filter[aria-pressed="true"] { background: var(--ink); color: var(--ivory); }
.cv-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line-dark); }
.cv-item { display: grid; grid-template-columns: 8.5rem 1fr; gap: 1.4rem; padding: 1.65rem 1.4rem 1.65rem 0; border-bottom: 1px solid var(--line-dark); }
.cv-item:nth-child(odd) { padding-right: 2.4rem; border-right: 1px solid var(--line-dark); }
.cv-item:nth-child(even) { padding-left: 2.4rem; }
.cv-item[hidden] { display: none; }
.cv-item time { color: #99511c; text-transform: uppercase; letter-spacing: .1em; font-size: .68rem; font-weight: 700; }
.cv-item h3 { margin: 0 0 .4rem; font-family: var(--serif); font-size: 1.35rem; font-weight: 400; line-height: 1.15; }
.cv-item p { margin: 0; color: #615c55; font-size: .9rem; }
.small-role { font-size: .72em; white-space: nowrap; }

.collaboration-feature { display: grid; grid-template-columns: minmax(260px, .72fr) minmax(0, 1.28fr); gap: clamp(2rem, 6vw, 6rem); align-items: center; margin-top: clamp(3rem, 7vw, 6rem); padding: clamp(1rem, 2.2vw, 1.8rem); background: var(--ink); color: var(--ivory); }
.collaboration-feature figure { width: 100%; max-width: 390px; margin: 0 auto; }
.collaboration-feature img { display: block; width: 100%; height: auto; object-fit: contain; }
.collaboration-feature figcaption { padding: .75rem .1rem 0; color: #aaa299; font-size: .7rem; text-transform: uppercase; letter-spacing: .12em; }
.collaboration-copy { max-width: 660px; padding: 1rem 1rem 1rem 0; }
.collaboration-copy .kicker { margin-bottom: 1rem; color: var(--copper); }
.collaboration-copy h3 { margin: 0 0 1.25rem; font-family: var(--serif); font-size: clamp(2.5rem, 5vw, 5.3rem); font-weight: 400; line-height: .95; letter-spacing: -.035em; }
.collaboration-copy > p:last-child { margin: 0; color: #c1bab1; font-size: clamp(1rem, 1.35vw, 1.15rem); }

.voices-section { background: #0b0a09; color: var(--ivory); }
.voices-section .section-heading > div > p { color: var(--muted); }
.voices-grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(340px, .85fr); gap: 1.25rem; align-items: stretch; }
.voice-card { overflow: hidden; border: 1px solid var(--line); background: rgba(255,255,255,.035); }
.voice-card.featured { grid-row: span 2; display: grid; grid-template-columns: minmax(220px, .82fr) minmax(0, 1.18fr); align-items: center; }
.voice-card:not(.featured) { display: grid; grid-template-columns: minmax(140px, .55fr) minmax(0, 1fr); align-items: center; }
.voice-media { display: flex; align-items: center; justify-content: center; min-width: 0; background: #000; }
.voice-media video { display: block; width: 100%; height: auto; max-height: 590px; object-fit: contain; background: #000; }
.voice-card:not(.featured) .voice-media video { max-height: 270px; }
.voice-copy { min-width: 0; padding: clamp(1.15rem, 3vw, 2.3rem); }
.voice-role { margin: 0 0 .85rem; color: var(--copper); font-size: .68rem; font-weight: 800; line-height: 1.45; text-transform: uppercase; letter-spacing: .12em; }
.voice-copy h3 { margin: 0 0 .7rem; font-family: var(--serif); font-size: clamp(1.8rem, 3.2vw, 3.4rem); font-weight: 400; line-height: .95; }
.voice-copy > p:last-child { margin: 0; color: #aaa39a; font-size: .88rem; }

.contact { position: relative; overflow: hidden; background: var(--copper); color: #160e08; }
.contact::after { position: absolute; right: -3vw; bottom: -12vw; content: "AP"; color: rgba(22,14,8,.09); font-family: var(--serif); font-size: min(32vw, 28rem); line-height: .75; }
.contact-inner { position: relative; z-index: 1; display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(2rem, 7vw, 7rem); align-items: end; }
.contact h2 { max-width: 820px; margin: 0; font-family: var(--condensed); font-size: clamp(3.5rem, 8vw, 8rem); line-height: .86; text-transform: uppercase; }
.contact-copy p { max-width: 560px; margin: 0 0 1.6rem; }
.contact .button { border-color: #160e08; background: #160e08; color: var(--ivory); }
.contact .button:hover { background: transparent; color: #160e08; }

.site-footer { border-top: 1px solid rgba(22,14,8,.25); background: var(--copper); color: #160e08; }
.footer-inner { width: min(calc(100% - 2.5rem), var(--max)); min-height: 82px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; font-size: .78rem; }
.footer-inner a { font-weight: 700; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1020px) {
  .header-nav a:nth-child(2) { display: none; }
  .hero { grid-template-columns: 1fr 44%; }
  .hero-copy { padding-left: 1.25rem; }
  .offer-card { min-height: 320px; }
  .cv-item { grid-template-columns: 6.6rem 1fr; }
}

@media (max-width: 820px) {
  .header-inner { width: min(calc(100% - 1.5rem), var(--max)); min-height: 66px; gap: 1rem; }
  .brand-copy span, .header-nav { display: none; }
  .brand-copy strong { font-size: .65rem; }
  .hero { min-height: auto; grid-template-columns: 1fr; }
  .hero-copy { order: 2; width: 100%; padding: 3.5rem 1.25rem 4.5rem; }
  .hero-visual { order: 1; min-height: 62svh; max-height: 760px; }
  .hero-visual::before { background: linear-gradient(0deg, #070706 0%, transparent 37%), linear-gradient(90deg, rgba(7,7,6,.25), transparent); }
  .hero-visual img { object-position: 54% 50%; }
  .hero h1 { font-size: clamp(3.35rem, 15vw, 6.4rem); }
  .proof-inner { width: 100%; grid-template-columns: 1fr; }
  .proof-item, .proof-item:first-child { min-height: 88px; border-right: 0; border-left: 0; border-bottom: 1px solid var(--line); padding-inline: 1.25rem; }
  .section { padding-inline: 1.25rem; }
  .section-heading { grid-template-columns: 1fr; gap: 1.1rem; }
  .offer-grid { grid-template-columns: 1fr; }
  .offer-card { min-height: 250px; }
  .artist-statement { grid-template-columns: minmax(150px, 210px) 1fr; }
  .masterclass-layout, .voice-map, .approach-intro, .book-layout, .next-book-layout, .video-layout, .art-program-layout, .contact-inner { grid-template-columns: 1fr; }
  .masterclass-copy { max-width: 680px; }
  .masterclass-poster { max-width: 370px; }
  .map-panel { min-height: 410px; }
  .book-visual { max-width: 400px; }
  .next-book-copy { max-width: 680px; }
  .next-book-visual { max-width: 360px; }
  .official-logo { width: min(100%, 210px); }
  .video-copy { max-width: 640px; }
  .art-program-copy { max-width: 680px; }
  .art-program-poster { max-width: 370px; }
  .cv-grid { grid-template-columns: 1fr; }
  .cv-item, .cv-item:nth-child(odd), .cv-item:nth-child(even) { grid-template-columns: 6.8rem 1fr; padding: 1.4rem 0; border-right: 0; }
  .collaboration-feature { grid-template-columns: 1fr; }
  .collaboration-feature figure { max-width: 360px; }
  .collaboration-copy { max-width: 680px; padding: .5rem .5rem 1.5rem; }
  .voices-grid { grid-template-columns: 1fr; }
  .voice-card.featured, .voice-card:not(.featured) { grid-row: auto; grid-template-columns: minmax(190px, .62fr) minmax(0, 1fr); }
  .voice-media video, .voice-card:not(.featured) .voice-media video { max-height: 420px; }
  .contact-inner { align-items: start; }
  .footer-inner { min-height: 110px; align-items: flex-start; justify-content: center; flex-direction: column; padding: 1.3rem 0; }
}

@media (max-width: 520px) {
  .brand-mark { width: 2.3rem; height: 2.3rem; }
  .brand-copy strong { max-width: 130px; line-height: 1.25; letter-spacing: .11em; }
  .language-switcher a { min-width: 1.85rem; padding-inline: .35rem; }
  .hero-visual { min-height: 54svh; }
  .hero-caption { font-size: .6rem; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .artist-statement { grid-template-columns: 1fr; max-width: 300px; padding: .75rem; }
  .artist-statement div { padding: .6rem .35rem .9rem; }
  .masterclass-poster { width: min(100%, 330px); padding: .5rem; }
  .masterclass-poster img { width: 100%; height: auto; object-fit: contain; }
  .book-visual { width: 100%; aspect-ratio: 4 / 5; overflow: hidden; }
  .book-visual img { width: 100%; height: 100%; object-fit: cover; object-position: center 42%; }
  .next-book-visual { width: min(100%, 320px); padding: .5rem; }
  .next-book-visual img { width: 100%; height: auto; object-fit: contain; }
  .art-program-poster { width: min(100%, 330px); padding: .5rem; }
  .art-program-poster img { width: 100%; height: auto; object-fit: contain; }
  .art-program-person { grid-template-columns: 1fr; gap: .2rem; }
  .collaboration-feature { padding: .7rem; }
  .collaboration-feature figure { width: min(100%, 320px); }
  .collaboration-copy { padding: .7rem .55rem 1.3rem; }
  .voice-card.featured, .voice-card:not(.featured) { display: block; }
  .voice-media video, .voice-card:not(.featured) .voice-media video { width: min(100%, 310px); max-height: none; }
  .voice-copy { padding: 1.3rem; }
  .map-nav { grid-template-columns: 1fr; }
  .map-tab, .map-tab:last-child { grid-column: auto; min-height: 82px; }
  .map-tab span { display: inline-block; margin: 0 .75rem 0 0; }
  .map-panel { min-height: 440px; padding: 1.5rem; }
  .cv-item, .cv-item:nth-child(odd), .cv-item:nth-child(even) { grid-template-columns: 1fr; gap: .45rem; }
  .contact h2 { font-size: clamp(3rem, 17vw, 5rem); }
}

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