:root {
  --ink: #101216;
  --ink-soft: #22252b;
  --paper: #f4f2ed;
  --paper-soft: #eae8e2;
  --white: #fff;
  --blue: #135ff2;
  --blue-dark: #0b45b7;
  --lime: #E8F542;
  --line: rgba(16, 18, 22, 0.14);
  --muted: #696d74;
  --radius: 22px;
  --max: 1440px;
  --header: 88px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  content: "";
  opacity: 0.025;
  background-image: radial-gradient(rgba(16, 18, 22, 0.28) 0.55px, transparent 0.65px);
  background-size: 4px 4px;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 11px 15px;
  color: var(--ink);
  background: var(--lime);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  color: inherit;
}

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

.cursor-glow {
  position: fixed;
  z-index: -1;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.16;
  transform: translate3d(var(--glow-x, -1000px), var(--glow-y, -1000px), 0) translate(-50%, -50%);
  background: radial-gradient(circle, rgba(19, 95, 242, 0.55), transparent 68%);
  transition: opacity 0.3s ease;
  will-change: transform;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  height: var(--header);
  padding: 0 clamp(24px, 4vw, 68px);
  align-items: center;
  justify-content: space-between;
  color: var(--ink);
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.site-header.scrolled,
.site-header.solid {
  background: rgba(243, 241, 236, 0.9);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}

.site-header.on-dark:not(.scrolled):not(.solid) {
  color: var(--white);
}

.brand {
  display: inline-flex;
  width: 156px;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: 100%;
  height: 52px;
  object-fit: contain;
  object-position: left center;
  transition: filter 0.3s ease;
}

.brand-header {
  width: 166px;
  height: auto;
  overflow: visible;
}

.brand-header img {
  width: 100%;
  height: auto;
  object-fit: contain;
  transform: none;
}

.site-header.on-dark:not(.scrolled):not(.solid) .brand img,
.brand-light img {
  filter: brightness(0) invert(1);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 28px);
}

.desktop-nav a {
  position: relative;
  font-size: 13px;
  font-weight: 500;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  background: currentColor;
  transition: transform 0.3s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-cta {
  display: inline-flex;
  padding: 12px 18px;
  align-items: center;
  gap: 20px;
  color: var(--white);
  background: var(--ink);
  border-radius: 999px;
  font-size: 13px;
  transition: transform 0.2s ease, background 0.2s ease;
}

.on-dark:not(.scrolled) .header-cta {
  color: var(--ink);
  background: var(--white);
}

.header-cta:hover {
  transform: translateY(-2px);
  background: var(--blue);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  margin: 6px auto;
  background: currentColor;
  transition: transform 0.25s ease;
}

.menu-open .menu-toggle span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-open .menu-toggle span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  z-index: 45;
  inset: 0;
  display: grid;
  visibility: hidden;
  padding: 120px 0 40px;
  color: var(--white);
  background: var(--ink);
  opacity: 0;
  place-items: center stretch;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.menu-open .mobile-menu {
  visibility: visible;
  opacity: 1;
}

.mobile-menu nav {
  display: grid;
  width: min(calc(100% - 48px), var(--max));
  margin-inline: auto;
}

.mobile-menu a {
  display: flex;
  padding: 12px 0;
  align-items: baseline;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  font-family: "Manrope", sans-serif;
  font-size: clamp(32px, 9vw, 54px);
  font-weight: 600;
  letter-spacing: -0.05em;
}

.mobile-menu a span {
  color: var(--lime);
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
  letter-spacing: 0;
}

main {
  min-height: 70vh;
}

main:focus {
  outline: none;
}

.page-loader {
  display: grid;
  min-height: 100vh;
  place-content: center;
  gap: 12px;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.loader-line {
  width: 110px;
  height: 2px;
  overflow: hidden;
  background: rgba(16, 18, 22, 0.15);
}

.loader-line i {
  display: block;
  width: 45%;
  height: 100%;
  background: var(--blue);
  animation: loader 1s infinite ease-in-out;
}

@keyframes loader {
  from { transform: translateX(-110%); }
  to { transform: translateX(250%); }
}

.container {
  width: min(calc(100% - 48px), var(--max));
  margin-inline: auto;
}

.breadcrumb-trail {
  display: flex;
  margin: 0 0 18px;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.breadcrumb-trail a {
  color: inherit;
}

.breadcrumb-trail a:hover {
  color: var(--ink);
}

.breadcrumb-trail span {
  color: rgba(16, 18, 22, 0.28);
}

.breadcrumb-trail strong {
  color: currentColor;
  font-weight: 700;
}

.breadcrumb-trail.light {
  color: var(--lime);
}

.breadcrumb-trail.light a:hover {
  color: var(--white);
}

.breadcrumb-trail.light span {
  color: rgba(255, 255, 255, 0.32);
}

.section {
  padding: clamp(62px, 6.5vw, 96px) 0;
}

.section-tight {
  padding: clamp(48px, 5vw, 76px) 0;
}

.section-compact {
  padding: clamp(56px, 5.7vw, 84px) 0;
}

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

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

.section-soft {
  background: var(--paper-soft);
}

.eyebrow {
  display: flex;
  margin: 0 0 18px;
  align-items: center;
  gap: 10px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 7px;
  height: 7px;
  content: "";
  background: currentColor;
  border-radius: 50%;
}

.eyebrow.light {
  color: var(--lime);
}

.display {
  max-width: 1100px;
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(54px, 7.8vw, 126px);
  font-weight: 600;
  line-height: 0.99;
  letter-spacing: -0.058em;
  text-wrap: balance;
}

.title {
  max-width: 1040px;
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(44px, 6.4vw, 96px);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.052em;
  text-wrap: balance;
}

.subtitle {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 25px);
  line-height: 1.45;
}

.section-dark .subtitle,
.section-blue .subtitle {
  color: rgba(255, 255, 255, 0.68);
}

.page-hero.dark .subtitle {
  color: rgba(255, 255, 255, 0.72);
}

.page-hero.dark .page-index {
  color: var(--lime);
}

.hero {
  position: relative;
  min-height: 100svh;
  padding: calc(var(--header) + 72px) 0 56px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero::after {
  position: absolute;
  top: 10%;
  right: -12%;
  width: min(50vw, 760px);
  aspect-ratio: 1;
  content: "";
  background: var(--blue);
  border-radius: 50%;
  filter: blur(1px);
  opacity: 0.92;
}

.hero-orbit {
  position: absolute;
  z-index: 1;
  top: 2%;
  right: -6%;
  width: min(60vw, 900px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  animation: spin 28s linear infinite;
}

.hero-orbit::before {
  position: absolute;
  top: 18%;
  left: 2%;
  width: 14px;
  height: 14px;
  content: "";
  background: var(--lime);
  border-radius: 50%;
}

@keyframes spin { to { transform: rotate(360deg); } }

.hero .container {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: calc(100svh - var(--header) - 128px);
  flex-direction: column;
  justify-content: space-between;
}

.hero .display {
  max-width: 970px;
}

.hero .display em {
  display: inline-block;
  margin-left: 0.08em;
  color: var(--lime);
  font-style: normal;
}

.hero-bottom {
  display: grid;
  margin-top: 64px;
  align-items: end;
  grid-template-columns: 1fr minmax(280px, 480px);
  gap: 40px;
}

.hero-number {
  display: flex;
  align-items: center;
  gap: 16px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
}

.hero-number i {
  width: 90px;
  height: 1px;
  background: rgba(255, 255, 255, 0.35);
}

.hero-copy {
  margin: 0;
  font-size: clamp(18px, 2vw, 25px);
}

.hero-scroll {
  position: absolute;
  z-index: 3;
  right: 3vw;
  bottom: 34px;
  writing-mode: vertical-rl;
  color: rgba(255, 255, 255, 0.52);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.marquee {
  overflow: hidden;
  padding: 22px 0;
  color: var(--ink);
  background: var(--lime);
  font-family: "Manrope", sans-serif;
  font-size: clamp(23px, 3vw, 44px);
  font-weight: 700;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  animation: marquee 24s linear infinite;
}

.marquee span {
  display: inline-flex;
  align-items: center;
}

.marquee span::after {
  margin: 0 24px;
  content: "✦";
  font-size: 0.7em;
}

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

.section-heading {
  display: grid;
  margin-bottom: clamp(38px, 4.5vw, 64px);
  align-items: end;
  grid-template-columns: 1fr minmax(280px, 480px);
  gap: 40px;
}

.section-heading .subtitle {
  margin: 0 0 8px;
}

.services-list {
  border-top: 1px solid var(--line);
}

.service-row {
  position: relative;
  display: grid;
  padding: 30px 0;
  align-items: center;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 70px minmax(220px, 1fr) minmax(280px, 0.75fr) 52px;
  gap: 24px;
  transition: color 0.25s ease, padding 0.25s ease;
}

.service-row::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  transform: scaleY(0);
  background: var(--blue);
  transform-origin: bottom;
  transition: transform 0.3s ease;
}

.service-row:hover {
  padding-inline: 24px;
  color: var(--white);
}

.service-row:hover::before {
  transform: scaleY(1);
}

.service-row > span {
  font-size: 12px;
}

.service-row h3 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(25px, 3vw, 43px);
  font-weight: 600;
  letter-spacing: -0.045em;
}

.service-row p {
  margin: 0;
  color: var(--muted);
}

.service-row:hover p {
  color: rgba(255, 255, 255, 0.72);
}

.arrow-circle {
  display: grid;
  width: 50px;
  height: 50px;
  color: var(--white);
  background: var(--ink);
  border: 0;
  border-radius: 50%;
  place-items: center;
  box-shadow: 0 8px 24px rgba(16, 18, 22, 0.12);
  font-size: 0;
  font-style: normal;
  font-weight: 800;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.section-dark .arrow-circle {
  color: var(--ink);
  background: var(--lime);
}

.service-row:hover .arrow-circle,
.project-card:hover .arrow-circle {
  color: var(--ink);
  background: var(--lime);
  transform: translate(3px, -3px);
}

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

.project-card {
  display: block;
  min-width: 0;
  width: 100%;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
}

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

.project-card:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 8px;
}

.project-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #e4e3df;
  border-radius: 18px;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

.project-card-cta {
  position: absolute;
  right: 16px;
  bottom: 16px;
  display: inline-flex;
  padding: 10px 13px;
  align-items: center;
  gap: 14px;
  color: var(--ink);
  background: var(--lime);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.project-card-cta b {
  font-size: 16px;
}

.project-card:hover .project-card-cta,
.project-card:focus-visible .project-card-cta {
  opacity: 1;
  transform: translateY(0);
}

.project-meta {
  display: flex;
  padding-top: 16px;
  align-items: flex-start;
  gap: 18px;
  justify-content: space-between;
}

.project-card-copy {
  min-width: 0;
}

.project-category {
  display: inline-flex;
  margin-bottom: 7px;
  color: var(--blue);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-dark .project-category {
  color: var(--lime);
}

.project-meta h3 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 600;
  letter-spacing: -0.04em;
}

.project-meta p {
  max-width: 520px;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.section-dark .project-meta p {
  color: rgba(255, 255, 255, 0.62);
}

.project-result {
  display: flex;
  margin-top: 18px;
  padding-top: 14px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
}

.project-result strong {
  color: var(--ink);
  font-size: 11px;
  font-weight: 600;
  text-align: right;
}

.section-dark .project-result {
  border-color: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.5);
}

.section-dark .project-result strong {
  color: var(--white);
}

.project-card.compact .project-meta p {
  display: none;
}

.project-card.compact .project-result {
  margin-top: 14px;
}

.text-link {
  display: inline-flex;
  margin-top: 38px;
  padding: 10px 0;
  align-items: center;
  gap: 18px;
  border-bottom: 2px solid currentColor;
  font-size: 14px;
  font-weight: 600;
}

.text-link span,
.header-cta span,
.footer-intro-copy a span,
.submit-button > span:last-child,
.primary-button span {
  font-size: 17px;
  font-weight: 800;
}

.text-link > span {
  display: grid;
  width: 30px;
  height: 30px;
  color: var(--white);
  background: var(--ink);
  border-radius: 50%;
  place-items: center;
  font-size: 0;
}

.section-dark .text-link > span {
  color: var(--ink);
  background: var(--lime);
}

.manifesto-grid {
  display: grid;
  align-items: start;
  grid-template-columns: 0.65fr 1.35fr;
  gap: clamp(32px, 6vw, 90px);
}

.manifesto-copy {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(35px, 5vw, 76px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.055em;
}

.manifesto-copy span {
  color: var(--blue);
}

.stats {
  display: grid;
  margin-top: 52px;
  border-top: 1px solid var(--line);
  grid-template-columns: repeat(3, 1fr);
}

.stat {
  padding: 28px 30px 0 0;
}

.stat strong {
  display: block;
  font-family: "Manrope", sans-serif;
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 600;
  letter-spacing: -0.06em;
}

.stat span {
  color: var(--muted);
  font-size: 13px;
}

.logo-wall {
  display: grid;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  grid-template-columns: repeat(5, 1fr);
}

.logo-item {
  display: grid;
  min-height: 150px;
  padding: 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.96);
  place-items: center;
  transition: background 0.25s ease, transform 0.25s ease;
}

.logo-item:hover {
  z-index: 1;
  background: var(--white);
  transform: translateY(-3px);
}

.logo-item img {
  max-width: 130px;
  max-height: 66px;
  object-fit: contain;
  opacity: 1;
}

.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.journal-card {
  display: flex;
  min-height: 430px;
  overflow: hidden;
  padding: 0;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.journal-card-media {
  position: relative;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--ink);
}

.journal-card-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(16, 18, 22, 0.02), rgba(16, 18, 22, 0.18));
}

.journal-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.journal-card-body {
  display: flex;
  min-height: 260px;
  padding: 28px;
  flex: 1;
  flex-direction: column;
  justify-content: space-between;
}

.journal-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 58px rgba(16, 18, 22, 0.12);
}

.journal-card:hover .journal-card-media img {
  transform: scale(1.05);
}

.journal-card small {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.journal-card:hover small {
  color: var(--blue);
}

.journal-card h3 {
  margin: auto 0 18px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(27px, 3vw, 41px);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.055em;
}

.journal-card p {
  margin: 0;
  color: var(--muted);
}

.journal-card:hover p {
  color: var(--muted);
}

.page-hero {
  padding: calc(var(--header) + 58px) 0 clamp(58px, 7vw, 96px);
}

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

.page-hero .title {
  max-width: min(100%, 1150px);
}

.page-hero .display {
  max-width: min(100%, 1100px);
  overflow-wrap: anywhere;
}

.page-hero-meta {
  display: grid;
  margin-top: 44px;
  align-items: end;
  grid-template-columns: 1fr minmax(280px, 520px);
  gap: 30px;
}

.page-index {
  color: var(--blue);
  font-family: "Manrope", sans-serif;
  font-size: 14px;
}

.filter-row {
  display: flex;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-button {
  padding: 11px 18px;
  color: var(--muted);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  font-size: 13px;
}

.filter-button.active,
.filter-button:hover {
  color: var(--white);
  background: var(--ink);
}

.all-projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 42px 22px;
}

.all-projects-grid .project-card {
  grid-column: auto;
  margin-top: 0;
}

.all-projects-grid .project-image {
  aspect-ratio: 1 / 0.82;
}

.project-gallery-footer {
  display: flex;
  margin-top: 50px;
  padding-top: 24px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
}

.project-gallery-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.load-more-button {
  display: inline-flex;
  min-height: 52px;
  padding: 0 20px;
  align-items: center;
  gap: 24px;
  color: var(--white);
  background: var(--ink);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  transition: background 0.2s ease, transform 0.2s ease;
}

.load-more-button span {
  display: grid;
  width: 26px;
  height: 26px;
  color: var(--ink);
  background: var(--lime);
  border-radius: 50%;
  place-items: center;
  font-size: 18px;
}

.load-more-button:hover {
  background: var(--blue);
  transform: translateY(-2px);
}

.load-more-button[hidden] {
  display: none;
}

.project-feature {
  padding-bottom: clamp(54px, 6vw, 86px);
  background: var(--paper);
}

.project-feature img {
  width: 100%;
  max-height: 900px;
  object-fit: contain;
  background: #e8e6e1;
}

.project-story {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(50px, 9vw, 150px);
}

.project-story h2 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.055em;
}

.project-story > div:last-child > p {
  margin: 0 0 30px;
  color: var(--ink-soft);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.65;
}

.case-study-facts {
  display: grid;
  margin: 42px 0 6px;
  border-top: 1px solid var(--line);
}

.case-study-facts > div {
  display: grid;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 150px 1fr;
  gap: 28px;
}

.case-study-facts span {
  color: var(--blue);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-study-facts p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.6;
}

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

.references-grid {
  display: grid;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  grid-template-columns: repeat(5, 1fr);
}

.reference-card {
  display: grid;
  min-height: 170px;
  padding: 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  place-items: center;
  transition: background 0.25s ease;
}

.reference-card:hover {
  background: var(--white);
}

.reference-card img {
  max-width: 135px;
  max-height: 70px;
  object-fit: contain;
  opacity: 1;
}

.service-hero {
  min-height: 66vh;
  color: var(--white);
  background: var(--blue);
}

.service-hero .container {
  display: flex;
  min-height: 66vh;
  padding-top: calc(var(--header) + 54px);
  padding-bottom: 52px;
  flex-direction: column;
  justify-content: space-between;
}

.service-hero .display {
  max-width: 1150px;
}

.service-hero-bottom {
  display: grid;
  align-items: end;
  grid-template-columns: 1fr minmax(300px, 580px);
  gap: 32px;
}

.service-hero-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(18px, 2vw, 26px);
}

.service-body {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: clamp(50px, 10vw, 170px);
}

.service-side {
  position: sticky;
  top: 125px;
  align-self: start;
}

.service-side strong {
  display: block;
  margin-bottom: 22px;
  color: var(--blue);
  font-size: 12px;
  text-transform: uppercase;
}

.service-side a {
  display: block;
  padding: 9px 0;
  color: var(--muted);
  font-size: 14px;
}

.service-side a:hover {
  color: var(--ink);
}

.prose {
  max-width: 840px;
}

.prose p {
  margin: 0 0 34px;
  color: var(--ink-soft);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.65;
}

.prose h4 {
  margin: 70px 0 28px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(32px, 4vw, 58px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.055em;
}

.prose blockquote {
  margin: 70px 0;
  padding: 46px;
  color: var(--white);
  background: var(--ink);
  border-radius: var(--radius);
  font-family: "Manrope", sans-serif;
  font-size: clamp(28px, 4vw, 50px);
  line-height: 1.1;
  letter-spacing: -0.05em;
}

.prose ul {
  margin: 30px 0 60px;
  padding: 0;
  list-style: none;
}

.prose li {
  padding: 22px 0 22px 34px;
  border-bottom: 1px solid var(--line);
  font-size: 18px;
}

.prose li::before {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin: 0 18px 2px -28px;
  content: "";
  background: var(--blue);
  border-radius: 50%;
}

.about-visual {
  position: relative;
  overflow: hidden;
  height: min(54vw, 650px);
  background: var(--blue);
}

.about-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-story {
  display: grid;
  grid-template-columns: 0.6fr 1.4fr;
  gap: clamp(50px, 9vw, 150px);
}

.about-story-copy p {
  margin: 0 0 34px;
  font-size: clamp(21px, 2.4vw, 32px);
  line-height: 1.5;
  letter-spacing: -0.025em;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.16);
}

.principle {
  min-height: 270px;
  padding: 34px;
  background: var(--ink);
}

.principle span {
  color: var(--lime);
  font-size: 12px;
}

.principle h3 {
  margin: 88px 0 12px;
  font-family: "Manrope", sans-serif;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.principle p {
  color: rgba(255, 255, 255, 0.56);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(50px, 10vw, 160px);
}

.contact-list {
  display: grid;
  gap: 36px;
}

.contact-list div {
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.contact-list small {
  display: block;
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-list a,
.contact-list p {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(20px, 2.3vw, 31px);
  line-height: 1.35;
  letter-spacing: -0.035em;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.field {
  display: grid;
  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  color: var(--muted);
  font-size: 12px;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 17px 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  outline: none;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--blue);
}

.field textarea {
  min-height: 130px;
  resize: vertical;
}

.submit-button,
.primary-button {
  display: inline-flex;
  min-height: 54px;
  padding: 0 26px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  color: var(--white);
  background: var(--ink);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.submit-button {
  margin-top: 28px;
}

.submit-button:hover,
.primary-button:hover {
  background: var(--blue);
  transform: translateY(-2px);
}

.form-status {
  min-height: 24px;
  margin-top: 16px;
  color: var(--blue);
  font-size: 13px;
}

.hero-actions {
  display: flex;
  margin-top: 28px;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.cta-primary {
  display: inline-flex;
  min-height: 50px;
  padding: 0 21px;
  align-items: center;
  gap: 28px;
  color: var(--ink);
  background: var(--lime);
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(189, 242, 74, 0.14);
  font-size: 13px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-primary:hover {
  box-shadow: 0 12px 30px rgba(189, 242, 74, 0.2);
  transform: translateY(-2px);
}

.cta-primary span {
  font-size: 18px;
}

.hero-sticker {
  display: inline-flex;
  padding: 9px 14px;
  align-items: center;
  gap: 7px;
  color: var(--ink);
  background: var(--lime);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  transform: rotate(-2deg);
}

.hero-sticker i {
  position: relative;
  width: 13px;
  height: 13px;
  flex: 0 0 auto;
  color: var(--blue);
  transform: rotate(45deg);
}

.hero-sticker i::before,
.hero-sticker i::after {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 100%;
  height: 2px;
  content: "";
  background: currentColor;
  border-radius: 999px;
  transform: translate(-50%, -50%);
}

.hero-sticker i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

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

.service-group {
  display: grid;
  min-height: 350px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(16, 18, 22, 0.08);
  border-radius: 28px;
  grid-template-columns: 52px 1fr;
  gap: 22px;
  transition: color 0.25s ease, transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.service-group:hover {
  color: var(--white);
  background: var(--blue);
  border-color: rgba(19, 95, 242, 0.16);
  box-shadow: 0 24px 60px rgba(19, 95, 242, 0.2);
  transform: translateY(-4px);
}

.service-group-icon {
  display: grid;
  width: 52px;
  height: 52px;
  color: var(--white);
  background: var(--blue);
  border-radius: 16px;
  place-items: center;
}

.service-group-count {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-group h3 {
  margin: 8px 0 12px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.05em;
}

.service-group p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  transition: color 0.25s ease;
}

.service-group:hover .service-group-count,
.service-group:hover p {
  color: rgba(255, 255, 255, 0.72);
}

.service-group-links {
  display: grid;
  align-self: end;
  grid-column: 2;
}

.service-group-links a {
  display: flex;
  padding: 14px 0;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  font-weight: 500;
  transition: border-color 0.25s ease, color 0.25s ease;
}

.service-group:hover .service-group-links a {
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.service-group-links b,
.package-card b,
.contact-hero-card b {
  color: var(--blue);
  font-size: 18px;
  font-weight: 800;
  transition: transform 0.2s ease;
}

.service-group-links a:hover b,
.package-card a:hover b,
.contact-hero-card a:hover b {
  transform: translate(3px, -3px);
}

.client-showcase {
  padding: clamp(24px, 3vw, 42px);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(16, 18, 22, 0.07);
  border-radius: 32px;
}

.client-showcase-copy {
  display: grid;
  margin-bottom: 30px;
  padding-bottom: 26px;
  align-items: end;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 0.5fr 1.5fr;
  gap: 30px;
}

.client-showcase-copy span {
  color: var(--blue);
  font-family: "Manrope", sans-serif;
  font-size: clamp(30px, 4vw, 54px);
  font-weight: 600;
  letter-spacing: -0.05em;
}

.client-showcase-copy p {
  max-width: 660px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.client-ribbon {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.client-logo {
  display: grid;
  min-height: 112px;
  padding: 18px;
  background: var(--paper);
  border-radius: 16px;
  place-items: center;
  transition: background 0.2s ease, transform 0.2s ease;
}

.client-logo:hover {
  background: var(--white);
  transform: translateY(-3px);
}

.client-logo img {
  max-width: 108px;
  max-height: 52px;
  object-fit: contain;
}

.faq-layout,
.faq-page-layout {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(44px, 7vw, 100px);
}

.faq-intro {
  position: sticky;
  top: 120px;
}

.faq-intro .subtitle {
  font-size: 17px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  display: grid;
  padding: 24px 0;
  align-items: center;
  grid-template-columns: 44px 1fr 30px;
  gap: 14px;
  cursor: pointer;
  font-family: "Manrope", sans-serif;
  font-size: clamp(19px, 2vw, 25px);
  font-weight: 600;
  letter-spacing: -0.03em;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary span {
  color: var(--blue);
  font-family: "DM Sans", sans-serif;
  font-size: 11px;
  letter-spacing: 0.08em;
}

.faq-item summary i {
  display: grid;
  width: 30px;
  height: 30px;
  color: var(--white);
  background: var(--ink);
  border-radius: 50%;
  place-items: center;
  font-size: 18px;
  font-style: normal;
  transition: transform 0.2s ease, background 0.2s ease;
}

.faq-item[open] summary i {
  background: var(--blue);
  transform: rotate(45deg);
}

.faq-item > p {
  max-width: 720px;
  margin: -4px 44px 24px 58px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.services-page-hero .display {
  max-width: 1240px;
  font-size: clamp(50px, 7vw, 108px);
}

.accent-text {
  color: var(--lime);
}

.services-page-intro {
  display: grid;
  margin-bottom: 38px;
  align-items: end;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 40px;
}

.services-page-intro p:last-child {
  max-width: 800px;
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(25px, 3.2vw, 44px);
  line-height: 1.2;
  letter-spacing: -0.045em;
}

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

.service-card {
  display: flex;
  min-height: 390px;
  padding: 28px;
  flex-direction: column;
  justify-content: space-between;
  background: var(--white);
  border: 1px solid rgba(16, 18, 22, 0.07);
  border-radius: 26px;
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.service-card:hover {
  color: var(--white);
  background: var(--blue);
  transform: translateY(-4px);
}

.service-card-top {
  display: grid;
  align-items: center;
  grid-template-columns: 40px 1fr 50px;
}

.service-card-top > span,
.service-card-top small {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-card-top small {
  justify-self: start;
}

.service-card-icon {
  display: grid;
  width: 58px;
  height: 58px;
  margin-top: 34px;
  color: var(--blue);
  background: var(--paper);
  border-radius: 17px;
  place-items: center;
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.service-card:hover .service-card-icon {
  color: var(--ink);
  background: var(--lime);
  transform: scale(1.05);
}

.service-card h3 {
  max-width: 620px;
  margin: 18px 0 14px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(30px, 3.5vw, 51px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.055em;
}

.service-card p {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
}

.service-card:hover p,
.service-card:hover .service-card-top > span,
.service-card:hover .service-card-top small {
  color: rgba(255, 255, 255, 0.72);
}

.service-card:hover .arrow-circle {
  color: var(--ink);
  background: var(--lime);
  transform: translate(3px, -3px);
}

.service-hero-icon {
  display: grid;
  width: 64px;
  height: 64px;
  margin: 22px 0;
  color: var(--blue);
  background: var(--lime);
  border-radius: 19px;
  place-items: center;
}

.service-card-tags {
  display: flex;
  margin-top: 28px;
  flex-wrap: wrap;
  gap: 7px;
}

.service-card-tags span {
  padding: 7px 10px;
  color: var(--muted);
  background: var(--paper);
  border-radius: 999px;
  font-size: 11px;
}

.service-card:hover .service-card-tags span {
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.12);
}

.workflow-heading {
  display: grid;
  margin-bottom: 46px;
  align-items: end;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 60px;
}

.workflow-heading > p {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 17px;
}

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

.workflow-step,
.service-process-step {
  min-height: 225px;
  padding: 24px;
  background: var(--white);
  border-radius: 20px;
}

.workflow-step span,
.service-process-step span {
  color: var(--blue);
  font-size: 11px;
}

.workflow-step strong,
.service-process-step strong {
  display: block;
  margin: 74px 0 10px;
  font-family: "Manrope", sans-serif;
  font-size: 27px;
  letter-spacing: -0.04em;
}

.workflow-step p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

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

.package-card {
  display: flex;
  min-height: 330px;
  padding: 26px;
  flex-direction: column;
  background: var(--ink);
  border-radius: 24px;
  color: var(--white);
}

.package-card > span {
  color: var(--lime);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.package-card h3 {
  margin: 62px 0 16px;
  font-family: "Manrope", sans-serif;
  font-size: 30px;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.package-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

.package-card a {
  display: flex;
  margin-top: auto;
  padding-top: 22px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 13px;
  font-weight: 600;
}

.references-note {
  display: grid;
  margin-bottom: 28px;
  padding: 24px;
  align-items: center;
  background: var(--white);
  border-radius: 20px;
  grid-template-columns: 42px 1fr;
  gap: 18px;
}

.references-note > span {
  display: grid;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: var(--blue);
  border-radius: 13px;
  place-items: center;
}

.references-note p {
  max-width: 760px;
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.35;
  letter-spacing: -0.025em;
}

.references-grid {
  border: 0;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.reference-card {
  min-height: 155px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.74);
  border: 0;
  border-radius: 18px;
  grid-template-rows: 1fr auto;
  gap: 16px;
  transition: background 0.25s ease, transform 0.25s ease;
}

.reference-card:hover {
  background: var(--white);
  transform: translateY(-3px);
}

.reference-card img {
  max-width: 120px;
  max-height: 58px;
}

.reference-card span {
  color: var(--muted);
  font-size: 10px;
  text-align: center;
}

.service-overview {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(40px, 7vw, 100px);
}

.service-statement {
  padding: 30px;
  color: var(--white);
  background: var(--ink);
  border-radius: 26px;
}

.service-statement > span {
  color: var(--lime);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-statement blockquote {
  margin: 54px 0 52px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(28px, 3.7vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.service-statement p {
  margin: 0;
  padding-top: 22px;
  color: rgba(255, 255, 255, 0.64);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.service-statement p strong {
  display: block;
  margin-bottom: 8px;
  color: var(--white);
  font-size: 12px;
}

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

.scope-item {
  min-height: 150px;
  padding: 20px;
  background: var(--white);
  border: 1px solid rgba(16, 18, 22, 0.07);
  border-radius: 18px;
}

.scope-item span {
  color: var(--blue);
  font-size: 10px;
}

.scope-item strong {
  display: block;
  margin-top: 52px;
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.service-process-step {
  min-height: 190px;
  border: 1px solid rgba(16, 18, 22, 0.06);
}

.service-process-step strong {
  margin-top: 76px;
}

.service-closing {
  position: relative;
  background: var(--paper-soft);
  border-top: 1px solid rgba(16, 18, 22, 0.06);
}

.service-closing-panel {
  position: relative;
  display: grid;
  min-height: 430px;
  padding: clamp(32px, 5vw, 70px);
  overflow: hidden;
  align-items: end;
  color: var(--white);
  background: var(--blue);
  border-radius: 34px;
  grid-template-columns: minmax(0, 1fr) minmax(210px, 0.28fr);
  gap: clamp(40px, 7vw, 110px);
}

.service-closing-panel::before,
.service-closing-panel::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  pointer-events: none;
}

.service-closing-panel::before {
  top: -260px;
  right: -150px;
  width: 620px;
  height: 620px;
}

.service-closing-panel::after {
  top: -75px;
  right: 35px;
  width: 270px;
  height: 270px;
}

.service-closing-copy {
  position: relative;
  z-index: 1;
}

.service-closing .title {
  max-width: 950px;
  font-size: clamp(39px, 5.2vw, 74px);
}

.service-closing-copy > p:last-child {
  max-width: 680px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(16px, 1.7vw, 21px);
}

.service-closing-action {
  position: relative;
  z-index: 1;
  display: flex;
  width: min(100%, 230px);
  aspect-ratio: 1;
  padding: 24px;
  align-items: flex-end;
  justify-self: end;
  justify-content: space-between;
  color: var(--ink);
  background: var(--lime);
  border-radius: 50%;
  font-family: "Manrope", sans-serif;
  font-size: clamp(22px, 2.3vw, 31px);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.045em;
  transition: transform 0.25s ease, background 0.25s ease;
}

.service-closing-action b {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  color: var(--white);
  background: var(--ink);
  border-radius: 50%;
  place-items: center;
}

.service-closing-action .arrow-icon {
  width: 21px;
  height: 21px;
}

.service-closing-action:hover {
  background: var(--white);
  transform: rotate(-2deg) scale(1.02);
}

.related-services {
  margin-top: clamp(54px, 6vw, 82px);
}

.related-services-heading {
  display: flex;
  margin-bottom: 28px;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
}

.related-services-heading h3 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.related-services-heading .text-link {
  margin-top: 0;
  flex: 0 0 auto;
}

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

.related-service-card {
  display: flex;
  min-height: 330px;
  padding: 24px;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(16, 18, 22, 0.07);
  border-radius: 24px;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.related-service-card:hover {
  background: var(--white);
  box-shadow: 0 18px 42px rgba(16, 18, 22, 0.08);
  transform: translateY(-4px);
}

.related-service-top {
  display: grid;
  align-items: center;
  grid-template-columns: 32px 1fr 38px;
  gap: 10px;
}

.related-service-top > span,
.related-service-top small {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.related-service-top b {
  display: grid;
  width: 38px;
  height: 38px;
  color: var(--ink);
  background: var(--lime);
  border-radius: 50%;
  place-items: center;
}

.related-service-top .arrow-icon {
  width: 18px;
  height: 18px;
}

.related-service-card > .service-card-icon {
  margin-top: 32px;
}

.related-service-card > div:last-child {
  margin-top: auto;
}

.related-service-card h4 {
  margin: 26px 0 10px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(25px, 2.6vw, 36px);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.related-service-card p {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 14px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.faq-page-layout > aside {
  position: sticky;
  top: 120px;
  padding: 26px;
  color: var(--white);
  background: var(--blue);
  border-radius: 22px;
}

.faq-page-layout > aside p {
  margin: 0 0 28px;
  font-family: "Manrope", sans-serif;
  font-size: 22px;
  line-height: 1.35;
  letter-spacing: -0.03em;
}

.faq-page-layout .primary-button {
  color: var(--ink);
  background: var(--lime);
}

.contact-hero {
  padding: calc(var(--header) + 62px) 0 64px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.contact-hero .container {
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: clamp(44px, 8vw, 120px);
}

.contact-hero .display {
  max-width: 860px;
  font-size: clamp(52px, 7.5vw, 112px);
}

.contact-hero-card {
  padding: 26px;
  color: var(--ink);
  background: var(--lime);
  border-radius: 24px;
  transform: rotate(1deg);
}

.contact-hero-card > span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-hero-card p {
  margin: 54px 0 28px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(20px, 2.4vw, 29px);
  line-height: 1.3;
  letter-spacing: -0.04em;
}

.contact-hero-card a {
  display: flex;
  padding-top: 16px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(16, 18, 22, 0.25);
  font-weight: 600;
}

.contact-hero-card b {
  color: var(--ink);
}

.contact-layout {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 18px;
}

.contact-info {
  display: grid;
  gap: 14px;
}

.contact-card {
  padding: 24px;
  background: var(--white);
  border: 1px solid rgba(16, 18, 22, 0.07);
  border-radius: 22px;
}

.contact-card small {
  display: block;
  margin-bottom: 16px;
  color: var(--blue);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-card a,
.contact-card p {
  display: block;
  margin: 0 0 7px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(17px, 1.8vw, 24px);
  line-height: 1.35;
  letter-spacing: -0.03em;
}

.contact-card > a:last-child {
  display: flex;
  margin-top: 24px;
  padding-top: 14px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  font-weight: 600;
}

.contact-card > a span {
  color: var(--blue);
  font-size: 18px;
  font-weight: 800;
}

.contact-card-map {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  color: var(--white);
  background: var(--blue);
}

.contact-card-map small,
.contact-card-map > a span {
  color: var(--lime);
}

.contact-card-map p {
  position: relative;
  z-index: 1;
  max-width: 430px;
  margin-top: 120px;
  font-size: clamp(24px, 3vw, 38px);
}

.contact-card-map > a {
  position: relative;
  z-index: 1;
  border-color: rgba(255, 255, 255, 0.25);
}

.map-orbit {
  position: absolute;
  top: -100px;
  right: -70px;
  display: grid;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  place-items: center;
}

.map-orbit i {
  position: absolute;
  top: 58px;
  left: 32px;
  width: 14px;
  height: 14px;
  background: var(--lime);
  border-radius: 50%;
}

.map-orbit b {
  color: rgba(255, 255, 255, 0.85);
  font-family: "Manrope", sans-serif;
  letter-spacing: 0.12em;
}

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

.contact-form-card {
  padding: clamp(26px, 4vw, 48px);
  background: var(--white);
  border-radius: 24px;
}

.form-heading {
  margin-bottom: 38px;
}

.form-heading span {
  color: var(--blue);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.form-heading h2 {
  max-width: 560px;
  margin: 12px 0 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.post-reading-section {
  background: #07100d;
}

.post-reading-layout {
  display: grid;
  align-items: start;
  grid-template-columns: 270px minmax(0, 1fr);
  gap: clamp(36px, 5vw, 70px);
}

.post-sidebar {
  position: sticky;
  top: 116px;
  display: grid;
  gap: 18px;
}

.post-sidebar-card,
.post-suggest-card {
  padding: 22px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  box-shadow: inset 0 0 0 1px rgba(232, 245, 66, 0.02);
}

.post-sidebar-card strong {
  display: flex;
  margin-bottom: 18px;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.post-sidebar-card strong span {
  color: var(--lime);
}

.post-toc nav {
  display: grid;
  gap: 14px;
}

.post-toc a {
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
}

.post-toc a:hover {
  color: var(--lime);
}

.post-share-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.post-share-actions a,
.post-share-actions button {
  display: grid;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  cursor: pointer;
  font-weight: 800;
  place-items: center;
}

.post-share-actions a:hover,
.post-share-actions button:hover,
.post-share-actions button.copied {
  color: var(--ink);
  background: var(--lime);
}

.post-suggest-card {
  display: grid;
  gap: 13px;
}

.post-suggest-card small {
  color: var(--lime);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.post-suggest-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 12px;
}

.post-suggest-card strong {
  color: var(--white);
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.post-main {
  min-width: 0;
}

.post-cover {
  margin: 0 0 clamp(34px, 5vw, 60px);
  overflow: hidden;
  background: var(--ink);
  border: 1px solid rgba(232, 245, 66, 0.14);
  border-radius: 24px;
}

.post-cover img {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
}

.post-content {
  max-width: 960px;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.75;
}

.post-section {
  scroll-margin-top: 120px;
}

.post-section h2 {
  margin: 0 0 18px;
  color: var(--white);
  font-family: "Manrope", sans-serif;
  font-size: clamp(30px, 4vw, 54px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.055em;
}

.post-content p {
  margin: 0 0 32px;
}

.empty-state {
  padding: 80px 30px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.cookie-notice {
  position: fixed;
  z-index: 90;
  right: 24px;
  bottom: 24px;
  display: flex;
  width: min(560px, calc(100% - 48px));
  padding: 18px;
  align-items: center;
  gap: 18px;
  color: var(--white);
  background: rgba(16, 18, 22, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  box-shadow: 0 24px 80px rgba(16, 18, 22, 0.22);
  backdrop-filter: blur(18px);
}

.cookie-notice[hidden] {
  display: none;
}

.cookie-notice strong {
  display: block;
  margin-bottom: 4px;
  font-size: 13px;
}

.cookie-notice p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  line-height: 1.5;
}

.cookie-notice button {
  flex: 0 0 auto;
  padding: 12px 16px;
  color: var(--ink);
  background: var(--lime);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
}

.site-footer {
  padding: clamp(64px, 7vw, 96px) 0 24px;
  color: var(--white);
  background: var(--ink);
}

.footer-intro {
  display: grid;
  width: min(calc(100% - 48px), var(--max));
  margin-inline: auto;
  padding-bottom: clamp(58px, 6vw, 88px);
  align-items: end;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
  gap: clamp(42px, 6vw, 90px);
}

.footer-intro-main > a {
  position: relative;
  display: inline-block;
  font-family: "Manrope", sans-serif;
  font-size: clamp(60px, 10vw, 150px);
  font-weight: 600;
  line-height: 0.84;
  letter-spacing: -0.075em;
}

.footer-intro-main > a span {
  position: absolute;
  top: 5px;
  right: -70px;
  color: var(--lime);
  font-size: 0.28em;
}

.footer-intro-copy {
  display: grid;
  padding-bottom: 8px;
  gap: 15px;
}

.footer-intro-copy p {
  max-width: 420px;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(18px, 2vw, 25px);
  line-height: 1.45;
}

.footer-intro-copy a {
  display: flex;
  padding-bottom: 9px;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 14px;
}

.footer-intro-copy a span {
  color: var(--lime);
}

.footer-intro-copy small {
  margin-top: 13px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-grid {
  display: grid;
  width: min(calc(100% - 48px), var(--max));
  margin-inline: auto;
  padding: 52px 0;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 40px;
}

.footer-grid .brand {
  width: 190px;
}

.footer-grid > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}

.footer-grid p,
.footer-grid span,
.footer-grid a {
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}

.footer-grid a:hover {
  color: var(--white);
}

.footer-grid strong {
  margin-bottom: 10px;
  color: var(--white);
  font-size: 12px;
  text-transform: uppercase;
}

.footer-bottom {
  display: flex;
  width: min(calc(100% - 48px), var(--max));
  margin-inline: auto;
  padding-top: 22px;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.35);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 11px;
  text-transform: uppercase;
}

.arrow-icon {
  display: block;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.arrow-circle {
  width: 48px;
  height: 48px;
  color: var(--white);
  background: var(--ink);
}

.arrow-circle::before,
.text-link > span::before {
  content: none;
}

.arrow-circle .arrow-icon {
  width: 21px;
  height: 21px;
}

.text-link > span {
  width: 34px;
  height: 34px;
}

.text-link > span .arrow-icon {
  width: 18px;
  height: 18px;
}

.header-cta span,
.cta-primary span,
.primary-button span,
.submit-button > span:last-child {
  display: grid;
  place-items: center;
}

.header-cta .arrow-icon,
.cta-primary .arrow-icon,
.primary-button .arrow-icon,
.submit-button .arrow-icon {
  width: 19px;
  height: 19px;
}

.service-group {
  min-height: 320px;
  padding: 28px;
  grid-template-columns: 55px 1fr;
}

.service-card-icon,
.service-hero-icon {
  position: relative;
  overflow: hidden;
  color: #5b32d6;
  background: linear-gradient(145deg, #eee8ff, #dcd0ff);
  border: 1px solid rgba(91, 50, 214, 0.12);
  box-shadow: 0 12px 30px rgba(91, 50, 214, 0.12);
}

.service-card-icon {
  width: 55px;
  height: 55px;
  border-radius: 17px;
}

.service-hero-icon {
  width: 66px;
  height: 66px;
  border-radius: 21px;
}

.service-card-icon::after,
.service-hero-icon::after {
  position: absolute;
  right: -13px;
  bottom: -15px;
  width: 38px;
  height: 38px;
  content: "";
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
}

.service-card-icon[data-icon="web"],
.service-hero-icon[data-icon="web"] {
  color: #087d9e;
  background: linear-gradient(145deg, #dff9ff, #bcecf8);
  border-color: rgba(8, 125, 158, 0.12);
  box-shadow: 0 12px 30px rgba(8, 125, 158, 0.12);
}

.service-card-icon[data-icon="target"],
.service-hero-icon[data-icon="target"] {
  color: #d94a42;
  background: linear-gradient(145deg, #fff0e9, #ffd5c8);
  border-color: rgba(217, 74, 66, 0.12);
  box-shadow: 0 12px 30px rgba(217, 74, 66, 0.12);
}

.service-card-icon[data-icon="spark"],
.service-hero-icon[data-icon="spark"] {
  color: #8a6200;
  background: linear-gradient(145deg, #fff7ca, #f5e57d);
  border-color: rgba(138, 98, 0, 0.12);
  box-shadow: 0 12px 30px rgba(138, 98, 0, 0.12);
}

.service-card-icon[data-icon="commerce"],
.service-hero-icon[data-icon="commerce"] {
  color: #087d62;
  background: linear-gradient(145deg, #e1fff4, #bcebd9);
}

.service-card-icon[data-icon="social"],
.service-hero-icon[data-icon="social"] {
  color: #d1457a;
  background: linear-gradient(145deg, #ffe8f2, #ffc9dd);
}

.service-card-icon[data-icon="package"],
.service-hero-icon[data-icon="package"] {
  color: #a25618;
  background: linear-gradient(145deg, #fff0df, #f4d0aa);
}

.service-card-icon[data-icon="search"],
.service-hero-icon[data-icon="search"] {
  color: #2459c9;
  background: linear-gradient(145deg, #e7efff, #c9d9ff);
}

.service-card-icon[data-icon="identity"],
.service-hero-icon[data-icon="identity"] {
  --fa-service-icon: url("/assets/icons/services/brand-identity.svg");
}

.service-card-icon[data-icon="web"],
.service-hero-icon[data-icon="web"] {
  --fa-service-icon: url("/assets/icons/services/web-design.svg");
}

.service-card-icon[data-icon="commerce"],
.service-hero-icon[data-icon="commerce"] {
  --fa-service-icon: url("/assets/icons/services/ecommerce.svg");
}

.service-card-icon[data-icon="social"],
.service-hero-icon[data-icon="social"] {
  --fa-service-icon: url("/assets/icons/services/social-content.svg");
}

.service-card-icon[data-icon="package"],
.service-hero-icon[data-icon="package"] {
  --fa-service-icon: url("/assets/icons/services/packaging.svg");
}

.service-card-icon[data-icon="search"],
.service-hero-icon[data-icon="search"] {
  --fa-service-icon: url("/assets/icons/services/seo-visibility.svg");
}

.service-card-icon[data-icon="spark"],
.service-hero-icon[data-icon="spark"] {
  --fa-service-icon: url("/assets/icons/services/ai-creative.svg");
}

.service-card-icon[data-icon="target"],
.service-hero-icon[data-icon="target"] {
  --fa-service-icon: url("/assets/icons/services/ads-conversion.svg");
}

.fa-service-glyph {
  position: relative;
  z-index: 1;
  display: block;
  width: 25px;
  height: 25px;
  background: currentColor;
  -webkit-mask: var(--fa-service-icon) center / contain no-repeat;
  mask: var(--fa-service-icon) center / contain no-repeat;
}

.service-hero-icon .fa-service-glyph {
  width: 31px;
  height: 31px;
}

.service-card:hover .service-card-icon {
  transform: translateY(-3px) rotate(-3deg);
}

.service-group-icon-art {
  position: relative;
  display: grid;
  width: 55px;
  height: 55px;
  overflow: hidden;
  color: #5b32d6;
  background: linear-gradient(145deg, #f1ecff, #dcd0ff);
  border: 1px solid rgba(91, 50, 214, 0.12);
  border-radius: 17px;
  place-items: center;
  box-shadow: 0 12px 30px rgba(91, 50, 214, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-group-icon-art::after {
  position: absolute;
  right: -12px;
  bottom: -15px;
  width: 38px;
  height: 38px;
  content: "";
  background: rgba(255, 255, 255, 0.42);
  border-radius: 50%;
}

.service-group[data-icon="identity"] .service-group-icon-art {
  --fa-service-icon: url("/assets/icons/services/brand-identity.svg");
}

.service-group[data-icon="web"] .service-group-icon-art {
  --fa-service-icon: url("/assets/icons/services/seo-visibility.svg");
  color: #087d9e;
  background: linear-gradient(145deg, #e3faff, #bcecf8);
  border-color: rgba(8, 125, 158, 0.12);
  box-shadow: 0 12px 30px rgba(8, 125, 158, 0.12);
}

.service-group[data-icon="target"] .service-group-icon-art {
  --fa-service-icon: url("/assets/icons/services/ads-conversion.svg");
  color: #d94a42;
  background: linear-gradient(145deg, #fff1eb, #ffd5c8);
  border-color: rgba(217, 74, 66, 0.12);
  box-shadow: 0 12px 30px rgba(217, 74, 66, 0.12);
}

.service-group[data-icon="spark"] .service-group-icon-art {
  --fa-service-icon: url("/assets/icons/services/social-content.svg");
  color: #d1457a;
  background: linear-gradient(145deg, #ffe8f2, #ffc9dd);
  border-color: rgba(209, 69, 122, 0.12);
  box-shadow: 0 12px 30px rgba(209, 69, 122, 0.12);
}

.service-group:hover .service-group-icon-art {
  color: var(--ink);
  background: var(--lime);
  border-color: rgba(232, 245, 66, 0.45);
  box-shadow: 0 16px 34px rgba(16, 18, 22, 0.14);
  transform: translateY(-3px) rotate(-3deg);
}

.service-group-links b,
.package-card b,
.contact-hero-card b {
  display: grid;
  width: 34px;
  height: 34px;
  color: var(--ink);
  background: var(--lime);
  border-radius: 50%;
  place-items: center;
}

.service-group-links b .arrow-icon,
.package-card b .arrow-icon,
.contact-hero-card b .arrow-icon {
  width: 18px;
  height: 18px;
}

.service-card:hover .arrow-circle,
.service-card:focus-visible .arrow-circle,
.related-service-card:hover .related-service-top b,
.related-service-card:focus-visible .related-service-top b {
  color: var(--ink);
  background: var(--lime);
}

.project-card {
  cursor: pointer;
}

.project-image {
  margin: 0;
  aspect-ratio: 4 / 3;
  border-radius: 22px;
  isolation: isolate;
}

.project-image::after {
  position: absolute;
  z-index: 1;
  inset: 38% 0 0;
  content: "";
  background: linear-gradient(to top, rgba(6, 8, 12, 0.82), transparent);
  pointer-events: none;
}

.project-caption {
  position: absolute;
  z-index: 2;
  right: 20px;
  bottom: 18px;
  left: 20px;
  display: grid;
  color: var(--white);
  gap: 3px;
  transform: translateY(4px);
  transition: transform 0.3s ease;
}

.project-card:hover .project-caption {
  transform: translateY(0);
}

.project-caption .project-category {
  width: max-content;
  margin: 0 0 6px;
  padding: 7px 11px;
  color: var(--ink);
  background: rgba(232, 245, 66, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(12px);
  font-size: 11px;
  line-height: 1;
}

.project-caption strong {
  font-family: "Manrope", sans-serif;
  font-size: clamp(21px, 2vw, 29px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.project-caption small {
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
}

.project-card-action {
  display: inline-flex;
  width: max-content;
  margin-top: 9px;
  padding: 8px 10px;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.project-card:hover .project-card-action,
.project-card:focus-visible .project-card-action {
  opacity: 1;
  transform: translateY(0);
}

.project-card-action .arrow-icon,
.arrow-icon.small {
  width: 14px;
  height: 14px;
}

body.lightbox-open {
  overflow: hidden;
}

.project-lightbox {
  position: fixed;
  z-index: 120;
  inset: 0;
  display: grid;
  padding: clamp(16px, 4vw, 46px);
  place-items: center;
}

.project-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 7, 10, 0.78);
  backdrop-filter: blur(14px);
}

.project-lightbox-card {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(1120px, 100%);
  max-height: min(760px, calc(100vh - 32px));
  overflow: hidden;
  background: #f7f5ef;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 28px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
}

.project-lightbox-close {
  position: absolute;
  z-index: 3;
  top: 16px;
  right: 16px;
  display: grid;
  width: 42px;
  height: 42px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(16, 18, 23, 0.1);
  border-radius: 50%;
  cursor: pointer;
  font-size: 24px;
  place-items: center;
}

.project-lightbox-media {
  display: grid;
  min-height: 420px;
  background: #e5e1d8;
  place-items: center;
}

.project-lightbox-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.project-lightbox-media.fit-cover img {
  object-fit: cover;
}

.project-lightbox-copy {
  display: flex;
  min-height: 0;
  padding: clamp(24px, 4vw, 44px);
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  overflow: auto;
}

.project-lightbox-category {
  width: max-content;
  padding: 8px 12px;
  color: var(--ink);
  background: var(--lime);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-lightbox-copy h2 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 0.94;
  letter-spacing: -0.065em;
}

.project-lightbox-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.project-lightbox-meta {
  display: grid;
  gap: 10px;
}

.project-lightbox-meta span {
  display: grid;
  padding: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  gap: 4px;
}

.project-lightbox-meta small {
  color: var(--muted);
  font-size: 11px;
}

.project-lightbox-meta strong {
  font-family: "Manrope", sans-serif;
  letter-spacing: -0.03em;
}

.project-lightbox-thumbs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
}

.project-lightbox-thumbs button {
  flex: 0 0 58px;
  height: 58px;
  padding: 0;
  overflow: hidden;
  background: var(--white);
  border: 2px solid transparent;
  border-radius: 12px;
  cursor: pointer;
}

.project-lightbox-thumbs button.active {
  border-color: var(--blue);
}

.project-lightbox-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-lightbox-link {
  display: inline-flex;
  width: max-content;
  padding: 12px 14px;
  align-items: center;
  gap: 9px;
  color: var(--white);
  background: var(--ink);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.project-meta,
.project-result,
.project-card-cta {
  display: none;
}

.approach-section {
  overflow: hidden;
}

.approach-panel {
  position: relative;
  display: grid;
  min-height: 480px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  border-radius: 34px;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
}

.approach-visual {
  position: relative;
  display: flex;
  min-height: 100%;
  padding: 34px;
  overflow: hidden;
  flex-direction: column;
  justify-content: space-between;
  color: var(--ink);
  background: var(--blue);
}

.approach-visual::before,
.approach-visual::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
}

.approach-visual::before {
  top: -35%;
  left: -25%;
  width: 125%;
  aspect-ratio: 1;
  animation: spin 24s linear infinite;
}

.approach-visual::after {
  right: -18%;
  bottom: -38%;
  width: 90%;
  aspect-ratio: 1;
}

.approach-visual > span {
  position: relative;
  z-index: 1;
  color: var(--white);
  font-family: "Manrope", sans-serif;
  font-size: clamp(48px, 6vw, 90px);
  font-weight: 700;
  letter-spacing: -0.07em;
}

.approach-visual > i {
  position: absolute;
  z-index: 1;
  top: 48%;
  left: 54%;
  width: 74px;
  height: 74px;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 0 18px rgba(189, 242, 74, 0.15);
  animation: approach-pulse 3s ease-in-out infinite;
}

.approach-visual > b {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.76);
  font-size: 11px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

@keyframes approach-pulse {
  50% { transform: scale(1.12); box-shadow: 0 0 0 28px rgba(189, 242, 74, 0.08); }
}

.approach-content {
  display: flex;
  padding: clamp(34px, 5vw, 74px);
  flex-direction: column;
  justify-content: center;
}

.approach-content .eyebrow {
  color: var(--lime);
}

.approach-content .manifesto-copy {
  font-size: clamp(34px, 4.3vw, 66px);
}

.approach-tags {
  display: flex;
  margin-top: 34px;
  flex-wrap: wrap;
  gap: 8px;
}

.approach-tags span {
  padding: 9px 13px;
  color: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 999px;
  font-size: 12px;
}

.stats {
  margin-top: 24px;
  border: 0;
  gap: 12px;
}

.stat {
  padding: 24px;
  background: var(--white);
  border-radius: 20px;
}

.stat span {
  font-size: 14px;
}

.services-page-intro {
  margin-bottom: 30px;
  align-items: stretch;
  grid-template-columns: minmax(210px, 0.45fr) minmax(0, 1.55fr);
  gap: 16px;
}

.expertise-count {
  display: flex;
  min-height: 170px;
  padding: 24px;
  flex-direction: column;
  justify-content: space-between;
  color: var(--white);
  background: var(--blue);
  border-radius: 24px;
}

.expertise-count span {
  font-family: "Manrope", sans-serif;
  font-size: clamp(56px, 7vw, 94px);
  font-weight: 600;
  line-height: 0.8;
  letter-spacing: -0.07em;
}

.expertise-count strong {
  color: var(--lime);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.services-page-intro > p:last-child {
  display: flex;
  min-height: 170px;
  padding: clamp(24px, 3vw, 40px);
  align-items: center;
  background: var(--white);
  border-radius: 24px;
}

.service-card {
  min-height: 365px;
}

.service-card-top {
  grid-template-columns: 40px 1fr 48px;
}

.workflow-heading {
  margin-bottom: 30px;
}

.workflow-grid {
  gap: 14px;
}

.workflow-step {
  position: relative;
  display: flex;
  min-height: 250px;
  padding: 24px;
  overflow: hidden;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(16, 18, 22, 0.06);
}

.workflow-step > span {
  color: rgba(19, 95, 242, 0.18);
  font-family: "Manrope", sans-serif;
  font-size: clamp(72px, 8vw, 112px);
  font-weight: 700;
  line-height: 0.75;
  letter-spacing: -0.08em;
}

.workflow-step strong {
  margin: 0 0 8px;
  font-size: 29px;
}

.workflow-step p {
  font-size: 15px;
}

.package-card {
  min-height: 300px;
}

.package-card > span {
  font-size: 13px;
}

.package-card h3 {
  margin: 40px 0 14px;
}

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

.reference-card {
  min-height: 190px;
  padding: 28px;
  grid-template-rows: 1fr;
}

.reference-card img {
  width: min(82%, 180px);
  max-width: 180px;
  max-height: 92px;
}

.about-page-hero .display {
  max-width: 1200px;
  font-size: clamp(50px, 7vw, 108px);
  line-height: 1.02;
}

.about-graphic {
  position: relative;
  display: grid;
  min-height: 530px;
  padding: clamp(32px, 5vw, 72px);
  overflow: hidden;
  color: var(--white);
  background: var(--blue);
  grid-template-columns: 1fr minmax(340px, 0.8fr);
}

.about-wordmark {
  position: absolute;
  bottom: -0.2em;
  left: -0.04em;
  color: rgba(255, 255, 255, 0.12);
  font-family: "Manrope", sans-serif;
  font-size: clamp(150px, 30vw, 520px);
  font-weight: 800;
  line-height: 0.7;
  letter-spacing: -0.1em;
  white-space: nowrap;
}

.about-graphic-orbit {
  position: relative;
  width: min(36vw, 480px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  animation: spin 34s linear infinite;
}

.about-graphic-orbit::before,
.about-graphic-orbit::after {
  position: absolute;
  inset: 14%;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
}

.about-graphic-orbit::after {
  inset: 32%;
  background: var(--lime);
  border: 0;
}

.about-graphic-orbit i {
  position: absolute;
  width: 18px;
  height: 18px;
  background: var(--white);
  border-radius: 50%;
}

.about-graphic-orbit i:nth-child(1) { top: 8%; left: 24%; }
.about-graphic-orbit i:nth-child(2) { right: 2%; bottom: 30%; background: var(--lime); }
.about-graphic-orbit i:nth-child(3) { bottom: 4%; left: 31%; width: 10px; height: 10px; }

.about-graphic-copy {
  position: relative;
  z-index: 2;
  align-self: center;
}

.about-graphic-copy span,
.about-graphic-copy small {
  color: var(--lime);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-graphic-copy strong {
  display: block;
  margin: 24px 0 34px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(30px, 3.5vw, 52px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.about-story {
  grid-template-columns: minmax(180px, 0.4fr) minmax(0, 1.6fr);
  gap: clamp(36px, 7vw, 100px);
}

.story-marker {
  display: flex;
  min-height: 180px;
  padding: 22px;
  flex-direction: column;
  justify-content: space-between;
  color: var(--white);
  background: var(--ink);
  border-radius: 22px;
}

.story-marker span {
  color: var(--lime);
  font-family: "Manrope", sans-serif;
  font-size: 52px;
  line-height: 1;
}

.story-marker strong {
  font-size: 15px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.principles-grid {
  gap: 12px;
  background: transparent;
}

.principle {
  position: relative;
  min-height: 250px;
  padding: 28px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
}

.principle span {
  color: rgba(189, 242, 74, 0.24);
  font-family: "Manrope", sans-serif;
  font-size: 80px;
  font-weight: 700;
  line-height: 0.8;
  letter-spacing: -0.08em;
}

.principle h3 {
  margin: 34px 0 10px;
  font-size: 30px;
}

.contact-mini-grid {
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
}

.contact-card-phone {
  display: flex;
  flex-direction: column;
}

.contact-card-phone > p {
  color: var(--muted);
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
}

.contact-card-phone .contact-primary-link {
  margin-top: 28px;
  font-size: clamp(21px, 2vw, 29px);
}

.contact-card-phone .contact-secondary-link {
  display: flex;
  margin-top: auto;
  padding-top: 16px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.contact-secondary-link .arrow-icon {
  width: 18px;
  height: 18px;
  color: var(--blue);
}

.footer-intro {
  padding: clamp(32px, 4vw, 56px);
  align-items: stretch;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 30px;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: clamp(34px, 5vw, 72px);
}

.footer-intro-main {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.footer-intro-main > a {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  font-size: clamp(58px, 8.5vw, 130px);
  line-height: 0.92;
}

.footer-intro-main > a .footer-title {
  position: static;
  color: inherit;
  font-size: inherit;
}

.footer-intro-main > a .footer-arrow {
  position: static;
  display: grid;
  width: clamp(54px, 6vw, 82px);
  height: clamp(54px, 6vw, 82px);
  flex: 0 0 auto;
  color: var(--ink);
  background: var(--lime);
  border-radius: 50%;
  place-items: center;
}

.footer-arrow .arrow-icon {
  width: 34px;
  height: 34px;
}

.footer-intro-copy {
  padding: 8px 0;
  align-content: center;
}

.footer-intro-copy p {
  max-width: 560px;
}

.footer-intro-copy a span {
  display: grid;
  place-items: center;
}

.footer-intro-copy .arrow-icon {
  width: 18px;
  height: 18px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.social-link .arrow-icon {
  width: 13px;
  height: 13px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .service-row {
    grid-template-columns: 50px 1fr 42px;
  }

  .service-row p {
    display: none;
  }

  .logo-wall,
  .references-grid {
    grid-template-columns: repeat(4, 1fr);
  }

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

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

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

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

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

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

  .project-lightbox-media {
    min-height: 320px;
    max-height: 48vh;
  }

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

  .service-closing-panel {
    grid-template-columns: minmax(0, 1fr) 190px;
  }

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

  .related-service-card:last-child {
    grid-column: 1 / -1;
  }

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

  .footer-grid > div:last-child {
    grid-column: 2;
  }
}

@media (max-width: 760px) {
  :root {
    --header: 72px;
  }

  .site-header {
    padding-inline: 20px;
  }

  .brand {
    width: 132px;
    min-width: 0;
  }

  .brand:not(.brand-header) img {
    height: 44px;
  }

  .brand-header {
    width: 136px;
    height: auto;
  }

  .brand-header img {
    width: 100%;
    height: auto;
  }

  .container {
    width: min(calc(100% - 36px), var(--max));
  }

  .mobile-menu nav,
  .site-footer > .footer-intro,
  .site-footer > .footer-grid,
  .site-footer > .footer-bottom {
    width: min(calc(100% - 36px), var(--max));
  }

  .cursor-glow {
    display: none;
  }

  .display {
    font-size: clamp(40px, 12vw, 68px);
    line-height: 1.04;
    letter-spacing: -0.06em;
    overflow-wrap: anywhere;
  }

  .title {
    font-size: clamp(38px, 11vw, 60px);
    line-height: 1.03;
    overflow-wrap: anywhere;
  }

  .hero {
    min-height: 760px;
    padding-top: calc(var(--header) + 58px);
    padding-bottom: 34px;
  }

  .hero::after {
    top: 28%;
    right: -55%;
    width: 100vw;
  }

  .hero-orbit {
    top: 25%;
    right: -60%;
    width: 118vw;
  }

  .hero-bottom,
  .section-heading,
  .page-hero-meta,
  .service-hero-bottom,
  .contact-layout,
  .services-page-intro,
  .workflow-heading,
  .client-showcase-copy,
  .faq-layout,
  .faq-page-layout,
  .service-overview,
  .contact-hero .container {
    grid-template-columns: 1fr;
  }

  .section,
  .section-compact {
    padding: 58px 0;
  }

  .project-lightbox {
    padding: 10px;
    align-items: end;
  }

  .project-lightbox-card {
    max-height: calc(100vh - 20px);
    border-radius: 22px;
  }

  .project-lightbox-media {
    min-height: 240px;
  }

  .project-lightbox-copy {
    padding: 22px;
  }

  .project-lightbox-close {
    top: 10px;
    right: 10px;
  }

  .page-hero {
    padding: calc(var(--header) + 42px) 0 54px;
  }

  .hero-number {
    display: none;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .cta-primary {
    min-height: 48px;
  }

  .hero-scroll {
    display: none;
  }

  .section-heading {
    margin-bottom: 34px;
    gap: 22px;
  }

  .service-row {
    padding: 24px 0;
    grid-template-columns: 36px 1fr 38px;
    gap: 10px;
  }

  .service-row:hover {
    padding-inline: 12px;
  }

  .arrow-circle {
    width: 42px;
    height: 42px;
    font-size: 17px;
  }

  .project-grid,
  .all-projects-grid,
  .journal-grid,
  .related-projects,
  .service-groups,
  .service-card-grid,
  .package-grid,
  .workflow-grid,
  .service-process-grid {
    grid-template-columns: 1fr;
  }

  .manifesto-grid,
  .service-body,
  .about-story,
  .project-story,
  .footer-intro {
    grid-template-columns: 1fr;
  }

  .case-study-facts > div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .manifesto-copy {
    font-size: clamp(32px, 9vw, 48px);
    letter-spacing: -0.045em;
  }

  .project-card-cta {
    right: 12px;
    bottom: 12px;
    opacity: 1;
    transform: none;
  }

  .project-result {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .project-result strong {
    text-align: left;
  }

  .project-gallery-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .load-more-button {
    width: 100%;
    justify-content: space-between;
  }

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

  .stat {
    padding-bottom: 24px;
    border-bottom: 1px solid var(--line);
  }

  .logo-wall,
  .references-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .logo-item,
  .reference-card {
    min-height: 120px;
    padding: 20px;
  }

  .service-side,
  .post-sidebar,
  .faq-intro,
  .faq-page-layout > aside {
    position: static;
  }

  .post-reading-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .post-sidebar {
    order: 2;
  }

  .post-main {
    order: 1;
  }

  .post-sidebar-card,
  .post-suggest-card {
    padding: 18px;
  }

  .post-cover {
    border-radius: 18px;
  }

  .post-cover img {
    aspect-ratio: 16 / 10;
  }

  .post-content {
    font-size: 18px;
  }

  .post-section h2 {
    font-size: clamp(30px, 9vw, 42px);
  }

  .cookie-notice {
    right: 18px;
    bottom: 18px;
    width: calc(100% - 36px);
    align-items: stretch;
    flex-direction: column;
  }

  .cookie-notice button {
    width: 100%;
  }

  .service-group {
    min-height: 0;
    padding: 22px;
    grid-template-columns: 55px 1fr;
    gap: 14px;
  }

  .service-group-icon-art {
    width: 55px;
    height: 55px;
    border-radius: 17px;
  }

  .service-group-links {
    margin-top: 24px;
    grid-column: 1 / -1;
  }

  .service-card {
    min-height: 350px;
    padding: 22px;
  }

  .service-card-top {
    grid-template-columns: 34px 1fr 42px;
  }

  .service-closing-panel {
    min-height: 0;
    padding: 30px 22px;
    align-items: start;
    border-radius: 26px;
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .service-closing-panel::before {
    top: -190px;
    right: -240px;
    width: 480px;
    height: 480px;
  }

  .service-closing-panel::after {
    top: -40px;
    right: -90px;
    width: 220px;
    height: 220px;
  }

  .service-closing .title {
    font-size: clamp(36px, 10.5vw, 52px);
  }

  .service-closing-copy > p:last-child {
    margin-top: 20px;
  }

  .service-closing-action {
    width: 100%;
    min-height: 64px;
    aspect-ratio: auto;
    padding: 11px 12px 11px 20px;
    align-items: center;
    justify-self: stretch;
    border-radius: 999px;
    font-size: 20px;
  }

  .service-closing-action span br {
    display: none;
  }

  .service-closing-action b {
    width: 42px;
    height: 42px;
  }

  .related-services {
    margin-top: 50px;
  }

  .related-services-heading {
    margin-bottom: 24px;
    align-items: flex-start;
    flex-direction: column;
  }

  .related-services-heading .text-link {
    margin-top: 0;
  }

  .related-services-grid {
    grid-template-columns: 1fr;
  }

  .related-service-card,
  .related-service-card:last-child {
    min-height: 300px;
    grid-column: auto;
  }

  .service-card h3 {
    font-size: clamp(30px, 9.5vw, 43px);
  }

  .client-showcase {
    padding: 18px;
    border-radius: 24px;
  }

  .client-logo {
    min-height: 100px;
  }

  .faq-item summary {
    padding: 21px 0;
    grid-template-columns: 32px 1fr 30px;
    gap: 10px;
    font-size: 18px;
  }

  .faq-item > p {
    margin: -2px 0 22px 42px;
  }

  .workflow-step,
  .service-process-step {
    min-height: 210px;
  }

  .package-card {
    min-height: 300px;
  }

  .service-hero,
  .service-hero .container {
    min-height: 610px;
  }

  .service-hero .container {
    padding-top: calc(var(--header) + 44px);
    padding-bottom: 38px;
  }

  .service-hero .display {
    font-size: clamp(39px, 11vw, 60px);
  }

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

  .service-statement {
    padding: 24px;
  }

  .service-statement blockquote {
    margin: 44px 0;
  }

  .contact-hero {
    padding: calc(var(--header) + 42px) 0 52px;
  }

  .contact-hero .container {
    gap: 36px;
  }

  .contact-hero .display {
    font-size: clamp(43px, 12vw, 65px);
  }

  .contact-hero-card {
    transform: none;
  }

  .contact-hero-card p {
    margin-top: 36px;
  }

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

  .contact-card-map {
    min-height: 320px;
  }

  .contact-form-card {
    padding: 24px 20px;
  }

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

  .principle {
    min-height: 250px;
  }

  .principle h3 {
    margin-top: 34px;
  }

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

  .field.full {
    grid-column: auto;
  }

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

  .footer-intro-main > a span {
    right: auto;
  }

  .footer-grid > div:first-child,
  .footer-grid > div:last-child {
    grid-column: 1 / -1;
  }

  .footer-grid > div:last-child {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .footer-bottom {
    gap: 12px;
    flex-wrap: wrap;
  }

  .approach-panel,
  .about-graphic {
    grid-template-columns: 1fr;
  }

  .approach-panel {
    min-height: 0;
    border-radius: 26px;
  }

  .approach-visual {
    min-height: 250px;
  }

  .approach-content {
    padding: 28px 22px 32px;
  }

  .approach-tags {
    margin-top: 24px;
  }

  .expertise-count,
  .services-page-intro > p:last-child {
    min-height: 145px;
  }

  .expertise-count span {
    font-size: 68px;
  }

  .about-graphic {
    min-height: 650px;
    gap: 28px;
  }

  .about-graphic-orbit {
    width: min(78vw, 360px);
  }

  .about-graphic-copy {
    align-self: end;
  }

  .story-marker {
    min-height: 135px;
  }

  .reference-card img {
    width: min(88%, 150px);
    max-height: 78px;
  }

  .footer-intro {
    padding: 26px 22px;
    border-radius: 24px;
  }

  .footer-intro-main > a {
    align-items: center;
    font-size: clamp(50px, 15vw, 76px);
  }

  .footer-intro-main > a .footer-arrow {
    width: 54px;
    height: 54px;
  }

  .footer-arrow .arrow-icon {
    width: 25px;
    height: 25px;
  }
}

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

.client-logo,
.reference-card {
  overflow: hidden;
}

.client-logo img {
  width: min(88%, 145px);
  max-width: 145px;
  max-height: 72px;
  transform: scale(var(--logo-scale, 1.15));
  transition: transform 0.25s ease;
}

.client-logo:hover img {
  transform: scale(calc(var(--logo-scale, 1.15) + 0.05));
}

.reference-card img {
  width: min(90%, 210px);
  max-width: 210px;
  max-height: 110px;
  transform: scale(var(--logo-scale, 1.15));
  transition: transform 0.25s ease;
}

.reference-card:hover img {
  transform: scale(calc(var(--logo-scale, 1.15) + 0.05));
}

@media (max-width: 760px) {
  .client-logo,
  .reference-card {
    min-height: 136px;
    padding: 28px 22px;
  }

  .client-logo img,
  .reference-card img {
    width: min(82%, 180px);
    max-width: calc(100% - 16px);
    max-height: 78px;
    object-fit: contain;
    transform: scale(clamp(0.8, var(--logo-scale, 1.15), 1.35));
  }

  .client-logo:hover img,
  .reference-card:hover img {
    transform: scale(clamp(0.85, calc(var(--logo-scale, 1.15) + 0.04), 1.4));
  }
}

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

.partner-section.compact {
  background: var(--blue);
}

.partner-heading {
  display: grid;
  margin-bottom: 45px;
  align-items: end;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.75fr);
  gap: 40px;
}

.partner-heading .eyebrow {
  color: var(--lime);
}

.partner-heading .title {
  margin-bottom: 0;
}

.partner-heading .subtitle {
  color: rgba(255, 255, 255, 0.58);
}

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

.partner-card {
  display: grid;
  min-height: 410px;
  padding: clamp(24px, 3vw, 42px);
  color: var(--ink);
  background: var(--paper);
  border-radius: 28px;
  grid-template-rows: auto 1fr auto;
  transition: transform 0.25s ease, background 0.25s ease;
}

.partner-card:hover {
  background: var(--white);
  transform: translateY(-5px);
}

.partner-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.partner-card-top span {
  color: var(--blue);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.partner-card-top b {
  display: grid;
  width: 44px;
  height: 44px;
  color: var(--white);
  background: var(--blue);
  border-radius: 50%;
  place-items: center;
}

.partner-logo {
  display: grid;
  min-height: 145px;
  padding: 25px 0;
  align-items: center;
}

.partner-logo img {
  width: min(70%, 280px);
  max-height: 105px;
  object-fit: contain;
  object-position: left center;
}

.partner-copy small {
  color: var(--blue);
  font-size: 11px;
}

.partner-copy h3 {
  margin: 10px 0 12px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(28px, 3vw, 43px);
  font-weight: 600;
  letter-spacing: -0.055em;
}

.partner-copy p {
  max-width: 590px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.footer-partner-label {
  margin-top: 14px;
  color: var(--lime) !important;
  font-size: 10px !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 760px) {
  .partner-heading,
  .partner-grid {
    grid-template-columns: 1fr;
  }

  .partner-heading {
    margin-bottom: 28px;
    gap: 20px;
  }

  .partner-card {
    min-height: 350px;
    border-radius: 22px;
  }

  .partner-logo {
    min-height: 120px;
  }

  .partner-logo img {
    width: min(82%, 240px);
  }
}
