html,
body {
  overflow-anchor: none;
}

.ws {
  padding-top: var(--nav-h);
}

.ws-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--sp-4);
  flex-wrap: wrap;
  padding: var(--sp-8) var(--gutter) var(--sp-6);
  border-bottom: var(--rule);
}
@media (max-width: 768px) {
  .ws-head {
    padding: var(--sp-6) var(--sp-4) var(--sp-4);
  }
}

.ws-head__title {
  font-size: var(--fs-h2);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: balance;
}

.ws-head__cat {
  flex: none;
  color: var(--color-muted);
  white-space: nowrap;
}

.ws-media {
  width: 100%;
  overflow: hidden;
  background-color: var(--color-surface);
}

.ws-media__video,
.ws-media__img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 88vh;
  object-fit: cover;
}

.ws-brief {
  padding: var(--sp-12) var(--gutter);
  border-bottom: var(--rule);
  justify-content: flex-start !important;
}
@media (max-width: 768px) {
  .ws-brief {
    padding: var(--sp-8) var(--sp-4);
  }
}

.ws-brief__inner {
  max-width: 100%;
  width: 100%;
  margin-right: auto;
}

.ws-brief__label {
  display: block;
  color: var(--color-accent3);
  margin-bottom: var(--sp-4);
}

.ws-brief__text {
  font-size: clamp(1.5rem, 2.5vw + 0.5rem, 2.75rem);
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--color-text);
  text-wrap: pretty;
  margin: 0;
}
@media (min-width: 768px) {
  .ws-brief__text {
    width: 100%;
  }
}
.ws-brief__text p {
  margin: 0 0 0.6em;
}
.ws-brief__text p:last-child {
  margin-bottom: 0;
}
.ws-brief__text ul, .ws-brief__text ol {
  margin: 0 0 0.6em;
  padding-inline-start: 1.3em;
}
.ws-brief__text ul:last-child, .ws-brief__text ol:last-child {
  margin-bottom: 0;
}
.ws-brief__text ul {
  list-style: disc;
}
.ws-brief__text ol {
  list-style: decimal;
}
.ws-brief__text li {
  margin-bottom: 0.2em;
}

.ws-cs {
  position: relative;
  overflow: hidden;
  background-color: var(--color-bg);
}

.ws-cs__viewport {
  height: 100vh;
  height: 100dvh;
  display: flex;
  align-items: stretch;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: thin;
}

.ws-cs.is-pinned .ws-cs__viewport {
  overflow: clip;
}

.ws-cs__track {
  display: flex;
  align-items: stretch;
  height: 100%;
}

.ws-panel {
  flex: none;
  width: 100vw;
  min-width: 100vw;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--sp-6);
  padding: var(--sp-12) clamp(var(--sp-4), 8vw, var(--sp-24));
  border-right: var(--rule);
}
@media (max-width: 768px) {
  .ws-panel {
    padding: var(--sp-8) var(--sp-4);
  }
}

.ws-panel__head {
  display: flex;
  align-items: baseline;
  gap: var(--sp-3);
}

.ws-panel__num {
  font-size: var(--fs-sm);
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--panel-accent, var(--color-accent));
}

.ws-panel__label {
  font-size: var(--fs-xl);
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 0;
}

.ws-panel__body {
  min-height: 0;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: var(--sp-6);
}

.ws-panel__text {
  font-size: var(--fs-md);
  line-height: 1.7;
  color: var(--color-body);
  max-width: var(--measure);
}
.ws-panel__text p {
  margin: 0 0 var(--sp-3);
}
.ws-panel__text p:last-child {
  margin-bottom: 0;
}
.ws-panel__text ul, .ws-panel__text ol {
  margin: 0 0 var(--sp-3);
  padding-inline-start: 1.4em;
}
.ws-panel__text ul:last-child, .ws-panel__text ol:last-child {
  margin-bottom: 0;
}
.ws-panel__text ul {
  list-style: disc;
}
.ws-panel__text ol {
  list-style: decimal;
}
.ws-panel__text li {
  margin-bottom: var(--sp-1);
}
@media (min-width: 768px) {
  .ws-panel--text .ws-panel__text {
    width: 75%;
    max-width: none;
  }
}
.ws-panel__text--caption {
  font-size: var(--fs-sm);
  color: var(--color-muted);
  margin-top: 0;
  max-width: 36ch;
  align-self: center;
}

.ws-panel__media {
  display: flex;
  gap: var(--sp-4);
  height: 100%;
  align-items: center;
}
.ws-panel__media[data-images="1"] {
  justify-content: flex-start;
}

.ws-panel__img {
  margin: 0;
  height: 100%;
  max-height: 56vh;
  flex: 0 1 auto;
}
.ws-panel__img img {
  display: block;
  height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.ws-panel--link {
  align-items: center;
  justify-content: center;
}

.ws-panel--outro {
  justify-content: center;
  gap: var(--sp-12);
  text-align: center;
}
.ws-panel--outro .ws-cta__inner {
  margin: 0 auto;
}
.ws-panel--outro .ws-nav {
  width: 100%;
  padding: var(--sp-6) 0 0;
  border-top: var(--rule);
  border-bottom: none;
}
@media (max-width: 768px) {
  .ws-panel--outro {
    gap: var(--sp-8);
  }
}

.ws:has(.ws-panel--outro) .section-block.ws-cta:not(.home-contact) {
  display: none !important;
}

.ws-panel__live {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: var(--fs-lg);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--color-text);
  text-decoration: none;
  transition: color 200ms var(--ease-out);
}
.ws-panel__live:hover {
  color: var(--color-accent3);
}
.ws-panel__live-arrow {
  transition: transform 200ms var(--ease-out);
}
.ws-panel__live:hover .ws-panel__live-arrow {
  transform: translate(3px, -3px);
}

.ws-cs__hint {
  position: absolute;
  right: var(--gutter);
  bottom: var(--sp-4);
  color: var(--color-muted);
  pointer-events: none;
}

@media (max-width: 768px) {
  .ws-cs {
    overflow: visible;
  }
  .ws-cs__viewport {
    height: auto;
    display: block;
    overflow: visible;
  }
  .ws-cs__track {
    flex-direction: column;
    height: auto;
    transform: none !important;
  }
  .ws-panel {
    width: 100%;
    min-width: 0;
    height: auto;
    min-height: 100dvh;
    border-right: none;
    border-bottom: var(--rule);
  }
  .ws-panel--link {
    width: 100%;
  }
  .ws-panel__body {
    grid-template-columns: 1fr;
    align-items: start;
    gap: var(--sp-3);
  }
  .ws-panel__text--caption {
    max-width: none;
  }
  .ws-panel__media {
    height: auto;
    flex-wrap: wrap;
  }
  .ws-panel__img {
    height: auto;
    max-height: none;
  }
  .ws-panel__img img {
    height: auto;
    width: 100%;
  }
  .ws-cs__hint {
    display: none;
  }
}
.ws-nav {
  display: flex;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: var(--sp-8) var(--gutter);
  border-top: var(--rule);
  border-bottom: var(--rule);
}
@media (max-width: 768px) {
  .ws-nav {
    padding: var(--sp-6) var(--sp-4);
  }
}

.ws-nav__item {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
  text-decoration: none;
  color: var(--color-text);
  transition: color 200ms var(--ease-out);
}
.ws-nav__item--next {
  text-align: right;
  margin-left: auto;
  align-items: flex-end;
}
.ws-nav__item:hover {
  color: var(--color-accent3);
}

.ws-nav__dir {
  color: var(--color-muted);
}

.ws-nav__title {
  font-size: var(--fs-lg);
  font-weight: 500;
  letter-spacing: -0.01em;
}

.ws-cta {
  padding: var(--sp-12) var(--gutter);
  text-align: center;
  background-color: var(--color-surface);
}

.ws-cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-6);
}

.ws-cta__title {
  font-size: var(--fs-hero);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.03em;
  max-width: 18ch;
  margin: 0;
  text-wrap: balance;
}

@media (max-width: 768px) {
  .ws-brief,
  .ws-head,
  .ws-panel--text,
  .ws-panel--media,
  .ws-cta--nav {
    padding-left: 0;
    padding-right: 0;
  }
  .ws-nav {
    padding-left: 3vw;
    padding-right: 3vw;
  }
}
.ws-brief__services {
  margin-top: var(--sp-6);
}

.ws-brief__services-label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--color-accent3);
}

.ws-brief__services-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
}

.cs-study {
  max-width: var(--grid-max);
  margin: 0 auto;
  padding: 0 var(--gutter) var(--sp-16);
}
@media (max-width: 768px) {
  .cs-study {
    padding: 0 var(--sp-4) var(--sp-8);
  }
}

.cs-study__cats {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: var(--sp-3);
  padding: var(--sp-6) 0;
  border-bottom: var(--rule);
}

.cs-study__cats-label {
  color: var(--color-muted);
}

.cs-study__cats-tags {
  font-size: var(--fs-sm);
  letter-spacing: 0.04em;
  color: var(--color-text);
}

.cs-study__brief {
  padding: var(--sp-8) 0;
  border-bottom: var(--rule);
}

.cs-study__brief-text {
  font-size: var(--fs-xl);
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: -0.01em;
  max-width: 40ch;
}

.cs-rows {
  border-top: none;
}

.cs-row {
  display: grid;
  grid-template-columns: 14rem 1fr;
  gap: var(--sp-6);
  padding: var(--sp-8) 0;
  border-bottom: var(--rule);
}
@media (max-width: 768px) {
  .cs-row {
    grid-template-columns: 1fr;
    gap: var(--sp-3);
    padding: var(--sp-6) 0;
  }
}

.cs-row__label-col {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
  align-self: start;
  position: sticky;
  top: calc(var(--nav-h) + var(--sp-2));
}
@media (max-width: 768px) {
  .cs-row__label-col {
    position: static;
    flex-direction: row;
    align-items: baseline;
    gap: var(--sp-2);
  }
}

.cs-row__num {
  font-size: var(--fs-sm);
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--card-accent, var(--color-accent));
}

.cs-row__label {
  font-size: var(--fs-lg);
  font-weight: 500;
  letter-spacing: -0.01em;
}

.cs-row__content {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.cs-row__text {
  font-size: var(--fs-md);
  font-weight: 300;
  line-height: 1.7;
  color: var(--color-text);
  max-width: 60ch;
}
.cs-row__text p {
  margin: 0 0 var(--sp-3);
}
.cs-row__text p:last-child {
  margin-bottom: 0;
}

.cs-row__text--caption {
  font-size: var(--fs-sm);
  color: var(--color-muted);
}

.cs-row__media {
  display: grid;
  gap: var(--sp-2);
  grid-template-columns: 1fr;
}
.cs-row__media[data-images="2"] {
  grid-template-columns: 1fr 1fr;
}
.cs-row__media[data-images="3"] {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 640px) {
  .cs-row__media {
    grid-template-columns: 1fr !important;
  }
}

.cs-row__img {
  margin: 0;
  overflow: hidden;
  border: var(--rule);
}
.cs-row__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(15%);
  transition: transform 900ms cubic-bezier(0.25, 1, 0.5, 1), filter 500ms;
}
.cs-row__img:hover img {
  transform: scale(1.03);
  filter: grayscale(0%);
}

.cs-study__link {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  margin-top: var(--sp-8);
  padding: var(--sp-3) var(--sp-4);
  border: var(--rule);
  text-decoration: none;
  color: var(--color-text);
  font-size: var(--fs-sm);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background-color 200ms cubic-bezier(0.25, 1, 0.5, 1), color 200ms cubic-bezier(0.25, 1, 0.5, 1);
}
.cs-study__link:hover {
  background-color: var(--color-text);
  color: var(--color-bg);
}

.cs-study__link-arrow {
  font-size: var(--fs-md);
}

/*# sourceMappingURL=work.css.map */
