:root {
  --black: #07152f;
  --deep-blue: #0b2452;
  --deep-blue-2: #12366f;
  --panel: #0c1f45;
  --panel-soft: #122b59;
  --line: #29446f;
  --text: #f7fbff;
  --muted: #c4d0e6;
  --accent: #8dbdff;
  --accent-soft: #d9ebff;
  --sun: #ffcb57;
  --navy: #11224b;
  --surface: #f5f8ff;
  --surface-2: #eaf2ff;
  --container: 1180px;
  --ease-out: cubic-bezier(0.19, 1, 0.22, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--deep-blue);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

@media (hover: hover) and (pointer: fine) {
  html.has-custom-cursor,
  html.has-custom-cursor * {
    cursor: none !important;
  }

  .cursor-ring,
  .cursor-dot {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: 0;
    transform: translate3d(-50%, -50%, 0);
    will-change: transform;
  }

  .cursor-ring {
    width: 34px;
    height: 34px;
    border: 1.5px solid rgba(141, 189, 255, 0.82);
    border-radius: 50%;
    background: rgba(217, 235, 255, 0.06);
    transition: width 180ms ease, height 180ms ease, border-color 180ms ease, background 180ms ease, opacity 180ms ease;
  }

  .cursor-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--sun);
    box-shadow: 0 0 0 3px rgba(17, 34, 75, 0.12);
    transition: opacity 180ms ease, transform 90ms ease;
  }

  html.cursor-ready .cursor-ring,
  html.cursor-ready .cursor-dot {
    opacity: 1;
  }

  html.cursor-hover .cursor-ring {
    width: 40px;
    height: 40px;
    border-color: rgba(255, 203, 87, 0.9);
    background: rgba(255, 203, 87, 0.08);
  }
}

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

button {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--text);
  color: var(--black);
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin-inline: auto;
}

.section-pad {
  padding: clamp(4rem, 7vw, 7rem) 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  background: rgba(247, 251, 255, 0.96);
  border-bottom: 1px solid rgba(17, 34, 75, 0.12);
  box-shadow: 0 18px 45px rgba(5, 18, 45, 0.1);
  backdrop-filter: blur(18px);
  pointer-events: auto;
  transition:
    background 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    backdrop-filter 220ms ease;
}

.site-header.is-scrolled,
.site-header.is-menu-open {
  background: rgba(247, 251, 255, 0.94);
  border-bottom-color: rgba(17, 34, 75, 0.12);
  box-shadow: 0 18px 45px rgba(5, 18, 45, 0.1);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: 100%;
  min-height: 74px;
  margin-inline: auto;
  padding: 0.55rem max(1rem, calc((100vw - var(--container)) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 132px;
  padding: 0 0.55rem;
}

.brand img {
  width: 118px;
  height: auto;
  transition: filter 220ms ease, transform 220ms ease;
}

.brand:hover img,
.brand:focus-visible img {
  transform: translateY(-1px) scale(1.015);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.3vw, 1.9rem);
  font-size: 0.9rem;
  font-weight: 750;
}

.nav-menu a:not(.nav-cta) {
  color: var(--navy);
  transition: color 180ms ease;
}

.nav-menu a:not(.nav-cta):hover,
.nav-menu a:not(.nav-cta):focus-visible {
  color: #4d75b7;
}

.nav-cta,
.button,
.wide-button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  min-height: 46px;
  padding: 0.78rem 1rem;
  border-radius: 4px;
  background: var(--navy);
  color: var(--text);
  font-weight: 850;
  transition: background 180ms ease, transform 180ms ease;
}

.nav-cta {
  min-height: 48px;
  padding-inline: 1rem;
}

.nav-cta span,
.button span,
.wide-button span {
  color: var(--accent);
}

.button-label {
  display: inline-flex;
  overflow: hidden;
  white-space: pre;
  color: inherit !important;
  line-height: 1.18;
}

.button-char {
  position: relative;
  display: inline-block;
  color: inherit !important;
  transform: translateY(0);
  transition: transform 560ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(var(--char-index) * 16ms);
  will-change: transform;
}

.button-char::after {
  content: attr(data-char);
  position: absolute;
  left: 0;
  top: 0;
  color: inherit;
  transform: translateY(1.16em);
}

.button-icon {
  position: relative;
  z-index: 1;
  display: inline-block;
  transition: transform 220ms var(--ease-out);
}

.nav-cta:hover .button-char,
.nav-cta:focus-visible .button-char,
.button:hover .button-char,
.button:focus-visible .button-char,
.wide-button:hover .button-char,
.wide-button:focus-visible .button-char {
  transform: translateY(-1.16em);
}

.nav-cta:hover .button-icon,
.nav-cta:focus-visible .button-icon,
.button:hover .button-icon,
.button:focus-visible .button-icon,
.wide-button:hover .button-icon,
.wide-button:focus-visible .button-icon {
  transform: translateX(4px);
}

.nav-cta span {
  color: var(--sun);
}

.nav-cta:hover,
.button:hover,
.button:focus-visible,
.wide-button:hover,
.wide-button:focus-visible {
  background: #222431;
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: var(--navy);
  color: var(--text);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: clamp(640px, 86vh, 820px);
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: clamp(7.2rem, 9vw, 8.8rem) 0 clamp(4.2rem, 6vw, 5.2rem);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("../img/hero-office.jpg");
  background-size: cover;
  background-position: center;
  filter: saturate(0.72) contrast(1.04);
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(7, 21, 47, 0.16) 0%, rgba(7, 21, 47, 0.34) 44%, rgba(7, 21, 47, 0.96) 100%),
    linear-gradient(90deg, rgba(7, 21, 47, 0.92) 0%, rgba(7, 21, 47, 0.64) 52%, rgba(17, 34, 75, 0.42) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
}

.hero-copy {
  max-width: 100%;
}

.kicker {
  margin: 0 0 0.85rem;
  color: #dce7f8;
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.kicker.accent {
  color: var(--accent);
}

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

h1,
h2,
h3 {
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 900;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

h1 {
  max-width: 100%;
  margin-bottom: 1.1rem;
  font-size: clamp(2.8rem, 5.5vw, 4.9rem);
  line-height: 1.02;
  text-transform: none;
}

.hero-eyebrow {
  max-width: none;
  margin: 0 0 0.85rem;
  color: #dce7f8;
  font-size: clamp(0.78rem, 0.9vw, 0.92rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-main {
  max-width: 100%;
  margin-bottom: 1.1rem;
  font-size: clamp(2.8rem, 5.5vw, 4.9rem);
  line-height: 1.02;
  text-transform: none;
}

h2 {
  margin-bottom: 1.25rem;
  font-size: clamp(1.9rem, 3.4vw, 3.6rem);
  line-height: 1.06;
}

.service-page .page-hero .page-title {
  font-size: clamp(2.35rem, 4.55vw, 4.5rem);
  line-height: 1.1;
  letter-spacing: -0.018em;
}

.service-page .content-copy > h2,
.service-page .cta-grid > h2 {
  font-size: clamp(1.7rem, 2.9vw, 3.15rem);
  line-height: 1.1;
  letter-spacing: -0.018em;
}

.title-accent {
  color: var(--accent);
}

.content-band.surface .title-accent,
.services .title-accent {
  color: #4f8fea;
}

h3 {
  margin-bottom: 0.8rem;
  font-size: clamp(1.45rem, 2.15vw, 2.25rem);
  line-height: 1;
}

p {
  color: var(--muted);
  font-size: clamp(1rem, 1.3vw, 1.13rem);
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition:
    opacity 720ms var(--ease-out),
    transform 720ms var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.title-reveal.reveal {
  opacity: 1;
  overflow: hidden;
  transform: none;
  transition: none;
}

.title-reveal-inner {
  display: inline-block;
  transform: translate3d(0, 112%, 0) rotate(1deg);
  transition:
    transform 980ms var(--ease-out);
  transition-delay: calc(var(--reveal-delay, 0ms) + var(--title-delay, 0ms));
  will-change: transform;
}

.title-reveal.reveal.is-visible .title-reveal-inner {
  transform: translate3d(0, 0, 0) rotate(0deg);
}

.title-reveal .title-accent {
  display: inline-block;
  transform: translate3d(0, 0.22em, 0);
  transition:
    transform 980ms var(--ease-out);
  transition-delay: calc(var(--reveal-delay, 0ms) + var(--title-delay, 0ms) + 160ms);
}

.title-reveal.reveal.is-visible .title-accent {
  transform: translate3d(0, 0, 0);
}

.project-card.reveal,
.realisation-card.reveal,
.service-card.reveal,
.process-card.reveal {
  transform: translate3d(0, 34px, 0) scale(0.985);
}

.project-card.reveal.is-visible,
.realisation-card.reveal.is-visible,
.service-card.reveal.is-visible,
.process-card.reveal.is-visible {
  transform: translate3d(0, 0, 0) scale(1);
}

.hero-copy p:not(.kicker) {
  max-width: 570px;
  margin-bottom: 1.35rem;
  color: #d2d4da;
  font-size: clamp(1rem, 1.2vw, 1.12rem);
}

.dark-panel {
  position: relative;
  margin-top: -2px;
  padding: clamp(4rem, 7vw, 6.8rem) 0;
  background: linear-gradient(135deg, #0b214b 0%, #0f2a59 100%);
  border-radius: 18px 18px 0 0;
  overflow: hidden;
}

.dark-panel > .container {
  position: relative;
  z-index: 1;
}

.intro.dark-panel {
  padding-top: 0;
}

.skill-marquee {
  position: relative;
  z-index: 1;
  width: 100%;
  overflow: hidden;
  padding: clamp(1rem, 2vw, 1.35rem) 0;
  border-bottom: 1px solid rgba(141, 189, 255, 0.12);
  background: rgba(7, 21, 47, 0.22);
}

.skill-marquee::before,
.skill-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  z-index: 2;
  width: clamp(3rem, 10vw, 9rem);
  height: 100%;
  pointer-events: none;
}

.skill-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #0b214b, rgba(11, 33, 75, 0));
}

.skill-marquee::after {
  right: 0;
  background: linear-gradient(270deg, #0f2a59, rgba(15, 42, 89, 0));
}

.skill-marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 52s linear infinite;
}

.skill-marquee-group {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: clamp(0.9rem, 2vw, 1.4rem);
  padding-right: clamp(0.9rem, 2vw, 1.4rem);
}

.skill-marquee span {
  color: #eef5ff;
  font-size: clamp(1.02rem, 1.55vw, 1.38rem);
  font-weight: 950;
  letter-spacing: -0.025em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.jidello-beak {
  flex: 0 0 auto;
  width: clamp(0.9rem, 1.4vw, 1.2rem);
  height: clamp(0.9rem, 1.4vw, 1.2rem);
  border-radius: 0 0 0 999px;
  background: var(--accent);
  transform: rotate(-2deg);
}

.skill-marquee-group .jidello-beak:nth-of-type(3n + 1) {
  background: var(--sun);
}

@keyframes marquee-scroll {
  from {
    transform: translate3d(0, 0, 0);
  }

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

.intro-grid,
.split-head,
.cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.section-heading {
  max-width: 100%;
  min-width: 0;
}

.section-heading p {
  max-width: 560px;
  margin-bottom: 1.5rem;
}

.intro .section-heading {
  max-width: 100%;
}

.intro .section-heading h2 {
  max-width: 100%;
  margin-bottom: 1.65rem;
}

.intro .intro-grid {
  padding-top: clamp(4rem, 7vw, 6.4rem);
}

.collective-copy {
  max-width: 620px;
  justify-self: end;
}

.collective-copy p {
  margin-bottom: 1.2rem;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.45vw, 1.3rem);
  font-weight: 700;
  line-height: 1.62;
}

.collective-copy p:last-child {
  margin-bottom: 0;
  color: #eef5ff;
}

.button-muted {
  background: var(--panel-soft);
}

.hero .button,
.intro .button,
.projects .button,
.agency .button,
.process .wide-button,
.cta-section .button {
  background: var(--accent);
  color: var(--navy);
  box-shadow: 0 16px 34px rgba(5, 18, 45, 0.2);
}

.hero .button span,
.intro .button span,
.projects .button span,
.agency .button span,
.process .wide-button span,
.cta-section .button span {
  color: var(--navy);
}

.hero .button:hover,
.hero .button:focus-visible,
.intro .button:hover,
.intro .button:focus-visible,
.projects .button:hover,
.projects .button:focus-visible,
.agency .button:hover,
.agency .button:focus-visible,
.process .wide-button:hover,
.process .wide-button:focus-visible,
.cta-section .button:hover,
.cta-section .button:focus-visible {
  background: var(--accent-soft);
  color: var(--navy);
}

.cta-section .button {
  background: var(--sun);
  color: var(--navy);
  box-shadow: 0 16px 34px rgba(255, 203, 87, 0.18);
}

.cta-section .button span {
  color: var(--navy);
}

.cta-section .button:hover,
.cta-section .button:focus-visible {
  background: #ffd875;
  color: var(--navy);
}

.projects {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--deep-blue) 0%, var(--deep-blue-2) 100%);
}

.projects > .container,
.process > .container,
.agency > .container,
.cta-section > .container {
  position: relative;
  z-index: 1;
}

.split-head {
  margin-bottom: clamp(2.2rem, 4.5vw, 4rem);
}

.split-head > p {
  max-width: 500px;
  min-width: 0;
  justify-self: end;
  font-size: clamp(1rem, 1.2vw, 1.08rem);
}

.project-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.1rem;
}

.project-card {
  position: relative;
  min-height: clamp(280px, 34vw, 440px);
  overflow: hidden;
  display: flex;
  align-items: end;
  padding: clamp(1.15rem, 2.4vw, 2rem);
  border-radius: 8px;
  background: var(--panel-soft);
}

.project-card::before,
.project-card::after {
  content: "";
  position: absolute;
  inset: 0;
}

.project-card::before {
  background-size: cover;
  background-position: center;
  opacity: 0.82;
}

.project-one::before {
  background-image: url("../img/site-web.jpg");
}

.project-two::before {
  background:
    linear-gradient(135deg, rgba(141, 189, 255, 0.32), transparent 35%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent),
    url("../img/seo-analytics.jpg");
  background-size: cover;
  background-position: center;
}

.project-card::after {
  background: linear-gradient(180deg, rgba(7, 21, 47, 0.08) 10%, rgba(7, 21, 47, 0.92) 100%);
}

.project-card div {
  position: relative;
  z-index: 1;
}

.project-card span {
  display: block;
  margin-bottom: 0.75rem;
  color: var(--accent);
  font-weight: 900;
  text-transform: uppercase;
}

.project-card h3 {
  max-width: 680px;
  margin-bottom: 0;
}

.services {
  border-radius: 18px;
  background: linear-gradient(135deg, #edf5ff 0%, #dfeeff 100%);
  color: var(--navy);
}

.services::before {
  top: auto;
  bottom: clamp(1rem, 3vw, 2.5rem);
  opacity: 0.1;
  transform: rotate(180deg);
}

.services .kicker.accent,
.services h2,
.services p {
  color: var(--navy);
}

.services .button {
  background: var(--navy);
  color: #fff;
}

.service-carousel {
  position: relative;
  width: calc(100vw - max(1rem, calc((100vw - var(--container)) / 2)));
  margin-left: max(1rem, calc((100vw - var(--container)) / 2));
  margin-right: 0;
  padding-bottom: 4.25rem;
}

.carousel-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(330px, min(30vw, 420px));
  align-items: stretch;
  gap: 2rem;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-inline: contain;
  overscroll-behavior-y: auto;
  scroll-snap-type: inline mandatory;
  scroll-padding-inline: 0;
  scrollbar-width: none;
  padding: 0 clamp(1rem, 2vw, 2rem) 0 0;
}

.carousel-track::before,
.carousel-track::after {
  display: none;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.carousel-controls {
  position: absolute;
  left: 0;
  bottom: 0;
  display: flex;
  gap: 0.75rem;
}

.icon-button {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 4px;
  background: var(--navy);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 900;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.icon-button:hover,
.icon-button:focus-visible {
  transform: translateY(-1px);
  background: #1b3a74;
  color: var(--sun);
}

.service-card {
  position: relative;
  min-height: clamp(260px, 27vw, 380px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.65rem;
  padding: clamp(1.1rem, 2vw, 1.7rem);
  border-radius: 8px;
  border: 1px solid rgba(17, 34, 75, 0.14);
  background: #07152f;
  color: #fff;
  isolation: isolate;
  scroll-snap-align: start;
  box-shadow: 0 18px 44px rgba(5, 18, 45, 0.12);
}

.service-card::before,
.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.service-card::before {
  background: linear-gradient(180deg, rgba(7, 21, 47, 0) 0%, rgba(7, 21, 47, 0.18) 42%, rgba(7, 21, 47, 0.9) 100%);
}

.service-card::after {
  inset: auto 0 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(7, 21, 47, 0) 0%, rgba(7, 21, 47, 0.96) 100%);
}

.service-card-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.03);
  transform: scale(1.01);
  transition: transform 500ms ease, filter 500ms ease;
}

.service-card:hover .service-card-image,
.service-card:focus-within .service-card-image {
  filter: saturate(0.95) contrast(1.05);
  transform: scale(1.055);
}

.service-card h3,
.service-card a,
.service-card-label {
  position: relative;
  z-index: 2;
}

.service-card-label {
  align-self: flex-start;
  margin: 0;
  padding: 0.28rem 0.58rem;
  border: 1px solid rgba(255, 203, 87, 0.9);
  border-radius: 999px;
  background: rgba(255, 203, 87, 0.92);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 950;
  line-height: 1.1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-card h3 {
  max-width: calc(100% - 64px);
  margin-bottom: 0;
  color: #fff;
  text-shadow: 0 16px 34px rgba(0, 0, 0, 0.35);
}

.service-card a {
  position: absolute;
  right: 1.4rem;
  bottom: 1.4rem;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 4px;
  background: var(--sun);
  color: var(--navy);
  font-weight: 950;
}

.process {
  position: relative;
  overflow: hidden;
  background: #07152f;
}

.process-head {
  max-width: var(--container);
  margin-bottom: clamp(2rem, 4vw, 3.4rem);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.65fr);
  gap: clamp(1.6rem, 4vw, 4rem);
  align-items: end;
}

.process-head h2 {
  max-width: 100%;
  margin-bottom: 0;
}

.process-head p:not(.kicker) {
  max-width: 590px;
  margin: 0 0 0.4rem;
  color: #cbd7ea;
  font-size: clamp(1.03rem, 1.35vw, 1.2rem);
  font-weight: 650;
}

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(0.8rem, 1.6vw, 1.3rem);
}

.process-card {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: clamp(1.2rem, 2vw, 1.55rem);
  border: 1px solid rgba(141, 189, 255, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(141, 189, 255, 0.09), rgba(141, 189, 255, 0) 48%),
    rgba(12, 31, 69, 0.72);
  box-shadow: inset 0 1px 0 rgba(247, 251, 255, 0.05);
}

.process-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: var(--sun);
}

.process-card:nth-child(even)::before {
  background: var(--accent);
}

.process-card span {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: clamp(1.6rem, 2.8vw, 2.4rem);
  color: var(--sun);
  font-family: inherit;
  font-size: clamp(2.4rem, 4.2vw, 4.6rem);
  font-weight: 950;
  line-height: 0.85;
  letter-spacing: -0.075em;
}

.process-card:nth-child(even) span {
  color: var(--accent);
}

.process-card h3 {
  margin-bottom: 0.7rem;
  font-size: clamp(1.55rem, 2vw, 2.15rem);
  letter-spacing: -0.035em;
}

.process-card p {
  margin: 0 0 1.1rem;
  color: #cbd7ea;
  font-size: 0.96rem;
  font-weight: 650;
  line-height: 1.45;
}

.process-card ul {
  display: grid;
  gap: 0;
  margin: auto 0 0;
  padding: 0;
  border-top: 1px solid rgba(141, 189, 255, 0.14);
  list-style: none;
}

.process-card li {
  position: relative;
  padding: 0.58rem 0 0.58rem 1rem;
  border-bottom: 1px solid rgba(141, 189, 255, 0.1);
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 780;
  line-height: 1.25;
}

.process-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.05rem;
  width: 0.34rem;
  height: 0.34rem;
  border-radius: 50%;
  background: var(--sun);
}

.process-card li:last-child {
  border-bottom: 0;
}

.process .wide-button {
  background: var(--sun);
  color: var(--navy);
}

.process .wide-button span {
  color: var(--navy);
}

.process .wide-button:hover,
.process .wide-button:focus-visible {
  background: #ffd779;
}

.wide-button {
  width: 100%;
  margin-top: 1.3rem;
}

.wide-image {
  position: relative;
  overflow: hidden;
  padding-bottom: clamp(4rem, 7vw, 7rem);
  background: #07152f;
}

.wide-image-inner {
  position: relative;
  overflow: hidden;
  min-height: clamp(300px, 36vw, 480px);
  display: flex;
  align-items: flex-end;
  padding: clamp(1.4rem, 4vw, 3rem);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(7, 21, 47, 0.05), rgba(7, 21, 47, 0.82)),
    url("../img/hero-office.jpg");
  background-size: cover;
  background-position: center;
}

.wide-image-inner p {
  max-width: 640px;
  margin: 0;
  color: var(--text);
  font-family: inherit;
  font-size: clamp(2rem, 4.5vw, 4.2rem);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.page-hero {
  position: relative;
  overflow: hidden;
  min-height: clamp(560px, 72vh, 760px);
  display: grid;
  align-items: center;
  padding: clamp(7.2rem, 10vw, 8.8rem) 0 clamp(4rem, 6vw, 5rem);
  background:
    linear-gradient(135deg, rgba(7, 21, 47, 0.94), rgba(17, 34, 75, 0.92)),
    url("../img/hero-office.jpg");
  background-size: cover;
  background-position: center;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  background: linear-gradient(180deg, transparent, var(--black));
  pointer-events: none;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
}

.page-hero h1:not(.page-kicker-title),
.page-hero .page-title {
  max-width: 100%;
  margin-bottom: 1.25rem;
  font-size: clamp(2.6rem, 4.8vw, 4.9rem);
  line-height: 1.05;
  text-transform: uppercase;
}

.page-hero .page-kicker-title {
  max-width: none;
  margin: 0 0 0.85rem;
  color: var(--accent);
  font-size: 0.78rem;
  line-height: 1.1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-hero p:not(.kicker) {
  max-width: 690px;
  margin-bottom: 1.4rem;
  color: #d4deef;
  font-size: clamp(1.05rem, 1.35vw, 1.24rem);
}

.content-band {
  padding: clamp(4rem, 7vw, 7rem) 0;
  background: #07152f;
}

.content-band.surface {
  background: linear-gradient(135deg, #edf5ff 0%, #dfeeff 100%);
  color: var(--navy);
}

.content-band.surface p,
.content-band.surface li {
  color: #415373;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.75fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.content-grid.with-image {
  align-items: center;
}

.content-grid.reverse {
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 0.95fr);
}

.content-copy {
  max-width: 720px;
}

.content-copy h2,
.service-page h2 {
  margin-bottom: 1.2rem;
  font-size: clamp(1.8rem, 3.1vw, 3.4rem);
}

.content-copy p,
.service-page p {
  max-width: 680px;
}

.content-visual {
  min-height: clamp(260px, 27vw, 390px);
  overflow: hidden;
  align-self: stretch;
  margin: 0;
  border: 1px solid rgba(17, 34, 75, 0.12);
  border-radius: 8px;
  background: rgba(17, 34, 75, 0.08);
  box-shadow: 0 22px 54px rgba(5, 18, 45, 0.1);
}

.content-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.03);
}

.feature-list,
.check-list {
  display: grid;
  gap: 0.8rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li,
.check-list li {
  position: relative;
  display: flex;
  gap: 0.78rem;
  align-items: flex-start;
  padding-left: 0;
  color: var(--text);
  font-weight: 700;
}

.feature-list li::before,
.check-list li::before {
  content: "";
  flex: 0 0 1.18rem;
  width: 1.18rem;
  height: 1.18rem;
  margin-top: 0.14rem;
  border: 1px solid rgba(255, 203, 87, 0.58);
  border-radius: 50%;
  background: var(--sun);
  box-shadow: 0 8px 18px rgba(255, 203, 87, 0.16);
}

.feature-list li::after,
.check-list li::after {
  content: "";
  position: absolute;
  left: 0.36rem;
  top: 0.44rem;
  width: 0.42rem;
  height: 0.22rem;
  border-left: 2px solid var(--navy);
  border-bottom: 2px solid var(--navy);
  transform: rotate(-45deg);
}

.info-card,
.service-tile,
.case-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(141, 189, 255, 0.16);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(141, 189, 255, 0.08), rgba(141, 189, 255, 0)),
    rgba(18, 43, 89, 0.72);
}

.info-card {
  padding: clamp(1.4rem, 3vw, 2rem);
}

.info-card h2,
.info-card h3,
.service-tile h2,
.service-tile h3,
.case-card h2,
.case-card h3 {
  margin-bottom: 0.85rem;
  font-size: clamp(1.35rem, 2vw, 2.05rem);
  letter-spacing: -0.035em;
}

.info-card p,
.case-card p {
  margin-bottom: 0;
}

.service-link-grid,
.case-grid,
.case-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.service-link-grid {
  grid-template-columns: repeat(4, 1fr);
}

.case-card {
  min-height: 230px;
  padding: 1.3rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.case-study {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 0.72fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.case-study-copy {
  max-width: 760px;
}

.case-study-copy h2 {
  margin-bottom: 1.1rem;
  font-size: clamp(2.05rem, 4.3vw, 4.5rem);
  line-height: 1.04;
  text-transform: uppercase;
}

.case-study-copy p:not(.kicker) {
  max-width: 680px;
  margin-bottom: 1.5rem;
}

.case-study-visual {
  position: relative;
  min-height: clamp(330px, 35vw, 500px);
  overflow: hidden;
  margin: 0;
  border-radius: 8px;
  background: rgba(141, 189, 255, 0.1);
  box-shadow: 0 28px 70px rgba(5, 18, 45, 0.22);
}

.case-study-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 21, 47, 0.04), rgba(7, 21, 47, 0.58));
  pointer-events: none;
}

.case-study-visual img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.03);
}

.case-band {
  padding-top: 0;
}

.case-detail-grid {
  grid-template-columns: repeat(3, 1fr);
}

.case-step {
  display: inline-flex;
  width: fit-content;
  min-height: 34px;
  align-items: center;
  margin-bottom: 1.25rem;
  padding: 0.25rem 0.7rem;
  border: 1px solid rgba(255, 203, 87, 0.45);
  border-radius: 999px;
  color: var(--sun);
  background: rgba(255, 203, 87, 0.08);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.masonry-head {
  margin-bottom: clamp(1.6rem, 3vw, 2.5rem);
}

.masonry-head h2 {
  max-width: 980px;
  margin: 0 0 1rem;
  font-size: clamp(2rem, 3.9vw, 4.3rem);
  line-height: 1.04;
  text-transform: uppercase;
}

.masonry-head p:not(.kicker) {
  max-width: 760px;
  margin: 0 0 1.6rem;
  color: #d4deef;
  font-size: clamp(1.02rem, 1.35vw, 1.18rem);
}

.reference-group {
  margin-top: clamp(2.2rem, 4vw, 3.6rem);
  margin-bottom: 1rem;
}

.masonry-head + .reference-group {
  margin-top: 0;
}

.reference-group h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.15rem, 1.6vw, 1.55rem);
  line-height: 1.1;
  letter-spacing: 0;
  text-transform: none;
}

.reference-group p {
  max-width: 760px;
  margin: 0.55rem 0 0;
  color: #d4deef;
  font-size: clamp(0.98rem, 1.2vw, 1.08rem);
}

.realisation-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.realisation-card {
  display: block;
  width: 100%;
  overflow: hidden;
  border: 2px solid #fff;
  border-radius: 10px;
  color: #fff;
  background: #07152f;
  box-shadow: 0 22px 58px rgba(5, 18, 45, 0.2);
  transform: translateZ(0);
  transition: transform 360ms ease, box-shadow 360ms ease;
}

.realisation-card a {
  display: block;
  color: inherit;
  text-decoration: none;
}

.realisation-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 28px 74px rgba(5, 18, 45, 0.24);
}

.realisation-card figure {
  position: relative;
  aspect-ratio: 16 / 10;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: #07152f;
}

.realisation-card figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 21, 47, 0) 48%, rgba(7, 21, 47, 0.62) 100%);
  pointer-events: none;
}

.realisation-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(0.84) contrast(1.02);
  transform: scale(1.01);
  transition: transform 520ms ease, filter 520ms ease;
}

.realisation-card:hover img {
  filter: saturate(0.98) contrast(1.04);
  transform: scale(1.055);
}

.realisation-card figcaption {
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  bottom: 0;
  padding: clamp(0.72rem, 1.5vw, 1rem);
}

.realisation-card figcaption span {
  display: inline-flex;
  min-height: 22px;
  align-items: center;
  margin-bottom: 0.42rem;
  padding: 0.18rem 0.42rem;
  border-radius: 5px;
  color: var(--navy);
  background: var(--sun);
  font-size: 0.62rem;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.realisation-card figcaption h2 {
  max-width: 82%;
  margin: 0;
  color: #fff;
  font-size: clamp(0.95rem, 1.18vw, 1.25rem);
  line-height: 1.06;
  text-transform: uppercase;
}

.realisation-card-body {
  padding: clamp(1rem, 2vw, 1.35rem);
}

.realisation-card-body > span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  margin-bottom: 0.85rem;
  padding: 0.25rem 0.58rem;
  border-radius: 999px;
  color: var(--navy);
  background: rgba(255, 203, 87, 0.35);
  font-size: 0.75rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.realisation-card-body h2 {
  margin-bottom: 0.75rem;
  color: var(--navy);
  font-size: clamp(1.35rem, 1.9vw, 2.05rem);
  line-height: 1.06;
}

.realisation-card-body p {
  margin-bottom: 1rem;
  color: #415373;
  font-size: 1rem;
  line-height: 1.55;
}

.realisation-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.realisation-tags strong {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  padding: 0.22rem 0.55rem;
  border: 1px solid rgba(17, 34, 75, 0.12);
  border-radius: 999px;
  color: #415373;
  background: #edf5ff;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.admin-dashboard {
  background: #07152f;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: clamp(1.4rem, 3vw, 2.4rem);
}

.dashboard-card,
.dashboard-panel {
  border: 1px solid rgba(141, 189, 255, 0.16);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(141, 189, 255, 0.08), rgba(141, 189, 255, 0)),
    rgba(18, 43, 89, 0.72);
  box-shadow: 0 22px 52px rgba(5, 18, 45, 0.16);
}

.dashboard-card {
  padding: clamp(1.35rem, 3vw, 2rem);
}

.dashboard-card span {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--sun);
  font-size: clamp(2.4rem, 4.5vw, 4.8rem);
  font-weight: 950;
  line-height: 0.95;
}

.dashboard-card h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.05rem, 1.55vw, 1.5rem);
}

.dashboard-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(300px, 1fr);
  gap: clamp(1.5rem, 4vw, 3.6rem);
  align-items: start;
  padding: clamp(1.4rem, 3.4vw, 2.4rem);
}

.dashboard-panel h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.85rem, 3.1vw, 3.3rem);
}

.dashboard-list {
  display: grid;
  gap: 0.85rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.dashboard-list li {
  position: relative;
  padding-left: 1.25rem;
  color: var(--text);
  font-weight: 800;
}

.dashboard-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--sun);
}

.service-tile {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  color: var(--navy);
  background: var(--surface);
  border: 0;
  box-shadow: 0 22px 54px rgba(5, 18, 45, 0.12);
}

.service-tile::before {
  display: none;
}

.service-tile-visual {
  position: relative;
  min-height: 190px;
  overflow: hidden;
  background: #07152f;
}

.service-tile-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(7, 21, 47, 0) 0%, rgba(7, 21, 47, 0.64) 100%);
}

.service-tile img {
  width: 100%;
  height: 100%;
  min-height: 190px;
  display: block;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.02);
  transform: scale(1.01);
  transition: transform 500ms ease, filter 500ms ease;
}

.service-tile:hover img,
.service-tile:focus-visible img {
  filter: saturate(0.95) contrast(1.04);
  transform: scale(1.055);
}

.service-tile-body {
  min-height: 154px;
  padding: 1.15rem;
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
}

.service-tile span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0.25rem 0.55rem;
  border: 1px solid rgba(255, 203, 87, 0.48);
  border-radius: 999px;
  color: var(--navy);
  background: rgba(255, 203, 87, 0.28);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-tile h2 {
  max-width: calc(100% - 3.2rem);
  margin: 0.75rem 0 0;
  color: var(--navy);
  font-size: clamp(1.25rem, 1.8vw, 1.8rem);
}

.service-tile strong {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 6px;
  color: var(--navy);
  background: var(--sun);
  font-size: 1.25rem;
  line-height: 1;
}

.service-tile:hover,
.service-tile:focus-visible {
  transform: translateY(-2px);
}

.service-page .content-band:first-of-type {
  padding-top: clamp(4rem, 6vw, 5rem);
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.metric {
  padding: 1.1rem;
  border-radius: 10px;
  background: rgba(247, 251, 255, 0.08);
  border: 1px solid rgba(141, 189, 255, 0.14);
}

.metric strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--sun);
  font-size: clamp(1.8rem, 3vw, 3.1rem);
  line-height: 0.95;
}

.metric span {
  color: var(--text);
  font-weight: 800;
}

.contact-options {
  display: grid;
  gap: 1rem;
}

.contact-option {
  padding: 1.2rem;
  border: 1px solid rgba(141, 189, 255, 0.16);
  border-radius: 10px;
  background: rgba(247, 251, 255, 0.07);
}

.contact-option h2,
.contact-option h3 {
  margin-bottom: 0.35rem;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.contact-option p {
  margin-bottom: 0;
}

.content-grid.with-form {
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: clamp(1.15rem, 2vw, 1.6rem);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 24px 70px rgba(7, 21, 47, 0.12);
}

.form-row {
  display: grid;
  gap: 0.38rem;
}

.form-row label {
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  border: 1px solid rgba(17, 34, 75, 0.16);
  border-radius: 8px;
  padding: 0.9rem 0.95rem;
  color: var(--navy);
  background: #fff;
  font: inherit;
  font-weight: 700;
  outline: 0;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

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

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--sky);
  box-shadow: 0 0 0 4px rgba(141, 189, 255, 0.28);
}

.form-notice {
  margin: 0;
  padding: 0.85rem 0.95rem;
  border-radius: 8px;
  color: var(--navy);
  font-weight: 850;
}

.form-notice.success {
  background: rgba(255, 203, 87, 0.34);
}

.form-notice.error {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 203, 87, 0.7);
}

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

.contact-submit {
  width: 100%;
  justify-content: center;
}

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

.team-intro .content-grid > p {
  max-width: 650px;
  margin: 0;
  color: #415373;
  font-size: clamp(1.05rem, 1.45vw, 1.26rem);
  font-weight: 650;
}

.team-section {
  background: #07152f;
}

.team-heading {
  margin-bottom: clamp(2rem, 4vw, 3.2rem);
}

.team-heading h2 {
  max-width: 900px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.team-card {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: clamp(1.25rem, 2vw, 1.65rem);
  padding: clamp(1.15rem, 2vw, 1.55rem);
  border: 1px solid rgba(17, 34, 75, 0.12);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
  color: var(--navy);
  box-shadow: 0 22px 52px rgba(5, 18, 45, 0.16);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.team-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: var(--sun);
}

.team-card:nth-child(even)::before {
  background: var(--accent);
}

.team-card:hover,
.team-card:focus-within {
  transform: translateY(-3px);
  border-color: rgba(17, 34, 75, 0.22);
  box-shadow: 0 26px 64px rgba(5, 18, 45, 0.2);
}

.team-card-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 1.05rem;
}

.team-photo,
.team-avatar {
  flex: 0 0 88px;
  width: 88px;
  height: 88px;
  border: 2px solid rgba(141, 189, 255, 0.55);
  border-radius: 50%;
  box-shadow: 0 14px 30px rgba(5, 18, 45, 0.16);
}

.team-photo {
  display: block;
  object-fit: cover;
  background: rgba(141, 189, 255, 0.12);
}

.team-avatar {
  display: grid;
  place-items: center;
  background: rgba(141, 189, 255, 0.12);
  color: var(--sun);
  font-size: 1rem;
  font-weight: 950;
}

.team-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.75rem, 2.55vw, 2.75rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
  text-transform: none;
}

.team-role {
  max-width: 290px;
  margin: 0.48rem 0 0;
  color: #4d75b7;
  font-size: clamp(0.75rem, 1vw, 0.88rem);
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-transform: uppercase;
}

.team-skills {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(17, 34, 75, 0.1);
  list-style: none;
}

.team-skills li {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 0.62rem 0 0.62rem 1.05rem;
  border: 0;
  border-bottom: 1px solid rgba(17, 34, 75, 0.08);
  border-radius: 0;
  background: transparent;
  color: #34445f;
  font-size: clamp(0.88rem, 1.15vw, 1rem);
  font-weight: 850;
  line-height: 1.16;
}

.team-skills li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--sun);
  transform: translateY(-50%);
}

.team-skills li:nth-child(even) {
  border-left: 0;
  padding-left: 1.05rem;
}

.agency {
  position: relative;
  overflow: hidden;
  background: #07152f;
}

.cta-section {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 7vw, 7rem) 0;
  background: linear-gradient(135deg, #11224b 0%, #18386d 100%);
  border-radius: 18px 18px 0 0;
}

.cta-grid h2 {
  margin-bottom: 0;
}

.cta-grid div {
  justify-self: end;
}

.site-footer {
  padding: 3rem 0 1.4rem;
  background: var(--surface);
  color: var(--navy);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(360px, 1.25fr) minmax(190px, 0.7fr);
  gap: clamp(2rem, 5vw, 5rem);
}

.footer-logo {
  display: block;
  width: 136px;
  height: auto;
  margin-bottom: 1rem;
}

.footer-grid h2 {
  margin-bottom: 0.75rem;
  font-family: inherit;
  font-size: 1rem;
  line-height: 1.2;
  text-transform: none;
}

.footer-grid a,
.footer-grid p {
  display: block;
  margin: 0 0 0.45rem;
  color: #51627f;
}

.footer-grid a:hover,
.footer-grid a:focus-visible {
  color: var(--accent);
}

.footer-link-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 1.8rem;
}

.footer-bottom {
  margin-top: 2.2rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(17, 34, 75, 0.14);
}

.footer-bottom p {
  margin: 0;
  color: #51627f;
  font-size: 0.95rem;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }

  .title-reveal,
  .title-reveal-inner,
  .title-reveal .title-accent {
    clip-path: none !important;
    transform: none !important;
  }

  .skill-marquee-track {
    animation: none !important;
  }

  .button-char {
    transform: none !important;
  }

  .button-char::after {
    display: none !important;
  }
}

@media (max-width: 980px) {
  .site-header {
    inset: 0 0 auto;
    width: 100%;
  }

  .nav-shell {
    align-items: flex-start;
    flex-wrap: wrap;
    position: relative;
    width: 100%;
    max-width: none;
    padding-right: 4.2rem;
  }

  .menu-toggle {
    display: inline-flex !important;
    flex: 0 0 48px;
    margin-left: auto;
    position: fixed;
    right: 1rem;
    top: 0.85rem;
    z-index: 60;
  }

  .nav-menu {
    display: none !important;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem 0 0.35rem;
  }

  .nav-menu.is-open {
    display: flex !important;
  }

  .nav-menu a {
    padding: 0.9rem 0;
  }

  .nav-cta {
    justify-content: space-between;
  }

  .intro-grid,
  .split-head,
  .cta-grid,
  .process-head,
  .case-study,
  .content-grid,
  .content-grid.reverse {
    grid-template-columns: 1fr;
  }

  .split-head > p,
  .cta-grid div,
  .collective-copy {
    justify-self: start;
  }

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

  .realisation-masonry {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-link-grid,
  .case-grid,
  .case-detail-grid,
  .team-grid,
  .dashboard-grid,
  .dashboard-panel {
    grid-template-columns: repeat(2, 1fr);
  }

  .dashboard-panel {
    gap: 1.5rem;
  }

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

  .carousel-track {
    grid-auto-columns: minmax(300px, 48%);
    gap: 1rem;
  }

  .process-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero {
    min-height: 720px;
  }

  h1 {
    font-size: clamp(2.45rem, 5.3vw, 3.25rem);
    line-height: 0.98;
  }

  .hero-main {
    font-size: clamp(2.5rem, 8vw, 3.55rem);
    line-height: 0.95;
  }

  h2 {
    font-size: clamp(1.75rem, 4.4vw, 2.4rem);
    line-height: 1.02;
  }

  h3 {
    font-size: clamp(1.35rem, 3.8vw, 2rem);
  }

  h1,
  h2,
  h3,
  p {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .button,
  .wide-button {
    max-width: 360px;
  }

  .hero-copy p:not(.kicker),
  .section-heading p,
  .process-head p:not(.kicker),
  .split-head > p {
    max-width: 100%;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(calc(100% - 1.1rem), var(--container));
  }

  .nav-shell {
    width: 100%;
    min-height: 54px;
    padding-left: 0.8rem;
    padding-right: 3.9rem;
  }

  .brand {
    width: 124px;
    padding-left: 0.35rem;
  }

  .brand img {
    width: 108px;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }

  .section-pad,
  .dark-panel {
    padding-block: clamp(3.4rem, 13vw, 4.7rem);
  }

  .hero {
    min-height: 640px;
    padding-top: 6.2rem;
    padding-bottom: 3.8rem;
  }

  .hero-copy,
  .section-heading,
  .split-head > p,
  .page-hero-inner,
  .content-copy {
    max-width: 100%;
  }

  .page-hero {
    min-height: 560px;
    padding-top: 6.2rem;
    padding-bottom: 3.8rem;
  }

  .page-hero h1:not(.page-kicker-title),
  .page-hero .page-title {
    font-size: clamp(2.25rem, 10.8vw, 3.15rem);
  }

  .service-link-grid,
  .case-grid,
  .case-detail-grid,
  .team-grid,
  .dashboard-grid,
  .dashboard-panel {
    grid-template-columns: 1fr;
  }

  .team-card {
    min-height: 0;
  }

  .team-card-head {
    padding-right: 0;
  }

  .team-photo,
  .team-avatar {
    flex-basis: 76px;
    width: 76px;
    height: 76px;
  }

  .team-skills {
    grid-template-columns: 1fr;
  }

  .team-skills li:nth-child(even) {
    border-left: 0;
    padding-left: 1.05rem;
  }

  h1 {
    font-size: clamp(2.15rem, 9.2vw, 2.7rem);
    line-height: 0.98;
    letter-spacing: -0.045em;
  }

  .hero-main {
    font-size: clamp(2.18rem, 9.5vw, 2.8rem);
    line-height: 0.96;
  }

  .hero-eyebrow {
    font-size: 0.72rem;
    line-height: 1.2;
   }

  h2 {
    font-size: clamp(1.6rem, 7vw, 2.1rem);
    line-height: 1.02;
    letter-spacing: -0.045em;
  }

  h3 {
    font-size: clamp(1.25rem, 6.7vw, 1.75rem);
    letter-spacing: -0.04em;
  }

  .button,
  .wide-button {
    width: 100%;
    padding-inline: 0.85rem;
    font-size: 0.95rem;
  }

  .project-card,
  .service-card {
    min-height: 280px;
  }

  .realisation-masonry {
    grid-template-columns: 1fr;
  }

  .project-card h3,
  .service-card h3 {
    max-width: calc(100% - 54px);
  }

  .service-carousel {
    width: 100vw;
    margin-left: calc((100vw - min(calc(100% - 1.1rem), var(--container))) / -2);
    margin-right: 0;
    padding-bottom: 3.75rem;
  }

  .carousel-track {
    grid-auto-columns: minmax(285px, 84%);
    gap: 0.85rem;
    scroll-padding-inline: 0.55rem;
  }

  .carousel-track::before {
    width: 0.55rem;
  }

  .carousel-track::after {
    width: 1.1rem;
  }

  .carousel-controls {
    left: 0.55rem;
  }

  .icon-button {
    width: 44px;
    height: 44px;
  }

  .process-card {
    min-height: 0;
  }

  .wide-image-inner p {
    font-size: clamp(1.7rem, 8vw, 2.3rem);
  }

  .process-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-link-columns {
    grid-template-columns: 1fr;
  }
}

.content-band .reference-group {
  margin-top: clamp(3rem, 5vw, 4.75rem);
  margin-bottom: 1.15rem;
}

.content-band .masonry-head + .reference-group {
  margin-top: 0;
}

.content-band .realisation-masonry + .reference-group {
  margin-top: clamp(4.4rem, 7vw, 6.4rem);
}

.content-band .reference-group h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.12rem, 1.5vw, 1.46rem);
  line-height: 1.14;
  letter-spacing: 0;
  text-transform: none;
}

.content-band .reference-group p {
  max-width: 860px;
  margin-top: 0.62rem;
}

@media (max-width: 680px) {
  .content-band .realisation-masonry + .reference-group {
    margin-top: 3.2rem;
  }

  .content-band .reference-group h3 {
    font-size: clamp(1.08rem, 4.9vw, 1.34rem);
    line-height: 1.18;
  }
}
