@font-face {
  font-family: Manrope;
  src: url("assets/manrope-regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: Manrope;
  src: url("assets/manrope-semibold.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: Manrope;
  src: url("assets/manrope-extrabold.ttf") format("truetype");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}

/* Quilla's original red, open layouts and one consistent type scale. */
:root {
  --red: #d12026;
  --red-hover: #b1191f;
  --ink: #202022;
  --muted: #67676c;
  --line: #e2e2e4;
  --white: #fff;
  --gutter: 64px;
  --max-width: 1536px;
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Manrope, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.modal-open {
  overflow: hidden;
}
::selection {
  color: white;
  background: var(--red);
}
h1,
h2,
h3,
p,
figure {
  margin: 0;
}
h1,
h2,
h3 {
  font-weight: 800;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}
button,
a,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
  border: 0;
  background: none;
}
img {
  display: block;
  max-width: 100%;
}
svg {
  display: block;
}
[hidden] {
  display: none !important;
}
:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 6px;
}
.contact :focus-visible {
  outline-color: white;
}
.icon-library {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  pointer-events: none;
}
.icon {
  width: 23px;
  height: 23px;
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: square;
  stroke-linejoin: miter;
}
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.text-red {
  color: var(--red);
}
.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  padding: 10px 18px;
  color: white;
  background: var(--red);
  z-index: 100;
  transform: translateY(-160%);
}
.skip-link:focus {
  transform: translateY(0);
}
.site-header {
  height: 96px;
  border-bottom: 1px solid var(--line);
  background: white;
  position: relative;
  z-index: 20;
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.brand {
  display: inline-flex;
  flex-shrink: 0;
}
.brand img {
  object-fit: contain;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-left: 45px;
}
.main-nav > a {
  font-size: 14px;
  font-weight: 600;
  position: relative;
  padding: 12px 0;
}
.main-nav > a::after {
  content: "";
  height: 1px;
  background: var(--red);
  position: absolute;
  bottom: 8px;
  left: 0;
  right: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease);
}
.main-nav > a:hover {
  color: var(--red);
}
.main-nav > a:hover::after {
  transform: scaleX(1);
}
.main-nav .mobile-contact {
  display: none;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-height: 54px;
  padding: 14px 23px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  transition:
    background 0.2s,
    color 0.2s,
    border-color 0.2s;
}
.button .icon {
  width: 22px;
  height: 22px;
  transition: transform 0.25s var(--ease);
}
.button:hover .icon {
  transform: translate(2px, -2px);
}
.button-red {
  background: var(--red);
  color: white;
}
.button-red:hover {
  background: var(--red-hover);
}
.button-outline {
  border-color: var(--red);
  color: var(--red);
  background: white;
}
.button-outline:hover {
  background: var(--red);
  color: white;
}
.header-cta {
  min-width: 166px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-height: 44px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
}
.text-link:hover {
  color: var(--red);
}
.text-link .icon {
  width: 20px;
  height: 20px;
  transition: transform 0.25s var(--ease);
}
.text-link:hover .icon {
  transform: translateY(3px);
}
.menu-toggle {
  width: 44px;
  height: 44px;
  padding: 10px;
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
}
.menu-toggle span {
  height: 1.5px;
  width: 24px;
  background: var(--ink);
  transition: transform 0.2s;
}
.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(4.25px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-4.25px) rotate(-45deg);
}
.hero {
  --cursor-x: 72%;
  --cursor-y: 42%;
  --keel-x: 0px;
  --keel-y: 0px;
  --keel-tilt: 0deg;
  --copy-x: 0px;
  --copy-y: 0px;
  --rear-x: 0px;
  --rear-y: 0px;
  --rear-tilt: 0deg;
  --middle-x: 0px;
  --middle-y: 0px;
  --middle-tilt: 0deg;
  --front-x: 0px;
  --front-y: 0px;
  --front-tilt: 0deg;
  position: relative;
  overflow: clip;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(
    440px circle at var(--cursor-x) var(--cursor-y),
    rgb(209 32 38 / 0.085),
    rgb(209 32 38 / 0.025) 38%,
    transparent 70%
  );
  opacity: 0.45;
  transition: opacity 0.55s var(--ease);
}
.hero.is-interacting::before {
  opacity: 1;
}
.hero-inner {
  min-height: 702px;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 65px;
}
.hero-copy {
  position: relative;
  z-index: 2;
  width: 58%;
  pointer-events: none;
  transform: translate3d(var(--copy-x), var(--copy-y), 0);
  transition: transform 0.65s var(--ease);
  will-change: transform;
}
.hero.is-interacting .hero-copy {
  transition-duration: 0.18s;
}
.hero-copy a {
  pointer-events: auto;
}
.hero h1 {
  font-size: clamp(80px, 8.6vw, 132px);
  line-height: 1.035;
  letter-spacing: -0.055em;
  word-spacing: 0.05em;
}
.hero h1 span {
  display: block;
  white-space: nowrap;
}
.hero-copy > p {
  font-size: 19px;
  line-height: 1.55;
  margin-top: 28px;
  letter-spacing: -0.02em;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 29px;
  margin-top: 34px;
}
.hero-art {
  position: absolute;
  right: 8px;
  top: -2px;
  width: 55.5%;
  height: 100%;
  display: flex;
  align-items: center;
  pointer-events: none;
  overflow: hidden;
}
.keel-vector {
  width: 100%;
  height: 100%;
  overflow: visible;
  transform-origin: 56% 86%;
  transform: translate3d(var(--keel-x), var(--keel-y), 0)
    rotate(var(--keel-tilt));
  transition: transform 0.65s var(--ease);
  will-change: transform;
}
.hero.is-interacting .keel-vector {
  transition-duration: 0.18s;
}
.keel-world,
.keel-blade {
  transform-box: fill-box;
  transform-origin: 50% 100%;
  will-change: transform;
}
.keel-world {
  animation: keel-float 7s ease-in-out infinite;
}
.keel-blade--rear {
  animation: blade-rear-breathe 7.6s ease-in-out infinite;
}
.keel-blade--middle {
  animation: blade-middle-breathe 6.8s ease-in-out -1.4s infinite;
}
.keel-blade--front {
  animation: blade-front-breathe 6.1s ease-in-out -2.3s infinite;
}
.keel-shadow {
  transform-box: fill-box;
  transform-origin: center;
  animation: keel-shadow-breathe 7s ease-in-out infinite;
}
.keel-wake {
  fill: none;
  stroke: var(--red);
  stroke-width: 1.4;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
  opacity: 0.16;
  stroke-dasharray: 12 18;
  animation: wake-flow 9s linear infinite;
}
.keel-wake--near {
  opacity: 0.08;
  animation-duration: 12s;
  animation-direction: reverse;
}
.keel-depth {
  mix-blend-mode: multiply;
}
.keel-glint,
.keel-rim {
  fill: none;
  stroke: rgb(255 255 255 / 0.58);
  stroke-width: 2.2;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
}
.keel-glint {
  stroke-dasharray: 95 580;
  animation: glint-travel 6.4s ease-in-out infinite;
}
.keel-glint--middle {
  animation-delay: -2.1s;
}
.keel-glint--front {
  animation-delay: -4s;
}
.keel-rim {
  stroke-width: 1.3;
  opacity: 0.42;
}
@keyframes keel-float {
  0%,
  100% {
    transform: translate3d(0, 4px, 0) rotate(-0.25deg);
  }
  50% {
    transform: translate3d(3px, -5px, 0) rotate(0.25deg);
  }
}
@keyframes blade-rear-breathe {
  0%,
  100% {
    transform: translate3d(var(--rear-x), var(--rear-y), 0)
      rotate(var(--rear-tilt));
  }
  50% {
    transform: translate3d(var(--rear-x), calc(var(--rear-y) - 3px), 0)
      rotate(calc(var(--rear-tilt) + 0.35deg));
  }
}
@keyframes blade-middle-breathe {
  0%,
  100% {
    transform: translate3d(var(--middle-x), var(--middle-y), 0)
      rotate(var(--middle-tilt));
  }
  50% {
    transform: translate3d(var(--middle-x), calc(var(--middle-y) - 2px), 0)
      rotate(calc(var(--middle-tilt) - 0.45deg));
  }
}
@keyframes blade-front-breathe {
  0%,
  100% {
    transform: translate3d(var(--front-x), var(--front-y), 0)
      rotate(var(--front-tilt));
  }
  50% {
    transform: translate3d(var(--front-x), calc(var(--front-y) + 2px), 0)
      rotate(calc(var(--front-tilt) + 0.55deg));
  }
}
@keyframes keel-shadow-breathe {
  0%,
  100% {
    transform: scaleX(0.96);
    opacity: 0.2;
  }
  50% {
    transform: scaleX(1.02);
    opacity: 0.13;
  }
}
@keyframes wake-flow {
  to {
    stroke-dashoffset: -120;
  }
}
@keyframes glint-travel {
  0%,
  16% {
    stroke-dashoffset: 120;
    opacity: 0;
  }
  34%,
  68% {
    opacity: 0.8;
  }
  86%,
  100% {
    stroke-dashoffset: -520;
    opacity: 0;
  }
}
.hero-meta {
  position: relative;
  z-index: 3;
  background: white;
  border-top: 1px solid var(--line);
}
.hero-meta .container {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 12px;
}
.section-space {
  padding-block: 96px;
}
.services {
  padding-top: 66px;
}
.section-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.045em;
  color: var(--red);
  margin-bottom: 22px;
}
h2 {
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1.13;
  letter-spacing: -0.055em;
}
.services-layout {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 70px;
}
.service-list {
  margin-top: -9px;
}
.service-row {
  display: grid;
  grid-template-columns: 48px 1fr 24px;
  align-items: center;
  column-gap: 25px;
  padding: 26px 0;
  min-height: 109px;
  border-bottom: 1px solid var(--line);
  transition: color 0.2s;
}
.service-row:last-child {
  border-bottom: 0;
}
.service-row:hover h3,
.service-row:hover > .icon {
  color: var(--red);
}
.service-number {
  font-size: 28px;
  line-height: 1;
  font-weight: 600;
  color: var(--red);
  letter-spacing: -0.04em;
}
.service-row h3 {
  font-size: 23px;
  line-height: 1.35;
  letter-spacing: -0.04em;
}
.service-row p {
  font-size: 13px;
  margin-top: 5px;
  color: var(--muted);
}
.service-row > .icon {
  width: 24px;
  height: 24px;
  transition: transform 0.25s var(--ease);
}
.service-row:hover > .icon {
  transform: translate(3px, -3px);
}
.projects {
  padding-top: 20px;
  position: relative;
}
.anchor-alias {
  position: absolute;
  top: 0;
  left: 0;
}
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 32px;
}
.section-header .section-label {
  margin-bottom: 18px;
}
.section-header .text-link {
  flex-shrink: 0;
  margin-bottom: 3px;
}
.project-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 28px;
  row-gap: 40px;
}
.project-link {
  display: block;
}
.project-image {
  height: auto;
  aspect-ratio: 1.78;
  overflow: hidden;
  background: #f3f3f4;
  position: relative;
}
.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.project-image-uss img,
.project-image-pos img,
.project-image-graduati img,
.project-image-lois img {
  object-position: top;
}
.project-link:hover .project-image img {
  transform: scale(1.035);
}
.project-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 20px;
}
.project-caption h3 {
  font-size: 21px;
  letter-spacing: -0.035em;
  line-height: 1.35;
}
.project-caption p,
.more-projects p {
  font-size: 13px;
  color: var(--muted);
  margin-top: 5px;
}
.project-caption > .icon {
  margin-right: 3px;
}
.project-link:hover h3 {
  color: var(--red);
}
.more-projects {
  margin-top: 36px;
}
.more-projects > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--line);
  padding: 20px 0;
}
.more-projects h3 {
  font-size: 17px;
  letter-spacing: -0.025em;
}
.more-projects > a:hover h3,
.more-projects > a:hover > .icon {
  color: var(--red);
}
.team {
  border-top: 1px solid var(--line);
  position: relative;
}
.team-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 90px;
  align-items: start;
}
.team-description {
  font-size: 16px;
  letter-spacing: -0.025em;
  margin-top: 30px;
  max-width: 400px;
}
.team-member {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.team-member:first-child {
  padding-top: 0;
}
.team-member:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.team-member img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  filter: grayscale(1);
  transition: filter 0.3s;
}
.team-member:hover img {
  filter: grayscale(0);
}
.team-member h3 {
  font-size: 19px;
  letter-spacing: -0.035em;
  line-height: 1.35;
}
.team-member p {
  font-size: 14px;
  color: var(--muted);
  margin-top: 5px;
}
.contact {
  background: var(--red);
  color: white;
  padding: 64px 0 51px;
  position: relative;
}
.contact .section-label {
  color: white;
  margin-bottom: 20px;
}
.contact-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.contact h2 {
  font-size: clamp(80px, 8.6vw, 124px);
  line-height: 1.02;
  letter-spacing: -0.065em;
}
.contact-arrow {
  height: 164px;
  width: 164px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid white;
  border-radius: 50%;
  margin-right: 3px;
  transition:
    background 0.25s,
    color 0.25s;
  flex-shrink: 0;
}
.contact-arrow > .icon {
  width: 90px;
  height: 90px;
  stroke-width: 1.15;
  transition: transform 0.35s var(--ease);
}
.contact-arrow:hover {
  background: white;
  color: var(--red);
}
.contact-arrow:hover > .icon {
  transform: rotate(45deg);
}
.contact-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 28px;
}
.contact-links {
  display: flex;
  gap: 34px;
  align-items: center;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.025em;
}
.contact-links a + a {
  border-left: 1px solid #ffffff70;
  padding-left: 34px;
}
.contact-links a:hover {
  text-decoration: underline;
  text-underline-offset: 6px;
}
.button-white {
  border-color: white;
  color: white;
  background: transparent;
  min-width: 223px;
}
.button-white:hover {
  background: white;
  color: var(--red);
}
.site-footer {
  padding: 30px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.site-footer p {
  font-size: 11px;
  margin-left: auto;
}
.back-top {
  font-size: 11px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 30px;
  min-height: 44px;
}
.back-top .icon {
  width: 16px;
  height: 16px;
}
.back-top:hover {
  color: var(--red);
}
/* Details stay available without making the landing longer. */
dialog {
  width: calc(100% - 32px);
  max-width: 590px;
  max-height: calc(100dvh - 40px);
  padding: 0;
  border: 0;
  color: var(--ink);
  background: white;
  overscroll-behavior: contain;
}
dialog::backdrop {
  background: rgb(20 20 26 / 0.6);
  backdrop-filter: blur(5px);
}
.dialog-inner {
  padding: 36px;
  position: relative;
}
.dialog-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dialog-close:hover {
  color: var(--red);
  background: #fcf2f2;
}
.dialog-inner .section-label {
  margin-bottom: 14px;
}
.dialog-inner h2 {
  font-size: 42px;
  letter-spacing: -0.05em;
  line-height: 1.1;
  padding-right: 22px;
}
.contact-dialog form {
  margin-top: 28px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 18px;
  min-width: 0;
}
.field label {
  font-size: 12px;
  font-weight: 600;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid #d7d7da;
  border-radius: 0;
  background: white;
  padding: 12px;
  font-size: 14px;
  line-height: 1.5;
  min-height: 47px;
}
.field select {
  padding-right: 22px;
}
.field textarea {
  resize: vertical;
  min-height: 96px;
  max-height: 250px;
}
.field input::placeholder,
.field textarea::placeholder {
  color: #76767c;
}
.field :focus-visible {
  outline-offset: 2px;
}
.form-submit {
  width: 100%;
  justify-content: space-between;
}
.form-note {
  font-size: 11px;
  color: var(--muted);
  text-align: center;
  margin-top: 11px;
}
.dialog-direct {
  display: block;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 11px;
  color: var(--muted);
  text-align: center;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.dialog-direct:hover {
  color: var(--red);
}
.contact-ready {
  padding-top: 30px;
}
.contact-ready h3 {
  font-size: 24px;
  letter-spacing: -0.035em;
}
.contact-ready > p {
  font-size: 14px;
  color: var(--muted);
  margin-top: 10px;
}
.ready-actions {
  display: flex;
  gap: 12px;
  margin-top: 26px;
  flex-wrap: wrap;
}
.ready-actions .button {
  flex: 1;
  gap: 12px;
  white-space: nowrap;
}
.edit-message {
  font-size: 12px;
  margin-top: 18px;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.project-description {
  margin-top: 24px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
}
.project-features {
  list-style: none;
  padding: 0;
  margin: 25px 0 30px;
}
.project-features li {
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.project-features li::before {
  content: "/";
  color: var(--red);
  margin-right: 14px;
  font-weight: 600;
}
@media (min-width: 1600px) {
  .hero-art {
    right: -14px;
  }
  .hero-inner {
    min-height: 740px;
  }
  .section-space {
    padding-block: 110px;
  }
  .projects {
    padding-top: 20px;
  }
}
@media (max-width: 1199px) {
  :root {
    --gutter: 40px;
  }
  .hero-inner {
    min-height: 625px;
    padding-block: 65px;
  }
  .hero h1 {
    font-size: 8.4vw;
  }
  .hero-copy > p {
    font-size: 16px;
  }
  .hero-actions {
    gap: 20px;
    flex-wrap: wrap;
  }
  .hero-actions .text-link {
    font-size: 12px;
    gap: 12px;
  }
  .hero-art {
    right: -8px;
    width: 57%;
  }
  .services-layout {
    gap: 45px;
  }
  .service-row {
    column-gap: 18px;
    grid-template-columns: 37px 1fr 22px;
  }
  .service-row h3 {
    font-size: 20px;
  }
  .service-row p {
    font-size: 12px;
  }
  .team-layout {
    gap: 55px;
  }
  .contact-arrow {
    width: 140px;
    height: 140px;
  }
  .contact-arrow > .icon {
    width: 76px;
    height: 76px;
  }
  .section-header .text-link {
    font-size: 12px;
  }
}
@media (max-width: 959px) {
  :root {
    --gutter: 30px;
  }
  .site-header {
    height: 82px;
  }
  .main-nav {
    gap: 26px;
    margin-left: 0;
  }
  .brand img {
    width: 121px;
    height: 45px;
  }
  .header-cta {
    min-width: 139px;
    min-height: 48px;
    padding: 11px 17px;
  }
  .hero-inner {
    min-height: 570px;
    padding-top: 50px;
    padding-bottom: 45px;
  }
  .hero-art {
    width: 60%;
    right: -28px;
  }
  .hero h1 {
    font-size: 8.6vw;
  }
  .hero-copy > p {
    font-size: 15px;
  }
  .hero-actions {
    gap: 12px;
    margin-top: 26px;
  }
  .hero-actions .button {
    min-height: 50px;
    padding: 12px 16px;
    font-size: 12px;
    gap: 18px;
  }
  .hero-actions .text-link {
    font-size: 12px;
  }
  .hero-meta .container {
    font-size: 11px;
  }
  .section-space {
    padding-block: 72px;
  }
  .services-layout {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 28px;
  }
  .service-row {
    padding: 23px 0;
    grid-template-columns: 28px 1fr 20px;
    column-gap: 15px;
  }
  .service-number {
    font-size: 23px;
  }
  .service-row h3 {
    font-size: 18px;
  }
  .service-row p {
    font-size: 11px;
  }
  .projects {
    padding-top: 8px;
  }
  .section-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
  .section-header .text-link {
    align-self: flex-end;
    margin-top: -14px;
  }
  .project-grid {
    column-gap: 22px;
  }
  .project-caption h3 {
    font-size: 19px;
  }
  .project-caption p {
    font-size: 11px;
  }
  .more-projects p {
    font-size: 11px;
  }
  .team-layout {
    gap: 35px;
  }
  .team-member {
    gap: 16px;
  }
  .team-member img {
    width: 62px;
    height: 62px;
  }
  .team-member h3 {
    font-size: 17px;
  }
  .team-member p {
    font-size: 12px;
  }
  .team-description {
    font-size: 14px;
  }
  .contact h2 {
    font-size: 10.5vw;
  }
  .contact-links {
    font-size: 15px;
    gap: 22px;
  }
  .contact-links a + a {
    padding-left: 22px;
  }
  .contact-arrow {
    width: 124px;
    height: 124px;
  }
  .contact-arrow > .icon {
    width: 69px;
    height: 69px;
  }
  .contact .button-white {
    min-width: 195px;
  }
  .back-top {
    display: none;
  }
}
@media (max-width: 760px) {
  :root {
    --gutter: 24px;
  }
  html {
    scroll-padding-top: 24px;
  }
  .site-header {
    height: 79px;
  }
  .header-inner {
    flex-wrap: wrap;
  }
  .brand img {
    width: 112px;
    height: 42px;
  }
  .header-cta {
    margin-left: auto;
    margin-right: 12px;
    font-size: 12px;
    gap: 16px;
    min-height: 44px;
    min-width: 127px;
    padding: 10px 15px;
  }
  .header-cta .icon {
    width: 19px;
    height: 19px;
  }
  .menu-toggle:not([hidden]) {
    display: flex;
  }
  .main-nav {
    display: none;
  }
  .js .main-nav.is-open {
    display: flex;
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: white;
    padding: 18px 24px 22px;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 20px rgb(0 0 0 / 0.04);
  }
  .main-nav > a {
    font-size: 17px;
    padding: 13px 0;
  }
  .main-nav .mobile-contact {
    display: flex;
    justify-content: space-between;
    color: var(--red);
  }
  html:not(.js) .site-header {
    height: auto;
  }
  html:not(.js) .header-inner {
    padding-block: 16px;
    gap: 15px;
  }
  html:not(.js) .main-nav {
    display: flex;
    order: 3;
    width: 100%;
    justify-content: center;
    gap: 30px;
  }
  html:not(.js) .main-nav > a {
    font-size: 12px;
  }
  html:not(.js) .main-nav .mobile-contact {
    display: none;
  }
  .hero-inner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    min-height: 0;
    padding-top: 49px;
    padding-bottom: 0;
  }
  .hero-copy {
    width: 100%;
    pointer-events: auto;
  }
  .hero h1 {
    font-size: clamp(57px, 12.8vw, 92px);
    line-height: 1.04;
    letter-spacing: -0.066em;
  }
  .hero-copy > p {
    font-size: 16px;
    margin-top: 24px;
    max-width: 340px;
    letter-spacing: -0.025em;
  }
  .hero-actions {
    gap: 22px;
    margin-top: 25px;
    flex-wrap: nowrap;
  }
  .hero-actions .button {
    min-height: 48px;
    padding: 12px 16px;
    font-size: 12px;
    gap: 17px;
  }
  .hero-actions .text-link {
    font-size: 11px;
    line-height: 1.5;
    gap: 8px;
    max-width: 153px;
  }
  .hero-actions .text-link .icon {
    width: 18px;
    height: 18px;
  }
  .hero-art {
    position: relative;
    width: 100%;
    max-width: 620px;
    right: auto;
    top: auto;
    height: auto;
    align-self: center;
    aspect-ratio: 1.26;
    margin-top: -3px;
    overflow: hidden;
  }
  .keel-vector {
    width: 100%;
    height: 100%;
  }
  .hero-meta .container {
    min-height: 65px;
    font-size: 10px;
    gap: 20px;
  }
  .hero-meta .container > span:first-child {
    max-width: 130px;
  }
  .hero-meta .container > span:last-child {
    text-align: right;
    max-width: 160px;
  }
  .section-space {
    padding-block: 63px;
  }
  .section-label {
    font-size: 10px;
    margin-bottom: 18px;
  }
  h2 {
    font-size: 39px;
    letter-spacing: -0.055em;
    line-height: 1.14;
  }
  .services-layout {
    grid-template-columns: 1fr;
    gap: 31px;
  }
  .service-list {
    margin-top: 0;
  }
  .service-row {
    min-height: 98px;
    padding-block: 23px;
    column-gap: 17px;
    grid-template-columns: 33px 1fr 21px;
  }
  .service-number {
    font-size: 25px;
  }
  .service-row h3 {
    font-size: 20px;
  }
  .service-row p {
    font-size: 12px;
  }
  .services {
    padding-bottom: 55px;
  }
  .projects {
    padding-top: 0;
  }
  .section-header {
    gap: 13px;
    margin-bottom: 24px;
  }
  .section-header .text-link {
    align-self: flex-start;
    margin-top: 0;
  }
  .project-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .project-caption {
    padding-top: 16px;
  }
  .project-caption h3 {
    font-size: 20px;
  }
  .project-caption p {
    font-size: 12px;
  }
  .more-projects {
    margin-top: 34px;
  }
  .more-projects > a {
    padding-block: 19px;
  }
  .more-projects h3 {
    font-size: 16px;
  }
  .more-projects p {
    font-size: 12px;
  }
  .team-layout {
    grid-template-columns: 1fr;
    gap: 33px;
  }
  .team-description {
    font-size: 14px;
    margin-top: 23px;
  }
  .team-member {
    gap: 20px;
    padding-block: 18px;
  }
  .team-member img {
    width: 63px;
    height: 63px;
  }
  .team-member h3 {
    font-size: 18px;
  }
  .team-member p {
    font-size: 13px;
  }
  .contact {
    padding: 47px 0 38px;
  }
  .contact .section-label {
    margin-bottom: 22px;
  }
  .contact-main {
    gap: 18px;
    align-items: flex-end;
  }
  .contact h2 {
    font-size: clamp(52px, 11.75vw, 79px);
    line-height: 1.08;
  }
  .contact-arrow {
    width: 61px;
    height: 61px;
    margin-bottom: 5px;
    border-width: 1px;
  }
  .contact-arrow > .icon {
    width: 33px;
    height: 33px;
    stroke-width: 1.3;
  }
  .contact-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
    margin-top: 30px;
  }
  .contact-links {
    font-size: 13px;
    gap: 20px;
  }
  .contact-links a + a {
    padding-left: 20px;
  }
  .contact .button-white {
    font-size: 13px;
    min-height: 49px;
    min-width: 0;
    gap: 24px;
    padding: 12px 18px;
  }
  .footer-inner {
    gap: 20px;
  }
  .site-footer {
    padding-block: 24px;
  }
  .site-footer .brand img {
    width: 96px;
    height: 36px;
  }
  .site-footer p {
    font-size: 9px;
    text-align: right;
    max-width: 170px;
    line-height: 1.7;
  }
  .dialog-inner {
    padding: 30px 23px;
  }
  .dialog-inner h2 {
    font-size: 36px;
  }
  .dialog-close {
    right: 12px;
    top: 12px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .field {
    margin-bottom: 15px;
  }
  .contact-dialog form {
    margin-top: 25px;
  }
  .field input,
  .field textarea,
  .field select {
    font-size: 16px;
  }
  .project-dialog .button {
    font-size: 12px;
    gap: 12px;
    width: 100%;
    padding-inline: 14px;
  }
  .ready-actions {
    flex-direction: column;
  }
  .ready-actions .button {
    flex: auto;
  }
  .dialog-direct {
    font-size: 10px;
  }
  .project-description {
    font-size: 15px;
  }
}
@media (max-width: 374px) {
  :root {
    --gutter: 19px;
  }
  .header-cta {
    min-width: 110px;
    padding-inline: 12px;
    gap: 12px;
    margin-right: 7px;
  }
  .brand img {
    width: 102px;
  }
  .hero h1 {
    font-size: 12.6vw;
  }
  .hero-actions {
    gap: 14px;
  }
  .hero-actions .button {
    padding-inline: 12px;
    gap: 12px;
    font-size: 11px;
  }
  .hero-actions .text-link {
    font-size: 10px;
    max-width: 126px;
  }
  .hero-copy > p {
    font-size: 14px;
  }
  .contact-arrow {
    width: 49px;
    height: 49px;
  }
  .contact-arrow > .icon {
    width: 27px;
    height: 27px;
  }
  .contact-links {
    font-size: 12px;
    gap: 13px;
  }
  .contact-links a + a {
    padding-left: 13px;
  }
  .service-row h3 {
    font-size: 18px;
  }
  .service-row p {
    font-size: 11px;
  }
  h2 {
    font-size: 35px;
  }
}
@media (max-width: 760px) {
  .hero h1 {
    letter-spacing: -0.055em;
  }
  .hero-art {
    aspect-ratio: 1.2;
    margin-top: 0;
  }
  .keel-vector {
    height: 100%;
  }
}
@media (max-width: 374px) {
  .hero h1 {
    font-size: clamp(46px, 14vw, 53px);
  }
  .contact h2 {
    font-size: 46px;
  }
}
@media (min-width: 1200px) {
  .keel-vector {
    width: 106%;
    max-width: none;
  }
}
@media (min-width: 761px) and (max-width: 959px) {
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .keel-vector,
  .keel-world,
  .keel-blade,
  .hero-copy {
    will-change: auto;
  }
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}
