:root {
  --bg: #f3f3f1;
  --paper: #fbfbf8;
  --ink: #171717;
  --muted: #6e6e69;
  --line: #d9d9d3;
  --blue: #075bff;
  --blue-dark: #003fc2;
  --soft-blue: #e8efff;
  --radius: 30px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  background: #fff;
  color: var(--ink);
  font-family: "Inter", system-ui, sans-serif;
  overflow-x: clip;
}

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

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

.side-statement {
  position: fixed;
  top: 48%;
  right: clamp(34px, 5.8vw, 112px);
  z-index: 7;
  display: none;
  width: clamp(174px, 11vw, 198px);
  min-height: 132px;
  padding: clamp(13px, 0.92vw, 17px);
  border-left: 3px solid var(--blue);
  border-radius: 0 22px 22px 0;
  background: rgba(251, 251, 248, 0.72);
  box-shadow:
    0 22px 58px rgba(23, 23, 23, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.66);
  backdrop-filter: blur(20px) saturate(118%);
  transform: translateY(-50%);
  pointer-events: none;
}

.side-statement span {
  display: block;
  max-width: 15ch;
  margin-bottom: 9px;
  color: var(--blue);
  font-family: "Oswald", "Inter", sans-serif;
  font-size: clamp(0.94rem, 0.82vw, 1.12rem);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: 0;
  text-transform: uppercase;
}

.side-statement p {
  max-width: 23ch;
  margin: 0;
  color: #3f3f3b;
  font-size: clamp(0.64rem, 0.52vw, 0.72rem);
  font-weight: 500;
  line-height: 1.46;
}

@media (min-width: 1280px) {
  .side-statement {
    display: block;
  }
}

.inline-statement span {
  display: block;
  margin-bottom: 12px;
  color: var(--blue);
  font-family: "Oswald", "Inter", sans-serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 0.98;
  text-transform: uppercase;
}

.inline-statement p {
  margin: 0;
  color: #3f3f3b;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.45;
}

.inline-statement {
  display: block;
  grid-column: 1 / -1;
  padding: 22px 24px;
  border-radius: 24px;
  background: var(--soft-blue);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 22px clamp(18px, 4vw, 54px);
  background: rgba(251, 251, 248, 0.82);
  border-bottom: 1px solid rgba(23, 23, 23, 0.08);
  backdrop-filter: blur(18px);
}

.logo,
.top-link,
.nav a {
  font-size: 14px;
  font-weight: 500;
  transition: color 260ms var(--ease), transform 260ms var(--ease);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 3vw, 42px);
  color: #3a3a36;
}

.top-link {
  justify-self: end;
  color: var(--blue);
}

.topbar-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 28px);
  min-width: 0;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(23, 23, 23, 0.42);
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}

.language-switcher a {
  color: inherit;
  transition: color 260ms var(--ease), opacity 260ms var(--ease);
}

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

.language-switcher a.is-active {
  color: var(--blue);
}

.language-switcher span {
  color: rgba(23, 23, 23, 0.2);
}

.nav a:hover,
.top-link:hover {
  color: var(--blue);
  transform: translateY(-1px);
}

.section {
  position: relative;
  width: min(1200px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(72px, 10vw, 140px) 0;
}

.hero {
  min-height: calc(100dvh - 68px);
  padding: clamp(32px, 5vw, 72px) clamp(18px, 4vw, 54px) clamp(60px, 8vw, 96px);
}

.hero-inner {
  min-height: calc(100dvh - 150px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.72fr);
  align-items: end;
  gap: clamp(28px, 5vw, 74px);
}

.hero-subtitle,
.small-label {
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 15px;
  font-weight: 500;
}

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

h1,
h2 {
  font-family: "Oswald", "Inter", sans-serif;
  font-weight: 500;
  letter-spacing: -0.015em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  max-width: min(820px, 100%);
  font-size: clamp(4.6rem, 12vw, 10rem);
  line-height: 0.94;
  text-wrap: balance;
}

h1 span {
  display: block;
}

.accent-word {
  color: var(--blue);
}

.hero-bottom {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: start;
  gap: clamp(20px, 2.4vw, 34px);
  margin-top: clamp(34px, 6vw, 72px);
  max-width: 620px;
}

.hero-bottom p,
.intro p,
.service-copy p,
.contact-text p {
  color: var(--muted);
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.5;
}

.button {
  display: inline-flex;
  width: max-content;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 28px;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 300ms var(--ease), background 300ms var(--ease), color 300ms var(--ease);
}

.button:hover {
  transform: translateY(-2px);
}

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

.button.blue:hover {
  background: var(--blue-dark);
}

.button.outline {
  border: 1px solid var(--ink);
}

.button.outline:hover {
  background: var(--ink);
  color: #fff;
}

.hero-photo {
  position: relative;
  z-index: 2;
  overflow: hidden;
  background: var(--paper);
  box-shadow: none;
}

.hero-photo img {
  height: min(720px, 76vh);
  min-height: 500px;
  object-fit: cover;
  object-position: center;
}

.intro {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 90px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.intro-title {
  display: grid;
  gap: 10px;
  font-family: "Oswald", sans-serif;
  font-size: clamp(2.2rem, 5vw, 5rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.intro-title span:nth-child(2) {
  color: var(--blue);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(140px, 0.35fr) 1fr;
  align-items: end;
  gap: 24px;
  margin-bottom: clamp(34px, 6vw, 72px);
}

.section-head h2,
.portfolio-title h2,
.contact h2 {
  margin: 0;
  font-size: clamp(4rem, 12vw, 12rem);
  line-height: 0.82;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.process-card {
  min-height: 290px;
  padding: 30px;
  border-radius: var(--radius);
  background: var(--paper);
}

.process-card:nth-child(even) {
  background: var(--soft-blue);
}

.process-card h3,
.service-item h3 {
  margin-bottom: 18px;
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.7rem, 3vw, 3rem);
  font-weight: 500;
  line-height: 0.96;
  text-transform: uppercase;
}

.process-card p,
.service-item p,
.work-task,
.work-description {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.portfolio {
  width: min(1320px, calc(100% - 36px));
}

.portfolio-title {
  position: relative;
  margin-bottom: clamp(38px, 7vw, 86px);
}

.portfolio-title span {
  color: var(--blue);
  font-size: 16px;
}

.portfolio-title strong {
  position: absolute;
  right: 0;
  bottom: 0.05em;
  color: rgba(7, 91, 255, 0.12);
  font-family: "Oswald", sans-serif;
  font-size: clamp(4rem, 14vw, 12rem);
  font-weight: 500;
  line-height: 0.8;
  text-transform: uppercase;
  pointer-events: none;
}

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

.work-row {
  position: relative;
  display: grid;
  grid-template-columns: minmax(180px, 0.45fr) minmax(260px, 0.95fr) minmax(260px, 0.72fr) auto;
  align-items: center;
  gap: clamp(18px, 4vw, 52px);
  min-height: 176px;
  padding: clamp(22px, 3vw, 36px);
  border-radius: 28px;
  background: var(--paper);
  overflow: hidden;
  transition: transform 360ms var(--ease), background 360ms var(--ease), color 360ms var(--ease);
}

.work-row::before {
  content: "";
  position: absolute;
  inset: auto auto -44px -34px;
  width: 180px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(7, 91, 255, 0.1);
  transition: transform 420ms var(--ease), background 420ms var(--ease);
}

.work-row:hover {
  transform: translateY(-5px);
  background: #fff;
}

.work-row:hover::before {
  transform: scale(1.7);
  background: rgba(7, 91, 255, 0.17);
}

.work-task,
.work-title,
.work-description,
.work-open {
  position: relative;
  z-index: 1;
}

.work-task b {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-weight: 600;
}

.work-title {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-size: clamp(2rem, 4vw, 4.8rem);
  font-weight: 500;
  line-height: 0.94;
  text-transform: uppercase;
}

.work-open {
  justify-self: end;
  display: grid;
  place-items: center;
  width: 118px;
  aspect-ratio: 1;
  border: 1px solid var(--ink);
  border-radius: 50%;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  transition: background 300ms var(--ease), color 300ms var(--ease), border-color 300ms var(--ease);
}

.work-row:hover .work-open {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}

.services-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) 1fr;
  gap: clamp(30px, 6vw, 84px);
}

.service-copy {
  position: sticky;
  top: 110px;
  height: max-content;
}

.service-copy .button {
  margin-top: 28px;
}

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

.service-item {
  display: grid;
  grid-template-columns: 64px 1fr minmax(220px, 0.55fr);
  gap: 24px;
  align-items: start;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

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

.service-item span {
  color: var(--blue);
  font-weight: 700;
}

.photos {
  display: grid;
  grid-template-columns: 1fr 0.72fr 0.72fr;
  gap: 18px;
  align-items: end;
}

.photo-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--paper);
}

.photo-card img {
  height: 520px;
  object-fit: cover;
  object-position: center;
  transition: transform 700ms var(--ease);
}

.photo-card:hover img {
  transform: scale(1.035);
}

.photo-card.wide img {
  height: 620px;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.45fr);
  gap: clamp(30px, 7vw, 90px);
  align-items: end;
  border-top: 1px solid var(--line);
}

.contact-links {
  display: grid;
  gap: 12px;
}

.contact-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--paper);
  font-weight: 600;
  transition: background 300ms var(--ease), color 300ms var(--ease), transform 300ms var(--ease);
}

.contact-links a::after {
  content: "↗";
  color: var(--blue);
}

.contact-links a:hover {
  transform: translateY(-2px);
  background: var(--blue);
  color: #fff;
}

.contact-links a:hover::after {
  color: #fff;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 4vw, 54px) 44px;
  color: var(--muted);
  font-size: 14px;
}

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

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

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

@media (max-width: 1020px) {
  .topbar {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

  .hero-inner,
  .intro,
  .services-layout,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    align-items: start;
  }

  .hero-photo img {
    height: 620px;
  }

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

  .work-row {
    grid-template-columns: 1fr;
  }

  .work-open {
    justify-self: start;
    width: auto;
    aspect-ratio: auto;
    min-height: 52px;
    padding: 0 24px;
    border-radius: 999px;
  }

  .service-copy {
    position: static;
  }

  .service-item {
    grid-template-columns: 44px 1fr;
  }

  .service-item p {
    grid-column: 2;
  }
}

@media (max-width: 640px) {
  .topbar {
    padding: 18px;
  }

  .section {
    width: min(100% - 28px, 1200px);
    padding: 74px 0;
  }

  .hero {
    padding: 30px 14px 64px;
  }

  .hero-inner,
  .hero-bottom,
  .process-grid,
  .photos {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: clamp(4.2rem, 21vw, 7.6rem);
  }

  .section-head {
    grid-template-columns: 1fr;
  }

  .section-head h2,
  .portfolio-title h2,
  .contact h2 {
    font-size: clamp(3.5rem, 20vw, 7.2rem);
  }

  .portfolio-title strong {
    position: static;
    display: block;
    margin-top: -8px;
  }

  .hero-photo img,
  .photo-card img,
  .photo-card.wide img {
    height: 430px;
  }

  .work-row {
    padding: 24px;
  }
}

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

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Process section */
.process {
  width: min(var(--grid-max), calc(100% - 56px));
  overflow: visible;
}

.process-heading {
  margin-bottom: clamp(48px, 6vw, 80px);
}

.process-heading h2 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 0;
  font-family: "Oswald", "Inter", sans-serif;
  font-size: clamp(4rem, 8vw, 6rem);
  font-weight: 600;
  line-height: 0.94;
  letter-spacing: 0;
  text-transform: uppercase;
}

.process-heading h2 span:first-child {
  color: var(--ink);
}

.process-heading h2 span:last-child {
  color: var(--blue);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: clamp(14px, 1.5vw, 24px);
  align-items: stretch;
}

.process-card,
.process-card:nth-child(1),
.process-card:nth-child(2),
.process-card:nth-child(3),
.process-card:nth-child(4) {
  grid-column: auto;
  display: grid;
  grid-template-rows: auto 1fr;
  align-content: start;
  min-width: 0;
  min-height: clamp(290px, 23vw, 340px);
  padding: clamp(24px, 2.2vw, 34px);
  border-radius: 8px;
  box-shadow: none;
}

.process-card:nth-child(1),
.process-card:nth-child(3) {
  background: #f3f3f1;
  color: var(--ink);
}

.process-card:nth-child(2) {
  background: var(--blue);
  color: #fff;
}

.process-card:nth-child(4) {
  background: var(--ink);
  color: #fff;
}

.process-card h3,
.process-card:nth-child(1) h3,
.process-card:nth-child(2) h3,
.process-card:nth-child(3) h3,
.process-card:nth-child(4) h3 {
  min-height: 2.35em;
  margin: 0 0 24px;
  color: inherit;
  font-family: "Oswald", "Inter", sans-serif;
  font-size: clamp(1.35rem, 1.65vw, 1.75rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: 0;
  text-wrap: balance;
  text-transform: uppercase;
}

.process-card p,
.process-card:nth-child(1) p,
.process-card:nth-child(3) p {
  max-width: 32ch;
  margin: 0;
  color: #5d5d5d;
  font-size: clamp(14px, 1.05vw, 16px);
  line-height: 1.55;
  text-wrap: pretty;
}

.process-card:nth-child(2) p,
.process-card:nth-child(4) p {
  color: rgba(255, 255, 255, 0.84);
}

.js .process-card.reveal {
  transform: translateY(20px);
  transition:
    opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.js .process-card.reveal.is-visible {
  transform: translateY(0);
}

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

  .process-card,
  .process-card:nth-child(1),
  .process-card:nth-child(2),
  .process-card:nth-child(3),
  .process-card:nth-child(4) {
    min-height: 300px;
  }
}

@media (max-width: 640px) {
  .process {
    width: min(100% - 28px, 1200px);
  }

  .process-heading {
    margin-bottom: 44px;
  }

  .process-heading h2 {
    font-size: clamp(3.5rem, 18vw, 5rem);
    line-height: 0.96;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .process-card,
  .process-card:nth-child(1),
  .process-card:nth-child(2),
  .process-card:nth-child(3),
  .process-card:nth-child(4) {
    min-height: 260px;
    padding: 26px;
  }

  .process-card h3,
  .process-card:nth-child(1) h3,
  .process-card:nth-child(2) h3,
  .process-card:nth-child(3) h3,
  .process-card:nth-child(4) h3 {
    min-height: 0;
    margin-bottom: 20px;
    font-size: 1.55rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .js .process-card.reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Editorial composition pass */
:root {
  --grid-max: 1360px;
  --section-gap: clamp(112px, 14vw, 192px);
}

body {
  background: #fff;
}

h1,
h2 {
  letter-spacing: -0.032em;
}

h1 {
  max-width: 9.4ch;
  font-size: clamp(4.9rem, 11.2vw, 10.8rem);
  line-height: 0.92;
}

.section {
  width: min(var(--grid-max), calc(100% - 56px));
  padding-top: var(--section-gap);
  padding-bottom: var(--section-gap);
}

.inline-statement {
  background: var(--blue);
  color: #fff;
}

.inline-statement span,
.inline-statement p {
  color: #fff;
}

.section-blue-mark {
  display: none;
}

.photo-editorial-label {
  padding: 28px;
  border-radius: 28px;
  background: var(--blue);
  color: #fff;
  font-family: "Oswald", sans-serif;
  font-size: clamp(3rem, 10vw, 6rem);
  line-height: 0.88;
  text-transform: uppercase;
}

.photo-editorial-label span {
  display: block;
}

@media (min-width: 1021px) {
  .topbar {
    padding-inline: clamp(36px, 4vw, 72px);
  }

  .logo {
    position: relative;
    left: calc(max(28px, (100vw - var(--grid-max)) / 2) - clamp(36px, 4vw, 72px));
  }

  .hero {
    min-height: calc(100dvh - 68px);
    padding: clamp(70px, 7vw, 112px) clamp(36px, 5vw, 72px) clamp(96px, 10vw, 148px);
  }

  .hero-inner {
    position: relative;
    width: min(1500px, 100%);
    min-height: calc(100dvh - 210px);
    margin-inline: auto;
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    align-items: end;
    gap: clamp(24px, 3vw, 48px);
  }

  .hero-copy {
    position: relative;
    z-index: 4;
    grid-column: 1 / 8;
    grid-row: 1;
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-bottom: clamp(18px, 3vh, 42px);
  }

  .hero-copy h1 {
    font-size: clamp(4.55rem, 5.55vw, 6.65rem);
    line-height: 1.04;
  }

  .hero-copy h1 span {
    white-space: nowrap;
  }

  .hero-photo {
    z-index: 2;
    grid-column: 8 / -1;
    grid-row: 1;
    align-self: end;
    justify-self: end;
    width: min(100%, 560px);
    height: clamp(580px, 72vh, 760px);
    border-radius: 0;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%, 0 16%);
  }

  .hero-photo img {
    height: 100%;
    min-height: 0;
    object-position: center;
  }

  .hero-blue-panel {
    position: absolute;
    z-index: 1;
    left: calc(50% - 50vw);
    right: calc(50% - 50vw);
    bottom: calc(clamp(38px, 4vw, 70px) * -1);
    height: clamp(360px, 42vh, 500px);
    border-radius: 0;
    background: var(--blue);
    transform: none;
  }

  .hero-bottom {
    max-width: min(590px, 100%);
    margin-top: clamp(64px, 9vh, 120px);
  }

  .hero-bottom p {
    max-width: 54ch;
    color: #fff;
  }

  .hero .button.blue {
    background: #fff;
    color: var(--blue);
  }

  .hero .button.blue:hover {
    background: var(--ink);
    color: #fff;
  }

  .intro,
  .section-head,
  .services-layout,
  .contact,
  .photos {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: clamp(18px, 2.1vw, 34px);
  }

  .intro {
    padding-top: clamp(90px, 11vw, 150px);
    padding-bottom: clamp(100px, 12vw, 170px);
  }

  .inline-statement {
    grid-column: 1 / 5;
    align-self: start;
    padding: clamp(26px, 3vw, 42px);
    border-radius: 30px;
  }

  .inline-statement span {
    font-size: clamp(1.8rem, 2.6vw, 3.4rem);
  }

  .inline-statement p {
    font-size: 15px;
  }

  .intro-title {
    grid-column: 5 / 9;
    align-self: end;
  }

  .intro > p {
    grid-column: 9 / -1;
    align-self: end;
    max-width: 520px;
  }

  .section-head {
    margin-bottom: clamp(54px, 7vw, 100px);
  }

  .section-head .small-label {
    grid-column: 1 / 3;
  }

  .section-head h2,
  .portfolio-title h2,
  .contact h2 {
    grid-column: 4 / -1;
    font-size: clamp(4.6rem, 9.4vw, 10.6rem);
    line-height: 0.9;
  }

  .section-blue-mark {
    position: absolute;
    display: block;
    top: clamp(72px, 8vw, 126px);
    right: 0;
    width: clamp(104px, 11vw, 190px);
    height: clamp(104px, 11vw, 190px);
    border-radius: 30px;
    background: var(--blue);
    transform: translateX(42%) rotate(-4deg);
    pointer-events: none;
  }

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

  .process-card {
    min-height: 320px;
    padding: clamp(30px, 3vw, 46px);
    border-radius: 30px;
  }

  .process-card:nth-child(1) {
    grid-column: 1 / 6;
  }

  .process-card:nth-child(2) {
    grid-column: 6 / -1;
    background: var(--blue);
    color: #fff;
  }

  .process-card:nth-child(3) {
    grid-column: 1 / 8;
  }

  .process-card:nth-child(4) {
    grid-column: 8 / -1;
    background: var(--ink);
    color: #fff;
  }

  .process-card:nth-child(2) p,
  .process-card:nth-child(4) p {
    color: rgba(255, 255, 255, 0.78);
  }

  .portfolio {
    width: min(1450px, calc(100% - 56px));
  }

  .portfolio-title {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: clamp(18px, 2vw, 30px);
    margin-bottom: clamp(64px, 8vw, 118px);
  }

  .portfolio-title span {
    grid-column: 1 / -1;
  }

  .portfolio-title h2 {
    grid-column: 1 / 9;
  }

  .portfolio-title strong {
    position: relative;
    right: auto;
    bottom: auto;
    z-index: 1;
    grid-column: 8 / -1;
    align-self: end;
    justify-self: end;
    max-width: 5.2ch;
    padding: clamp(28px, 4vw, 54px);
    border-radius: 30px;
    background: var(--blue);
    color: #fff;
    font-size: clamp(3.4rem, 7.8vw, 8.8rem);
    line-height: 0.86;
  }

  .work-list {
    gap: 0;
  }

  .work-row {
    min-height: 202px;
    padding: clamp(30px, 3.4vw, 48px);
    border-top: 1px solid var(--line);
    border-radius: 0;
    background: transparent;
    gap: clamp(18px, 3vw, 46px);
  }

  .work-row:last-child {
    border-bottom: 1px solid var(--line);
  }

  .work-row:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.58);
  }

  .work-title {
    font-size: clamp(2.4rem, 4.6vw, 5.6rem);
    line-height: 0.92;
  }

  .service-copy {
    grid-column: 1 / 6;
    padding: clamp(34px, 4vw, 60px);
    border-radius: 30px;
    background: var(--blue);
    color: #fff;
  }

  .service-copy p {
    color: rgba(255, 255, 255, 0.84);
  }

  .service-copy .button.outline {
    border-color: #fff;
    color: #fff;
  }

  .service-copy .button.outline:hover {
    background: #fff;
    color: var(--blue);
  }

  .service-list {
    grid-column: 7 / -1;
  }

  .photo-editorial-label {
    grid-column: 1 / 5;
    align-self: end;
    padding: clamp(30px, 4vw, 58px);
    border-radius: 30px;
    background: var(--blue);
    color: #fff;
    font-family: "Oswald", sans-serif;
    font-size: clamp(3.1rem, 6.6vw, 7.4rem);
    line-height: 0.86;
    text-transform: uppercase;
  }

  .photo-editorial-label span {
    display: block;
  }

  .photo-card.wide {
    grid-column: 5 / 9;
  }

  .photo-card:nth-of-type(2) {
    grid-column: 9 / -1;
  }

  .photo-card:nth-of-type(3) {
    grid-column: 1 / -1;
  }

  .photo-card img,
  .photo-card.wide img {
    height: 580px;
  }

  .photo-card:nth-of-type(3) img {
    height: 760px;
    object-position: center 35%;
  }

  .contact-text {
    grid-column: 1 / 9;
  }

  .contact-links {
    grid-column: 9 / -1;
  }
}

@media (min-width: 1021px) and (max-width: 1200px) {
  .hero-copy h1 {
    font-size: clamp(3.7rem, 5vw, 4.6rem);
  }

  .hero-photo {
    width: min(100%, 420px);
  }

  .hero-bottom p {
    max-width: 50ch;
    font-size: clamp(18px, 1.8vw, 20px);
  }
}

@media (max-width: 1020px) {
  .hero-blue-panel,
  .section-blue-mark {
    display: none;
  }

  h1 {
    line-height: 0.96;
  }
}

@media (max-width: 640px) {
  .topbar {
    grid-template-columns: 1fr;
  }

  .nav {
    display: none;
  }

  .top-link {
    display: none;
  }

  .section {
    width: min(100% - 28px, 1200px);
    padding-top: 86px;
    padding-bottom: 96px;
  }

  h1 {
    font-size: clamp(2.9rem, 12vw, 4.2rem);
    line-height: 0.95;
  }

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

  .hero-bottom p {
    width: auto;
    max-width: 34ch;
    font-size: clamp(15.5px, 4.2vw, 17px);
    line-height: 1.45;
  }

  .inline-statement {
    padding: 24px;
    border-radius: 24px;
  }
}

/* Hero: architectural editorial cover */
.topbar {
  position: fixed;
  inset: 0 0 auto;
  width: 100%;
  background: rgba(251, 251, 248, 0.62);
  border-bottom-color: rgba(23, 23, 23, 0.1);
  backdrop-filter: blur(22px) saturate(112%);
}

.hero {
  position: relative;
  min-height: min(100svh, 980px);
  padding: 0;
  overflow: hidden;
  background: #fff;
}

.hero-inner {
  position: relative;
  width: 100%;
  min-height: min(100svh, 980px);
  margin: 0;
}

.hero-blue-panel {
  position: absolute;
  z-index: 1;
  inset: auto 0 0;
  width: 100%;
  height: clamp(260px, 36vh, 380px);
  background: var(--blue);
  border-radius: 0;
  transform: none;
}

.hero-copy {
  position: relative;
  z-index: 3;
}

.hero-photo {
  position: absolute;
  z-index: 2;
  inset: 0 0 0 auto;
  width: clamp(420px, 43vw, 760px);
  height: 100%;
  border-radius: 0;
  clip-path: none;
  background: #d9dde4;
  overflow: clip;
  contain: paint;
}

.hero-photo :is(img, video) {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: 50% 40%;
  filter: saturate(0.28) contrast(0.98) brightness(1.03) hue-rotate(5deg);
  transform: none;
}

@media (min-width: 1021px) {
  .hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) clamp(420px, 43vw, 760px);
    align-items: stretch;
    gap: 0;
  }

  .hero-copy {
    grid-column: 1;
    min-width: 0;
    padding-top: clamp(124px, 15vh, 166px);
    padding-right: clamp(40px, 5vw, 76px);
    padding-bottom: clamp(20px, 3vh, 32px);
    padding-left: max(28px, calc((100vw - var(--grid-max)) / 2));
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .hero-photo :is(img, video) {
    height: 132%;
    object-position: 50% 0;
  }

  .hero-copy h1 {
    max-width: 100%;
    font-size: clamp(4.2rem, 5.55vw, 6.65rem);
    line-height: 1.1;
    letter-spacing: -0.028em;
  }

  .hero-copy h1 span {
    white-space: nowrap;
  }

  .hero-subtitle {
    margin-bottom: clamp(26px, 4vh, 44px);
  }

  .hero-bottom {
    position: relative;
    z-index: 2;
    max-width: 60ch;
    margin-top: clamp(58px, 8vh, 96px);
    padding-top: clamp(12px, 1.4vh, 20px);
    gap: 24px;
  }

  .hero-bottom p {
    max-width: 58ch;
    margin: 0;
    color: #fff;
    font-size: clamp(16px, 1.18vw, 19px);
    line-height: 1.55;
  }

  .hero-description span,
  .audit-value span {
    display: block;
  }

  .hero .button.blue {
    background: #fff;
    color: var(--blue);
  }

  .hero .button.blue:hover {
    background: var(--ink);
    color: #fff;
  }
}

@media (min-width: 1021px) and (max-width: 1200px) {
  .hero-copy h1 {
    font-size: clamp(3.55rem, 5.1vw, 4.45rem);
  }

  .hero-copy {
    padding-right: clamp(32px, 4vw, 48px);
  }
}

@media (max-width: 1020px) {
  .topbar {
    background: rgba(251, 251, 248, 0.72);
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    display: flex;
    flex-direction: column;
    min-height: 0;
  }

  .hero-copy {
    order: 1;
    width: 100%;
    padding: 112px 28px 54px;
  }

  .hero-copy h1 {
    max-width: 9.6ch;
    line-height: 1.02;
  }

  .hero-copy h1 span {
    white-space: normal;
  }

  .hero-bottom {
    margin-top: 42px;
  }

  .hero-bottom p {
    color: var(--muted);
  }

  .hero-photo {
    position: relative;
    order: 2;
    inset: auto;
    width: 100%;
    height: min(72svh, 720px);
    min-height: 520px;
  }

  .hero-photo :is(img, video) {
    object-position: 50% 35%;
    transform: scale(1.04);
  }

  .hero-blue-panel {
    display: block;
    z-index: 1;
    height: 176px;
  }
}

@media (max-width: 640px) {
  .hero-copy {
    padding: 96px 14px 46px;
  }

  .hero-copy h1 {
    max-width: 100%;
    font-size: clamp(3.15rem, 14.5vw, 4.5rem);
    line-height: 1.03;
  }

  .hero-subtitle {
    max-width: 28ch;
    margin-bottom: 24px;
    font-size: 13px;
    line-height: 1.35;
  }

  .hero-bottom {
    margin-top: 34px;
    gap: 22px;
  }

  .hero-photo {
    height: 66svh;
    min-height: 470px;
  }

  .hero-photo :is(img, video) {
    object-position: 50% 30%;
    transform: scale(1.06);
  }

  .hero-blue-panel {
    height: 132px;
  }
}

/* Credibility section */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.credibility {
  width: min(1600px, calc(100% - 56px));
  padding-top: clamp(112px, 12vw, 176px);
  padding-bottom: clamp(64px, 6vw, 88px);
}

.credibility-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 48px);
  align-items: start;
}

.metric {
  min-width: 0;
}

.metric-value {
  display: flex;
  align-items: flex-end;
  height: clamp(5.2rem, 7.28vw, 8.32rem);
  margin: 0;
  color: var(--ink);
  font-family: "Oswald", "Inter", sans-serif;
  font-size: clamp(5rem, 7vw, 8rem);
  font-variant-numeric: tabular-nums;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}

.metric-investments .metric-value {
  font-size: clamp(4.2rem, 6vw, 6.5rem);
}

.odometer-slot {
  display: inline-block;
  width: 0.56em;
  height: 1.04em;
  overflow: hidden;
  line-height: 1;
  vertical-align: top;
}

.odometer-reel {
  display: flex;
  flex-direction: column;
  transform: translateY(0);
  transition:
    transform var(--odometer-duration, 1000ms) cubic-bezier(0.76, 0, 0.24, 1)
    var(--odometer-delay, 0ms);
  will-change: transform;
}

.odometer-reel > span {
  flex: 0 0 1em;
  height: 1em;
  line-height: 1;
}

.credibility.is-animating .odometer-reel {
  transform: translateY(calc(var(--odometer-steps) * -1em));
}

.metric-affix {
  color: var(--blue);
  font-size: 0.46em;
  line-height: 1;
  opacity: 0;
  transition: opacity 220ms var(--ease) var(--metric-start, 0ms);
}

.credibility.is-animating .metric-affix {
  opacity: 1;
}

.metric-prefix {
  align-self: flex-end;
  margin-bottom: 0.54em;
  margin-right: 0.04em;
}

.metric-suffix {
  align-self: flex-end;
  margin-bottom: 0.08em;
  margin-left: 0.05em;
}

.metric-label {
  max-width: 18ch;
  margin: clamp(22px, 2.3vw, 34px) 0 0;
  color: var(--muted);
  font-size: clamp(14px, 1.1vw, 17px);
  font-weight: 500;
  line-height: 1.3;
  text-wrap: balance;
}

.metric-label-split span {
  display: block;
}

.credentials-marquee {
  width: 100%;
  height: clamp(70px, 5.7vw, 88px);
  overflow: hidden;
  background: var(--blue);
  color: #fff;
}

.credentials-marquee-track {
  display: flex;
  width: max-content;
  height: 100%;
  animation: credentials-marquee var(--credentials-marquee-duration, 34s) linear infinite;
  will-change: transform;
}

.credentials-marquee-group {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  min-width: max-content;
}

.credentials-marquee-group span {
  display: block;
  color: inherit;
  font-family: "Oswald", "Inter", sans-serif;
  font-size: clamp(1.3rem, 2vw, 1.9rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}

html[data-language="en"] .audit-subheading {
  max-width: 30ch;
  margin-bottom: clamp(22px, 1.8vw, 28px);
}

html[data-language="en"] .audit-value {
  max-width: 46ch;
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.42;
}

html[data-language="en"] .audit-value span {
  display: inline;
}

html[data-language="en"] .audit-value span + span::before {
  content: " ";
}

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

@media (max-width: 1020px) {
  .credibility-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: clamp(64px, 9vw, 96px);
  }

  .metric-value,
  .metric-investments .metric-value {
    height: clamp(5.4rem, 15.6vw, 8.32rem);
    font-size: clamp(5.2rem, 15vw, 8rem);
  }
}

@media (max-width: 640px) {
  .credibility {
    width: min(100% - 28px, 1200px);
    padding-top: 88px;
    padding-bottom: 64px;
  }

  .credibility-metrics {
    gap: 58px 14px;
  }

  .metric-value,
  .metric-investments .metric-value {
    height: clamp(3.75rem, 17.7vw, 5rem);
    font-size: clamp(3.6rem, 17vw, 4.8rem);
  }

  .metric-investments .metric-value {
    font-size: clamp(3.15rem, 15vw, 4.15rem);
  }

  .metric-label {
    max-width: 15ch;
    margin-top: 18px;
    font-size: 13px;
  }

  .credentials-marquee {
    height: 72px;
  }

  .credentials-marquee-group span {
    font-size: 1.3rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .odometer-reel {
    transition: none;
  }

  .metric-affix {
    transition-duration: 0.01ms;
  }

  .credentials-marquee-track {
    animation: none;
    transform: none;
  }
}

/* Final process grid overrides */
.process-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: clamp(14px, 1.5vw, 24px);
}

.process-card,
.process-card:nth-child(1),
.process-card:nth-child(2),
.process-card:nth-child(3),
.process-card:nth-child(4) {
  grid-column: auto;
  min-height: clamp(290px, 23vw, 340px);
  padding: clamp(24px, 2.2vw, 34px);
  border-radius: 8px;
}

.process-card:nth-child(1),
.process-card:nth-child(3) {
  background: #f3f3f1;
  color: var(--ink);
}

.process-card:nth-child(2) {
  background: var(--blue);
  color: #fff;
}

.process-card:nth-child(4) {
  background: var(--ink);
  color: #fff;
}

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

@media (max-width: 640px) {
  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-card,
  .process-card:nth-child(1),
  .process-card:nth-child(2),
  .process-card:nth-child(3),
  .process-card:nth-child(4) {
    min-height: 260px;
    padding: 26px;
  }
}

/* Portfolio section */
.process {
  padding-bottom: clamp(52px, 6vw, 80px);
}

.portfolio {
  width: min(var(--grid-max), calc(100% - 56px));
  padding-top: clamp(56px, 7vw, 96px);
}

.portfolio-heading {
  margin-bottom: clamp(48px, 6vw, 80px);
}

.portfolio-heading h2 {
  display: flex;
  align-items: baseline;
  margin: 0;
  font-family: "Oswald", "Inter", sans-serif;
  font-size: clamp(4rem, 8vw, 6rem);
  font-weight: 600;
  line-height: 0.94;
  letter-spacing: 0;
  text-transform: uppercase;
}

.portfolio-heading h2 span:first-child {
  color: var(--ink);
}

.portfolio-heading h2 span:last-child {
  color: var(--blue);
}

.work-list {
  display: grid;
  gap: 0;
}

.work-row {
  display: grid;
  grid-template-columns:
    minmax(160px, 0.9fr)
    minmax(160px, 0.8fr)
    minmax(170px, 0.95fr)
    minmax(230px, 1.25fr)
    auto;
  align-items: center;
  gap: clamp(16px, 1.7vw, 28px);
  min-height: 196px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  overflow: visible;
  transition:
    transform 360ms cubic-bezier(0.22, 1, 0.36, 1),
    background-color 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.work-row:last-child {
  border-bottom: 1px solid var(--line);
}

.work-row::before {
  display: none;
}

.work-row:hover {
  transform: translateX(6px);
  background: rgba(255, 255, 255, 0.72);
}

.work-preview {
  position: relative;
  z-index: 1;
  aspect-ratio: 16 / 9;
  margin: 0;
  overflow: hidden;
  border-radius: 4px;
  background: #e8e8e6;
}

.work-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
  filter: saturate(0.82);
  transition:
    opacity 360ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 360ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.work-row:hover .work-preview img {
  opacity: 1;
  filter: saturate(1);
  transform: scale(1.025);
}

.work-title {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--ink);
  font-family: "Oswald", "Inter", sans-serif;
  font-size: clamp(1.8rem, 2.5vw, 2.8rem);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
  text-transform: uppercase;
}

.work-detail {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.work-detail span {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.work-detail p,
.work-task p,
.work-description p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(13px, 0.95vw, 15px);
  line-height: 1.48;
  text-wrap: pretty;
}

.work-open {
  position: relative;
  z-index: 1;
  justify-self: end;
  display: inline-grid;
  place-items: center;
  width: auto;
  min-width: 108px;
  min-height: 46px;
  aspect-ratio: auto;
  padding: 0 18px;
  border: 1px solid var(--ink);
  border-radius: 6px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  transition:
    background-color 300ms var(--ease),
    border-color 300ms var(--ease),
    color 300ms var(--ease);
}

.work-row:hover .work-open {
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
}

.portfolio-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: clamp(40px, 5vw, 64px);
}

.portfolio-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid var(--ink);
  border-radius: 6px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  transition:
    background-color 300ms var(--ease),
    border-color 300ms var(--ease),
    color 300ms var(--ease);
}

.portfolio-action:hover {
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
}

.portfolio-download {
  border-color: var(--blue);
  color: var(--blue);
}

@media (min-width: 1280px) {
  .portfolio {
    padding-right: 0;
  }
}

@media (max-width: 1100px) {
  .work-row {
    grid-template-columns: minmax(160px, 220px) minmax(0, 1fr) auto;
    align-items: start;
  }

  .work-preview {
    grid-column: 1;
    grid-row: 1 / 4;
  }

  .work-title,
  .work-detail {
    grid-column: 2;
  }

  .work-open {
    grid-column: 3;
    grid-row: 1 / 4;
    align-self: center;
  }
}

@media (max-width: 720px) {
  .portfolio {
    width: min(100% - 28px, 1200px);
    padding-top: 56px;
  }

  .portfolio-heading {
    margin-bottom: 40px;
  }

  .portfolio-heading h2 {
    font-size: clamp(3.5rem, 17vw, 5rem);
  }

  .work-row {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 28px 0;
  }

  .work-preview,
  .work-title,
  .work-detail,
  .work-open {
    grid-column: 1;
    grid-row: auto;
  }

  .work-title {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  .work-open {
    justify-self: start;
  }

  .portfolio-actions {
    flex-direction: column;
  }

  .portfolio-action {
    width: 100%;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .work-row,
  .work-preview img,
  .work-open,
  .portfolio-action {
    transition: none;
  }
}

/* Portfolio exhibition slider */
.portfolio-heading {
  margin-bottom: clamp(28px, 3vw, 40px);
}

.portfolio-heading h2 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: clamp(4rem, 8vw, 6rem);
  line-height: 0.94;
}

.portfolio-heading-line {
  display: block;
  color: var(--ink);
}

.portfolio-heading-accent {
  color: var(--blue);
}

.portfolio-slider-controls {
  position: absolute;
  inset: 0;
  z-index: 6;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(12px, 1.5vw, 24px);
  pointer-events: none;
}

.portfolio-slider-arrow {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: rgba(251, 251, 248, 0.82);
  box-shadow: 0 10px 30px rgba(23, 23, 23, 0.12);
  backdrop-filter: blur(14px);
  color: var(--ink);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  pointer-events: auto;
  transition:
    background-color 240ms var(--ease),
    border-color 240ms var(--ease),
    color 240ms var(--ease),
    opacity 240ms var(--ease);
}

.portfolio-slider-arrow:hover:not(:disabled) {
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
}

.portfolio-slider-arrow:disabled {
  opacity: 0.28;
  cursor: default;
}

.portfolio-slider-shell {
  --portfolio-inline-edge: max(28px, calc((100vw - var(--grid-max)) / 2));
  position: relative;
  width: calc(100vw - var(--portfolio-inline-edge));
  overflow: hidden;
}

.work-list {
  display: flex;
  gap: clamp(16px, 1.8vw, 24px);
  width: 100%;
  padding: 10px 4px 28px;
  overflow-x: auto;
  overflow-y: visible;
  scroll-behavior: smooth;
  scroll-snap-type: none;
  scrollbar-width: none;
  cursor: grab;
  overscroll-behavior-inline: contain;
  touch-action: pan-x pan-y;
}

.work-list::-webkit-scrollbar {
  display: none;
}

.work-list.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
  user-select: none;
}

.portfolio-card {
  position: relative;
  flex: 0 0 clamp(300px, 27vw, 370px);
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 500px;
  padding: clamp(18px, 1.5vw, 22px);
  border-radius: 8px;
  background: #f1f1ef;
  transition:
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1),
    background-color 360ms var(--ease),
    box-shadow 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.portfolio-card-hit {
  position: absolute;
  inset: 0;
  z-index: 3;
  border-radius: inherit;
}

.portfolio-card-hit:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: -3px;
}

.portfolio-card:hover {
  transform: translateY(-6px);
  background: #fff;
  box-shadow: 0 22px 54px rgba(18, 18, 18, 0.1);
}

.portfolio-card-visual {
  display: block;
  margin-bottom: clamp(20px, 2vw, 28px);
}

.laptop-mockup {
  position: relative;
  width: 84%;
  margin: 0 auto;
  padding-bottom: 13px;
  filter: drop-shadow(0 18px 18px rgba(20, 20, 20, 0.16));
}

.laptop-screen {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 8px solid #1a1a1a;
  border-bottom-width: 13px;
  border-radius: 8px 8px 3px 3px;
  background: #111;
}

.laptop-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.laptop-camera {
  position: absolute;
  z-index: 2;
  top: -5px;
  left: 50%;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #606060;
  transform: translateX(-50%);
}

.laptop-base {
  position: absolute;
  right: -7%;
  bottom: 5px;
  left: -7%;
  height: 10px;
  border-radius: 1px 1px 8px 8px;
  background: linear-gradient(180deg, #dadde1 0%, #9fa4aa 100%);
}

.laptop-base::after {
  content: "";
  position: absolute;
  right: 3%;
  bottom: -3px;
  left: 3%;
  height: 3px;
  border-radius: 0 0 50% 50%;
  background: #72777d;
}

.laptop-base span {
  position: absolute;
  top: 0;
  left: 50%;
  width: 18%;
  height: 4px;
  border-radius: 0 0 5px 5px;
  background: #858a90;
  transform: translateX(-50%);
}

.portfolio-card-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.portfolio-card-copy h3 {
  margin: 0 0 14px;
  color: var(--ink);
  font-family: "Oswald", "Inter", sans-serif;
  font-size: clamp(1.75rem, 2.1vw, 2.25rem);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
  text-transform: uppercase;
}

.portfolio-card-copy p {
  max-width: 48ch;
  margin: 0 0 20px;
  color: #595959;
  font-size: clamp(13px, 0.9vw, 14px);
  line-height: 1.5;
  text-wrap: pretty;
}

.portfolio-card-link {
  position: relative;
  z-index: 4;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: auto;
  padding: 0 22px;
  border: 1px solid var(--ink);
  border-radius: 6px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  transition:
    background-color 300ms var(--ease),
    border-color 300ms var(--ease),
    color 300ms var(--ease);
}

.portfolio-card:hover .portfolio-card-link {
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
}

@media (max-width: 720px) {
  .portfolio-heading h2 {
    font-size: clamp(3.5rem, 17vw, 5rem);
  }

  .portfolio-slider-controls {
    padding-inline: 8px;
  }

  .portfolio-slider-shell {
    --portfolio-inline-edge: 14px;
  }

  .portfolio-card {
    flex-basis: min(86vw, 360px);
    min-height: 540px;
    padding: 20px;
  }

  .laptop-mockup {
    width: 92%;
  }

  .portfolio-card-copy h3 {
    font-size: clamp(2rem, 10vw, 2.7rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .work-list {
    scroll-behavior: auto;
  }

  .portfolio-card,
  .portfolio-slider-arrow,
  .portfolio-card-link {
    transition: none;
  }
}

/* Client recommendations gallery */
.testimonials {
  width: min(var(--grid-max), calc(100% - 56px));
  padding-top: clamp(72px, 6vw, 104px);
  padding-bottom: clamp(82px, 7vw, 116px);
}

.testimonials-header {
  margin-bottom: clamp(34px, 4vw, 58px);
}

.testimonials-header h2 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 11ch;
  margin: 0;
  font-family: "Oswald", "Inter", sans-serif;
  font-size: clamp(3.9rem, 7.6vw, 6rem);
  font-weight: 600;
  line-height: 0.94;
  letter-spacing: 0;
  text-transform: uppercase;
}

.testimonials-header h2 span:nth-child(odd) {
  color: var(--ink);
}

.testimonials-header h2 span:nth-child(even) {
  color: var(--blue);
}

.testimonials-gallery-shell {
  --testimonials-inline-edge: max(28px, calc((100vw - var(--grid-max)) / 2));
  position: relative;
  width: calc(100vw - var(--testimonials-inline-edge));
  overflow: hidden;
}

.testimonials-slider-controls {
  position: absolute;
  inset: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(12px, 1.5vw, 24px);
  pointer-events: none;
}

.testimonials-slider-arrow {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(18, 18, 18, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  -webkit-backdrop-filter: blur(18px) saturate(1.08);
  backdrop-filter: blur(18px) saturate(1.08);
  box-shadow: 0 12px 30px rgba(23, 23, 23, 0.1);
  color: var(--ink);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  pointer-events: auto;
  transition:
    transform 260ms var(--control-ease),
    background-color 260ms var(--control-ease),
    border-color 260ms var(--control-ease),
    color 260ms var(--control-ease),
    opacity 260ms var(--control-ease);
}

.testimonials-slider-arrow:hover:not(:disabled) {
  transform: translateY(-2px);
  border-color: rgba(7, 91, 255, 0.32);
  background: rgba(255, 255, 255, 0.28);
  color: var(--blue);
}

.testimonials-slider-arrow:disabled {
  opacity: 0.26;
  cursor: default;
}

.testimonials-list {
  display: flex;
  gap: clamp(16px, 1.8vw, 24px);
  width: 100%;
  padding: 10px 4px 32px;
  overflow-x: auto;
  overflow-y: visible;
  scroll-behavior: smooth;
  scrollbar-width: none;
  cursor: grab;
  overscroll-behavior-inline: contain;
  touch-action: pan-x pan-y;
}

.testimonials-list::-webkit-scrollbar {
  display: none;
}

.testimonials-list.is-dragging {
  cursor: grabbing;
  user-select: none;
}

.testimonial-card {
  position: relative;
  flex: 0 0 clamp(280px, 22vw, 340px);
  display: grid;
  grid-template-rows: auto auto 1fr auto auto;
  min-height: clamp(500px, 42vw, 620px);
  padding: clamp(22px, 2vw, 30px);
  border: 1px solid rgba(18, 18, 18, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.16);
  -webkit-backdrop-filter: blur(20px) saturate(1.08);
  backdrop-filter: blur(20px) saturate(1.08);
  box-shadow: 0 18px 48px rgba(18, 18, 18, 0.08);
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  transition:
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1),
    background-color 320ms var(--control-ease),
    border-color 320ms var(--control-ease),
    box-shadow 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.testimonial-card:hover {
  transform: translateY(-6px) scale(1.01);
  border-color: rgba(7, 91, 255, 0.18);
  background: rgba(255, 255, 255, 0.24);
  box-shadow: 0 26px 70px rgba(18, 18, 18, 0.12);
}

.testimonial-card:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 4px;
}

.testimonial-card-project {
  display: block;
  max-width: 22ch;
  min-height: 2.7em;
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
}

.testimonial-card-photo {
  display: block;
  width: clamp(92px, 8vw, 122px);
  height: clamp(92px, 8vw, 122px);
  margin: clamp(30px, 4vw, 58px) 0 clamp(26px, 3vw, 42px);
  overflow: hidden;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.32);
  box-shadow: 0 14px 32px rgba(18, 18, 18, 0.1);
}

.testimonial-card-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-card-quote {
  display: block;
  margin-bottom: clamp(26px, 3vw, 44px);
  font-family: "Oswald", "Inter", sans-serif;
  font-size: clamp(1.7rem, 2.4vw, 2.35rem);
  font-weight: 600;
  line-height: 1.02;
  text-transform: uppercase;
  text-wrap: balance;
}

.testimonial-card-meta {
  display: grid;
  gap: 6px;
  margin-top: auto;
  color: #3f3f3f;
  font-size: 14px;
  line-height: 1.3;
}

.testimonial-card-meta strong {
  color: var(--ink);
  font-size: 16px;
}

.testimonial-card-action {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 38px;
  margin-top: 22px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
}

.testimonial-reader {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: clamp(16px, 3vw, 42px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms var(--control-ease);
}

.testimonial-reader.is-open {
  opacity: 1;
  pointer-events: auto;
}

.testimonial-reader-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(248, 248, 246, 0.62);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.testimonial-reader-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(220px, 0.45fr) minmax(0, 1fr);
  gap: clamp(26px, 4vw, 64px);
  width: min(1080px, 100%);
  max-height: min(760px, calc(100vh - 48px));
  overflow: auto;
  padding: clamp(24px, 4vw, 58px);
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.18);
  -webkit-backdrop-filter: blur(26px) saturate(1.08);
  backdrop-filter: blur(26px) saturate(1.08);
  box-shadow: 0 34px 110px rgba(18, 18, 18, 0.18);
  transform: translateY(14px) scale(0.98);
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.testimonial-reader.is-open .testimonial-reader-panel {
  transform: translateY(0) scale(1);
}

.testimonial-reader-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  color: var(--ink);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.testimonial-reader-portrait {
  align-self: start;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 24px 60px rgba(18, 18, 18, 0.12);
}

.testimonial-reader-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-reader-content {
  min-width: 0;
  padding-right: clamp(0px, 3vw, 34px);
}

.testimonial-reader-project {
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.testimonial-reader-content h3 {
  margin: 0;
  font-family: "Oswald", "Inter", sans-serif;
  font-size: clamp(3rem, 6vw, 5.2rem);
  font-weight: 600;
  line-height: 0.94;
  text-transform: uppercase;
}

.testimonial-reader-company {
  margin: 12px 0 clamp(28px, 3vw, 44px);
  color: #4d4d4d;
  font-size: clamp(16px, 1.4vw, 20px);
  font-weight: 700;
}

.testimonial-reader-text {
  max-width: 68ch;
  color: #252525;
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.62;
}

.testimonial-reader-text p {
  margin: 0 0 1.05em;
}

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

@media (max-width: 1020px) {
  .testimonial-reader-panel {
    grid-template-columns: 180px minmax(0, 1fr);
  }
}

@media (max-width: 720px) {
  .testimonials {
    width: calc(100% - 28px);
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .testimonials-header h2 {
    font-size: clamp(3.2rem, 15vw, 4.6rem);
  }

  .testimonials-gallery-shell {
    --testimonials-inline-edge: 14px;
  }

  .testimonial-card {
    flex-basis: min(84vw, 330px);
    min-height: 500px;
    padding: 22px;
  }

  .testimonial-reader {
    align-items: end;
    padding: 10px;
  }

  .testimonial-reader-panel {
    grid-template-columns: 1fr;
    gap: 24px;
    max-height: calc(100vh - 20px);
    padding: 24px;
    border-radius: 18px;
  }

  .testimonial-reader-portrait {
    width: 132px;
    aspect-ratio: 1;
    border-radius: 50%;
  }

  .testimonial-reader-content h3 {
    padding-right: 42px;
    font-size: 3rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .testimonials-list {
    scroll-behavior: auto;
  }

  .testimonial-card,
  .testimonials-slider-arrow,
  .testimonial-reader,
  .testimonial-reader-panel {
    transition: none;
  }
}

/* Testimonials editorial refinement */
.testimonials-header {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(260px, 0.48fr);
  align-items: end;
  gap: clamp(24px, 5vw, 80px);
}

.testimonials-header h2 {
  max-width: 13ch;
}

.testimonials-header h2 span:first-child {
  color: var(--ink);
}

.testimonials-header h2 span:last-child {
  color: var(--blue);
}

.testimonials-header p {
  max-width: 18ch;
  margin: 0 0 0.28em;
  color: #565656;
  font-size: clamp(1.15rem, 2vw, 1.75rem);
  font-weight: 600;
  line-height: 1.18;
  text-wrap: balance;
}

.testimonials-list {
  gap: clamp(24px, 2.5vw, 38px);
  padding-bottom: 42px;
}

.testimonial-card {
  flex-basis: clamp(300px, 23vw, 360px);
  grid-template-rows: auto auto 1fr auto;
  min-height: clamp(520px, 40vw, 600px);
  padding: clamp(20px, 1.8vw, 28px);
  border-radius: 18px;
}

.testimonial-card-photo {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  margin: 0 0 clamp(20px, 2.4vw, 32px);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 44px rgba(18, 18, 18, 0.1);
}

.testimonial-card-photo img {
  filter: saturate(0.82) contrast(1.03);
}

.testimonial-card-meta {
  order: 2;
  gap: 3px;
  margin: 0 0 clamp(22px, 2.5vw, 34px);
}

.testimonial-card-meta strong {
  color: var(--ink);
  font-family: "Oswald", "Inter", sans-serif;
  font-size: clamp(1.6rem, 2vw, 2.05rem);
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}

.testimonial-card-meta span {
  color: var(--blue);
  font-size: 15px;
  font-weight: 800;
}

.testimonial-card-quote {
  order: 3;
  max-width: 24ch;
  margin: 0 0 clamp(20px, 2vw, 28px);
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(1.05rem, 1.2vw, 1.28rem);
  font-weight: 650;
  line-height: 1.38;
  text-transform: none;
  text-wrap: pretty;
}

.testimonial-card-action {
  order: 4;
  min-height: 32px;
  margin-top: auto;
}

.testimonial-reader-backdrop {
  background: rgba(8, 12, 22, 0.22);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}

body.is-reader-open .testimonials-list {
  filter: blur(1.5px);
  opacity: 0.72;
}

.testimonial-reader-panel {
  grid-template-columns: minmax(220px, 0.35fr) minmax(0, 0.65fr);
  width: min(1160px, 100%);
  gap: clamp(30px, 4.4vw, 72px);
  padding: clamp(34px, 4.6vw, 70px);
  background: rgba(255, 255, 255, 0.24);
  -webkit-backdrop-filter: blur(22px) saturate(1.06);
  backdrop-filter: blur(22px) saturate(1.06);
}

.testimonial-reader-portrait {
  align-self: start;
  max-width: 340px;
  aspect-ratio: 4 / 5;
  border-radius: 16px;
}

.testimonial-reader-portrait img {
  filter: saturate(0.82) contrast(1.03);
}

.testimonial-reader-content {
  display: grid;
  grid-template-areas:
    "text"
    "name"
    "company"
    "project";
  align-content: start;
  padding-right: clamp(0px, 2vw, 26px);
}

.testimonial-reader-text {
  grid-area: text;
  max-width: 64ch;
  margin-bottom: clamp(30px, 3.2vw, 48px);
  color: #191919;
  font-size: clamp(18px, 1.38vw, 21px);
  line-height: 1.68;
}

.testimonial-reader-content h3 {
  grid-area: name;
  margin-top: 0;
  font-size: clamp(2.15rem, 4vw, 3.65rem);
  line-height: 0.96;
}

.testimonial-reader-company {
  grid-area: company;
  margin: 10px 0 0;
  color: var(--blue);
  font-size: clamp(1.15rem, 1.7vw, 1.65rem);
  font-weight: 850;
}

.testimonial-reader-project {
  grid-area: project;
  margin: 12px 0 0;
  color: #5a5a5a;
  font-size: 13px;
  font-weight: 800;
}

@media (max-width: 720px) {
  .testimonials-header {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .testimonials-header p {
    max-width: 100%;
    margin-bottom: 0;
    font-size: 1.15rem;
  }

  .testimonial-card {
    min-height: 520px;
  }

  .testimonial-reader-panel {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .testimonial-reader-portrait {
    width: 128px;
    max-width: none;
    aspect-ratio: 1;
    border-radius: 14px;
  }

  .testimonial-reader-content h3 {
    padding-right: 42px;
    font-size: 2.45rem;
  }
}

/* Full-width section balance after removing the statement rail */
.process-grid {
  width: 100%;
  max-width: none;
  gap: clamp(14px, 1.2vw, 20px);
}

.portfolio-header {
  display: grid;
  grid-template-columns: minmax(380px, 0.9fr) minmax(520px, 1.1fr);
  align-items: end;
  gap: clamp(32px, 5vw, 80px);
  margin-bottom: clamp(32px, 4vw, 52px);
}

.portfolio-header .portfolio-heading,
.portfolio-header .portfolio-actions {
  margin: 0;
}

.portfolio-header .portfolio-actions {
  align-items: center;
  justify-content: flex-end;
}

.portfolio-slider-controls {
  z-index: 20;
}

@media (max-width: 1100px) {
  .portfolio-header {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .portfolio-header .portfolio-actions {
    justify-content: flex-start;
  }
}

/* Testimonials final calm editorial pass */
.testimonials {
  padding-top: clamp(64px, 5vw, 88px);
  padding-bottom: clamp(52px, 5vw, 72px);
}

.testimonials-header {
  display: block;
  max-width: min(980px, 100%);
  margin-bottom: clamp(34px, 4.2vw, 60px);
}

.testimonials-header h2 {
  max-width: 12.8ch;
  margin-bottom: clamp(12px, 1.3vw, 18px);
}

.testimonials-header h2 span:first-child {
  color: var(--ink);
}

.testimonials-header h2 span:last-child {
  color: var(--blue);
}

.testimonials-header p {
  max-width: 28ch;
  margin: 0;
  color: rgba(23, 23, 23, 0.58);
  font-size: clamp(1rem, 1.25vw, 1.32rem);
  font-weight: 520;
  line-height: 1.35;
}

.testimonials-gallery-shell {
  overflow: visible;
}

.testimonials-slider-controls {
  z-index: 34;
}

.testimonials-list {
  gap: clamp(28px, 3vw, 46px);
  padding-top: 8px;
  padding-bottom: 46px;
  overscroll-behavior-inline: auto;
}

.testimonial-card {
  flex-basis: clamp(304px, 22vw, 352px);
  min-height: clamp(510px, 38vw, 578px);
  padding: clamp(24px, 2.15vw, 34px);
  border-color: rgba(255, 255, 255, 0.46);
  background: rgba(255, 255, 255, 0.12);
  box-shadow:
    0 18px 50px rgba(23, 23, 23, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.testimonial-card:hover {
  transform: translateY(-4px) scale(1.006);
  border-color: rgba(255, 255, 255, 0.66);
  background: rgba(255, 255, 255, 0.19);
  box-shadow:
    0 24px 64px rgba(23, 23, 23, 0.09),
    0 0 0 1px rgba(7, 91, 255, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.66);
}

.testimonial-card-photo {
  aspect-ratio: 4 / 5;
  margin-bottom: clamp(22px, 2.4vw, 34px);
  border-radius: 16px;
  box-shadow: 0 16px 42px rgba(23, 23, 23, 0.08);
}

.testimonial-card-photo img {
  object-fit: cover;
  filter: saturate(0.74) contrast(1.04) brightness(1.02);
}

.testimonial-card-meta {
  margin-bottom: clamp(18px, 2vw, 28px);
}

.testimonial-card-meta strong {
  font-size: clamp(1.38rem, 1.65vw, 1.82rem);
  font-weight: 600;
}

.testimonial-card-meta span {
  color: var(--blue);
  font-size: clamp(0.92rem, 0.95vw, 1rem);
  font-weight: 720;
}

.testimonial-card-quote {
  max-width: 27ch;
  color: rgba(23, 23, 23, 0.82);
  font-size: clamp(1rem, 1.08vw, 1.18rem);
  font-weight: 440;
  line-height: 1.55;
}

.testimonial-card-action {
  color: var(--blue);
  font-weight: 760;
}

.testimonial-reader {
  z-index: 120;
}

.testimonial-reader-backdrop {
  background: rgba(247, 248, 248, 0.74);
  -webkit-backdrop-filter: blur(1.5px);
  backdrop-filter: blur(1.5px);
}

body.is-reader-open .testimonials-list {
  filter: blur(1px);
  opacity: 0.78;
}

.testimonial-reader-panel {
  grid-template-columns: minmax(180px, 0.28fr) minmax(0, 0.72fr);
  width: min(1120px, calc(100vw - 40px));
  max-height: min(780px, calc(100vh - 44px));
  gap: clamp(30px, 4.5vw, 76px);
  padding: clamp(34px, 4.8vw, 72px);
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.72);
  box-shadow:
    0 34px 120px rgba(23, 23, 23, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.76);
}

.testimonial-reader-portrait {
  width: min(100%, 258px);
  max-width: 258px;
  aspect-ratio: 4 / 5;
  border-radius: 16px;
  box-shadow: 0 22px 56px rgba(23, 23, 23, 0.1);
}

.testimonial-reader-portrait img {
  object-fit: cover;
  filter: saturate(0.76) contrast(1.04) brightness(1.02);
}

.testimonial-reader-content {
  padding-right: clamp(0px, 1.6vw, 22px);
}

.testimonial-reader-text {
  max-width: 66ch;
  margin-bottom: clamp(26px, 3vw, 42px);
  color: rgba(23, 23, 23, 0.9);
  font-size: clamp(17px, 1.28vw, 20px);
  font-weight: 430;
  line-height: 1.72;
}

.testimonial-reader-content h3 {
  color: rgba(23, 23, 23, 0.92);
  font-size: clamp(1.65rem, 2.95vw, 2.8rem);
  font-weight: 600;
  line-height: 1;
}

.testimonial-reader-company {
  margin-top: 8px;
  color: var(--blue);
  font-size: clamp(1.08rem, 1.35vw, 1.36rem);
  font-weight: 780;
}

.testimonial-reader-project {
  margin-top: 10px;
  color: rgba(23, 23, 23, 0.52);
  font-size: 12px;
  font-weight: 680;
  letter-spacing: 0.04em;
}

@media (max-width: 1020px) {
  .testimonial-reader-panel {
    grid-template-columns: minmax(150px, 0.26fr) minmax(0, 0.74fr);
  }

  .testimonial-reader-portrait {
    max-width: 210px;
  }
}

@media (max-width: 720px) {
  .testimonials-header {
    margin-bottom: 30px;
  }

  .testimonials-header p {
    font-size: 1rem;
  }

  .testimonials-list {
    gap: 22px;
  }

  .testimonial-card {
    flex-basis: min(82vw, 318px);
    min-height: 500px;
    padding: 22px;
  }

  .testimonial-reader-panel {
    grid-template-columns: 1fr;
    width: calc(100vw - 20px);
    padding: 24px;
  }

  .testimonial-reader-portrait {
    width: 118px;
    max-width: none;
    aspect-ratio: 1;
  }

  .testimonial-reader-text {
    font-size: 16px;
    line-height: 1.66;
  }

  .testimonial-reader-content h3 {
    padding-right: 42px;
    font-size: 2.05rem;
  }
}

/* Testimonials final editorial consistency */
.testimonials-header {
  display: block;
}

.testimonials-header h2 {
  max-width: 13.4ch;
  margin-bottom: 0;
}

.testimonials-header p {
  display: none;
}

.testimonial-card {
  min-height: clamp(530px, 38vw, 590px);
  padding: clamp(28px, 2.4vw, 38px);
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.1);
  box-shadow:
    0 16px 48px rgba(23, 23, 23, 0.055),
    inset 0 1px 0 rgba(255, 255, 255, 0.56);
}

.testimonial-card:hover {
  transform: translateY(-4px) scale(1.004);
  background: rgba(255, 255, 255, 0.16);
  box-shadow:
    0 22px 60px rgba(23, 23, 23, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.68);
}

.testimonial-card-photo {
  margin-bottom: clamp(24px, 2.6vw, 38px);
  background: #f2f4f5;
}

.testimonial-card-photo img {
  filter: saturate(0.68) contrast(1.04) brightness(1.03);
}

.testimonial-card-meta {
  gap: 7px;
  margin-bottom: clamp(22px, 2.4vw, 34px);
}

.testimonial-card-meta strong {
  color: var(--ink);
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(1.08rem, 1.08vw, 1.25rem);
  font-weight: 760;
  line-height: 1.12;
  text-transform: none;
}

.testimonial-card-meta span {
  color: var(--blue);
  font-size: clamp(0.92rem, 0.92vw, 1rem);
  font-weight: 560;
  line-height: 1.18;
}

.testimonial-card-meta em {
  display: block;
  color: rgba(23, 23, 23, 0.46);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 460;
  line-height: 1.25;
}

.testimonial-card-quote {
  max-width: 28ch;
  color: rgba(23, 23, 23, 0.78);
  font-size: clamp(1rem, 1.06vw, 1.14rem);
  font-weight: 400;
  line-height: 1.62;
}

.testimonial-reader {
  z-index: 180;
}

.testimonial-reader-panel {
  grid-template-columns: minmax(150px, 0.24fr) minmax(0, 0.76fr);
  background: rgba(255, 255, 255, 0.8);
}

.testimonial-reader-portrait {
  width: min(100%, 206px);
  max-width: 206px;
  background: #f2f4f5;
}

.testimonial-reader-content {
  row-gap: 0;
}

.testimonial-reader-text {
  margin-bottom: clamp(30px, 3.3vw, 50px);
  font-weight: 410;
}

.testimonial-reader-content h3 {
  color: rgba(23, 23, 23, 0.86);
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(1.35rem, 2.1vw, 2.05rem);
  font-weight: 720;
  line-height: 1.16;
  text-transform: none;
}

.testimonial-reader-company {
  margin-top: 16px;
  color: var(--blue);
  font-size: clamp(1.02rem, 1.18vw, 1.18rem);
  font-weight: 560;
}

.testimonial-reader-project {
  margin-top: 16px;
  color: rgba(23, 23, 23, 0.5);
  font-size: 0.78rem;
  font-weight: 440;
  letter-spacing: 0;
  text-transform: none;
}

@media (max-width: 720px) {
  .testimonial-card {
    min-height: 520px;
    padding: 24px;
  }

  .testimonial-reader-portrait {
    width: 112px;
  }

  .testimonial-reader-content h3 {
    font-size: 1.72rem;
  }
}

/* Testimonials supplied portraits and shared matte glass system */
.testimonial-card {
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 22px;
  background: rgba(251, 251, 248, 0.18);
  -webkit-backdrop-filter: blur(20px) saturate(116%);
  backdrop-filter: blur(20px) saturate(116%);
  box-shadow:
    0 18px 28px -18px rgba(23, 23, 23, 0.2),
    0 8px 16px -12px rgba(23, 23, 23, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.62);
}

.testimonial-card:hover {
  border-color: rgba(255, 255, 255, 0.68);
  background: rgba(251, 251, 248, 0.26);
  box-shadow:
    0 22px 34px -18px rgba(23, 23, 23, 0.22),
    0 10px 20px -14px rgba(23, 23, 23, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.74);
}

.testimonial-card-photo {
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 16px;
  background: rgba(251, 251, 248, 0.26);
  box-shadow:
    0 16px 44px rgba(23, 23, 23, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.52);
}

.testimonial-card-photo img,
.testimonial-reader-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 0;
  filter: none;
}

.testimonial-reader-panel {
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(251, 251, 248, 0.72);
  -webkit-backdrop-filter: blur(22px) saturate(116%);
  backdrop-filter: blur(22px) saturate(116%);
  box-shadow:
    0 34px 110px rgba(23, 23, 23, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.68);
}

.testimonial-reader-portrait {
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 16px;
  background: rgba(251, 251, 248, 0.24);
}

@media (max-width: 720px) {
  .portfolio-header {
    gap: 28px;
    margin-bottom: 32px;
  }
}

/* About, services accordion and video audit */
.about .photo-editorial-label {
  margin: 0;
  letter-spacing: 0;
}

.services-accordion {
  display: block;
}

.services-heading {
  margin-bottom: clamp(52px, 7vw, 96px);
}

.services-heading h2 {
  max-width: 11ch;
  margin: 0;
  font-family: "Oswald", "Inter", sans-serif;
  font-size: clamp(4rem, 8vw, 6rem);
  font-weight: 600;
  line-height: 0.96;
  letter-spacing: 0;
  text-transform: uppercase;
  text-wrap: balance;
}

.services-heading h2 span {
  display: block;
}

.services-heading h2 span:last-child {
  color: var(--blue);
}

.service-accordion {
  border-bottom: 1px solid var(--ink);
}

.service-accordion-item {
  border-top: 1px solid var(--ink);
}

.service-accordion-item h3 {
  margin: 0;
}

.service-accordion-trigger {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 48px;
  align-items: center;
  gap: clamp(16px, 2vw, 32px);
  width: 100%;
  min-height: clamp(96px, 9vw, 132px);
  padding: 16px 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

.service-number {
  align-self: start;
  padding-top: 8px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
}

.service-title {
  font-family: "Oswald", "Inter", sans-serif;
  font-size: clamp(1.9rem, 3.6vw, 3.8rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  text-wrap: balance;
  transition: color 280ms var(--ease), transform 360ms var(--ease);
}

.service-chevron {
  justify-self: end;
  width: 16px;
  height: 16px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translate(-3px, -3px);
  transition: transform 420ms var(--ease), color 280ms var(--ease);
}

.service-accordion-trigger:hover .service-title,
.service-accordion-trigger:hover .service-chevron,
.service-accordion-trigger:focus-visible .service-title,
.service-accordion-trigger:focus-visible .service-chevron {
  color: var(--blue);
}

.service-accordion-trigger:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 6px;
}

.service-accordion-item.is-open .service-title {
  color: var(--blue);
  transform: translateX(8px);
}

.service-accordion-item.is-open .service-chevron {
  color: var(--blue);
  transform: rotate(225deg) translate(-3px, -3px);
}

.service-accordion-panel {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  visibility: hidden;
  transition:
    grid-template-rows 560ms var(--ease),
    opacity 320ms ease,
    visibility 0s linear 560ms;
}

.service-accordion-item.is-open .service-accordion-panel {
  grid-template-rows: 1fr;
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}

.service-accordion-content {
  min-height: 0;
  overflow: hidden;
}

.service-accordion-inner {
  max-width: 900px;
  padding: 0 72px clamp(36px, 4vw, 56px) 104px;
}

.service-accordion-inner p {
  max-width: 66ch;
  margin: 0 0 14px;
  color: #4d4d49;
  font-size: clamp(16px, 1.3vw, 20px);
  line-height: 1.55;
  text-wrap: pretty;
}

.service-accordion-inner a {
  display: inline-block;
  margin-top: 12px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 700;
  transition: transform 280ms var(--ease), color 280ms var(--ease);
}

.service-accordion-inner a:hover {
  color: var(--blue-dark);
  transform: translateX(6px);
}

.audit {
  width: 100%;
  padding: clamp(88px, 10vw, 148px) 0;
  overflow: hidden;
  background: var(--blue);
  color: #fff;
}

.audit-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(480px, 1.18fr);
  align-items: center;
  gap: clamp(48px, 7vw, 112px);
  width: min(var(--grid-max), calc(100% - 56px));
  margin: 0 auto;
}

.audit-copy {
  min-width: 0;
}

.audit-copy h2 {
  margin: 0 0 30px;
  font-family: "Oswald", "Inter", sans-serif;
  font-size: clamp(4rem, 7vw, 6rem);
  font-weight: 600;
  line-height: 0.94;
  letter-spacing: 0;
  text-transform: uppercase;
  text-wrap: balance;
}

.audit-copy h2 span {
  display: block;
}

.audit-subheading {
  margin: 0 0 14px;
  font-size: clamp(1.45rem, 2.3vw, 2.2rem);
  font-weight: 700;
  line-height: 1.15;
}

.audit-description {
  max-width: 52ch;
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.55;
  text-wrap: pretty;
}

.audit-checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 24px;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}

.audit-checklist li {
  position: relative;
  padding-left: 28px;
  font-size: 15px;
  line-height: 1.4;
}

.audit-checklist li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  font-weight: 800;
}

.audit-note {
  max-width: 52ch;
  margin: 0 0 30px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.audit-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid #fff;
  border-radius: 6px;
  background: #fff;
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
  transition: background-color 280ms var(--ease), color 280ms var(--ease), transform 280ms var(--ease);
}

.audit-cta:hover {
  background: var(--ink);
  color: #fff;
  transform: translateY(-3px);
}

.audit-illustration {
  position: relative;
  aspect-ratio: 16 / 10;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 8px;
  background: #e9edf5;
  box-shadow: 0 30px 80px rgba(0, 22, 80, 0.28);
}

.audit-appbar {
  display: flex;
  align-items: center;
  gap: 7px;
  height: 38px;
  padding: 0 14px;
  background: #191919;
  color: rgba(255, 255, 255, 0.78);
}

.audit-appbar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  opacity: 0.45;
}

.audit-appbar strong {
  margin-left: 8px;
  font-size: 11px;
  font-weight: 600;
}

.audit-workspace {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  height: calc(100% - 38px);
}

.audit-thumbnails {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 16px 12px;
  background: #f6f6f6;
}

.audit-thumbnails span {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 2px solid transparent;
  background: #fff;
}

.audit-thumbnails span.is-active {
  border-color: var(--blue);
}

.audit-thumbnails img,
.audit-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.audit-slide {
  align-self: center;
  aspect-ratio: 16 / 9;
  margin: 5%;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 12px 28px rgba(20, 20, 20, 0.14);
}

.audit-player {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: clamp(210px, 34%, 300px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 7px;
  background: #111;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.34);
}

.audit-player-image {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.audit-player-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  filter: saturate(0.72) contrast(1.06);
}

.audit-play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(7, 91, 255, 0.92);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
  transform: translate(-50%, -50%);
}

.audit-play::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 52%;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 11px solid #fff;
  transform: translate(-50%, -50%);
}

.audit-player-controls {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 9px;
  padding: 9px 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 9px;
}

.audit-timeline {
  position: relative;
  height: 3px;
  background: rgba(255, 255, 255, 0.24);
}

.audit-timeline i {
  position: absolute;
  inset: 0 42% 0 0;
  background: var(--blue);
}

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

  .audit-illustration {
    width: 100%;
  }
}

@media (max-width: 720px) {
  .services-heading {
    margin-bottom: 40px;
  }

  .services-heading h2 {
    font-size: clamp(3.4rem, 16vw, 4.9rem);
  }

  .audit-copy h2 {
    font-size: 3rem;
  }

  .audit-subheading {
    font-size: 1.35rem;
  }

  .service-accordion-trigger {
    grid-template-columns: 42px minmax(0, 1fr) 32px;
    gap: 10px;
    min-height: 88px;
  }

  .service-number {
    padding-top: 4px;
  }

  .service-title {
    font-size: clamp(1.65rem, 8.8vw, 2.5rem);
  }

  .service-accordion-inner {
    padding: 0 12px 32px 52px;
  }

  .audit {
    padding: 80px 0;
  }

  .audit-inner {
    width: min(calc(100% - 28px), var(--grid-max));
    gap: 48px;
  }

  .audit-checklist {
    grid-template-columns: 1fr;
  }

  .audit-workspace {
    grid-template-columns: 60px minmax(0, 1fr);
  }

  .audit-thumbnails {
    padding: 10px 7px;
  }

  .audit-player {
    right: 10px;
    bottom: 10px;
    width: 48%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .service-title,
  .service-chevron,
  .service-accordion-panel,
  .service-accordion-inner a,
  .audit-cta {
    transition: none;
  }
}

/* Unified homepage rhythm and real video-audit presentation */
:root {
  --section-flow: clamp(64px, 5.5vw, 88px);
}

.section {
  padding-top: var(--section-flow);
  padding-bottom: var(--section-flow);
}

.credibility {
  width: min(var(--grid-max), calc(100% - 56px));
  padding-top: clamp(72px, 6vw, 96px);
  padding-bottom: clamp(40px, 4vw, 56px);
}

.services-accordion {
  padding-top: clamp(68px, 6vw, 96px);
  padding-bottom: clamp(40px, 4vw, 56px);
}

.services-heading {
  margin-bottom: clamp(44px, 4.5vw, 68px);
}

.services-heading h2 {
  max-width: none;
}

.process {
  width: min(var(--grid-max), calc(100% - 56px));
  padding-top: clamp(68px, 6vw, 96px);
  padding-bottom: clamp(40px, 4vw, 56px);
}

.process-heading {
  margin-bottom: clamp(44px, 4.5vw, 64px);
}

.process-grid {
  gap: clamp(14px, 1.2vw, 20px);
}

.process-card,
.process-card:nth-child(1),
.process-card:nth-child(2),
.process-card:nth-child(3),
.process-card:nth-child(4) {
  min-height: clamp(320px, 24vw, 372px);
  padding: clamp(28px, 2.5vw, 40px);
  transition:
    opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 420ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

@media (hover: hover) and (pointer: fine) {
  .process-card:hover,
  .js .process-card.reveal.is-visible:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 54px rgba(18, 18, 18, 0.1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .process-card,
  .js .process-card.reveal {
    transition: none;
  }

  .process-card:hover,
  .js .process-card.reveal.is-visible:hover {
    transform: none;
  }
}

.portfolio {
  padding-top: clamp(64px, 5vw, 88px);
  padding-bottom: clamp(40px, 4vw, 56px);
}

.portfolio-header {
  margin-bottom: clamp(28px, 3.5vw, 48px);
}

.contact {
  padding-top: clamp(84px, 7vw, 112px);
  padding-bottom: clamp(84px, 7vw, 112px);
}

.audit {
  width: 100%;
  padding: clamp(88px, 8vw, 128px) 0 clamp(76px, 7vw, 112px);
  overflow: hidden;
  background: var(--blue);
  color: #fff;
}

.audit-inner {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: start;
  gap: clamp(48px, 5vw, 80px) clamp(20px, 2.2vw, 36px);
  width: min(var(--grid-max), calc(100% - 56px));
  margin: 0 auto;
}

.audit-copy {
  grid-column: 1 / span 5;
  align-self: center;
  min-width: 0;
}

.audit-copy h2 {
  margin: 0 0 clamp(28px, 3vw, 42px);
  font-size: clamp(3.5rem, 4.7vw, 4.2rem);
  line-height: 0.96;
}

.audit-subheading {
  max-width: 24ch;
  margin: 0 0 18px;
  font-size: clamp(1.55rem, 2.2vw, 2.15rem);
  line-height: 1.15;
  text-wrap: balance;
}

.audit-value {
  max-width: 35ch;
  margin: 0 0 34px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(17px, 1.45vw, 22px);
  font-weight: 500;
  line-height: 1.48;
  text-wrap: pretty;
}

.audit-cta {
  min-height: 60px;
  padding: 0 30px;
  border-color: #fff;
  border-radius: 4px;
  background: #fff;
  color: var(--blue);
  font-size: 15px;
}

.audit-media {
  grid-column: 6 / -1;
  min-width: 0;
  margin: 0;
}

.audit-media img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 4px;
  box-shadow: 0 28px 72px rgba(0, 24, 92, 0.26);
}

.audit-media figcaption {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  line-height: 1.4;
}

.audit-features {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(20px, 2.2vw, 36px);
}

.audit-features article {
  min-width: 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.62);
}

.audit-features h3 {
  margin: 0 0 12px;
  color: #fff;
  font-family: "Oswald", "Inter", sans-serif;
  font-size: clamp(1.45rem, 1.9vw, 2rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: 0;
  text-transform: uppercase;
}

.audit-features p {
  max-width: 28ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.5;
  text-wrap: pretty;
}

@media (max-width: 1020px) {
  .audit-copy,
  .audit-media {
    grid-column: 1 / -1;
  }

  .audit-copy {
    max-width: 760px;
  }

  .audit-media {
    width: 100%;
  }

  .audit-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 36px;
  }
}

@media (max-width: 720px) {
  :root {
    --section-flow: 72px;
  }

  .credibility {
    width: calc(100% - 28px);
    padding-top: 72px;
    padding-bottom: 56px;
  }

  .services-accordion,
  .process,
  .portfolio,
  .contact {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .services-heading h2 {
    font-size: 2.35rem;
    line-height: 0.98;
    white-space: nowrap;
  }

  .process {
    width: calc(100% - 28px);
  }

  .process-card,
  .process-card:nth-child(1),
  .process-card:nth-child(2),
  .process-card:nth-child(3),
  .process-card:nth-child(4) {
    min-height: 276px;
    padding: 28px;
  }

  .audit {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .audit-inner {
    width: calc(100% - 28px);
    gap: 42px 0;
  }

  .audit-copy h2 {
    font-size: 3rem;
  }

  .audit-subheading {
    font-size: 1.35rem;
  }

  .audit-cta {
    width: 100%;
    padding-inline: 18px;
  }

  .audit-features {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .audit-features article {
    padding-top: 16px;
  }
}

/* Final component consistency pass */
:root {
  --control-height: 56px;
  --control-radius: 18px;
  --control-padding: 28px;
  --control-duration: 280ms;
  --control-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --glass-blur: 18px;
}

.cta-button,
.hero .button.cta-button,
.portfolio-action.cta-button,
.service-accordion-inner a.cta-button,
.audit-cta.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  max-width: 100%;
  min-height: var(--control-height);
  margin-top: 0;
  padding: 0 var(--control-padding);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--control-radius);
  background: rgba(255, 255, 255, 0.14);
  color: var(--blue-dark);
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(1.1);
  backdrop-filter: blur(var(--glass-blur)) saturate(1.1);
  box-shadow: 0 10px 28px rgba(0, 32, 105, 0.11);
  transition:
    transform var(--control-duration) var(--control-ease),
    background-color var(--control-duration) var(--control-ease),
    border-color var(--control-duration) var(--control-ease),
    color var(--control-duration) var(--control-ease),
    backdrop-filter var(--control-duration) var(--control-ease),
    box-shadow var(--control-duration) var(--control-ease);
}

.cta-button:hover,
.hero .button.cta-button:hover,
.portfolio-action.cta-button:hover,
.service-accordion-inner a.cta-button:hover,
.audit-cta.cta-button:hover {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.22);
  color: var(--blue-dark);
  -webkit-backdrop-filter: blur(24px) saturate(1.14);
  backdrop-filter: blur(24px) saturate(1.14);
  box-shadow:
    0 15px 34px rgba(0, 32, 105, 0.13),
    0 0 24px rgba(26, 103, 255, 0.12);
  transform: translateY(-3px) scale(1.02);
}

.hero .button.cta-button,
.audit .cta-button {
  color: #fff;
}

.hero .button.cta-button:hover,
.audit .cta-button:hover {
  color: #fff;
}

.cta-button:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}

.service-accordion-inner a.cta-button {
  margin-top: 18px;
}

.portfolio-card-link {
  border-radius: var(--control-radius);
  transition-duration: var(--control-duration);
  transition-timing-function: var(--control-ease);
}

.side-statement,
.audit-features article {
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(1.08);
  backdrop-filter: blur(var(--glass-blur)) saturate(1.08);
}

.hero-blue-panel {
  height: clamp(230px, 28vh, 300px);
}

.audit-inner {
  gap: clamp(38px, 4vw, 64px) clamp(20px, 2.2vw, 36px);
}

.audit-copy {
  grid-column: 1 / span 4;
}

@media (min-width: 1021px) {
  .audit-inner {
    transform: none;
  }

  .audit-media {
    justify-self: end;
    width: 88%;
  }
}

.audit-media {
  grid-column: 5 / -1;
}

.audit-media img {
  display: block;
  width: 100%;
  height: auto;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.audit-work-window {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 8px;
  background: #f4f5f7;
  box-shadow:
    0 34px 90px rgba(0, 21, 80, 0.3),
    0 8px 24px rgba(0, 21, 80, 0.16);
}

.audit-windowbar {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr) auto;
  align-items: center;
  min-height: 38px;
  padding: 0 12px;
  border-bottom: 1px solid rgba(23, 23, 23, 0.12);
  background: rgba(245, 246, 248, 0.96);
  color: #424242;
  font-size: 11px;
}

.audit-window-controls {
  display: flex;
  gap: 6px;
}

.audit-window-controls i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #a9adb4;
}

.audit-window-title {
  overflow: hidden;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.audit-window-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
}

.audit-window-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #e24545;
  box-shadow: 0 0 0 3px rgba(226, 69, 69, 0.12);
}

.audit-window-content {
  position: relative;
  overflow: hidden;
  background: #fff;
}

.audit-cursor {
  position: absolute;
  top: 48%;
  left: 63%;
  color: #171717;
  font-size: 23px;
  line-height: 1;
  text-shadow:
    -1px -1px 0 #fff,
    1px -1px 0 #fff,
    -1px 1px 0 #fff,
    1px 1px 0 #fff;
  transform: rotate(-8deg);
}

.audit-window-timeline {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  min-height: 34px;
  padding: 0 12px;
  background: #242424;
  color: rgba(255, 255, 255, 0.72);
  font-size: 9px;
  font-variant-numeric: tabular-nums;
}

.audit-window-track {
  position: relative;
  height: 3px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.2);
}

.audit-window-track i {
  position: absolute;
  inset: 0 54% 0 0;
  background: var(--blue);
}

.audit-features {
  gap: clamp(12px, 1.2vw, 18px);
}

.audit-features article {
  min-height: 180px;
  padding: clamp(22px, 2vw, 30px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--control-radius);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 40px rgba(0, 31, 112, 0.1);
}

.audit-features h3 {
  margin-bottom: 16px;
}

.audit-features p {
  color: rgba(255, 255, 255, 0.86);
}

@media (max-width: 1020px) {
  .hero-blue-panel {
    height: 150px;
  }

  .audit-copy,
  .audit-media {
    grid-column: 1 / -1;
  }

  .audit-features article {
    min-height: 164px;
  }

  .hero .button.cta-button,
  .hero .button.cta-button:hover {
    color: var(--blue-dark);
  }
}

@media (max-width: 720px) {
  :root {
    --control-height: 54px;
    --control-padding: 20px;
  }

  .hero-blue-panel {
    height: 110px;
  }

  .service-accordion-inner a.cta-button,
  .portfolio-action.cta-button,
  .audit-cta.cta-button {
    width: 100%;
  }

  .audit-features article {
    min-height: 0;
    padding: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cta-button,
  .portfolio-card-link {
    transition: none;
  }
}

/* Natural hero-video framing */
main {
  position: relative;
  isolation: auto;
}

main > section,
main > .credentials-marquee {
  position: relative;
  z-index: 1;
}

main > .final-flow {
  position: relative;
  z-index: auto;
}

.hero-photo video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: auto;
  max-width: none;
  height: 100%;
  min-height: 100%;
  object-fit: contain;
  object-position: center;
  transform: translateX(-50%);
}

@media (max-width: 1020px) {
  .hero-photo video {
    inset: 0;
    width: 100%;
    max-width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: 50% 32%;
    transform: none;
    transform-origin: center;
  }
}

/* Mobile hero keeps the desktop blue plane behind the supporting copy. */
@media (max-width: 1020px) {
  .hero-copy {
    padding-bottom: 0;
  }

  .hero-bottom {
    position: relative;
    z-index: 3;
    width: auto;
    max-width: none;
    margin: 42px -28px 0;
    padding: 32px 28px 38px;
    background: var(--blue);
  }

  .hero-bottom p {
    color: #fff;
  }

  .hero-blue-panel {
    display: none;
  }

  .hero .button.cta-button,
  .hero .button.cta-button:hover {
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.11);
    color: #fff;
    box-shadow: 0 12px 28px rgba(0, 31, 112, 0.14);
    -webkit-backdrop-filter: blur(20px) saturate(1.08);
    backdrop-filter: blur(20px) saturate(1.08);
  }

  .hero .button.cta-button:hover {
    border-color: rgba(255, 255, 255, 0.32);
    background: rgba(255, 255, 255, 0.18);
  }
}

@media (max-width: 640px) {
  .hero-bottom {
    margin-right: -14px;
    margin-left: -14px;
    padding: 28px 14px 32px;
  }
}

/* Final audit-to-contact composition */
.final-flow {
  --final-flow-line-x: 48vw;
  --final-flow-line-width: clamp(220px, 22vw, 380px);
  --final-flow-line-right: calc(var(--final-flow-line-x) + var(--final-flow-line-width));
  position: relative;
  z-index: auto;
  isolation: auto;
  overflow: visible;
}

.final-flow::before {
  display: none;
}

.final-flow > section {
  position: relative;
  z-index: auto;
}

.final-flow .audit {
  padding-bottom: clamp(34px, 3.2vw, 58px);
}

.final-flow .audit-inner,
.final-cta-inner {
  position: relative;
  z-index: 3;
}

.final-cta {
  position: relative;
  overflow: visible;
  min-height: clamp(650px, 55vw, 810px);
  padding: clamp(20px, 2.4vw, 42px) 0 clamp(20px, 2.8vw, 48px);
  background:
    linear-gradient(90deg, rgba(7, 91, 255, 0.035), transparent 32%),
    #f8f8f5;
  color: var(--ink);
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 var(--final-flow-line-x);
  z-index: 1;
  width: var(--final-flow-line-width);
  background: var(--blue);
  pointer-events: none;
}

.final-cta-inner {
  position: relative;
  z-index: auto;
  display: grid;
  grid-template-columns: minmax(390px, 0.92fr) minmax(470px, 0.92fr) minmax(300px, 0.5fr);
  align-items: center;
  gap: clamp(12px, 2.4vw, 44px);
  width: min(var(--grid-max), calc(100% - 56px));
  min-height: clamp(620px, 53vw, 780px);
  margin: 0 auto;
}

.final-cta-left {
  position: relative;
  z-index: 8;
  align-self: center;
  min-width: 0;
}

.final-cta-phrase span {
  display: block;
}

.final-cta-phrase {
  margin: 0;
  font-family: "Oswald", "Inter", sans-serif;
  font-size: clamp(3rem, 5.2vw, 6.7rem);
  font-weight: 700;
  line-height: 0.94;
  letter-spacing: 0;
  text-transform: uppercase;
}

.final-cta-phrase span:nth-child(4) {
  margin-top: 0.03em;
}

.final-cta-phrase span:nth-child(4),
.final-cta-phrase span:nth-child(5) {
  color: var(--blue);
}

html[data-language="en"] .final-cta-phrase span {
  color: var(--ink);
}

html[data-language="en"] .final-cta-phrase span:nth-child(3) {
  color: var(--blue);
}

.final-cta-portrait {
  --final-portrait-image-width: clamp(1040px, 74vw, 1210px);
  position: relative;
  z-index: 5;
  align-self: end;
  justify-self: stretch;
  width: 100%;
  height: clamp(620px, 53vw, 780px);
  min-width: 0;
  margin: 0 0 clamp(-44px, -3.2vw, -28px);
  overflow: visible;
}

.final-cta-portrait::before,
.final-cta-portrait::after {
  display: none;
}

.final-cta-portrait img {
  display: block;
  position: absolute;
  left: 48%;
  top: calc(50% - 18px);
  z-index: 1;
  width: var(--final-portrait-image-width);
  max-width: none;
  height: auto;
  max-height: none;
  opacity: 1;
  filter: none;
  clip-path: none;
  mask: none;
  -webkit-mask: none;
  mix-blend-mode: normal;
  transform: translate(-52.5%, -50%);
}

.final-cta-right {
  position: relative;
  z-index: 8;
  align-self: center;
  min-width: 0;
  display: grid;
  gap: clamp(22px, 2.2vw, 34px);
  margin-top: clamp(70px, 10vw, 154px);
}

.final-contact-heading {
  display: grid;
  gap: 4px;
  max-width: 24ch;
  margin: 0;
  color: var(--ink);
  font-family: "Oswald", "Inter", sans-serif;
  font-size: clamp(1.2rem, 1.55vw, 1.9rem);
  font-weight: 700;
  line-height: 1.02;
  text-transform: uppercase;
  text-wrap: balance;
  width: min(100%, 420px);
}

.final-contact-heading span {
  display: block;
}

.final-cta-contacts {
  position: relative;
  z-index: 9;
  display: grid;
  gap: 18px;
  min-width: 0;
}

.final-contact-button {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  justify-content: space-between;
  gap: 8px 18px;
  width: min(100%, 420px);
  min-height: clamp(92px, 7.6vw, 122px);
  padding: clamp(24px, 2.3vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--control-radius);
  background: rgba(255, 255, 255, 0.16);
  color: var(--ink);
  -webkit-backdrop-filter: blur(22px) saturate(1.12);
  backdrop-filter: blur(22px) saturate(1.12);
  box-shadow:
    0 18px 44px rgba(23, 23, 23, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.36);
  transition:
    transform 280ms var(--control-ease),
    background-color 280ms var(--control-ease),
    border-color 280ms var(--control-ease),
    box-shadow 280ms var(--control-ease);
}

.final-contact-button span {
  color: var(--ink);
  font-family: "Oswald", "Inter", sans-serif;
  font-size: clamp(1.65rem, 2vw, 2.35rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.final-contact-button small {
  grid-column: 1;
  color: rgba(23, 23, 23, 0.58);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.1;
}

.final-contact-button::after {
  grid-row: 1 / span 2;
  grid-column: 2;
  content: "↗";
  color: var(--blue);
  font-family: "Inter", sans-serif;
  font-size: clamp(18px, 1.4vw, 24px);
  font-weight: 800;
  line-height: 1;
}

.final-contact-button:hover {
  transform: translateY(-3px) scale(1.02);
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.24);
  box-shadow:
    0 24px 56px rgba(23, 23, 23, 0.12),
    0 0 30px rgba(7, 91, 255, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.48);
}

.final-name-marquee {
  position: relative;
  overflow: hidden;
  width: 100%;
  background: var(--blue);
}

.final-name-marquee-track {
  position: relative;
  display: flex;
  width: max-content;
  animation: final-name-marquee var(--final-marquee-duration, 52s) linear infinite;
  will-change: transform;
  backface-visibility: hidden;
}

.final-name-marquee-base {
  z-index: 1;
}

.final-name-marquee-mask-window {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--final-flow-line-x);
  z-index: 2;
  width: var(--final-flow-line-width);
  overflow: hidden;
  pointer-events: none;
}

.final-name-marquee-mask {
  position: relative;
  left: calc(0px - var(--final-flow-line-x));
}

.final-name-marquee-group {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
}

.final-name-marquee-group span {
  display: inline-flex;
  align-items: baseline;
  gap: 0.18em;
  padding-right: 0.42em;
  white-space: nowrap;
  font-family: "Oswald", "Inter", sans-serif;
  font-size: clamp(1.55rem, 3vw, 3.4rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.final-name-marquee-group b,
.final-name-marquee-group strong {
  font: inherit;
}

.final-name-marquee-base b,
.final-name-marquee-mask strong {
  color: #fff;
}

.final-name-marquee-base strong,
.final-name-marquee-mask b {
  color: #9ec2ff;
}

body > .footer {
  margin: 0;
  gap: 8px;
  padding: 1px clamp(10px, 2.5vw, 32px) 2px;
  background: #fff;
  color: rgba(17, 17, 17, 0.54);
  font-size: clamp(0.5rem, 0.72vw, 0.625rem);
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
}

body > .footer span:last-child {
  color: rgba(20, 97, 255, 0.7);
}

.hero-description,
.metric-label,
.service-accordion-panel p,
.process-card p,
.portfolio-card-copy p,
.testimonial-card-quote,
.testimonial-reader-text p,
.audit-subheading,
.audit-value,
.audit-features p,
.side-statement p {
  text-wrap: pretty;
}

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

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

@media (max-width: 1160px) {
  .final-flow {
    --final-flow-line-x: 42vw;
    --final-flow-line-width: clamp(150px, 25vw, 260px);
    --final-flow-line-right: calc(var(--final-flow-line-x) + var(--final-flow-line-width));
    isolation: isolate;
  }

  .final-flow::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: calc(var(--final-flow-line-x) - 1px);
    z-index: 2;
    display: block;
    width: calc(var(--final-flow-line-width) + 2px);
    background: var(--blue);
    pointer-events: none;
  }

  .final-cta::before {
    display: none;
  }

  .final-flow .audit-inner,
  .final-cta-inner,
  .final-name-marquee {
    position: relative;
    z-index: 3;
  }

  .final-cta-inner {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
    align-items: end;
  }

  .final-cta-portrait {
    --final-portrait-image-width: clamp(930px, 104vw, 1120px);
    height: clamp(570px, 68vw, 720px);
    margin-left: 0;
  }

  .final-cta-right {
    grid-column: 1 / -1;
    margin-top: 0;
  }

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

  .final-contact-button {
    width: 100%;
  }
}

@media (max-width: 760px) {
  .side-statement {
    right: 14px;
  }

  .final-flow {
    --final-flow-line-x: 14px;
    --final-flow-line-width: 74px;
    --final-flow-line-right: calc(var(--final-flow-line-x) + var(--final-flow-line-width));
  }

  .final-cta {
    min-height: 0;
    margin-top: -2px;
    padding: 34px 0 24px;
  }

  .final-cta-inner {
    grid-template-columns: 1fr;
    width: calc(100% - 28px);
    min-height: 0;
    gap: 34px;
  }

  .final-cta-phrase {
    font-size: clamp(2.7rem, 11.2vw, 4.7rem);
  }

  .final-cta-portrait {
    --final-portrait-image-width: min(188vw, 795px);
    justify-self: center;
    width: 100%;
    height: min(118vw, 520px);
    margin: 0;
  }

  .final-cta-portrait img {
    max-height: none;
  }

  .final-cta-contacts {
    grid-template-columns: 1fr;
  }

  .final-contact-button {
    min-height: 82px;
  }

  .final-name-marquee-group span {
    font-size: clamp(1.45rem, 8vw, 2.4rem);
  }
}

@media (prefers-reduced-motion: reduce) {
.final-name-marquee-track {
    animation: none;
  }

  .final-contact-button {
    transition: none;
  }
}

/* Final compact-header overrides: keep the language control on the same row. */
@media (max-width: 1020px) {
  .topbar-actions {
    grid-column: 2;
  }
}

@media (max-width: 640px) {
  .topbar {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .topbar-actions {
    grid-column: 2;
    gap: 0;
    position: absolute;
    top: 50%;
    right: 18px;
    display: flex;
    transform: translateY(-50%);
  }

  .language-switcher {
    font-size: 10px;
  }
}

@media (max-width: 760px) {
  html[data-language="en"] .final-cta-phrase {
    max-width: 13.2ch;
    font-size: clamp(2.35rem, 10.2vw, 4rem);
    line-height: 0.96;
  }

  html[data-language="en"] .final-cta-phrase span {
    white-space: normal;
    word-break: normal;
    overflow-wrap: normal;
  }

  html[data-language="en"] .final-cta-phrase span:nth-child(1) {
    max-width: 4.7ch;
  }

  html[data-language="en"] .final-cta-phrase span:nth-child(2) {
    max-width: 13.2ch;
  }

  html[data-language="en"] .final-cta-phrase span:nth-child(3) {
    color: var(--ink);
  }

  html[data-language="en"] .final-cta-phrase span:nth-child(5) {
    color: var(--blue);
  }
}
