:root {
  --color-ink: #111111;
  --color-ink-soft: #4f4f4f;
  --color-blue: #217bb4;
  --color-blue-deep: #182b69;
  --color-cyan: #e8eef7;
  --color-coral: #217bb4;
  --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: Rubik, 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(33, 123, 180, 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: 0;
  transition: opacity 420ms 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: 1;
  transition: opacity 420ms ease;
}

.hero--with-video.hero-video-is-ready .hero__video {
  opacity: 1;
}

.hero--with-video.hero-video-is-ready .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:not(.team-panel__media) {
  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 var(--client-slider-duration, 28s) linear infinite;
  animation-delay: var(--client-slider-delay, -10s);
}

.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(33, 123, 180, 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(33, 123, 180, 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(33, 123, 180, 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(33, 123, 180, 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(33, 123, 180, 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(33, 123, 180, 0.38);
  background: rgba(33, 123, 180, 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(33, 123, 180, 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(33, 123, 180, 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;
  }
}

/* Contact test: form and practical information side by side. */
.contact-hero + .section .contact-layout--with-location {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(300px, 0.65fr);
  gap: 22px;
  width: min(1180px, calc(100vw - 40px));
  margin-inline: auto;
}

.contact-layout--with-location .contact-form-placeholder {
  min-width: 0;
  padding: clamp(28px, 4vw, 46px);
}

.contact-location-card {
  align-self: stretch;
  padding: clamp(30px, 3.5vw, 46px);
  border-radius: var(--radius-card);
  background: var(--color-ink);
  color: #fff;
}

.contact-location-card .eyebrow {
  color: var(--color-blue);
}

.contact-location-card h2 {
  margin-bottom: 28px;
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 2.75rem);
  line-height: 1;
}

.contact-location-card address {
  padding-bottom: 26px;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.78);
  font-style: normal;
  line-height: 1.65;
}

.contact-location-list {
  margin: 0;
}

.contact-location-list > div {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-location-list dt {
  color: rgba(255, 255, 255, 0.52);
  font-weight: 700;
}

.contact-location-list dd {
  min-height: 1.5em;
  margin: 0;
  color: #fff;
}

.contact-location-list a {
  color: inherit;
  font-weight: 700;
}

.contact-transit {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-transit__icons {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.contact-transit__icons img {
  display: block;
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.contact-transit__detail {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.92rem;
}

@media (max-width: 900px) {
  .contact-hero + .section .contact-layout--with-location {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 680px) {
  .contact-hero + .section .contact-layout--with-location {
    width: calc(100vw - 24px);
  }
}

/* Final feedback pass: transparent home header, dependable services menu and compact contact/portfolio. */
body.home .site-header:not(.is-scrolled) {
  background: transparent !important;
  backdrop-filter: none !important;
  border-color: transparent !important;
  box-shadow: none !important;
}

body.home .site-header:not(.is-scrolled) .site-nav .sub-menu {
  background: rgba(255, 255, 255, 0.98);
}

body.home .site-header:not(.is-scrolled) .site-nav .sub-menu a {
  color: rgba(7, 8, 11, 0.76);
}

body.home .site-header:not(.is-scrolled) .site-nav .sub-menu a:hover,
body.home .site-header:not(.is-scrolled) .site-nav .sub-menu a:focus-visible {
  background: rgba(33, 123, 180, 0.08);
  color: var(--color-blue);
}

.site-header,
.site-header__inner,
.site-nav {
  overflow: visible;
}

@media (min-width: 981px) {
  .site-nav .sub-menu {
    top: calc(100% - 1px);
  }
}

.contact-layout--stacked {
  display: grid;
  grid-template-columns: minmax(0, 1fr) !important;
  gap: 18px !important;
  width: min(980px, calc(100vw - 40px));
  margin-inline: auto;
}

.contact-hero + .section .contact-layout--stacked .contact-form-placeholder {
  width: 100%;
  padding: clamp(28px, 4vw, 46px);
}

.contact-layout--stacked .contact-form textarea {
  min-height: 116px;
  height: 116px;
  resize: vertical;
}

.contact-info-bar {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--color-blue);
  color: #fff;
}

.contact-info-bar > * {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 0;
  gap: 24px;
  padding: 24px 30px;
}

.contact-info-bar > * + * {
  border-left: 1px solid rgba(255, 255, 255, 0.24);
}

.contact-info-bar span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
  font-weight: 750;
  text-transform: uppercase;
}

.contact-info-bar strong {
  color: #fff;
  font-size: 1rem;
  line-height: 1.35;
  text-align: right;
}

.client-slider__track {
  animation-play-state: running !important;
}

body.post-type-archive-realisation .project-card__content {
  padding: 10px 14px 12px;
}

body.post-type-archive-realisation .project-card h3 {
  margin-bottom: 0;
}

@media (max-width: 980px) {
  body.home.menu-is-open .site-header,
  body.home.menu-is-open .site-header:not(.is-scrolled) {
    background: #fff !important;
  }

  body.home.menu-is-open .site-brand img {
    filter: none !important;
  }

  body.home.menu-is-open .menu-toggle span:not(.screen-reader-text) {
    background: #07080b;
  }

  body.home .site-nav.is-open a,
  body.home .site-header:not(.is-scrolled) .site-nav.is-open a,
  body.home .site-header:not(.is-scrolled) .site-nav.is-open .sub-menu a {
    color: rgba(7, 8, 11, 0.82);
  }
}

@media (max-width: 680px) {
  .contact-layout--stacked {
    width: min(100%, calc(100vw - 24px));
  }

  .contact-info-bar {
    grid-template-columns: 1fr;
  }

  .contact-info-bar > * {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    padding: 20px 22px;
  }

  .contact-info-bar > * + * {
    border-top: 1px solid rgba(255, 255, 255, 0.24);
    border-left: 0;
  }

  .contact-info-bar strong {
    text-align: left;
  }
}

/* Keep the desktop navigation for ordinary laptop windows. */
@media (min-width: 821px) and (max-width: 980px) {
  .menu-toggle {
    display: none;
  }

  .site-nav,
  .site-nav.is-open {
    position: static;
    inset: auto;
    display: block;
    padding: 0;
    background: transparent !important;
  }

  .site-nav__list {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .site-nav__list > li > a {
    font-size: 0.72rem;
  }

  body.home .site-header:not(.is-scrolled) .site-nav__list > li > a {
    color: rgba(255, 255, 255, 0.9);
  }

  body.home .site-header.is-scrolled .site-nav__list > li > a {
    color: rgba(7, 8, 11, 0.78);
  }

  .site-nav .sub-menu {
    position: absolute;
    top: calc(100% - 1px);
    left: -18px;
    display: grid;
    min-width: 260px;
    padding: 10px;
    border: 1px solid rgba(7, 8, 11, 0.1);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 24px 70px rgba(7, 8, 11, 0.14);
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
  }

  .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,
  body.home .site-header:not(.is-scrolled) .site-nav .sub-menu a {
    padding: 10px 12px;
    color: rgba(7, 8, 11, 0.78) !important;
    font-size: 0.86rem;
  }
}

@media (max-width: 820px) {
  body.home.is-at-top .menu-toggle,
  body.home .site-header:not(.is-scrolled) .menu-toggle {
    border-color: rgba(255, 255, 255, 0.36);
    background: transparent;
  }

  body.home.menu-is-open .site-nav.is-open {
    background: var(--color-white) !important;
  }

  body.home .agency-intro {
    grid-template-columns: minmax(0, 1fr);
    gap: 46px;
  }

  body.home .section--agency-intro {
    padding: 66px 0;
  }
}

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

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

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(7, 8, 11, 0.1);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(7, 8, 11, 0.14);
}

.site-nav .sub-menu a {
  color: rgba(7, 8, 11, 0.8);
}

.site-nav .sub-menu a:hover,
.site-nav .sub-menu a:focus {
  background: rgba(33, 123, 180, 0.08);
  color: var(--color-blue);
}

.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(33, 123, 180, 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(33, 123, 180, 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;
  font-size: clamp(1.6rem, 2.4vw, 2.125rem);
  line-height: 1.04;
}

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

.section--team-organisation .rich-text h3 {
  margin: 28px 0 12px;
  color: #07080b;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  line-height: 1.15;
}

.section--team-story {
  background: #fff;
  color: #07080b;
}

.team-story {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: clamp(42px, 7vw, 96px);
  align-items: center;
}

.team-story__media {
  overflow: hidden;
  border-radius: min(var(--radius), 8px);
}

.team-story__media img {
  display: block;
  width: 100%;
  aspect-ratio: 13 / 10;
  object-fit: cover;
}

.team-story__copy {
  max-width: 620px;
}

.team-story__copy p {
  color: rgba(7, 8, 11, 0.72);
  font-size: inherit;
  line-height: 1.7;
}

.team-story__copy p + p {
  margin-top: 24px;
}

.section--team-organisation .rich-text > p:empty,
.team-story__copy > p:empty {
  display: none;
}

.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: #fff;
  color: #07080b;
}

.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(7, 8, 11, 0.12);
  border-radius: 24px;
  background: #f6f7f9;
}

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

.section--service-choices h2 {
  max-width: 520px;
  margin-bottom: 22px;
  color: #07080b;
  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(7, 8, 11, 0.72);
  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(33, 123, 180, 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: #fff;
  }

  .site-nav a {
    color: #07080b;
  }

  .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;
  }
}

/* Expressive homepage system: immersive media, kinetic type and editorial projects. */
body.home {
  --home-blue: var(--color-blue, #217bb4);
  --home-black: #07080b;
  --home-white: #ffffff;
  --home-mist: #eef2f7;
  background: var(--home-black);
}

body.home .site-header,
body.home .site-header.is-scrolled {
  background: transparent;
  backdrop-filter: none;
  border-color: transparent;
  box-shadow: none;
  transition:
    opacity 280ms ease,
    transform 280ms ease,
    background 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

body.home .site-header:not(.is-scrolled):not(:focus-within) {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

body.home .site-header.is-scrolled {
  opacity: 1;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
  border-color: rgba(7, 8, 11, 0.12);
  box-shadow: 0 10px 34px rgba(7, 8, 11, 0.08);
  transform: translateY(0);
}

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

body.home .site-brand,
body.home .site-brand img {
  width: 148px;
  min-width: 148px;
}

body.home .site-nav a {
  color: rgba(7, 8, 11, 0.78);
}

body.home .site-header:not(.is-scrolled) .site-brand img {
  filter: brightness(0) invert(1);
}

body.home .site-header:not(.is-scrolled) .site-nav a {
  color: rgba(255, 255, 255, 0.9);
}

body.home .site-header:not(.is-scrolled) .site-nav a:hover,
body.home .site-header:not(.is-scrolled) .site-nav a:focus-visible {
  color: #fff;
}

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

body.home .site-nav__list {
  gap: 18px;
}

body.home .site-header__cta {
  min-height: 44px;
  padding: 0 17px;
  border-radius: 999px;
  font-size: 0.78rem;
}

body.home .hero {
  display: grid;
  min-height: 680px;
  height: calc(100svh - 56px);
  max-height: 880px;
  padding: 76px 0 72px;
  overflow: hidden;
  isolation: isolate;
  background: var(--home-black);
}

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

body.home .hero__media img,
body.home .hero__video,
body.home .hero__video iframe {
  width: 100%;
  height: 100%;
}

body.home .hero__media img {
  object-fit: cover;
  object-position: center;
}

body.home .hero__video iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%) scale(1.035);
}

body.home .hero__media::after {
  z-index: 2;
  content: "";
  background:
    linear-gradient(90deg, rgba(7, 8, 11, 0.92) 0%, rgba(7, 8, 11, 0.58) 52%, rgba(7, 8, 11, 0.2) 100%),
    linear-gradient(0deg, rgba(7, 8, 11, 0.88) 0%, rgba(7, 8, 11, 0.08) 58%);
}

body.home .hero__content {
  z-index: 4;
  display: grid;
  align-content: end;
  width: var(--container);
  max-width: none;
  min-height: 100%;
  padding: 56px 0 60px;
  margin: 0 auto;
}

body.home .hero .eyebrow {
  width: max-content;
  max-width: 100%;
  padding: 9px 13px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  background: rgba(7, 8, 11, 0.36);
  color: #fff;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  backdrop-filter: blur(12px);
}

body.home .hero h1 {
  max-width: 1060px;
  margin-bottom: 20px;
  color: #fff;
  font-size: 58px;
  font-weight: 650;
  line-height: 0.94;
  text-wrap: balance;
}

body.home .hero__word {
  display: inline-block;
  transform-origin: 50% 100%;
}

.motion-ready body.home .hero h1[data-reveal] .hero__word {
  opacity: 0;
  transform: translateY(0.65em) rotate(2deg);
}

.motion-ready body.home .hero h1[data-reveal].is-visible .hero__word {
  opacity: 1;
  transform: translateY(0) rotate(0);
  transition: opacity 620ms ease, transform 760ms cubic-bezier(0.2, 0.75, 0.2, 1);
  transition-delay: calc(120ms + (var(--word-index) * 32ms));
}

body.home .hero__lead {
  max-width: 690px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
  line-height: 1.58;
}

body.home .hero__actions {
  gap: 10px;
}

body.home .hero__actions .button {
  min-height: 50px;
  border-radius: 999px;
}

body.home .hero__actions .button:first-child {
  border-color: var(--home-blue);
  background: var(--home-blue);
  color: #fff;
}

body.home .hero__ticker {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 5;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(7, 8, 11, 0.56);
  color: #fff;
  backdrop-filter: blur(12px);
}

body.home .hero__ticker-track,
body.home .hero__ticker-group {
  display: flex;
  align-items: center;
  width: max-content;
}

body.home .hero__ticker-track {
  animation: home-ticker 30s linear infinite;
}

body.home .hero__ticker-group span {
  display: inline-flex;
  align-items: center;
  min-height: 52px;
  padding: 0 26px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
}

body.home .hero__ticker-group span::after {
  width: 7px;
  height: 7px;
  margin-left: 52px;
  border-radius: 50%;
  background: var(--home-blue);
  content: "";
}

body.home .hero__scroll {
  position: absolute;
  right: max(20px, calc((100vw - 1180px) / 2));
  bottom: 76px;
  z-index: 6;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 50%;
  color: #fff;
}

body.home .hero__scroll span {
  width: 9px;
  height: 9px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

body.home .section--stats {
  padding: 0;
  background: var(--home-white);
  color: var(--home-black);
}

body.home .section--agency-intro {
  padding: clamp(72px, 8vw, 112px) 0;
  background: var(--home-blue);
  color: #fff;
}

body.home .agency-intro {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(330px, 1.2fr) minmax(220px, 0.75fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: stretch;
}

body.home .agency-intro__lead h2 {
  max-width: 650px;
  margin-bottom: 28px;
  color: #fff;
  font-size: clamp(1.75rem, 3.1vw, 2.75rem);
  line-height: 1;
}

body.home .agency-intro__lead > p {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
}

body.home .agency-intro__details h3 {
  margin: 0 0 12px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.32);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

body.home .agency-intro__details h3:first-child {
  padding-top: 0;
  border-top: 0;
}

body.home .agency-intro__details p {
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.78);
}

body.home .agency-intro__details > p:empty,
body.home .team-panel__copy > p:empty {
  display: none;
}

body.home .agency-intro__media {
  min-height: 100%;
  overflow: hidden;
  border-radius: min(var(--radius), 8px);
}

body.home .agency-intro__media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 980px) {
  body.home .agency-intro {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  }

  body.home .agency-intro__media {
    grid-column: 1 / -1;
  }

  body.home .agency-intro__media img {
    min-height: 0;
    max-height: 460px;
    aspect-ratio: 16 / 8;
    object-position: 50% 42%;
  }
}

@media (max-width: 680px) {
  body.home .agency-intro {
    grid-template-columns: minmax(0, 1fr);
    gap: 38px;
  }

  body.home .agency-intro__media {
    grid-column: auto;
  }

  body.home .agency-intro__media img {
    max-height: none;
    aspect-ratio: 4 / 5;
  }
}

body.home .stats-grid {
  gap: 0;
  width: 100%;
  border-right: 1px solid rgba(7, 8, 11, 0.12);
  border-left: 1px solid rgba(7, 8, 11, 0.12);
}

body.home .stat-card {
  min-height: 170px;
  padding: 30px clamp(20px, 3vw, 48px);
  border: 0;
  border-right: 1px solid rgba(7, 8, 11, 0.12);
  border-radius: 0;
  background: transparent;
  color: var(--home-black);
}

body.home .stat-card:last-child {
  border-right: 0;
}

body.home .stat-card strong {
  margin-bottom: 24px;
  color: var(--home-blue);
  font-size: 52px;
  font-weight: 600;
}

body.home .stat-card > span {
  color: rgba(7, 8, 11, 0.64);
}

body.home #services.section--services-overview {
  padding: 92px 0 0;
  scroll-margin-top: 76px;
  border: 0;
  background: var(--home-blue);
  color: #fff;
}

body.home #services .services-overview__heading {
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  padding-bottom: 64px;
  border: 0;
}

body.home #services .eyebrow,
body.home #services .services-overview__heading p:not(.eyebrow),
body.home #services .text-link {
  color: #fff;
}

body.home #services .services-overview__heading h2 {
  width: 100%;
  max-width: none;
  color: #fff;
  font-size: 50px;
  line-height: 0.98;
}

body.home #services .services-overview__link {
  display: inline-flex;
  margin-top: 28px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.1;
}

body.home #services .services-marquee {
  width: 100vw;
  min-height: 112px;
  margin-top: 0;
  margin-left: calc(50% - 50vw);
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  font-size: 38px;
}

body.home #services .services-marquee a {
  min-height: 112px;
  padding: 0 38px;
}

body.home #services .services-marquee a::after {
  background: #fff;
}

body.home .section--home-realisations {
  padding: 94px 0 104px;
  border: 0;
  background: var(--home-white);
  color: var(--home-black);
}

body.home .section--home-realisations .section-heading--split {
  grid-template-columns: minmax(0, 1fr) auto;
  min-height: auto;
  padding: 0 0 50px;
  border: 0;
}

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

body.home .section--home-realisations h2 {
  max-width: 800px;
  color: var(--home-black);
  font-size: 50px;
  line-height: 0.98;
}

body.home .section--home-realisations .button {
  border-radius: 999px;
}

body.home .section--home-realisations .project-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.85fr);
  grid-template-rows: repeat(2, minmax(250px, 1fr));
  gap: 12px;
}

body.home .section--home-realisations .project-card {
  position: relative;
  min-height: 292px;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  background: #111;
  color: #fff;
  isolation: isolate;
}

body.home .section--home-realisations .project-card:first-child {
  grid-row: 1 / span 2;
  min-height: 596px;
}

body.home .section--home-realisations .project-card__media {
  position: absolute;
  inset: 0;
  z-index: -2;
  aspect-ratio: auto;
}

body.home .section--home-realisations .project-card__media::after {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at var(--pointer-x, 50%) var(--pointer-y, 50%), rgba(33, 123, 180, 0.14), transparent 34%),
    linear-gradient(0deg, rgba(7, 8, 11, 0.9) 0%, rgba(7, 8, 11, 0.02) 72%);
  content: "";
}

body.home .section--home-realisations .project-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.04);
  transform: scale(1.02) translateY(var(--parallax-y, 0));
  transition: transform 700ms cubic-bezier(0.2, 0.75, 0.2, 1), filter 400ms ease;
}

body.home .section--home-realisations .project-card:hover .project-card__media img,
body.home .section--home-realisations .project-card:focus-within .project-card__media img {
  filter: saturate(1.06) contrast(1.02);
  transform: scale(1.075) translateY(var(--parallax-y, 0));
}

body.home .section--home-realisations .project-card__content {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  padding: 26px;
  background: transparent;
}

body.home .section--home-realisations .project-card__meta {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.68);
}

body.home .section--home-realisations .project-card h3 {
  max-width: 720px;
  margin-bottom: 0;
  color: #fff;
  font-size: 28px;
}

body.home .section--home-realisations .project-card:first-child h3 {
  font-size: 38px;
}

body.home .section--home-realisations .project-card__content > p:not(.project-card__meta),
body.home .section--home-realisations .portfolio-card__play {
  display: none;
}

body.home .section--clients {
  padding: 84px 0;
  border: 0;
  background: var(--home-black);
  color: #fff;
}

body.home .section--clients .section-heading {
  max-width: 820px;
  margin-bottom: 38px;
}

body.home .section--clients h2 {
  font-size: 44px;
}

body.home .section--clients .client-slider {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: #fff;
}

body.home .section--team {
  padding: 0;
  border: 0;
  background: var(--home-blue);
}

body.home .section--team .section__inner {
  width: 100%;
}

body.home .section--team .team-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  min-height: 640px;
  border: 0;
  border-radius: 0;
  background: var(--home-blue);
}

body.home .team-panel__copy p {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.82);
}

body.home .team-panel__copy strong {
  color: #fff;
  font-weight: 800;
}

body.home .section--team .team-panel__media,
body.home .section--team .team-panel__image {
  min-height: 640px;
}

body.home .section--team .team-panel__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.home .section--team .team-panel > div:not(.team-panel__media) {
  display: grid;
  align-content: center;
  padding: 70px;
  background: var(--home-blue);
}

body.home .section--team .eyebrow,
body.home .section--team h2,
body.home .section--team .team-panel p:last-child {
  color: #fff;
}

body.home .section--team h2 {
  font-size: 46px;
  line-height: 1;
}

.page-progress {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 240;
  height: 3px;
  pointer-events: none;
  transform: scaleX(var(--page-progress, 0));
  transform-origin: 0 50%;
  background: var(--home-blue, #217bb4);
}

.motion-cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 220;
  width: 22px;
  height: 22px;
  margin: -11px 0 0 -11px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  mix-blend-mode: difference;
  transform: translate3d(var(--cursor-x, -40px), var(--cursor-y, -40px), 0) scale(1);
  transition: width 180ms ease, height 180ms ease, margin 180ms ease, opacity 180ms ease, transform 70ms linear;
}

.motion-cursor.is-visible {
  opacity: 1;
}

.motion-cursor.is-active {
  width: 46px;
  height: 46px;
  margin: -23px 0 0 -23px;
  background: #fff;
}

@keyframes home-ticker {
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 980px) {
  body.home .site-nav a {
    color: #fff;
  }

  body.home .hero h1 {
    font-size: 48px;
  }

  body.home #services .services-overview__heading,
  body.home .section--home-realisations .section-heading--split {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  body.home .section--home-realisations .project-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  body.home .section--home-realisations .project-card,
  body.home .section--home-realisations .project-card:first-child {
    grid-row: auto;
    min-height: 430px;
  }

  body.home .section--team .team-panel {
    grid-template-columns: 1fr;
  }

  body.home .section--team .team-panel__media,
  body.home .section--team .team-panel__image {
    min-height: 500px;
  }
}

@media (max-width: 680px) {
  body.home .site-header__inner {
    min-height: 68px;
  }

  body.home .site-brand,
  body.home .site-brand img {
    width: 122px;
    min-width: 122px;
  }

  body.home .hero {
    min-height: 620px;
    height: calc(100svh - 32px);
    padding-top: 68px;
  }

  body.home .hero__content {
    padding: 42px 0 70px;
  }

  body.home .hero h1 {
    font-size: 40px;
    line-height: 0.98;
  }

  body.home .hero__lead {
    font-size: 0.96rem;
  }

  body.home .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  body.home .hero__actions .button {
    width: 100%;
  }

  body.home .hero__scroll {
    display: none;
  }

  body.home .stats-grid {
    grid-template-columns: 1fr;
  }

  body.home .stat-card {
    min-height: 122px;
    border-right: 0;
    border-bottom: 1px solid rgba(7, 8, 11, 0.12);
  }

  body.home .stat-card:last-child {
    border-bottom: 0;
  }

  body.home .stat-card strong {
    font-size: 42px;
  }

  body.home #services.section--services-overview,
  body.home .section--home-realisations,
  body.home .section--clients {
    padding-top: 68px;
  }

  body.home #services .services-overview__heading {
    padding-bottom: 38px;
  }

  body.home #services .services-overview__heading h2,
  body.home .section--home-realisations h2,
  body.home .section--clients h2,
  body.home .section--team h2 {
    font-size: 34px;
  }

  body.home #services .services-marquee {
    min-height: 84px;
    font-size: 26px;
  }

  body.home #services .services-marquee a {
    min-height: 84px;
    padding: 0 24px;
  }

  body.home .section--home-realisations {
    padding-bottom: 72px;
  }

  body.home .section--home-realisations .project-card,
  body.home .section--home-realisations .project-card:first-child {
    min-height: 350px;
  }

  body.home .section--home-realisations .project-card__content {
    padding: 20px;
  }

  body.home .section--home-realisations .project-card h3,
  body.home .section--home-realisations .project-card:first-child h3 {
    font-size: 24px;
  }

  body.home .section--team .team-panel__media,
  body.home .section--team .team-panel__image {
    min-height: 330px;
  }

  body.home .section--team .team-panel > div:not(.team-panel__media) {
    padding: 46px 20px 58px;
  }

  .motion-cursor {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.home .site-header,
  body.home .site-header.is-scrolled {
    transition: none;
  }

  body.home .hero__ticker-track {
    animation: none;
  }

  .motion-cursor,
  .page-progress {
    display: none;
  }
}

/* Interior pages: shared editorial system */
body:not(.home) {
  --interior-black: #07080b;
  --interior-white: #ffffff;
  --interior-mist: #f3f5f8;
  --interior-text: rgba(7, 8, 11, 0.72);
  --interior-line: rgba(7, 8, 11, 0.12);
  background: var(--interior-black);
}

body:not(.home) .site-header,
body:not(.home) .site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  border-color: var(--interior-line);
  box-shadow: none;
}

body:not(.home) .site-header.is-scrolled {
  box-shadow: 0 10px 34px rgba(7, 8, 11, 0.08);
}

body:not(.home) .site-brand,
body:not(.home) .site-brand img {
  width: 148px;
  min-width: 148px;
}

body:not(.home) .site-nav a {
  color: rgba(7, 8, 11, 0.78);
}

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

body:not(.home) .site-nav .sub-menu {
  border-color: var(--interior-line);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 70px rgba(7, 8, 11, 0.14);
}

body:not(.home) .site-nav .sub-menu a {
  color: rgba(7, 8, 11, 0.7);
}

body:not(.home) .site-nav .sub-menu a:hover,
body:not(.home) .site-nav .sub-menu a:focus-visible {
  background: rgba(33, 123, 180, 0.08);
  color: var(--color-blue);
}

body:not(.home) .menu-toggle span:not(.screen-reader-text) {
  background: var(--interior-black);
}

body:not(.home) .page-hero,
body:not(.home) .contact-hero,
body:not(.home) .service-detail-hero,
body:not(.home) .single-hero {
  min-height: clamp(520px, 65svh, 640px);
  padding-top: 132px;
  padding-bottom: 66px;
}

body:not(.home) .page-hero--compact {
  min-height: 360px;
}

body:not(.home) .page-hero h1,
body:not(.home) .contact-hero h1,
body:not(.home) .service-detail-hero h1,
body:not(.home) .single-hero h1 {
  max-width: 850px;
  margin-bottom: 22px;
  font-size: clamp(2.3rem, 4vw, 3.55rem);
  font-weight: 650;
}

body:not(.home) .page-hero__inner p:not(.eyebrow),
body:not(.home) .contact-hero__content p:not(.eyebrow),
body:not(.home) .service-detail-hero__content p:not(.eyebrow),
body:not(.home) .single-hero__content > p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.08rem;
}

body:not(.home) .page-hero__media::after {
  background:
    linear-gradient(90deg, rgba(7, 8, 11, 0.91) 0%, rgba(7, 8, 11, 0.55) 58%, rgba(7, 8, 11, 0.24) 100%),
    linear-gradient(0deg, rgba(7, 8, 11, 0.72), transparent 58%);
}

body:not(.home) .section {
  padding: 86px 0;
}

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

body:not(.home) .service-detail-hero__media img,
body:not(.home) .contact-hero img,
body:not(.home) .single-hero__media img,
body:not(.home) .service-row__media,
body:not(.home) .project-card,
body:not(.home) .team-card,
body:not(.home) .contact-card,
body:not(.home) .contact-form-placeholder,
body:not(.home) .service-detail-aside,
body:not(.home) .section--service-choices .service-columns > div,
body:not(.home) .single-video {
  border-radius: min(var(--radius), 8px);
}

/* Services index */
body:not(.home) .section--services-index {
  padding-top: 80px;
}

body:not(.home) .section--services-index .portfolio-intro {
  max-width: 920px;
  padding-left: 24px;
  margin-bottom: 60px;
  border-left-width: 4px;
}

body:not(.home) .section--services-index .service-list {
  gap: 0;
  border-top: 1px solid var(--interior-line);
}

body:not(.home) .section--services-index .service-row {
  grid-template-columns: minmax(250px, 0.38fr) minmax(0, 0.48fr) minmax(150px, 0.14fr);
  gap: clamp(24px, 4vw, 56px);
  min-height: 250px;
  padding: 30px 0;
  border: 0;
  border-bottom: 1px solid var(--interior-line);
  border-radius: 0;
  background: var(--interior-white);
}

body:not(.home) .section--services-index .service-row__media img {
  aspect-ratio: 16 / 9;
}

body:not(.home) .section--services-index .service-row h2 {
  font-size: clamp(1.65rem, 2.7vw, 2.6rem);
}

body:not(.home) .section--services-index .service-row .text-link {
  margin-top: 0;
  justify-self: end;
}

/* Portfolio archive */
body.post-type-archive-realisation .section {
  background: var(--interior-black);
}

body.post-type-archive-realisation .portfolio-intro {
  max-width: 900px;
  margin-bottom: 42px;
  border-left-width: 4px;
}

body.post-type-archive-realisation .portfolio-intro h2 {
  max-width: 820px;
  font-size: clamp(1.8rem, 3vw, 3rem);
}

body.post-type-archive-realisation .portfolio-filters {
  gap: 8px;
  margin: 0 0 42px;
}

body.post-type-archive-realisation .portfolio-filter {
  min-height: 44px;
  border-radius: 999px;
}

body.post-type-archive-realisation .project-grid--archive {
  gap: 18px;
}

body.post-type-archive-realisation .project-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #121419;
  box-shadow: none;
}

body.post-type-archive-realisation .project-card:hover,
body.post-type-archive-realisation .project-card:focus-within {
  border-color: rgba(33, 123, 180, 0.7);
  box-shadow: 0 22px 64px rgba(0, 0, 0, 0.28);
}

body.post-type-archive-realisation .project-card__media img {
  aspect-ratio: 16 / 10;
}

body.post-type-archive-realisation .project-card__content {
  padding: 24px;
}

body.post-type-archive-realisation .project-card__content > p:not(.project-card__meta) {
  color: rgba(255, 255, 255, 0.64);
}

body.post-type-archive-realisation .portfolio-card__actions {
  gap: 18px;
  padding-top: 12px;
}

/* Team */
.section--team-organisation + .section {
  background: var(--interior-black);
}

.section--team-organisation + .section .team-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.section--team-organisation + .section .team-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #121419;
  box-shadow: none;
}

.section--team-organisation + .section .team-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.section--team-organisation + .section .team-card > div {
  padding: 28px;
}

.section--team-organisation + .section .team-card h2 {
  color: #fff;
  font-size: clamp(1.55rem, 2.5vw, 2.35rem);
}

.section--team-organisation + .section .team-card--join {
  border-color: rgba(255, 255, 255, 0.2);
  background: var(--color-blue);
}

/* Contact */
.contact-hero + .section {
  background: var(--interior-white);
  color: var(--interior-black);
}

.contact-hero + .section .contact-layout {
  gap: 18px;
}

.contact-hero + .section .contact-card,
.contact-hero + .section .contact-form-placeholder {
  border: 1px solid var(--interior-line);
  background: var(--interior-mist);
  color: var(--interior-black);
  box-shadow: none;
}

.contact-hero + .section .contact-card p,
.contact-hero + .section .contact-card li,
.contact-hero + .section .contact-form-placeholder > p {
  color: var(--interior-text);
}

.contact-hero + .section .fake-form span,
.contact-hero + .section .contact-form input,
.contact-hero + .section .contact-form textarea,
.contact-hero + .section .contact-form select {
  border-color: var(--interior-line);
  background: var(--interior-white);
  color: var(--interior-black);
}

/* Service details */
body:not(.home) .service-detail-hero,
body:not(.home) .contact-hero,
body:not(.home) .single-hero {
  gap: clamp(34px, 5vw, 70px);
}

body:not(.home) .service-detail-hero__media img,
body:not(.home) .contact-hero img,
body:not(.home) .single-hero__media img {
  min-height: 390px;
  box-shadow: none;
}

body:not(.home) .section--service-approach {
  padding-top: 82px;
  padding-bottom: 82px;
}

body:not(.home) .section--service-approach .service-detail-aside {
  padding: 30px;
}

body:not(.home) .section--service-choices .service-columns > div {
  border-color: var(--interior-line);
  background: var(--interior-mist);
}

body:not(.home) .section--service-choices + .section {
  background: var(--interior-white);
  color: var(--interior-black);
}

body:not(.home) .section--service-choices + .section .section-heading h2,
body:not(.home) .section--service-choices + .section .project-card h3 {
  color: var(--interior-black);
}

body:not(.home) .section--service-choices + .section .project-card {
  overflow: hidden;
  border: 1px solid var(--interior-line);
  background: var(--interior-mist);
  color: var(--interior-black);
  box-shadow: none;
}

body:not(.home) .section--service-choices + .section .project-card p {
  color: var(--interior-text);
}

/* Realisation detail and generic content */
body.single-realisation .single-hero__content {
  color: #fff;
}

body.single-realisation .single-hero__content h1 {
  color: #fff;
}

body.single-realisation .realisation-meta dt {
  color: var(--color-blue);
}

body.single-realisation .realisation-meta dd {
  color: rgba(255, 255, 255, 0.72);
}

body.single-realisation .section--realisation-content {
  padding-top: 78px;
  padding-bottom: 78px;
}

body:not(.home) .page-hero--compact + .section {
  background: var(--interior-white);
  color: var(--interior-black);
}

body:not(.home) .page-hero--compact + .section .entry-content,
body:not(.home) .page-hero--compact + .section .entry-content p {
  color: var(--interior-text);
}

@media (max-width: 980px) {
  body:not(.home) .site-nav {
    background: var(--interior-white);
  }

  body:not(.home) .site-nav a {
    color: var(--interior-black);
  }

  body:not(.home) .section--services-index .service-row {
    grid-template-columns: minmax(220px, 0.42fr) minmax(0, 0.58fr);
  }

  body:not(.home) .section--services-index .service-row .text-link {
    grid-column: 2;
    justify-self: start;
  }

  body.post-type-archive-realisation .project-grid--archive {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  body:not(.home) .page-hero,
  body:not(.home) .contact-hero,
  body:not(.home) .service-detail-hero,
  body:not(.home) .single-hero {
    min-height: auto;
    padding-top: 112px;
    padding-bottom: 52px;
  }

  body:not(.home) .page-hero h1,
  body:not(.home) .contact-hero h1,
  body:not(.home) .service-detail-hero h1,
  body:not(.home) .single-hero h1 {
    font-size: clamp(2rem, 9vw, 2.7rem);
  }

  body:not(.home) .section {
    padding: 62px 0;
  }

  body:not(.home) .section--services-index .portfolio-intro {
    margin-bottom: 42px;
  }

  body:not(.home) .section--services-index .service-row {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 24px 0;
  }

  body:not(.home) .section--services-index .service-row .text-link {
    grid-column: 1;
  }

  body.post-type-archive-realisation .portfolio-filters {
    display: flex;
    width: 100%;
    margin-right: 0;
    overflow-x: auto;
    padding: 0 0 10px;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
  }

  body.post-type-archive-realisation .portfolio-filters::-webkit-scrollbar {
    display: none;
  }

  body.post-type-archive-realisation .portfolio-filter {
    flex: 0 0 auto;
    width: auto;
    min-width: max-content;
    padding-right: 18px;
    padding-left: 18px;
    scroll-snap-align: start;
  }

  body.post-type-archive-realisation .project-grid--archive,
  .section--team-organisation + .section .team-grid {
    grid-template-columns: 1fr;
  }

  body:not(.home) .service-detail-hero__media img,
  body:not(.home) .contact-hero img,
  body:not(.home) .single-hero__media img {
    min-height: 280px;
  }
}

/* Refinements: denser team, framed portfolio and stronger brand accents. */
.motion-ready .hero [data-reveal].is-visible {
  transform: translate3d(0, 0, 0);
}

body.home .section--stats {
  margin-top: 0;
}

.site-footer .footer-cta h2 {
  max-width: 900px;
  font-size: clamp(1.35rem, 1.9vw, 1.5rem);
  line-height: 1.2;
}

.site-footer .footer-cta .eyebrow {
  font-size: 0.78rem;
}

/* Team cards are sized for a four-column, eight-person roster. */
.section--team-organisation + .section .team-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
}

.section--team-organisation + .section .team-card {
  height: 100%;
}

.section--team-organisation + .section .team-card:not(.team-card--join) {
  display: grid;
  grid-template-rows: auto 1fr;
}

.section--team-organisation + .section .team-card img {
  aspect-ratio: 1 / 1;
}

.section--team-organisation + .section .team-card > div {
  padding: 20px;
}

.section--team-organisation + .section .team-card h2 {
  font-size: clamp(1.35rem, 1.8vw, 1.65rem);
}

.section--team-organisation + .section .team-card--join {
  aspect-ratio: 0.7;
  min-height: 0;
}

/* Keep the portfolio dark while introducing clear white page margins. */
body.post-type-archive-realisation .section {
  padding-top: 24px;
  background: var(--interior-white);
}

body.post-type-archive-realisation .section > .section__inner {
  width: var(--container);
  padding: clamp(42px, 5vw, 68px);
  border-radius: min(var(--radius), 8px);
  background: var(--interior-black);
}

/* Contact uses the cafe visual as a full-bleed hero image. */
body:not(.home) .contact-hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

body:not(.home) .contact-hero::after {
  position: absolute;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7, 8, 11, 0.86) 0%, rgba(7, 8, 11, 0.6) 48%, rgba(7, 8, 11, 0.2) 100%),
    linear-gradient(0deg, rgba(7, 8, 11, 0.62), transparent 62%);
  content: "";
  inset: 0;
}

body:not(.home) .contact-hero__content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

body:not(.home) .contact-hero > img {
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  border: 0;
  border-radius: 0;
  filter: brightness(1.08) saturate(0.94);
  object-fit: cover;
  object-position: 35% 50%;
  inset: 0;
}

@media (max-width: 980px) {
	.team-story {
		grid-template-columns: 1fr;
	}

	.team-story__copy {
		max-width: 760px;
	}

  .section--team-organisation + .section .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section--team-organisation + .section .team-card--join {
    aspect-ratio: auto;
    min-height: 420px;
  }
}

@media (max-width: 680px) {
  .site-footer .footer-cta h2 {
    font-size: 1.35rem;
  }

  .section--team-organisation + .section .team-grid {
    grid-template-columns: 1fr;
  }

  .section--team-organisation + .section .team-card--join {
    min-height: 360px;
  }

  body.post-type-archive-realisation .section {
    padding: 12px 0 62px;
  }

  body.post-type-archive-realisation .section > .section__inner {
    width: calc(100vw - 24px);
    padding: 34px 16px;
  }

  body:not(.home) .contact-hero::after {
    background: linear-gradient(180deg, rgba(7, 8, 11, 0.68), rgba(7, 8, 11, 0.82));
  }
}

/* July 2026 review: simplify navigation paths and tighten the page rhythm. */
body.home .hero {
  height: auto;
  min-height: 100svh;
  max-height: none;
}

body.home .stat-card > span {
  font-size: 1.25rem;
  line-height: 1.25;
}

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

.motion-cursor {
  display: none !important;
}

.service-detail-layout--single {
  grid-template-columns: minmax(0, 1fr);
}

.service-detail-layout--single .service-detail-main {
  max-width: 920px;
}

body.post-type-archive-realisation .site-main > .section {
  padding-top: 100px;
}

body.post-type-archive-realisation .portfolio-card__actions {
  padding-top: 4px;
}

body:not(.home) .contact-hero {
  min-height: 240px;
  padding-top: 92px;
  padding-bottom: 24px;
}

body:not(.home) .contact-hero h1 {
  max-width: 900px;
  margin-bottom: 10px;
  font-size: clamp(1.9rem, 3vw, 2.55rem);
  line-height: 1.05;
}

body:not(.home) .contact-hero__content p:not(.eyebrow) {
  display: none;
}

body:not(.home) .page-hero--contact-size {
  min-height: 240px;
  padding-top: 92px;
  padding-bottom: 24px;
}

body:not(.home) .page-hero--contact-size h1 {
  max-width: 900px;
  margin-bottom: 0;
  font-size: clamp(1.9rem, 3vw, 2.55rem);
  line-height: 1.05;
}

body:not(.home) .page-hero--contact-size .page-hero__inner > p:not(.eyebrow) {
  display: none;
}

@media (max-width: 680px) {
  body.home .hero {
    height: auto;
    min-height: 100svh;
  }

  body.home .stat-card > span {
    font-size: 1.05rem;
  }

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

  body.post-type-archive-realisation .site-main > .section {
    padding-top: 88px;
  }

  body:not(.home) .contact-hero {
    min-height: 261px;
    padding-top: 86px;
    padding-bottom: 20px;
  }

  body:not(.home) .page-hero--contact-size {
    min-height: 261px;
    padding-top: 86px;
    padding-bottom: 20px;
  }

  body:not(.home) .contact-hero h1 {
    margin-bottom: 0;
    font-size: clamp(1.65rem, 7.5vw, 2rem);
  }

  body:not(.home) .page-hero--contact-size h1 {
    font-size: clamp(1.65rem, 7.5vw, 2rem);
  }

  .contact-hero + .section .contact-form-placeholder {
    order: -1;
  }
}

/* Complementary review: clearer video, service-led navigation and richer interiors. */
body.home .hero__media::after {
  background:
    linear-gradient(90deg, rgba(7, 8, 11, 0.68) 0%, rgba(7, 8, 11, 0.3) 54%, rgba(7, 8, 11, 0.06) 100%),
    linear-gradient(0deg, rgba(7, 8, 11, 0.58) 0%, rgba(7, 8, 11, 0.03) 62%);
}

body.home .hero h1,
body.home .hero__lead {
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.5);
}

body.home .stat-card__prefix {
  margin-right: 0.12em;
}

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

body.home .section--home-service-tiles .section-heading--split {
  padding-bottom: 42px;
}

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

.home-service-tile {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 8px;
  background: #07080b;
  color: #fff;
  isolation: isolate;
}

.home-service-tile img,
.home-service-tile__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.home-service-tile img {
  z-index: -2;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 600ms cubic-bezier(0.2, 0.75, 0.2, 1), filter 300ms ease;
}

.home-service-tile__overlay {
  z-index: -1;
  background: linear-gradient(0deg, rgba(7, 8, 11, 0.88) 0%, rgba(7, 8, 11, 0.08) 74%);
}

.home-service-tile__content {
  position: absolute;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 38px;
  gap: 14px;
  align-items: end;
  padding: 20px;
  inset: 0;
}

.home-service-tile__index {
  display: none;
}

.home-service-tile strong {
  align-self: end;
  color: #fff;
  font-size: clamp(1.1rem, 1.65vw, 1.55rem);
  line-height: 1.08;
}

.home-service-tile__arrow {
  position: relative;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 50%;
}

.home-service-tile__arrow::before {
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  content: "";
  transform: translateX(-2px) rotate(45deg);
}

.home-service-tile:hover img,
.home-service-tile:focus-visible img {
  filter: saturate(1.08) contrast(1.03);
  transform: scale(1.08);
}

.home-service-tile:hover .home-service-tile__arrow,
.home-service-tile:focus-visible .home-service-tile__arrow {
  border-color: var(--color-blue);
  background: var(--color-blue);
}

/* Services index: compact scannable cards instead of a long list. */
body:not(.home) .section--services-index .service-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  border-top: 0;
}

body:not(.home) .section--services-index .service-row {
  display: flex;
  min-width: 0;
  min-height: 100%;
  flex-direction: column;
  gap: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--interior-line);
  border-radius: 8px;
  background: var(--interior-mist);
}

body:not(.home) .section--services-index .service-row__media {
  display: block;
  width: 100%;
}

body:not(.home) .section--services-index .service-row__media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

body:not(.home) .section--services-index .service-row:hover .service-row__media img,
body:not(.home) .section--services-index .service-row:focus-within .service-row__media img {
  transform: scale(1.045);
}

body:not(.home) .section--services-index .service-row__content {
  flex: 1;
  padding: 24px 24px 0;
}

body:not(.home) .section--services-index .service-row h2 {
  font-size: clamp(1.55rem, 2.2vw, 2rem);
}

body:not(.home) .section--services-index .service-row .text-link {
  margin: 24px;
  justify-self: auto;
  align-self: flex-start;
}

/* Service details start directly with content and show references earlier. */
body:not(.home) .section--service-approach-first {
  padding-top: 142px;
  padding-bottom: 52px;
}

.section--service-approach-first .service-detail-main h1 {
  max-width: 900px;
  margin-bottom: 22px;
  color: #07080b;
  font-size: clamp(2.4rem, 5vw, 4.45rem);
  line-height: 0.98;
}

.section--service-approach-first .service-detail-lead {
  max-width: 820px;
  margin-bottom: 38px;
  color: rgba(7, 8, 11, 0.82);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.45;
}

body:not(.home) .section--service-examples {
  background: var(--interior-black);
  color: #fff;
}

body:not(.home) .section--service-examples .eyebrow {
  color: var(--color-blue);
}

body:not(.home) .section--service-examples h2,
body:not(.home) .section--service-examples .project-card h3 {
  color: #fff;
}

body:not(.home) .section--service-examples .project-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #121419;
  color: #fff;
}

body:not(.home) .section--service-examples .project-card p {
  color: rgba(255, 255, 255, 0.66);
}

body:not(.home) .section--service-examples .text-link {
  color: #fff;
}

/* Project details use the playable video as the primary visual. */
body.single-realisation .single-hero {
  align-items: center;
}

body.single-realisation .single-hero__video {
  align-self: center;
  min-width: 0;
}

body.single-realisation .single-video--hero {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: #000;
  box-shadow: none;
}

body.single-realisation .single-video--hero iframe,
body.single-realisation .single-video--hero video {
  width: 100%;
  aspect-ratio: 16 / 9;
}

body.single-realisation .single-image--hero {
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  background: #fff;
}

body.single-realisation .single-image--hero img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
}

body.single-realisation .single-video--hero .video-placeholder {
  min-height: 360px;
}

/* Contact: a stronger editorial panel paired with a clear form surface. */
.contact-hero + .section {
  padding-top: 72px;
  padding-bottom: 96px;
}

.contact-hero + .section .contact-layout {
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 18px;
  align-items: stretch;
}

.contact-hero + .section .contact-card--feature {
  padding: clamp(32px, 4vw, 54px);
  border: 0;
  border-radius: 8px;
  background: var(--color-blue);
  color: #fff;
}

.contact-card--feature .eyebrow,
.contact-card--feature h2,
.contact-card--feature a,
.contact-card--feature strong {
  color: #fff;
}

.contact-card--feature h2 {
  margin-bottom: 24px;
  font-size: clamp(2rem, 3.6vw, 3.45rem);
  line-height: 1;
}

.contact-hero + .section .contact-card--feature .contact-card__lead,
.contact-hero + .section .contact-card--feature .contact-card__note,
.contact-hero + .section .contact-card--feature .contact-card__editor,
.contact-hero + .section .contact-card--feature .contact-card__editor p {
  color: rgba(255, 255, 255, 0.82);
}

.contact-direct {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 38px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.contact-direct > * {
  min-width: 0;
  padding: 24px 18px 24px 0;
}

.contact-direct > * + * {
  padding-left: 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
}

.contact-direct span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.76rem;
  font-weight: 760;
  text-transform: uppercase;
}

.contact-direct strong {
  font-size: 1rem;
  line-height: 1.45;
}

.contact-card__note,
.contact-card__editor {
  margin-top: 28px;
}

.contact-hero + .section .contact-form-placeholder {
  padding: clamp(32px, 4vw, 54px);
  border: 1px solid var(--interior-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 26px 70px rgba(7, 8, 11, 0.1);
}

.contact-form-placeholder > .eyebrow {
  color: var(--color-blue);
}

.contact-form-placeholder > h2 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 3vw, 3rem);
}

/* Legal content mirrors the current site while remaining editable in WordPress. */
.legal-content {
  max-width: 1180px;
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(42px, 7vw, 90px);
  align-items: start;
}

.legal-content h2 {
  margin-bottom: 28px;
  font-size: clamp(2rem, 3vw, 3rem);
}

.legal-content h3 {
  margin-top: 34px;
  margin-bottom: 10px;
  color: var(--color-blue);
  font-size: 1.1rem;
}

.legal-content p {
  color: rgba(7, 8, 11, 0.72);
  font-size: 0.98rem;
  line-height: 1.75;
}

.legal-credits {
  padding-top: 8px;
  margin-top: 40px;
  border-top: 1px solid rgba(7, 8, 11, 0.12);
}

/* July review: transparent home navigation and clearer editorial surfaces. */
body.home .stat-card {
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
}

body.home .home-service-tile,
body.home .home-service-tile strong,
body.home .home-service-tile__content,
body.home .home-service-tile__arrow {
  color: #fff !important;
}

.page-hero__media--team {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.page-hero__media--team img {
  min-width: 0;
  object-position: 50% 28%;
}

.section--team-organisation + .section .team-card p {
  color: rgba(255, 255, 255, 0.68);
}

body.home .site-header:not(.is-scrolled) .menu-toggle span:not(.screen-reader-text) {
  background: #fff;
}

@media (max-width: 980px) {
  .home-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body:not(.home) .section--services-index .service-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .legal-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  body.home .hero__media::after {
    background:
      linear-gradient(90deg, rgba(7, 8, 11, 0.6), rgba(7, 8, 11, 0.2)),
      linear-gradient(0deg, rgba(7, 8, 11, 0.44), rgba(7, 8, 11, 0.03));
  }

  body.home .section--home-service-tiles {
    padding-top: 68px;
  }

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

  .home-service-tile__content {
    grid-template-columns: minmax(0, 1fr) 32px;
    gap: 8px;
    padding: 14px;
  }

  .home-service-tile__index {
    top: 12px;
    left: 14px;
  }

  .home-service-tile strong {
    font-size: 0.96rem;
  }

  .home-service-tile__arrow {
    width: 32px;
    height: 32px;
  }

  body:not(.home) .section--services-index .service-list {
    grid-template-columns: 1fr;
  }

  body:not(.home) .section--services-index .service-row {
    padding: 0;
  }

  body:not(.home) .section--services-index .service-row .text-link {
    grid-column: auto;
  }

  body:not(.home) .section--service-approach-first {
    padding-top: 116px;
  }

  .section--service-approach-first .service-detail-main h1 {
    font-size: clamp(2.15rem, 11vw, 3.15rem);
  }

  body.single-realisation .single-hero {
    gap: 30px;
  }

  body.single-realisation .single-video--hero .video-placeholder {
    min-height: 220px;
  }

  .contact-hero + .section {
    padding-top: 52px;
  }

  .contact-hero + .section .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-direct {
    grid-template-columns: 1fr;
  }

  .contact-direct > * + * {
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    border-left: 0;
  }

  .contact-hero + .section .contact-card--feature {
    order: 1;
  }
}

/* July review: video-first project pages and a tighter full-width portfolio. */
body.single-realisation .single-hero--video-only {
  display: block;
  min-height: 0;
  padding: 124px max(20px, calc((100vw - 1180px) / 2)) 64px;
  background: #07080b;
}

body.single-realisation .single-hero--video-only .single-hero__video {
  width: min(1080px, 100%);
  margin: 0 auto;
}

body.single-realisation .content-layout--realisation {
  max-width: 980px;
}

body.single-realisation .realisation-intro {
  padding-bottom: 42px;
  margin-bottom: 42px;
  border-bottom: 1px solid rgba(7, 8, 11, 0.12);
}

body.single-realisation .realisation-intro .eyebrow,
body.single-realisation .realisation-intro .realisation-meta dt {
  color: var(--color-blue);
}

body.single-realisation .realisation-intro h1 {
  max-width: 900px;
  margin-bottom: 20px;
  color: #07080b;
  font-size: clamp(2.2rem, 4.5vw, 4.35rem);
  line-height: 1;
}

body.single-realisation .realisation-intro > p:not(.eyebrow),
body.single-realisation .realisation-intro .realisation-meta dd {
  color: rgba(7, 8, 11, 0.68);
}

body.post-type-archive-realisation .site-main > .section,
body.post-type-archive-realisation .section {
  padding: 92px 0 76px;
  background: var(--interior-black);
}

body.post-type-archive-realisation .section > .section__inner {
  width: var(--container);
  padding: 0;
  border-radius: 0;
  background: transparent;
}

body.post-type-archive-realisation .portfolio-intro,
body.post-type-archive-realisation .portfolio-filters {
  margin-bottom: 28px;
}

body.post-type-archive-realisation .project-grid--archive {
  gap: 10px;
}

body.post-type-archive-realisation .project-card__content {
  padding: 16px 18px 18px;
}

body.post-type-archive-realisation .project-card h3 {
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
}

body.post-type-archive-realisation .portfolio-card__actions {
  margin-top: 8px;
  padding-top: 0;
}

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

.contact-form .contact-form-field {
  display: block;
  min-width: 0;
  margin: 0;
  color: rgba(7, 8, 11, 0.72);
  font-size: 0.84rem;
  font-weight: 700;
}

.contact-form .contact-form-field--wide {
  grid-column: 1 / -1;
}

.contact-form .wpcf7-form-control-wrap {
  display: block;
  margin-top: 8px;
}

.contact-form .wpcf7-form input:not([type="submit"]):not([type="checkbox"]),
.contact-form .wpcf7-form textarea,
.contact-form .wpcf7-form select,
.contact-form .planrap-native-contact-form input:not([type="checkbox"]),
.contact-form .planrap-native-contact-form textarea,
.contact-form .planrap-native-contact-form select {
	width: 100%;
	margin-top: 8px;
  border-radius: 8px;
  background: #fff;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact-form .wpcf7-form input:focus,
.contact-form .wpcf7-form textarea:focus,
.contact-form .wpcf7-form select:focus,
.contact-form .planrap-native-contact-form input:focus,
.contact-form .planrap-native-contact-form textarea:focus {
  border-color: var(--color-blue);
  box-shadow: 0 0 0 3px rgba(33, 123, 180, 0.14);
  outline: 0;
}

.contact-form .wpcf7-form input[type="checkbox"] {
  width: 18px;
  min-height: 18px;
  margin: 0 8px 0 0;
  accent-color: var(--color-blue);
}

.contact-form .planrap-native-contact-form input[type="checkbox"] {
	flex: 0 0 auto;
	width: 18px;
	min-height: 18px;
	margin: 1px 8px 0 0;
	accent-color: var(--color-blue);
}

.contact-form .contact-form-consent {
  color: rgba(7, 8, 11, 0.62);
  font-size: 0.78rem;
  line-height: 1.5;
}

.contact-form .planrap-native-contact-form .contact-form-consent {
	display: flex;
	align-items: flex-start;
}

.contact-form .contact-form-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact-form .wpcf7-form input.contact-submit {
  min-height: 50px;
  padding: 0 28px;
  border-radius: 999px;
  background: var(--color-blue);
  color: #fff;
  font-size: 0.92rem;
}

.contact-form .planrap-native-contact-form .contact-submit {
	min-height: 50px;
	padding: 0 28px;
	border: 0;
	border-radius: 999px;
	background: var(--color-blue);
	color: #fff;
	font-size: 0.92rem;
	font-weight: 700;
	cursor: pointer;
}

.contact-form .wpcf7-form input.contact-submit:hover,
.contact-form .wpcf7-form input.contact-submit:focus-visible,
.contact-form .planrap-native-contact-form .contact-submit:hover,
.contact-form .planrap-native-contact-form .contact-submit:focus-visible {
  background: #07080b;
}

.contact-form-honeypot {
	position: absolute;
	left: -10000px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.contact-form-notice {
	margin: 0 0 24px !important;
	padding: 14px 16px;
	border: 1px solid transparent;
	border-radius: 8px;
}

.contact-form-notice--success {
	border-color: rgba(25, 135, 84, 0.32);
	background: rgba(25, 135, 84, 0.08);
	color: #12643f !important;
}

.contact-form-notice--error {
	border-color: rgba(176, 40, 40, 0.3);
	background: rgba(176, 40, 40, 0.07);
	color: #8f2424 !important;
}

.contact-form .wpcf7-spinner {
  margin: 0;
}

.contact-form .wpcf7-response-output {
  margin: 18px 0 0 !important;
  padding: 14px 16px !important;
  border-width: 1px !important;
  border-radius: 8px;
}

@media (max-width: 680px) {
  body.single-realisation .single-hero--video-only {
    padding: 96px 12px 34px;
  }

  body.single-realisation .realisation-intro {
    padding-bottom: 28px;
    margin-bottom: 30px;
  }

  body.post-type-archive-realisation .site-main > .section,
  body.post-type-archive-realisation .section {
    padding: 82px 12px 56px;
  }

  body.post-type-archive-realisation .section > .section__inner {
    width: 100%;
  }

  .contact-form .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .contact-form .contact-form-field--wide {
    grid-column: auto;
  }
}

/* Compact content pass: service links, portfolio cards and project navigation. */
.section--service-examples .portfolio-card__actions .text-link {
  color: #fff !important;
}

.section--service-examples .portfolio-card__actions .text-link:hover,
.section--service-examples .portfolio-card__actions .text-link:focus-visible {
  color: var(--color-blue) !important;
}

body.post-type-archive-realisation .project-card__content {
  padding: 12px 16px 14px;
}

body.post-type-archive-realisation .project-card h3 {
  margin-bottom: 0;
  line-height: 1.08;
}

body.post-type-archive-realisation .portfolio-card__actions {
  margin-top: 6px;
  padding-top: 0;
}

body.post-type-archive-realisation .portfolio-card__actions .text-link {
  margin-top: 0;
}

body.single-realisation .single-hero--video-only {
  position: relative;
}

body.single-realisation .single-hero__scroll {
  position: absolute;
  top: min(calc(100vh - 156px), calc(100% - 58px));
  left: 50%;
  z-index: 8;
  display: grid;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  background: rgba(7, 8, 11, 0.48);
  place-items: center;
  transform: translateX(-50%);
  backdrop-filter: blur(8px);
}

body.single-realisation .single-hero__scroll span {
  width: 10px;
  height: 10px;
  margin-top: -4px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
}

body.single-realisation .single-hero__scroll:hover,
body.single-realisation .single-hero__scroll:focus-visible {
  border-color: #fff;
  background: var(--color-blue);
}

#project-details {
  scroll-margin-top: 74px;
}

@media (min-width: 981px) {
  body:not(.home) .section--team-organisation {
    padding-top: 46px;
    padding-bottom: 42px;
  }

  .section--team-organisation .intro-grid {
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    gap: 58px;
  }

  .section--team-organisation .rich-text {
    padding: 8px 0;
  }

  body:not(.home) .section--team-organisation + .section {
    padding-top: 32px;
  }
}

@media (max-width: 680px) {
  body.single-realisation .single-hero__scroll {
    right: 18px;
    left: auto;
    transform: none;
  }
}

@media (min-width: 981px) {
  body.home .section--clients .client-slider {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }
}

.service-examples__empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 24px;
  border: 1px solid rgba(7, 8, 11, 0.12);
  border-radius: 8px;
  color: rgba(7, 8, 11, 0.68);
}
/* Back-office composable layout blocks. */
html,
body {
  overflow-x: clip;
}

.planrap-block-section {
  padding: var(--section-space, 96px) 0;
}

.planrap-block-section__inner,
.planrap-cta {
  width: var(--container);
  margin-inline: auto;
}

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

.planrap-block-section--light {
  background: #f6f7f9;
  color: var(--color-ink);
}

.planrap-block-section--dark {
  background: var(--color-paper);
  color: var(--color-white);
}

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

.planrap-block-section--center {
  text-align: center;
}

.planrap-block-section--center .rich-text {
  margin-inline: auto;
}

.planrap-width-narrow .planrap-block-section__inner,
body.planrap-width-narrow .section__inner {
  width: min(820px, calc(100vw - 40px));
}

.planrap-width-wide .planrap-block-section__inner,
body.planrap-width-wide .section__inner {
  width: min(1440px, calc(100vw - 40px));
}

.planrap-width-full .planrap-block-section__inner,
body.planrap-width-full .section__inner {
  width: 100%;
  max-width: none;
}

.planrap-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  width: 100%;
}

.planrap-columns--1 {
  grid-template-columns: minmax(0, 1fr);
}

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

.planrap-columns--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.planrap-columns--gap-small {
  gap: 16px;
}

.planrap-columns--gap-large {
  gap: 56px;
}

.planrap-column > :last-child,
.planrap-block-section__inner > :last-child {
  margin-bottom: 0;
}

.planrap-button-wrap {
  display: flex;
  margin-top: 24px;
}

.planrap-button-wrap--center {
  justify-content: center;
}

.planrap-button--blue {
  border-color: var(--color-blue);
  background: var(--color-blue);
}

.planrap-button--light {
  border-color: var(--color-white);
  background: var(--color-white);
  color: var(--color-ink);
}

.planrap-button--outline {
  background: transparent;
  color: currentColor;
}

.planrap-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  padding: clamp(32px, 5vw, 72px);
  margin-block: var(--section-space, 96px);
  border-radius: var(--radius);
  background: var(--color-white);
  color: var(--color-ink);
}

.planrap-cta--dark {
  background: var(--color-paper);
  color: var(--color-white);
}

.planrap-cta--blue {
  background: var(--color-blue);
  color: var(--color-white);
}

.planrap-cta h2 {
  margin-bottom: 8px;
}

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

.planrap-services-grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

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

.planrap-services-grid--4,
.team-grid--4,
.project-grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.planrap-services-grid .service-row {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.planrap-services-grid .service-row__media {
  width: 100%;
  aspect-ratio: 4 / 3;
}

.planrap-services-grid .service-row__content {
  padding: 24px;
}

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

.page-hero--medium {
  min-height: 480px;
}

.page-hero--large {
  min-height: min(760px, 88vh);
}

.page-hero--tone-light {
  background: var(--color-white);
  color: var(--color-ink);
}

.page-hero--tone-blue {
  background: var(--color-blue);
  color: var(--color-white);
}

.page-hero__media + .page-hero__inner {
  position: relative;
  z-index: 1;
}

.page-hero--tone-light .page-hero__media::after {
  background: rgba(255, 255, 255, 0.68);
}

@media (max-width: 980px) {
  .planrap-columns--3,
  .planrap-columns--4,
  .planrap-services-grid,
  .planrap-services-grid--4,
  .team-grid--4,
  .project-grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .planrap-block-section,
  .planrap-cta {
    --section-space: 56px;
  }

  .planrap-columns,
  .planrap-columns--3,
  .planrap-columns--4,
  .planrap-services-grid,
  .planrap-services-grid--2,
  .planrap-services-grid--4,
  .team-grid--4,
  .project-grid--4 {
    grid-template-columns: minmax(0, 1fr);
  }

  .planrap-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Review overrides: keep this block last so editor settings cannot revive old layouts. */
html body.home.is-at-top .site-header,
html body.home .site-header:not(.is-scrolled) {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
  transition: background-color 420ms ease, border-color 420ms ease, box-shadow 420ms ease, backdrop-filter 420ms ease !important;
}

html body.home.is-at-top .site-header__inner,
html body.home .site-header:not(.is-scrolled) .site-header__inner {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

body.home .site-header {
  transform: translateY(0);
  transition: background-color 420ms ease, box-shadow 420ms ease, border-color 420ms ease, backdrop-filter 420ms ease;
}

body.home .site-header.is-scroll-hidden {
	pointer-events: auto;
	transform: none;
}

html body.home:not(.is-at-top) .site-header.is-scrolled {
  border-right: 0 !important;
  border-bottom: 1px solid rgba(7, 8, 11, 0.1) !important;
  border-left: 0 !important;
}

body.home .site-header:not(.is-scrolled) .site-nav .sub-menu {
  background: rgba(255, 255, 255, 0.98) !important;
  border-color: rgba(7, 8, 11, 0.1) !important;
}

body.home .site-header:not(.is-scrolled) .site-nav .sub-menu a {
  color: rgba(7, 8, 11, 0.78) !important;
}

body.home .site-header:not(.is-scrolled) .site-nav .sub-menu a:hover,
body.home .site-header:not(.is-scrolled) .site-nav .sub-menu a:focus-visible {
  color: var(--color-blue) !important;
}

.site-header,
.site-header__inner,
.site-nav {
  overflow: visible;
}

.contact-hero + .section .contact-layout--stacked {
  display: grid;
  grid-template-columns: minmax(0, 1fr) !important;
  gap: 18px !important;
  width: min(980px, calc(100vw - 40px));
  margin-inline: auto;
}

.contact-hero + .section .contact-layout--stacked .contact-form-placeholder {
  width: 100%;
  padding: clamp(28px, 4vw, 46px);
}

.contact-layout--stacked .contact-form textarea {
  height: 116px;
  min-height: 116px;
  resize: vertical;
}

.contact-info-bar {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-card);
}

.contact-info-bar > * {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-width: 0;
  padding: 22px 26px;
  color: inherit;
  background: var(--color-ink);
  text-decoration: none;
}

.contact-info-bar span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-info-bar strong {
  color: var(--color-white);
  font-size: clamp(0.94rem, 1.4vw, 1.08rem);
  text-align: right;
}

.client-slider__track {
  animation-play-state: running !important;
}

body.post-type-archive-realisation .project-card__content {
  padding: 10px 14px 12px !important;
}

body.post-type-archive-realisation .project-card h3 {
  margin-bottom: 0;
}

@media (min-width: 981px) {
  .site-nav .sub-menu {
    top: calc(100% - 1px);
  }
}

@media (max-width: 980px) {
  body.home.menu-is-open .site-header,
  body.home.menu-is-open .site-header:not(.is-scrolled) {
    background: rgba(255, 255, 255, 0.98) !important;
    border-color: rgba(7, 8, 11, 0.1) !important;
  }

  body.home.menu-is-open .site-header .site-nav a {
    color: var(--color-ink) !important;
  }

  body.home.menu-is-open .site-brand img {
    filter: none !important;
  }

  body.home.menu-is-open .menu-toggle span:not(.screen-reader-text) {
    background: var(--color-ink) !important;
  }
}

@media (max-width: 680px) {
  .contact-info-bar {
    grid-template-columns: minmax(0, 1fr);
  }

  .contact-info-bar > * {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .contact-info-bar strong {
    text-align: left;
  }
}

/* Compact home services heading after the editorial simplification. */
body.home #services.section--services-overview {
  padding-top: 20px;
  padding-bottom: 20px;
}

body.home #services .services-overview__heading {
  padding-bottom: 0;
}

/* Final home rhythm adjustments. */
body.home .section--agency-intro {
  padding-top: clamp(52px, calc(7.2vw - 10px), 92px);
  padding-bottom: clamp(52px, calc(7.2vw - 10px), 92px);
}

body.home .agency-intro__lead {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

body.home .agency-intro__lead h2 {
  margin-bottom: 0;
  font-size: clamp(1.5rem, 2.8vw, 2.5rem);
}

body.home #services .services-overview__link.button {
  min-height: 50px;
  padding-right: 24px;
  padding-left: 24px;
  border-color: var(--home-blue);
  border-radius: 999px;
  background: var(--home-blue);
  color: #fff;
}

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

body.home .section--home-realisations {
  padding-top: 89px;
  padding-bottom: 99px;
}

body.home .section--clients {
  padding-top: 74px;
}

@media (max-width: 680px) {
  body.home .section--agency-intro {
    padding-top: 46px;
    padding-bottom: 46px;
  }

  body.home .section--home-realisations {
    padding-top: 63px;
    padding-bottom: 67px;
  }

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

/* Tighten the transition from service references to the global project CTA. */
body:not(.home) .section--service-examples {
  padding-bottom: 76px;
}

/* August editorial review. */
body.home .hero__brand {
  margin: 0 0 10px;
  color: #fff;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

body.home .section--clients .section-heading {
  max-width: none;
  margin-bottom: 30px;
}

body.home .section--clients h2 {
  font-size: clamp(2.15rem, 4.5vw, 4rem);
}

body:not(.home) .page-hero__media--team ~ .page-hero__inner h1 {
  font-size: clamp(2.7rem, 5.5vw, 5rem);
}

body:not(.home) .contact-hero h1 {
  font-size: clamp(2.65rem, 5vw, 4.7rem);
}

.contact-hero + .section .contact-layout--stacked {
  gap: 22px !important;
}

.contact-layout--stacked .contact-info-bar {
  order: -1;
}

.contact-form-placeholder > h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3.35rem);
}

.contact-form-placeholder > h2 + p {
  max-width: 820px;
  margin-bottom: 30px;
}

body.post-type-archive-realisation .portfolio-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

body.post-type-archive-realisation .portfolio-filter {
  position: relative;
  width: auto;
  min-height: 38px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
}

body.post-type-archive-realisation .portfolio-filter::after {
  position: absolute;
  right: 0;
  bottom: -13px;
  left: 0;
  height: 2px;
  background: var(--color-blue);
  content: "";
  opacity: 0;
  transform: scaleX(0.35);
  transition: opacity 180ms ease, transform 180ms ease;
}

body.post-type-archive-realisation .portfolio-filter:hover,
body.post-type-archive-realisation .portfolio-filter:focus-visible,
body.post-type-archive-realisation .portfolio-filter.is-active {
  border-color: transparent;
  background: transparent;
  color: #fff;
}

body.post-type-archive-realisation .portfolio-filter.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

body.single-realisation .entry-content {
  font-size: clamp(1rem, 1.35vw, 1.16rem);
}

@media (max-width: 680px) {
  body.home .hero__brand {
    font-size: 1.25rem;
  }

  body.post-type-archive-realisation .portfolio-filters {
    flex-wrap: nowrap;
    gap: 20px;
  }

  body.post-type-archive-realisation .portfolio-filter {
    flex: 0 0 auto;
  }
}

/* Keep the contact test layout above the historical contact overrides. */
.contact-hero + .section .contact-layout.contact-layout--with-location {
  grid-template-columns: minmax(0, 1.55fr) minmax(300px, 0.65fr);
  gap: 22px;
  width: min(1180px, calc(100vw - 40px));
}

@media (max-width: 900px) {
  .contact-hero + .section .contact-layout.contact-layout--with-location {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 680px) {
  .contact-hero + .section .contact-layout.contact-layout--with-location {
    width: calc(100vw - 24px);
  }
}

/* August 24 review: contact details, responsive video and editorial finishing. */
.site-header__phone {
  flex: 0 0 auto;
  color: var(--color-ink);
  font-size: 0.78rem;
  font-weight: 750;
  line-height: 1;
  white-space: nowrap;
}

.site-header__phone:hover,
.site-header__phone:focus-visible {
  color: var(--color-blue);
}

body.home .site-header:not(.is-scrolled) .site-header__phone {
  color: #fff;
}

body.home .site-header:not(.is-scrolled) .site-header__phone:hover,
body.home .site-header:not(.is-scrolled) .site-header__phone:focus-visible {
  color: rgba(255, 255, 255, 0.72);
}

body.home.menu-is-open .site-header:not(.is-scrolled) .site-header__phone {
  color: var(--color-ink);
}

body.home .hero__video {
  overflow: hidden;
}

body.home .hero__video iframe {
  width: max(100%, 177.78svh);
  max-width: none;
  height: max(100%, 56.25vw);
  max-height: none;
}

.motion-ready body.home .section--home-service-tiles .section-heading--split > div::after,
.motion-ready body.home .section--clients .section-heading::after {
  margin-right: auto;
  margin-left: auto;
}

.page-hero__media--team img:only-child {
  grid-column: 1 / -1;
}

body.post-type-archive-realisation .portfolio-filter::after {
  display: none;
}

body.post-type-archive-realisation .portfolio-filter.is-active {
  color: #fff;
  font-weight: 800;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
}

.social-links a {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  color: #fff;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  border-color: var(--color-blue);
  background: var(--color-blue);
  color: #fff;
}

.social-links svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

body:not(.home) .section--service-choices h2 {
  margin-bottom: 20px;
  color: var(--color-blue);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.45;
}

body:not(.home) .section--service-examples .section-heading h2 {
  max-width: 880px;
}

@media (max-width: 1200px) and (min-width: 981px) {
  .site-header__inner {
    gap: 16px;
  }

  body.home .site-nav__list,
  .site-nav__list {
    gap: 12px;
  }

  .site-header__phone {
    font-size: 0.72rem;
  }
}

@media (max-width: 980px) {
  .site-header__phone {
    margin-left: auto;
    font-size: 0.74rem;
  }
}

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

  body.home .hero h1 {
    font-size: 34px;
  }

  body.home .hero__video iframe {
    width: max(100%, 177.78svh);
    height: max(100%, 56.25vw);
  }
}

@media (max-width: 390px) {
  .site-header__phone {
    font-size: 0.68rem;
  }

  .site-header__phone-prefix {
    display: none;
  }
}

/* Home editorial refinements. */
body.home .agency-intro__details h3 {
  font-size: calc(0.78rem + 4px);
}

.motion-ready body.home .section--home-service-tiles .section-heading--split > div::after,
.motion-ready body.home .section--clients .section-heading::after {
  display: none;
}

body.home .section--team .team-panel__image {
  transform: none;
  will-change: auto;
}

/* Match all internal page headings, including the portfolio archive. */
body:not(.home) .page-hero--contact-size h1,
body:not(.home) .page-hero__media--team ~ .page-hero__inner h1,
body:not(.home) .contact-hero h1,
body.post-type-archive-realisation .portfolio-intro h1 {
  font-size: clamp(2.65rem, 5vw, 4.7rem);
  line-height: 1;
}

body.post-type-archive-realisation .portfolio-intro h1 {
  max-width: 900px;
  margin-bottom: 0;
  color: #fff;
}

/* Reliable full-screen mobile navigation. */
@media (max-width: 980px) {
  body.home .site-header,
  body.home .site-header.is-scroll-hidden {
    transform: none !important;
  }

  .site-header__inner {
    position: relative;
    z-index: 2;
  }

  .menu-toggle {
    z-index: 4;
    display: block !important;
  }

  .site-nav,
  .site-nav.is-open {
    position: fixed !important;
    inset: 0 !important;
    z-index: 2;
    display: block !important;
    min-height: 100svh;
    padding: calc(var(--header-height, 82px) + 34px) 28px 36px !important;
    overflow-y: auto;
    background: #fff !important;
    box-shadow: none !important;
    transition: opacity 220ms ease, visibility 220ms ease, transform 220ms ease;
  }

  .site-nav:not(.is-open) {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
  }

  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  body.menu-is-open .site-header,
  body.home.menu-is-open .site-header,
  body.home.menu-is-open .site-header:not(.is-scrolled) {
    background: #fff !important;
    border-bottom: 1px solid rgba(7, 8, 11, 0.1) !important;
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
  }

  body.menu-is-open .site-nav__list {
    display: grid !important;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

.menu-toggle span:not(.screen-reader-text) {
  transition: opacity 180ms ease, transform 180ms ease;
}

.service-examples__more {
  display: flex;
  justify-content: center;
  margin-top: clamp(28px, 4vw, 48px);
}

/* August 25 refinements. */
.site-footer .footer-cta {
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  text-align: center;
}

.site-footer .footer-cta__copy {
  display: grid;
  justify-items: center;
}

.site-footer .footer-cta .eyebrow,
.site-footer .footer-cta h2 {
  margin-right: auto;
  margin-left: auto;
}

body.post-type-archive-realisation .portfolio-intro {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 240px;
  padding: 92px 0 24px;
  padding-left: 0;
  border-left: 0;
}

body.post-type-archive-realisation .site-main > .section {
  padding-top: 0;
}

body:not(.home) .contact-hero.page-hero--contact-size {
  min-height: 240px;
  padding-top: 92px;
  padding-bottom: 24px;
}

body:not(.home) .contact-hero h1 {
  margin-bottom: 0;
}

.contact-transit__badge {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  font-size: 1.08rem;
  font-weight: 850;
  line-height: 1;
}

.contact-transit__badge--metro-1 {
  background: #ffcd00;
  color: #000;
}

.contact-transit__badge--metro-9 {
  background: #b5bd00;
  color: #000;
}

.contact-transit__badge--rer-a {
  background: #e3051b;
  color: #fff;
}

@media (max-width: 680px) {
  body.post-type-archive-realisation .portfolio-intro {
    min-height: 261px;
    padding-top: 86px;
    padding-bottom: 20px;
  }

  body.post-type-archive-realisation .site-main > .section {
    padding-top: 0;
  }

  body:not(.home) .contact-hero.page-hero--contact-size {
    min-height: 261px;
    padding-top: 86px;
    padding-bottom: 20px;
  }
}

/* Mobile header integrity and static service imagery. */
@media (max-width: 980px) {
  .site-header__inner {
    gap: 12px;
  }

  .site-brand {
    order: 1;
  }

  .site-header__phone {
    order: 2;
    margin-left: auto;
  }

  .menu-toggle {
    flex: 0 0 44px;
    order: 3;
    margin-left: 0;
  }

  .site-nav {
    order: 4;
  }
}

@media (max-width: 680px) {
  body .site-header__inner,
  body.home .site-header__inner {
    width: calc(100vw - 28px);
    min-height: 72px;
    gap: 10px;
  }

  body .site-brand,
  body.home .site-brand {
    flex: 0 1 118px;
    width: 118px;
    min-width: 0;
  }

  body .site-brand img,
  body.home .site-brand img {
    width: 100%;
    min-width: 0;
    max-height: 42px;
  }

  .site-header__phone {
    font-size: 0.7rem;
  }

  .site-header__phone-prefix {
    display: none;
  }

  body.home:not(.menu-is-open) .site-header:not(.is-scrolled) .menu-toggle span:not(.screen-reader-text) {
    background: #fff;
  }

  body.home .hero {
    align-items: stretch;
    height: auto;
    min-height: max(100svh, 760px);
    padding-top: 0;
    padding-bottom: 52px;
  }

  body.home .hero__content {
    align-content: center;
    min-height: 0;
    padding-top: 104px;
    padding-bottom: 72px;
  }

  body.home .hero__media,
  body.home .hero__video,
  body.home .hero__video iframe {
    background: #07080b;
  }

  body.home .hero__video iframe {
    transform: translate(-50%, -54%) scale(1.16);
  }

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

@media (max-width: 360px) {
  body .site-brand,
  body.home .site-brand {
    flex-basis: 106px;
    width: 106px;
  }

  .site-header__phone {
    font-size: 0.64rem;
  }
}

/* August 27: reversible agency layout and consistent Services menu colors. */
.site-header .site-nav,
.site-header .site-nav .sub-menu {
  color-scheme: only light;
}

@media (min-width: 981px) {
  body.home .section--team .team-panel--media-right {
    grid-template-columns: minmax(360px, 0.85fr) minmax(0, 1.15fr);
  }

  body.home .section--team .team-panel--media-right .team-panel__media {
    grid-row: 1;
    grid-column: 2;
  }

  body.home .section--team .team-panel--media-right > div:not(.team-panel__media) {
    grid-row: 1;
    grid-column: 1;
  }

  .site-header .site-nav .sub-menu {
    border-color: rgba(7, 8, 11, 0.1) !important;
    background: #fff !important;
    box-shadow: 0 24px 70px rgba(7, 8, 11, 0.14);
  }

  .site-header .site-nav .sub-menu a {
    color: rgba(7, 8, 11, 0.8) !important;
    -webkit-text-fill-color: rgba(7, 8, 11, 0.8);
    text-shadow: none;
  }

  .site-header .site-nav .sub-menu a:hover,
  .site-header .site-nav .sub-menu a:focus-visible {
    background: rgba(33, 123, 180, 0.08) !important;
    color: var(--color-blue) !important;
    -webkit-text-fill-color: var(--color-blue);
  }
}

@media (max-width: 980px) {
  body.home .section--team .team-panel--media-right .team-panel__media {
    grid-row: 2;
    grid-column: 1;
  }

  body.home .section--team .team-panel--media-right > div:not(.team-panel__media) {
    grid-row: 1;
    grid-column: 1;
  }

  .site-header .site-nav,
  .site-header .site-nav.is-open {
    background: #fff !important;
  }

  .site-header .site-nav.is-open a,
  .site-header .site-nav.is-open .sub-menu a {
    color: #07080b !important;
    -webkit-text-fill-color: #07080b;
  }

  .site-header .site-nav .sub-menu {
    background: transparent !important;
    box-shadow: none;
  }
}

/* Keep a neutral canvas visible while the Vimeo hero starts. */
body.home .hero--with-video .hero__media {
  background: #fff;
}

/* Keep the logo rail present while it enters the viewport. */
.motion-ready .section--clients .client-slider[data-reveal],
.motion-ready .section--clients-compact .client-slider[data-reveal] {
  opacity: 1;
  transform: none;
  transition: none;
}

/* Reveal each color logo exactly as supplied, above earlier theme filters. */
html body.home .section--clients .client-logo:not(.client-logo--light):hover > img,
html body .section--clients-compact .client-logo:not(.client-logo--light):hover > img {
  opacity: 1;
  -webkit-filter: none !important;
  filter: none !important;
}

/* Historical logos use white artwork from the former website. */
.client-logo--light img {
  filter: brightness(0) grayscale(1);
}

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

/* Give every client mark the same visual stage without distorting its ratio. */
.client-logo {
  padding: 10px;
}

.client-logo > img {
  width: 100%;
  max-width: 190px;
  height: 76px;
  max-height: none;
  object-fit: contain;
  object-position: center;
}
