@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-latin.ttf") format("truetype");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --navy: #1B2E5E;
  --blue: #0072CE;
  --deep: #0D1B2A;
  --white: #FFFFFF;
  --gray: #F4F6F9;
  --ink: #1A1A2E;
  --teal: #00B894;
  --pink: #E84393;
  --shell: 1180px;
  --radius: 24px;
  --shadow: 0 26px 70px rgba(13, 27, 42, .12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 94px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

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

h1,
h2,
h3 {
  color: var(--navy);
  font-weight: 750;
  letter-spacing: -.035em;
  line-height: 1.08;
}

h1 {
  font-size: clamp(2.65rem, 6vw, 5.25rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.35rem);
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.55rem);
}

.shell {
  width: min(calc(100% - 40px), var(--shell));
  margin-inline: auto;
}

.section {
  padding-block: clamp(76px, 9vw, 132px);
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  padding: 12px 18px;
  color: var(--white);
  background: var(--deep);
  border-radius: 8px;
  font-weight: 700;
  transform: translateY(-150%);
  transition: transform .2s ease;
}

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

.eyebrow {
  margin-bottom: 18px;
  color: var(--blue);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .18em;
  line-height: 1.35;
  text-transform: uppercase;
}

.eyebrow span {
  margin-inline: .5rem;
  opacity: .55;
}

.eyebrow-light {
  color: rgba(255, 255, 255, .76);
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 22px;
  color: var(--deep);
  background: var(--pink);
  border: 2px solid var(--pink);
  border-radius: 999px;
  font-size: .92rem;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.button:hover {
  box-shadow: 0 12px 28px rgba(13, 27, 42, .22);
  transform: translateY(-2px);
}

.button-small {
  min-height: 44px;
  padding: 11px 18px;
  font-size: .84rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  gap: 9px;
  color: var(--blue);
  font-weight: 750;
  text-underline-offset: 5px;
}

.text-link-light {
  color: var(--white);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: 82px;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid rgba(27, 46, 94, .12);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  flex: 0 1 238px;
  text-decoration: none;
}

.brand-surface {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  background: var(--white);
  border-radius: 8px;
}

.brand img {
  width: 218px;
}

.primary-navigation {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(17px, 2.2vw, 32px);
}

.primary-navigation > a:not(.button) {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--navy);
  font-size: .86rem;
  font-weight: 700;
  text-decoration: none;
}

.primary-navigation > a:not(.button):hover {
  color: var(--blue);
}

.menu-toggle {
  display: none;
  min-width: 74px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid rgba(27, 46, 94, .2);
  border-radius: 999px;
  font: inherit;
  font-size: .82rem;
  font-weight: 750;
  cursor: pointer;
}

.menu-toggle-icon {
  width: 18px;
  height: 14px;
  position: relative;
}

.menu-toggle-icon i {
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  display: block;
  background: currentColor;
  border-radius: 99px;
  transition: transform .2s ease, top .2s ease;
}

.menu-toggle-icon i:first-child { top: 3px; }
.menu-toggle-icon i:last-child { top: 10px; }
.menu-toggle[aria-expanded="true"] .menu-toggle-icon i:first-child { top: 7px; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-toggle-icon i:last-child { top: 7px; transform: rotate(-45deg); }

.hero {
  min-height: min(850px, calc(100svh - 82px));
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--deep);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero::before {
  width: 560px;
  height: 560px;
  top: -300px;
  right: -90px;
  background: rgba(0, 114, 206, .16);
  filter: blur(8px);
}

.hero::after {
  width: 440px;
  height: 440px;
  bottom: -340px;
  left: 18%;
  background: rgba(0, 184, 148, .11);
  filter: blur(12px);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: .12;
  background-image:
    linear-gradient(rgba(255, 255, 255, .16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .16) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to right, transparent, #000 40%, #000);
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, .85fr);
  align-items: center;
  gap: clamp(48px, 8vw, 110px);
  padding-block: clamp(78px, 10vw, 132px);
}

.hero h1 {
  max-width: 820px;
  margin-bottom: 28px;
  color: var(--white);
}

.hero-lead {
  max-width: 690px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, .76);
  font-size: clamp(1.05rem, 1.55vw, 1.25rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 26px;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 54px 0 0;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, .16);
}

.hero-facts div {
  padding-right: 18px;
}

.hero-facts div + div {
  padding-left: 24px;
  border-left: 1px solid rgba(255, 255, 255, .16);
}

.hero-facts dt {
  margin-bottom: 4px;
  color: rgba(255, 255, 255, .58);
  font-size: .7rem;
  font-weight: 750;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.hero-facts dd {
  margin-bottom: 0;
  color: var(--white);
  font-size: .92rem;
  font-weight: 700;
}

.portfolio-map {
  width: min(100%, 470px);
  aspect-ratio: 1;
  position: relative;
  justify-self: center;
}

.map-orbit,
.map-axis {
  position: absolute;
  inset: 50%;
  display: block;
  pointer-events: none;
}

.map-orbit {
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.map-orbit-one { width: 78%; height: 78%; }
.map-orbit-two { width: 98%; height: 98%; border-style: dashed; opacity: .5; }

.map-axis {
  width: 82%;
  height: 1px;
  background: rgba(255, 255, 255, .12);
  transform-origin: left center;
}

.map-axis-one { transform: rotate(45deg) translate(-50%, -50%); }
.map-axis-two { transform: rotate(-45deg) translate(-50%, -50%); }

.map-center,
.map-node {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 50%;
  box-shadow: 0 24px 55px rgba(13, 27, 42, .32);
}

.map-center {
  width: 38%;
  aspect-ratio: 1;
  top: 50%;
  left: 50%;
  color: var(--deep);
  background: var(--white);
  transform: translate(-50%, -50%);
}

.map-center strong {
  color: var(--navy);
  font-size: clamp(1.25rem, 3vw, 2rem);
  letter-spacing: .06em;
  line-height: 1;
}

.map-center span,
.map-node span {
  margin-top: 6px;
  font-size: clamp(.58rem, 1vw, .72rem);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.map-node {
  width: 22%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, .32);
}

.map-node b {
  font-size: clamp(.8rem, 1.8vw, 1.12rem);
  letter-spacing: .08em;
}

.map-node-one { top: 2%; left: 40%; color: var(--white); background: var(--blue); }
.map-node-two { top: 40%; right: 1%; color: var(--white); background: var(--navy); }
.map-node-three { bottom: 1%; left: 40%; color: var(--deep); background: var(--teal); }
.map-node-four { top: 40%; left: 1%; color: var(--navy); background: var(--white); }

.section-intro {
  margin-bottom: 50px;
}

.split-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .66fr);
  align-items: end;
  gap: 50px;
}

.split-intro h2 {
  max-width: 680px;
  margin-bottom: 0;
}

.split-intro > p {
  max-width: 520px;
  margin-bottom: 4px;
  color: rgba(26, 26, 46, .72);
  font-size: 1.05rem;
}

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

.portfolio-card {
  min-height: 390px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 44px;
  padding: clamp(28px, 4vw, 44px);
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(27, 46, 94, .14);
  border-radius: var(--radius);
  box-shadow: 0 16px 50px rgba(13, 27, 42, .07);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.portfolio-card::before {
  content: "";
  width: 180px;
  height: 180px;
  position: absolute;
  top: -110px;
  right: -90px;
  border: 24px solid rgba(0, 114, 206, .07);
  border-radius: 50%;
}

.portfolio-card:hover {
  border-color: rgba(0, 114, 206, .55);
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

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

.portfolio-mark {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  color: var(--white);
  background: var(--navy);
  border-radius: 16px;
  font-size: .74rem;
  font-weight: 850;
  letter-spacing: .06em;
}

.portfolio-card-software .portfolio-mark { background: var(--blue); }
.portfolio-card-web .portfolio-mark { color: var(--deep); background: var(--teal); }
.portfolio-card-marketing .portfolio-mark { background: var(--deep); }

.portfolio-type {
  color: rgba(26, 26, 46, .64);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.portfolio-card h3 {
  margin-bottom: 5px;
  font-size: clamp(1.55rem, 3vw, 2.05rem);
}

.portfolio-card .domain {
  margin-bottom: 20px;
  color: var(--blue);
  font-size: .88rem;
  font-weight: 750;
}

.portfolio-card p:not(.domain) {
  max-width: 540px;
  margin-bottom: 0;
  color: rgba(26, 26, 46, .72);
}

.card-link {
  width: fit-content;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-weight: 800;
  text-underline-offset: 5px;
}

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

.principles-layout {
  display: grid;
  grid-template-columns: minmax(0, .75fr) minmax(430px, 1fr);
  align-items: start;
  gap: clamp(60px, 10vw, 130px);
}

.principles-copy {
  position: sticky;
  top: 130px;
}

.principles-copy h2 {
  margin-bottom: 28px;
}

.principles-copy > p:last-child {
  max-width: 520px;
  margin-bottom: 0;
  color: rgba(26, 26, 46, .72);
  font-size: 1.05rem;
}

.principle-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.principle-list li {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 22px;
  padding: 30px 0;
  border-top: 1px solid rgba(27, 46, 94, .18);
}

.principle-list li:last-child {
  border-bottom: 1px solid rgba(27, 46, 94, .18);
}

.principle-list > li > span {
  color: var(--blue);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .12em;
}

.principle-list h3 {
  margin-bottom: 10px;
}

.principle-list p {
  max-width: 560px;
  margin-bottom: 0;
  color: rgba(26, 26, 46, .68);
}

.aim {
  color: var(--white);
  background: var(--navy);
}

.aim-heading-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .5fr);
  align-items: end;
  gap: 50px;
  margin-bottom: 54px;
}

.aim h2 {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--white);
}

.aim-heading-row > p {
  margin-bottom: 6px;
  color: rgba(255, 255, 255, .72);
}

.aim-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, .2);
  border-bottom: 1px solid rgba(255, 255, 255, .2);
}

.aim-grid article {
  min-height: 220px;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 22px;
  padding: 40px 28px;
}

.aim-grid article + article {
  border-left: 1px solid rgba(255, 255, 255, .2);
}

.aim-grid article > span {
  color: rgba(255, 255, 255, .26);
  font-size: 3.5rem;
  font-weight: 850;
  line-height: 1;
}

.aim-grid h3 {
  margin-bottom: 14px;
  color: var(--white);
}

.aim-grid p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, .7);
}

.company-layout {
  display: grid;
  grid-template-columns: minmax(320px, .75fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(60px, 10vw, 140px);
}

.company-kicker {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 50px;
  color: var(--white);
  background: var(--deep);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
}

.company-kicker span {
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.company-kicker strong {
  margin-block: 12px;
  color: var(--white);
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  letter-spacing: -.06em;
  line-height: 1;
}

.company-kicker i {
  width: 54px;
  height: 3px;
  margin: 22px 0;
  background: var(--blue);
}

.company-copy h2 {
  margin-bottom: 30px;
}

.company-copy > p:not(.eyebrow) {
  max-width: 700px;
  color: rgba(26, 26, 46, .72);
  font-size: 1.05rem;
}

.contact {
  padding-top: 0;
}

.contact-panel {
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding: clamp(40px, 6vw, 76px);
  color: var(--white);
  background: var(--deep);
  border-radius: var(--radius);
  overflow: hidden;
}

.contact-panel h2 {
  margin-bottom: 18px;
  color: var(--white);
}

.contact-panel p:last-child {
  max-width: 620px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, .72);
}

.contact-panel .button {
  flex: 0 0 auto;
}

.site-footer {
  padding-top: 70px;
  color: rgba(255, 255, 255, .72);
  background: var(--deep);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(150px, .5fr));
  gap: 70px;
  padding-bottom: 56px;
}

.brand-surface-footer img {
  width: 218px;
}

.footer-brand p {
  max-width: 430px;
  margin: 22px 0 0;
}

.site-footer h2 {
  margin: 8px 0 18px;
  color: var(--white);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer li + li {
  margin-top: 11px;
}

.site-footer a {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, .72);
  text-underline-offset: 4px;
}

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

.footer-base {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-top: 1px solid rgba(255, 255, 255, .14);
  font-size: .82rem;
}

.footer-base p {
  margin-bottom: 0;
}

.legal-hero {
  padding-block: clamp(70px, 9vw, 110px);
  color: var(--white);
  background: var(--deep);
}

.legal-hero h1 {
  max-width: 800px;
  margin-bottom: 18px;
  color: var(--white);
}

.legal-hero p:last-child {
  margin-bottom: 0;
  color: rgba(255, 255, 255, .68);
}

.legal-content {
  width: min(calc(100% - 40px), 820px);
  margin-inline: auto;
}

.legal-content h2 {
  margin: 46px 0 14px;
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p,
.legal-content li {
  color: rgba(26, 26, 46, .76);
}

.legal-content a {
  color: var(--blue);
  font-weight: 700;
  text-underline-offset: 4px;
}

.not-found {
  min-height: calc(100svh - 82px);
  display: grid;
  place-items: center;
  padding-block: 80px;
  color: var(--white);
  background: var(--deep);
  text-align: center;
}

.not-found strong {
  display: block;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, .5);
  font-size: clamp(5rem, 18vw, 12rem);
  letter-spacing: -.08em;
  line-height: .8;
}

.not-found h1 {
  margin-bottom: 20px;
  color: var(--white);
}

.not-found p {
  max-width: 560px;
  margin: 0 auto 30px;
  color: rgba(255, 255, 255, .72);
}

@media (max-width: 980px) {
  .menu-toggle {
    display: inline-flex;
  }

  .primary-navigation {
    position: fixed;
    inset: 82px 0 auto;
    max-height: calc(100svh - 82px);
    display: grid;
    justify-content: stretch;
    gap: 0;
    padding: 18px 20px 28px;
    overflow: auto;
    visibility: hidden;
    background: var(--white);
    border-bottom: 1px solid rgba(27, 46, 94, .14);
    box-shadow: 0 22px 42px rgba(13, 27, 42, .12);
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  }

  .primary-navigation.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .primary-navigation > a:not(.button) {
    min-height: 54px;
    padding-inline: 4px;
    border-bottom: 1px solid rgba(27, 46, 94, .1);
    font-size: 1rem;
  }

  .primary-navigation .button {
    margin-top: 18px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 810px;
  }

  .portfolio-map {
    width: min(70vw, 450px);
  }

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

  .principles-copy {
    position: static;
  }

  .company-kicker {
    min-height: 340px;
  }

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

  .aim-grid article {
    min-height: auto;
  }

  .aim-grid article + article {
    border-top: 1px solid rgba(255, 255, 255, .2);
    border-left: 0;
  }
}

@media (max-width: 720px) {
  .shell {
    width: min(calc(100% - 32px), var(--shell));
  }

  .site-header,
  .header-inner {
    min-height: 74px;
  }

  .brand {
    flex-basis: 190px;
  }

  .brand img {
    width: 176px;
  }

  .primary-navigation {
    inset: 74px 0 auto;
    max-height: calc(100svh - 74px);
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    background-size: 48px 48px;
  }

  .hero-layout {
    padding-block: 70px 86px;
  }

  .hero h1 {
    margin-bottom: 22px;
    font-size: clamp(2.55rem, 13vw, 4.15rem);
  }

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

  .hero-actions .button {
    width: 100%;
  }

  .hero-actions .text-link {
    justify-content: center;
  }

  .hero-facts {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 42px;
  }

  .hero-facts div,
  .hero-facts div + div {
    display: grid;
    grid-template-columns: 100px 1fr;
    align-items: baseline;
    padding: 0;
    border: 0;
  }

  .portfolio-map {
    width: min(90vw, 410px);
  }

  .split-intro,
  .aim-heading-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .portfolio-card {
    min-height: 360px;
  }

  .principles-layout {
    gap: 42px;
  }

  .principle-list li {
    grid-template-columns: 44px 1fr;
    gap: 14px;
  }

  .aim-grid article {
    grid-template-columns: 52px 1fr;
    padding-inline: 0;
  }

  .aim-grid article > span {
    font-size: 2.8rem;
  }

  .company-kicker {
    min-height: 300px;
    padding: 38px 24px;
  }

  .contact-panel {
    min-height: 0;
    align-items: stretch;
    flex-direction: column;
  }

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

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

  .footer-base {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding-block: 20px;
  }
}

@media (max-width: 390px) {
  .menu-toggle-label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .menu-toggle {
    min-width: 48px;
  }

  .card-topline {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media print {
  .site-header,
  .hero-grid,
  .portfolio-map,
  .contact,
  .site-footer {
    display: none !important;
  }

  .hero,
  .aim {
    color: var(--ink);
    background: var(--white);
  }

  .hero h1,
  .aim h2,
  .aim h3 {
    color: var(--ink);
  }
}
