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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 300;
  line-height: 1.6;
  color: #0f0f0f;
  background-color: #fafaf9;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

.section-label {
  font-size: 0.875rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: #737373;
  margin-bottom: 1rem;
}
.section-label--light {
  color: rgba(250, 250, 249, 0.6);
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 300;
  line-height: 1.1;
  color: #fafaf9;
  text-wrap: balance;
}
.section-title em {
  font-style: italic;
}
.section-title--light {
  color: #fafaf9;
}

.loading-screen {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #0f0f0f;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}
.loading-screen.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loading-screen__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}
.loading-screen__brand {
  text-align: center;
  color: #fafaf9;
}
.loading-screen__logo {
  font-size: clamp(3rem, 8vw, 4.5rem);
  font-weight: 500;
  letter-spacing: 0.05em;
}
.loading-screen__logo .loading-logo {
  max-width: 15rem;
  margin: 0 auto;
}
.loading-screen__name {
  font-size: 2rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-top: 0.75rem;
}
.loading-screen__tagline {
  font-size: 1rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  opacity: 0.4;
  margin-top: 0.25rem;
}
.loading-screen__progress {
  width: clamp(12rem, 30vw, 16rem);
}
.loading-screen__progress-bar {
  height: 1px;
  background-color: rgba(250, 250, 249, 0.2);
  position: relative;
  overflow: hidden;
}
.loading-screen__progress-fill {
  position: absolute;
  inset: 0;
  background-color: #fafaf9;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.1s ease-out;
}
.loading-screen__progress-text {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: rgba(250, 250, 249, 0.6);
  text-align: center;
  margin-top: 1rem;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 1.5rem 0;
  transition: background-color 0.5s ease, padding 0.5s ease;
}
.header.is-scrolled {
  background-color: rgba(255, 255, 255, 0.23);
  backdrop-filter: blur(12px);
  padding: 1rem 0;
}
.header.is-scrolled .header__logo,
.header.is-scrolled .header__nav-link,
.header.is-scrolled .header__menu-icon,
.header.is-scrolled .header__menu-icon::before,
.header.is-scrolled .header__menu-icon::after {
  color: #0f0f0f;
  color: white;
}
.header.is-scrolled .header__logo {
  display: none;
}
.header.is-scrolled .header__logo-black {
  display: block;
}
.header.is-scrolled .header__nav-link:hover {
  color: #3b82f6;
}
.header.is-scrolled .header__menu-icon {
  background-color: #0f0f0f;
}
.header.is-scrolled .header__menu-icon::before, .header.is-scrolled .header__menu-icon::after {
  background-color: #0f0f0f;
}
.header.is-scrolled .header__lang-switcher .header__lang-link {
  color: #fafaf9;
  text-shadow: none;
}
.header.is-scrolled .header__lang-switcher .header__lang-link:hover {
  color: #3b82f6;
}
.header.is-scrolled .header__lang-switcher .header__lang-link--active {
  color: #3b82f6;
}
.header.is-scrolled .header__lang-switcher .header__lang-divider {
  color: rgba(250, 250, 249, 0.3);
  text-shadow: none;
}
.header__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 768px) {
  .header__container {
    padding: 0 3rem;
  }
}
.header__logo {
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #fafaf9;
  transition: color 0.3s ease;
}
.header__logo .logo {
  max-width: 4rem;
  filter: drop-shadow(0 0 0.75rem black);
}
@media (min-width: 768px) {
  .header__logo {
    font-size: 1.875rem;
  }
}
.header__logo-black {
  display: none;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #fafaf9;
  transition: color 0.3s ease;
}
.header__logo-black .logo-black {
  max-width: 4rem;
  filter: drop-shadow(0 0 0.75rem black);
}
@media (min-width: 768px) {
  .header__logo-black {
    font-size: 1.875rem;
  }
}
.header__nav {
  display: none;
}
@media (min-width: 768px) {
  .header__nav {
    display: block;
  }
}
.header__nav-list {
  display: flex;
  align-items: center;
  gap: 3rem;
}
.header__nav-link {
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fafaf9;
  text-shadow: 2px 1px 10px rgb(0, 0, 0);
  transition: opacity 0.3s ease, color 0.3s ease;
}
.header__nav-link:hover {
  color: #3b82f6;
}
.header__lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.header__lang-link {
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(250, 250, 249, 0.6);
  text-shadow: 2px 1px 10px rgb(0, 0, 0);
  transition: color 0.3s ease;
  padding: 0.15rem 0.25rem;
}
.header__lang-link:hover {
  color: #3b82f6;
}
.header__lang-link--active {
  color: #fafaf9;
  font-weight: 400;
}
.header__lang-divider {
  font-size: 0.85rem;
  color: rgba(250, 250, 249, 0.3);
  text-shadow: 2px 1px 10px rgb(0, 0, 0);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.header__menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: none;
  border: none;
  cursor: pointer;
}
@media (min-width: 768px) {
  .header__menu-toggle {
    display: none;
  }
}
.header__menu-icon {
  position: relative;
  width: 1.5rem;
  height: 2px;
  background-color: #fafaf9;
  transition: background-color 0.3s ease;
}
.header__menu-icon::before, .header__menu-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fafaf9;
  transition: transform 0.3s ease, background-color 0.3s ease;
}
.header__menu-icon::before {
  top: -6px;
}
.header__menu-icon::after {
  bottom: -6px;
}
.header__menu-icon.is-active {
  background-color: transparent;
}
.header__menu-icon.is-active::before {
  transform: translateY(6px) rotate(45deg);
}
.header__menu-icon.is-active::after {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #0f0f0f;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
}
.mobile-menu__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.mobile-menu__link {
  font-size: 1.5rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fafaf9;
  transition: opacity 0.3s ease;
}
.mobile-menu__link:hover {
  color: #3b82f6;
}
.mobile-menu__lang-switcher {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(250, 250, 249, 0.1);
  width: 8rem;
}
.mobile-menu__lang-link {
  font-size: 1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250, 250, 249, 0.5);
  transition: color 0.3s ease;
  padding: 0.25rem 0.35rem;
}
.mobile-menu__lang-link:hover {
  color: #3b82f6;
}
.mobile-menu__lang-link--active {
  color: #fafaf9;
  font-weight: 400;
}
.mobile-menu__lang-divider {
  font-size: 1rem;
  color: rgba(250, 250, 249, 0.25);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}
.hero__video-wrapper {
  position: absolute;
  inset: 0;
}
.hero__video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  filter: grayscale(100%);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.233);
}
.hero__content {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 1.5rem;
  max-width: 64rem;
  margin: 0 auto;
}
.hero__subtitle {
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: white;
  text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.6);
  margin-bottom: 1.5rem;
  animation: fadeUp 1s ease-out forwards;
  opacity: 0;
}
.hero__title {
  font-size: clamp(2.5rem, 8vw, 6rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: white;
  text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.6);
  text-wrap: balance;
  animation: fadeUp 1s ease-out 0.2s forwards;
  opacity: 0;
}
.hero__title em {
  font-style: italic;
}
.hero__description {
  font-size: 1rem;
  font-weight: 300;
  color: white;
  text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.6);
  max-width: 32rem;
  margin-top: 2rem;
  text-wrap: pretty;
  animation: fadeUp 1s ease-out 0.4s forwards;
  opacity: 0;
}
@media (min-width: 768px) {
  .hero__description {
    font-size: 1.125rem;
  }
}
.hero__scroll-indicator {
  position: absolute;
  width: 100%;
  bottom: 3rem;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: rgba(250, 250, 249, 0.6);
  transition: color 0.3s ease;
  animation: fadeUp 1s ease-out 0.6s forwards;
  opacity: 0;
}
.hero__scroll-indicator:hover {
  color: #3b82f6;
}
.hero__scroll-text {
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.6);
}
.hero__scroll-icon {
  animation: bounce 2s infinite;
}
.hero__decoration {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 6rem;
  background-color: rgba(250, 250, 249, 0.3);
  animation: lineGrow 1.5s ease-out forwards;
  transform-origin: top;
  display: none;
}
@media (min-width: 1024px) {
  .hero__decoration {
    display: block;
  }
}
.hero__decoration--left {
  left: 1.5rem;
}
@media (min-width: 768px) {
  .hero__decoration--left {
    left: 3rem;
  }
}
.hero__decoration--right {
  right: 1.5rem;
}
@media (min-width: 768px) {
  .hero__decoration--right {
    right: 3rem;
  }
}

.about {
  padding: 6rem 0;
  background-color: rgb(24, 24, 24);
}
@media (min-width: 768px) {
  .about {
    padding: 8rem 0;
  }
}
.about__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 768px) {
  .about__container {
    padding: 0 3rem;
  }
}
.about__header {
  text-align: center;
  margin-bottom: 4rem;
  color: white;
}
@media (min-width: 768px) {
  .about__header {
    margin-bottom: 6rem;
  }
}
.about__grid {
  display: grid;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .about__grid {
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
  }
}
.about__image-wrapper {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}
.about__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: grayscale(100%);
}
.about__content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .about__content {
    padding: 3rem 0;
  }
}
.about__item {
  margin-bottom: 1rem;
}
.about__number {
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 300;
  color: #3b82f6;
}
.about__item-title {
  font-size: 1.25rem;
  font-weight: 300;
  margin: 1rem 0;
  color: white;
}
@media (min-width: 768px) {
  .about__item-title {
    font-size: 1.5rem;
  }
}
.about__item-text {
  color: #737373;
  font-weight: 300;
  line-height: 1.7;
  text-wrap: pretty;
}
.about__link {
  font-size: 0.875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 1rem;
  transition: color 0.3s ease;
  color: #737373;
}
.about__link svg {
  transition: transform 0.3s ease;
}
.about__link:hover {
  color: #3b82f6;
}
.about__link:hover svg {
  transform: translate(4px, -4px);
}
.about__link-line {
  display: block;
  width: 3rem;
  height: 1px;
  background-color: white;
  transition: width 0.3s ease, background-color 0.3s ease;
}

.projects {
  padding: 6rem 0;
  background-color: #0f0f0f;
}
@media (min-width: 768px) {
  .projects {
    padding: 8rem 0;
  }
}
.projects__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 768px) {
  .projects__container {
    padding: 0 3rem;
  }
}
.projects__header {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 4rem;
}
@media (min-width: 768px) {
  .projects__header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 6rem;
  }
}
.projects__header .section-title {
  color: white;
}
.projects__view-all {
  font-size: 0.875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: color 0.3s ease;
  color: #737373;
}
.projects__view-all svg {
  transition: transform 0.3s ease;
}
.projects__view-all:hover {
  color: #3b82f6;
}
.projects__view-all:hover svg {
  transform: translate(4px, -4px);
}
.projects__grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) {
  .projects__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

.project-card {
  display: block;
}
@media (min-width: 768px) {
  .project-card--offset {
    margin-top: 4rem;
  }
}
.project-card__image-wrapper {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.project-card__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.7s ease;
  filter: grayscale(100%);
}
.project-card__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(15, 15, 15, 0);
  transition: background-color 0.5s ease;
}
.project-card:hover .project-card__image {
  transform: scale(1.05);
  filter: unset;
}
.project-card:hover .project-card__overlay {
  background-color: rgba(15, 15, 15, 0.2);
}
.project-card:hover .project-card__title {
  color: #3b82f6;
}
.project-card:hover .project-card__arrow {
  color: #3b82f6;
  transform: translate(4px, -4px);
}
.project-card__info {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.project-card__title {
  font-size: 1.25rem;
  font-weight: 300;
  color: white;
  transition: color 0.3s ease;
}
@media (min-width: 768px) {
  .project-card__title {
    font-size: 1.5rem;
  }
}
.project-card__category {
  font-size: 0.875rem;
  color: #737373;
  letter-spacing: 0.05em;
  margin-top: 0.25rem;
}
.project-card__arrow {
  color: #737373;
  transition: color 0.3s ease, transform 0.3s ease;
}

.services {
  padding: 6rem 0;
  background-color: rgb(24, 24, 24);
  color: #fafaf9;
}
@media (min-width: 768px) {
  .services {
    padding: 8rem 0;
  }
}
.services__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 768px) {
  .services__container {
    padding: 0 3rem;
  }
}
.services__header {
  text-align: center;
  margin-bottom: 4rem;
}
@media (min-width: 768px) {
  .services__header {
    margin-bottom: 6rem;
  }
}
.services__grid {
  display: grid;
  gap: 3rem;
}
@media (min-width: 768px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .services__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.service-card {
  text-align: center;
}
@media (min-width: 768px) {
  .service-card {
    text-align: left;
  }
}
.service-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border: 1px solid rgba(250, 250, 249, 0.2);
  border-radius: 100%;
  margin-bottom: 1.5rem;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}
.service-card__icon svg {
  color: rgba(250, 250, 249, 0.8);
  transition: color 0.3s ease;
}
.service-card:hover .service-card__icon {
  border-color: #3b82f6;
  background-color: rgba(59, 130, 246, 0.1);
}
.service-card:hover .service-card__icon svg {
  color: #3b82f6;
}
.service-card__title {
  font-size: 1.25rem;
  font-weight: 300;
  margin-bottom: 1rem;
}
.service-card__description {
  color: rgba(250, 250, 249, 0.6);
  font-weight: 300;
  line-height: 1.7;
  text-wrap: pretty;
}

.faq {
  padding: 8rem 0;
  background-color: #0f0f0f;
}
.faq__container {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 1.6rem;
}
.faq__title {
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 300;
  line-height: 1.1;
  color: #fafaf9;
  text-wrap: balance;
  margin-bottom: 2rem;
}
.faq__item {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
}
.faq__item:not(:last-child) {
  margin-bottom: 1.2rem;
}
.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 1.6rem;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background-color: #b0b0b0;
  color: inherit;
  border: 0;
  text-align: left;
  font-family: inherit;
  font-size: 1.05rem;
  line-height: 1.3;
  transition: background-color 0.2s ease;
}
.faq__question:hover {
  background: #3b82f6;
  background: rgb(138, 136, 136);
}
.faq__question:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.5);
  outline-offset: 2px;
}
.faq__icon {
  width: 20px;
  height: 20px;
  position: relative;
  flex: 0 0 20px;
}
.faq__icon::before, .faq__icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 16px;
  height: 2px;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: opacity 0.25s ease, transform 0.25s ease;
  opacity: 0.85;
}
.faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.faq__answer {
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
  background-color: #b0b0b0;
}
.faq__answer-inner {
  overflow: hidden;
  padding: 0 1.6rem 1.4rem;
  line-height: 1.65;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}
.faq__item.is-open .faq__answer-inner {
  opacity: 1;
  transform: translateY(0);
  padding-top: 1.2rem;
}
.faq__item.is-open .faq__icon::after {
  opacity: 0;
}

.contact {
  padding: 6rem 0;
  background-color: rgb(24, 24, 24);
}
@media (min-width: 768px) {
  .contact {
    padding: 8rem 0;
  }
}
.contact__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 768px) {
  .contact__container {
    padding: 0 3rem;
  }
}
.contact__grid {
  display: grid;
  gap: 4rem;
}
@media (min-width: 1024px) {
  .contact__grid {
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
  }
}
.contact__info {
  max-width: 28rem;
}
.contact__description {
  color: rgba(250, 250, 249, 0.6);
  font-weight: 300;
  line-height: 1.7;
  margin: 2rem 0 3rem;
  text-wrap: pretty;
}
.contact__details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: -moz-fit-content;
  width: fit-content;
}
.contact__detail {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.contact__detail svg {
  color: rgba(250, 250, 249, 0.8);
  transition: color 0.3s ease;
}
.contact__detail:hover .contact__detail-icon {
  border-color: #3b82f6;
  background-color: rgba(59, 130, 246, 0.1);
}
.contact__detail:hover .contact__detail-icon svg {
  color: #3b82f6;
}
.contact__detail-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border: 1px solid #737373;
  border-radius: 100%;
  flex-shrink: 0;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}
.contact__detail-icon svg {
  color: #737373;
}
.contact__detail-primary {
  color: #fafaf9;
  font-weight: 400;
}
.contact__detail-secondary {
  font-size: 0.875rem;
  color: #737373;
}
.contact__form-wrapper {
  background-color: #0f0f0f;
  padding: 2rem;
}
@media (min-width: 768px) {
  .contact__form-wrapper {
    padding: 3rem;
  }
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-form__row {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .contact-form__row {
    grid-template-columns: 1fr 1fr;
  }
}
.contact-form__field {
  display: flex;
  flex-direction: column;
}
.contact-form__label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #737373;
  margin-bottom: 0.75rem;
}
.contact-form__input, .contact-form__select, .contact-form__textarea {
  width: 100%;
  padding: 0.75rem 0;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 300;
  color: white;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #e5e5e5;
  transition: border-color 0.3s ease;
}
.contact-form__input::-moz-placeholder, .contact-form__select::-moz-placeholder, .contact-form__textarea::-moz-placeholder {
  color: #737373;
}
.contact-form__input::placeholder, .contact-form__select::placeholder, .contact-form__textarea::placeholder {
  color: #737373;
}
.contact-form__input:focus, .contact-form__select:focus, .contact-form__textarea:focus {
  outline: none;
  border-color: #3b82f6;
}
.contact-form__select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  color: #898080;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23737373' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
  background-size: 1.25rem;
}
.contact-form__textarea {
  resize: none;
}
.contact-form__submit {
  position: relative;
  width: 100%;
  padding: 1rem;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fafaf9;
  background-color: #0f0f0f;
  background-color: #3c3a3a;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  overflow: hidden;
}
.contact-form__submit span {
  position: relative;
  z-index: 9;
}
.contact-form__submit::before {
  content: "";
  position: absolute;
  top: 0;
  right: 100%;
  width: 115%;
  height: 100%;
  background: #3b82f6;
  transition: 0.5s;
  border-radius: 16px;
  z-index: 2;
}
.contact-form__submit:hover::before {
  right: -12px;
}

.footer {
  padding: 4rem 0 2rem;
  background-color: #0f0f0f;
  color: #fafaf9;
}
@media (min-width: 768px) {
  .footer {
    padding: 6rem 0 2rem;
  }
}
.footer__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 768px) {
  .footer__container {
    padding: 0 3rem;
  }
}
.footer__grid {
  display: grid;
  gap: 3rem;
  margin-bottom: 4rem;
}
@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.footer__brand {
  max-width: 24rem;
}
.footer__logo {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 1rem;
  margin-bottom: 0.5rem;
}
.footer__logo img {
  max-width: 4rem;
}
@media (min-width: 768px) {
  .footer__logo {
    font-size: 2.5rem;
  }
}
.footer__brand-name {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(250, 250, 249, 0.5);
  margin-bottom: 1rem;
}
.footer__brand-description {
  color: rgba(250, 250, 249, 0.6);
  font-weight: 300;
  line-height: 1.7;
  text-wrap: pretty;
}
.footer__nav-title {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(250, 250, 249, 0.6);
  margin-bottom: 1.5rem;
}
.footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer__nav-link {
  color: rgba(250, 250, 249, 0.8);
  transition: color 0.3s ease;
}
.footer__nav-link:hover {
  color: #3b82f6;
}
.footer__nav {
  text-align: center;
}
.footer__social {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer__social-links {
  display: flex;
  gap: 1rem;
}
.footer__social-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.5rem;
  height: 4.5rem;
  border: 2px solid #ffffff;
  background-color: #ffffff;
  border-radius: 50%;
  overflow: hidden;
  cursor: pointer;
  perspective: 800px;
  transition: border-color 0.3s ease;
  --social-color: $color-accent;
}
.footer__social-link::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--social-color);
  transform: translateY(100%);
  transition: transform 0.5s ease;
  z-index: 1;
}
.footer__social-link:hover::before {
  transform: translateY(0);
}
.footer__social-link:hover .instagram-logo,
.footer__social-link:hover .linkedin-logo,
.footer__social-link:hover .facebook-logo {
  transform: rotateY(360deg);
  filter: invert(1);
}
.footer__social-link .instagram-logo,
.footer__social-link .linkedin-logo,
.footer__social-link .facebook-logo {
  height: 24px;
  position: relative;
  z-index: 2;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  transition: transform 0.6s ease;
}
.footer__social-link--instagram {
  --social-color: radial-gradient(
    circle at 100%,
    #833ab4,
    #fd1d1d,
    #fcb045
  );
}
.footer__social-link--linkedin {
  --social-color: #0077b5;
}
.footer__social-link--facebook {
  --social-color: #1877f2;
}
.footer__bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(250, 250, 249, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 768px) {
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}
.footer__copyright {
  font-size: 0.875rem;
  color: rgba(250, 250, 249, 0.4);
}
.footer__legal {
  display: flex;
  gap: 1.5rem;
}
.footer__legal-link {
  font-size: 0.875rem;
  color: rgba(250, 250, 249, 0.4);
  transition: color 0.3s ease;
}
.footer__legal-link:hover {
  color: #fafaf9;
}

.project-hero {
  position: relative;
  display: flex;
  justify-content: center;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  background-color: #0f0f0f;
  background-image: url("../assets/images/project-02.jpg");
  background-size: cover;
  background-position: bottom;
}
.project-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 15vh;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(24, 24, 24, 0) 0%, #181818 100%);
}
.project-hero__media {
  position: absolute;
  inset: 0;
}
.project-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: grayscale(100%);
  transform: scale(1.02);
}
.project-hero__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.25);
}
.project-hero__content {
  position: relative;
  z-index: 10;
  height: 100%;
  min-height: calc(100vh - 84px);
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 1.5rem;
  max-width: 64rem;
}
.project-hero__subtitle {
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: white;
  text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.6);
}
.project-hero__title {
  font-size: clamp(2.5rem, 8vw, 6rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: white;
  text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.6);
  text-wrap: balance;
}
.project-hero__title em {
  font-style: italic;
}
.project-hero__description {
  font-size: 1rem;
  font-weight: 300;
  color: white;
  text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.6);
  max-width: 40rem;
  text-wrap: pretty;
}
@media (min-width: 768px) {
  .project-hero__description {
    font-size: 1.125rem;
  }
}
.project-hero__back {
  position: absolute;
  left: 50%;
  bottom: 10%;
  transform: translateX(-50%);
  z-index: 11;
  font-size: 0.875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: color 0.3s ease;
  color: rgba(255, 255, 255, 0.85);
}
.project-hero__back svg {
  transition: transform 0.3s ease;
}
.project-hero__back:hover {
  color: #3b82f6;
}
.project-hero__back:hover svg {
  transform: rotateY(180deg);
}
.project-hero__decoration {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 6rem;
  background-color: rgba(250, 250, 249, 0.25);
  display: none;
}
@media (min-width: 1024px) {
  .project-hero__decoration {
    display: block;
  }
}
.project-hero__decoration--left {
  left: 1.5rem;
}
@media (min-width: 768px) {
  .project-hero__decoration--left {
    left: 3rem;
  }
}
.project-hero__decoration--right {
  right: 1.5rem;
}
@media (min-width: 768px) {
  .project-hero__decoration--right {
    right: 3rem;
  }
}

.project-intro {
  padding: 6rem 0;
  background-color: #181818;
}
@media (min-width: 768px) {
  .project-intro {
    padding: 8rem 0;
  }
}
.project-intro__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 768px) {
  .project-intro__container {
    padding: 0 3rem;
  }
}
.project-intro__header {
  text-align: center;
  margin-bottom: 4rem;
  color: white;
}
@media (min-width: 768px) {
  .project-intro__header {
    margin-bottom: 6rem;
  }
}
.project-intro__grid {
  display: grid;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .project-intro__grid {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 6rem;
    align-items: start;
  }
}
.project-intro__item {
  margin-bottom: 2rem;
}
.project-intro__number {
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 300;
  color: #3b82f6;
}
.project-intro__item-title {
  font-size: 1.25rem;
  font-weight: 300;
  margin: 1rem 0;
  color: white;
}
@media (min-width: 768px) {
  .project-intro__item-title {
    font-size: 1.5rem;
  }
}
.project-intro__item-text {
  color: #737373;
  font-weight: 300;
  line-height: 1.7;
  text-wrap: pretty;
}

.project-meta {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  padding: 1.8rem;
  display: grid;
  gap: 1.2rem;
}
.project-meta__item {
  display: grid;
  gap: 0.35rem;
}
.project-meta__label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(250, 250, 249, 0.55);
}
.project-meta__value {
  margin: 0;
  color: rgba(250, 250, 249, 0.9);
  font-weight: 300;
  line-height: 1.5;
}

.project-gallery {
  padding: 6rem 0;
  background-color: #0f0f0f;
}
@media (min-width: 768px) {
  .project-gallery {
    padding: 8rem 0;
  }
}
.project-gallery__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 768px) {
  .project-gallery__container {
    padding: 0 3rem;
  }
}
.project-gallery__header {
  text-align: center;
  margin-bottom: 4rem;
}
@media (min-width: 768px) {
  .project-gallery__header {
    margin-bottom: 6rem;
  }
}
.project-gallery__header .section-title {
  color: white;
}
.project-gallery__grid {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .project-gallery__grid {
    grid-template-columns: repeat(12, 1fr);
    gap: 1.5rem;
  }
}

.project-shot {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: rgba(255, 255, 255, 0.03);
}
@media (min-width: 768px) {
  .project-shot {
    grid-column: span 4;
  }
}
.project-shot img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: grayscale(100%);
  transition: transform 0.7s ease, filter 0.7s ease;
}
.project-shot:hover img {
  transform: scale(1.05);
  filter: unset;
}
.project-shot--wide {
  aspect-ratio: 16/10;
}
@media (min-width: 768px) {
  .project-shot--wide {
    grid-column: span 8;
  }
}

.project-nav {
  margin-top: 3.5rem;
  text-align: center;
  width: 100%;
}
.project-nav__link {
  font-size: 0.875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(250, 250, 249, 0.6);
  width: 100%;
  text-align: center;
  transition: color 0.3s ease, transform 0.3s ease;
}
.project-nav__link:hover {
  color: #3b82f6;
  transform: translateY(-1px);
}
.project-nav__link--center {
  color: rgba(250, 250, 249, 0.85);
}

.project-cta {
  padding: 6rem 0;
  background-color: rgb(24, 24, 24);
}
@media (min-width: 768px) {
  .project-cta {
    padding: 8rem 0;
  }
}
.project-cta__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 768px) {
  .project-cta__container {
    padding: 0 3rem;
  }
}
.project-cta__inner {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .project-cta__inner {
    grid-template-columns: 1.3fr 0.7fr;
    gap: 6rem;
  }
}
.project-cta__text {
  margin-top: 2rem;
  color: rgba(250, 250, 249, 0.6);
  font-weight: 300;
  line-height: 1.7;
  text-wrap: pretty;
  max-width: 38rem;
}
.project-cta__button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.25rem;
  border-radius: 8px;
  background-color: #3c3a3a;
  color: #fafaf9;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  overflow: hidden;
}
.project-cta__button span {
  position: relative;
  z-index: 2;
}
.project-cta__button::before {
  content: "";
  position: absolute;
  top: 0;
  right: 100%;
  width: 115%;
  height: 100%;
  background: #3b82f6;
  transition: 0.5s;
  border-radius: 16px;
  z-index: 1;
}
.project-cta__button:hover::before {
  right: -12px;
}

.project-body.is-lightbox-open {
  overflow: hidden;
}
.project-body.is-lightbox-open main, .project-body.is-lightbox-open header, .project-body.is-lightbox-open footer, .project-body.is-lightbox-open .mobile-menu {
  filter: blur(6px);
  transition: filter 0.25s ease;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}
.gallery-lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.gallery-lightbox__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 15, 15, 0.68);
  backdrop-filter: blur(10px);
}
.gallery-lightbox {
  /*modal */
}
.gallery-lightbox__dialog {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(1100px, 100% - 2rem);
  height: min(76vh, 760px);
  display: grid;
  grid-template-columns: 56px 1fr 56px;
  align-items: center;
  gap: 1rem;
  z-index: 2;
}
@media (max-width: 768px) {
  .gallery-lightbox__dialog {
    width: calc(100% - 1.25rem);
    height: min(78vh, 680px);
    grid-template-columns: 44px 1fr 44px;
    gap: 0.6rem;
  }
}
.gallery-lightbox__media {
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
  display: grid;
  place-items: center;
}
@media (max-width: 768px) {
  .gallery-lightbox__media {
    border-radius: 14px;
  }
}
.gallery-lightbox__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  background: rgba(0, 0, 0, 0.25);
}
.gallery-lightbox__close {
  position: absolute;
  right: 0;
  top: -56px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.35);
  color: rgba(250, 250, 249, 0.92);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}
.gallery-lightbox__close:hover {
  transform: translateY(-1px);
  background: rgba(0, 0, 0, 0.55);
}
@media (max-width: 768px) {
  .gallery-lightbox__close {
    top: -52px;
    width: 42px;
    height: 42px;
  }
}
.gallery-lightbox__nav {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.35);
  color: rgba(250, 250, 249, 0.92);
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: transform 0.2s ease, background 0.2s ease;
}
.gallery-lightbox__nav:hover {
  transform: translateY(-1px);
  background: rgba(0, 0, 0, 0.55);
}
@media (max-width: 768px) {
  .gallery-lightbox__nav {
    width: 44px;
    height: 44px;
    font-size: 30px;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-8px);
  }
  60% {
    transform: translateY(-4px);
  }
}
@keyframes lineGrow {
  from {
    transform: translateY(-50%) scaleY(0);
  }
  to {
    transform: translateY(-50%) scaleY(1);
  }
}
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* UX */
@media (hover: none) and (pointer: coarse) {
  .gallery-lightbox__nav {
    background: rgba(0, 0, 0, 0.5);
  }
}