@font-face {
  font-family: Sora;
  src: url("/assets/fonts/sora-regular.woff") format("woff");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: Sora;
  src: url("/assets/fonts/sora-semibold.woff") format("woff");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}
:root {
  --ws-color-mauve: #8b5d83;
  --ws-color-purple: #704f7d;
  --ws-color-sage: #a0c6a1;
  --ws-color-slate: #576a9b;
  --ws-page-bg: #fff;
  --ws-page-fg: #030404;
  --ws-surface: #fff;
  --ws-action-bg: #2192c8;
  --ws-action-fg: #fff;
  --ws-action-hover: #ab4f49;
  --ws-texture-opacity: 0;
  --ws-gutter: clamp(24px, 4.45vw, 88px);
  --ws-content: 1680px;
  color-scheme: light;
  font-family: Sora, sans-serif;
  font-synthesis: none;
  background: var(--ws-page-bg);
  color: var(--ws-page-fg);
}
html {
  overflow-x: hidden;
}

body.ws-site {
  background-color: var(--ws-page-bg);
}
.ws-site #ws-main {
  overflow-x: clip;
  min-width: 0;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  isolation: isolate;
  overflow-x: clip;
}
body.ws-menu-open {
  overflow: hidden;
}
button,
input,
textarea {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
button:disabled {
  cursor: default;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  color: inherit;
}
p,
h1,
h2,
h3,
ul {
  margin: 0;
}
h1,
h2,
h3 {
  font-weight: 600;
  letter-spacing: -0.055em;
}
p {
  font-size: clamp(1.125rem, 1.42vw, 1.375rem);
  line-height: 1.6;
  letter-spacing: -0.025em;
}
a,
button {
  touch-action: manipulation;
}
[hidden] {
  display: none !important;
}
svg {
  max-width: 100%;
}
::selection {
  background: var(--ws-page-fg);
  color: var(--ws-page-bg);
}
:focus-visible {
  outline: 3px solid var(--ws-page-fg);
  outline-offset: 6px;
}
button:focus-visible,
.ws-site-menu :focus-visible,
.ws-desktop-nav :focus-visible {
  outline-color: #030404;
}
.ws-button:focus-visible {
  outline-color: var(--ws-page-fg);
}
.ws-sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.ws-skip-link {
  position: fixed;
  left: 24px;
  top: 20px;
  z-index: 1001;
  padding: 15px 24px;
  background: #fff;
  color: #030404;
  border-radius: 32px;
  transform: translateY(-180%);
}
.ws-skip-link:focus {
  transform: none;
}
.ws-page-background {
  position: fixed;
  inset: 0;
  background: var(--ws-page-bg);
  z-index: -2;
  pointer-events: none;
}
.ws-page-background::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/assets/grain.png");
  background-repeat: repeat;
  opacity: var(--ws-texture-opacity);
  mix-blend-mode: var(--ws-texture-blend, soft-light);
  pointer-events: none;
}

html:is([data-theme="dark"], [data-theme="charcoal"]) .ws-page-background::after {
  background-image: radial-gradient(circle, #fff 0.65px, transparent 0.85px);
  background-size: 6px 6px;
  opacity: 0.12;
  mix-blend-mode: normal;
}
html[data-theme="white"] .ws-page-background::after {
  display: none;
}

html:not(.ws-theme-ready) .ws-theme-scene {
  background: var(--ws-local-bg);
  color: var(--ws-local-fg);
  --ws-surface: var(--ws-local-surface);
  --ws-action-bg: var(--ws-local-action);
  --ws-action-fg: var(--ws-local-action-fg);
  --ws-button-blue-bg: var(--ws-local-button-blue-bg);
  --ws-button-blue-hover: var(--ws-local-button-blue-hover);
  --ws-button-brick-bg: var(--ws-local-button-brick-bg);
  --ws-button-brick-hover: var(--ws-local-button-brick-hover);
  --ws-button-teal-bg: var(--ws-local-button-teal-bg);
  --ws-button-teal-hover: var(--ws-local-button-teal-hover);
  --ws-button-coral-bg: var(--ws-local-button-coral-bg);
  --ws-button-coral-hover: var(--ws-local-button-coral-hover);
}
.ws-js-ready .ws-no-js-menu {
  display: none;
}
.ws-site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px var(--ws-gutter);
  gap: 28px;
  pointer-events: none;
}
.ws-site-header > * {
  pointer-events: auto;
}
.ws-brand {
  display: block;
  width: clamp(180px, 16.1vw, 250px);
  flex-shrink: 0;
  line-height: 0;
}
.ws-brand svg {
  width: 100%;
  height: auto;
  fill: currentColor;
}
.ws-desktop-controls {
  display: flex;
  align-items: center;
  gap: var(--ws-navigation-gap);
  flex-shrink: 0;
}
.ws-desktop-nav {
  display: flex;
  align-items: center;
  gap: 5px;
  min-height: 64px;
  padding: 7px;
  background: var(--ws-surface);
  color: #030404;
  border-radius: 100px;
  box-shadow:
    inset 0 0 0 1.5px var(--ws-action-bg),
    0 3px 0 color-mix(in srgb, var(--ws-action-bg) 18%, transparent);
}
.ws-nav-contact.ws-button {
  flex-shrink: 0;
  white-space: nowrap;
}
.ws-desktop-nav a,
.ws-desktop-nav button {
  padding: 13px 21px;
  border: 0;
  background: transparent;
  font-size: 1.0625rem;
  line-height: 1.3;
  border-radius: 30px;
}
.ws-desktop-nav a:hover,
.ws-desktop-nav button:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.ws-burger {
  display: none;
}
.ws-mobile-dock,
.ws-mobile-fallback {
  display: none;
}
.ws-site-menu {
  position: fixed;
  inset: auto var(--ws-gutter) 24px auto;
  max-width: calc(100% - var(--ws-gutter) * 2);
  width: 1000px;
  max-height: calc(100svh - 115px);
  margin: 0;
  padding: 36px 42px 34px;
  background: var(--ws-surface);
  color: #030404;
  border: 0;
  border-radius: 36px;
  overflow: auto;
  overscroll-behavior: contain;
}
.ws-site-menu::backdrop {
  background: rgb(3 4 4 / 0.14);
}
.ws-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
}
.ws-menu-top p {
  font-size: 1.125rem;
}
.ws-menu-top button {
  background: #fff;
  border: 0;
  border-radius: 32px;
  padding: 13px 24px;
  font-size: 1.0625rem;
}
.ws-menu-columns {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 70px;
}
.ws-menu-main {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.ws-menu-main a {
  font-size: clamp(2.25rem, 3.4vw, 3.25rem);
  letter-spacing: -0.05em;
  line-height: 1.15;
}
.ws-menu-services {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 13px;
  padding: 8px 0;
}
.ws-menu-services a {
  font-size: 1.3125rem;
  line-height: 1.4;
  letter-spacing: -0.03em;
}
.ws-site-menu a:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.ws-button {
  --ws-button-bg: var(--ws-button-blue-bg, var(--ws-action-bg));
  --ws-button-hover: var(--ws-button-blue-hover, var(--ws-action-hover));
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  max-width: 100%;
  padding: 19px 30px;
  border: 0;
  border-radius: 100px;
  background: var(--ws-button-bg);
  color: var(--ws-action-fg);
  font-size: 1.125rem;
  line-height: 1.45;
  letter-spacing: -0.035em;
  text-align: center;
  font-weight: 600;
  vertical-align: middle;
}
.ws-button > span {
  position: relative;
  z-index: 2;
}
.ws-button > svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  z-index: 1;
  pointer-events: none;
}
.ws-button .ws-button-paint {
  fill: var(--ws-button-hover);
}
.ws-button .ws-button-base {
  fill: var(--ws-button-bg);
}
.ws-button:active > span {
  transform: translateY(1px);
}
.ws-button[data-accent="brick"] {
  --ws-button-bg: var(--ws-button-brick-bg);
  --ws-button-hover: var(--ws-button-brick-hover);
}
.ws-button[data-accent="teal"] {
  --ws-button-bg: var(--ws-button-teal-bg);
  --ws-button-hover: var(--ws-button-teal-hover);
}
.ws-button[data-accent="coral"] {
  --ws-button-bg: var(--ws-button-coral-bg);
  --ws-button-hover: var(--ws-button-coral-hover);
}
.ws-plain-control {
  background: none;
  border: 0;
  padding: 12px 0;
  text-decoration: underline;
  text-underline-offset: 5px;
  font-size: 1.125rem;
}
.ws-home-opening {
  padding: clamp(158px, 18vh, 220px) var(--ws-gutter) 0;
  max-width: var(--ws-content);
  margin: auto;
}
.ws-hero-composition {
  display: grid;
  grid-template-columns: minmax(0, 2.8fr) minmax(245px, 1fr);
  align-items: end;
  gap: 40px;
}
.ws-hero-composition h1 {
  font-size: clamp(4.375rem, 7.7vw, 8.875rem);
  line-height: 1.04;
  letter-spacing: -0.06em;
}
.ws-article-copy::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: url("/assets/grain.png");
  opacity: 0.075;
  mix-blend-mode: soft-light;
  pointer-events: none;
}
.ws-service-panel {
  display: flex;
  align-items: center;
  min-height: 100svh;
  position: relative;
}
.ws-service-frame {
  display: grid;
  grid-template-columns: minmax(0, 2.35fr) minmax(270px, 1fr);
  align-items: center;
  gap: clamp(36px, 5.7vw, 108px);
  width: 100%;
  max-width: var(--ws-content);
  margin: 0 auto;
  padding: 130px var(--ws-gutter) 120px;
  min-height: 100svh;
}
.ws-client-strip {
  overflow-x: auto;
  overscroll-behavior-x: contain;
  margin-top: 60px;
  scrollbar-width: thin;
  padding: 15px 0 30px;
}
.ws-client-strip ul {
  list-style: none;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 65px;
  width: max-content;
}
.ws-client-strip li {
  font-size: clamp(1.4375rem, 2.3vw, 2.25rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  white-space: nowrap;
}
.ws-site-footer {
  padding: 115px var(--ws-gutter) 34px;
}
.ws-closing-lead {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(270px, 1fr);
  align-items: end;
  gap: 70px;
  max-width: calc(var(--ws-content) - var(--ws-gutter) * 2);
  margin: 0 auto 100px;
}
.ws-closing-lead :is(h2, :where(.ws-footer-title)) {
  font-size: clamp(4.75rem, 10.3vw, 11.25rem);
  line-height: 1.04;
}
.ws-closing-lead .ws-button {
  margin-top: 32px;
}
.ws-footer-info {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.3fr) minmax(0, 0.55fr);
  gap: 50px;
  max-width: calc(var(--ws-content) - var(--ws-gutter) * 2);
  margin: auto;
}
.ws-footer-info > div > p {
  font-size: 1.5625rem;
  line-height: 1.4;
  margin-bottom: 22px;
}
.ws-footer-info nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  font-size: 1.0625rem;
  line-height: 1.5;
}
.ws-footer-info nav a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.ws-footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 15px;
  margin: 80px auto 0;
  max-width: calc(var(--ws-content) - var(--ws-gutter) * 2);
  font-size: 0.875rem;
  line-height: 1.5;
}
.ws-article-opening {
  padding: 160px var(--ws-gutter) 100px;
  min-height: 85svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ws-article-opening h1 {
  font-size: clamp(4.125rem, 8.8vw, 8.875rem);
  line-height: 1.07;
  max-width: 1300px;
}
.ws-article-opening > p {
  max-width: 680px;
  margin: 40px 0 0;
  font-size: clamp(1.375rem, 2vw, 1.875rem);
}
.ws-article-body {
  padding: 130px var(--ws-gutter);
}
.ws-article-body > section {
  max-width: 820px;
  margin: 0 auto 75px;
}
.ws-article-body > section:last-child {
  margin-bottom: 0;
}
.ws-article-body h2 {
  font-size: clamp(2rem, 3.1vw, 3rem);
  line-height: 1.15;
  margin-bottom: 28px;
}
form {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
form label {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 1.125rem;
  line-height: 1.5;
}
input,
textarea {
  min-width: 0;
  width: 100%;
  border: 1px solid #03040455;
  border-radius: 18px;
  padding: 18px 20px;
  color: #030404;
  background: #fff;
  font-size: 1.1875rem;
  line-height: 1.5;
}
textarea {
  resize: vertical;
  min-height: 160px;
}
fieldset {
  padding: 0;
  margin: 0;
  border: 0;
  min-width: 0;
}
legend {
  padding: 0;
  margin-bottom: 18px;
  font-size: 1.125rem;
  line-height: 1.5;
}
form > .ws-button {
  align-self: flex-start;
}
.ws-page-paint {
  position: fixed;
  inset: 0;
  z-index: 999;
  visibility: hidden;
  pointer-events: none;
}
.ws-page-paint svg {
  width: 100%;
  height: 100%;
  display: block;
  max-width: none;
}
html[data-arrival="paint"] .ws-page-paint {
  visibility: visible;
  background: #fff;
}
body.ws-is-navigating .ws-page-paint {
  pointer-events: auto;
}
#ws-main {
  scroll-margin-top: 0;
}
@media (min-width: 1101px) {
  .ws-site-menu {
    inset: var(--ws-desktop-menu-top, 104px) var(--ws-desktop-menu-right, var(--ws-gutter)) auto auto;
    width: 740px;
    max-height: calc(100svh - var(--ws-desktop-menu-top, 104px) - 24px);
    padding: 30px 34px;
    border-radius: 32px;
    box-shadow:
      inset 0 0 0 1px var(--ws-action-bg),
      0 12px 32px rgb(3 4 4 / 0.06);
  }
  .ws-site-menu .ws-menu-columns {
    gap: 40px;
  }
  .ws-site-menu .ws-menu-top {
    margin-bottom: 24px;
  }
}
@media (min-width: 1800px) {
  .ws-service-frame {
    gap: 105px;
  }
  .ws-home-opening {
    padding-top: 195px;
  }
}
@media (max-width: 1100px) {
  .ws-desktop-controls {
    display: none;
  }
  .ws-desktop-nav {
    display: none;
  }
  .ws-burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 7px;
    width: 58px;
    height: 54px;
    background: var(--ws-surface);
    color: #030404;
    border: 0;
    border-radius: 28px;
    flex-shrink: 0;
  }
  .ws-burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
  }
  .ws-mobile-fallback {
    display: block;
    background: var(--ws-surface);
    color: #030404;
    padding: 14px 20px;
    border-radius: 28px;
  }
  .ws-mobile-dock {
    position: fixed;
    z-index: 35;
    left: 50%;
    bottom: max(18px, env(safe-area-inset-bottom));
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-width: 330px;
    max-width: calc(100% - 32px);
    padding: 8px;
    background: var(--ws-surface);
    color: #030404;
    border-radius: 100px;
    box-shadow: 0 3px 22px #0304040b;
  }
  .ws-mobile-dock > a,
  .ws-mobile-dock > button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    border: 0;
    border-radius: 40px;
    background: transparent;
    color: inherit;
    padding: 14px 24px;
    font-size: 1.0625rem;
    min-height: 48px;
  }
  .ws-mobile-dock > .ws-dock-contact {
    min-height: 48px;
    background: var(--ws-button-bg);
    color: var(--ws-action-fg);
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.25;
  }
  .ws-small-burger {
    display: grid;
    gap: 5px;
  }
  .ws-small-burger i {
    display: block;
    height: 2px;
    width: 19px;
    background: currentColor;
    border-radius: 2px;
  }
  .ws-site-menu {
    left: 18px;
    right: 18px;
    bottom: 100px;
    width: auto;
    max-width: none;
    padding: 30px;
    border-radius: 32px;
    max-height: calc(100svh - 195px);
  }
  .ws-site-menu .ws-menu-columns {
    gap: 38px;
  }
  .ws-site-footer {
    padding-bottom: 125px;
  }
  .ws-service-frame {
    grid-template-columns: minmax(0, 1.8fr) minmax(255px, 1fr);
    gap: 40px;
    padding-bottom: 130px;
  }
  .ws-footer-info {
    gap: 30px;
  }
  .ws-closing-lead {
    gap: 40px;
  }
}
@media (max-width: 800px) {
  .ws-site-header {
    padding: 20px var(--ws-gutter);
  }
  .ws-brand {
    width: 190px;
  }
  .ws-home-opening {
    padding-top: 145px;
  }
  .ws-hero-composition {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .ws-hero-composition h1 {
    font-size: clamp(3.125rem, 10vw, 5.125rem);
    line-height: 1.07;
  }
  .ws-service-frame {
    grid-template-columns: 1fr;
    gap: 35px;
    padding-top: 126px;
    padding-bottom: 135px;
    align-content: center;
    min-height: 100svh;
  }
  .ws-client-strip {
    margin-top: 35px;
  }
  .ws-client-strip ul {
    gap: 40px;
  }
  .ws-closing-lead {
    grid-template-columns: 1fr;
    gap: 38px;
    margin-bottom: 70px;
  }
  .ws-closing-lead :is(h2, :where(.ws-footer-title)) {
    font-size: 6rem;
  }
  .ws-closing-lead > div {
    max-width: 520px;
  }
  .ws-footer-info {
    grid-template-columns: 1.6fr 1fr;
    gap: 40px;
  }
  .ws-footer-info > div {
    grid-column: 1/-1;
  }
  .ws-footer-legal {
    justify-content: flex-start;
    column-gap: 25px;
    margin-top: 55px;
  }
  .ws-article-opening {
    min-height: 75svh;
  }
  .ws-article-opening h1 {
    font-size: 4.875rem;
  }
  .ws-article-body {
    padding-top: 95px;
    padding-bottom: 95px;
  }
  .ws-site-menu {
    padding: 25px;
  }
  .ws-menu-services a {
    font-size: 1.125rem;
  }
  .ws-menu-main a {
    font-size: 2.6875rem;
  }
}
@media (max-width: 520px) {
  :root {
    --ws-gutter: 24px;
  }
  p {
    font-size: 1.125rem;
    line-height: 1.6;
  }
  .ws-site-header {
    padding-top: 18px;
    padding-bottom: 18px;
  }
  .ws-brand {
    width: 172px;
  }
  .ws-burger {
    width: 54px;
    height: 50px;
  }
  .ws-button {
    min-height: 60px;
    font-size: 1.0625rem;
    padding: 17px 24px;
    line-height: 1.5;
  }
  .ws-home-opening {
    padding-top: 137px;
  }
  .ws-hero-composition {
    gap: 28px;
  }
  .ws-hero-composition h1 {
    font-size: clamp(2.25rem, 11.3vw, 3.6875rem);
    letter-spacing: -0.06em;
  }
  .ws-service-frame {
    gap: 28px;
    padding-top: 116px;
    padding-bottom: 124px;
  }
  .ws-client-strip li {
    font-size: 1.625rem;
  }
  .ws-client-strip {
    margin-top: 30px;
  }
  .ws-site-footer {
    padding-top: 85px;
  }
  .ws-closing-lead :is(h2, :where(.ws-footer-title)) {
    font-size: clamp(3.25rem, 15vw, 4.75rem);
  }
  .ws-closing-lead p {
    font-size: 1.125rem;
  }
  .ws-closing-lead .ws-button {
    margin-top: 27px;
  }
  .ws-footer-info {
    grid-template-columns: 1.6fr 1fr;
    gap: 35px 25px;
  }
  .ws-footer-info nav {
    font-size: 0.9375rem;
    gap: 14px;
  }
  .ws-footer-info > div > p {
    font-size: 1.5625rem;
  }
  .ws-footer-legal {
    font-size: 0.75rem;
    gap: 14px 20px;
  }
  .ws-footer-legal a {
    width: 100%;
  }
  .ws-mobile-dock {
    min-width: 0;
    width: calc(100% - 32px);
    max-width: 390px;
    bottom: max(16px, env(safe-area-inset-bottom));
    padding: 7px;
  }
  .ws-mobile-dock > a,
  .ws-mobile-dock > button {
    padding: 12px 23px;
    font-size: 1rem;
    gap: 28px;
  }
  .ws-site-menu {
    left: 16px;
    right: 16px;
    bottom: 96px;
    padding: 25px 24px;
    max-height: calc(100svh - 190px);
    border-radius: 28px;
  }
  .ws-menu-top {
    margin-bottom: 25px;
  }
  .ws-menu-top p {
    font-size: 0.9375rem;
  }
  .ws-menu-top button {
    font-size: 0.9375rem;
    padding: 10px 18px;
  }
  .ws-menu-columns {
    display: block;
  }
  .ws-menu-main {
    gap: 12px;
  }
  .ws-menu-main a {
    font-size: 2.375rem;
  }
  .ws-menu-services {
    margin-top: 27px;
    gap: 17px;
    padding-top: 0;
  }
  .ws-menu-services a {
    font-size: 1.0625rem;
  }
  .ws-article-opening {
    padding-top: 135px;
    padding-bottom: 80px;
    min-height: 75svh;
  }
  .ws-article-opening h1 {
    font-size: clamp(2.8125rem, 12.9vw, 4.1875rem);
  }
  .ws-article-opening > p {
    font-size: 1.375rem;
    margin-top: 30px;
  }
  .ws-article-body {
    padding-top: 85px;
    padding-bottom: 85px;
  }
  .ws-article-body > section {
    margin-bottom: 60px;
  }
  .ws-article-body h2 {
    font-size: 2.125rem;
    margin-bottom: 22px;
  }
  form {
    gap: 28px;
  }
  form label,
  legend {
    font-size: 1.0625rem;
  }
  input,
  textarea {
    font-size: 1.125rem;
    padding: 16px 18px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .ws-page-paint {
    display: none !important;
  }
}
@media print {
  .ws-page-background,
  .ws-site-header,
  .ws-mobile-dock,
  .ws-site-menu,
  .ws-page-paint,
  .ws-button,
  .ws-skip-link {
    display: none !important;
  }
  html,
  body {
    background: #fff !important;
    color: #000 !important;
  }
  .ws-theme-scene {
    background: none !important;
    color: #000 !important;
  }
  .ws-site :has(> .ws-stage-enhanced) {
    padding: 0 !important;
    height: auto !important;
  }
  .ws-service-frame {
    min-height: 0;
    padding: 30px 0;
    break-inside: avoid;
  }
  .ws-service-panel {
    min-height: 0;
  }
  .ws-site-footer {
    padding: 30px 0;
  }
  .ws-footer-legal {
    margin-top: 25px;
  }
}

.ws-brand svg {
  overflow: visible;
  filter: none;
}
.ws-brand :is(path, polygon) {
  stroke: var(--ws-page-bg);
  stroke-width: 2.5px;
  stroke-linejoin: round;
}
.ws-footer-badge {
  display: block;
  width: 120px;
  max-width: 100%;
  line-height: 0;
  margin-bottom: 28px;
}
.ws-footer-badge svg {
  display: block;
  width: 100%;
  height: auto;
  fill: currentColor;
}
.ws-home-opening {
  min-height: 0;
}
.ws-desktop-nav :is(a, button),
.ws-menu-main a,
.ws-menu-services a {
  position: relative;
  isolation: isolate;
}
.ws-menu-main a,
.ws-menu-services a {
  padding-block: 5px;
  min-height: 44px;
}
.ws-desktop-nav :is(a, button):is(:hover, :focus-visible, :active) {
  background: #fff;
  color: #030404;
}
.ws-desktop-nav :is(a, button):hover,
.ws-site-menu a:hover {
  text-decoration: none;
}
.ws-site .ws-site-menu [data-menu-close]:focus-visible {
  outline-width: 2px;
  outline-offset: 4px;
  box-shadow: none;
}
.ws-site .ws-site-menu.ws-pointer-open [data-menu-close]:focus {
  outline: none;
  box-shadow: none;
}
.ws-footer-info nav a:is(:hover, :focus-visible, [aria-current]) {
  text-decoration: underline;
  text-decoration-color: var(--ws-link-colour);
  text-decoration-thickness: 3px;
  text-underline-offset: 6px;
}
.ws-site :focus-visible {
  outline: 3px solid currentColor;
  outline-offset: 5px;
  box-shadow: 0 0 0 3px var(--ws-page-bg);
}
.ws-site :is(main, section, article, footer, div, span, h1, h2, h3, h4, h5, h6)[tabindex="-1"]:focus-visible {
  outline: none;
  box-shadow: none;
}
.ws-site :is(input, textarea):focus-visible {
  outline-color: #030404;
  box-shadow: 0 0 0 3px #fff;
}
.ws-site :is(.ws-choice, .ws-directory-card, .ws-news-card):focus-within {
  outline: 3px solid var(--ws-page-fg);
  outline-offset: 5px;
}
.ws-theme-scene a:not(.ws-button):focus-visible {
  border-radius: 3px;
}
.ws-site :is(h1, h2, h3, p, a, button, label, legend) {
  overflow-wrap: break-word;
}
.ws-site :is(input, textarea, button, a) {
  scroll-margin-block: 120px;
}
.ws-hero-composition > *,
.ws-service-frame > *,
.ws-closing-lead > * {
  min-width: 0;
}
@media (max-width: 1100px) {
  .ws-site :is(input, textarea, button, a) {
    scroll-margin-block: 125px;
  }
  .ws-site-menu :is(a, button) {
    scroll-margin-block: 24px;
  }
}
@media (prefers-contrast: more) {
  .ws-site :is(.ws-service-copy > p, .ws-article-opening > p, .ws-directory-card > p, .ws-news-card > p) {
    background: #030404;
    color: #fff;
    padding: 12px;
    border-radius: 12px;
  }
  .ws-site :is(h1, h2, h3, .ws-selling-card > p) {
    text-shadow:
      1px 1px #030404,
      -1px -1px #030404;
  }
}
@media (forced-colors: active) {
  .ws-site .ws-button,
  .ws-site .ws-desktop-nav,
  .ws-site .ws-site-menu {
    border: 1px solid ButtonText;
  }
  .ws-brand svg {
    filter: none;
  }
  .ws-page-background::after {
    display: none;
  }
  .ws-site .ws-button svg {
    display: none;
  }
  .ws-site :focus-visible {
    outline-color: Highlight;
    box-shadow: none;
  }
}

[data-ws-link-theme] {
  --ws-link-ink: var(--ws-link-colour);
}
.ws-desktop-nav :is(a, button),
.ws-menu-main a,
.ws-menu-services a {
  text-decoration-thickness: 2px;
  text-underline-offset: 0.24em;
  text-decoration-skip-ink: auto;
}
.ws-desktop-nav :is(a, button):is(:hover, :focus-visible, :active, [aria-current], [data-ws-current-section]),
.ws-menu-main a:is(:hover, :focus-visible, :active, [aria-current], [data-ws-current-section]),
.ws-menu-services a:is(:hover, :focus-visible, :active, [aria-current], [data-ws-current-section]) {
  color: var(--ws-link-ink, #030404);
  text-decoration: none;
}
.ws-menu-main a:is([aria-current], [data-ws-current-section]),
.ws-menu-services a:is([aria-current], [data-ws-current-section]) {
  text-decoration-line: underline;
  text-decoration-color: currentColor;
}
.ws-nav-contact[aria-current] > span,
.ws-dock-contact[aria-current] > span {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.24em;
  text-decoration-skip-ink: auto;
}

.ws-footer-info nav a {
  --ws-link-ink: #ffffff;
  color: #ffffff;
}
html:is([data-theme="dark"], [data-theme="charcoal"])
  .ws-footer-info
  nav
  a:not([data-ws-link-theme="dark"], [data-ws-link-theme="charcoal"]) {
  --ws-link-ink: var(--ws-link-colour, #ffffff);
}
.ws-footer-info nav a:is(:hover, :focus-visible, [aria-current], [data-ws-current-section]) {
  color: var(--ws-link-ink, #030404);
  text-decoration-line: underline;
  text-decoration-color: currentColor;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}

html {
  scrollbar-gutter: stable;
}
html.ws-menu-open,
html.ws-is-navigating {
  overflow: hidden;
}
.ws-site-menu {
  scrollbar-gutter: stable;
  scroll-padding-block: 16px;
}
@media (max-width: 1100px) {
  .ws-mobile-dock {
    bottom: max(10px, env(safe-area-inset-bottom));
    padding: 5px;
    min-height: 54px;
    border: 1px solid var(--ws-dock-border);
  }
  .ws-mobile-dock > a,
  .ws-mobile-dock > button {
    min-height: 44px;
    padding: 10px 20px;
    gap: 16px;
  }
  .ws-mobile-dock > .ws-dock-contact {
    min-height: 44px;
    --ws-button-bg: var(--ws-dock-action-bg);
    --ws-button-hover: var(--ws-dock-action-hover);
    color: var(--ws-dock-action-fg);
  }
  .ws-site-menu {
    bottom: calc(86px + env(safe-area-inset-bottom));
    max-height: calc(100dvh - 110px - env(safe-area-inset-top) - env(safe-area-inset-bottom));
    padding: 20px 24px;
    border-radius: 28px;
  }
  .ws-site-menu .ws-menu-top {
    margin-bottom: 14px;
    gap: 12px;
  }
  .ws-site-menu .ws-menu-top button {
    min-height: 44px;
    padding: 10px 18px;
  }
  .ws-site-menu .ws-menu-columns {
    gap: 24px;
  }
  .ws-site-menu .ws-menu-main {
    gap: 2px;
  }
  .ws-site-menu .ws-menu-main a {
    font-size: clamp(1.45rem, 3.5vw, 2.15rem);
    line-height: 1.15;
    min-height: 44px;
    padding-block: 8px;
  }
  .ws-site-menu .ws-menu-services {
    gap: 0;
    padding: 0;
  }
  .ws-site-menu .ws-menu-services a {
    font-size: 1rem;
    line-height: 1.25;
    min-height: 44px;
    padding-block: 10px;
  }
}
@media (max-width: 520px) {
  .ws-site-menu {
    left: 10px;
    right: 10px;
    padding: 16px 18px;
  }
  .ws-site-menu .ws-menu-columns {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 16px;
    align-items: start;
  }
  .ws-site-menu .ws-menu-main a {
    font-size: 1.5rem;
    letter-spacing: -0.045em;
  }
  .ws-site-menu .ws-menu-services {
    margin-top: 0;
  }
  .ws-site-menu .ws-menu-services a {
    font-size: 0.9375rem;
    padding-block: 9px;
  }
  .ws-site-menu .ws-menu-top p {
    font-size: 0.875rem;
  }
  .ws-mobile-dock {
    width: calc(100% - 24px);
    max-width: 360px;
  }
  .ws-mobile-dock > a,
  .ws-mobile-dock > button {
    font-size: 0.9375rem;
    gap: 14px;
    padding: 10px 20px;
  }
}
@media (max-width: 360px) {
  .ws-site-menu .ws-menu-columns {
    gap: 10px;
  }
  .ws-site-menu .ws-menu-main a {
    font-size: 1.25rem;
  }
  .ws-site-menu .ws-menu-services a {
    font-size: 0.875rem;
  }
}

.ws-circle-cursor {
  position: fixed;
  inset: 0 auto auto 0;
  margin: 0;
  padding: 0;
  width: 32px;
  height: 32px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: transparent;
  color: #fff;
  box-shadow: 0 0 0 1px #03040450;
  pointer-events: none;
  z-index: 2000;
  mix-blend-mode: difference;
  opacity: 0;
  overflow: visible;
}
.ws-circle-cursor::backdrop {
  background: transparent;
  pointer-events: none;
}
.ws-cursor-visible,
.ws-cursor-visible * {
  cursor: none !important;
}
.ws-magnet-zone {
  display: inline-flex;
  vertical-align: middle;
  max-width: 100%;
  position: relative;
  align-items: center;
  justify-content: center;
}
.ws-magnetic-button {
  will-change: transform;
}
.ws-magnetic-button > span {
  display: inline-block;
  pointer-events: none;
}
.ws-type-word {
  display: inline-block;
  white-space: nowrap;
}
.ws-type-char {
  display: inline-block;
}

:root {
  --ws-navigation-gap: 14px;
  --ws-button-row-gap: 22px;
  --ws-intro-width: 1440px;
  --ws-wide-width: 1840px;
  --ws-card-padding: 36px;
  --ws-card-gap: 28px;
  --ws-card-radius: 32px;
  --ws-section-space: 140px;
  --ws-block-gap: var(--ws-section-space);
  --ws-header-gap: var(--ws-section-space);
  --ws-intro-gap: var(--ws-card-gap);
  --ws-title-tracking: -0.055em;
  --ws-header-bottom: calc(1.125rem * 1.45 + 88px);
  --ws-frame-top: calc(var(--ws-header-bottom) + var(--ws-block-gap));
}

:root {
  --ws-content: calc(var(--ws-intro-width) + var(--ws-gutter) * 2);
}
.ws-site .ws-home-opening {
  padding-top: var(--ws-frame-top);
}
.ws-site .ws-article-opening {
  max-width: var(--ws-content);
  margin-inline: auto;
}

.ws-site .ws-service-frame,
.ws-site .ws-hero-composition {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--ws-intro-gap);
  align-items: start;
  align-content: start;
  width: calc(100% - var(--ws-gutter) * 2);
  max-width: var(--ws-intro-width);
  margin-inline: auto;
  padding-inline: 0;
}
.ws-site :is(.ws-portfolio-heading, .ws-service-details, .ws-more-news) > h2 {
  letter-spacing: var(--ws-title-tracking);
}

.ws-site #ws-main > :is(section, :where(.ws-portfolio-index)),
.ws-site .ws-article-opening,
.ws-site .ws-article-body {
  min-height: 0;
  padding-block: var(--ws-section-space);
}
.ws-site #ws-main > section:first-child {
  padding-top: var(--ws-frame-top);
}
.ws-site #ws-main > :is(.ws-page-opening, .ws-service-opening),
.ws-site .ws-article-opening {
  padding-top: var(--ws-frame-top);
}
.ws-site .ws-article-body > section:not(:last-child) {
  margin-bottom: var(--ws-block-gap);
}
.ws-site :is(.ws-split-intro, .ws-service-frame, .ws-hero-composition) > :first-child {
  grid-column: span 2;
}
.ws-site :is(.ws-split-intro, .ws-service-frame, .ws-hero-composition) > :last-child {
  grid-column: 3;
  max-width: none;
}

.ws-site
  :is(
    .ws-selling-card,
    .ws-feature-card,
    .ws-work-card,
    .ws-directory-card,
    .ws-news-card,
    .ws-service-choice,
    .ws-visual-card,
    .ws-visual-face
  ) {
  padding: var(--ws-card-padding);
  border-radius: var(--ws-card-radius);
}
.ws-site
  :is(
    .ws-selling-points,
    .ws-feature-grid,
    .ws-portfolio-grid,
    .ws-service-directory,
    .ws-news-grid,
    .ws-service-benefits,
    .ws-picker-track,
    .ws-visual-steps
  ) {
  gap: var(--ws-card-gap);
}
.ws-site :is(.ws-feature-card, .ws-work-card) {
  gap: var(--ws-card-gap);
}
.ws-difference {
  width: calc(100% - var(--ws-gutter) * 2);
  max-width: var(--ws-intro-width);
  margin-inline: auto;
}
.ws-home .ws-service-panel {
  display: block;
  min-height: 0;
  padding: var(--ws-section-space) 0;
  position: relative;
  scroll-margin-top: 0;
}
.ws-home .ws-service-frame {
  padding-block: 0;
  min-height: 0;
  flex: none;
}
.ws-home .ws-service-benefits {
  margin-block: 0;
}
.ws-service-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: calc(100% - var(--ws-gutter) * 2);
  max-width: calc(var(--ws-content) - var(--ws-gutter) * 2);
  margin-inline: auto;
  flex: none;
}

.ws-site .ws-home-opening {
  max-width: none;
  padding-inline: 0;
}
.ws-home-opening .ws-service-picker {
  margin-top: var(--ws-header-gap);
}
.ws-hero-composition h1 {
  font-size: clamp(3rem, 6.7vw, 8rem);
}
.ws-service-picker {
  width: 100%;
}
.ws-picker-strip {
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-width: thin;
  padding: 0;
  scroll-padding-inline: var(--ws-gutter);
}
.ws-picker-track {
  position: relative;
  display: flex;
  width: max-content;
  padding-inline: var(--ws-gutter);
}
.ws-picker-looping {
  overflow-x: clip;
  touch-action: pan-y;
}
.ws-picker-looping .ws-picker-track {
  padding-inline: 0;
}
.ws-picker-looping .ws-service-choice {
  will-change: transform;
}
.ws-service-choice {
  flex: 0 0 var(--ws-picker-card-width, clamp(300px, 29vw, 480px));
  width: var(--ws-picker-card-width, clamp(300px, 29vw, 480px));
  min-height: 380px;
  background: var(--ws-choice-bg);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--ws-card-gap);
  isolation: isolate;
  position: relative;
  overflow: hidden;
}

@media (prefers-reduced-motion: no-preference) {
  html.ws-theme-ready .ws-picker-track {
    width: 100%;
    padding-inline: 0;
  }
  html.ws-theme-ready .ws-service-choice {
    --ws-picker-card-width: max(
      var(--ws-picker-base-width, clamp(300px, 29vw, 480px)),
      calc((100% + var(--ws-card-gap)) / 5)
    );
  }
}
.ws-service-choice::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: url("/assets/grain.png");
  opacity: 0.075;
  mix-blend-mode: soft-light;
  pointer-events: none;
}
.ws-service-choice :is(h3, :where(.ws-service-choice-title)) {
  font-size: clamp(2rem, 2.8vw, 3rem);
  line-height: 1.16;
  letter-spacing: -0.055em;
}
.ws-service-choice p {
  font-size: 1.1875rem;
  line-height: 1.6;
  max-width: 30ch;
}
.ws-service-choice > .ws-button,
.ws-service-choice > .ws-magnet-zone {
  margin-top: auto;
}
.ws-service-choice .ws-button {
  --ws-button-bg: var(--ws-choice-button-bg);
  --ws-button-hover: #fff;
  color: #030404;
}
.ws-site .ws-button-matched {
  --ws-button-bg: var(--ws-shot-bonus-bg);
  --ws-button-hover: #fff;
  color: var(--ws-shot-bonus-fg);
  border: 1px solid rgba(255, 255, 255, 0.6);
}
.ws-site .ws-button-matched .ws-button-label-copy {
  color: #030404;
}

.ws-button .ws-button-ink {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  display: block;
  border-radius: 50%;
  background: var(--ws-button-hover);
  pointer-events: none;
  transform: scale(0);
  will-change: transform;
}
.ws-button.ws-button-layered {
  overflow: visible;
}
.ws-button > .ws-button-paint-window {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  overflow: hidden;
  border-radius: inherit;
  pointer-events: none;
}
.ws-button > .ws-button-label {
  display: inline-block;
  overflow: hidden;
  vertical-align: middle;
}
.ws-button-label-main {
  display: block;
}
.ws-button-label-copy {
  position: absolute;
  inset: 0;
  display: block;
  transform: translateY(115%);
}

.ws-nav-word {
  position: relative;
  display: inline-block;
  vertical-align: bottom;
  text-decoration: inherit;
}
.ws-nav-window {
  display: block;
  position: relative;
  overflow: hidden;
}
.ws-nav-line {
  display: block;
  white-space: nowrap;
}
.ws-nav-line-copy {
  position: absolute;
  bottom: 100%;
  left: 0;
  pointer-events: none;
}
.ws-nav-letter {
  display: inline-block;
}
.ws-client-gallery {
  width: 100%;
  margin-top: var(--ws-header-gap);
}
.ws-client-gallery .ws-client-strip {
  margin: 0;
  padding: 0;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-width: thin;
}
.ws-client-track {
  display: flex;
  width: max-content;
  will-change: transform;
}
.ws-client-strip .ws-client-group {
  display: flex;
  align-items: center;
  gap: 64px;
  flex-shrink: 0;
  width: max-content;
  padding: 0 64px 0 0;
  margin: 0;
  list-style: none;
}
.ws-client-group li {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 96px;
  white-space: nowrap;
}
.ws-client-group img {
  width: 220px;
  height: 80px;
  object-fit: contain;
}
.ws-client-playing .ws-client-strip {
  overflow-x: clip;
}

.ws-site .ws-client-gallery-logos .ws-client-group {
  gap: 64px;
  padding-right: 64px;
}
.ws-play-title {
  display: block;
  font: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  text-align: left;
  color: inherit;
  background: none;
  border: 0;
  padding: 0;
  touch-action: manipulation;
  cursor: pointer;
  max-width: 100%;
}
.ws-play-title:focus-visible {
  outline: 3px solid currentColor;
  outline-offset: 12px;
  border-radius: 12px;
}
.ws-play-title:disabled {
  color: inherit;
  opacity: 1;
  cursor: default;
}
.ws-home .ws-closing-lead :is(h2, :where(.ws-footer-title)) {
  position: relative;
  isolation: isolate;
}
.ws-site .ws-site-footer {
  padding-block: var(--ws-section-space);
}
.ws-site .ws-closing-lead {
  margin-bottom: var(--ws-header-gap);
}
.ws-site .ws-footer-legal {
  margin-top: var(--ws-block-gap);
}

.ws-site-footer {
  --ws-circle-size: 64px;
  --ws-footer-link-size: 1.0625rem;
}
.ws-site .ws-footer-info,
.ws-site .ws-footer-legal {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: var(--ws-card-gap);
  max-width: var(--ws-intro-width);
  width: 100%;
  margin-inline: auto;
  align-items: start;
}
.ws-site .ws-footer-info > * {
  min-width: 0;
}
.ws-site .ws-footer-location {
  padding-right: clamp(24px, 4vw, 80px);
}
.ws-site .ws-footer-info nav a {
  overflow-wrap: anywhere;
}
.ws-site .ws-footer-info .ws-footer-location > p {
  max-width: 40ch;
  font-size: var(--ws-footer-link-size);
  line-height: 1.6;
  letter-spacing: 0;
  margin-bottom: 0;
}
.ws-site .ws-footer-info nav {
  font-size: var(--ws-footer-link-size);
}
.ws-footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.ws-footer-socials li {
  display: block;
  flex: none;
}
:is(.ws-site-footer, .ws-contact-social) .ws-circle-control {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--ws-circle-size);
  height: var(--ws-circle-size);
  min-height: var(--ws-circle-size);
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--ws-action-bg);
  color: var(--ws-action-fg);
  line-height: 1;
  vertical-align: top;
  flex: none;
}
.ws-circle-control svg {
  display: block;
  width: 24px;
  height: 24px;
  fill: currentColor;
}
:is(.ws-site-footer, .ws-contact-social) .ws-social-link:is(:hover, :focus-visible) {
  background: var(--ws-action-hover);
  border-radius: 50%;
}
.ws-site-footer .ws-back-top {
  font-size: 30px;
  font-weight: 400;
  --ws-button-bg: var(--ws-action-bg);
  --ws-button-hover: var(--ws-action-hover);
}
.ws-site-footer .ws-back-top .ws-button-label {
  min-width: 1.2em;
  line-height: 1.2;
}
.ws-footer-top {
  grid-column: 3;
  justify-self: end;
  line-height: 0;
}
@media (max-width: 1100px) {
  .ws-site .ws-site-footer {
    padding-bottom: calc(var(--ws-section-space) + 64px + env(safe-area-inset-bottom));
  }
}
@media (max-width: 800px) {
  .ws-site .ws-footer-info {
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
    row-gap: var(--ws-block-gap);
  }
  .ws-site .ws-footer-location {
    grid-column: 1/-1;
  }
  .ws-site .ws-footer-location {
    padding-right: 0;
  }
  .ws-site .ws-footer-info .ws-footer-location > p {
    max-width: 60ch;
  }
  .ws-site .ws-footer-legal {
    grid-template-columns: minmax(0, 1fr) auto;
    row-gap: 24px;
  }
  .ws-footer-socials {
    grid-column: 1;
    grid-row: 1;
  }
  .ws-footer-top {
    grid-column: 2;
    grid-row: 1;
  }
}
@media (max-width: 520px) {
  .ws-site-footer {
    --ws-circle-size: 60px;
    --ws-footer-link-size: 0.9375rem;
  }
  .ws-footer-socials {
    gap: 10px;
  }
}
@media (forced-colors: active) {
  :is(.ws-site-footer, .ws-contact-social) .ws-circle-control {
    border: 1px solid ButtonText;
  }
  :is(.ws-site-footer, .ws-contact-social) .ws-circle-control svg {
    fill: ButtonText;
  }
}
@media (max-width: 1100px) {
  :root {
    --ws-section-space: 70px;
    --ws-card-padding: 30px;
    --ws-card-gap: 24px;
  }
}
@media (max-width: 760px) {
  :root {
    --ws-card-padding: 24px;
    --ws-card-gap: 20px;
    --ws-card-radius: 26px;
    --ws-intro-gap: 28px;
  }
  .ws-site .ws-service-frame,
  .ws-site .ws-hero-composition {
    grid-template-columns: 1fr;
    align-content: start;
  }
  .ws-site :is(.ws-split-intro, .ws-service-frame, .ws-hero-composition) > :first-child,
  .ws-site :is(.ws-split-intro, .ws-service-frame, .ws-hero-composition) > :last-child {
    grid-column: 1;
  }
  .ws-service-benefits {
    grid-template-columns: 1fr;
  }
  .ws-service-choice p {
    font-size: 1.125rem;
  }
  .ws-service-choice {
    --ws-picker-base-width: 80vw;
    width: var(--ws-picker-card-width, 80vw);
    flex-basis: var(--ws-picker-card-width, 80vw);
    min-height: 360px;
  }
  .ws-service-choice :is(h3, :where(.ws-service-choice-title)) {
    font-size: 2rem;
  }
  .ws-client-strip .ws-client-group {
    gap: 38px;
    padding-right: 38px;
  }
  .ws-client-group li {
    min-height: 80px;
  }
}
@media (max-width: 1100px) {
  :root {
    --ws-header-bottom: 102px;
  }
}
@media (max-width: 520px) {
  :root {
    --ws-header-bottom: 86px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .ws-client-track {
    transform: none !important;
  }
  .ws-client-group[aria-hidden="true"] {
    display: none;
  }
  .ws-magnetic-button {
    will-change: auto;
  }
}
@media (prefers-reduced-motion: reduce), (pointer: coarse), (forced-colors: active) {
  .ws-circle-cursor {
    display: none !important;
  }
  .ws-cursor-visible,
  .ws-cursor-visible * {
    cursor: revert !important;
  }
}
@media print {
  .ws-circle-cursor {
    display: none !important;
  }
  .ws-client-group[aria-hidden="true"] {
    display: none;
  }
  .ws-client-track {
    transform: none !important;
    display: block;
    width: auto;
  }
  .ws-client-strip .ws-client-group {
    width: auto;
    flex-wrap: wrap;
  }
  .ws-type-char {
    transform: none !important;
  }
}

@media (prefers-reduced-motion: reduce), (forced-colors: active) {
  .ws-button .ws-button-ink,
  .ws-button-label-copy {
    display: none !important;
  }
  .ws-button-label-main {
    transform: none !important;
  }
}
.ws-home-icon {
  position: relative;
  z-index: 1;
  height: var(--ws-icon-stage-height);
  flex: none;
}
.ws-icon-poster {
  position: absolute;
  height: var(--ws-icon-size);
  top: var(--ws-icon-headroom);
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}
.ws-icon-poster img {
  position: absolute;
  display: block;
  max-width: none;
  height: auto;
}
.ws-icon-poke {
  position: absolute;
  inset: 0;
  z-index: 2;
  border: 0;
  background: none;
  color: inherit;
  padding: 0;
  border-radius: var(--ws-card-radius);
  touch-action: pan-y pinch-zoom;
  cursor: grab;
}
.ws-icon-poke[hidden] {
  display: none;
}
.ws-icon-poke:focus-visible {
  outline: 3px solid currentColor;
  outline-offset: 4px;
}
.ws-home-icons-canvas {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  display: block;
  width: 0;
  height: 0;
  pointer-events: none;
}
@media print {
  .ws-home-icons-canvas,
  .ws-icon-poke {
    display: none !important;
  }
  .ws-icon-poster {
    opacity: 1 !important;
  }
}

@media (min-width: 761px) and (max-width: 1400px) {
  .ws-home #ws-main > .ws-home-opening {
    padding-top: calc(var(--ws-header-bottom) + 70px);
  }
  .ws-home-opening .ws-service-picker {
    margin-top: clamp(32px, 5svh, 70px);
  }
  .ws-home-opening .ws-hero-composition h1 {
    font-size: clamp(3rem, 6.2vw, 6rem);
  }
  .ws-home-opening .ws-service-choice {
    min-height: 300px;
    padding: 24px;
    gap: 16px;
  }
  .ws-home-opening .ws-service-choice :is(h3, :where(.ws-service-choice-title)) {
    font-size: 1.75rem;
  }
  .ws-home-opening .ws-service-choice p {
    font-size: 1rem;
    line-height: 1.5;
  }
  .ws-home-opening .ws-service-choice .ws-button {
    min-height: 52px;
    padding-block: 12px;
  }
}
@media (forced-colors: active) {
  .ws-brand :is(path, polygon) {
    stroke: none;
  }
}

html .ws-site .ws-page-background::after,
.ws-site
  :is(.ws-selling-card, .ws-directory-card, .ws-news-card, .ws-service-choice, .ws-article-copy)::after {
  background-image: radial-gradient(circle, #fff 0.65px, transparent 0.85px);
  background-size: 6px 6px;
  opacity: 0.12;
  mix-blend-mode: normal;
}
.ws-site :is(.ws-desktop-nav, .ws-site-menu, .ws-mobile-dock, .ws-burger, .ws-nav-contact) {
  border: 1px solid var(--ws-dock-border);
  background-image: none;
}
.ws-site :is(.ws-desktop-nav, .ws-site-menu) {
  box-shadow: none;
}
.ws-site .ws-desktop-nav {
  border-radius: 999px;
  background-clip: padding-box;
  isolation: isolate;
}

.ws-site .ws-site-menu {
  scrollbar-gutter: auto;
  scrollbar-width: none;
  clip-path: inset(0 round 32px);
}
.ws-site-menu::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}
@media (max-width: 1100px) {
  .ws-site .ws-site-menu {
    clip-path: inset(0 round 28px);
  }
}
.ws-shot-counter {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 64px;
  padding: 12px 18px;
  border: 1px solid var(--ws-dock-border);
  border-radius: 999px;
  background: var(--ws-surface);
  color: #030404;
  font-size: 0.875rem;
  line-height: 1.25;
  white-space: nowrap;
  flex-shrink: 0;
}
.ws-shot-counter strong {
  display: inline-block;
  min-width: 2ch;
  font-size: 1.0625rem;
  font-variant-numeric: tabular-nums;
  text-align: center;
  transform-origin: center;
}
.ws-shot-bonus {
  position: absolute;
  right: 12px;
  top: -7px;
  pointer-events: none;
  opacity: 0;
  background: var(--ws-shot-bonus-bg);
  color: var(--ws-shot-bonus-fg);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  padding: 3px 7px;
  font-size: 0.875rem;
  font-weight: 600;
}
.ws-mobile-dock .ws-shot-counter {
  min-height: 44px;
  padding: 6px 9px;
  border: 0;
  background: none;
  gap: 5px;
}
@media (max-width: 520px) {
  .ws-site .ws-mobile-dock > a,
  .ws-site .ws-mobile-dock > button {
    padding-inline: 14px;
    gap: 10px;
  }
  .ws-mobile-dock .ws-shot-counter {
    flex-direction: column;
    gap: 0;
    line-height: 1.2;
    padding-inline: 8px;
  }
}
.ws-site :is(.ws-picker-strip, .ws-client-strip) {
  scrollbar-width: none;
}
.ws-site :is(.ws-picker-strip, .ws-client-strip)::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}
[data-ws-hero-writing]::after {
  content: "";
  display: inline-block;
  height: 0.72em;
  margin-left: 0.035em;
  border-right: 2px solid currentColor;
  vertical-align: -0.02em;
}
.ws-site .ws-hero-love {
  display: inline;
  border: 0;
  background: none;
  padding: 0;
  font: inherit;
  letter-spacing: inherit;
  color: var(--ws-brand-coral);
  text-decoration: underline;
  text-decoration-thickness: 0.025em;
  text-underline-offset: 0.09em;
}
[data-ws-hero-writing] {
  color: var(--ws-brand-coral);
}
.ws-site .ws-hero-love:focus-visible {
  outline-color: currentColor;
  outline-offset: 0.1em;
}
.ws-heart-stream {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 20;
}
.ws-heart-stream img {
  position: absolute;
  left: 0;
  top: 0;
  height: auto;
  max-width: none;
  pointer-events: none;
  will-change: transform, opacity;
}
@media (max-width: 760px) {
  .ws-site .ws-hero-composition h1 {
    font-size: clamp(2.125rem, 10.5vw, 4.75rem);
  }
}

:root {
  --ws-service-title-size: 7.5rem;
}
@media (max-width: 1439px) {
  :root {
    --ws-service-title-size: 6rem;
  }
}
@media (max-width: 1100px) {
  :root {
    --ws-service-title-size: 4rem;
  }
}
@media (max-width: 760px) {
  :root {
    --ws-service-title-size: 3rem;
  }
}
@media (max-width: 374px) {
  :root {
    --ws-service-title-size: 2.5rem;
  }
}

.ws-page-background {
  display: none !important;
}

body.ws-site {
  background-image: radial-gradient(circle, rgb(255 255 255 / 12%) 0.65px, transparent 0.85px);
  background-size: 6px 6px;
  background-repeat: repeat;
  background-attachment: scroll;
}
html[data-theme="white"] body.ws-site {
  background-image: none;
}
@media (forced-colors: active), print {
  body.ws-site {
    background-image: none;
  }
}

.ws-article-opening {
  position: relative;
}
@media (min-width: 761px) and (max-width: 1400px) {
  :root {
    --ws-frame-top: calc(var(--ws-header-bottom) + 70px);
  }
}

.ws-service-detail #ws-main,
.ws-services-overview #ws-main,
.ws-contact-page #ws-main {
  position: relative;
  isolation: isolate;
}
.ws-service-breadcrumbs {
  width: calc(100% - var(--ws-gutter) * 2);
  max-width: var(--ws-intro-width);
  margin: 0 auto clamp(32px, 4vw, 56px);
}
.ws-service-breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: var(--ws-button-row-gap) var(--ws-card-gap);
  list-style: none;
  padding: 0;
  margin: 0;
}
.ws-service-breadcrumbs li {
  display: flex;
  min-width: 0;
  max-width: 100%;
  flex: 0 0 auto;
}
.ws-service-breadcrumbs :is(.ws-button, .ws-breadcrumb-current) {
  overflow-wrap: normal;
  white-space: nowrap;
}
.ws-design-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--ws-card-gap);
}
.ws-site .ws-design-feature-card {
  position: relative;
  min-width: 0;
  min-height: 360px;
  justify-content: flex-start;
}
.ws-image-impact {
  display: block;
  align-self: flex-end;
  flex: none;
  width: fit-content;
  max-width: 100%;
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  line-height: 0;
  cursor: default;
  touch-action: manipulation;
  appearance: none;
  -webkit-tap-highlight-color: transparent;
}
.ws-image-impact:is(:hover, :active) {
  background: none;
  box-shadow: none;
  filter: none;
  opacity: 1;
  transform: none;
  translate: none;
  rotate: none;
  scale: none;
  transition: none;
}
.ws-image-impact::before,
.ws-image-impact::after {
  content: none;
  display: none;
}
.ws-image-impact img,
.ws-image-impact-target {
  transform-origin: 50% 50%;
  pointer-events: none;
  filter: none;
  opacity: 1;
  translate: none;
  rotate: none;
  scale: none;
  transition: none;
}
.ws-image-impact-target {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
.ws-image-impact:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 5px;
  border-radius: 16px;
}
.ws-image-impact:disabled {
  cursor: default;
}
.ws-design-feature-card p {
  margin-top: auto;
}
.ws-design-feature-card[id] {
  scroll-margin-top: calc(var(--ws-header-bottom) + 24px);
}
.ws-card-scroll-track {
  align-self: start;
  min-width: 0;
  height: calc(var(--ws-card-height) + var(--ws-card-travel));
  margin-bottom: calc(-1 * var(--ws-card-travel));
  pointer-events: none;
}
.ws-card-scroll-track > .ws-design-feature-card {
  position: sticky;
  top: var(--ws-card-top);
  height: var(--ws-card-height);
  pointer-events: auto;
}
@media (min-width: 2200px) {
  .ws-design-feature-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
  .ws-site .ws-design-feature-card :is(h3, h4) {
    font-size: clamp(1.875rem, 1.3vw, 2.5rem);
  }
}
@media (min-width: 761px) and (max-width: 1100px) {
  .ws-design-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 760px) {
  .ws-design-feature-grid {
    grid-template-columns: 1fr;
  }
  .ws-site .ws-design-feature-card {
    min-height: 270px;
  }
}
@media (max-width: 360px) {
  .ws-service-breadcrumbs :is(.ws-button, .ws-breadcrumb-current) {
    padding-inline: 14px;
  }
}
@media print {
  .ws-service-breadcrumbs {
    display: none;
  }
}

.ws-footer-title {
  margin: 0;
  font-family: Sora, sans-serif;
  font-weight: 600;
  letter-spacing: -0.055em;
}

.ws-services-overview {
  --ws-overview-nav-space: 0px;
  --ws-overview-section-space: max(
    70px,
    calc((var(--ws-overview-nav-space) + var(--ws-overview-nav-gap)) / 2)
  );
  --ws-overview-nav-gap: 40px;
}
.ws-services-overview [data-ws-hero-writing] {
  color: #fff;
}
html:is([data-theme="dark"], [data-theme="charcoal"])
  :is(.ws-services-like, .ws-services-overview [data-ws-hero-writing]) {
  color: #58a8df;
}
.ws-services-quicknav {
  position: relative;
  z-index: 8;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: visible;
}
.ws-services-quicknav .ws-button-matched {
  border-color: transparent;
}
.ws-services-quicknav .ws-button-matched::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.6);
  pointer-events: none;
}
@media (forced-colors: active) {
  .ws-services-quicknav .ws-button-matched {
    border-color: ButtonText;
  }
  .ws-services-quicknav .ws-button-matched::after {
    display: none;
  }
}
.ws-services-quicknav[data-position="header"] {
  position: fixed;
  left: var(--ws-quicknav-left);
  top: var(--ws-quicknav-top);
  width: var(--ws-quicknav-width);
}
.ws-services-quicknav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--ws-button-row-gap) var(--ws-navigation-gap);
  list-style: none;
  width: 100%;
  margin-inline: auto;
  padding: 0;
}
.ws-services-quicknav li {
  flex: 0 1 auto;
  max-width: 100%;
}
.ws-services-quicknav .ws-button {
  white-space: normal;
}
.ws-services-overview #ws-main > .ws-overview-service {
  padding-block: var(--ws-overview-section-space);
}
.ws-overview-service {
  scroll-margin-top: calc(var(--ws-header-bottom) + 24px - var(--ws-overview-section-space));
}
.ws-overview-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-areas: "copy model";
  gap: var(--ws-intro-gap);
  align-items: center;
}
.ws-overview-subservices {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: var(--ws-button-row-gap) var(--ws-navigation-gap);
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
}
.ws-overview-subservices li {
  display: flex;
  min-width: 0;
  max-width: 100%;
}
@media (min-width: 761px) and (max-width: 1100px) {
  .ws-services-quicknav ul {
    max-width: 52rem;
  }
}
@media (min-width: 761px) and (max-width: 1400px) and (orientation: portrait) {
  .ws-services-overview {
    --ws-overview-section-space: 70px;
  }
}
@media (max-width: 760px) {
  .ws-services-overview {
    --ws-overview-section-space: 35px;
    --ws-overview-nav-gap: 20px;
  }
  .ws-overview-row {
    grid-template-columns: 1fr;
    grid-template-areas: "model" "copy";
    gap: 24px;
  }
  .ws-overview-subservices {
    margin-top: 28px;
  }
}
@media print {
  .ws-services-quicknav {
    display: none;
  }
  .ws-card-scroll-track {
    height: auto;
    margin-bottom: 0;
  }
  .ws-card-scroll-track > .ws-design-feature-card {
    position: static;
    height: auto;
  }
}
.ws-article-copy .ws-button:not(.ws-button-matched) {
  --ws-button-bg: var(--ws-choice-button-bg);
  --ws-button-hover: #fff;
  color: #030404;
}
.ws-site .ws-news-article-opening {
  max-width: none;
  padding-inline: 0;
  padding-top: calc(var(--ws-header-bottom) + clamp(32px, 4vw, 70px));
  padding-bottom: calc(var(--ws-section-space) * 0.5);
}
.ws-news-article-opening .ws-service-breadcrumbs {
  flex: none;
}
.ws-site .ws-news-article-opening h1 {
  font-size: clamp(2.6875rem, 5.3vw, 5.5rem);
  line-height: 1.09;
  letter-spacing: var(--ws-title-tracking);
}
@media (min-width: 761px) {
  .ws-site .ws-news-article-opening h1 {
    padding-inline-end: clamp(32px, 4vw, 72px);
  }
}
.ws-article-summary time {
  display: block;
  margin-bottom: 24px;
  font-size: 1.0625rem;
  line-height: 1.6;
}
.ws-site .ws-news-article-body {
  padding-top: calc(var(--ws-section-space) * 0.5);
}
.ws-article-copy {
  --ws-article-padding: clamp(28px, 5vw, 80px);
  position: relative;
  isolation: isolate;
  display: flow-root;
  width: 100%;
  max-width: 920px;
  margin-inline: auto;
  padding: var(--ws-article-padding);
  background: var(--ws-tile-bg);
  color: var(--ws-tile-fg, #fff);
  border-radius: var(--ws-card-radius);
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
.ws-article-copy::after {
  border-radius: inherit;
}
.ws-article-copy > p + p {
  margin-top: 32px;
}
.ws-article-copy > section + section {
  margin-top: 48px;
}
.ws-article-copy p {
  overflow-wrap: normal;
  word-break: normal;
}
.ws-site.ws-news-article .ws-article-copy :is(h2, h3) {
  clear: both;
  font-size: clamp(1.75rem, 2.2vw, 2.25rem);
  line-height: 1.25;
  font-weight: 600;
  letter-spacing: var(--ws-title-tracking);
  margin-bottom: 24px;
}
.ws-site .ws-article-copy h2 {
  margin-top: 48px;
}
.ws-article-copy h3 {
  margin-top: 36px;
}
.ws-site .ws-article-copy > section > h2:first-child,
.ws-site .ws-article-copy > :is(h2, h3):first-child {
  margin-top: 0;
}
.ws-article-copy a:not(.ws-button) {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}
.ws-article-copy a:not(.ws-button):hover {
  text-decoration-thickness: 2px;
}
.ws-article-copy a:not(.ws-button):focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
  border-radius: 2px;
}
.ws-article-back {
  clear: both;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--ws-button-row-gap) var(--ws-card-gap);
  margin-top: var(--ws-article-padding);
}
@media (max-width: 760px) {
  .ws-article-copy {
    --ws-article-padding: 28px;
  }
  .ws-article-copy > p + p {
    margin-top: 28px;
  }
  .ws-site .ws-news-article-opening h1 {
    font-size: clamp(2.375rem, 9.6vw, 4.25rem);
  }
}

.ws-article-icon {
  --ws-article-icon-size: 144px;
  position: relative;
  float: right;
  display: block;
  width: calc(var(--ws-article-icon-size) * var(--ws-article-icon-ratio));
  height: var(--ws-article-icon-size);
  margin: 0 0 var(--ws-article-padding) var(--ws-article-padding);
}
.ws-article-icon .ws-article-clay {
  position: absolute;
  display: block;
  max-width: none;
  height: auto;
  pointer-events: none;
}

.ws-article-copy :is(p, figure):has(img:not(.ws-article-clay)) {
  clear: both;
  width: 100%;
  max-width: 50%;
  margin: var(--ws-article-padding) auto;
  padding: var(--ws-article-padding);
  background-color: #17191b;
  background-image: radial-gradient(circle, rgb(255 255 255 / 0.12) 0.65px, transparent 0.85px);
  background-size: 6px 6px;
  border-radius: var(--ws-card-radius);
  box-shadow: inset 0 2px 8px rgb(0 0 0 / 0.2);
}
.ws-article-copy img:not(.ws-article-clay) {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: calc(var(--ws-card-radius) * 0.5);
}
.ws-article-copy > img:not(.ws-article-clay) {
  clear: both;
  max-width: 50%;
  margin: var(--ws-article-padding) auto;
  padding: var(--ws-article-padding);
  background: #17191b radial-gradient(circle, rgb(255 255 255 / 0.12) 0.65px, transparent 0.85px) 0 0 / 6px
    6px;
  border-radius: var(--ws-card-radius);
}
.ws-article-copy figcaption {
  margin-top: 20px;
  color: #fff;
  font-size: 1rem;
  line-height: 1.6;
}
@media (max-width: 760px) {
  .ws-article-icon {
    --ws-article-icon-size: clamp(76px, 22vw, 128px);
    margin-top: 8px;
  }
}
@media (max-width: 360px) {
  .ws-article-icon {
    --ws-article-icon-size: 68px;
  }
}
@media (max-width: 760px) {
  .ws-article-copy :is(p, figure):has(img:not(.ws-article-clay)),
  .ws-article-copy > img:not(.ws-article-clay) {
    max-width: 100%;
  }
}
@media print {
  .ws-article-copy {
    background: #fff;
    color: #000;
  }
  .ws-article-copy :is(p, figure):has(img:not(.ws-article-clay)) {
    background: #fff;
    border: 1px solid #999;
  }
}

.ws-contact-page #ws-main > .ws-contact-opening {
  padding-bottom: calc(var(--ws-section-space) * 0.5);
}
.ws-contact-page :is(.ws-contact-registration, .ws-contact-vendor) {
  font-size: 1rem;
  line-height: 1.6;
}

.ws-client-search-tip {
  position: fixed;
  z-index: 50;
  max-width: min(320px, calc(100vw - 40px));
  margin: 0;
  padding: 16px 22px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 22px;
  background: var(--ws-action-bg);
  color: var(--ws-action-fg);
  font-family: Sora, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  box-shadow: 0 8px 24px rgb(0 0 0 / 0.16);
  pointer-events: none;
}
.ws-client-search-tip[hidden] {
  display: none;
}

.ws-site :is(.ws-news-card, .ws-article-copy)[data-article-colour="white"] {
  --ws-tile-bg: #ffffff;
  --ws-tile-fg: #030404;
  --ws-choice-button-bg: #ffffff;
  --ws-shot-bonus-bg: #2192c8;
  --ws-shot-bonus-fg: #ffffff;
}
.ws-site :is(.ws-news-card, .ws-article-copy)[data-article-colour="blue"] {
  --ws-tile-bg: #2192c8;
  --ws-tile-fg: #ffffff;
  --ws-choice-button-bg: #d3e9f4;
  --ws-shot-bonus-bg: #58a8df;
  --ws-shot-bonus-fg: #ffffff;
}
.ws-site :is(.ws-news-card, .ws-article-copy)[data-article-colour="teal"] {
  --ws-tile-bg: #5d8a7b;
  --ws-tile-fg: #ffffff;
  --ws-choice-button-bg: #dfe8e5;
  --ws-shot-bonus-bg: #72a292;
  --ws-shot-bonus-fg: #ffffff;
}
.ws-site :is(.ws-news-card, .ws-article-copy)[data-article-colour="coral"] {
  --ws-tile-bg: #cb6d58;
  --ws-tile-fg: #ffffff;
  --ws-choice-button-bg: #f5e2de;
  --ws-shot-bonus-bg: #d98872;
  --ws-shot-bonus-fg: #ffffff;
}
.ws-site :is(.ws-news-card, .ws-article-copy)[data-article-colour="brick"] {
  --ws-tile-bg: #ab4f49;
  --ws-tile-fg: #ffffff;
  --ws-choice-button-bg: #eedcdb;
  --ws-shot-bonus-bg: #d16f69;
  --ws-shot-bonus-fg: #ffffff;
}
.ws-site :is(.ws-news-card, .ws-article-copy)[data-article-colour="mauve"] {
  --ws-tile-bg: #8b5d83;
  --ws-tile-fg: #ffffff;
  --ws-choice-button-bg: #e8dfe6;
  --ws-shot-bonus-bg: #ac7ba4;
  --ws-shot-bonus-fg: #ffffff;
}
.ws-site :is(.ws-news-card, .ws-article-copy)[data-article-colour="purple"] {
  --ws-tile-bg: #704f7d;
  --ws-tile-fg: #ffffff;
  --ws-choice-button-bg: #e2dce5;
  --ws-shot-bonus-bg: #9773a4;
  --ws-shot-bonus-fg: #ffffff;
}
.ws-site :is(.ws-news-card, .ws-article-copy)[data-article-colour="sage"] {
  --ws-tile-bg: #a0c6a1;
  --ws-tile-fg: #030404;
  --ws-choice-button-bg: #ecf4ec;
  --ws-shot-bonus-bg: #a0c6a1;
  --ws-shot-bonus-fg: #030404;
}
.ws-site :is(.ws-news-card, .ws-article-copy)[data-article-colour="slate"] {
  --ws-tile-bg: #576a9b;
  --ws-tile-fg: #ffffff;
  --ws-choice-button-bg: #dde1eb;
  --ws-shot-bonus-bg: #758abe;
  --ws-shot-bonus-fg: #ffffff;
}
.ws-site :is(.ws-news-card, .ws-article-copy)[data-article-colour="olive"] {
  --ws-tile-bg: #7f8258;
  --ws-tile-fg: #ffffff;
  --ws-choice-button-bg: #e5e6de;
  --ws-shot-bonus-bg: #929661;
  --ws-shot-bonus-fg: #ffffff;
}
.ws-site :is(.ws-news-card, .ws-article-copy)[data-article-colour="ochre"] {
  --ws-tile-bg: #9a7d49;
  --ws-tile-fg: #ffffff;
  --ws-choice-button-bg: #ebe5db;
  --ws-shot-bonus-bg: #9a7d49;
  --ws-shot-bonus-fg: #ffffff;
}
.ws-site :is(.ws-news-card, .ws-article-copy)[data-article-colour="charcoal"] {
  --ws-tile-bg: #17191b;
  --ws-tile-fg: #ffffff;
  --ws-choice-button-bg: #d1d1d1;
  --ws-shot-bonus-bg: #17191b;
  --ws-shot-bonus-fg: #ffffff;
}
.ws-site :is(.ws-news-card, .ws-article-copy)[data-article-colour="dark"] {
  --ws-tile-bg: #17191b;
  --ws-tile-fg: #ffffff;
  --ws-choice-button-bg: #d1d1d1;
  --ws-shot-bonus-bg: #17191b;
  --ws-shot-bonus-fg: #ffffff;
}
