/* ================================================================
   SIGNAL SCULPTÉ — FRÉQUENCE MAXIMALE
   CIRCUS-style motion graphic direction
   Type as image · Color blocks · Scale-first composition
   Black · Volt #BDFF00 · Crimson #1A0808 · White #F2F0EB
   Fonts: Bebas Neue · Syne · DM Mono
   ================================================================ */

:root {
  --bk: #0a0906;
  --wh: #f2f0eb;
  --vt: #bdff00;
  --cr: #1a0808;
  --rule: rgba(242, 240, 235, 0.1);
  --rule-l: rgba(10, 9, 6, 0.14);
}

/* ── Reset ─────────────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  padding: 0;
  font-family: "Syne", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--wh);
  background: var(--bk);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  cursor: none;
}
a {
  color: inherit;
  text-decoration: none;
}
img,
svg {
  display: block;
  max-width: 100%;
}
button,
input,
select,
textarea {
  font: inherit;
}

/* ── Mono util ─────────────────────────────────────────────────── */
.mono {
  font-family: "DM Mono", monospace;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── Skip ──────────────────────────────────────────────────────── */
.skip {
  position: absolute;
  left: 16px;
  top: -50px;
  z-index: 300;
  background: var(--vt);
  color: var(--bk);
  padding: 8px 14px;
  font-family: "DM Mono", monospace;
  font-size: 0.7rem;
}
.skip:focus {
  top: 16px;
}

/* ── Custom cursor ─────────────────────────────────────────────── */
.cur-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--vt);
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 200ms;
}
.cur-ring {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--vt);
  position: fixed;
  z-index: 9998;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: 0;
  transition:
    width 300ms cubic-bezier(0.22, 1, 0.36, 1),
    height 300ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 200ms,
    border-color 200ms;
}
.body-cursor .cur-dot,
.body-cursor .cur-ring {
  opacity: 1;
}
.cur-ring.hov {
  width: 62px;
  height: 62px;
  border-color: rgba(189, 255, 0, 0.45);
}

/* ── HEADER ────────────────────────────────────────────────────── */
.hdr {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 20px 48px;
  transition:
    background 400ms,
    border-color 400ms;
}
.hdr.solid {
  background: rgba(10, 9, 6, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(189, 255, 0, 0.1);
}
.hdr-logo {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--vt);
  line-height: 1;
}
.hdr-nav {
  margin-left: auto;
  display: flex;
  gap: 36px;
}
.hdr-nav a {
  font-family: "DM Mono", monospace;
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(242, 240, 235, 0.3);
  transition: color 220ms;
}
.hdr-nav a:hover {
  color: var(--wh);
}
.hdr-loc {
  color: rgba(242, 240, 235, 0.2);
  margin-left: 20px;
}

/* ── HERO ──────────────────────────────────────────────────────── */
.pg-hero {
  min-height: 100svh;
  background:
    linear-gradient(
      160deg,
      rgba(10, 9, 6, 0.78) 0%,
      rgba(10, 9, 6, 0.92) 60%,
      rgba(10, 9, 6, 0.98) 100%
    ),
    url("https://images.pexels.com/photos/5657664/pexels-photo-5657664.jpeg?w=1920&q=80")
      center 30% / cover no-repeat;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

/* SVG ring — centered absolutely */
.hero-svg {
  position: absolute;
  width: min(75vmin, 660px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  pointer-events: none;
}
.svg-track {
  stroke: rgba(189, 255, 0, 0.08);
  stroke-width: 1;
}
.svg-live {
  stroke: var(--vt);
  stroke-width: 1.5;
  stroke-dasharray: 1382; /* 2 * pi * 220 */
  stroke-dashoffset: 1382;
  transform-origin: center;
  transform: rotate(-90deg);
}
.svg-dot {
  fill: var(--vt);
  opacity: 0;
}

/* Type */
.hero-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 130px 56px 60px;
  position: relative;
  z-index: 2;
}
.hero-tag {
  color: rgba(242, 240, 235, 0.28);
  display: block;
  margin-bottom: 32px;
}
.hero-h1 {
  margin: 0;
}
.h1-row {
  display: block;
  overflow: hidden;
}
.h1-word {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(108px, 18vw, 268px);
  font-weight: 400;
  line-height: 0.84;
  letter-spacing: -0.01em;
  color: var(--wh);
  display: inline-block;
}
.h1-volt {
  color: var(--vt);
}
.h1-row2 {
  margin-left: 10%;
}

.hero-cta {
  position: absolute;
  bottom: 74px;
  right: 56px;
  z-index: 2;
  font-family: "DM Mono", monospace;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--vt);
  border: 1px solid var(--vt);
  padding: 13px 24px;
  transition:
    background 200ms,
    color 200ms;
}
.hero-cta:hover {
  background: var(--vt);
  color: var(--bk);
}

/* ── TICKERS ───────────────────────────────────────────────────── */
.ticker-bar {
  height: 48px;
  overflow: hidden;
  flex-shrink: 0;
}
.tb-volt {
  background: var(--vt);
}
.tb-dark {
  background: #121110;
  border-top: 1px solid rgba(242, 240, 235, 0.06);
  border-bottom: 1px solid rgba(242, 240, 235, 0.06);
}
.ticker-track {
  display: flex;
  align-items: center;
  height: 100%;
  white-space: nowrap;
  animation: tick 30s linear infinite;
  will-change: transform;
}
.ticker-track span {
  font-family: "DM Mono", monospace;
  font-size: 0.64rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bk);
  padding: 0 8px;
  flex-shrink: 0;
}
.tb-dark .ticker-track span {
  color: rgba(242, 240, 235, 0.3);
}
.tt-fwd {
  animation: tick 30s linear infinite;
}
.tt-rev {
  animation: tick 36s linear infinite reverse;
}
@keyframes tick {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-33.333%);
  }
}

/* ── STATEMENT — white ─────────────────────────────────────────── */
.pg-statement {
  background: var(--wh);
  color: var(--bk);
  padding: 100px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 80vh;
}
.stmt-wrap {
  max-width: 1380px;
  margin: 0 auto;
  width: 100%;
}
.stmt-main {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(60px, 9.5vw, 142px);
  font-weight: 400;
  line-height: 0.87;
  letter-spacing: -0.01em;
  color: var(--bk);
  margin: 0 0 12px;
}
.stmt-em {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(44px, 6.8vw, 102px);
  font-weight: 400;
  line-height: 0.87;
  letter-spacing: -0.01em;
  color: rgba(10, 9, 6, 0.45);
  margin: 0;
}
.stmt-em em {
  font-style: normal;
  color: var(--bk);
}
.stmt-meta {
  max-width: 1380px;
  margin: 72px auto 0;
  width: 100%;
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid var(--rule-l);
}
.stmt-meta .mono {
  color: rgba(10, 9, 6, 0.38);
}

/* ── SERVICES — black ──────────────────────────────────────────── */
.pg-services {
  background:
    linear-gradient(rgba(10, 9, 6, 0.86) 0%, rgba(10, 9, 6, 0.94) 100%),
    url("https://images.pexels.com/photos/7087607/pexels-photo-7087607.jpeg?w=1920&q=80")
      center 40% / cover no-repeat;
  color: var(--wh);
}
.svc-hd {
  max-width: 1380px;
  margin: 0 auto;
  padding: 80px 56px 24px;
  border-bottom: 1px solid var(--rule);
}
.svc-label {
  color: var(--vt);
}
.svc-list {
}
.svc-row {
  display: grid;
  grid-template-columns: 80px 1fr 340px auto;
  align-items: center;
  gap: 0 52px;
  padding: 56px 56px;
  max-width: 1380px;
  margin: 0 auto;
  border-bottom: 1px solid var(--rule);
  transition: background 240ms;
}
.svc-row:hover {
  background: rgba(189, 255, 0, 0.03);
}
.sr-idx {
  color: rgba(189, 255, 0, 0.45);
  font-size: 0.6rem;
  align-self: start;
  padding-top: 12px;
}
.sr-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(72px, 11vw, 162px);
  font-weight: 400;
  line-height: 0.84;
  letter-spacing: -0.01em;
  color: var(--wh);
  margin: 0;
  transition: color 300ms;
}
.svc-row:hover .sr-title {
  color: var(--vt);
}
.sr-body p {
  font-size: 0.84rem;
  color: rgba(242, 240, 235, 0.45);
  margin: 0 0 14px;
}
.sr-specs {
  border-top: 1px solid var(--rule);
}
.sr-specs > div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(242, 240, 235, 0.05);
  font-size: 0.78rem;
  color: rgba(242, 240, 235, 0.5);
}
.sr-specs dt {
  font-size: 0.58rem;
  color: rgba(189, 255, 0, 0.4);
}
.sr-specs dd {
  margin: 0;
}
.sr-cta {
  font-family: "DM Mono", monospace;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid rgba(242, 240, 235, 0.2);
  color: var(--wh);
  padding: 12px 22px;
  white-space: nowrap;
  transition:
    background 200ms,
    color 200ms,
    border-color 200ms;
}
.sr-cta:hover {
  background: var(--vt);
  color: var(--bk);
  border-color: var(--vt);
}

/* ── RÉFÉRENCES — VOLT ─────────────────────────────────────────── */
.pg-refs {
  background: var(--vt);
  color: var(--bk);
}
.refs-inner {
  max-width: 1380px;
  margin: 0 auto;
  padding: 100px 56px;
}
.refs-hd {
  display: flex;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 56px;
  padding-bottom: 24px;
  border-bottom: 2px solid rgba(10, 9, 6, 0.25);
}
.refs-num {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(80px, 10vw, 148px);
  font-weight: 400;
  line-height: 1;
  color: var(--bk);
}
.refs-hd-right {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 12px;
}
.refs-label {
  color: rgba(10, 9, 6, 0.6);
}
.refs-years {
  color: rgba(10, 9, 6, 0.35);
}
.refs-tbl {
  width: 100%;
  border-collapse: collapse;
}
.refs-tbl th,
.refs-tbl td {
  text-align: left;
  padding: 13px 16px 13px 0;
  border-bottom: 1px solid rgba(10, 9, 6, 0.2);
  color: var(--bk);
}
.refs-tbl th {
  font-family: "DM Mono", monospace;
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(10, 9, 6, 0.45);
}
.refs-tbl tbody tr {
  transition: background 150ms;
}
.refs-tbl tbody tr:hover {
  background: rgba(10, 9, 6, 0.08);
}
.refs-yr {
  text-align: right !important;
  width: 72px;
}
.refs-note {
  margin-top: 20px;
  color: rgba(10, 9, 6, 0.35);
  display: block;
}

/* ── PROCESS — black, ghost numbers ───────────────────────────── */
.pg-process {
  background:
    linear-gradient(rgba(10, 9, 6, 0.91) 0%, rgba(10, 9, 6, 0.96) 100%),
    url("https://images.pexels.com/photos/164927/pexels-photo-164927.jpeg?w=1920&q=80")
      center / cover no-repeat fixed;
  color: var(--wh);
}
.proc-hd {
  max-width: 1380px;
  margin: 0 auto;
  padding: 80px 56px 24px;
  border-bottom: 1px solid var(--rule);
}
.proc-label {
  color: var(--vt);
}
.proc-item {
  display: grid;
  grid-template-columns: 180px 1fr;
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 56px;
  border-bottom: 1px solid var(--rule);
  align-items: center;
}
.pi-num {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(108px, 15vw, 220px);
  font-weight: 400;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(189, 255, 0, 0.14);
  display: block;
  transition: -webkit-text-stroke-color 550ms;
  user-select: none;
}
.proc-item.is-lit .pi-num {
  -webkit-text-stroke-color: var(--vt);
}
.pi-body {
  padding: 52px 0;
  border-left: 1px solid var(--rule);
  padding-left: 52px;
}
.pi-body h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  margin: 0 0 10px;
  color: var(--wh);
}
.pi-body p {
  font-size: 0.84rem;
  color: rgba(242, 240, 235, 0.4);
  margin: 0;
  max-width: 50ch;
}

/* ── BOUTIQUE — crimson ────────────────────────────────────────── */
.pg-boutique {
  background: var(--cr);
  color: var(--wh);
}
.bout-inner {
  max-width: 1380px;
  margin: 0 auto;
  padding: 100px 56px;
}
.bout-hd {
  display: flex;
  align-items: baseline;
  gap: 24px;
  margin-bottom: 60px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(242, 240, 235, 0.12);
}
.bout-label {
  color: rgba(242, 240, 235, 0.6);
}
.bout-sub {
  color: rgba(242, 240, 235, 0.28);
  margin-left: auto;
}
.bout-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(242, 240, 235, 0.12);
}
.bout-col {
  display: flex;
  flex-direction: column;
  padding: 44px 40px 44px 0;
  border-right: 1px solid rgba(242, 240, 235, 0.1);
}
.bout-col:last-child {
  border-right: none;
  padding-right: 0;
}
.bout-col:not(:first-child) {
  padding-left: 40px;
}
.bout-col-em {
  background: rgba(242, 240, 235, 0.04);
}
.bc-name {
  display: block;
  color: rgba(242, 240, 235, 0.5);
  margin-bottom: 6px;
}
.bc-tag {
  display: inline-block;
  background: var(--vt);
  color: var(--bk);
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  padding: 2px 8px;
  margin-bottom: 18px;
}
.bc-rows {
  flex: 1;
  border-top: 1px solid rgba(242, 240, 235, 0.1);
  margin-bottom: 24px;
}
.bc-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(242, 240, 235, 0.08);
  font-size: 0.82rem;
  color: rgba(242, 240, 235, 0.65);
}
.bc-row .mono {
  font-size: 0.66rem;
  white-space: nowrap;
  color: var(--wh);
}
.bc-cta {
  font-family: "DM Mono", monospace;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid rgba(242, 240, 235, 0.3);
  padding: 10px 18px;
  text-align: center;
  color: var(--wh);
  transition:
    background 200ms,
    color 200ms,
    border-color 200ms;
}
.bc-cta:hover {
  background: var(--wh);
  color: var(--bk);
  border-color: var(--wh);
}
.bc-cta-em {
  background: var(--vt);
  border-color: var(--vt);
  color: var(--bk);
}
.bc-cta-em:hover {
  background: #d4ff33;
  border-color: #d4ff33;
}

/* ── CONTACT — white ───────────────────────────────────────────── */
.pg-contact {
  background: var(--wh);
  color: var(--bk);
}
.ctc-inner {
  max-width: 1380px;
  margin: 0 auto;
  padding: 100px 56px;
}
.ctc-hd {
  margin-bottom: 56px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--rule-l);
}
.ctc-label {
  color: rgba(10, 9, 6, 0.5);
}
.ctc-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 0 80px;
  align-items: start;
}
.ctc-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(56px, 7vw, 108px);
  font-weight: 400;
  line-height: 0.85;
  letter-spacing: -0.01em;
  color: var(--bk);
  margin: 0 0 20px;
}
.ctc-note {
  color: rgba(10, 9, 6, 0.4);
  display: block;
}
.ctc-form {
  border-top: 1px solid var(--rule-l);
}
.cf-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.cf-field {
  border-bottom: 1px solid var(--rule-l);
  padding: 18px 0;
}
.cf-full {
  grid-column: 1 / 3;
}
.cf-field label {
  display: block;
  color: rgba(10, 9, 6, 0.38);
  margin-bottom: 7px;
}
.cf-field input,
.cf-field select,
.cf-field textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid transparent;
  outline: none;
  font-size: 0.9rem;
  color: var(--bk);
  padding: 4px 0;
  transition: border-color 220ms;
}
.cf-field input:focus,
.cf-field select:focus,
.cf-field textarea:focus {
  border-color: var(--bk);
}
.cf-field textarea {
  resize: vertical;
}
.cf-footer {
  padding: 24px 0 0;
  display: flex;
  align-items: center;
  gap: 24px;
}
.cf-submit {
  font-family: "DM Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--bk);
  color: var(--wh);
  border: none;
  padding: 14px 32px;
  cursor: pointer;
  transition:
    background 200ms,
    color 200ms;
}
.cf-submit:hover {
  background: var(--vt);
  color: var(--bk);
}
.cf-hint {
  color: rgba(10, 9, 6, 0.3);
}
.cf-confirm {
  margin-top: 14px;
  font-family: "DM Mono", monospace;
  font-size: 0.7rem;
  color: var(--bk);
}
.cf-confirm[hidden] {
  display: none;
}

/* ── FOOTER ────────────────────────────────────────────────────── */
.ftr {
  background: var(--bk);
  color: var(--wh);
  border-top: 1px solid rgba(242, 240, 235, 0.06);
  padding: 44px 0;
}
.ftr-inner {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 56px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.ftr-name {
  display: block;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.04em;
}
.ftr-name em {
  font-style: normal;
  color: var(--vt);
}
.ftr-sub {
  display: block;
  margin-top: 2px;
  color: rgba(242, 240, 235, 0.22);
}
.ftr-email {
  font-size: 0.84rem;
  border-bottom: 1px solid rgba(242, 240, 235, 0.2);
  transition:
    color 200ms,
    border-color 200ms;
}
.ftr-email:hover {
  color: var(--vt);
  border-color: var(--vt);
}
.ftr-legal {
  text-align: right;
  color: rgba(242, 240, 235, 0.2);
  margin: 0;
}

/* ── GSAP fallback ─────────────────────────────────────────────── */
.js-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}
.js-reveal.is-v {
  opacity: 1;
  transform: none;
}

/* ── HERO atmosphere ───────────────────────────────────────────── */
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background:
    radial-gradient(
      ellipse 55% 50% at 92% 6%,
      rgba(189, 120, 0, 0.11) 0%,
      transparent 65%
    ),
    radial-gradient(
      ellipse 35% 45% at 6% 94%,
      rgba(160, 90, 0, 0.07) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 70% 35% at 50% 52%,
      rgba(189, 255, 0, 0.02) 0%,
      transparent 70%
    );
}
.hero-spectrum {
  position: absolute;
  bottom: 48px;
  left: 0;
  width: 100%;
  height: 180px;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 600ms 400ms;
}
.hero-spectrum.is-ready {
  opacity: 0.52;
}

/* ── WORK — featured releases ──────────────────────────────────── */
.pg-work {
  background: var(--wh);
  color: var(--bk);
}
.wk-hd {
  max-width: 1380px;
  margin: 0 auto;
  padding: 80px 56px 32px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  border-bottom: 1px solid var(--rule-l);
}
.wk-label {
  color: rgba(10, 9, 6, 0.45);
}
.wk-more {
  color: rgba(10, 9, 6, 0.4);
  transition: color 220ms;
}
.wk-more:hover {
  color: var(--bk);
}
.wk-grid {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 56px 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 2px;
  border-top: none;
}
.wk-card {
  display: flex;
  flex-direction: column;
  padding-top: 2px;
}
.wk-cover {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--bk);
}
.wk-art {
  width: 100%;
  height: 100%;
  display: block;
  transition: transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}
.wk-card:hover .wk-art {
  transform: scale(1.025);
}
.wk-svc-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(10, 9, 6, 0.75);
  color: var(--vt);
  font-size: 0.55rem;
  letter-spacing: 0.12em;
  padding: 4px 9px;
  backdrop-filter: blur(8px);
}
.wk-meta {
  padding: 16px 0 28px;
  border-top: 1px solid var(--rule-l);
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.wk-card:not(:last-child) .wk-meta {
  border-right: none;
}
.wk-artist-name {
  font-family: "Syne", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--bk);
  margin: 0;
}
.wk-release {
  font-size: 0.6rem;
  color: rgba(10, 9, 6, 0.55);
  letter-spacing: 0.1em;
}
.wk-detail {
  font-size: 0.58rem;
  color: rgba(10, 9, 6, 0.3);
  letter-spacing: 0.08em;
}

/* ── STUDIO PROOF STRIP ────────────────────────────────────────── */
.proof-strip {
  background: #0e0d0b;
  border-top: 1px solid rgba(189, 255, 0, 0.08);
  border-bottom: 1px solid rgba(189, 255, 0, 0.08);
}
.proof-inner {
  max-width: 1380px;
  margin: 0 auto;
  padding: 40px 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 2px;
}
.proof-panel {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0 36px 0 0;
  border-right: 1px solid rgba(189, 255, 0, 0.08);
}
.proof-panel:last-child {
  border-right: none;
  padding-right: 0;
}
.proof-panel:not(:first-child) {
  padding-left: 36px;
  padding-right: 0;
}
.proof-panel:not(:first-child):not(:last-child) {
  padding-right: 36px;
}
.proof-visual {
  background: rgba(189, 255, 0, 0.03);
  border: 1px solid rgba(189, 255, 0, 0.1);
  overflow: hidden;
}
.proof-svg {
  display: block;
  width: 100%;
}
.proof-label {
  font-size: 0.58rem;
  color: rgba(189, 255, 0, 0.38);
  letter-spacing: 0.1em;
}

/* ── Responsive (new sections) ─────────────────────────────────── */
/* ── Responsive ────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .svc-row {
    grid-template-columns: 60px 1fr;
  }
  .sr-cta {
    display: none;
  }
  .ctc-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .bout-grid {
    grid-template-columns: 1fr;
  }
  .bout-col,
  .bout-col:not(:first-child) {
    border-right: none;
    border-bottom: 1px solid rgba(242, 240, 235, 0.1);
    padding: 32px 0;
  }
  .proc-item {
    grid-template-columns: 120px 1fr;
  }
  .ftr-inner {
    grid-template-columns: 1fr;
  }
  .ftr-legal {
    text-align: left;
  }
}
@media (max-width: 740px) {
  .pg-hero,
  .pg-statement,
  .pg-refs .refs-inner,
  .pg-services .svc-hd,
  .svc-row,
  .proc-hd,
  .proc-item,
  .bout-inner,
  .ctc-inner {
    padding-left: 24px;
    padding-right: 24px;
  }
  .hdr {
    padding: 16px 24px;
  }
  .hdr-nav {
    display: none;
  }
  .hero-body {
    padding-left: 24px;
    padding-right: 24px;
  }
  .hero-cta {
    right: 24px;
  }
  .cf-duo {
    grid-template-columns: 1fr;
  }
  .cf-full {
    grid-column: 1;
  }
  .stmt-meta {
    flex-direction: column;
    gap: 12px;
  }

  .wk-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }
  .proof-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .proof-panel,
  .proof-panel:not(:first-child),
  .proof-panel:not(:first-child):not(:last-child) {
    padding: 0;
    border-right: none;
    border-bottom: 1px solid rgba(189, 255, 0, 0.08);
    padding-bottom: 24px;
  }
  .proof-panel:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
  .wk-hd {
    padding-left: 24px;
    padding-right: 24px;
  }
  .wk-grid {
    padding-left: 24px;
    padding-right: 24px;
  }
  .proof-inner {
    padding-left: 24px;
    padding-right: 24px;
  }
}
