:root {
  --font-body: Poppins, sans-serif;

  --color-brand: #1fb5c6;
  --color-brand-rgb: 31 181 198;
  --color-text: #3e5162;
  --color-muted: #6d7d8b;
  --color-body: #333;
  --color-white: #fff;
  --color-on-dark: rgb(255 255 255 / .9);
  --color-surface: rgb(255 255 255 / .92);
  --color-section-muted: #f4f6f7;
  --color-dark: #17232b;
  --color-menu: #181818;

  --radius-control: 4px;
  --radius-card: 12px;
  --shadow-card: 0 18px 40px rgb(62 81 98 / .16);
  --shadow-card-hover: 0 22px 48px rgb(62 81 98 / .22);

  --container-width: 1160px;
  --container-process-width: 1190px;
  --section-space-y: 84px;
  --section-space-x: 60px;

  --transition-fast: .2s ease;
  --transition-smooth: .4s ease;
}

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

body {
  background-color: var(--color-white);
  color: var(--color-body);
  min-height: 100%;
  margin: 0;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.5;
}

article,
header,
nav,
section {
  display: block;
}

img,
picture {
  max-width: 100%;
}

img {
  vertical-align: middle;
  border: 0;
  height: auto;
  display: inline-block;
}

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

h1,
h2,
h3,
h4 {
  color: var(--color-text);
}

h1 {
  margin-bottom: 10px;
  font-size: 48px;
  font-weight: 600;
  line-height: 1.5;
}

h2 {
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 400;
  line-height: 1.35;
}

h3 {
  margin-bottom: 10px;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.2;
}

h4 {
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.25;
}

p {
  color: var(--color-muted);
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.63;
}

a {
  color: inherit;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.5;
  text-decoration: underline;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin-left: auto;
  margin-right: auto;
}

.container--process {
  max-width: var(--container-process-width);
}

.section {
  padding: var(--section-space-y) var(--section-space-x);
}

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

.section--contact {
  padding-top: 150px;
}

.section--testimonials {
  overflow: hidden;
}

.section-title {
  margin-bottom: 20px;
}

.eyebrow {
  color: var(--color-brand);
  margin-bottom: 12px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .01em;
}

.button {
  border: 2px solid var(--color-brand);
  border-radius: var(--radius-control);
  padding: 17px 73px;
  text-decoration: none;
  transition: color var(--transition-smooth), background-color var(--transition-smooth), border-color var(--transition-smooth), transform var(--transition-fast);
  display: inline-block;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button--primary {
  background-color: var(--color-brand);
  color: var(--color-white);
}

.button--primary:hover,
.button--primary:focus-visible {
  background-color: transparent;
  color: var(--color-brand);
}

.hero {
  background-color: var(--color-dark);
  min-height: 800px;
  padding-left: var(--section-space-x);
  padding-right: var(--section-space-x);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero::after {
  content: "";
  background: linear-gradient(90deg, rgb(12 27 37 / .72), rgb(12 27 37 / .38) 48%, rgb(12 27 37 / .18));
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-image {
  pointer-events: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-content {
  opacity: 0;
  position: relative;
  z-index: 2;
  animation: hero-slide-in 1s cubic-bezier(.165, .84, .44, 1) .1s forwards;
}

.hero-copy {
  max-width: 508px;
  margin-top: 90px;
  margin-bottom: 54px;
}

.hero-title {
  color: var(--color-white);
  margin-bottom: 22px;
  font-size: 50px;
  line-height: 1.28;
  text-shadow: 0 10px 28px rgb(0 0 0 / .2);
}

.hero-copy p {
  color: var(--color-on-dark);
}

.site-header {
  z-index: 1000;
  padding-top: 30px;
  position: relative;
}

.header-top {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  display: flex;
}

.header-brand {
  align-self: center;
}

.logo-link {
  max-width: 100%;
  text-decoration: none;
  display: inline-block;
}

.header-socials {
  justify-content: flex-end;
  align-items: center;
  width: 244px;
  display: flex;
}

.social-icon {
  margin-right: 10px;
}

.header-divider {
  background-color: rgb(255 255 255 / .9);
  max-width: 100%;
  height: 1px;
}

.nav-row {
  flex-flow: column;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.nav-menu {
  justify-content: center;
  align-items: center;
  display: flex;
}

.nav-link {
  color: var(--color-on-dark);
  padding: 20px;
  text-decoration: none;
  transition: color var(--transition-smooth);
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--color-brand);
}

.nav-toggle {
  color: var(--color-white);
  background-color: transparent;
  border: 0;
  width: 60px;
  height: 60px;
  padding: 18px;
  cursor: pointer;
  display: none;
  transition: background-color var(--transition-fast);
}

.nav-toggle:hover,
.nav-toggle:focus-visible,
.site-header.is-menu-open .nav-toggle {
  background-color: #252525;
  outline: none;
}

.nav-toggle-icon {
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  display: flex;
}

.nav-toggle-icon span {
  background-color: currentColor;
  border-radius: 999px;
  width: 100%;
  height: 2px;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.site-header.is-menu-open .nav-toggle-icon span:first-child {
  transform: translateY(8px) rotate(45deg);
}

.site-header.is-menu-open .nav-toggle-icon span:nth-child(2) {
  opacity: 0;
}

.site-header.is-menu-open .nav-toggle-icon span:last-child {
  transform: translateY(-8px) rotate(-45deg);
}

.about-layout {
  justify-content: space-between;
  align-items: center;
  gap: 54px;
  display: flex;
}

.about-image {
  border-radius: var(--radius-card);
  box-shadow: 0 18px 45px rgb(23 35 43 / .12);
}

.about-content {
  max-width: 543px;
}

.about-text {
  color: var(--color-muted);
}

.process-grid {
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  display: flex;
}

.process-column {
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  display: flex;
}

.process-card {
  border-radius: var(--radius-card);
  width: 266px;
  min-height: 350px;
  margin: 15px;
}

.process-card--intro {
  padding-top: 8px;
}

.process-card--step {
  background-color: var(--color-surface);
  height: 370px;
  padding: 27px 17px 48px;
  box-shadow: 0 0 0 1px rgb(62 81 98 / .05);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.process-card--step:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}

.process-title {
  color: var(--color-text);
  margin-bottom: 20px;
  font-size: 30px;
  line-height: 1.2;
}

.process-copy {
  color: var(--color-muted);
  font-size: 18px;
  line-height: 1.35;
}

.process-step-number {
  color: transparent;
  text-align: right;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: rgb(var(--color-brand-rgb) / .7);
  font-size: 93px;
  font-weight: 600;
  line-height: .86;
}

.process-card-title {
  color: var(--color-text);
  margin-top: 20px;
  margin-bottom: 20px;
}

.process-card-copy {
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.48;
}

.projects-title,
.testimonials-title {
  margin-bottom: 28px;
}

.projects-desktop,
.projects-desktop picture {
  display: block;
}

.projects-image {
  border-radius: var(--radius-card);
  width: 100%;
  aspect-ratio: 1160 / 1164;
  height: auto;
  box-shadow: 0 18px 45px rgb(23 35 43 / .1);
}

.testimonials {
  --testimonial-shadow-space: 35px;
  --testimonial-shadow-bleed: var(--testimonial-shadow-space);
  width: 100%;
  max-width: 100%;
}

.testimonials-viewport {
  overflow: hidden;
  padding: var(--testimonial-shadow-space) var(--testimonial-shadow-space) 50px;
  margin: calc(var(--testimonial-shadow-space) * -1) calc(var(--testimonial-shadow-bleed) * -1) -50px;
}

.testimonials-track {
  column-gap: 30px;
  align-items: stretch;
  display: flex;
  transition: transform var(--transition-smooth);
  will-change: transform;
}

.testimonial-card {
  background-color: var(--color-surface);
  border-radius: var(--radius-card);
  flex: 0 0 calc((100% - 60px) / 3);
  flex-direction: column;
  width: calc((100% - 60px) / 3);
  min-height: 367px;
  padding: 58px 35px;
  display: flex;
  box-shadow: var(--shadow-card);
}

.testimonial-quote {
  color: var(--color-muted);
  margin-top: 33px;
  margin-bottom: 56px;
  font-weight: 300;
}

.testimonial-author {
  color: var(--color-muted);
  margin-top: auto;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
}

.testimonials-controls {
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  margin-top: 34px;
  display: flex;
}

.carousel-button {
  background-color: transparent;
  border: 0;
  border-radius: 999px;
  width: 48px;
  height: 48px;
  padding: 7px;
  cursor: pointer;
  transition: background-color var(--transition-fast);
}

.carousel-button:hover,
.carousel-button:focus-visible {
  background-color: rgb(var(--color-brand-rgb) / .1);
  outline: none;
}

.carousel-button img {
  width: 34px;
  height: 34px;
  display: block;
}

.contact-layout {
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  display: flex;
}

.contact-map-frame {
  border-radius: var(--radius-card);
  width: 763px;
  height: 451px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgb(23 35 43 / .1);
}

.contact-map {
  border: 0;
  width: 100%;
  height: 451px;
  display: block;
}

.contact-card {
  background-color: var(--color-surface);
  border-radius: var(--radius-card);
  width: 450px;
  min-height: 451px;
  padding: 40px 37px;
  box-shadow: var(--shadow-card);
}

.contact-title {
  margin-top: 20px;
}

.contact-copy {
  color: var(--color-muted);
  margin-bottom: 46px;
}

.contact-item {
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 26px;
  display: flex;
  text-decoration: none;
}

.contact-icon {
  margin-right: 16px;
}

.contact-label {
  color: var(--color-muted);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
}

.contact-value {
  color: var(--color-muted);
  font-weight: 300;
  line-height: 1.5;
  text-decoration: none;
}

.footer-section {
  background-image: linear-gradient(rgb(12 27 37 / .2), rgb(12 27 37 / .2)), url("../images/generated/footer-1280.avif");
  background-position: 50% 100%;
  background-size: cover;
}

.footer-content {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.footer-socials {
  align-items: center;
  display: flex;
}

.footer-social-icon {
  margin-right: 10px;
}

.footer-link {
  text-decoration: none;
}

.footer-copy {
  display: block;
}

.footer-text {
  color: rgb(255 255 255 / .5);
  text-decoration: none;
}

.footer-copy--mobile {
  display: none;
}

@keyframes hero-slide-in {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animations-ready [data-reveal] {
  opacity: 0;
  transition: opacity 1s cubic-bezier(.165, .84, .44, 1), transform 1s cubic-bezier(.165, .84, .44, 1);
}

.animations-ready [data-reveal="left"] {
  transform: translateX(-100px);
}

.animations-ready [data-reveal="right"] {
  transform: translateX(100px);
}

.animations-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateX(0);
}

@media (prefers-reduced-motion: reduce) {
  .hero-content {
    opacity: 1;
    animation: none;
  }

  .animations-ready [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media screen and (min-width: 1440px) {
  .footer-section {
    background-image: linear-gradient(rgb(12 27 37 / .2), rgb(12 27 37 / .2)), url("../images/generated/footer-1920.avif");
  }
}

@media screen and (max-width: 991px) {
  .container {
    max-width: 728px;
  }

  .about-layout {
    flex-flow: wrap;
    justify-content: space-between;
  }

  .about-content {
    max-width: none;
    margin-bottom: 30px;
  }

  .about-image {
    margin-bottom: 60px;
  }

  .testimonial-card {
    flex-basis: calc((100% - 30px) / 2);
    width: calc((100% - 30px) / 2);
  }

  .contact-card {
    min-width: 340px;
  }

  .footer-text {
    font-size: 11px;
  }
}

@media screen and (max-width: 767px) {
  .footer-section {
    background-image: linear-gradient(rgb(12 27 37 / .2), rgb(12 27 37 / .2)), url("../images/generated/footer-768.avif");
  }

  .animations-ready [data-reveal="left"],
  .animations-ready [data-reveal="right"] {
    transform: translateY(24px);
  }

  .animations-ready [data-reveal].is-visible {
    transform: translateY(0);
  }

  .about-layout {
    justify-content: center;
  }

  .about-content {
    max-width: 550px;
  }

  .projects-title,
  .testimonials-title {
    margin-bottom: 30px;
    font-size: 40px;
  }

  .testimonial-card {
    flex-basis: 100%;
    width: 100%;
  }

  .contact-layout {
    flex-flow: wrap;
    justify-content: space-between;
  }

  .contact-card {
    width: 650px;
    min-width: 0;
    margin-top: 0;
    padding-left: 30px;
    padding-right: 30px;
  }

  .contact-map-frame {
    margin-bottom: 30px;
  }

  .contact-item {
    width: 270px;
  }

  .process-column {
    width: auto;
  }

  .footer-text {
    font-size: 7px;
  }
}

@media screen and (max-width: 479px) {
  :root {
    --section-space-x: 30px;
    --section-space-y: 64px;
  }

  .container {
    max-width: none;
  }

  .testimonials {
    --testimonial-shadow-bleed: 30px;
  }

  .section--contact {
    padding-top: 40px;
  }

  .hero {
    min-height: 760px;
  }

  .hero-copy {
    margin-top: 130px;
    margin-bottom: 110px;
  }

  .hero-title {
    margin-bottom: 30px;
    font-size: 30px;
    line-height: 1.33;
  }

  .button {
    padding-left: 50px;
    padding-right: 50px;
    font-size: 10px;
  }

  .about-text {
    font-size: 12px;
    line-height: 1.4;
  }

  .about-content {
    max-width: 310px;
  }

  .section-title {
    font-size: 30px;
    line-height: 1.33;
  }

  .process-copy {
    font-size: 16px;
  }

  .container--process,
  .process-grid,
  .process-column {
    width: 100%;
  }

  .process-card {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .process-card-copy {
    font-size: 13px;
  }

  .projects-title {
    text-align: left;
    margin-bottom: 10px;
    font-size: 25px;
    line-height: 1.72;
  }

  .projects-image {
    aspect-ratio: 573 / 1992;
  }

  .testimonial-card {
    min-height: 300px;
    padding-top: 30px;
  }

  .testimonial-quote {
    font-size: 11px;
  }

  .testimonial-author {
    font-size: 12px;
  }

  .testimonials-controls {
    justify-content: center;
    margin-top: 24px;
  }

  .contact-layout {
    flex-flow: wrap;
    justify-content: space-between;
  }

  .contact-card {
    width: 100%;
    min-height: 470px;
    margin-left: 0;
    padding: 10px 20px 40px;
  }

  .contact-map-frame {
    flex-flow: wrap;
    justify-content: space-between;
    align-items: center;
    width: 420px;
    max-width: 100%;
    height: auto;
    margin-left: 0;
    display: block;
  }

  .contact-map {
    height: 370px;
    margin-bottom: 0;
  }

  .contact-copy {
    margin-bottom: 30px;
    font-size: 12px;
  }

  .contact-item {
    flex-flow: column;
  }

  .contact-icon {
    margin-bottom: 10px;
  }

  .contact-label,
  .contact-value {
    font-size: 13px;
  }

  .contact-title,
  .testimonials-title {
    font-size: 25px;
    line-height: 1.2;
  }

  .contact-address {
    width: 258px;
  }

  .nav-row {
    justify-content: space-between;
    align-items: flex-end;
    position: relative;
  }

  .header-socials {
    display: none;
  }

  .nav-toggle {
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .nav-menu {
    background-color: var(--color-menu);
    text-align: center;
    min-width: 200px;
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 20;
  }

  .site-header.is-menu-open .nav-menu {
    flex-direction: column;
    display: flex;
  }

  .nav-link {
    padding: 20px;
    font-size: 15px;
    display: block;
  }

  .footer-content {
    flex-flow: column;
  }

  .footer-logo {
    margin-bottom: 30px;
  }

  .footer-text {
    text-align: center;
    margin-top: 30px;
    font-size: 7px;
  }

  .footer-copy--desktop {
    display: none;
  }

  .footer-copy--mobile {
    display: block;
  }
}
