:root {
  --ink: #0C0D0E;
  --blue-charcoal: #111A21;
  --ivory: #E2DED3;
  --ivory-soft: #D8D0BE;
  --amber: #C58A3B;
  --border: rgba(226, 222, 211, 0.38);
  --page-pad: clamp(24px, 4vw, 72px);
  --content-max: 760px;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--ink);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--ivory);
  font-family: "Barlow", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  overflow: hidden;
  background: var(--ink);
}

.hero__image {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg,
      rgba(12, 13, 14, 0.94) 0%,
      rgba(12, 13, 14, 0.87) 29%,
      rgba(12, 13, 14, 0.60) 53%,
      rgba(12, 13, 14, 0.24) 76%,
      rgba(12, 13, 14, 0.22) 100%),
    linear-gradient(180deg,
      rgba(17, 26, 33, 0.15) 0%,
      rgba(12, 13, 14, 0.06) 56%,
      rgba(12, 13, 14, 0.62) 100%);
}

.hero__inner {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  padding: clamp(26px, 3.2vw, 46px) var(--page-pad) clamp(36px, 5vw, 72px);
}

.hero__brand {
  width: fit-content;
}

.hero__wordmark {
  display: block;
  width: clamp(116px, 10.5vw, 170px);
  height: auto;
}

.hero__copy {
  width: min(62vw, var(--content-max));
  margin-top: auto;
  margin-bottom: auto;
  padding-top: clamp(40px, 7vh, 110px);
}

.hero__kicker {
  margin: 0 0 18px;
  color: var(--amber);
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(14px, 1.05vw, 18px);
  font-weight: 700;
  letter-spacing: 0.095em;
  line-height: 1.15;
  text-transform: uppercase;
}

.hero__title {
  max-width: 11.4ch;
  margin: 0;
  font-family: "Anton", sans-serif;
  font-size: clamp(58px, 6.7vw, 118px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  text-wrap: balance;
}

.hero__body {
  max-width: 650px;
  margin: clamp(24px, 3vh, 36px) 0 0;
  color: rgba(226, 222, 211, 0.92);
  font-size: clamp(18px, 1.45vw, 25px);
  font-weight: 400;
  line-height: 1.42;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: clamp(28px, 3.5vh, 42px);
}

.button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border: 1px solid transparent;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.035em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

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

.button--primary {
  background: var(--amber);
  color: var(--ink);
}

.button--primary:hover {
  background: #d29a4d;
}

.button--secondary {
  border-color: var(--border);
  background: rgba(12, 13, 14, 0.24);
  color: var(--ivory);
  backdrop-filter: blur(2px);
}

.button--secondary:hover {
  border-color: rgba(226, 222, 211, 0.66);
  background: rgba(12, 13, 14, 0.48);
}

.hero__microcopy {
  margin: 22px 0 0;
  color: rgba(226, 222, 211, 0.66);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

@media (max-width: 900px) {
  .hero__image {
    object-position: 64% center;
  }

  .hero__overlay {
    background:
      linear-gradient(90deg,
        rgba(12, 13, 14, 0.92) 0%,
        rgba(12, 13, 14, 0.74) 48%,
        rgba(12, 13, 14, 0.32) 100%),
      linear-gradient(180deg,
        rgba(12, 13, 14, 0.10) 0%,
        rgba(12, 13, 14, 0.16) 54%,
        rgba(12, 13, 14, 0.76) 100%);
  }

  .hero__copy {
    width: min(78vw, 690px);
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 100svh;
  }

  .hero__inner {
    min-height: 100svh;
    padding: 24px 20px 28px;
  }

  .hero__wordmark {
    width: 124px;
  }

  .hero__image {
    object-position: 67% center;
  }

  .hero__overlay {
    background:
      linear-gradient(180deg,
        rgba(12, 13, 14, 0.34) 0%,
        rgba(12, 13, 14, 0.38) 22%,
        rgba(12, 13, 14, 0.72) 50%,
        rgba(12, 13, 14, 0.94) 100%),
      linear-gradient(90deg,
        rgba(12, 13, 14, 0.70) 0%,
        rgba(12, 13, 14, 0.28) 100%);
  }

  .hero__copy {
    width: 100%;
    margin-top: auto;
    margin-bottom: 0;
    padding-top: 44vh;
  }

  .hero__kicker {
    max-width: 29ch;
    margin-bottom: 13px;
    font-size: 13px;
  }

  .hero__title {
    max-width: 10.8ch;
    font-size: clamp(51px, 15vw, 72px);
    line-height: 0.96;
  }

  .hero__body {
    max-width: 36ch;
    margin-top: 20px;
    font-size: 17px;
    line-height: 1.38;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 24px;
  }

  .button {
    width: 100%;
    min-height: 54px;
    padding: 0 18px;
    font-size: 17px;
  }

  .hero__microcopy {
    max-width: 38ch;
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.3;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button {
    transition: none;
  }
}

/* Selected Work */
.section-shell {
  width: min(1360px, calc(100% - (var(--page-pad) * 2)));
  margin-inline: auto;
}

.selected-work {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 7%, rgba(36, 64, 71, 0.18), transparent 28%),
    linear-gradient(180deg, #0C0D0E 0%, #10161A 38%, #0C0D0E 100%);
  border-top: 1px solid rgba(226, 222, 211, 0.08);
}

.selected-work__intro {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-top: clamp(110px, 13vw, 210px);
  padding-bottom: clamp(80px, 8vw, 130px);
}

.selected-work__intro::before {
  content: "";
  position: absolute;
  inset: clamp(18px, 1.8vw, 28px) 0 clamp(16px, 1.4vw, 22px) 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.00) 0%, rgba(255,255,255,0.032) 22%, rgba(255,255,255,0.00) 58%),
    radial-gradient(74% 118% at 88% 14%, rgba(197,138,59,0.115) 0%, rgba(197,138,59,0.038) 34%, transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,0.018) 0%, rgba(255,255,255,0.00) 38%);
  pointer-events: none;
}

.selected-work__intro::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(226,222,211,0) 0%, rgba(226,222,211,0.16) 12%, rgba(226,222,211,0.08) 100%);
  pointer-events: none;
}

.selected-work__graphic {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

.selected-work__ghost-word {
  position: absolute;
  top: clamp(22px, 2vw, 34px);
  right: clamp(-34px, -1.5vw, -12px);
  color: rgba(226, 222, 211, 0.082);
  font-family: "Anton", sans-serif;
  font-size: clamp(205px, 25vw, 420px);
  line-height: 0.78;
  letter-spacing: -0.06em;
  text-transform: uppercase;
  user-select: none;
}

.selected-work__frame {
  position: absolute;
  top: clamp(34px, 3vw, 48px);
  right: clamp(8px, 1.3vw, 18px);
  width: clamp(170px, 23vw, 340px);
  height: clamp(110px, 16vw, 190px);
  border-top: 1px solid rgba(226, 222, 211, 0.20);
  border-right: 1px solid rgba(226, 222, 211, 0.20);
}

.selected-work__frame::before,
.selected-work__frame::after {
  content: "";
  position: absolute;
  background: rgba(197, 138, 59, 0.72);
}

.selected-work__frame::before {
  top: -1px;
  left: 0;
  width: clamp(26px, 3vw, 42px);
  height: 1px;
}

.selected-work__frame::after {
  top: 0;
  right: -1px;
  width: 1px;
  height: clamp(24px, 3vw, 40px);
}

.selected-work__graphic::after {
  content: "";
  position: absolute;
  right: clamp(34px, 5vw, 82px);
  bottom: clamp(24px, 3.2vw, 52px);
  width: clamp(140px, 18vw, 280px);
  height: 1px;
  background: linear-gradient(90deg, rgba(197, 138, 59, 0.60), rgba(226, 222, 211, 0.12) 46%, transparent 100%);
  opacity: .9;
}


.section-kicker {
  margin: 0 0 18px;
  color: var(--amber);
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(14px, 1vw, 17px);
  font-weight: 700;
  letter-spacing: 0.095em;
  text-transform: uppercase;
}

.section-title {
  max-width: 8ch;
  margin: 0;
  font-family: "Anton", sans-serif;
  font-size: clamp(72px, 8.4vw, 152px);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

.section-lead {
  max-width: 640px;
  margin: 30px 0 0;
  color: rgba(226, 222, 211, 0.72);
  font-size: clamp(18px, 1.35vw, 23px);
  line-height: 1.45;
}

.project-list {
  width: min(1480px, 100%);
  margin-inline: auto;
}

.project {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  min-height: min(920px, 92svh);
  align-items: center;
  gap: clamp(48px, 7vw, 118px);
  padding: clamp(90px, 9vw, 150px) var(--page-pad);
  border-top: 1px solid rgba(226, 222, 211, 0.10);
}

.project--right {
  grid-template-columns: minmax(360px, 0.95fr) minmax(0, 1.05fr);
}

.project--right .project__media {
  grid-column: 2;
  grid-row: 1;
}

.project--right .project__content {
  grid-column: 1;
  grid-row: 1;
}

.project__media {
  position: relative;
  width: 100%;
  max-width: 700px;
}

.project__media::before {
  content: "";
  position: absolute;
  inset: -5%;
  z-index: 0;
  background: radial-gradient(circle, rgba(197, 138, 59, 0.09), transparent 66%);
  filter: blur(24px);
  pointer-events: none;
}

.project__artwork {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: #111A21;
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.38);
}

.project__content {
  max-width: 620px;
}

.project__index {
  margin: 0 0 clamp(48px, 7vw, 94px);
  color: rgba(226, 222, 211, 0.23);
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(58px, 6vw, 108px);
  font-weight: 700;
  line-height: 0.75;
}

.project__artist {
  margin: 0 0 12px;
  color: var(--amber);
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(16px, 1.35vw, 22px);
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

.project__title {
  margin: 0;
  font-family: "Anton", sans-serif;
  font-size: clamp(56px, 6.1vw, 108px);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.018em;
  text-transform: uppercase;
}

.project__release {
  margin: 22px 0 0;
  color: rgba(226, 222, 211, 0.70);
  font-size: clamp(17px, 1.25vw, 21px);
}

.project__release em {
  color: var(--ivory);
  font-style: normal;
}

.project__role {
  margin: 15px 0 0;
  color: var(--ivory);
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(17px, 1.3vw, 22px);
  font-weight: 600;
  letter-spacing: 0.015em;
}

.audio-preview {
  display: grid;
  grid-template-columns: 54px minmax(0, auto) minmax(90px, 1fr) auto;
  align-items: center;
  gap: 16px;
  margin-top: clamp(44px, 5vw, 72px);
  padding-top: 22px;
  border-top: 1px solid rgba(226, 222, 211, 0.18);
}

.audio-preview__play {
  width: 54px;
  height: 54px;
  padding: 0 0 0 3px;
  border: 1px solid rgba(226, 222, 211, 0.28);
  border-radius: 50%;
  background: transparent;
  color: var(--ivory);
  font-size: 16px;
  opacity: 0.60;
}

.audio-preview__body {
  display: flex;
  min-width: 128px;
  flex-direction: column;
  gap: 2px;
}

.audio-preview__label,
.audio-preview__status {
  color: rgba(226, 222, 211, 0.46);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.audio-preview__track {
  overflow: hidden;
  color: var(--ivory);
  font-size: 16px;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.audio-preview__progress {
  position: relative;
  height: 1px;
  background: rgba(226, 222, 211, 0.16);
}

.audio-preview__progress span {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  background: var(--amber);
}

.audio-preview__status {
  white-space: nowrap;
}

.audio-preview__audio {
  display: none;
}

.audio-preview__play:not(:disabled) {
  cursor: pointer;
  opacity: 0.88;
  transition: border-color 160ms ease, background-color 160ms ease, color 160ms ease, opacity 160ms ease, transform 160ms ease;
}

.audio-preview__play:not(:disabled):hover {
  border-color: rgba(197, 138, 59, .82);
  color: var(--amber);
  opacity: 1;
  transform: scale(1.03);
}

.audio-preview.is-playing .audio-preview__play {
  border-color: rgba(197, 138, 59, .76);
  background: rgba(197, 138, 59, .10);
  color: var(--amber);
  opacity: 1;
}

.audio-preview.is-playing .audio-preview__status {
  color: rgba(226, 222, 211, .74);
}

.audio-preview.is-playing .audio-preview__progress span {
  min-width: 2px;
}

@media (max-width: 980px) {
  .project,
  .project--right {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 54px;
  }

  .project--right .project__media,
  .project--right .project__content {
    grid-column: auto;
    grid-row: auto;
  }

  .project__media {
    max-width: 660px;
  }

  .project__content {
    max-width: 720px;
  }

  .project__index {
    margin-bottom: 40px;
  }
}

@media (max-width: 640px) {
  .selected-work__intro {
    padding-top: 96px;
    padding-bottom: 72px;
  }

  .selected-work__ghost-word {
    top: 28px;
    right: -18px;
    font-size: clamp(145px, 36vw, 195px);
  }

  .selected-work__frame {
    top: 32px;
    right: 2px;
    width: 136px;
    height: 92px;
  }

  .section-shell {
    width: calc(100% - 40px);
  }

  .section-title {
    font-size: clamp(64px, 21vw, 88px);
  }

  .section-lead {
    margin-top: 24px;
    font-size: 17px;
  }

  .project {
    gap: 38px;
    padding: 72px 20px 86px;
  }

  .project__index {
    margin-bottom: 34px;
    font-size: 64px;
  }

  .project__title {
    font-size: clamp(52px, 15vw, 72px);
  }

  .project__release {
    margin-top: 17px;
    font-size: 17px;
  }

  .project__role {
    font-size: 17px;
  }

  .audio-preview {
    grid-template-columns: 48px minmax(0, 1fr) auto;
    gap: 13px;
    margin-top: 38px;
  }

  .audio-preview__play {
    width: 48px;
    height: 48px;
  }

  .audio-preview__progress {
    display: none;
  }

  .audio-preview__track {
    font-size: 15px;
  }
}

/* Contribution — documentary / visual-led */
.contribution {
  position: relative;
  background: #0C0D0E;
  border-top: 1px solid rgba(226, 222, 211, 0.10);
}

.contribution__frame {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(420px, 0.84fr);
  min-height: 92svh;
}

.contribution__visual {
  position: relative;
  min-height: 92svh;
  margin: 0;
  overflow: hidden;
  background: #111A21;
}

.contribution__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(12, 13, 14, 0.02) 52%, rgba(12, 13, 14, 0.38) 100%),
    linear-gradient(180deg, rgba(12, 13, 14, 0.02) 62%, rgba(12, 13, 14, 0.58) 100%);
}

.contribution__image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 92svh;
  object-fit: cover;
  object-position: center;
}

.contribution__caption {
  position: absolute;
  z-index: 2;
  left: var(--page-pad);
  bottom: clamp(26px, 3.5vw, 52px);
  color: rgba(226, 222, 211, 0.72);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contribution__panel {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(86px, 9vw, 148px) clamp(42px, 6vw, 104px);
  background:
    radial-gradient(circle at 0% 15%, rgba(36, 64, 71, 0.20), transparent 32%),
    #11171B;
}


.contribution__panel > *,
.about-other-side__panel > *,
.contact-final__panel > * {
  position: relative;
  z-index: 1;
}

.panel-graphic {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.panel-graphic__ghost {
  position: absolute;
  color: rgba(226, 222, 211, 0.048);
  font-family: "Anton", sans-serif;
  font-weight: 400;
  line-height: 0.82;
  letter-spacing: -0.055em;
  text-transform: uppercase;
  user-select: none;
}

.panel-graphic__frame {
  position: absolute;
  border-top: 1px solid rgba(226, 222, 211, 0.12);
  border-right: 1px solid rgba(226, 222, 211, 0.12);
}

.panel-graphic__frame::before,
.panel-graphic__frame::after {
  content: "";
  position: absolute;
  background: rgba(197, 138, 59, 0.58);
}

.panel-graphic__frame::before {
  top: -1px;
  left: 0;
  width: clamp(26px, 2.5vw, 42px);
  height: 1px;
}

.panel-graphic__frame::after {
  top: 0;
  right: -1px;
  width: 1px;
  height: clamp(22px, 2.4vw, 38px);
}

.panel-graphic__line {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, rgba(226, 222, 211, 0.16), rgba(226, 222, 211, 0.05));
}

.panel-graphic--contribution .panel-graphic__ghost {
  top: clamp(26px, 2.4vw, 38px);
  right: clamp(-4px, 0.4vw, 8px);
  font-size: clamp(136px, 13.5vw, 248px);
}

.panel-graphic--contribution .panel-graphic__frame {
  top: clamp(42px, 3vw, 54px);
  right: clamp(18px, 2vw, 34px);
  width: clamp(170px, 18vw, 290px);
  height: clamp(92px, 10vw, 146px);
}

.panel-graphic--contribution .panel-graphic__line {
  left: clamp(42px, 5vw, 88px);
  right: clamp(24px, 2.2vw, 40px);
  bottom: clamp(34px, 3vw, 48px);
}

.panel-graphic--about .panel-graphic__ghost {
  top: clamp(32px, 3vw, 50px);
  right: clamp(-8px, 0.4vw, 8px);
  font-size: clamp(126px, 12.8vw, 230px);
}

.panel-graphic--about .panel-graphic__frame {
  top: clamp(48px, 3.6vw, 60px);
  right: clamp(18px, 2vw, 32px);
  width: clamp(180px, 20vw, 315px);
  height: clamp(96px, 10.8vw, 156px);
}

.panel-graphic--about .panel-graphic__line {
  left: clamp(42px, 5vw, 90px);
  right: clamp(26px, 2.2vw, 44px);
  bottom: clamp(42px, 3.2vw, 52px);
}

.panel-graphic--contact .panel-graphic__ghost {
  top: clamp(26px, 2.5vw, 40px);
  right: clamp(-6px, 0vw, 6px);
  font-size: clamp(136px, 13.4vw, 252px);
}

.panel-graphic--contact .panel-graphic__frame {
  top: clamp(42px, 3.2vw, 56px);
  right: clamp(18px, 2vw, 34px);
  width: clamp(180px, 19vw, 300px);
  height: clamp(96px, 10.5vw, 152px);
}

.panel-graphic--contact .panel-graphic__line {
  left: clamp(42px, 5vw, 86px);
  right: clamp(26px, 2.4vw, 42px);
  bottom: clamp(36px, 3.2vw, 52px);
}

.contribution__panel > .section-kicker {
  margin-bottom: clamp(36px, 4.5vw, 68px);
}

.contribution__items {
  display: grid;
}

.contribution__item {
  padding: clamp(24px, 2.6vw, 38px) 0;
  border-top: 1px solid rgba(226, 222, 211, 0.15);
}

.contribution__item:last-child {
  border-bottom: 1px solid rgba(226, 222, 211, 0.15);
}

.contribution__item h3 {
  margin: 0;
  color: var(--ivory);
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(28px, 2.25vw, 40px);
  font-weight: 600;
  line-height: 1.02;
}

.contribution__item p {
  max-width: 600px;
  margin: 14px 0 0;
  color: rgba(226, 222, 211, 0.72);
  font-size: clamp(16px, 1.15vw, 20px);
  line-height: 1.52;
}

.contribution__manifesto {
  position: relative;
  max-width: 620px;
  margin: clamp(44px, 5vw, 74px) 0 0;
  padding: 0 0 0 22px;
  color: var(--ivory);
  font-size: clamp(22px, 1.9vw, 32px);
  font-weight: 600;
  line-height: 1.25;
}

.contribution__manifesto::before {
  content: "";
  position: absolute;
  top: 0.12em;
  bottom: 0.10em;
  left: 0;
  width: 3px;
  background: var(--amber);
}

@media (max-width: 1050px) {
  .contribution__frame {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .contribution__visual,
  .contribution__image {
    min-height: min(76svh, 820px);
  }

  .contribution__panel {
    padding-top: 88px;
    padding-bottom: 104px;
  }
}

@media (max-width: 640px) {
  .contribution__visual,
  .contribution__image {
    min-height: 62svh;
  }

  .contribution__caption {
    left: 20px;
    bottom: 20px;
    font-size: 11px;
  }

  .contribution__panel {
    padding: 72px 20px 86px;
  }

  .contribution__panel > .section-kicker {
    margin-bottom: 32px;
  }

  .contribution__item {
    padding: 25px 0 27px;
  }

  .contribution__item h3 {
    font-size: 30px;
  }

  .contribution__item p {
    margin-top: 12px;
    font-size: 17px;
    line-height: 1.48;
  }

  .contribution__manifesto {
    margin-top: 42px;
    padding-left: 18px;
    font-size: 23px;
  }
}


/* WEB 4.6 — rebuilt from validated V3.1. */
.process-v46 {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #0C0D0E;
  border-top: 1px solid rgba(226, 222, 211, 0.10);
}

.process-v46__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 42% 50%;
  filter: saturate(.88) contrast(1.04);
}

.process-v46__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg,
      rgba(12, 13, 14, .82) 0%,
      rgba(12, 13, 14, .74) 34%,
      rgba(12, 13, 14, .64) 60%,
      rgba(12, 13, 14, .72) 100%),
    linear-gradient(180deg,
      rgba(12, 13, 14, .16) 0%,
      rgba(12, 13, 14, .12) 44%,
      rgba(12, 13, 14, .68) 100%);
  pointer-events: none;
}

.process-v46__shell,
.process-v46__closing {
  position: relative;
  z-index: 2;
}

.process-v46__shell {
  display: grid;
  grid-template-columns: minmax(340px, .82fr) minmax(520px, 1.18fr);
  gap: clamp(72px, 8vw, 138px);
  width: min(1360px, calc(100% - (var(--page-pad) * 2)));
  margin-inline: auto;
  padding: clamp(118px, 11vw, 178px) 0 clamp(96px, 10vw, 150px);
}

.process-v46__intro {
  position: sticky;
  top: clamp(54px, 8vh, 104px);
  align-self: start;
}

.process-v46__title {
  max-width: 9.3ch;
  margin: 18px 0 0;
  color: var(--ivory);
  font-family: "Anton", sans-serif;
  font-size: clamp(62px, 6.3vw, 108px);
  font-weight: 400;
  line-height: .96;
  letter-spacing: -.02em;
  text-transform: uppercase;
}

.process-v46__lead {
  max-width: 520px;
  margin: 30px 0 0;
  color: rgba(226, 222, 211, .80);
  font-size: clamp(17px, 1.2vw, 21px);
  line-height: 1.52;
}

.process-v46__context {
  width: fit-content;
  margin: 34px 0 0;
  padding-top: 16px;
  border-top: 1px solid rgba(197, 138, 59, .68);
  color: rgba(226, 222, 211, .66);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .11em;
}

.process-v46__timeline {
  position: relative;
  max-width: 690px;
  padding-left: 35px;
}

.process-v46__timeline::before {
  content: "";
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 4px;
  width: 1px;
  background: linear-gradient(180deg, rgba(197,138,59,.72), rgba(226,222,211,.18) 18%, rgba(226,222,211,.18) 82%, rgba(197,138,59,.32));
}

.process-v46__step {
  position: relative;
  padding: 0 0 clamp(54px, 5.2vw, 82px);
}

.process-v46__step:last-child { padding-bottom: 0; }

.process-v46__dot {
  position: absolute;
  top: 6px;
  left: -35px;
  width: 9px;
  height: 9px;
  border: 1px solid rgba(226, 222, 211, .46);
  border-radius: 50%;
  background: rgba(12, 13, 14, .78);
}

.process-v46__step--collab .process-v46__dot {
  border-color: var(--amber);
  background: var(--amber);
}

.process-v46__eyebrow {
  margin: 0 0 10px;
  color: var(--amber);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.process-v46__step h3 {
  max-width: 16ch;
  margin: 0;
  color: var(--ivory);
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(32px, 2.7vw, 47px);
  font-weight: 600;
  line-height: 1.04;
}

.process-v46__step > p:not(.process-v46__eyebrow):not(.process-v46__remote) {
  max-width: 620px;
  margin: 17px 0 0;
  color: rgba(226, 222, 211, .76);
  font-size: clamp(16px, 1.1vw, 19px);
  line-height: 1.55;
}

.process-v46__step--collab {
  margin: 4px 0 clamp(54px, 5.2vw, 82px);
  padding: clamp(28px, 3vw, 42px) 0;
  border-top: 1px solid rgba(197, 138, 59, .30);
  border-bottom: 1px solid rgba(197, 138, 59, .20);
}

.process-v46__step--collab .process-v46__dot { top: clamp(34px, 3vw, 48px); }

.process-v46__remote {
  display: inline-block;
  margin: 23px 0 0;
  padding-top: 14px;
  border-top: 1px solid rgba(226, 222, 211, .18);
  color: rgba(226, 222, 211, .62);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .11em;
}

.process-v46__closing {
  padding-top: clamp(70px, 7vw, 110px);
  padding-bottom: clamp(100px, 10vw, 160px);
  border-top: 1px solid rgba(226, 222, 211, .12);
}

.process-v46__closing p {
  max-width: 1000px;
  margin: 0;
  color: rgba(226, 222, 211, .82);
  font-size: clamp(29px, 3.6vw, 58px);
  line-height: 1.12;
  letter-spacing: -.016em;
}

.process-v46__closing strong {
  color: var(--ivory);
  font-weight: 600;
}

@media (max-width: 1000px) {
  .process-v46__bg { object-position: 44% center; }
  .process-v46__shade {
    background:
      linear-gradient(180deg, rgba(12,13,14,.56) 0%, rgba(12,13,14,.68) 46%, rgba(12,13,14,.88) 100%),
      linear-gradient(90deg, rgba(12,13,14,.58) 0%, rgba(12,13,14,.36) 100%);
  }
  .process-v46__shell { grid-template-columns: 1fr; gap: 72px; }
  .process-v46__intro { position: static; }
  .process-v46__title { max-width: 11ch; }
  .process-v46__lead { max-width: 680px; }
  .process-v46__timeline { max-width: 780px; }
}

@media (max-width: 640px) {
  .process-v46__bg { object-position: 46% center; }
  .process-v46__shell {
    width: calc(100% - 40px);
    gap: 58px;
    padding-top: 90px;
    padding-bottom: 84px;
  }
  .process-v46__title { font-size: clamp(54px, 16vw, 74px); }
  .process-v46__lead { margin-top: 23px; font-size: 17px; }
  .process-v46__timeline { padding-left: 31px; }
  .process-v46__timeline::before { left: 3px; }
  .process-v46__dot { left: -31px; }
  .process-v46__step { padding-bottom: 58px; }
  .process-v46__step--collab { margin-bottom: 58px; }
  .process-v46__step h3 { font-size: 31px; }
  .process-v46__step > p:not(.process-v46__eyebrow):not(.process-v46__remote) { font-size: 16.5px; }
  .process-v46__closing {
    width: calc(100% - 40px);
    padding-top: 62px;
    padding-bottom: 90px;
  }
  .process-v46__closing p { font-size: 30px; }
}

/* WEB 5.4 — Testimonials / stronger hierarchy + asymmetry */
.testimonials {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #0C0D0E;
  border-top: 1px solid rgba(226, 222, 211, 0.10);
}

.testimonials__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% center;
  filter: saturate(.98) contrast(1.03);
}

.testimonials__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg,
      rgba(12, 13, 14, .34) 0%,
      rgba(12, 13, 14, .28) 20%,
      rgba(12, 13, 14, .36) 54%,
      rgba(12, 13, 14, .56) 100%),
    linear-gradient(90deg,
      rgba(12, 13, 14, .82) 0%,
      rgba(12, 13, 14, .62) 32%,
      rgba(12, 13, 14, .34) 60%,
      rgba(12, 13, 14, .60) 100%);
}

.testimonials__shell {
  position: relative;
  z-index: 2;
  width: min(1360px, calc(100% - (var(--page-pad) * 2)));
  margin-inline: auto;
  padding: clamp(112px, 11vw, 176px) 0 clamp(118px, 12vw, 184px);
}

.testimonials__intro {
  max-width: 860px;
  margin-bottom: clamp(64px, 7.2vw, 104px);
}

.testimonials .section-kicker {
  margin-bottom: 16px;
}

.testimonials__title {
  max-width: 9.6ch;
  margin: 0;
  color: var(--ivory);
  font-family: "Anton", sans-serif;
  font-size: clamp(62px, 6.3vw, 108px);
  font-weight: 400;
  line-height: .95;
  letter-spacing: -.024em;
  text-transform: uppercase;
}

.testimonials__lead {
  max-width: 650px;
  margin: 28px 0 0;
  color: rgba(226, 222, 211, .78);
  font-size: clamp(18px, 1.24vw, 21px);
  line-height: 1.52;
}

.testimonials__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.24fr) minmax(300px, .76fr);
  gap: clamp(52px, 5.8vw, 94px);
  align-items: start;
}

.testimonials__secondary {
  position: relative;
  display: grid;
  gap: clamp(34px, 3.5vw, 52px);
  margin-top: clamp(92px, 9vw, 146px);
}

.testimonials__secondary::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(-1 * clamp(17px, 1.8vw, 28px));
  width: 1px;
  background: linear-gradient(180deg, rgba(226,222,211,.04), rgba(226,222,211,.22) 18%, rgba(226,222,211,.22) 82%, rgba(226,222,211,.04));
}

.testimonial {
  position: relative;
  margin: 0;
}

.testimonial__eyebrow {
  margin: 0 0 18px;
  color: var(--amber);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.testimonial blockquote {
  margin: 0;
}

.testimonial blockquote p {
  margin: 0;
  color: var(--ivory);
  letter-spacing: -.014em;
}

.testimonial--featured {
  max-width: 860px;
  padding-right: clamp(10px, 1.5vw, 18px);
  transform: translateX(clamp(-18px, -1.2vw, -8px));
}

.testimonial--featured::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: clamp(88px, 9vw, 126px);
  height: 2px;
  background: var(--amber);
}

.testimonial--featured .testimonial__eyebrow {
  padding-top: 22px;
}

.testimonial--featured blockquote p {
  max-width: 15.5ch;
  font-size: clamp(44px, 4.25vw, 72px);
  font-weight: 500;
  line-height: 1.04;
  text-shadow: 0 6px 24px rgba(0,0,0,.32);
}

.testimonial--secondary {
  padding: 0;
}

.testimonial--secondary + .testimonial--secondary {
  padding-top: clamp(34px, 3.5vw, 52px);
  border-top: 1px solid rgba(226, 222, 211, .22);
  transform: translateX(clamp(12px, 1.3vw, 22px));
}

.testimonial--secondary blockquote p {
  max-width: 21ch;
  font-size: clamp(23px, 1.7vw, 30px);
  font-weight: 500;
  line-height: 1.22;
  text-shadow: 0 4px 18px rgba(0,0,0,.28);
}

@media (max-width: 1100px) {
  .testimonials__bg {
    object-position: 60% center;
  }

  .testimonials__layout {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .testimonials__secondary {
    gap: 0;
    margin-top: 0;
  }

  .testimonials__secondary::before {
    display: none;
  }

  .testimonial--featured {
    max-width: 840px;
    transform: none;
  }

  .testimonial--featured blockquote p {
    max-width: 18ch;
  }

  .testimonial--secondary {
    padding-top: 28px;
  }

  .testimonial--secondary:first-child {
    padding-top: 0;
  }
}

@media (max-width: 760px) {
  .testimonials__bg {
    object-position: 66% center;
  }

  .testimonials__shade {
    background:
      linear-gradient(180deg,
        rgba(12,13,14,.56) 0%,
        rgba(12,13,14,.48) 24%,
        rgba(12,13,14,.58) 58%,
        rgba(12,13,14,.76) 100%),
      linear-gradient(90deg,
        rgba(12,13,14,.84) 0%,
        rgba(12,13,14,.62) 44%,
        rgba(12,13,14,.56) 100%);
  }

  .testimonials__shell {
    width: calc(100% - 40px);
    padding-top: 88px;
    padding-bottom: 94px;
  }

  .testimonials__intro {
    margin-bottom: 36px;
  }

  .testimonials__title {
    font-size: clamp(52px, 15.5vw, 72px);
  }

  .testimonials__lead {
    margin-top: 22px;
    font-size: 17px;
    line-height: 1.46;
  }

  .testimonials__layout {
    gap: 36px;
  }

  .testimonial--featured::before {
    width: 76px;
  }

  .testimonial--featured .testimonial__eyebrow {
    padding-top: 18px;
  }

  .testimonial--featured blockquote p {
    max-width: none;
    font-size: 32px;
    line-height: 1.10;
  }

  .testimonial--secondary + .testimonial--secondary {
    padding-top: 24px;
    transform: none;
  }

  .testimonial--secondary blockquote p {
    max-width: none;
    font-size: 23px;
    line-height: 1.24;
  }
}


/* WEB 5.5 — About / other side of the glass */
.about-other-side {
  position: relative;
  background: #0C0D0E;
  border-top: 1px solid rgba(226, 222, 211, 0.10);
}

.about-other-side__frame {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(430px, 0.92fr);
  min-height: 94svh;
}

.about-other-side__visual {
  position: relative;
  min-height: 94svh;
  margin: 0;
  overflow: hidden;
  background: #10161A;
}

.about-other-side__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(12, 13, 14, 0.02) 58%, rgba(12, 13, 14, 0.30) 100%),
    linear-gradient(180deg, rgba(12, 13, 14, 0.02) 58%, rgba(12, 13, 14, 0.50) 100%);
}

.about-other-side__image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 94svh;
  object-fit: cover;
  object-position: 50% 48%;
  filter: saturate(.92) contrast(1.03);
}

.about-other-side__caption {
  position: absolute;
  z-index: 2;
  left: var(--page-pad);
  bottom: clamp(24px, 3vw, 46px);
  color: rgba(226, 222, 211, 0.66);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.about-other-side__panel {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(82px, 8.5vw, 142px) clamp(42px, 5.8vw, 98px);
  background:
    radial-gradient(circle at 0% 16%, rgba(36, 64, 71, 0.20), transparent 32%),
    linear-gradient(180deg, #111A21 0%, #10161A 100%);
}

.about-other-side__panel > .section-kicker {
  margin-bottom: 18px;
}

.about-other-side__title {
  max-width: 10.5ch;
  margin: 0;
  color: var(--ivory);
  font-family: "Anton", sans-serif;
  font-size: clamp(60px, 5.8vw, 102px);
  font-weight: 400;
  line-height: .95;
  letter-spacing: -.023em;
  text-transform: uppercase;
}

.about-other-side__intro {
  position: relative;
  max-width: 640px;
  margin: clamp(30px, 3.4vw, 48px) 0 0;
  padding-left: 22px;
  color: var(--ivory);
  font-size: clamp(22px, 1.8vw, 30px);
  font-weight: 600;
  line-height: 1.28;
}

.about-other-side__intro::before {
  content: "";
  position: absolute;
  top: .12em;
  bottom: .08em;
  left: 0;
  width: 3px;
  background: var(--amber);
}

.about-other-side__copy {
  max-width: 620px;
  margin-top: clamp(28px, 3vw, 42px);
}

.about-other-side__copy p {
  margin: 0;
  color: rgba(226, 222, 211, .74);
  font-size: clamp(16px, 1.1vw, 19px);
  line-height: 1.56;
}

.about-other-side__copy p + p {
  margin-top: 17px;
}

.about-other-side__projects {
  width: fit-content;
  max-width: 620px;
  margin: clamp(30px, 3.2vw, 46px) 0 0;
  padding-top: 16px;
  border-top: 1px solid rgba(197, 138, 59, .48);
  color: rgba(226, 222, 211, .58);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .10em;
  line-height: 1.45;
}

.about-other-side__facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  max-width: 650px;
  margin-top: clamp(46px, 5vw, 74px);
  border-top: 1px solid rgba(226, 222, 211, .16);
  border-left: 1px solid rgba(226, 222, 211, .16);
}

.about-other-side__fact {
  min-height: 116px;
  padding: 20px 22px 18px;
  border-right: 1px solid rgba(226, 222, 211, .16);
  border-bottom: 1px solid rgba(226, 222, 211, .16);
}

.about-other-side__fact strong {
  display: block;
  color: var(--ivory);
  font-family: "Anton", sans-serif;
  font-size: clamp(28px, 2.4vw, 42px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -.01em;
}

.about-other-side__fact span {
  display: block;
  margin-top: 9px;
  color: rgba(226, 222, 211, .48);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}

@media (max-width: 1080px) {
  .about-other-side__frame {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .about-other-side__visual,
  .about-other-side__image {
    min-height: min(78svh, 860px);
  }

  .about-other-side__image {
    object-position: 50% 45%;
  }

  .about-other-side__panel {
    padding-top: 92px;
    padding-bottom: 110px;
  }

  .about-other-side__title {
    max-width: 12ch;
  }
}

@media (max-width: 640px) {
  .about-other-side__visual,
  .about-other-side__image {
    min-height: 62svh;
  }

  .about-other-side__image {
    object-position: 50% 44%;
  }

  .about-other-side__caption {
    left: 20px;
    bottom: 20px;
    font-size: 11px;
  }

  .about-other-side__panel {
    padding: 72px 20px 86px;
  }

  .about-other-side__title {
    max-width: 10.5ch;
    font-size: clamp(54px, 16vw, 74px);
  }

  .about-other-side__intro {
    margin-top: 28px;
    padding-left: 18px;
    font-size: 23px;
  }

  .about-other-side__copy {
    margin-top: 26px;
  }

  .about-other-side__copy p {
    font-size: 17px;
    line-height: 1.50;
  }

  .about-other-side__projects {
    font-size: 11px;
  }

  .about-other-side__facts {
    margin-top: 42px;
  }

  .about-other-side__fact {
    min-height: 102px;
    padding: 17px 16px 15px;
  }

  .about-other-side__fact strong {
    font-size: 30px;
  }
}


/* WEB 5.7 — Good fit / photo + texture manifesto */
.good-fit {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #0C0D0E;
  color: var(--ivory);
  border-top: 1px solid rgba(226, 222, 211, .10);
}

.good-fit__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 56%;
  filter: saturate(.92) contrast(1.04) brightness(.82);
}

.good-fit__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg,
      rgba(12, 13, 14, .90) 0%,
      rgba(12, 13, 14, .78) 26%,
      rgba(12, 13, 14, .58) 48%,
      rgba(12, 13, 14, .66) 100%),
    linear-gradient(180deg,
      rgba(12, 13, 14, .32) 0%,
      rgba(12, 13, 14, .18) 26%,
      rgba(12, 13, 14, .44) 62%,
      rgba(12, 13, 14, .82) 100%);
}

.good-fit__texture {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: .68;
  background:
    radial-gradient(circle at 15% 20%, rgba(197, 138, 59, .11) 0 0.6%, transparent 8%),
    radial-gradient(circle at 80% 84%, rgba(197, 138, 59, .08) 0 0.6%, transparent 11%),
    repeating-linear-gradient(0deg,
      rgba(255,255,255,.028) 0px,
      rgba(255,255,255,.028) 1px,
      transparent 1px,
      transparent 4px),
    linear-gradient(125deg, rgba(255,255,255,.03) 0%, transparent 26%, transparent 74%, rgba(255,255,255,.02) 100%);
  mix-blend-mode: screen;
}

.good-fit__shell {
  position: relative;
  z-index: 3;
  width: min(1380px, calc(100% - (var(--page-pad) * 2)));
  margin-inline: auto;
  padding: clamp(112px, 11vw, 176px) 0 clamp(126px, 12vw, 194px);
}

.good-fit__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, .92fr);
  gap: clamp(32px, 4vw, 72px);
  align-items: start;
}

.good-fit__intro {
  max-width: 780px;
}

.good-fit .section-kicker {
  margin-bottom: clamp(20px, 2.4vw, 32px);
  color: var(--amber);
}

.good-fit__manifesto {
  max-width: 9.4ch;
  margin: 0;
  color: var(--ivory);
  font-family: "Anton", sans-serif;
  font-size: clamp(60px, 6.35vw, 110px);
  font-weight: 400;
  line-height: .95;
  letter-spacing: -.025em;
  text-transform: uppercase;
  text-wrap: balance;
  text-shadow: 0 10px 34px rgba(0, 0, 0, .26);
}


.good-fit__manifesto-support {
  max-width: 620px;
  margin: clamp(22px, 2.6vw, 34px) 0 0;
  color: rgba(226, 222, 211, .78);
  font-size: clamp(18px, 1.3vw, 22px);
  font-weight: 400;
  line-height: 1.48;
}

.good-fit__emblem {
  display: block;
  width: clamp(84px, 8.2vw, 128px);
  height: auto;
  margin-top: clamp(26px, 2.7vw, 40px);
  opacity: .78;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, .16));
}

.good-fit__list {
  position: relative;
  margin-top: clamp(72px, 7.5vw, 126px);
  padding: clamp(18px, 1.8vw, 24px) 0 0;
  border-top: 1px solid rgba(226, 222, 211, .28);
  background: linear-gradient(180deg, rgba(12, 13, 14, .26) 0%, rgba(12, 13, 14, .12) 100%);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 22px 72px rgba(0,0,0,.18);
}

.good-fit__list::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: clamp(96px, 9vw, 140px);
  height: 2px;
  background: var(--amber);
  transform: translateY(-1px);
}

.good-fit__item {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  gap: 18px;
  padding: clamp(24px, 2.15vw, 34px) clamp(20px, 2.4vw, 28px) clamp(24px, 2.2vw, 34px);
  border-bottom: 1px solid rgba(226, 222, 211, .12);
}

.good-fit__item:last-child {
  border-bottom: none;
}

.good-fit__item:nth-child(2),
.good-fit__item:nth-child(4) {
  padding-left: clamp(34px, 3.5vw, 50px);
}

.good-fit__index {
  display: inline-flex;
  align-items: baseline;
  color: var(--amber);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
}

.good-fit__copy h3 {
  margin: 0;
  color: var(--ivory);
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(28px, 2.25vw, 38px);
  font-weight: 700;
  line-height: 1.02;
}

.good-fit__copy p {
  max-width: 38ch;
  margin: 10px 0 0;
  color: rgba(226, 222, 211, .74);
  font-size: clamp(16px, 1.08vw, 18px);
  line-height: 1.5;
}

@media (max-width: 1080px) {
  .good-fit__bg {
    object-position: 58% center;
  }

  .good-fit__layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .good-fit__intro {
    max-width: 860px;
  }

  .good-fit__manifesto {
    max-width: 12.2ch;
  }

  .good-fit__list {
    margin-top: 0;
    max-width: 780px;
  }
}

@media (max-width: 760px) {
  .good-fit__bg {
    object-position: 66% center;
  }

  .good-fit__shade {
    background:
      linear-gradient(90deg,
        rgba(12, 13, 14, .92) 0%,
        rgba(12, 13, 14, .78) 42%,
        rgba(12, 13, 14, .68) 100%),
      linear-gradient(180deg,
        rgba(12, 13, 14, .42) 0%,
        rgba(12, 13, 14, .22) 22%,
        rgba(12, 13, 14, .56) 66%,
        rgba(12, 13, 14, .84) 100%);
  }

  .good-fit__texture {
    opacity: .5;
  }

  .good-fit__shell {
    width: calc(100% - 40px);
    padding-top: 88px;
    padding-bottom: 98px;
  }

  .good-fit__manifesto {
    max-width: 8.8ch;
    font-size: clamp(50px, 14.5vw, 72px);
    line-height: .96;
  }

  .good-fit__manifesto-support {
    max-width: 34ch;
    margin-top: 20px;
    font-size: 17px;
    line-height: 1.44;
  }

  .good-fit__emblem {
    width: 92px;
    margin-top: 22px;
  }

  .good-fit__list {
    padding-top: 16px;
  }

  .good-fit__list::before {
    width: 76px;
  }

  .good-fit__item,
  .good-fit__item:nth-child(2),
  .good-fit__item:nth-child(4) {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 12px;
    padding: 22px 18px 24px;
  }

  .good-fit__copy h3 {
    font-size: 28px;
  }

  .good-fit__copy p {
    font-size: 16.5px;
    line-height: 1.44;
  }
}


/* WEB 6.0 — Final CTA + contact form */
.contact-final {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(520px, 1.08fr);
  min-height: 100svh;
  overflow: hidden;
  background: var(--ink);
  border-top: 1px solid rgba(226, 222, 211, .10);
}

.contact-final__visual {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  overflow: hidden;
  background: #0C0D0E;
}

.contact-final__image {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% center;
  filter: saturate(.88) contrast(1.06) brightness(.86);
}

.contact-final__visual-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg,
      rgba(12, 13, 14, .32) 0%,
      rgba(12, 13, 14, .18) 36%,
      rgba(12, 13, 14, .76) 100%),
    linear-gradient(90deg,
      rgba(12, 13, 14, .70) 0%,
      rgba(12, 13, 14, .34) 54%,
      rgba(12, 13, 14, .50) 100%);
}

.contact-final__visual-copy {
  position: absolute;
  left: var(--page-pad);
  right: clamp(28px, 5vw, 84px);
  bottom: clamp(62px, 7vw, 110px);
  z-index: 1;
}

.contact-final__visual-copy .section-kicker {
  margin-bottom: 18px;
}

.contact-final__title {
  max-width: 9.1ch;
  margin: 0;
  color: var(--ivory);
  font-family: "Anton", sans-serif;
  font-size: clamp(60px, 6.2vw, 108px);
  font-weight: 400;
  line-height: .95;
  letter-spacing: -.025em;
  text-transform: uppercase;
  text-wrap: balance;
  text-shadow: 0 10px 36px rgba(0,0,0,.28);
}

.contact-final__lead {
  max-width: 590px;
  margin: clamp(24px, 2.8vw, 36px) 0 0;
  color: rgba(226, 222, 211, .84);
  font-size: clamp(17px, 1.22vw, 21px);
  line-height: 1.50;
}

.contact-final__context {
  width: fit-content;
  margin: 32px 0 0;
  padding-top: 15px;
  border-top: 1px solid rgba(197, 138, 59, .68);
  color: rgba(226, 222, 211, .68);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .11em;
}

.contact-final__panel {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 100svh;
  background:
    radial-gradient(circle at 0% 8%, rgba(36, 64, 71, .22), transparent 28%),
    linear-gradient(180deg, #12191E 0%, #0F1418 100%);
  border-left: 1px solid rgba(226, 222, 211, .10);
}

.contact-final__form-wrap {
  width: min(720px, calc(100% - (var(--page-pad) * 2)));
  margin-inline: auto;
  padding: clamp(94px, 8vw, 140px) 0;
}

.contact-final__eyebrow {
  margin: 0 0 15px;
  color: var(--amber);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.contact-final__form-wrap > h3 {
  max-width: 11ch;
  margin: 0;
  color: var(--ivory);
  font-family: "Anton", sans-serif;
  font-size: clamp(48px, 4.2vw, 76px);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.02em;
  text-transform: uppercase;
}

.contact-final__form-lead {
  max-width: 590px;
  margin: 24px 0 0;
  color: rgba(226, 222, 211, .70);
  font-size: clamp(16px, 1.05vw, 18px);
  line-height: 1.50;
}

.project-form {
  display: grid;
  gap: 0;
  margin-top: clamp(48px, 5vw, 72px);
  border-top: 1px solid rgba(226, 222, 211, .18);
}

.project-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.project-form__row .project-form__field:first-child {
  border-right: 1px solid rgba(226, 222, 211, .14);
}

.project-form__field {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px 0 24px;
  border-bottom: 1px solid rgba(226, 222, 211, .16);
}

.project-form__row .project-form__field {
  padding-left: 0;
  padding-right: 24px;
}

.project-form__row .project-form__field + .project-form__field {
  padding-left: 24px;
  padding-right: 0;
}

.project-form__field > span {
  color: var(--amber);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.project-form__field input,
.project-form__field textarea {
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  outline: none;
  background: transparent;
  color: var(--ivory);
  font: inherit;
  font-size: 18px;
  line-height: 1.45;
  resize: vertical;
}

.project-form__field textarea {
  min-height: 132px;
}

.project-form__field input::placeholder,
.project-form__field textarea::placeholder {
  color: rgba(226, 222, 211, .36);
}

.project-form__field:focus-within {
  border-bottom-color: rgba(197, 138, 59, .72);
}

.project-form__field small {
  color: rgba(226, 222, 211, .42);
  font-size: 13px;
  line-height: 1.35;
}

.project-form__submit {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 28px);
  margin-top: 34px;
}

.project-form__submit .button {
  flex: 0 0 auto;
  border: 0;
  cursor: pointer;
}

.project-form__submit p {
  max-width: 300px;
  margin: 0;
  color: rgba(226, 222, 211, .46);
  font-size: 13px;
  line-height: 1.42;
}

@media (max-width: 1100px) {
  .contact-final {
    grid-template-columns: 1fr;
  }

  .contact-final__visual {
    min-height: min(78svh, 820px);
  }

  .contact-final__image {
    object-position: center 54%;
  }

  .contact-final__visual-copy {
    max-width: 820px;
  }

  .contact-final__panel {
    min-height: auto;
    border-left: 0;
    border-top: 1px solid rgba(226, 222, 211, .10);
  }

  .contact-final__form-wrap {
    width: min(820px, calc(100% - (var(--page-pad) * 2)));
  }
}

@media (max-width: 640px) {
  .contact-final__visual {
    min-height: 72svh;
  }

  .contact-final__image {
    object-position: 52% center;
  }

  .contact-final__visual-copy {
    left: 20px;
    right: 20px;
    bottom: 42px;
  }

  .contact-final__title {
    max-width: 9.6ch;
    font-size: clamp(52px, 15vw, 72px);
  }

  .contact-final__lead {
    margin-top: 20px;
    font-size: 17px;
  }

  .contact-final__context {
    margin-top: 24px;
    font-size: 11px;
  }

  .contact-final__form-wrap {
    width: calc(100% - 40px);
    padding: 76px 0 88px;
  }

  .contact-final__form-wrap > h3 {
    font-size: 48px;
  }

  .contact-final__form-lead {
    font-size: 16.5px;
  }

  .project-form {
    margin-top: 42px;
  }

  .project-form__row {
    grid-template-columns: 1fr;
  }

  .project-form__row .project-form__field:first-child {
    border-right: 0;
  }

  .project-form__row .project-form__field,
  .project-form__row .project-form__field + .project-form__field {
    padding-left: 0;
    padding-right: 0;
  }

  .project-form__field input,
  .project-form__field textarea {
    font-size: 17px;
  }

  .project-form__submit {
    align-items: stretch;
    flex-direction: column;
  }

  .project-form__submit .button {
    width: 100%;
  }

  .project-form__submit p {
    max-width: none;
  }
}

/* WEB 6.5 — QA / responsive + interaction polish */
html {
  overflow-x: clip;
}

body {
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection {
  background: rgba(197, 138, 59, .92);
  color: #0C0D0E;
}

button,
a,
input,
textarea {
  -webkit-tap-highlight-color: transparent;
}

button,
.button {
  touch-action: manipulation;
}

.audio-preview__play:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 4px;
}

.project-form__field:focus-within {
  border-bottom-color: var(--amber);
}

.project-form__field input:focus-visible,
.project-form__field textarea:focus-visible {
  outline: none;
}

.project-form__field input:-webkit-autofill,
.project-form__field textarea:-webkit-autofill {
  -webkit-text-fill-color: var(--ivory);
  transition: background-color 9999s ease-out 0s;
  caret-color: var(--ivory);
}

.hero__title,
.section-title,
.project__title,
.process-v46__title,
.testimonials__title,
.about-other-side__title,
.good-fit__manifesto,
.contact-final__title,
.contact-final__form-wrap > h3 {
  text-wrap: balance;
}

section[id] {
  scroll-margin-top: 16px;
}

/* Avoid hover-only motion on touch screens. */
@media (hover: none) {
  .button:hover,
  .audio-preview__play:not(:disabled):hover {
    transform: none;
  }
}

/* Short desktop / landscape viewports: keep the hero usable without crushing copy. */
@media (min-width: 641px) and (max-height: 720px) {
  .hero__inner {
    padding-top: 22px;
    padding-bottom: 28px;
  }

  .hero__copy {
    padding-top: 24px;
  }

  .hero__title {
    font-size: clamp(54px, 6.1vw, 86px);
  }

  .hero__body {
    margin-top: 18px;
    font-size: clamp(17px, 1.2vw, 20px);
  }

  .hero__actions {
    margin-top: 22px;
  }

  .hero__microcopy {
    margin-top: 14px;
  }
}

@media (max-width: 640px) {
  .project__artwork {
    box-shadow: 0 24px 70px rgba(0, 0, 0, .34);
  }

  .project__artist,
  .project__role,
  .about-other-side__projects,
  .contact-final__context,
  .process-v46__context,
  .process-v46__remote {
    overflow-wrap: anywhere;
  }

  .project-form__field input,
  .project-form__field textarea {
    /* 16px+ avoids browser zoom on focus while preserving the intended scale. */
    font-size: 17px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .audio-preview__play:not(:disabled) {
    transition: none;
  }
}


/* WEB 6.8 — Social links (inline SVG; corrected YouTube glyph) */
.social-links {
  display: flex;
  align-items: center;
  gap: 15px;
}

.social-links--hero {
  position: absolute;
  top: clamp(28px, 3.3vw, 48px);
  right: var(--page-pad);
  z-index: 6;
}

.social-links__link {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  color: rgba(226, 222, 211, .76);
  text-decoration: none;
  transition: color 160ms ease, transform 160ms ease, opacity 160ms ease;
}

.social-links__link:hover {
  color: var(--amber);
  transform: translateY(-1px);
}

.social-links__link:focus-visible {
  outline: 1px solid var(--ivory);
  outline-offset: 5px;
  color: var(--ivory);
}

.social-links__icon {
  display: block;
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex: none;
  overflow: visible;
}

.social-links__icon--youtube {
  width: 20px;
}

.contact-final__panel {
  position: relative;
}

.social-links--footer {
  position: absolute;
  right: var(--page-pad);
  bottom: 28px;
  z-index: 6;
}

.social-links--footer .social-links__link {
  color: rgba(226, 222, 211, .58);
}

.social-links--footer .social-links__link:hover {
  color: var(--amber);
}

@media (max-width: 640px) {
  .social-links {
    gap: 11px;
  }

  .social-links--hero {
    top: 22px;
    right: 18px;
  }

  .social-links__link {
    width: 24px;
    height: 24px;
  }

  .social-links__icon {
    width: 17px;
    height: 17px;
  }

  .social-links__icon--youtube {
    width: 19px;
  }

  .social-links--footer {
    right: 20px;
    bottom: 26px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .social-links__link {
    transition: none;
  }
}



@media (max-width: 640px) {
  .panel-graphic__ghost {
    line-height: 0.86;
  }

  .panel-graphic--contribution .panel-graphic__ghost {
    top: 24px;
    right: -4px;
    font-size: clamp(110px, 29vw, 150px);
  }

  .panel-graphic--contribution .panel-graphic__frame {
    top: 34px;
    right: 6px;
    width: 118px;
    height: 76px;
  }

  .panel-graphic--contribution .panel-graphic__line {
    left: 20px;
    right: 20px;
    bottom: 24px;
  }

  .panel-graphic--about .panel-graphic__ghost {
    top: 28px;
    right: -6px;
    font-size: clamp(102px, 28vw, 140px);
  }

  .panel-graphic--about .panel-graphic__frame {
    top: 38px;
    right: 6px;
    width: 120px;
    height: 78px;
  }

  .panel-graphic--about .panel-graphic__line {
    left: 20px;
    right: 20px;
    bottom: 28px;
  }

  .panel-graphic--contact .panel-graphic__ghost {
    top: 24px;
    right: -4px;
    font-size: clamp(102px, 28vw, 146px);
  }

  .panel-graphic--contact .panel-graphic__frame {
    top: 36px;
    right: 6px;
    width: 124px;
    height: 80px;
  }

  .panel-graphic--contact .panel-graphic__line {
    left: 20px;
    right: 20px;
    bottom: 26px;
  }
}


/* =========================================================
   V6.19 — Mobile robustness fixes
   - Good Fit must grow with all content on iOS/Safari.
   - Preserve the validated visual direction.
   ========================================================= */
@media (max-width: 760px) {
  .good-fit {
    overflow: visible;
    min-height: 0;
    height: auto;
  }

  .good-fit__bg,
  .good-fit__shade,
  .good-fit__texture {
    height: 100%;
    min-height: 100%;
  }

  .good-fit__shell {
    position: relative;
    height: auto;
    min-height: 0;
    overflow: visible;
    padding-bottom: 118px;
  }

  .good-fit__layout {
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: 0;
    overflow: visible;
  }

  .good-fit__intro,
  .good-fit__list {
    flex: 0 0 auto;
    width: 100%;
    height: auto;
    min-height: 0;
    overflow: visible;
  }

  .good-fit__item:last-child {
    padding-bottom: 30px;
  }
}


/* =========================================================
   V6.20 — Root mobile fixes
   1) Final CTA copy is part of normal document flow on phones.
      It can no longer overflow upward and be clipped by the photo panel.
   2) Audio uses native HTML controls when JS is unavailable/restricted.
      When JS runs, the validated custom player remains unchanged.
   ========================================================= */

html:not(.audio-js) .audio-preview {
  grid-template-columns: 1fr;
}

html:not(.audio-js) .audio-preview__play,
html:not(.audio-js) .audio-preview__body,
html:not(.audio-js) .audio-preview__progress,
html:not(.audio-js) .audio-preview__status {
  display: none;
}

html:not(.audio-js) .audio-preview__audio {
  display: block;
  grid-column: 1 / -1;
  width: 100%;
  max-width: 520px;
  height: 44px;
}

@media (max-width: 640px) {
  .contact-final__visual {
    display: flex;
    align-items: flex-end;
    min-height: 0;
    height: auto;
    padding: 112px 20px 46px;
    box-sizing: border-box;
    overflow: hidden;
  }

  .contact-final__visual-copy {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    max-width: none;
    margin: 0;
  }

  .contact-final__title {
    max-width: 9.6ch;
    font-size: clamp(52px, 15vw, 72px);
  }

  .contact-final__lead {
    max-width: 100%;
  }

  .contact-final__context {
    margin-bottom: 0;
  }

  html:not(.audio-js) .audio-preview {
    display: block;
  }

  html:not(.audio-js) .audio-preview__audio {
    width: 100%;
    max-width: none;
  }
}


/* =========================================================
   V6.21 — bilingual language switch
   ========================================================= */
.language-switch__link {
  display: inline-flex;
  min-width: 32px;
  height: 28px;
  align-items: center;
  justify-content: center;
  margin-right: 2px;
  padding: 0 7px;
  border-right: 1px solid rgba(226, 222, 211, .18);
  color: rgba(226, 222, 211, .70);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .11em;
  text-decoration: none;
  transition: color 160ms ease, border-color 160ms ease;
}

.language-switch__link:hover {
  color: var(--amber);
  border-right-color: rgba(197, 138, 59, .48);
}

.language-switch__link:focus-visible {
  outline: 1px solid var(--ivory);
  outline-offset: 4px;
  color: var(--ivory);
}

.social-links--footer .language-switch__link {
  color: rgba(226, 222, 211, .52);
}

.social-links--footer .language-switch__link:hover {
  color: var(--amber);
}

@media (max-width: 640px) {
  .language-switch__link {
    min-width: 28px;
    height: 24px;
    padding: 0 5px;
    font-size: 11px;
  }
}


/* WEB 6.22 — Live Formspree contact form */
.project-form__honeypot {
  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;
}

.project-form__field input:required:invalid,
.project-form__field textarea:required:invalid {
  box-shadow: none;
}

.project-form.was-validated .project-form__field:has(input:required:invalid),
.project-form.was-validated .project-form__field:has(textarea:required:invalid) {
  border-bottom-color: rgba(205, 102, 76, .86);
}

.project-form__submit .button:disabled {
  cursor: wait;
  opacity: .62;
  transform: none;
}

.project-form__status {
  display: none;
  margin-top: 22px;
  padding: 14px 16px;
  border-left: 2px solid rgba(226, 222, 211, .28);
  color: rgba(226, 222, 211, .76);
  font-size: 14px;
  line-height: 1.45;
}

.project-form__status.is-visible {
  display: block;
}

.project-form__status.is-success {
  border-left-color: var(--amber);
  color: var(--ivory);
  background: rgba(197, 138, 59, .075);
}

.project-form__status.is-error {
  border-left-color: rgba(205, 102, 76, .9);
  color: rgba(242, 216, 208, .92);
  background: rgba(126, 47, 35, .12);
}

@supports not selector(:has(*)) {
  .project-form.was-validated .project-form__field {
    border-bottom-color: rgba(226, 222, 211, .16);
  }
}
