@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700;800&display=swap");

:root {
  --color-ink: #111111;
  --color-ink-soft: #4f4f4f;
  --color-blue: #2457e6;
  --color-blue-deep: #182b69;
  --color-cyan: #e8eef7;
  --color-coral: #2457e6;
  --color-gold: #dfe6f2;
  --color-paper: #07080b;
  --color-white: #ffffff;
  --color-line: rgba(255, 255, 255, 0.12);
  --shadow-soft: 0 20px 80px rgba(0, 0, 0, 0.34);
  --radius: 18px;
  --container: min(1180px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-paper);
  color: rgba(246, 241, 232, 0.86);
  font-family: "Space Grotesk", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

body.menu-is-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

p,
h1,
h2,
h3 {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 1020px;
  margin-bottom: 24px;
  font-size: clamp(2.55rem, 5vw, 4.5rem);
  font-weight: 700;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(1.9rem, 3.4vw, 3.45rem);
  font-weight: 700;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
}

.screen-reader-text,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  z-index: 1000;
  width: auto;
  height: auto;
  padding: 12px 16px;
  margin: 12px;
  clip: auto;
  background: var(--color-white);
  border-radius: var(--radius);
}

body .site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(18, 18, 18, 0.1);
  transition: background 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

body .site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  border-color: rgba(18, 18, 18, 0.12);
  box-shadow: 0 12px 34px rgba(18, 18, 18, 0.08);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: var(--container);
  min-height: 82px;
  margin: 0 auto;
  gap: 28px;
}

.site-brand {
  display: flex;
  align-items: center;
  width: 164px;
  min-width: 164px;
}

.site-brand img {
  width: 164px;
  max-height: 52px;
  object-fit: contain;
  filter: none;
}

.site-nav__list,
.site-footer__links {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-nav__list > li {
  position: relative;
}

.site-nav a {
  color: var(--color-ink);
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.02em;
  line-height: 1;
  text-transform: uppercase;
}

.site-nav__list > li > a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.site-nav a:hover,
.site-nav a:focus {
  color: var(--color-blue);
}

.site-nav .menu-item-has-children > a {
  display: inline-flex;
}

.site-nav .sub-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: -18px;
  z-index: 20;
  display: grid;
  min-width: 276px;
  padding: 10px;
  margin: 0;
  list-style: none;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(18, 18, 18, 0.12);
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(18, 18, 18, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.site-nav .sub-menu::before {
  position: absolute;
  top: -12px;
  right: 0;
  left: 0;
  height: 12px;
  content: "";
}

.site-nav .menu-item-has-children:hover .sub-menu,
.site-nav .menu-item-has-children:focus-within .sub-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.site-nav .sub-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 6px;
  color: var(--color-ink-soft);
  font-size: 0.9rem;
  font-weight: 700;
}

.site-nav .sub-menu a:hover,
.site-nav .sub-menu a:focus {
  background: rgba(36, 87, 230, 0.08);
  color: var(--color-blue);
}

.site-header__cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid var(--color-ink);
  border-radius: var(--radius);
  background: var(--color-ink);
  color: var(--color-white);
  font-weight: 700;
  line-height: 1.1;
  box-shadow: none;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.site-header__cta:hover,
.site-header__cta:focus,
.button:hover,
.button:focus {
  transform: translateY(-1px);
  box-shadow: none;
}

.site-header__cta {
  border-color: var(--color-blue);
  background: var(--color-blue);
  color: var(--color-white);
}

.site-header__cta:hover,
.site-header__cta:focus {
  background: var(--color-blue-deep);
  border-color: var(--color-blue-deep);
  color: var(--color-white);
}

.button--ghost {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.45);
  box-shadow: none;
}

.button--ghost:hover,
.button--ghost:focus {
  background: var(--color-white);
  color: var(--color-ink);
  box-shadow: none;
}

.button--light {
  background: var(--color-white);
  color: var(--color-ink);
  box-shadow: none;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
}

.menu-toggle span:not(.screen-reader-text) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--color-ink);
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  align-items: end;
  min-height: min(820px, calc(100vh - 18px));
  padding: 148px max(20px, calc((100vw - 1180px) / 2)) 42px;
  overflow: hidden;
  color: var(--color-white);
  background: var(--color-ink);
}

.hero__media,
.hero__media::after {
  position: absolute;
  inset: 0;
}

.hero__media {
  overflow: hidden;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.hero:not(.hero--with-video) .hero__media img {
  animation: heroFallbackDrift 18s ease-in-out infinite alternate;
}

.hero__video,
.hero__video iframe {
  position: absolute;
  inset: 0;
}

.hero__video {
  z-index: 1;
  overflow: hidden;
  opacity: 1;
  transition: opacity 260ms ease;
}

.hero__video iframe {
  top: 50%;
  left: 50%;
  width: max(100vw, 220vh);
  height: max(56.25vw, 124vh);
  border: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.hero--with-video .hero__media > img {
  opacity: 0;
}

.hero--with-video.hero-video-has-error .hero__media > img {
  opacity: 1;
}

.hero--with-video.hero-video-has-error .hero__video {
  opacity: 0;
}

.hero__media::after {
  z-index: 2;
  content: "";
  background:
    linear-gradient(90deg, rgba(8, 10, 14, 0.92) 0%, rgba(8, 10, 14, 0.66) 44%, rgba(8, 10, 14, 0.22) 100%),
    linear-gradient(0deg, rgba(8, 10, 14, 0.88) 0%, rgba(8, 10, 14, 0.16) 52%, rgba(8, 10, 14, 0.18) 100%);
}

.hero::after {
  position: absolute;
  right: max(20px, calc((100vw - 1180px) / 2));
  bottom: 38px;
  width: min(330px, 28vw);
  height: 1px;
  background: rgba(255, 255, 255, 0.42);
  content: "";
}

.hero__content {
  position: relative;
  z-index: 3;
  max-width: 1080px;
  padding-bottom: 34px;
}

.hero__lead {
  max-width: 760px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.22rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__formats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.hero__formats li {
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.78rem;
  font-weight: 760;
  text-transform: uppercase;
}

.hero__metrics {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(760px, 100%);
  padding: 20px;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  list-style: none;
  gap: 22px;
}

@keyframes heroFallbackDrift {
  from {
    transform: scale(1.02) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.08) translate3d(-1.2%, -0.8%, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero:not(.hero--with-video) .hero__media img {
    animation: none;
  }
}

.hero__metrics strong {
  display: block;
  margin-bottom: 2px;
  color: var(--color-white);
  font-size: 2.05rem;
}

.hero__metrics span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.95rem;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--color-cyan);
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow,
.section--dark .eyebrow,
.site-footer .eyebrow {
  color: var(--color-gold);
}

.section {
  padding: 96px 0;
}

.section__inner {
  width: var(--container);
  margin: 0 auto;
}

.section--intro {
  background: var(--color-white);
}

.section--white {
  background: var(--color-white);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
  gap: 72px;
}

.intro-media {
  margin: 0;
}

.rich-text {
  color: var(--color-ink-soft);
  font-size: 1.08rem;
}

.rich-text p:last-child {
  margin-bottom: 0;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 42px;
}

.section-heading--split {
  display: flex;
  align-items: end;
  justify-content: space-between;
  max-width: none;
  gap: 28px;
}

.section-heading--center {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card,
.service-row,
.contact-card,
.contact-form-placeholder,
.post-card {
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-white);
}

.service-card {
  min-height: 290px;
  padding: 28px;
}

.service-card__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 34px;
  border-radius: 50%;
  background: rgba(10, 166, 166, 0.12);
  color: var(--color-cyan);
  font-weight: 780;
}

.service-card__eyebrow,
.service-row__eyebrow,
.project-card__meta {
  margin-bottom: 8px;
  color: var(--color-coral);
  font-size: 0.8rem;
  font-weight: 780;
  text-transform: uppercase;
}

.service-card p:last-child {
  margin-bottom: 0;
  color: var(--color-ink-soft);
}

.service-card .text-link {
  display: inline-flex;
  margin-top: 18px;
}

.section--dark {
  background: var(--color-ink);
  color: var(--color-white);
}

.section--dark .section-heading p,
.section--dark .project-card__content p {
  color: rgba(255, 255, 255, 0.74);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.project-grid--archive {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.project-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--color-white);
  color: var(--color-ink);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.12);
}

.project-card__media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--color-white);
}

.project-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 280ms ease;
}

.project-card:hover .project-card__media img {
  transform: scale(1.04);
}

.project-card__content {
  padding: 24px;
}

.project-card__content p:last-child {
  margin-bottom: 0;
  color: var(--color-ink-soft);
}

.portfolio-intro {
  max-width: 780px;
  margin-bottom: 34px;
}

.portfolio-intro h2 {
  font-size: clamp(1.8rem, 3.4vw, 3.4rem);
}

.portfolio-card__play {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.2);
}

.portfolio-card__play::before {
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 16px solid var(--color-blue-deep);
  content: "";
}

.portfolio-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-top: 18px;
}

.portfolio-card__quick {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  font: inherit;
}

.portfolio-viewer[hidden] {
  display: none;
}

.portfolio-viewer {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: grid;
  place-items: center;
  padding: 24px;
}

.portfolio-viewer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 15, 28, 0.78);
}

.portfolio-viewer__panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(360px, 0.84fr);
  width: min(1120px, 100%);
  max-height: min(760px, calc(100vh - 48px));
  overflow: auto;
  border-radius: var(--radius);
  background: var(--color-white);
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.34);
}

.portfolio-viewer__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: rgba(16, 24, 39, 0.72);
  cursor: pointer;
}

.portfolio-viewer__close::before,
.portfolio-viewer__close::after {
  position: absolute;
  top: 20px;
  left: 11px;
  width: 18px;
  height: 2px;
  background: var(--color-white);
  content: "";
}

.portfolio-viewer__close::before {
  transform: rotate(45deg);
}

.portfolio-viewer__close::after {
  transform: rotate(-45deg);
}

.portfolio-viewer__video,
.single-video {
  background: var(--color-ink);
}

.portfolio-viewer__video iframe,
.portfolio-viewer__video video,
.portfolio-viewer__video img,
.single-video iframe,
.single-video video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

.portfolio-viewer__video {
  align-self: stretch;
}

.portfolio-viewer__video iframe,
.portfolio-viewer__video video,
.portfolio-viewer__video img {
  min-height: 100%;
  object-fit: cover;
}

.portfolio-viewer__body {
  align-self: center;
  padding: 54px 44px 42px;
}

.portfolio-viewer__body h2 {
  font-size: clamp(2rem, 3.2vw, 3.2rem);
}

.portfolio-viewer__body > p:last-of-type {
  color: var(--color-ink-soft);
}

.portfolio-viewer__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.portfolio-viewer .button--ghost {
  border-color: var(--color-line);
  background: var(--color-paper);
  color: var(--color-ink);
}

.video-placeholder {
  display: grid;
  min-height: 360px;
  place-items: center;
  padding: 36px;
  text-align: center;
  color: var(--color-white);
}

.video-placeholder strong,
.video-placeholder span {
  display: block;
}

.video-placeholder strong {
  margin-bottom: 8px;
  font-size: 1.35rem;
}

.video-placeholder span {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.72);
}

body.portfolio-viewer-is-open {
  overflow: hidden;
}

.method-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 64px;
  align-items: start;
}

.method-layout > div > p:last-child {
  color: var(--color-ink-soft);
  font-size: 1.1rem;
}

.method-list {
  display: grid;
  padding: 0;
  margin: 0;
  list-style: none;
  gap: 12px;
}

.method-list li {
  display: grid;
  grid-template-columns: 54px 190px 1fr;
  gap: 18px;
  align-items: baseline;
  padding: 20px 0;
  border-bottom: 1px solid var(--color-line);
  color: var(--color-ink-soft);
}

.method-list span {
  color: var(--color-coral);
  font-weight: 820;
}

.method-list strong {
  color: var(--color-ink);
}

.section--team {
  padding-top: 42px;
}

.team-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
}

.team-panel__media {
  position: relative;
  min-height: 460px;
  background: var(--color-ink);
}

.team-panel__image {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
}

.team-panel > div {
  align-self: center;
  padding: 52px;
}

.team-panel p:last-child {
  color: var(--color-ink-soft);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.team-card {
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-white);
}

.team-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.team-card > div {
  padding: 24px;
}

.team-card h2 {
  margin-bottom: 8px;
  font-size: 1.65rem;
}

.team-card p:last-child {
  margin-bottom: 0;
  color: var(--color-ink-soft);
}

.team-card--join {
  display: grid;
  min-height: 100%;
  align-items: end;
  background: var(--color-ink);
  color: var(--color-white);
}

.team-card--join p:last-of-type {
  color: rgba(255, 255, 255, 0.74);
}

.section--clients {
  background: var(--color-white);
  padding-bottom: 46px;
}

.section--clients-compact {
  padding: 0;
  background: #121212;
}

.client-slider {
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-white);
}

.client-slider__track {
  display: flex;
  width: max-content;
  animation: clientLogoSlider 28s linear infinite;
}

.client-slider:hover .client-slider__track,
.client-slider:focus-within .client-slider__track {
  animation-play-state: paused;
}

.client-strip {
  display: flex;
  flex: 0 0 auto;
}

.client-logo {
  display: grid;
  width: clamp(150px, 15vw, 210px);
  min-height: 112px;
  place-items: center;
  padding: 18px;
  border-right: 1px solid var(--color-line);
  background: var(--color-white);
}

.client-logo img {
  max-height: 64px;
  object-fit: contain;
  filter: grayscale(1);
}

@keyframes clientLogoSlider {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .client-slider__track {
    animation: none;
  }
}

.page-hero,
.contact-hero,
.single-hero {
  position: relative;
  display: grid;
  min-height: 540px;
  padding: 150px max(20px, calc((100vw - 1180px) / 2)) 76px;
  overflow: hidden;
  color: var(--color-white);
  background: var(--color-ink);
}

.page-hero--compact {
  min-height: 360px;
}

.page-hero__media,
.page-hero__media::after {
  position: absolute;
  inset: 0;
}

.page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero__media::after {
  content: "";
  background: linear-gradient(90deg, rgba(8, 15, 28, 0.86), rgba(8, 15, 28, 0.42));
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  align-self: end;
}

.page-hero h1,
.contact-hero h1,
.service-detail-hero h1,
.single-hero h1 {
  max-width: 900px;
  font-size: clamp(2.3rem, 4.45vw, 4.05rem);
}

.page-hero__inner p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.16rem;
}

.service-list {
  display: grid;
  gap: 16px;
}

.service-row {
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 0.58fr) minmax(170px, 0.18fr);
  gap: 32px;
  align-items: center;
  padding: 32px;
}

.service-row__media {
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--color-white);
}

.service-row__media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 280ms ease;
}

.service-row:hover .service-row__media img {
  transform: scale(1.04);
}

.service-row h2 {
  margin-bottom: 12px;
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.service-row__content p:not(.service-row__eyebrow) {
  margin-bottom: 0;
  color: var(--color-ink-soft);
}

.text-link {
  color: var(--color-blue-deep);
  font-weight: 780;
}

.service-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 0.92fr);
  gap: 56px;
  align-items: end;
  min-height: 620px;
  padding: 150px max(20px, calc((100vw - 1180px) / 2)) 78px;
  color: var(--color-white);
  background: var(--color-ink);
}

.service-detail-hero__content p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.15rem;
}

.service-detail-hero__media img {
  width: 100%;
  min-height: 410px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.service-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.42fr);
  gap: 58px;
  align-items: start;
}

.service-detail-main h2 {
  color: var(--color-ink);
}

.service-detail-aside {
  padding: 28px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-white);
}

.service-detail-aside h2 {
  margin-bottom: 16px;
  font-size: 1.2rem;
}

.service-detail-aside ul,
.check-list {
  display: grid;
  padding: 0;
  margin: 0;
  list-style: none;
  gap: 12px;
}

.service-detail-aside li,
.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--color-ink-soft);
}

.service-detail-aside li::before,
.check-list li::before {
  position: absolute;
  top: 0.2em;
  left: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--color-coral);
  content: "";
}

.check-list--blue li::before {
  background: var(--color-blue);
}

.service-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 70px;
}

.contact-hero {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 0.78fr);
  gap: 56px;
  align-items: end;
  padding-bottom: 58px;
}

.contact-hero img {
  width: 100%;
  min-height: 360px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.contact-hero__content p:not(.eyebrow) {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.15rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 20px;
}

.contact-card,
.contact-form-placeholder {
  padding: 32px;
}

.contact-card ul {
  padding-left: 20px;
  color: var(--color-ink-soft);
}

.fake-form {
  display: grid;
  gap: 12px;
}

.fake-form span {
  display: block;
  min-height: 54px;
  padding: 15px 16px;
  border: 1px dashed rgba(49, 64, 86, 0.28);
  border-radius: var(--radius);
  color: rgba(49, 64, 86, 0.7);
}

.contact-form {
  margin-top: 24px;
}

.contact-form form,
.contact-form .wpcf7-form {
  display: grid;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--color-ink-soft);
  font-size: 0.92rem;
  font-weight: 680;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  min-height: 52px;
  padding: 14px 16px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  color: var(--color-ink);
  font: inherit;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form input[type="submit"],
.contact-form button[type="submit"] {
  width: fit-content;
  min-height: 0;
  padding: 14px 22px;
  border: 0;
  background: var(--color-blue);
  color: var(--color-white);
  cursor: pointer;
  font-weight: 780;
}

.single-hero {
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: 52px;
  align-items: end;
  color: var(--color-ink);
  background: var(--color-white);
}

.single-hero__content {
  align-self: center;
}

.realisation-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  margin: 28px 0 0;
}

.realisation-meta div {
  min-width: 120px;
}

.realisation-meta dt {
  color: var(--color-coral);
  font-size: 0.76rem;
  font-weight: 820;
  text-transform: uppercase;
}

.realisation-meta dd {
  margin: 2px 0 0;
  color: var(--color-ink-soft);
  font-weight: 720;
}

.single-hero__media img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.single-video {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.content-layout {
  max-width: 820px;
}

.entry-content a {
  color: var(--color-blue-deep);
  font-weight: 720;
}

.realisation-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 42px;
  padding-top: 28px;
  border-top: 1px solid var(--color-line);
}

.post-list {
  display: grid;
  gap: 18px;
}

.post-card {
  padding: 28px;
}

.site-footer {
  background: var(--color-ink);
  color: var(--color-white);
}

.footer-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: var(--container);
  padding: 58px 0;
  margin: 0 auto;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  gap: 32px;
}

.footer-cta h2 {
  max-width: 860px;
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(220px, 0.55fr) minmax(220px, 0.55fr);
  width: var(--container);
  padding: 58px 0 34px;
  margin: 0 auto;
  gap: 44px;
}

.site-footer__brand img {
  width: 164px;
  margin-bottom: 18px;
}

.site-footer p,
.site-footer a,
.site-footer__links a {
  color: rgba(255, 255, 255, 0.74);
}

.site-footer .button--light {
  color: var(--color-ink);
}

.site-footer h2 {
  margin-bottom: 14px;
  font-size: 1rem;
  color: var(--color-white);
}

.site-footer__links {
  display: grid;
  gap: 10px;
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  width: var(--container);
  padding: 22px 0;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  gap: 20px;
}

.site-footer__bottom p {
  margin: 0;
}

/* Global studio direction inspired by the reference board. */
.section {
  padding: 108px 0;
}

.section--intro {
  position: relative;
  background: var(--color-white);
}

.section--intro::before {
  display: none;
}

.intro-grid {
  position: relative;
  grid-template-columns: minmax(220px, 0.72fr) minmax(300px, 0.9fr) minmax(240px, 0.72fr);
  gap: 34px;
  align-items: start;
}

.intro-grid > div:first-child {
  padding-left: 26px;
  border-left: 6px solid var(--color-coral);
}

.intro-media {
  position: relative;
  align-self: stretch;
  min-height: 310px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--color-ink);
  box-shadow: 0 22px 70px rgba(16, 17, 20, 0.16);
}

.intro-media::after {
  position: absolute;
  inset: auto 18px 18px auto;
  width: 76px;
  height: 76px;
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent 46%, rgba(255, 255, 255, 0.72) 46%, rgba(255, 255, 255, 0.72) 54%, transparent 54%),
    linear-gradient(0deg, transparent 46%, rgba(255, 255, 255, 0.72) 46%, rgba(255, 255, 255, 0.72) 54%, transparent 54%);
  content: "";
}

.intro-media img {
  width: 100%;
  height: 100%;
  min-height: 310px;
  object-fit: cover;
}

.intro-grid .rich-text {
  align-self: center;
  padding: 28px 0;
}

.proof-strip {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 0;
  margin: 64px 0 0;
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-line);
  list-style: none;
  box-shadow: 0 18px 60px rgba(16, 17, 20, 0.08);
}

.proof-strip li {
  display: grid;
  min-height: 152px;
  align-content: end;
  padding: 28px;
  background: var(--color-white);
}

.proof-strip span {
  margin-bottom: 22px;
  color: var(--color-blue);
  font-size: 0.8rem;
  font-weight: 840;
}

.proof-strip strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.15rem;
}

.proof-strip li {
  color: var(--color-ink-soft);
}

.section-heading {
  margin-bottom: 50px;
}

.section-heading--split {
  padding-bottom: 26px;
  border-bottom: 1px solid var(--color-line);
}

.service-grid {
  gap: 22px;
}

.service-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100%;
  overflow: hidden;
  padding: 0;
  border: 0;
  background: var(--color-white);
  box-shadow: 0 18px 60px rgba(16, 17, 20, 0.11);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-card:hover,
.service-card:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 26px 80px rgba(16, 17, 20, 0.16);
}

.service-card__media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10.5;
  overflow: hidden;
  background: var(--color-ink);
}

.service-card__media::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(16, 17, 20, 0) 30%, rgba(16, 17, 20, 0.52) 100%),
    rgba(16, 17, 20, 0.12);
  content: "";
}

.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 320ms ease, filter 320ms ease;
}

.service-card:hover .service-card__media img,
.service-card:focus-within .service-card__media img {
  filter: saturate(1.05) contrast(1.04);
  transform: scale(1.05);
}

.service-card__body {
  display: grid;
  padding: 24px;
}

.service-card__number {
  width: auto;
  height: auto;
  min-width: 44px;
  margin-bottom: 18px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(36, 87, 230, 0.12);
  color: var(--color-coral);
  font-size: 0.78rem;
}

.service-card h3,
.project-card h3 {
  font-size: 1.5rem;
}

.service-card p:last-of-type {
  color: var(--color-ink-soft);
}

.text-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 18px;
  color: var(--color-blue);
}

.text-link::after {
  margin-left: 8px;
  content: ">";
}

.section--dark {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(36, 87, 230, 0.18), transparent 42%),
    #0b1018;
}

.section--dark::before {
  position: absolute;
  top: 0;
  right: max(20px, calc((100vw - 1180px) / 2));
  width: 1px;
  height: 100%;
  background: rgba(255, 255, 255, 0.14);
  content: "";
}

.section--dark .section__inner {
  position: relative;
}

.project-grid {
  align-items: stretch;
  gap: 24px;
}

.project-grid--archive {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 1fr;
}

.project-grid--archive .project-card {
  grid-column: auto;
}

.project-card {
  display: flex;
  height: 100%;
  flex-direction: column;
  border: 1px solid rgba(16, 17, 20, 0.08);
  box-shadow: 0 22px 70px rgba(16, 17, 20, 0.13);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.project-card:hover,
.project-card:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 32px 90px rgba(16, 17, 20, 0.18);
}

.project-card__media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 17, 20, 0), rgba(16, 17, 20, 0.22));
  content: "";
}

.project-card__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 26px;
}

.portfolio-card .project-card__meta,
.portfolio-card .project-card__content > p:not(.project-card__meta) {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
}

.portfolio-card .project-card__meta {
  min-height: 2.24em;
  -webkit-line-clamp: 2;
}

.portfolio-card h3 {
  display: -webkit-box;
  overflow: hidden;
  min-height: 3.18rem;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.portfolio-card .project-card__content > p:not(.project-card__meta) {
  -webkit-line-clamp: 3;
}

.portfolio-card__actions {
  margin-top: auto;
  padding-top: 18px;
}

.method-layout {
  align-items: stretch;
}

.method-layout > div:first-child {
  position: sticky;
  top: 112px;
  align-self: start;
  padding: 34px;
  border-radius: var(--radius);
  background: var(--color-white);
  box-shadow: 0 18px 60px rgba(16, 17, 20, 0.09);
}

.method-list {
  gap: 0;
  border-top: 1px solid var(--color-line);
}

.method-list li {
  grid-template-columns: 64px 210px 1fr;
  padding: 26px 0;
}

.method-list span {
  color: var(--color-blue);
  font-size: 0.9rem;
}

.team-panel {
  box-shadow: 0 28px 90px rgba(16, 17, 20, 0.16);
}

.team-panel > div:not(.team-panel__media) {
  background: var(--color-white);
}

.team-card {
  border: 0;
  box-shadow: 0 18px 60px rgba(16, 17, 20, 0.1);
}

.team-card--join {
  background:
    linear-gradient(135deg, rgba(36, 87, 230, 0.28), transparent 42%),
    var(--color-ink);
}

.client-logo {
  min-height: 128px;
  border-right: 1px solid var(--color-line);
  border-radius: 0;
}

.page-hero,
.contact-hero {
  background:
    linear-gradient(135deg, rgba(36, 87, 230, 0.2), transparent 42%),
    var(--color-ink);
}

.page-hero__media::after {
  background:
    linear-gradient(90deg, rgba(10, 10, 12, 0.9), rgba(10, 10, 12, 0.5)),
    linear-gradient(0deg, rgba(10, 10, 12, 0.78), transparent 52%);
}

.service-row {
  border: 0;
  box-shadow: 0 18px 60px rgba(16, 17, 20, 0.09);
}

.service-row__media {
  box-shadow: inset 0 0 0 1px rgba(16, 17, 20, 0.06);
}

.service-detail-hero {
  background:
    linear-gradient(135deg, rgba(36, 87, 230, 0.18), transparent 46%),
    var(--color-ink);
}

.service-detail-hero__media img,
.contact-hero img,
.single-hero__media img {
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.service-detail-aside,
.contact-card,
.contact-form-placeholder,
.post-card {
  border: 0;
  box-shadow: 0 18px 60px rgba(16, 17, 20, 0.1);
}

.fake-form span {
  border-style: solid;
  background: rgba(255, 255, 255, 0.58);
}

.portfolio-intro {
  padding-left: 26px;
  border-left: 6px solid var(--color-blue);
}

.portfolio-filters {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(178px, 1fr));
  gap: 10px;
  margin: -12px 0 36px;
}

.portfolio-filter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid var(--color-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--color-ink-soft);
  cursor: pointer;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 820;
  line-height: 1.12;
  text-align: center;
  text-transform: uppercase;
}

.portfolio-filter:hover,
.portfolio-filter:focus,
.portfolio-filter.is-active {
  border-color: var(--color-blue);
  background: var(--color-blue);
  color: var(--color-white);
}

.portfolio-card[hidden] {
  display: none;
}

/* Editorial visual refresh inspired by high-contrast production studio sites. */
.hero {
  min-height: min(900px, 100vh);
}

.hero h1 {
  max-width: 900px;
}

.hero__media::after {
  background:
    linear-gradient(90deg, rgba(18, 18, 18, 0.96) 0%, rgba(18, 18, 18, 0.68) 46%, rgba(18, 18, 18, 0.18) 100%),
    linear-gradient(0deg, rgba(18, 18, 18, 0.92) 0%, rgba(18, 18, 18, 0.12) 58%);
}

.hero__formats li,
.hero__metrics {
  border-color: rgba(246, 241, 232, 0.22);
  background: rgba(246, 241, 232, 0.06);
}

.section {
  padding: 112px 0;
}

.section--intro,
.section--white,
.section--clients,
.contact-card,
.contact-form-placeholder,
.service-card,
.service-row,
.team-panel,
.post-card {
  background: var(--color-white);
  color: var(--color-ink);
}

.section--intro,
.section--white,
.section--clients {
  border-top: 1px solid rgba(18, 18, 18, 0.08);
}

.section--dark {
  background: #121212;
  color: var(--color-white);
}

.section--formats {
  position: relative;
  overflow: hidden;
  background: var(--color-white);
  color: var(--color-ink);
  border-top: 1px solid rgba(18, 18, 18, 0.08);
}

.section--formats::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18, 18, 18, 0.04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(18, 18, 18, 0.035) 1px, transparent 1px);
  background-size: 92px 92px;
  content: "";
  opacity: 0.42;
  pointer-events: none;
}

.format-switcher {
  position: relative;
}

.format-switcher__header {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.72fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: end;
  padding-bottom: 38px;
  border-bottom: 1px solid rgba(18, 18, 18, 0.14);
}

.format-switcher__header h2 {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--color-ink);
}

.format-switcher__aside {
  color: var(--color-ink-soft);
  font-size: 1.05rem;
}

.format-switcher__aside p {
  margin-bottom: 0;
}

.format-switcher__body {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: stretch;
  padding-top: 42px;
}

.format-switcher__nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  align-content: start;
}

.format-tab {
  position: relative;
  min-height: 106px;
  padding: 18px;
  overflow: hidden;
  border: 1px solid rgba(18, 18, 18, 0.13);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.42);
  color: var(--color-ink);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.format-tab::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--color-blue);
  content: "";
  transform: scaleX(0);
  transform-origin: left center;
}

.format-tab:hover,
.format-tab:focus-visible {
  border-color: rgba(36, 87, 230, 0.38);
  background: rgba(36, 87, 230, 0.08);
  transform: translateY(-2px);
}

.format-tab.is-active {
  border-color: #121212;
  background: #121212;
  color: var(--color-white);
}

.format-tab.is-active::after {
  animation: format-progress 2800ms linear infinite;
}

.format-tab span {
  display: block;
  margin-bottom: 16px;
  color: var(--color-blue);
  font-size: 0.72rem;
  font-weight: 820;
}

.format-tab.is-active span {
  color: var(--color-gold);
}

.format-tab strong {
  display: block;
  margin-bottom: 6px;
  font-size: clamp(1rem, 1.25vw, 1.22rem);
  line-height: 1.05;
}

.format-tab small {
  display: block;
  color: currentColor;
  font-size: 0.78rem;
  font-weight: 650;
  opacity: 0.62;
}

.format-stage {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(36, 87, 230, 0.18), transparent 44%),
    #121212;
  color: var(--color-white);
}

.format-stage::before {
  position: absolute;
  top: 22px;
  right: 22px;
  bottom: 22px;
  left: 22px;
  border: 1px solid rgba(246, 241, 232, 0.16);
  content: "";
  pointer-events: none;
}

.format-panel {
  position: relative;
  z-index: 1;
  min-height: 420px;
  padding: clamp(34px, 5vw, 58px);
  animation: format-panel-in 320ms ease both;
}

.format-panel[hidden] {
  display: none;
}

.format-panel__count,
.format-panel__eyebrow {
  color: var(--color-gold);
  font-size: 0.78rem;
  font-weight: 760;
  text-transform: uppercase;
}

.format-panel__count {
  display: inline-flex;
  margin-bottom: clamp(44px, 8vw, 86px);
}

.format-panel__eyebrow {
  margin-bottom: 12px;
}

.format-panel h3 {
  max-width: 620px;
  color: var(--color-white);
  font-size: clamp(2.05rem, 4vw, 4.2rem);
}

.format-panel__text {
  max-width: 590px;
  color: rgba(246, 241, 232, 0.74);
  font-size: 1.08rem;
}

.format-panel__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 26px 0 30px;
}

.format-panel__tags span {
  max-width: 260px;
  padding: 8px 10px;
  border: 1px solid rgba(246, 241, 232, 0.2);
  color: rgba(246, 241, 232, 0.8);
  font-size: 0.78rem;
  font-weight: 650;
}

.format-ticker {
  margin-top: 28px;
  overflow: hidden;
  border-top: 1px solid rgba(18, 18, 18, 0.13);
  border-bottom: 1px solid rgba(18, 18, 18, 0.13);
  color: rgba(18, 18, 18, 0.48);
  font-size: clamp(1rem, 1.8vw, 1.5rem);
  font-weight: 760;
  text-transform: uppercase;
  white-space: nowrap;
}

.format-ticker div {
  display: flex;
  width: max-content;
  animation: format-ticker 28s linear infinite;
}

.format-ticker span {
  display: inline-flex;
  align-items: center;
  padding: 14px 26px;
}

.format-ticker span::after {
  width: 6px;
  height: 6px;
  margin-left: 26px;
  border-radius: 50%;
  background: var(--color-blue);
  content: "";
}

@keyframes format-progress {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

@keyframes format-panel-in {
  from {
    opacity: 0;
    transform: translate3d(16px, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes format-ticker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.section--services-overview {
  position: relative;
  overflow: hidden;
  background: var(--color-white);
  color: var(--color-ink);
  border-top: 1px solid rgba(18, 18, 18, 0.08);
}

.services-overview__heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.74fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: end;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(18, 18, 18, 0.14);
}

.services-overview__heading h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.services-overview__heading p:not(.eyebrow) {
  margin-bottom: 0;
  color: var(--color-ink-soft);
  font-size: 1.02rem;
}

.services-marquee {
  margin-top: clamp(28px, 5vw, 62px);
  overflow: hidden;
  border-top: 1px solid rgba(18, 18, 18, 0.13);
  border-bottom: 1px solid rgba(18, 18, 18, 0.13);
  color: rgba(18, 18, 18, 0.78);
  font-size: clamp(1.35rem, 3.6vw, 3.2rem);
  font-weight: 720;
  line-height: 0.95;
  text-transform: uppercase;
  white-space: nowrap;
}

.services-marquee div {
  display: flex;
  width: max-content;
  animation: format-ticker 30s linear infinite;
}

.services-marquee a {
  display: inline-flex;
  align-items: center;
  padding: clamp(22px, 3.8vw, 44px) clamp(22px, 3.8vw, 46px);
  color: inherit;
  transition: color 160ms ease;
}

.services-marquee a:hover,
.services-marquee a:focus-visible {
  color: var(--color-blue);
}

.services-marquee a::after {
  width: 0.14em;
  height: 0.14em;
  margin-left: clamp(22px, 3.8vw, 46px);
  border-radius: 50%;
  background: var(--color-blue);
  content: "";
}

.section--dark::before {
  background: rgba(246, 241, 232, 0.16);
}

.page-hero,
.contact-hero,
.service-detail-hero {
  background: #121212;
}

.page-hero__media::after {
  background:
    linear-gradient(90deg, rgba(18, 18, 18, 0.92), rgba(18, 18, 18, 0.52)),
    linear-gradient(0deg, rgba(18, 18, 18, 0.82), transparent 54%);
}

.section-heading {
  margin-bottom: 52px;
}

.eyebrow,
.hero .eyebrow,
.section--dark .eyebrow,
.site-footer .eyebrow {
  color: var(--color-coral);
  font-size: 0.72rem;
  font-weight: 700;
}

.service-card,
.service-row,
.project-card,
.team-panel,
.contact-card,
.contact-form-placeholder,
.client-slider,
.post-card {
  border-radius: 0;
  box-shadow: none;
}

.service-card,
.service-row,
.contact-card,
.contact-form-placeholder,
.post-card {
  border: 1px solid rgba(18, 18, 18, 0.12);
}

.service-card {
  min-height: 100%;
  padding: 0;
}

.service-card__body {
  padding: 26px;
}

.service-card__number {
  min-width: 0;
  padding: 0;
  background: transparent;
  color: var(--color-coral);
}

.service-card h3,
.project-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
}

.text-link {
  color: var(--color-ink);
  font-weight: 700;
}

.section--dark .text-link {
  color: var(--color-white);
}

.project-card {
  background: #191919;
  color: var(--color-white);
  border: 1px solid rgba(246, 241, 232, 0.14);
}

.project-card:hover,
.project-card:focus-within {
  transform: none;
  box-shadow: none;
}

.project-card__content p,
.section--dark .project-card__content p {
  color: rgba(246, 241, 232, 0.72);
}

.method-layout > div:first-child {
  background: transparent;
  color: var(--color-white);
  box-shadow: none;
  border-left: 1px solid rgba(246, 241, 232, 0.2);
  border-radius: 0;
}

.method-layout > div:first-child p:not(.eyebrow) {
  color: rgba(246, 241, 232, 0.72);
}

.method-list {
  border-color: rgba(246, 241, 232, 0.18);
}

.method-list li {
  border-color: rgba(246, 241, 232, 0.18);
  color: rgba(246, 241, 232, 0.72);
}

.method-list strong,
.method-list span {
  color: var(--color-white);
}

.team-panel {
  border: 1px solid rgba(18, 18, 18, 0.12);
}

.client-slider {
  border-color: rgba(18, 18, 18, 0.16);
}

.client-logo {
  background: var(--color-white);
  border-right-color: rgba(18, 18, 18, 0.12);
}

.client-logo img {
  opacity: 0.78;
  filter: grayscale(1) contrast(1.08);
  transition: opacity 180ms ease, filter 180ms ease;
}

.client-logo:hover img {
  opacity: 1;
  filter: grayscale(0) contrast(1);
}

.section--home-realisations {
  background: #121212;
  color: var(--color-white);
  border-top-color: rgba(246, 241, 232, 0.12);
}

.section--home-realisations .section-heading--split {
  border-bottom-color: rgba(246, 241, 232, 0.18);
}

.section--home-realisations .section-heading h2 {
  color: var(--color-white);
}

.section--home-realisations .button {
  border-color: var(--color-white);
  background: var(--color-white);
  color: var(--color-ink);
}

.section--method {
  background: var(--color-white);
  color: var(--color-ink);
  border-top: 1px solid rgba(18, 18, 18, 0.08);
}

.section--method .method-layout > div:first-child {
  background: transparent;
  color: var(--color-ink);
  border-left: 1px solid rgba(18, 18, 18, 0.16);
  box-shadow: none;
}

.section--method .method-layout > div:first-child p:not(.eyebrow),
.section--method .method-list li {
  color: var(--color-ink-soft);
}

.section--method .method-list,
.section--method .method-list li {
  border-color: rgba(18, 18, 18, 0.14);
}

.section--method .method-list strong {
  color: var(--color-ink);
}

.section--method .method-list span {
  color: var(--color-blue);
}

.section--team {
  background: var(--color-white);
  color: var(--color-ink);
}

.section--team .team-panel {
  border-color: rgba(18, 18, 18, 0.12);
  background: var(--color-white);
}

.section--team .team-panel > div:not(.team-panel__media) {
  background: var(--color-white);
  color: var(--color-ink);
}

.section--team .team-panel p:last-child {
  color: var(--color-ink-soft);
}

body #services.section--services-overview,
body .section--home-realisations {
  background: #fff;
  color: #07080b;
  border-top: 1px solid rgba(7, 8, 11, 0.08);
}

body #services.section--services-overview {
  padding-bottom: 28px;
}

body #services .services-overview__heading,
body .section--home-realisations .section-heading--split {
  border-bottom-color: rgba(7, 8, 11, 0.12);
}

body #services .eyebrow,
body .section--home-realisations .eyebrow {
  color: var(--color-blue);
}

body #services .services-overview__heading h2,
body .section--home-realisations .section-heading h2 {
  color: #07080b;
}

body #services .services-overview__heading p:not(.eyebrow),
body .section--home-realisations .section-heading p:not(.eyebrow) {
  color: rgba(7, 8, 11, 0.66);
}

body #services .text-link {
  color: #07080b;
}

body #services .services-marquee {
  display: flex;
  align-items: center;
  min-height: clamp(96px, 7vw, 126px);
  border-color: rgba(7, 8, 11, 0.12);
  color: rgba(7, 8, 11, 0.78);
  line-height: 1;
}

body #services .services-marquee div {
  align-items: center;
}

body #services .services-marquee a {
  min-height: inherit;
  padding-top: 0;
  padding-bottom: 0;
  transform: none;
}

body .section--home-realisations .button {
  border-color: #07080b;
  background: #07080b;
  color: #fff;
}

body .section--home-realisations .button:hover,
body .section--home-realisations .button:focus {
  border-color: var(--color-blue);
  background: var(--color-blue);
  color: #fff;
}

body .section--home-realisations .project-card {
  border-color: rgba(7, 8, 11, 0.1);
  background: #f6f7f9;
  color: #07080b;
}

body .section--home-realisations .project-card__meta {
  color: var(--color-blue);
}

body .section--home-realisations .project-card__content p,
body .section--home-realisations .project-card__content p:last-child {
  color: rgba(7, 8, 11, 0.66);
}

body .section--home-realisations .portfolio-card__actions .text-link {
  color: #07080b;
}

body .section--home-realisations .portfolio-card__actions .text-link:hover,
body .section--home-realisations .portfolio-card__actions .text-link:focus-visible {
  color: var(--color-blue);
}

body .section--home-realisations .section__inner {
  width: min(100vw - 40px, 1560px);
}

body .section--home-realisations .project-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 1.6vw, 24px);
  margin-top: clamp(30px, 3.5vw, 54px);
}

body .section--home-realisations .project-card__media {
  aspect-ratio: 16 / 9;
}

.section--clients-compact .section__inner {
  width: 100%;
}

.section--clients-compact .client-slider {
  border-width: 1px 0;
  border-color: rgba(246, 241, 232, 0.14);
  border-radius: 0;
}

.section--clients-compact .client-logo {
  width: clamp(148px, 14vw, 198px);
  min-height: 102px;
  background: #151515;
  border-right-color: rgba(246, 241, 232, 0.12);
}

.section--clients-compact .client-logo img {
  opacity: 0.74;
  filter: grayscale(1) brightness(1.18) contrast(0.92);
}

.site-footer {
  background:
    linear-gradient(135deg, rgba(36, 87, 230, 0.16), transparent 34%),
    #090e14;
}

.motion-ready [data-reveal] {
  opacity: 0;
  transform: translate3d(0, 34px, 0);
  transition:
    opacity 720ms ease,
    transform 720ms cubic-bezier(0.19, 1, 0.22, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.motion-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.motion-ready .hero [data-reveal] {
  transform: translate3d(0, 22px, 0);
}

.motion-ready [data-parallax] {
  --parallax-y: 0px;
  --parallax-scale: 1.04;
  transform: translate3d(0, var(--parallax-y), 0) scale(var(--parallax-scale));
  will-change: transform;
}

.motion-ready .hero__video iframe[data-parallax],
.motion-ready .hero__media > img[data-parallax] {
  --parallax-scale: 1.08;
}

.motion-ready .hero__video iframe[data-parallax] {
  transform: translate(-50%, -50%) translate3d(0, var(--parallax-y), 0) scale(var(--parallax-scale));
}

.motion-ready .intro-media img[data-parallax],
.motion-ready .team-panel__image[data-parallax] {
  --parallax-scale: 1.07;
}

.motion-ready .service-card__media img[data-parallax],
.motion-ready .project-card__media img[data-parallax] {
  --parallax-scale: 1.05;
}

.motion-ready .service-card:hover .service-card__media img[data-parallax],
.motion-ready .service-card:focus-within .service-card__media img[data-parallax],
.motion-ready .project-card:hover .project-card__media img[data-parallax],
.motion-ready .project-card:focus-within .project-card__media img[data-parallax] {
  --parallax-scale: 1.09;
}

.motion-ready .section-heading:not(.section-heading--split)::after,
.motion-ready .section-heading--split > div::after,
.motion-ready .intro-grid > div:first-child::after,
.motion-ready .method-layout > div:first-child::after {
  display: block;
  width: 0;
  height: 1px;
  margin-top: 24px;
  background: var(--color-blue);
  content: "";
  transition: width 760ms cubic-bezier(0.19, 1, 0.22, 1);
  transition-delay: 120ms;
}

.motion-ready .section-heading:not(.section-heading--split).is-visible::after,
.motion-ready .section-heading--split.is-visible > div::after,
.motion-ready .intro-grid > div:first-child.is-visible::after,
.motion-ready .method-layout > div:first-child.is-visible::after {
  width: min(190px, 42vw);
}

@media (prefers-reduced-motion: reduce) {
  .motion-ready [data-reveal],
  .motion-ready [data-reveal].is-visible,
  .motion-ready [data-parallax] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .format-tab.is-active::after,
  .format-panel,
  .format-ticker div,
  .services-marquee div {
    animation: none;
  }

  .motion-ready .section-heading:not(.section-heading--split)::after,
  .motion-ready .section-heading--split > div::after,
  .motion-ready .intro-grid > div:first-child::after,
  .motion-ready .method-layout > div:first-child::after {
    width: min(190px, 42vw);
    transition: none;
  }
}

@media (max-width: 980px) {
  .site-header__inner {
    min-height: 72px;
  }

  .site-header__cta {
    display: none;
  }

  .menu-toggle {
    display: block;
    position: relative;
    z-index: 3;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    display: none;
    padding: 110px 28px 28px;
    background: var(--color-white);
  }

  .site-nav.is-open {
    display: block;
  }

  .site-nav__list {
    display: grid;
    gap: 24px;
  }

  .site-nav a {
    color: var(--color-ink);
    font-size: 1.5rem;
  }

  .site-nav .sub-menu {
    position: static;
    min-width: 0;
    padding: 6px 0 0 14px;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .site-nav .sub-menu a {
    padding: 6px 0;
    color: var(--color-ink-soft);
    font-size: 1rem;
  }

  .intro-grid,
  .method-layout,
  .team-panel,
  .contact-layout,
  .contact-hero,
  .service-detail-hero,
  .service-detail-layout,
  .service-columns,
  .single-hero,
  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .intro-media,
  .intro-media img {
    min-height: 300px;
  }

  .format-switcher__header,
  .format-switcher__body,
  .services-overview__heading {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .format-switcher__header {
    align-items: start;
  }

  .format-stage,
  .format-panel {
    min-height: 360px;
  }

  .format-panel__count {
    margin-bottom: 48px;
  }

  .service-grid,
  .project-grid,
  .project-grid--archive,
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .proof-strip {
    grid-template-columns: 1fr;
  }

  .method-layout > div:first-child {
    position: static;
  }

  .portfolio-viewer__panel {
    grid-template-columns: 1fr;
  }

  .portfolio-viewer__video iframe,
  .portfolio-viewer__video video,
  .portfolio-viewer__video img {
    min-height: auto;
  }

  .section-heading--split,
  .footer-cta {
    align-items: start;
    flex-direction: column;
  }
}

@media (max-width: 680px) {
  :root {
    --container: min(100vw - 28px, 1180px);
  }

  h1 {
    font-size: clamp(2.1rem, 10.2vw, 3.15rem);
  }

  .page-hero h1,
  .contact-hero h1,
  .service-detail-hero h1,
  .single-hero h1 {
    font-size: clamp(1.95rem, 8.6vw, 2.7rem);
  }

  .hero,
  .page-hero,
  .contact-hero,
  .service-detail-hero,
  .single-hero {
    min-height: auto;
    padding-top: 112px;
  }

  .hero {
    padding-bottom: 24px;
  }

  .hero__content {
    padding-bottom: 22px;
  }

  .hero__lead {
    font-size: 1.02rem;
  }

  .hero__metrics,
  .service-grid,
  .project-grid,
  .project-grid--archive,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .hero__metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    padding: 12px;
  }

  .hero__metrics strong {
    font-size: 1.22rem;
  }

  .hero__metrics span {
    font-size: 0.72rem;
    line-height: 1.2;
  }

  .section {
    padding: 68px 0;
  }

  .section--clients {
    padding-bottom: 32px;
  }

  .section--team {
    padding-top: 32px;
  }

  .service-card,
  .contact-card,
  .contact-form-placeholder,
  .project-card__content {
    padding: 22px;
  }

  .service-card {
    padding: 0;
  }

  .service-card__body,
  .project-card__content {
    padding: 22px;
  }

  .format-switcher__header {
    padding-bottom: 28px;
  }

  .format-switcher__body {
    padding-top: 28px;
  }

  .format-switcher__nav {
    display: flex;
    gap: 10px;
    margin-right: calc(var(--container) * -0.03);
    overflow-x: auto;
    padding-bottom: 4px;
    scroll-snap-type: x mandatory;
  }

  .format-tab {
    flex: 0 0 min(238px, 76vw);
    min-height: 102px;
    scroll-snap-align: start;
  }

  .format-stage,
  .format-panel {
    min-height: 0;
  }

  .format-stage::before {
    inset: 14px;
  }

  .format-panel {
    padding: 32px 24px;
  }

  .format-panel__count {
    margin-bottom: 38px;
  }

  .format-panel h3 {
    font-size: clamp(1.8rem, 10vw, 2.55rem);
  }

  .format-panel__text {
    font-size: 1rem;
  }

  .format-ticker {
    margin-top: 20px;
  }

  .services-overview__heading {
    padding-bottom: 26px;
  }

  .hero__formats {
    margin-top: 22px;
  }

  .proof-strip {
    margin-top: 42px;
  }

  .intro-media,
  .intro-media img {
    min-height: 240px;
  }

  .proof-strip li {
    min-height: auto;
    padding: 24px;
  }

  .method-list li {
    grid-template-columns: 44px 1fr;
  }

  .method-list li strong {
    display: block;
  }

  .team-panel > div:not(.team-panel__media) {
    padding: 28px;
  }

  .portfolio-viewer {
    padding: 12px;
  }

  .portfolio-viewer__panel {
    max-height: calc(100vh - 24px);
  }

  .portfolio-viewer__body {
    padding: 34px 24px 26px;
  }

  .video-placeholder {
    min-height: 240px;
  }

  .team-panel__media,
  .team-panel__image,
  .contact-hero img,
  .single-hero__media img {
    min-height: 280px;
  }

  .site-footer__bottom {
    flex-direction: column;
  }
}

/* Premium dark UI refresh */
body {
  background:
    radial-gradient(circle at 70% -10%, rgba(36, 87, 230, 0.16), transparent 30vw),
    #07080b;
  color: rgba(244, 247, 251, 0.82);
}

body,
.site-main {
  color-scheme: dark;
}

h1 {
  max-width: 900px;
  font-size: clamp(2.2rem, 4.2vw, 3.9rem);
  font-weight: 680;
}

h2 {
  font-size: clamp(1.58rem, 2.55vw, 2.65rem);
  font-weight: 680;
}

h3 {
  font-size: clamp(1.1rem, 1.45vw, 1.45rem);
}

p {
  color: rgba(244, 247, 251, 0.72);
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--color-blue);
  outline-offset: 4px;
}

body .site-header,
body .site-header.is-scrolled {
  background: rgba(7, 8, 11, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.site-header__inner {
  min-height: 76px;
}

.site-brand img {
  filter: none;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.78);
}

.site-nav a:hover,
.site-nav a:focus {
  color: #fff;
}

.site-nav .sub-menu {
  border-color: rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(12, 14, 19, 0.98);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.site-nav .sub-menu a {
  color: rgba(255, 255, 255, 0.76);
}

.site-nav .sub-menu a:hover,
.site-nav .sub-menu a:focus {
  background: rgba(36, 87, 230, 0.16);
  color: #fff;
}

.site-header__cta,
.button {
  min-height: 44px;
  border-color: rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: #fff;
  color: #07080b;
}

.site-header__cta {
  border-color: var(--color-blue);
  background: var(--color-blue);
  color: #fff;
}

.site-header__cta:hover,
.site-header__cta:focus,
.button:hover,
.button:focus {
  border-color: #fff;
  background: #fff;
  color: #07080b;
  transform: translateY(-1px);
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.button--light {
  background: #fff;
  color: #07080b;
}

.eyebrow,
.hero .eyebrow,
.section--dark .eyebrow,
.site-footer .eyebrow {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
}

.text-link {
  color: #fff;
}

.text-link::after {
  color: var(--color-blue);
}

.hero {
  min-height: min(840px, 100vh);
  padding-top: 132px;
  padding-bottom: 72px;
}

.hero__content {
  max-width: 920px;
  padding-top: 8vh;
  padding-bottom: 0;
}

.hero__lead {
  max-width: 680px;
  color: rgba(244, 247, 251, 0.74);
  font-size: clamp(1rem, 1.4vw, 1.16rem);
}

.hero__media::after {
  background:
    linear-gradient(90deg, rgba(7, 8, 11, 0.96) 0%, rgba(7, 8, 11, 0.76) 46%, rgba(7, 8, 11, 0.22) 100%),
    linear-gradient(0deg, rgba(7, 8, 11, 0.94) 0%, rgba(7, 8, 11, 0.1) 62%);
}

.hero__formats,
.hero__metrics {
  display: none !important;
}

.section {
  padding: 84px 0;
  background: #07080b;
  color: #fff;
}

.section__inner {
  position: relative;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 32px;
}

.section-heading--split {
  align-items: center;
  padding-bottom: 22px;
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.section-heading h2,
.services-overview__heading h2,
.section--clients h2,
.section--team h2 {
  color: #fff;
}

.section--stats {
  margin-top: -1px;
  padding: 0 0 72px;
  background: #07080b;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.stat-card {
  min-height: 144px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(36, 87, 230, 0.16), transparent 46%),
    rgba(255, 255, 255, 0.055);
}

.stat-card strong {
  display: block;
  margin-bottom: 18px;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 680;
  line-height: 0.92;
}

.stat-card > span {
  color: rgba(244, 247, 251, 0.68);
  font-size: 0.82rem;
  font-weight: 720;
  text-transform: uppercase;
}

.section--services-overview,
.section--home-realisations,
.section--clients,
.section--team {
  background:
    radial-gradient(circle at 10% 0%, rgba(36, 87, 230, 0.08), transparent 28vw),
    #0a0c10;
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.services-overview__heading {
  grid-template-columns: minmax(0, 0.92fr) minmax(260px, 0.54fr);
  padding-bottom: 28px;
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.services-overview__heading p:not(.eyebrow) {
  color: rgba(244, 247, 251, 0.68);
}

.services-marquee {
  margin-top: 28px;
  border-color: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.25rem, 2.55vw, 2.55rem);
}

.services-marquee a {
  padding: 22px 30px;
}

.project-grid {
  gap: 16px;
}

.project-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.055);
  color: #fff;
}

.project-card__media {
  background: #11151d;
}

.project-card__media img {
  filter: saturate(0.9) contrast(1.03);
}

.project-card__content {
  padding: 22px;
}

.project-card__meta {
  color: rgba(255, 255, 255, 0.5);
}

.project-card__content p,
.section--dark .project-card__content p {
  color: rgba(244, 247, 251, 0.64);
}

body .section--home-realisations .section-heading,
body .section--home-realisations .section-heading--split {
  width: 100%;
  max-width: none;
}

body .section--home-realisations {
  padding-top: 0;
}

body .section--home-realisations .section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 320px);
  align-items: center;
  min-height: clamp(220px, 17vw, 292px);
  padding: clamp(30px, 4vw, 52px) 0;
  margin-bottom: 0;
}

body .section--home-realisations .section-heading--split > div {
  display: grid;
  align-content: center;
}

body .section--home-realisations .section-heading--split > .button {
  justify-self: center;
}

.portfolio-card h3 {
  min-height: auto;
}

.project-grid--archive .portfolio-card .project-card__content > p:not(.project-card__meta) {
  margin-bottom: 0;
}

.project-grid--archive .portfolio-card__actions {
  margin-top: 14px;
  padding-top: 0;
}

.section--clients {
  padding-bottom: 34px;
}

.section--clients .section-heading {
  margin-bottom: 26px;
}

.client-slider {
  border-color: rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.055);
}

.client-logo {
  min-height: 106px;
  background: #fff;
  border-right-color: rgba(7, 8, 11, 0.1);
}

.client-logo img {
  opacity: 0.9;
  filter: grayscale(1) contrast(1.05);
}

.section--team {
  padding-top: 34px;
  padding-bottom: 96px;
}

.team-panel {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.055);
  color: #fff;
}

.section--team .team-panel,
.section--team .team-panel > div:not(.team-panel__media) {
  background: rgba(255, 255, 255, 0.055);
  color: #fff;
}

.team-panel__media,
.team-panel__image {
  min-height: 390px;
}

.team-panel > div:not(.team-panel__media) {
  padding: clamp(30px, 5vw, 54px);
}

.section--team .team-panel p:last-child {
  color: rgba(244, 247, 251, 0.68);
}

.section--team-organisation {
  background: #fff;
  color: #07080b;
  border-top: 1px solid rgba(7, 8, 11, 0.08);
}

.section--team-organisation .intro-grid {
  align-items: center;
}

.section--team-organisation .eyebrow {
  color: var(--color-blue);
}

.section--team-organisation h2 {
  color: #07080b;
}

.section--team-organisation .rich-text,
.section--team-organisation .rich-text p {
  color: rgba(7, 8, 11, 0.72);
}

.page-hero,
.contact-hero,
.service-detail-hero,
.single-hero {
  background: #07080b;
  color: #fff;
}

.service-row,
.contact-card,
.contact-form-placeholder,
.post-card,
.portfolio-viewer__panel {
  border-color: rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.055);
  color: #fff;
}

.portfolio-viewer__backdrop {
  background: rgba(2, 5, 12, 0.9);
}

.portfolio-viewer__panel {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(7, 8, 11, 0.96);
  color: #fff;
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.58);
}

.portfolio-viewer__body h2 {
  color: #fff;
}

.portfolio-viewer__body > p:last-of-type {
  color: rgba(244, 247, 251, 0.76);
}

.portfolio-viewer__body .project-card__meta {
  color: var(--color-blue);
}

.portfolio-viewer .button--ghost {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.portfolio-viewer .button--ghost:hover,
.portfolio-viewer .button--ghost:focus-visible {
  border-color: var(--color-blue);
  background: var(--color-blue);
  color: #fff;
}

.section--realisation-content {
  background: #fff;
  color: #07080b;
  border-top: 1px solid rgba(7, 8, 11, 0.08);
}

.section--realisation-content .content-layout {
  max-width: 920px;
}

.section--realisation-content .entry-content,
.section--realisation-content .entry-content p,
.section--realisation-content .rich-text {
  color: rgba(7, 8, 11, 0.74);
}

.section--realisation-content .entry-content strong,
.section--realisation-content .entry-content b {
  color: #07080b;
}

.section--realisation-content .entry-content a,
.section--realisation-content .realisation-nav .text-link {
  color: #07080b;
}

.section--realisation-content .entry-content a:hover,
.section--realisation-content .entry-content a:focus-visible,
.section--realisation-content .realisation-nav .text-link:hover,
.section--realisation-content .realisation-nav .text-link:focus-visible {
  color: var(--color-blue);
}

.section--realisation-content .realisation-nav {
  border-top-color: rgba(7, 8, 11, 0.12);
}

.section--services-index {
  background: #fff;
  color: #07080b;
  border-top: 1px solid rgba(7, 8, 11, 0.08);
}

.section--services-index .portfolio-intro,
.section--services-index .portfolio-intro.rich-text {
  color: #07080b;
}

.section--services-index .portfolio-intro p {
  color: rgba(7, 8, 11, 0.72);
}

.section--services-index .service-list {
  gap: 18px;
}

.section--services-index .service-row {
  border: 1px solid rgba(7, 8, 11, 0.1);
  background: #f6f7f9;
  color: #07080b;
  box-shadow: none;
}

.section--services-index .service-row h2 {
  color: #07080b;
}

.section--services-index .service-row__eyebrow {
  color: var(--color-blue);
}

.section--services-index .service-row__content p:not(.service-row__eyebrow) {
  color: rgba(7, 8, 11, 0.68);
}

.section--services-index .service-row .text-link {
  color: #07080b;
}

.section--services-index .service-row .text-link:hover,
.section--services-index .service-row .text-link:focus-visible {
  color: var(--color-blue);
}

.section--service-approach {
  background: #fff;
  color: #07080b;
}

.section--service-approach .service-detail-main,
.section--service-approach .rich-text {
  color: #07080b;
}

.section--service-approach .eyebrow {
  color: var(--color-blue);
}

.section--service-approach .service-detail-main h2 {
  color: #07080b;
}

.section--service-approach .service-detail-main p,
.section--service-approach .rich-text p {
  color: rgba(7, 8, 11, 0.72);
}

.section--service-approach .service-detail-aside {
  border: 1px solid rgba(7, 8, 11, 0.1);
  background: #f6f7f9;
  color: #07080b;
  box-shadow: none;
}

.section--service-approach .service-detail-aside h2 {
  color: #07080b;
}

.section--service-approach .service-detail-aside li {
  color: rgba(7, 8, 11, 0.68);
}

.section--service-approach .service-detail-aside li::before {
  background: var(--color-blue);
}

.section--service-choices {
  background: #07080b;
  color: #fff;
}

.section--service-choices .service-columns {
  align-items: stretch;
  gap: clamp(18px, 2.2vw, 30px);
}

.section--service-choices .service-columns > div {
  padding: clamp(24px, 3vw, 38px);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(36, 87, 230, 0.12), transparent 46%),
    rgba(255, 255, 255, 0.055);
}

.section--service-choices .eyebrow {
  color: var(--color-blue);
}

.section--service-choices h2 {
  max-width: 520px;
  margin-bottom: 22px;
  color: #fff;
  font-size: clamp(1.35rem, 2vw, 1.95rem);
  line-height: 1.08;
}

.section--service-choices .check-list {
  gap: 14px;
}

.section--service-choices .check-list li {
  padding-left: 30px;
  color: rgba(244, 247, 251, 0.78);
  font-size: 1rem;
  line-height: 1.56;
}

.section--service-choices .check-list li::before {
  top: 0.48em;
  width: 10px;
  height: 10px;
  background: var(--color-blue);
  box-shadow: 0 0 0 5px rgba(36, 87, 230, 0.13);
}

.site-footer {
  background: #050609;
}

.site-footer .footer-cta {
  width: 100%;
  padding: 58px max(20px, calc((100vw - 1180px) / 2));
  margin: 0;
  border-bottom: 0;
  background: #fff;
  color: #07080b;
}

.site-footer .footer-cta .eyebrow {
  color: var(--color-blue);
}

.site-footer .footer-cta h2 {
  color: #07080b;
}

.site-footer .footer-cta .button {
  border-color: #07080b;
  background: #07080b;
  color: #fff;
}

.site-footer .footer-cta .button:hover,
.site-footer .footer-cta .button:focus {
  border-color: var(--color-blue);
  background: var(--color-blue);
  color: #fff;
}

@media (max-width: 980px) {
  .site-nav {
    background: #07080b;
  }

  .site-nav a {
    color: #fff;
  }

  .stats-grid,
  .services-overview__heading,
  .project-grid,
  .team-panel {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    gap: 10px;
  }

  body .section--home-realisations {
    padding-top: 58px;
  }

  body .section--home-realisations .section__inner {
    width: var(--container);
  }

  body .section--home-realisations .section-heading--split {
    grid-template-columns: 1fr;
    gap: 18px;
    min-height: auto;
    padding: 0 0 24px;
  }

  body .section--home-realisations .section-heading--split > .button {
    justify-self: start;
  }

  body .section--home-realisations .project-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 26px;
  }
}

@media (max-width: 680px) {
  h1 {
    font-size: clamp(2rem, 9vw, 2.75rem);
  }

  h2 {
    font-size: clamp(1.5rem, 7vw, 2.1rem);
  }

  .hero {
    padding-top: 112px;
    padding-bottom: 52px;
  }

  .section {
    padding: 58px 0;
  }

  .section--stats {
    padding-bottom: 50px;
  }

  .stat-card {
    min-height: 112px;
    padding: 20px;
  }

  .services-marquee {
    font-size: clamp(1.15rem, 7vw, 1.85rem);
  }

  body #services .services-marquee {
    min-height: 84px;
  }

  .services-marquee a {
    padding: 18px 22px;
  }

  body #services .services-marquee a {
    padding-top: 0;
    padding-bottom: 0;
  }

  .section--team {
    padding-top: 24px;
  }
}
