/* White Stone Productions — public website */
:root {
    --wsp-bg: #0d0d0d;
    --wsp-surface: #171717;
    --wsp-text: #f4f0e8;
    --wsp-muted: #b5aea2;
    --wsp-red: #b73a32;
    --wsp-gold: #d6a62e;
    --wsp-green: #3e8b58;
    --wsp-line: color-mix(in srgb, var(--wsp-text) 15%, transparent);
    --wsp-soft: color-mix(in srgb, var(--wsp-surface) 84%, white 16%);
    --shell: min(1480px, calc(100vw - 48px));
    --radius-sm: 10px;
    --radius: 18px;
    --radius-lg: 30px;
    --shadow: 0 30px 90px rgba(0, 0, 0, .28);
    --serif: Georgia, "Times New Roman", serif;
    --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--wsp-bg); }
body {
    margin: 0;
    min-width: 320px;
    background: var(--wsp-bg);
    color: var(--wsp-text);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.65;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}
body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: .035;
    z-index: 99;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.42'/%3E%3C/svg%3E");
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
::selection { color: #111; background: var(--wsp-gold); }

.shell { width: var(--shell); margin-inline: auto; }
.shell--narrow { max-width: 860px; }
.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; left: 16px; top: -80px; z-index: 1000; padding: 12px 18px;
    background: var(--wsp-gold); color: #111; border-radius: 8px; font-weight: 800;
}
.skip-link:focus { top: 16px; }

.eyebrow {
    margin: 0 0 13px;
    color: var(--wsp-gold);
    font-size: .72rem;
    font-weight: 850;
    letter-spacing: .18em;
    line-height: 1.3;
    text-transform: uppercase;
}

.site-header {
    position: sticky; top: 0; z-index: 80;
    border-bottom: 1px solid transparent;
    background: rgba(13, 13, 13, .78);
    backdrop-filter: blur(20px) saturate(140%);
    transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled {
    border-color: var(--wsp-line);
    background: rgba(13, 13, 13, .94);
    box-shadow: 0 12px 35px rgba(0,0,0,.2);
}
.site-header__inner { min-height: 82px; display: flex; align-items: center; gap: 34px; }
.brand { display: inline-flex; align-items: center; gap: 12px; flex: 0 0 auto; }
.brand img { width: auto; max-width: 210px; height: 48px; object-fit: contain; }
.brand__mark {
    display: grid; grid-template-columns: repeat(3, 7px); gap: 4px; align-items: end;
    width: 31px; height: 35px; padding: 5px; border: 1px solid var(--wsp-line); border-radius: 8px;
    transform: skew(-4deg);
}
.brand__mark i { display: block; width: 7px; border-radius: 2px 2px 0 0; }
.brand__mark i:nth-child(1) { height: 13px; background: var(--wsp-green); }
.brand__mark i:nth-child(2) { height: 24px; background: var(--wsp-gold); }
.brand__mark i:nth-child(3) { height: 18px; background: var(--wsp-red); }
.brand__text { display: grid; line-height: 1; }
.brand__text strong { font-family: var(--serif); font-size: 1.22rem; letter-spacing: .015em; }
.brand__text small { margin-top: 5px; color: var(--wsp-muted); font-size: .61rem; font-weight: 800; letter-spacing: .25em; text-transform: uppercase; }
.main-nav { display: flex; align-items: center; justify-content: center; gap: clamp(14px, 2vw, 30px); margin-left: auto; }
.main-nav a {
    position: relative; padding: 30px 0 27px; color: var(--wsp-muted);
    font-size: .78rem; font-weight: 750; letter-spacing: .055em; text-transform: uppercase;
    transition: color .2s ease;
}
.main-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 21px; height: 2px; background: var(--wsp-gold); transition: right .2s ease; }
.main-nav a:hover, .main-nav a.is-active { color: var(--wsp-text); }
.main-nav a:hover::after, .main-nav a.is-active::after { right: 0; }
.header-actions { display: flex; align-items: center; gap: 8px; }
.icon-button, .menu-button {
    display: inline-grid; place-items: center; width: 42px; height: 42px;
    border: 1px solid var(--wsp-line); border-radius: 50%; background: transparent;
    cursor: pointer; transition: border-color .2s ease, background .2s ease;
}
.icon-button:hover, .menu-button:hover { border-color: var(--wsp-gold); background: rgba(214,166,46,.08); }
.icon-button span { font-size: 1.4rem; line-height: 1; transform: translateY(-2px); }
.menu-button { display: none; gap: 5px; padding: 12px; }
.menu-button span { display: block; width: 17px; height: 1.5px; background: currentColor; transition: transform .2s ease; }

.button {
    display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 13px 23px;
    border: 1px solid var(--wsp-gold); border-radius: 999px; background: var(--wsp-gold); color: #111;
    font-size: .8rem; font-weight: 850; letter-spacing: .04em; text-transform: uppercase;
    cursor: pointer; transition: transform .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(214,166,46,.18); }
.button--ghost { background: transparent; color: var(--wsp-text); border-color: var(--wsp-line); }
.button--ghost:hover { border-color: var(--wsp-gold); color: var(--wsp-gold); box-shadow: none; }
.button--small { min-height: 43px; padding: 10px 18px; font-size: .72rem; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.section-link { color: var(--wsp-gold); font-size: .77rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; white-space: nowrap; }
.section-link:hover { text-decoration: underline; text-underline-offset: 5px; }

.hero {
    position: relative; min-height: min(850px, calc(100vh - 82px)); overflow: hidden;
    border-bottom: 1px solid var(--wsp-line);
    background:
      linear-gradient(90deg, rgba(13,13,13,.98) 0%, rgba(13,13,13,.89) 45%, rgba(13,13,13,.35) 100%),
      var(--hero-image, none) center/cover no-repeat,
      radial-gradient(circle at 78% 30%, rgba(214,166,46,.16), transparent 32%),
      radial-gradient(circle at 72% 74%, rgba(62,139,88,.11), transparent 34%),
      var(--wsp-bg);
}
.hero__texture {
    position: absolute; inset: 0; opacity: .26; pointer-events: none;
    background-image: repeating-linear-gradient(113deg, transparent 0 42px, rgba(255,255,255,.03) 43px 44px);
    mask-image: linear-gradient(90deg, black, transparent 80%);
}
.hero__inner { position: relative; min-height: inherit; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(360px, .7fr); align-items: center; gap: 80px; padding-block: 80px 110px; }
.hero__copy { max-width: 820px; }
.hero__copy h1 {
    margin: 0; max-width: 850px; font-family: var(--serif); font-size: clamp(3.25rem, 7.1vw, 7.8rem);
    font-weight: 500; letter-spacing: -.055em; line-height: .91;
}
.hero__copy > p:not(.eyebrow) { max-width: 680px; margin: 30px 0 0; color: var(--wsp-muted); font-size: clamp(1.05rem, 1.4vw, 1.3rem); line-height: 1.7; }
.hero__art { position: relative; display: grid; place-items: center; justify-self: end; width: min(31vw, 480px); aspect-ratio: .82; }
.hero__art::before {
    content: ""; position: absolute; inset: 5%; border: 1px solid rgba(255,255,255,.11); border-radius: 46% 54% 43% 57% / 55% 39% 61% 45%;
    background: linear-gradient(145deg, rgba(255,255,255,.06), rgba(255,255,255,.015));
    box-shadow: inset 0 0 0 15px rgba(255,255,255,.015), var(--shadow); transform: rotate(-7deg);
}
.hero__art strong { position: relative; z-index: 2; font-family: var(--serif); font-size: clamp(5rem, 9vw, 9rem); font-weight: 500; letter-spacing: -.08em; text-shadow: 0 20px 40px rgba(0,0,0,.4); }
.hero__art small { position: absolute; z-index: 2; bottom: 17%; color: var(--wsp-muted); font-size: .63rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.hero-stone { position: absolute; border: 1px solid var(--wsp-line); border-radius: 50%; }
.hero-stone--one { width: 33%; aspect-ratio: 1; top: 4%; right: 2%; background: rgba(183,58,50,.16); }
.hero-stone--two { width: 24%; aspect-ratio: 1; left: 2%; bottom: 8%; background: rgba(62,139,88,.16); }
.hero-rings { position: absolute; inset: 15%; border: 1px solid rgba(214,166,46,.32); border-radius: 50%; transform: rotate(15deg); }
.hero-rings::before, .hero-rings::after { content: ""; position: absolute; inset: 11%; border: inherit; border-radius: inherit; }
.hero-rings::after { inset: 24%; }
.hero__stripe { position: absolute; left: 0; bottom: 0; display: grid; grid-template-columns: repeat(3, 1fr); width: 210px; height: 5px; }
.hero__stripe i:nth-child(1) { background: var(--wsp-green); }
.hero__stripe i:nth-child(2) { background: var(--wsp-gold); }
.hero__stripe i:nth-child(3) { background: var(--wsp-red); }

.section { padding: clamp(75px, 9vw, 130px) 0; }
.section--tight { padding-top: 55px; }
.section--surface { background: var(--wsp-surface); border-block: 1px solid var(--wsp-line); }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 40px; margin-bottom: 42px; }
.section-head > div { max-width: 810px; }
.section-head h2 { margin: 0; font-family: var(--serif); font-size: clamp(2.35rem, 4.6vw, 5rem); font-weight: 500; letter-spacing: -.045em; line-height: .98; }
.section-head p:not(.eyebrow) { max-width: 690px; margin: 18px 0 0; color: var(--wsp-muted); font-size: 1.04rem; }

.featured-video { display: grid; grid-template-columns: minmax(0, 1.6fr) minmax(300px, .72fr); min-height: 530px; overflow: hidden; border: 1px solid var(--wsp-line); border-radius: var(--radius-lg); background: var(--wsp-surface); box-shadow: var(--shadow); }
.featured-video__media { position: relative; min-height: 520px; overflow: hidden; background: #090909; isolation: isolate; }
.featured-video__media::after { content: ""; position: absolute; z-index: 1; inset: 0; background: linear-gradient(90deg, transparent 60%, rgba(23,23,23,.72)); pointer-events: none; transition: opacity .2s ease; }
.featured-video__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease, opacity .22s ease; }
.featured-video__media:hover img { transform: scale(1.025); }
.featured-video__media.is-previewing::after { opacity: 0; }
.big-play { display: inline-grid; place-items: center; width: 76px; height: 76px; padding-left: 5px; border: 1px solid rgba(255,255,255,.28); border-radius: 50%; background: rgba(13,13,13,.72); color: white; box-shadow: 0 15px 40px rgba(0,0,0,.3); backdrop-filter: blur(8px); }
.featured-video__media .big-play { position: absolute; z-index: 2; left: 50%; top: 50%; transform: translate(-50%,-50%); }
.featured-video__copy { display: flex; flex-direction: column; justify-content: center; padding: 44px; }
.featured-video__copy > span { color: var(--wsp-gold); font-size: .68rem; font-weight: 850; letter-spacing: .15em; text-transform: uppercase; }
.featured-video__copy h3 { margin: 14px 0 20px; font-family: var(--serif); font-size: clamp(2rem, 3vw, 3.4rem); font-weight: 500; line-height: 1; }
.featured-video__copy p { color: var(--wsp-muted); }
.featured-video__copy .button { align-self: flex-start; }

.media-rail { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(260px, 23%); gap: 20px; overflow-x: auto; padding: 3px 1px 22px; scroll-snap-type: x proximity; scrollbar-color: var(--wsp-gold) transparent; }
.media-rail > * { scroll-snap-align: start; }
.video-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 30px 20px; }
.video-card { min-width: 0; }
.video-card__media { position: relative; display: block; aspect-ratio: 16/9; overflow: hidden; border: 1px solid var(--wsp-line); border-radius: var(--radius); background: #111; isolation: isolate; }
.video-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease, opacity .22s ease; }
.video-card__media::after { content: ""; position: absolute; z-index: 1; inset: 0; background: linear-gradient(180deg, transparent 54%, rgba(0,0,0,.55)); opacity: .75; pointer-events: none; transition: opacity .2s ease; }
.video-card:hover img { transform: scale(1.035); opacity: .9; }
.video-card__media.is-previewing::after { opacity: 0; }
.play-chip { position: absolute; z-index: 3; left: 16px; bottom: 14px; display: grid; place-items: center; width: 38px; height: 38px; padding-left: 2px; border-radius: 50%; background: var(--wsp-gold); color: #111; font-size: .76rem; transition: opacity .18s ease, transform .18s ease; }
.duration-chip { position: absolute; z-index: 3; right: 10px; bottom: 10px; padding: 3px 7px; border-radius: 6px; background: rgba(0,0,0,.78); color: white; font-size: .68rem; font-weight: 700; transition: opacity .18s ease; }
.hover-preview-chip { position: absolute; z-index: 3; right: 10px; top: 10px; padding: 4px 8px; border: 1px solid rgba(255,255,255,.22); border-radius: 999px; background: rgba(0,0,0,.68); color: #fff; font-size: .58rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; backdrop-filter: blur(8px); transition: opacity .18s ease; }
.hover-preview-chip--featured { right: 18px; top: 18px; }
.hover-video-preview { position: absolute; z-index: 2; inset: -1px; width: calc(100% + 2px); height: calc(100% + 2px); border: 0; pointer-events: none; background: #000; }
.video-card__media.is-previewing > img, .featured-video__media.is-previewing > img { opacity: 0; }
.video-card__media.is-previewing .play-chip, .video-card__media.is-previewing .duration-chip, .video-card__media.is-previewing .hover-preview-chip, .featured-video__media.is-previewing .big-play, .featured-video__media.is-previewing .hover-preview-chip { opacity: 0; transform: scale(.94); }
.video-card__body { padding: 16px 3px 0; }
.video-card__body > span { color: var(--wsp-gold); font-size: .64rem; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.video-card h3 { margin: 7px 0 0; font-size: 1.02rem; line-height: 1.32; }
.video-card h3 a:hover { color: var(--wsp-gold); }
.video-card p { margin: 7px 0 0; color: var(--wsp-muted); font-size: .82rem; }
.media-placeholder { display: grid; place-items: center; width: 100%; height: 100%; color: var(--wsp-gold); font-family: var(--serif); font-size: 2.5rem; }

.project-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 24px; }
.project-grid--archive { grid-template-columns: repeat(3, minmax(0,1fr)); gap: 34px 24px; }
.project-card { overflow: hidden; border: 1px solid var(--wsp-line); border-radius: var(--radius); background: color-mix(in srgb, var(--wsp-surface) 88%, white 3%); transition: transform .25s ease, border-color .25s ease; }
.project-card:hover { transform: translateY(-5px); border-color: color-mix(in srgb, var(--wsp-gold) 55%, transparent); }
.project-card__media { display: block; aspect-ratio: 1.15/1; overflow: hidden; border-bottom: 1px solid var(--wsp-line); }
.project-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.project-card:hover img { transform: scale(1.035); }
.project-placeholder { position: relative; display: flex; flex-direction: column; justify-content: space-between; height: 100%; padding: 25px; overflow: hidden; background: radial-gradient(circle at 85% 18%, rgba(214,166,46,.22), transparent 25%), linear-gradient(145deg, #222, #111); }
.project-placeholder::before { content: ""; position: absolute; width: 170px; aspect-ratio: 1; right: -45px; bottom: -62px; border: 26px solid rgba(255,255,255,.035); border-radius: 50%; }
.project-placeholder small { position: relative; color: var(--wsp-gold); font-size: .62rem; font-weight: 850; letter-spacing: .16em; text-transform: uppercase; }
.project-placeholder strong { position: relative; max-width: 85%; font-family: var(--serif); font-size: clamp(1.4rem, 2.3vw, 2.35rem); font-weight: 500; line-height: 1; }
.project-card__body { padding: 20px; }
.card-meta { display: flex; justify-content: space-between; gap: 10px; color: var(--wsp-muted); font-size: .62rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.project-card h3 { margin: 13px 0 0; font-family: var(--serif); font-size: 1.5rem; font-weight: 500; line-height: 1.08; }
.project-card h3 a:hover { color: var(--wsp-gold); }
.project-card__artist { margin: 9px 0 0 !important; color: var(--wsp-text) !important; font-weight: 700; }
.project-card__body p { margin: 8px 0 0; color: var(--wsp-muted); font-size: .82rem; }

.profile-section { overflow: hidden; }
.profile-grid { display: grid; grid-template-columns: minmax(300px, .78fr) minmax(0, 1.15fr); align-items: center; gap: clamp(45px, 8vw, 120px); }
.profile-portrait { position: relative; aspect-ratio: .84; }
.profile-portrait::before { content: ""; position: absolute; inset: -18px 18px 18px -18px; border: 1px solid rgba(214,166,46,.32); border-radius: 45% 45% 10px 10px; transform: rotate(-2deg); }
.profile-portrait img, .portrait-placeholder { position: relative; width: 100%; height: 100%; object-fit: cover; border-radius: 45% 45% 10px 10px; border: 1px solid var(--wsp-line); }
.portrait-placeholder { display: grid; place-items: center; align-content: center; gap: 12px; background: radial-gradient(circle at 50% 30%, rgba(214,166,46,.24), transparent 30%), linear-gradient(145deg, #202020, #111); }
.portrait-placeholder span { font-family: var(--serif); font-size: clamp(5rem, 13vw, 10rem); letter-spacing: -.08em; }
.portrait-placeholder small { color: var(--wsp-muted); font-size: .65rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.profile-copy h2 { margin: 0; font-family: var(--serif); font-size: clamp(3rem, 6vw, 6.5rem); font-weight: 500; letter-spacing: -.055em; line-height: .92; }
.profile-copy h3 { margin: 18px 0 22px; color: var(--wsp-gold); font-size: .8rem; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.profile-copy > p { max-width: 720px; color: var(--wsp-muted); font-size: 1.13rem; }

.credit-list { border-top: 1px solid var(--wsp-line); }
.credit-list article { display: grid; grid-template-columns: 76px 74px minmax(0,1fr) minmax(210px,.8fr); align-items: center; gap: 24px; min-height: 112px; padding: 18px 4px; border-bottom: 1px solid var(--wsp-line); transition: padding .2s ease, background .2s ease; }
.credit-list article:hover { padding-inline: 14px; background: rgba(255,255,255,.018); }
.credit-list__thumb { width: 76px; aspect-ratio: 1; object-fit: cover; border: 1px solid var(--wsp-line); border-radius: 12px; background: #111; }
.credit-list article > span { color: var(--wsp-gold); font-size: .71rem; font-weight: 850; letter-spacing: .1em; }
.credit-list h3 { margin: 0; font-family: var(--serif); font-size: 1.4rem; font-weight: 500; }
.credit-list p { margin: 2px 0 0; color: var(--wsp-muted); font-size: .85rem; }
.credit-list article > strong { justify-self: end; text-align: right; font-size: .76rem; letter-spacing: .06em; text-transform: uppercase; }

.service-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 20px; }
.service-grid--archive { gap: 28px; }
.service-card { padding: 30px; border: 1px solid var(--wsp-line); border-radius: var(--radius); background: color-mix(in srgb, var(--wsp-surface) 92%, white 3%); }
.service-card--detail { padding: 38px; }
.service-icon { display: grid; place-items: center; width: 48px; height: 48px; margin-bottom: 28px; border: 1px solid var(--wsp-line); border-radius: 50%; color: var(--wsp-gold); font-family: var(--serif); font-size: 1.3rem; }
.service-card h3, .service-card h2 { margin: 0 0 13px; font-family: var(--serif); font-size: 1.65rem; font-weight: 500; line-height: 1.08; }
.service-card p { color: var(--wsp-muted); }
.service-card > a:not(.button) { color: var(--wsp-gold); font-size: .75rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }

.news-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 24px; }
.news-grid--archive { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 45px 28px; }
.news-card__media { display: block; aspect-ratio: 16/10; overflow: hidden; border: 1px solid var(--wsp-line); border-radius: var(--radius); background: var(--wsp-surface); }
.news-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.news-card:hover img { transform: scale(1.03); }
.news-placeholder { display: grid; place-items: center; width: 100%; height: 100%; background: radial-gradient(circle at 70% 20%, rgba(183,58,50,.18), transparent 28%), linear-gradient(145deg,#202020,#111); color: var(--wsp-gold); font-family: var(--serif); font-size: 4rem; }
.news-card > div { padding-top: 18px; }
.news-card > div > span { color: var(--wsp-gold); font-size: .68rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.news-card h3, .news-card h2 { margin: 10px 0 12px; font-family: var(--serif); font-size: clamp(1.45rem,2.2vw,2rem); font-weight: 500; line-height: 1.08; }
.news-card h3 a:hover, .news-card h2 a:hover { color: var(--wsp-gold); }
.news-card p { color: var(--wsp-muted); }

.connect-section { border-top: 1px solid var(--wsp-line); }
.connect-grid { display: grid; grid-template-columns: minmax(250px,.65fr) minmax(0,1.35fr); gap: 80px; align-items: start; }
.connect-grid h2 { margin: 0; font-family: var(--serif); font-size: clamp(2.7rem,5vw,5rem); font-weight: 500; line-height: .95; }
.connect-grid > div:first-child > p:not(.eyebrow) { color: var(--wsp-muted); }
.connect-links { display: grid; grid-template-columns: repeat(2,1fr); border-top: 1px solid var(--wsp-line); }
.connect-links a { display: grid; grid-template-columns: 90px 1fr auto; align-items: center; gap: 15px; min-height: 91px; padding: 15px; border-bottom: 1px solid var(--wsp-line); transition: background .2s ease, padding .2s ease; }
.connect-links a:nth-child(odd) { border-right: 1px solid var(--wsp-line); }
.connect-links a:hover { padding-left: 23px; background: rgba(255,255,255,.02); }
.connect-links span { color: var(--wsp-gold); font-size: .64rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.connect-links strong { font-family: var(--serif); font-size: 1.17rem; font-weight: 500; }
.connect-links i { font-style: normal; color: var(--wsp-muted); }

.closing-cta { padding: clamp(90px,12vw,170px) 0; text-align: center; background: radial-gradient(circle at 50% 100%, rgba(214,166,46,.13), transparent 42%), var(--wsp-surface); border-top: 1px solid var(--wsp-line); }
.closing-cta .shell { max-width: 940px; }
.closing-cta h2 { margin: 0; font-family: var(--serif); font-size: clamp(3rem,6.6vw,7rem); font-weight: 500; letter-spacing: -.055em; line-height: .91; }
.closing-cta p:not(.eyebrow) { max-width: 750px; margin: 28px auto; color: var(--wsp-muted); font-size: 1.1rem; }

.page-hero { position: relative; padding: clamp(95px,12vw,175px) 0 clamp(75px,9vw,125px); overflow: hidden; border-bottom: 1px solid var(--wsp-line); background: radial-gradient(circle at 78% 10%, rgba(214,166,46,.13), transparent 28%), linear-gradient(150deg, var(--wsp-surface), var(--wsp-bg) 70%); }
.page-hero::after { content: "WSP"; position: absolute; right: 4vw; bottom: -5vw; color: rgba(255,255,255,.018); font-family: var(--serif); font-size: min(29vw, 420px); line-height: 1; letter-spacing: -.1em; pointer-events: none; }
.page-hero .shell { position: relative; z-index: 1; }
.page-hero h1 { max-width: 1080px; margin: 0; font-family: var(--serif); font-size: clamp(3.6rem,8vw,8.5rem); font-weight: 500; letter-spacing: -.06em; line-height: .88; }
.page-hero p:not(.eyebrow) { max-width: 760px; margin: 30px 0 0; color: var(--wsp-muted); font-size: clamp(1.05rem,1.6vw,1.25rem); }
.page-hero--image { background: linear-gradient(90deg,rgba(13,13,13,.96),rgba(13,13,13,.56)), var(--page-hero-image) center/cover no-repeat; }

.filter-bar { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; margin-bottom: 42px; padding: 13px; border: 1px solid var(--wsp-line); border-radius: 999px; background: var(--wsp-surface); }
.filter-bar label:first-child { flex: 1 1 270px; }
.filter-bar input, .filter-bar select, .site-search input, .contact-builder input, .contact-builder select, .contact-builder textarea {
    width: 100%; border: 1px solid var(--wsp-line); border-radius: 999px; outline: none; background: rgba(255,255,255,.025); color: var(--wsp-text); transition: border-color .2s ease, box-shadow .2s ease;
}
.filter-bar input, .filter-bar select { min-height: 44px; padding: 9px 15px; }
.filter-bar select { min-width: 190px; color-scheme: dark; }
.filter-bar input:focus, .filter-bar select:focus, .site-search input:focus, .contact-builder input:focus, .contact-builder select:focus, .contact-builder textarea:focus { border-color: var(--wsp-gold); box-shadow: 0 0 0 3px rgba(214,166,46,.1); }
.filter-bar > a { margin-inline: 7px; color: var(--wsp-muted); font-size: .75rem; font-weight: 750; }
.filter-bar--credits label:first-child { min-width: 290px; }
.empty-state { padding: 90px 25px; border: 1px dashed var(--wsp-line); border-radius: var(--radius); text-align: center; }
.empty-state h2 { margin: 0; font-family: var(--serif); font-size: 2.5rem; font-weight: 500; }
.empty-state p { color: var(--wsp-muted); }

.watch-page { padding: 50px 0 100px; }
.video-player { position: relative; aspect-ratio: 16/9; overflow: hidden; border: 1px solid var(--wsp-line); border-radius: var(--radius-lg); background: #050505; box-shadow: var(--shadow); }
.video-player > img { width: 100%; height: 100%; object-fit: cover; opacity: .68; filter: saturate(.85); }
.video-player::after { content: ""; position: absolute; inset: 0; background: rgba(0,0,0,.12); pointer-events: none; }
.video-player iframe { position: relative; z-index: 3; width: 100%; height: 100%; border: 0; }
.video-consent-button { position: absolute; z-index: 2; inset: 0; display: grid; place-items: center; align-content: center; gap: 10px; border: 0; background: transparent; cursor: pointer; }
.video-consent-button strong { font-family: var(--serif); font-size: 1.75rem; font-weight: 500; }
.video-consent-button small { color: rgba(255,255,255,.8); }
.watch-meta { display: flex; justify-content: space-between; gap: 30px; align-items: start; padding: 42px 5px 25px; border-bottom: 1px solid var(--wsp-line); }
.watch-meta h1 { margin: 0; font-family: var(--serif); font-size: clamp(2.7rem,5vw,5.5rem); font-weight: 500; letter-spacing: -.045em; line-height: .95; }
.watch-series { color: var(--wsp-muted); }
.watch-description { max-width: 900px; margin-top: 35px; }

.detail-page { padding: clamp(75px,9vw,135px) 0; }
.detail-grid { display: grid; grid-template-columns: minmax(300px,.8fr) minmax(0,1.15fr); gap: clamp(50px,8vw,120px); align-items: start; }
.detail-art { position: sticky; top: 125px; min-height: 520px; }
.detail-art--square { min-height: auto; aspect-ratio: 1; }
.detail-art > img { width: 100%; height: auto; max-height: 780px; object-fit: cover; border: 1px solid var(--wsp-line); border-radius: var(--radius); box-shadow: var(--shadow); }
.project-placeholder--large, .release-placeholder--large { min-height: 620px; border: 1px solid var(--wsp-line); border-radius: var(--radius); }
.project-placeholder--large span, .release-placeholder--large span { position: relative; color: var(--wsp-muted); }
.detail-copy { padding-top: 20px; }
.detail-copy h1 { margin: 0; font-family: var(--serif); font-size: clamp(3.2rem,6vw,7rem); font-weight: 500; letter-spacing: -.06em; line-height: .88; }
.detail-copy h2 { margin: 18px 0 0; color: var(--wsp-muted); font-size: 1.05rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.detail-lead { margin: 32px 0; color: var(--wsp-text); font-family: var(--serif); font-size: 1.45rem; line-height: 1.45; }
.role-banner { display: grid; gap: 5px; margin: 34px 0; padding: 20px 23px; border-left: 3px solid var(--wsp-gold); background: rgba(214,166,46,.06); }
.role-banner span { color: var(--wsp-muted); font-size: .66rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.role-banner strong { font-size: 1rem; }
.release-codes { margin-top: 28px; color: var(--wsp-muted); font-size: .76rem; }

.release-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 32px 23px; }
.release-card__media { display: block; aspect-ratio: 1; overflow: hidden; border: 1px solid var(--wsp-line); border-radius: var(--radius); background: var(--wsp-surface); }
.release-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.release-card:hover img { transform: scale(1.035); }
.release-placeholder { display: flex; flex-direction: column; justify-content: space-between; width: 100%; height: 100%; padding: 24px; background: radial-gradient(circle at 80% 15%,rgba(214,166,46,.2),transparent 30%),linear-gradient(145deg,#222,#0f0f0f); }
.release-placeholder small { color: var(--wsp-gold); font-size: .62rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.release-placeholder strong { max-width: 90%; font-family: var(--serif); font-size: clamp(1.5rem,2.3vw,2.4rem); font-weight: 500; line-height: 1; }
.release-card > div { padding: 15px 2px 0; }
.release-card > div > span { color: var(--wsp-muted); font-size: .7rem; }
.release-card h3 { margin: 4px 0 0; font-family: var(--serif); font-size: 1.45rem; font-weight: 500; line-height: 1.1; }
.release-card h3 a:hover { color: var(--wsp-gold); }
.release-placeholder--large { justify-content: space-between; }
.release-placeholder--large strong { font-size: clamp(3rem,6vw,6rem); }

.track-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--wsp-line); }
.track-list li { display: grid; grid-template-columns: 55px 1fr auto; align-items: center; gap: 20px; min-height: 78px; padding: 10px 5px; border-bottom: 1px solid var(--wsp-line); }
.track-list li > span { color: var(--wsp-gold); font-size: .7rem; font-weight: 800; }
.track-list li div { display: grid; }
.track-list small, .track-list time { color: var(--wsp-muted); font-size: .75rem; }

.credit-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 26px; }
.credit-card { overflow: hidden; border: 1px solid var(--wsp-line); border-radius: var(--radius); background: color-mix(in srgb, var(--wsp-surface) 92%, white 2%); transition: transform .22s ease, border-color .22s ease; }
.credit-card:hover { transform: translateY(-4px); border-color: color-mix(in srgb, var(--wsp-gold) 50%, transparent); }
.credit-card__media { position: relative; display: block; aspect-ratio: 1; overflow: hidden; border-bottom: 1px solid var(--wsp-line); background: #101010; }
.credit-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.credit-card:hover .credit-card__media img { transform: scale(1.025); }
.credit-card__media > span { position: absolute; left: 14px; bottom: 14px; padding: 5px 9px; border-radius: 999px; background: rgba(0,0,0,.74); color: var(--wsp-gold); font-size: .65rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; backdrop-filter: blur(8px); }
.credit-card__body { display: flex; flex-direction: column; min-height: 300px; padding: 22px; }
.credit-card__meta { display: flex; justify-content: space-between; gap: 12px; color: var(--wsp-gold); font-size: .62rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.credit-card__meta a, .credit-card__source { color: var(--wsp-gold); }
.credit-card h2 { margin: 16px 0 4px; font-family: var(--serif); font-size: 1.7rem; font-weight: 500; line-height: 1.04; }
.credit-card__artist { margin: 0 0 18px !important; color: var(--wsp-text) !important; font-weight: 750; }
.credit-card__body > strong { font-size: .73rem; letter-spacing: .055em; line-height: 1.5; text-transform: uppercase; }
.credit-card__body > p { margin: 12px 0 0; color: var(--wsp-muted); font-size: .82rem; }
.credit-card__source { margin-top: auto; padding-top: 20px; font-size: .68rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }

.artist-hero { padding: clamp(70px,9vw,130px) 0; }
.artist-hero__grid { display: grid; grid-template-columns: minmax(300px,.78fr) minmax(0,1.15fr); align-items: center; gap: clamp(55px,9vw,130px); }
.artist-hero__portrait { aspect-ratio: .82; }
.artist-hero__portrait img, .portrait-placeholder--large { width: 100%; height: 100%; object-fit: cover; border: 1px solid var(--wsp-line); border-radius: 48% 48% 12px 12px; box-shadow: var(--shadow); }
.artist-hero h1 { margin: 0; font-family: var(--serif); font-size: clamp(4rem,8vw,9rem); font-weight: 500; letter-spacing: -.07em; line-height: .82; }
.artist-hero h2 { margin: 22px 0; color: var(--wsp-gold); font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; }
.career-band { padding: 50px 0; border-block: 1px solid var(--wsp-line); background: var(--wsp-surface); }
.career-band .shell { display: grid; grid-template-columns: repeat(3,1fr); }
.career-band .shell > div { padding: 15px 35px; border-right: 1px solid var(--wsp-line); }
.career-band .shell > div:first-child { padding-left: 0; }
.career-band .shell > div:last-child { border-right: 0; }
.career-band span { display: block; color: var(--wsp-gold); font-size: .62rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.career-band strong { display: block; margin: 8px 0; font-family: var(--serif); font-size: 1.45rem; font-weight: 500; }
.career-band p { margin: 0; color: var(--wsp-muted); font-size: .85rem; }

.contact-grid { display: grid; grid-template-columns: minmax(0,1.2fr) minmax(280px,.65fr); gap: clamp(45px,8vw,110px); }
.contact-builder { padding: clamp(25px,4vw,45px); border: 1px solid var(--wsp-line); border-radius: var(--radius-lg); background: var(--wsp-surface); box-shadow: var(--shadow); }
.field { display: grid; gap: 8px; margin-bottom: 19px; }
.field label { font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.contact-builder input, .contact-builder select { height: 52px; padding: 11px 17px; color-scheme: dark; }
.contact-builder textarea { min-height: 180px; padding: 15px 17px; border-radius: var(--radius-sm); resize: vertical; }
.form-grid { display: grid; gap: 18px; }
.form-grid--two { grid-template-columns: repeat(2,minmax(0,1fr)); }
.contact-privacy { margin: 18px 0 0; color: var(--wsp-muted); font-size: .75rem; }
.contact-aside h2 { margin: 0 0 28px; font-family: var(--serif); font-size: clamp(2.2rem,4vw,4rem); font-weight: 500; line-height: .95; }
.contact-route-list { border-top: 1px solid var(--wsp-line); }
.contact-route-list article { display: grid; gap: 4px; padding: 16px 0; border-bottom: 1px solid var(--wsp-line); }
.contact-route-list span { color: var(--wsp-muted); font-size: .65rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.contact-route-list a { word-break: break-word; font-size: .9rem; }
.contact-route-list a:hover { color: var(--wsp-gold); }
.contact-note { margin-top: 28px; padding: 22px; border-left: 3px solid var(--wsp-green); background: rgba(62,139,88,.07); }
.contact-note p { margin-bottom: 0; color: var(--wsp-muted); font-size: .85rem; }

.prose { color: color-mix(in srgb, var(--wsp-text) 90%, var(--wsp-muted)); font-size: 1.03rem; }
.prose > *:first-child { margin-top: 0; }
.prose h2 { margin: 2.3em 0 .7em; color: var(--wsp-text); font-family: var(--serif); font-size: 2.1rem; font-weight: 500; line-height: 1.05; }
.prose h3 { margin: 1.8em 0 .6em; color: var(--wsp-text); font-size: 1.3rem; }
.prose p, .prose ul, .prose ol { margin: 0 0 1.35em; }
.prose a { color: var(--wsp-gold); text-decoration: underline; text-underline-offset: 4px; }
.prose blockquote { margin: 2em 0; padding: 20px 25px; border-left: 3px solid var(--wsp-gold); background: var(--wsp-surface); font-family: var(--serif); font-size: 1.3rem; }
.prose--compact { font-size: .95rem; }
.prose--compact h2 { font-size: 1.55rem; }
.standard-page__body, .article-body { padding-top: clamp(65px,8vw,110px); padding-bottom: clamp(80px,10vw,140px); }
.article-header { padding-top: clamp(90px,12vw,170px); padding-bottom: 55px; text-align: center; }
.article-header h1 { margin: 0; font-family: var(--serif); font-size: clamp(3.2rem,7vw,7rem); font-weight: 500; letter-spacing: -.055em; line-height: .92; }
.article-header time { display: block; margin-top: 25px; color: var(--wsp-gold); font-size: .7rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.article-header > p:not(.eyebrow) { max-width: 720px; margin: 25px auto 0; color: var(--wsp-muted); font-size: 1.15rem; }
.article-hero { max-height: 720px; overflow: hidden; border: 1px solid var(--wsp-line); border-radius: var(--radius-lg); }
.article-hero img { width: 100%; height: 100%; object-fit: cover; }

.site-search { display: flex; gap: 10px; margin-top: 40px; }
.site-search label { flex: 1; }
.site-search input { height: 57px; padding: 12px 20px; }
.search-summary { margin-bottom: 25px; color: var(--wsp-muted); }
.search-results { border-top: 1px solid var(--wsp-line); }
.search-results > a { display: grid; grid-template-columns: 110px 1fr auto; gap: 25px; align-items: center; min-height: 120px; padding: 20px 7px; border-bottom: 1px solid var(--wsp-line); transition: padding .2s ease, background .2s ease; }
.search-results > a:hover { padding-inline: 18px; background: rgba(255,255,255,.018); }
.search-results > a > span { color: var(--wsp-gold); font-size: .65rem; font-weight: 850; letter-spacing: .11em; text-transform: uppercase; }
.search-results h2 { margin: 0; font-family: var(--serif); font-size: 1.6rem; font-weight: 500; }
.search-results p { margin: 4px 0 0; color: var(--wsp-muted); font-size: .85rem; }
.search-results i { color: var(--wsp-gold); font-style: normal; font-size: 1.5rem; }

.error-page { min-height: 72vh; display: grid; place-items: center; padding: 90px 0; text-align: center; }
.error-page .shell > span { display: block; color: rgba(255,255,255,.05); font-family: var(--serif); font-size: clamp(9rem,25vw,23rem); line-height: .65; letter-spacing: -.1em; }
.error-page h1 { margin: 25px 0; font-family: var(--serif); font-size: clamp(3rem,6vw,6rem); font-weight: 500; line-height: .95; }
.error-page p:not(.eyebrow) { color: var(--wsp-muted); }
.error-page .button-row { justify-content: center; }

.site-footer { padding: 76px 0 25px; border-top: 1px solid var(--wsp-line); background: #090909; }
.site-footer__grid { display: grid; grid-template-columns: minmax(220px,1.05fr) minmax(380px,1.8fr) minmax(240px,.9fr); gap: clamp(38px,5vw,72px); align-items: start; }
.site-footer__brand { min-width: 0; }
.brand--footer { margin-bottom: 20px; }
.site-footer p { color: var(--wsp-muted); font-size: .84rem; }
.site-footer__description { max-width: 360px; margin: 0; line-height: 1.7; }
.footer-link-groups { display: grid; grid-template-columns: repeat(auto-fit,minmax(155px,1fr)); gap: 32px clamp(28px,4vw,50px); min-width: 0; }
.footer-link-group { min-width: 0; }
.site-footer h2 { display: flex; align-items: center; gap: 8px; margin: 0 0 15px; color: var(--wsp-muted); font-size: .64rem; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.footer-link-group__description { max-width: 210px; margin: -5px 0 14px; line-height: 1.45; font-size: .74rem !important; }
.footer-links { display: grid; gap: 8px; }
.footer-links a { display: grid; grid-template-columns: 26px minmax(0,1fr); align-items: center; gap: 9px; min-height: 30px; color: var(--wsp-muted); font-size: .82rem; line-height: 1.25; }
.footer-links a:hover { color: var(--wsp-gold); }
.footer-links a:hover .link-icon { border-color: color-mix(in srgb, var(--wsp-gold) 48%, transparent); background: rgba(214,166,46,.07); }
.footer-links a > span:last-child { min-width: 0; overflow-wrap: anywhere; }
.footer-contact { padding: 23px; border: 1px solid var(--wsp-line); border-radius: var(--radius); background: var(--wsp-surface); }
.footer-contact > p:not(.eyebrow) { line-height: 1.55; }
.site-footer__bottom { display: flex; justify-content: space-between; align-items: center; gap: 20px; margin-top: 58px; padding-top: 22px; border-top: 1px solid var(--wsp-line); color: var(--wsp-muted); font-size: .68rem; }
.site-footer__bottom a:hover { color: var(--wsp-gold); }

@media (max-width: 1180px) {
    .main-nav { gap: 15px; }
    .main-nav a { font-size: .7rem; }
    .hero__inner { grid-template-columns: 1fr .55fr; gap: 40px; }
    .project-grid { grid-template-columns: repeat(3,1fr); }
    .video-grid { grid-template-columns: repeat(3,1fr); }
    .release-grid { grid-template-columns: repeat(3,1fr); }
    .site-footer__grid { grid-template-columns: minmax(220px,.85fr) minmax(0,1.7fr); }
    .footer-contact { grid-column: 1/-1; }
}

@media (max-width: 940px) {
    :root { --shell: min(100% - 34px, 1480px); }
    .site-header__inner { min-height: 72px; }
    .menu-button { display: inline-grid; }
    .main-nav {
        position: fixed; inset: 72px 0 auto; display: grid; gap: 0; margin: 0; padding: 12px 17px 24px;
        border-bottom: 1px solid var(--wsp-line); background: rgba(13,13,13,.98); transform: translateY(-130%); opacity: 0;
        visibility: hidden; transition: transform .25s ease, opacity .25s ease, visibility .25s ease;
    }
    .main-nav.is-open { transform: translateY(0); opacity: 1; visibility: visible; }
    .main-nav a { padding: 14px 10px; border-bottom: 1px solid rgba(255,255,255,.06); }
    .main-nav a::after { display: none; }
    .hero { min-height: auto; }
    .hero__inner { grid-template-columns: 1fr; padding-block: 100px 120px; }
    .hero__art { position: absolute; right: -13%; bottom: -10%; width: 420px; opacity: .25; }
    .hero__copy { position: relative; z-index: 3; }
    .featured-video { grid-template-columns: 1fr; }
    .featured-video__media { min-height: auto; aspect-ratio: 16/9; }
    .featured-video__media::after { background: linear-gradient(180deg,transparent 75%,rgba(23,23,23,.75)); }
    .media-rail { grid-auto-columns: minmax(270px, 42%); }
    .project-grid, .project-grid--archive { grid-template-columns: repeat(2,1fr); }
    .video-grid { grid-template-columns: repeat(2,1fr); }
    .service-grid { grid-template-columns: repeat(2,1fr); }
    .profile-grid, .artist-hero__grid, .detail-grid, .contact-grid { grid-template-columns: 1fr; }
    .profile-portrait, .artist-hero__portrait { max-width: 620px; width: 100%; margin-inline: auto; }
    .detail-art { position: relative; top: auto; max-width: 700px; }
    .connect-grid { grid-template-columns: 1fr; gap: 40px; }
    .release-grid { grid-template-columns: repeat(2,1fr); }
    .career-band .shell { grid-template-columns: 1fr; }
    .career-band .shell > div { padding: 25px 0; border-right: 0; border-bottom: 1px solid var(--wsp-line); }
    .career-band .shell > div:last-child { border-bottom: 0; }
    .site-footer__grid { grid-template-columns: 1fr; }
    .footer-link-groups { grid-template-columns: repeat(auto-fit,minmax(150px,1fr)); }
    .footer-contact { grid-column: auto; max-width: 620px; }
}

@media (max-width: 680px) {
    :root { --shell: calc(100% - 26px); }
    .brand__text strong { font-size: 1rem; }
    .brand__text small { font-size: .53rem; }
    .brand img { max-width: 165px; height: 40px; }
    .hero__inner { padding-block: 75px 100px; }
    .hero__copy h1 { font-size: clamp(3.15rem,16vw,5rem); }
    .hero__art { width: 330px; }
    .section { padding-block: 78px; }
    .section--tight { padding-top: 35px; }
    .section-head { display: grid; gap: 18px; }
    .section-head h2 { font-size: 2.9rem; }
    .featured-video__copy { padding: 27px; }
    .media-rail { grid-auto-columns: 82%; }
    .project-grid, .project-grid--archive, .video-grid, .service-grid, .news-grid, .news-grid--archive, .release-grid { grid-template-columns: 1fr; }
    .project-card__media { aspect-ratio: 1.35/1; }
    .credit-list article { grid-template-columns: 64px 52px 1fr; gap: 12px; }
    .credit-list__thumb { width: 64px; grid-row: 1 / span 2; }
    .credit-list article > strong { grid-column: 3; justify-self: start; text-align: left; color: var(--wsp-muted); }
    .credit-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
    .connect-links { grid-template-columns: 1fr; }
    .connect-links a:nth-child(odd) { border-right: 0; }
    .page-hero { padding-block: 85px 75px; }
    .page-hero h1 { font-size: clamp(3.5rem,18vw,5.5rem); }
    .filter-bar { border-radius: var(--radius); }
    .filter-bar > * { width: 100%; }
    .filter-bar select { width: 100%; }
    .watch-page { padding-top: 18px; }
    .video-player { border-radius: var(--radius-sm); }
    .video-consent-button strong { font-size: 1.25rem; }
    .video-consent-button small { display: none; }
    .watch-meta { display: grid; }
    .detail-grid { gap: 40px; }
    .project-placeholder--large { min-height: 440px; }
    .credit-grid { grid-template-columns: 1fr; }
    .hover-preview-chip { display: none; }
    .form-grid--two { grid-template-columns: 1fr; gap: 0; }
    .site-search { display: grid; }
    .search-results > a { grid-template-columns: 1fr auto; gap: 8px; }
    .search-results > a > span { grid-column: 1/-1; }
    .site-footer__grid { grid-template-columns: 1fr; }
    .footer-link-groups { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 30px 24px; }
    .site-footer__bottom { display: grid; }
    .big-play { width: 60px; height: 60px; }
}

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

/* Version 2: editable links, music embeds, galleries, and supplied WSP logo */
.link-icon { display: inline-grid; place-items: center; flex: 0 0 auto; width: 42px; height: 42px; overflow: hidden; border: 1px solid var(--wsp-line); border-radius: 12px; color: var(--wsp-gold); background: rgba(255,255,255,.025); }
.link-icon__svg { width: 22px; height: 22px; }
.link-icon__svg .icon-fill { fill: currentColor; stroke: none; }
.link-icon__image { width: 100%; height: 100%; object-fit: cover; }
.link-icon--small { width: 25px; height: 25px; border-radius: 7px; }
.link-icon--small .link-icon__svg { width: 15px; height: 15px; }
.link-icon--category { width: 23px; height: 23px; border-radius: 7px; }
.link-icon--category .link-icon__svg { width: 14px; height: 14px; }
.link-icon--nav { width: 22px; height: 22px; border: 0; border-radius: 6px; background: transparent; }
.link-icon--nav .link-icon__svg { width: 15px; height: 15px; }
.main-nav a { display: inline-flex; align-items: center; gap: 7px; }

.hero__logo { position: relative; z-index: 3; width: 100%; max-width: 450px; max-height: 360px; object-fit: contain; filter: drop-shadow(0 24px 40px rgba(0,0,0,.45)); }
.hero__art:has(.hero__logo)::before { opacity: .5; }

.social-card-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.social-card { display: grid; grid-template-columns: auto minmax(0,1fr) auto; align-items: center; gap: 18px; min-height: 126px; padding: 22px; border: 1px solid var(--wsp-line); border-radius: var(--radius); background: color-mix(in srgb, var(--wsp-surface) 92%, white 3%); transition: transform .22s ease, border-color .22s ease, background .22s ease; }
.social-card:hover { transform: translateY(-3px); border-color: color-mix(in srgb, var(--wsp-gold) 55%, transparent); background: color-mix(in srgb, var(--wsp-surface) 88%, white 6%); }
.social-card > div { min-width: 0; }
.social-card small { display: block; margin-bottom: 3px; color: var(--wsp-gold); font-size: .62rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.social-card strong { display: block; font-family: var(--serif); font-size: 1.25rem; font-weight: 500; line-height: 1.15; }
.social-card p { margin: 7px 0 0; color: var(--wsp-muted); font-size: .82rem; }
.social-card > i { color: var(--wsp-muted); font-style: normal; }

.music-embed-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; align-items: start; }
.music-embed { overflow: hidden; border: 1px solid var(--wsp-line); border-radius: var(--radius-lg); background: color-mix(in srgb, var(--wsp-surface) 94%, white 2%); box-shadow: 0 24px 65px rgba(0,0,0,.18); }
.music-embed--spotify { padding: 25px; }
.music-embed__head { display: flex; align-items: center; gap: 14px; margin-bottom: 13px; }
.music-embed__head > span { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; background: #1ed760; color: #08130b; }
.music-embed__head .link-icon__svg { width: 27px; height: 27px; }
.music-embed__head small, .music-embed__provider span { color: var(--wsp-muted); font-size: .62rem; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.music-embed h3 { margin: 0; font-family: var(--serif); font-size: 1.65rem; font-weight: 500; line-height: 1.1; }
.music-embed > p, .music-embed__body p { color: var(--wsp-muted); }
.music-embed iframe { display: block; width: 100%; height: 352px; margin-top: 20px; border: 0; border-radius: 14px; background: #121212; }
.music-embed__external { display: inline-block; margin-top: 14px; color: var(--wsp-gold); font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }
.music-embed--link { display: grid; grid-template-columns: minmax(180px, .7fr) minmax(0,1fr); min-height: 340px; }
.music-embed__art { min-height: 100%; overflow: hidden; background: radial-gradient(circle at 45% 35%, rgba(214,166,46,.2), transparent 35%), #101010; }
.music-embed__art img { width: 100%; height: 100%; object-fit: cover; }
.music-embed__art > span { display: grid; place-items: center; width: 100%; height: 100%; color: var(--wsp-gold); }
.music-embed__art .link-icon__svg { width: 84px; height: 84px; }
.music-embed__body { display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding: 34px; }
.music-embed__provider { display: flex; align-items: center; gap: 8px; margin-bottom: 15px; color: var(--wsp-gold); }
.music-embed__provider .link-icon__svg { width: 20px; height: 20px; }

.photo-gallery { columns: 3 280px; column-gap: 20px; }
.photo-card { break-inside: avoid; overflow: hidden; margin: 0 0 20px; border: 1px solid var(--wsp-line); border-radius: var(--radius); background: var(--wsp-surface); }
.photo-card img { width: 100%; height: auto; }
.photo-card figcaption { padding: 17px 18px 19px; }
.photo-card figcaption p { margin: 0; color: var(--wsp-muted); font-size: .86rem; }
.photo-card figcaption small { display: block; margin-top: 8px; color: var(--wsp-gold); font-size: .66rem; letter-spacing: .04em; }
.photo-card figcaption a:hover { text-decoration: underline; }
.empty-public { padding: 45px; border: 1px solid var(--wsp-line); border-radius: var(--radius); background: var(--wsp-surface); }
.empty-public h2 { margin-top: 0; font-family: var(--serif); font-weight: 500; }
.footer-links--social a { align-items: flex-start; }

@media (max-width: 940px) {
    .music-embed-grid { grid-template-columns: 1fr; }
    .social-card-grid { grid-template-columns: 1fr; }
    .music-embed--link { min-height: 300px; }
}

@media (max-width: 680px) {
    .hero__logo { max-width: 300px; }
    .music-embed--spotify { padding: 15px; }
    .music-embed iframe { height: 352px; }
    .music-embed--link { grid-template-columns: 1fr; }
    .music-embed__art { aspect-ratio: 16/10; }
    .social-card { min-height: 110px; padding: 17px; grid-template-columns: auto minmax(0,1fr) auto; }
    .social-card .link-icon { width: 38px; height: 38px; }
    .photo-gallery { columns: 1; }
}

/* Version 2.2: dedicated editable links hub */
.page-hero--compact { padding-block: clamp(82px, 10vw, 135px) clamp(58px, 7vw, 90px); }
.social-card-grid--links .social-card { min-height: 138px; }
.closing-panel { display: flex; align-items: center; justify-content: space-between; gap: 32px; padding: clamp(28px, 5vw, 58px); border: 1px solid var(--wsp-line); border-radius: var(--radius-lg); background: radial-gradient(circle at 90% 20%, rgba(214,166,46,.12), transparent 34%), var(--wsp-surface); }
.closing-panel h2 { max-width: 760px; margin: 0 0 12px; font-family: var(--serif); font-size: clamp(2rem, 4vw, 4rem); font-weight: 500; letter-spacing: -.04em; line-height: .98; }
.closing-panel p:not(.eyebrow) { max-width: 720px; margin: 0; color: var(--wsp-muted); }
.closing-panel .button { flex: 0 0 auto; }
@media (max-width: 760px) {
    .closing-panel { display: grid; }
    .closing-panel .button { width: 100%; }
}


@media (max-width: 460px) {
    .footer-link-groups { grid-template-columns: 1fr; }
}

/* Version 2.4.0: credit artwork cards and muted video hover previews */
