/* Native CSS. Design variance: 8; motion intensity: 6; visual density: 3.
   Shape system: 12px imagery, 8px form fields, pill-shaped actions.
   Layers: content 0, header 10, skip link 20, native dialog top layer. */
@font-face {
  font-family: Manrope;
  src: url("assets/fonts/manrope-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Manrope;
  src: url("assets/fonts/manrope-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Manrope;
  src: url("assets/fonts/manrope-800.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
:root {
  --surface: #f7f8fa;
  --surface-alt: #edf0f5;
  --text: #1b1e24;
  --muted: #60656e;
  --accent: #2158df;
  --accent-hover: #1644bb;
  --line: #d8dce3;
  --field: #f7f8fa;
  --button-text: #fafbff;
  --image-surface: #eef0f3;
  --logo-filter: none;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  color-scheme: light;
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --surface: #14171d;
    --surface-alt: #1b2029;
    --text: #f2f4f8;
    --muted: #abb3c2;
    --accent: #91b1ff;
    --accent-hover: #b3caff;
    --line: #343c49;
    --field: #202630;
    --button-text: #101c38;
    --image-surface: #252d3c;
    --logo-filter: invert(0.9);
    color-scheme: dark;
  }
}
:root[data-theme="dark"] {
  --surface: #14171d;
  --surface-alt: #1b2029;
  --text: #f2f4f8;
  --muted: #abb3c2;
  --accent: #91b1ff;
  --accent-hover: #b3caff;
  --line: #343c49;
  --field: #202630;
  --button-text: #101c38;
  --image-surface: #252d3c;
  --logo-filter: invert(0.9);
  color-scheme: dark;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
  background: var(--surface);
  color: var(--text);
  font-family: Manrope, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.modal-open {
  overflow: hidden;
}
button,
input,
textarea,
select {
  font: inherit;
}
button,
a,
input,
textarea,
select {
  -webkit-tap-highlight-color: transparent;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  cursor: pointer;
}
button:disabled {
  cursor: default;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  font-weight: 800;
}
button {
  color: inherit;
}
button,
a {
  touch-action: manipulation;
}
::selection {
  background: var(--accent);
  color: var(--button-text);
}
[hidden] {
  display: none !important;
}
:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 5px;
}
.wrap {
  width: min(1280px, calc(100% - 112px));
  margin-inline: auto;
}
.section {
  padding-block: 112px;
}
.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;
}
.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 20;
  padding: 10px 20px;
  background: var(--accent);
  color: var(--button-text);
  transform: translateY(-150%);
}
.skip-link:focus {
  transform: translateY(0);
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand {
  display: block;
  flex-shrink: 0;
  width: 222px;
}
.brand img {
  width: 100%;
  height: auto;
}
.desktop-nav {
  display: flex;
  gap: 34px;
  margin-left: auto;
  margin-right: 36px;
}
.desktop-nav a {
  font-size: 13px;
  font-weight: 600;
  position: relative;
  padding: 8px 0;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease);
}
.desktop-nav a:hover::after,
.desktop-nav a[aria-current]::after {
  transform: scaleX(1);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 38px;
  min-height: 54px;
  border: 1px solid transparent;
  padding: 14px 25px;
  border-radius: 100px;
  background: var(--accent);
  color: var(--button-text);
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
  transition:
    transform 0.3s var(--ease),
    background 0.2s;
}
.button span {
  font-family: Arial, sans-serif;
  font-size: 23px;
  line-height: 1;
}
.button:hover {
  background: var(--accent-hover);
  transform: translateY(-3px);
}
.button:active {
  transform: scale(0.97);
}
.button-small {
  min-height: 43px;
  padding: 10px 18px;
  gap: 23px;
  font-size: 12px;
}
.theme-toggle {
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  padding: 0;
}
.theme-symbol {
  font-size: 22px;
  line-height: 1;
}
.theme-toggle:hover {
  color: var(--accent);
}
.menu-toggle {
  display: none;
}
.mobile-nav {
  display: none;
}
.hero {
  display: grid;
  grid-template-columns: 1.06fr 1fr;
  align-items: center;
  gap: 22px;
  min-height: 590px;
  padding-block: 70px 65px;
}
.hero-copy {
  position: relative;
  z-index: 1;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 26px;
}
.hero h1 {
  font-size: clamp(58px, 6.35vw, 91px);
  line-height: 1.06;
  letter-spacing: -0.075em;
  white-space: nowrap;
}
.hero h1 span {
  color: var(--accent);
}
.hero-description {
  font-size: 16px;
  line-height: 1.75;
  max-width: 360px;
  margin-top: 28px;
  color: var(--muted);
}
.hero-button {
  margin-top: 32px;
  min-width: 162px;
}
.hero-art {
  border-radius: 12px;
  overflow: hidden;
  background: #eff0f2;
  aspect-ratio: 1.13;
  isolation: isolate;
}
.hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.clients {
  display: flex;
  align-items: center;
  gap: 95px;
  padding-block: 31px 35px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.clients > p {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  flex-shrink: 0;
}
.clients > p span {
  color: var(--muted);
  font-weight: 400;
}
.client-logos {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  padding-inline: 10px 55px;
  gap: 40px;
}
.client-logos img {
  width: 100px;
  height: 44px;
  object-fit: contain;
  filter: var(--logo-filter);
  opacity: 0.75;
}
.client-logos img:nth-child(2) {
  width: 56px;
}
.client-logos img:nth-child(4) {
  width: 78px;
}
h2 {
  font-size: clamp(38px, 4.1vw, 59px);
  letter-spacing: -0.06em;
  line-height: 1.12;
}
.section-heading p {
  font-size: 15px;
  color: var(--muted);
  margin-top: 22px;
  max-width: 460px;
}
.work-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 35px;
  margin-bottom: 36px;
}
.filter {
  padding: 10px 18px;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  min-height: 42px;
  transition:
    background 0.2s,
    color 0.2s,
    transform 0.2s;
}
.filter:hover {
  border-color: var(--text);
  transform: translateY(-2px);
}
.filter.is-active {
  color: var(--surface);
  background: var(--text);
  border-color: var(--text);
}
.filter span {
  font-size: 10px;
  margin-left: 8px;
  opacity: 0.75;
}
.work-grid {
  display: grid;
  grid-template-columns: 1.12fr 1fr;
  gap: 54px 40px;
  margin-top: 35px;
  align-items: start;
}
.work-filters:not([hidden]) + .sr-only + .work-grid {
  margin-top: 0;
}
.project {
  display: block;
  min-width: 0;
}
.project-offset {
  padding-top: 74px;
}
.project-image {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1.38;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--image-surface);
}
.project-image img {
  transition: transform 0.7s var(--ease);
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.project:hover .project-image img {
  transform: scale(1.045);
}
.project-abbott {
  aspect-ratio: 1.55;
}
.project-abbott img {
  object-fit: cover;
}
.project-inertia {
  background: #dcdcea;
  aspect-ratio: 1.32;
  padding: 40px 22px;
}
.project-inertia img {
  height: auto;
  object-fit: contain;
  box-shadow: 0 20px 35px #27214a25;
}
.project-juhayna {
  aspect-ratio: 1.22;
}
.project-juhayna img {
  object-position: center 56%;
}
.project-gsk {
  background: #e2e7ef;
  padding: 32px 40px;
  aspect-ratio: 1.1;
}
.project-gsk img {
  height: 100%;
  width: auto;
  object-fit: contain;
  border-radius: 4px;
}
.project-nau {
  background: #eae5de;
  aspect-ratio: 1.55;
  padding: 24px;
}
.project-nau img {
  height: auto;
  object-fit: contain;
}
.project-insomnia {
  background: #e3e9e2;
  padding: 26px;
  aspect-ratio: 1.38;
}
.project-insomnia img {
  height: 100%;
  width: auto;
  object-fit: contain;
}
.project-caption {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 19px;
  align-items: start;
}
.project h3 {
  font-size: 19px;
  letter-spacing: -0.035em;
}
.project-caption p {
  font-size: 13px;
  color: var(--muted);
  margin-top: 3px;
}
.project-arrow {
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 23px;
  line-height: 1;
  font-family: Arial, sans-serif;
  transition:
    background 0.25s,
    color 0.25s,
    transform 0.3s;
}
.project:hover .project-arrow {
  background: var(--accent);
  color: var(--button-text);
  border-color: var(--accent);
  transform: rotate(45deg);
}
.project-category {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-top: 12px;
}
.work-grid.is-filtered .project-offset {
  padding-top: 0;
}
.work-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 65px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  font-size: 13px;
}
.work-footer p {
  color: var(--muted);
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  font-size: 13px;
  font-weight: 600;
  padding-block: 5px;
  border-bottom: 1px solid var(--text);
  width: fit-content;
}
.text-link span[aria-hidden] {
  font-size: 20px;
  transition: transform 0.3s var(--ease);
}
.text-link:hover {
  color: var(--accent);
  border-color: var(--accent);
}
.text-link:hover span[aria-hidden] {
  transform: translate(3px, -3px);
}
.expertise {
  background: var(--surface-alt);
}
.expertise-layout {
  display: grid;
  grid-template-columns: 1fr 1.12fr;
  gap: 110px;
}
.expertise-heading p {
  max-width: 330px;
  color: var(--muted);
  margin-top: 26px;
}
.expertise-heading .text-link {
  margin-top: 30px;
}
.service-list {
  border-top: 1px solid var(--line);
}
.service-list details {
  border-bottom: 1px solid var(--line);
}
.service-list summary {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  list-style: none;
  font-size: 23px;
  font-weight: 600;
  letter-spacing: -0.04em;
  padding: 24px 0;
}
.service-list summary::-webkit-details-marker {
  display: none;
}
.service-list summary:hover {
  color: var(--accent);
}
.detail-sign {
  position: relative;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.detail-sign::before,
.detail-sign::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 11px;
  width: 16px;
  height: 1.5px;
  background: currentColor;
  transition: transform 0.3s var(--ease);
}
.detail-sign::after {
  transform: rotate(90deg);
}
details[open] .detail-sign::after {
  transform: rotate(0);
}
details[open] summary {
  color: var(--accent);
}
.service-body {
  padding: 0 32px 28px 0;
}
.service-body > p {
  color: var(--muted);
  font-size: 13px;
  max-width: 430px;
}
.service-body ul {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px 22px;
  font-size: 11px;
  font-weight: 600;
}
.service-body li::before {
  content: "↗";
  margin-right: 8px;
  color: var(--accent);
}
.crew-intro {
  margin-bottom: 50px;
}
.crew-intro .eyebrow {
  margin-bottom: 20px;
}
.crew-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}
.crew-image {
  border-radius: 12px;
  overflow: hidden;
}
.crew-image img {
  width: 100%;
  aspect-ratio: 1.15;
  object-fit: cover;
}
.crew-copy .large-copy {
  font-size: 23px;
  line-height: 1.6;
  letter-spacing: -0.035em;
  color: var(--text);
  margin-top: 0;
}
.crew-copy > p {
  color: var(--muted);
  font-size: 13px;
  margin-top: 20px;
  max-width: 480px;
}
.crew-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 33px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.crew-facts strong {
  display: block;
  font-size: 35px;
  letter-spacing: -0.055em;
  font-weight: 600;
}
.crew-facts span {
  display: block;
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px;
}
.values {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 54px;
  padding-block: 23px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.contact {
  background: var(--surface-alt);
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 90px;
  align-items: start;
}
.contact h2 {
  font-size: clamp(52px, 5.4vw, 76px);
}
.contact h2 span {
  color: var(--accent);
}
.contact-copy > p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--muted);
  margin-top: 24px;
}
.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  margin-top: 30px;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.03em;
  border-bottom: 1px solid var(--line);
  padding-bottom: 6px;
}
.contact-email:hover {
  color: var(--accent);
}
.contact-copy .contact-locations {
  font-size: 11px;
  margin-top: 20px;
}
.project-form {
  padding-top: 8px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 23px;
  min-width: 0;
}
.field label {
  font-size: 11px;
  font-weight: 600;
}
.field input,
.field select,
.field textarea {
  border: 1px solid var(--line);
  background: var(--field);
  color: var(--text);
  width: 100%;
  min-width: 0;
  padding: 13px 14px;
  border-radius: 8px;
  font-size: 12px;
  line-height: 1.6;
}
.field input::placeholder,
.field textarea::placeholder {
  color: var(--muted);
  opacity: 1;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.field textarea {
  resize: vertical;
  min-height: 105px;
  max-height: 350px;
}
.form-action {
  display: flex;
  align-items: center;
  gap: 25px;
}
.form-action > p {
  font-size: 10px;
  line-height: 1.7;
  color: var(--muted);
}
.form-status {
  font-size: 12px;
  color: var(--text);
  margin-top: 16px;
}
.form-status:empty {
  display: none;
}
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding-block: 36px;
}
.site-footer .brand {
  width: 180px;
}
.site-footer p {
  font-size: 11px;
  color: var(--muted);
}
.site-footer small {
  font-size: 10px;
  color: var(--muted);
}
.back-top {
  border: 1px solid var(--line);
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.back-top:hover {
  background: var(--accent);
  color: var(--button-text);
}
.project-dialog {
  border: 1px solid var(--line);
  padding: 0;
  border-radius: 16px;
  background: var(--surface);
  color: var(--text);
  width: min(860px, calc(100% - 36px));
  max-height: 88dvh;
  overflow: auto;
}
.project-dialog::backdrop {
  background: #101725bd;
  backdrop-filter: blur(7px);
}
.dialog-close {
  position: absolute;
  right: 16px;
  top: 16px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 28px;
  line-height: 1;
}
.dialog-close:hover {
  background: var(--accent);
  color: var(--button-text);
}
.dialog-visual {
  background: var(--image-surface);
  padding: 40px 25px 25px;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dialog-visual img {
  width: auto;
  height: auto;
  max-height: 45dvh;
  max-width: 100%;
  object-fit: contain;
}
.dialog-copy {
  padding: 30px 36px 36px;
}
.dialog-copy .project-category {
  margin-top: 0;
  margin-bottom: 12px;
}
.dialog-copy h2 {
  font-size: 36px;
}
.dialog-copy > p:not(.project-category) {
  margin-top: 16px;
  color: var(--muted);
  font-size: 14px;
  max-width: 640px;
}
.dialog-copy .text-link {
  margin-top: 25px;
}
@media (prefers-reduced-motion: no-preference) {
  .hero-copy {
    animation: enter-up 0.85s var(--ease) both;
  }
  .hero-art {
    animation: enter-art 1.1s 0.1s var(--ease) both;
  }
  .js .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition:
      opacity 0.75s var(--ease),
      transform 0.75s var(--ease);
  }
  .js .reveal.is-visible {
    opacity: 1;
    transform: none;
  }
  .project-dialog[open] {
    animation: enter-up 0.35s var(--ease);
  }
  @keyframes enter-up {
    from {
      opacity: 0;
      transform: translateY(24px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  @keyframes enter-art {
    from {
      opacity: 0;
      transform: translateY(25px) rotate(3deg) scale(0.97);
    }
    to {
      opacity: 1;
      transform: none;
    }
  }
}
@media (min-width: 1600px) {
  .hero {
    min-height: 650px;
  }
  .hero h1 {
    font-size: 94px;
  }
}
@media (max-width: 1100px) {
  .wrap {
    width: calc(100% - 72px);
  }
  .desktop-nav {
    gap: 24px;
    margin-right: 10px;
  }
  .brand {
    width: 195px;
  }
  .header-actions {
    gap: 14px;
  }
  .hero {
    min-height: 540px;
  }
  .hero h1 {
    font-size: clamp(54px, 6.6vw, 74px);
  }
  .hero-description {
    font-size: 14px;
    max-width: 320px;
  }
  .hero .eyebrow {
    font-size: 9px;
  }
  .expertise-layout,
  .crew-layout,
  .contact-layout {
    gap: 55px;
  }
  .client-logos {
    padding-right: 10px;
  }
  .clients {
    gap: 60px;
  }
  .work-grid {
    gap: 45px 30px;
  }
  .crew-copy .large-copy {
    font-size: 21px;
  }
  .site-footer p {
    display: none;
  }
}
@media (max-width: 900px) {
  .desktop-nav {
    display: none;
  }
  .header-inner {
    gap: 20px;
    height: 72px;
  }
  .header-actions {
    margin-left: auto;
  }
  .menu-toggle {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0 10px 8px;
    font-size: 12px;
    font-weight: 600;
    background: transparent;
    border: 0;
  }
  .menu-toggle span {
    font-size: 23px;
    line-height: 1;
  }
  .mobile-nav:not([hidden]) {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid var(--line);
    padding: 12px 36px 25px;
    background: var(--surface);
  }
  .mobile-nav a {
    display: flex;
    justify-content: space-between;
    font-size: 23px;
    letter-spacing: -0.04em;
    padding: 12px 0;
  }
  .mobile-nav a:hover {
    color: var(--accent);
  }
  .hero {
    min-height: 490px;
    gap: 12px;
    padding-block: 50px;
  }
  .hero h1 {
    font-size: clamp(47px, 6.8vw, 64px);
  }
  .hero .eyebrow {
    max-width: 240px;
  }
  .hero-art {
    aspect-ratio: 0.95;
  }
  .clients {
    gap: 45px;
  }
  .client-logos {
    gap: 30px;
  }
  .client-logos img {
    width: 80px;
  }
  .section {
    padding-block: 85px;
  }
  .service-list summary {
    font-size: 20px;
  }
  .expertise-layout {
    gap: 45px;
  }
  .crew-layout {
    gap: 35px;
  }
  .crew-copy .large-copy {
    font-size: 18px;
  }
  .crew-image img {
    aspect-ratio: 0.85;
  }
  .contact-layout {
    gap: 40px;
  }
  .contact h2 {
    font-size: 52px;
  }
  .contact-email {
    font-size: 17px;
  }
  .form-row {
    gap: 15px;
  }
  .form-action {
    gap: 16px;
  }
  .form-action .button {
    gap: 24px;
    padding-inline: 20px;
  }
  .values {
    font-size: 13px;
  }
}
@media (max-width: 767px) {
  html {
    scroll-padding-top: 90px;
  }
  .wrap {
    width: calc(100% - 40px);
  }
  .section {
    padding-block: 70px;
  }
  .header-inner {
    height: 68px;
    gap: 12px;
  }
  .brand {
    width: 174px;
  }
  .header-actions {
    gap: 13px;
  }
  .header-actions > .button {
    display: none;
  }
  .theme-toggle {
    width: 30px;
    height: 30px;
  }
  .theme-symbol {
    font-size: 19px;
  }
  .menu-toggle {
    font-size: 11px;
    gap: 7px;
  }
  .mobile-nav:not([hidden]) {
    padding-inline: 20px;
  }
  .hero {
    grid-template-columns: 1fr;
    gap: 38px;
    padding-block: 46px 35px;
    min-height: auto;
  }
  .hero h1 {
    font-size: clamp(48px, 11.8vw, 78px);
    line-height: 1.06;
    letter-spacing: -0.07em;
  }
  .hero .eyebrow {
    max-width: none;
    font-size: 9px;
    margin-bottom: 22px;
  }
  .hero-description {
    max-width: 340px;
    font-size: 14px;
    margin-top: 22px;
  }
  .hero-button {
    margin-top: 26px;
    min-height: 48px;
    font-size: 13px;
    padding: 12px 22px;
    min-width: 145px;
  }
  .hero-art {
    aspect-ratio: 1.45;
    max-height: 390px;
  }
  .hero-art img {
    object-position: center 48%;
  }
  .clients {
    align-items: flex-start;
    gap: 22px;
    padding-block: 25px;
    flex-direction: column;
  }
  .clients > p {
    font-size: 12px;
  }
  .clients > p br {
    display: none;
  }
  .clients > p span {
    margin-left: 3px;
  }
  .client-logos {
    width: 100%;
    gap: 20px;
    padding: 0;
    justify-content: space-between;
  }
  .client-logos img {
    width: 75px;
    height: 33px;
  }
  .client-logos img:nth-child(2) {
    width: 42px;
  }
  .client-logos img:nth-child(4) {
    width: 57px;
  }
  h2 {
    font-size: 41px;
    line-height: 1.12;
  }
  .section-heading p {
    max-width: 300px;
    font-size: 13px;
    margin-top: 18px;
  }
  .work-filters {
    margin-top: 28px;
    margin-bottom: 28px;
    gap: 8px;
  }
  .filter {
    font-size: 10px;
    min-height: 38px;
    padding: 9px 12px;
  }
  .filter span {
    font-size: 9px;
    margin-left: 5px;
  }
  .work-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    margin-top: 28px;
  }
  .project-offset {
    padding-top: 0;
  }
  .project-image {
    aspect-ratio: 1.3;
  }
  .project-abbott,
  .project-inertia,
  .project-nau {
    aspect-ratio: 1.55;
  }
  .project-gsk {
    aspect-ratio: 1.3;
  }
  .project-insomnia {
    aspect-ratio: 1.25;
  }
  .project h3 {
    font-size: 19px;
  }
  .project-caption p {
    font-size: 12px;
  }
  .project-category {
    font-size: 9px;
    margin-top: 9px;
  }
  .project-caption {
    margin-top: 16px;
  }
  .work-footer {
    margin-top: 35px;
    gap: 16px;
    align-items: flex-start;
    flex-direction: column;
    font-size: 12px;
  }
  .text-link {
    font-size: 12px;
  }
  .expertise-layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .expertise-heading p {
    font-size: 14px;
    margin-top: 22px;
    max-width: 340px;
  }
  .expertise-heading .text-link {
    margin-top: 22px;
  }
  .service-list summary {
    font-size: 23px;
    padding-block: 21px;
  }
  .service-body {
    padding-right: 15px;
  }
  .service-body ul {
    font-size: 11px;
    gap: 12px;
  }
  .crew-intro {
    margin-bottom: 30px;
  }
  .crew-intro h2 {
    font-size: clamp(34px, 8.5vw, 52px);
  }
  .crew-intro .eyebrow {
    font-size: 9px;
  }
  .crew-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .crew-image img {
    aspect-ratio: 1.4;
  }
  .crew-copy .large-copy {
    font-size: 22px;
  }
  .crew-copy > p {
    font-size: 13px;
    max-width: none;
  }
  .crew-facts {
    margin-top: 25px;
  }
  .crew-facts strong {
    font-size: 34px;
  }
  .values {
    gap: 15px 22px;
    justify-content: flex-start;
    font-size: 13px;
    margin-top: 30px;
  }
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact h2 {
    font-size: 58px;
  }
  .contact-copy > p {
    font-size: 13px;
  }
  .contact-email {
    font-size: 21px;
  }
  .project-form {
    padding-top: 0;
  }
  .form-row {
    gap: 16px;
  }
  .field input,
  .field textarea,
  .field select {
    font-size: 16px;
  }
  .field input::placeholder,
  .field textarea::placeholder {
    font-size: 12px;
  }
  .field label {
    font-size: 11px;
  }
  .form-action {
    gap: 24px;
  }
  .form-action .button {
    padding-inline: 23px;
    gap: 30px;
  }
  .site-footer {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 20px;
    padding-block: 30px;
  }
  .site-footer .brand {
    width: 183px;
  }
  .site-footer small {
    grid-row: 2;
    font-size: 9px;
  }
  .back-top {
    grid-row: 1;
    grid-column: 2;
  }
  .dialog-copy {
    padding: 25px;
  }
  .dialog-copy h2 {
    font-size: 30px;
  }
  .dialog-visual {
    padding: 56px 16px 20px;
  }
  .dialog-visual img {
    max-height: 38dvh;
  }
  .dialog-copy > p:not(.project-category) {
    font-size: 13px;
  }
}
@media (max-width: 380px) {
  .wrap {
    width: calc(100% - 32px);
  }
  .brand {
    width: 155px;
  }
  .header-actions {
    gap: 7px;
  }
  .hero h1 {
    font-size: 47px;
  }
  .hero .eyebrow {
    font-size: 8px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .filter {
    font-size: 9px;
    padding-inline: 10px;
  }
  .contact-email {
    font-size: 18px;
  }
  .crew-copy .large-copy {
    font-size: 20px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
