@charset "UTF-8";
:root {
  --color-white: #FFFFFF;
  --color-black: #000000;
  --font-size-logo: 25px;
  --font-size-nav: 19px;
  --pill-radius: 150px;
  --pill-height: 44px;
  --pill-max-width: 700px;
  --pill-bottom: clamp(60px, 12vh, 100px);
  --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes blurIn {
  0% {
    opacity: 0;
    filter: blur(100px);
    transform: translateX(-50%);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: translateX(-50%);
  }
}
@font-face {
  font-family: "Helvetica Now Display Light";
  src: url("../fonts/HelveticaNowDisplay-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Helvetica Now Display Light";
  src: url("../fonts/HelveticaNowDisplay-LightIta.otf") format("opentype");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Helvetica Now Display Regular";
  src: url("../fonts/HelveticaNowDisplay-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Helvetica Now Display Regular";
  src: url("../fonts/HelveticaNowDisplay-RegIta.otf") format("opentype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Helvetica Now Display Bold";
  src: url("../fonts/HelveticaNowDisplay-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Helvetica Now Display Bold";
  src: url("../fonts/HelveticaNowDisplay-BoldIta.otf") format("opentype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: "Helvetica Now Display Regular", sans-serif;
  color: var(--color-white);
  overflow-x: hidden;
  width: 100%;
  height: 100vh;
  position: relative;
}

.carousel {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}
.carousel__item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.carousel__item.active {
  opacity: 1;
}
.carousel__item img,
.carousel__item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.carousel__item video {
  pointer-events: none;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0, 0, 0);
  z-index: 2;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.1s ease-out;
}
.overlay.active {
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .overlay {
    opacity: 0.3;
  }
  .overlay.mobile-active {
    opacity: 0.6;
  }
}

.nav-container {
  position: fixed;
  bottom: var(--pill-bottom);
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  width: 90%;
  max-width: var(--pill-max-width);
}

.page-home .nav-container {
  animation: blurIn 2s ease-out forwards;
}

.nav-pill {
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--pill-radius);
  height: var(--pill-height);
  padding: 0 24px;
  position: relative;
  overflow: visible;
  transition: var(--transition-smooth);
  display: flex;
  align-items: stretch;
}

.nav-pill-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  top: -2px;
  flex: 1;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0;
  font-family: "Helvetica Now Display Bold", sans-serif;
  font-size: var(--font-size-logo);
  color: var(--color-black);
  letter-spacing: -0.02em;
  position: relative;
  transition: var(--transition-smooth);
}
.logo__space {
  white-space: nowrap;
}
.logo__works {
  white-space: nowrap;
  transition: margin-left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu {
  display: flex;
  gap: 15px;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease-in;
  font-family: "Helvetica Now Display Regular", sans-serif;
  font-size: var(--font-size-nav);
  position: absolute;
  right: 0;
  margin-top: 2px;
}
.menu__item {
  color: var(--color-black);
  text-decoration: none;
  position: relative;
  transition: none;
  letter-spacing: 0.02em;
  text-underline-offset: 3px;
}

.hamburger {
  cursor: pointer;
  display: none;
  z-index: 12;
  background: transparent;
  border: none;
  padding: 0;
  width: 14px;
  height: 14px;
  position: relative;
  top: 2px;
}
.hamburger img {
  width: 100%;
  height: 100%;
  display: block;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 7px;
  padding: 16px 20px 60px 20px;
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 26px;
  position: absolute;
  top: 100%;
  margin-top: -42px;
  left: 0;
  right: 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  transform: translateY(-112px);
  transition: var(--transition-smooth);
  z-index: -1;
}
.mobile-menu.active {
  opacity: 1;
  pointer-events: all;
  max-height: 300px;
  transform: translateY(-132px);
}
.mobile-menu__item {
  color: var(--color-black);
  text-decoration: none;
  font-family: "Helvetica Now Display Regular", sans-serif;
  font-size: var(--font-size-nav);
  text-align: right;
  opacity: 0;
  transition: opacity 0.15s ease;
  letter-spacing: 0.02em;
  text-underline-offset: 3px;
}
.mobile-menu.active .mobile-menu__item {
  opacity: 1;
  transition-delay: 0.3s;
}

@media screen and (min-width: 768px) {
  .logo {
    justify-content: flex-start;
  }
  .logo__works {
    margin-left: 518px;
  }
  .nav-pill:hover .logo__works,
  .nav-pill.logo-connected .logo__works {
    margin-left: 0;
  }
  .nav-pill:hover .menu,
  .nav-pill.logo-connected .menu {
    opacity: 1;
    pointer-events: all;
  }
}
@media screen and (max-width: 767px) {
  .nav-container {
    bottom: 60px;
  }
  .nav-pill {
    padding: 0 20px;
  }
  .logo {
    justify-content: flex-start;
    position: relative;
    left: auto;
    right: auto;
  }
  .menu {
    display: none;
  }
  .hamburger {
    display: block;
  }
  .mobile-menu {
    display: flex;
  }
}
.fade-in {
  animation: fadeIn 0.6s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.slide-left {
  animation: slideLeft 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideLeft {
  from {
    transform: translateX(20px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
body:not(.page-layout):not(.projects-page) {
  background-color: #000;
  animation: fadeInFromBlack 3s ease-out forwards;
}
body:not(.page-layout):not(.projects-page) .logo {
  color: var(--color-white);
}
body:not(.page-layout):not(.projects-page) .menu__item {
  color: var(--color-white);
  text-underline-offset: 5px;
}
body:not(.page-layout):not(.projects-page) .menu__item:hover {
  text-decoration: underline;
}
body:not(.page-layout):not(.projects-page) .mobile-menu__item {
  color: var(--color-white);
}
body:not(.page-layout):not(.projects-page) .mobile-menu__item:hover {
  text-decoration: underline;
}
body:not(.page-layout):not(.projects-page) .hamburger img {
  filter: brightness(0) invert(1);
}

@keyframes fadeInFromBlack {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.page-layout .logo,
.projects-page .logo {
  color: var(--color-black);
}
.page-layout .menu__item,
.projects-page .menu__item {
  color: var(--color-black);
  text-underline-offset: 5px;
}
.page-layout .mobile-menu__item,
.projects-page .mobile-menu__item {
  color: var(--color-black);
}
.page-layout .hamburger img,
.projects-page .hamburger img {
  filter: brightness(0);
}

body::before {
  content: "";
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 300px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.3) 20%, rgba(0, 0, 0, 0.2) 35%, rgba(0, 0, 0, 0.12) 50%, rgba(0, 0, 0, 0.06) 65%, rgba(0, 0, 0, 0.03) 80%, rgba(0, 0, 0, 0));
  pointer-events: none;
  z-index: 9;
}

.page-layout {
  background: #EEEEEE;
  min-height: 100vh;
  padding-bottom: 200px;
  position: relative;
}

.content-page {
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  padding: 60px 80px;
  min-height: calc(100vh - (var(--pill-bottom) + var(--pill-height)) - 120px);
  display: flex;
  align-items: center;
}

.content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 180px;
  align-items: center;
  width: 100%;
}

.content-page:has(.content-wrapper)::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 50vw;
  height: 100vh;
  background: #F2F2F2;
  z-index: 0;
  pointer-events: none;
}
.content-page:has(.content-wrapper)::after {
  content: "";
  position: fixed;
  top: 0;
  right: 0;
  width: 50vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.03);
  z-index: 0;
  pointer-events: none;
}

.page-title, .rich-text-content h1 {
  font-family: "Helvetica Now Display Bold", sans-serif;
  font-size: 60px;
  font-weight: 700;
  color: var(--color-black);
  margin: 0 0 40px 0;
  line-height: 1.1;
}

.page-paragraph, .rich-text-content p {
  font-family: "Helvetica Now Display Light", sans-serif;
  font-size: 18px;
  font-weight: 300;
  color: var(--color-black);
  line-height: 1.6;
  margin: 0 0 24px 0;
}

.content-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.content-image {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 600px;
  position: relative;
  z-index: 1;
}
.content-image .image-block,
.content-image img {
  width: 100%;
  height: auto;
  display: block;
}

.content-form {
  max-width: 540px;
  width: 100%;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-family: "Helvetica Now Display Bold", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--color-black);
}

.form-input,
.form-textarea {
  font-family: "Helvetica Now Display Regular", sans-serif;
  font-size: 16px;
  color: var(--color-black);
  background: rgba(0, 0, 0, 0.03);
  border: none;
  border-radius: 0;
  padding: 16px;
  width: 100%;
  transition: background 0.3s ease;
}
.form-input:focus,
.form-textarea:focus {
  outline: none;
  background: rgba(0, 0, 0, 0.05);
}

.form-input {
  height: 40px;
}

.form-textarea {
  resize: vertical;
  min-height: 80px;
}

.btn-submit {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Helvetica Now Display Regular", sans-serif;
  font-size: 16px;
  color: var(--color-black);
  background: transparent;
  border: 1px solid var(--color-black);
  border-radius: 50px;
  padding: 12px 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 16px;
}
.btn-submit:hover {
  background: var(--color-black);
  color: var(--color-white);
}
.btn-submit:active {
  transform: scale(0.98);
}
.btn-submit:disabled, .btn-submit--loading {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}

.form-input--error,
.form-textarea--error {
  background: rgba(220, 53, 69, 0.05);
  border: 1px solid #dc3545;
}

.form-error {
  font-family: "Helvetica Now Display Regular", sans-serif;
  font-size: 14px;
  color: #dc3545;
  margin-top: 4px;
  letter-spacing: 0.02em;
}

.form-message {
  font-family: "Helvetica Now Display Bold", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--color-black);
  transition: opacity 0.3s ease;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 8px;
  display: flex !important;
  opacity: 1 !important;
}
.form-message::before {
  content: "";
  font-size: 16px;
  font-weight: 700;
}
.form-message--success::before {
  content: "✓";
}
.form-message--error::before {
  content: "✗";
}
.form-message--fade-out {
  opacity: 0;
}

.content-info {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  justify-content: center;
  height: 100%;
}

.contact-logo {
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
  margin-left: auto;
  display: flex;
  justify-content: flex-end;
}
.contact-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-end;
}

.contact-email {
  font-family: "Helvetica Now Display Bold", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--color-black);
  text-decoration: none;
  transition: opacity 0.3s ease;
  margin: 0;
}
.contact-email:hover {
  opacity: 0.6;
}

.contact-phone {
  font-family: "Helvetica Now Display Regular", sans-serif;
  font-size: 18px;
  color: var(--color-black);
  text-decoration: none;
  transition: opacity 0.3s ease;
  margin: 0 0 20px 0;
}
.contact-phone:hover {
  opacity: 0.6;
}

.contact-address {
  font-family: "Helvetica Now Display Regular", sans-serif;
  font-size: 12px;
  font-style: normal;
  color: var(--color-black);
  line-height: 1.4;
  margin: 0 0 10px 0;
  letter-spacing: 0.12em;
}

.contact-company {
  font-family: "Helvetica Now Display Bold", sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--color-black);
  margin: 0 0 20px 0;
  letter-spacing: 0.12em;
}

.contact-social {
  display: flex;
  gap: 16px;
  margin: 0 0 5px 0;
}
.contact-social a {
  display: block;
  width: 28px;
  height: 28px;
  transition: opacity 0.3s ease;
}
.contact-social a:hover {
  opacity: 0.6;
}
.contact-social a img {
  width: 100%;
  height: 100%;
}

.contact-copyright {
  font-family: "Helvetica Now Display Regular", sans-serif;
  font-size: 10px;
  color: var(--color-black);
  margin: 0;
  letter-spacing: 0.12em;
}

.content-column {
  width: 100%;
}

.contact-form-block {
  max-width: 540px;
  width: 100%;
}

.company-info-block {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}

.rich-text-content a {
  color: var(--color-black);
  text-decoration: underline;
  transition: opacity 0.3s ease;
}
.rich-text-content a:hover {
  opacity: 0.6;
}

.rich-text-block {
  font-family: "Helvetica Now Display Light", sans-serif;
  font-size: 18px;
  font-weight: 300;
  color: var(--color-black);
  line-height: 1.6;
}
.rich-text-block p {
  margin: 0 0 24px 0;
}
.rich-text-block h1, .rich-text-block h2, .rich-text-block h3, .rich-text-block h4, .rich-text-block h5, .rich-text-block h6 {
  font-family: "Helvetica Now Display Bold", sans-serif;
  font-weight: 700;
  color: var(--color-black);
  margin: 0 0 24px 0;
}
.rich-text-block a {
  color: var(--color-black);
  text-decoration: underline;
  transition: opacity 0.3s ease;
}
.rich-text-block a:hover {
  opacity: 0.6;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  color: inherit;
}

.menu__item--active,
.mobile-menu__item--active {
  text-decoration: underline;
}

.logo-link:hover {
  opacity: 0.7;
}

.project-carousels {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.project-carousel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: none;
}
.project-carousel.active {
  opacity: 1;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: translateX(100%);
  transition: transform 0.6s ease;
  user-select: none;
  cursor: default;
}
.carousel-slide.active {
  transform: translateX(0);
}
.carousel-slide.slide-out-left {
  transform: translateX(-100%);
}
.carousel-slide.slide-out-right {
  transform: translateX(100%);
}
.carousel-slide > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.carousel-slide[data-slide="1"]::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
  pointer-events: none;
}

.slide-title-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Helvetica Now Display Bold", sans-serif;
  font-size: 60px;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1;
  z-index: 10;
  pointer-events: none;
  text-align: center;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.project-carousels.show-title .slide-title-overlay {
  opacity: 1;
}

.slide-two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  height: 100%;
  gap: 0;
}
.slide-two-column--text {
  background: #f2f2f2;
}

.slide-text {
  display: flex;
  flex-direction: column;
  padding: 80px 60px;
  background: #F2F2F2;
  max-width: 600px;
  margin: 0 auto;
  user-select: none;
  cursor: default;
}
.slide-two-column--text .slide-text {
  height: 100vh;
  padding-top: 120px;
  justify-content: flex-start;
}

.slide-content-scroll {
  overflow-y: auto;
  flex: 1;
  padding-bottom: 100px;
  padding-right: 20px;
}

.slide-title {
  font-family: "Helvetica Now Display Bold", sans-serif;
  font-size: 60px;
  font-weight: 700;
  color: var(--color-black);
  margin: 0 0 40px 0;
  line-height: 1.1;
}

.slide-paragraph {
  font-family: "Helvetica Now Display Light", sans-serif;
  font-size: 18px;
  font-weight: 300;
  color: var(--color-black);
  line-height: 1.6;
  margin: 0 0 24px 0;
}
.slide-paragraph:last-child {
  margin-bottom: 0;
}

.slide-rich-content p {
  font-family: "Helvetica Now Display Light", sans-serif;
  font-size: 18px;
  font-weight: 300;
  color: var(--color-black);
  line-height: 1.6;
  margin: 0 0 24px 0;
}
.slide-rich-content p:last-child {
  margin-bottom: 0;
}

.slide-info-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}

.slide-info-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 20px;
}

.slide-info-item {
  font-family: "Helvetica Now Display Light", sans-serif;
  font-size: 14px;
  line-height: 1.4;
  color: var(--color-black);
  letter-spacing: 0.12em;
}
.slide-info-item strong {
  font-family: "Helvetica Now Display Bold", sans-serif;
  font-weight: 700;
  display: block;
  margin-bottom: 2px;
}

.slide-image {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.03);
}
.slide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.slide-column {
  position: relative;
  overflow: hidden;
}
.slide-column img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.slide-column--cover img {
  object-fit: cover;
}
.slide-column--centered {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.slide-centered-img {
  width: 70% !important;
  height: auto !important;
  object-fit: contain !important;
}

.slide-video {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 5;
}
.slide-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.slide-video .video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0.8;
  z-index: 20;
}
.slide-video .video-play-btn img {
  width: 77px;
  height: 88px;
  display: block;
}
.slide-video .video-play-btn:hover {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
}
.slide-video .video-play-btn.playing {
  opacity: 0;
  pointer-events: none;
}

.slide-centered-image {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10%;
  background: #FFFFFF;
}
.slide-centered-image img {
  width: 80%;
  height: 80%;
  object-fit: cover;
  object-position: center;
}

.projects-list-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  overflow-y: auto;
  overflow-x: hidden;
  scroll-behavior: smooth;
  transition: opacity 0.6s ease;
}
.projects-list-container.faded {
  opacity: 0;
  pointer-events: none;
}
.projects-list-container::before {
  content: "";
  display: block;
  width: 100%;
  height: calc(50vh - 65px);
  background: var(--color-white);
}
.projects-list-container::after {
  content: "";
  display: block;
  width: 100%;
  height: 50vh;
  background: var(--color-white);
}

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

.project-item {
  width: 100%;
  background: var(--color-white);
  cursor: pointer;
  transition: background 0.3s ease;
  position: relative;
}
.project-item:hover {
  background: transparent;
}
.project-item:hover .project-title {
  color: var(--color-white);
}
.project-item--coming-soon {
  cursor: default;
}
.project-item--coming-soon:hover {
  background: var(--color-white);
}
.project-item--coming-soon:hover .project-title {
  color: rgba(0, 0, 0, 0.3);
}
.project-item--coming-soon .project-title {
  color: rgba(0, 0, 0, 0.3);
}

.project-title {
  font-family: "Helvetica Now Display Bold", sans-serif;
  font-size: 60px;
  font-weight: 700;
  color: var(--color-black);
  margin: 0;
  text-align: center;
  pointer-events: none;
  max-width: 1200px;
  line-height: 1;
  margin: 0 auto;
  transition: color 0.3s ease;
  height: 130px;
  padding: 5px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--color-black);
}
.project-item:last-child .project-title {
  border-bottom: none;
}

.carousel-nav {
  position: fixed;
  bottom: var(--pill-bottom);
  left: 0;
  right: 0;
  z-index: 15;
  height: var(--pill-height);
  pointer-events: none;
}

.carousel-nav-btn {
  position: absolute;
  bottom: 0;
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: none;
  cursor: pointer;
  padding: 0;
  width: var(--pill-height);
  height: var(--pill-height);
  border-radius: 50%;
  transition: all 0.3s ease, opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  opacity: 1;
}
.carousel-nav-btn.hidden {
  opacity: 0;
  pointer-events: none;
}
.carousel-nav-btn--prev {
  left: calc(50% - 405px);
}
.carousel-nav-btn--next {
  right: calc(50% - 405px);
}
.carousel-nav-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}
.carousel-nav-btn img {
  display: block;
  width: auto;
  max-height: 20px;
  transition: opacity 0.3s ease;
}
.carousel-nav-btn--prev img {
  transform: rotate(180deg);
}

@media screen and (max-width: 767px) {
  :root {
    --pill-max-width: 67.5vw;
    --pill-bottom: 60px;
  }
  .project-title {
    font-size: 40px;
  }
  .slide-two-column {
    display: flex;
    flex-direction: column;
  }
  .slide-two-column.slide-two-column--text {
    overflow-y: scroll;
    height: 100vh;
  }
  .slide-text {
    order: 1;
    padding: 60px 24px 120px 24px;
    height: auto !important;
    justify-content: center !important;
    padding-top: 60px !important;
  }
  .slide-image {
    order: 2;
    height: 100vh;
    overflow: visible;
  }
  .slide-content-scroll {
    overflow-y: visible;
    padding-bottom: 0;
    padding-right: 0;
    flex: none;
  }
  .slide-title {
    font-size: 40px;
    margin-bottom: 24px;
  }
  .slide-info-columns {
    gap: 24px;
    margin-top: 40px;
  }
  .slide-info-column {
    gap: 16px;
  }
  .slide-column--centered {
    height: 50vh;
    padding: 0;
  }
  .slide-column--cover {
    height: 50vh;
  }
  .slide-centered-image {
    padding: 0;
  }
  .slide-centered-image img {
    width: 100% !important;
  }
  .carousel-slide > .slide-centered-image {
    height: 100vh;
  }
  .slide-column .slide-centered-image {
    height: 50vh;
  }
  .slide-centered-img {
    width: 90% !important;
  }
  .carousel-nav {
    gap: 300px;
  }
  .carousel-nav-btn {
    bottom: 0;
  }
  .carousel-nav-btn--prev {
    left: 10px;
  }
  .carousel-nav-btn--next {
    right: 10px;
  }
  .projects-list-container {
    padding-bottom: 60px;
  }
}
@media screen and (max-width: 767px) {
  .page-layout::before,
  .page-layout::after,
  .content-page:has(.content-wrapper)::before,
  .content-page:has(.content-wrapper)::after {
    display: none;
  }
  .content-page {
    padding: 60px 24px 60px 24px;
  }
  .content-wrapper {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .content-text,
  .content-form {
    background: #F2F2F2;
    padding: 60px 24px;
  }
  .content-image,
  .content-info {
    background: rgba(0, 0, 0, 0.03);
    padding: 60px 24px;
  }
  .page-title, .rich-text-content h1 {
    font-size: 48px;
    margin-bottom: 32px;
  }
  .page-paragraph, .rich-text-content p {
    font-size: 16px;
  }
  .content-image {
    order: 2;
  }
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .content-form {
    max-width: 100%;
  }
  .content-info {
    align-items: center;
    text-align: center;
    padding-top: 48px;
  }
  .contact-details {
    align-items: center;
  }
  .company-info-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .contact-logo {
    margin-left: 0;
    justify-content: center;
  }
  .contact-address {
    text-align: center;
  }
  .btn-submit {
    align-self: flex-start;
  }
}

/* ==========================================================================
   Full-screen embed page
   ========================================================================== */
.fullscreen-embed-page {
  background: #000;
}
.fullscreen-embed-page .embed-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.fullscreen-embed-page .embed-wrapper iframe {
  width: 100%;
  height: 100%;
  min-height: 375px;
  min-width: 375px;
  border: none;
}

/* Inline embed */
.embed-inline {
  width: 100%;
}
.embed-inline iframe {
  width: 100%;
  border: none;
}

/* ==========================================================================
   Password-protected page
   ========================================================================== */
.password-page {
  background: #000;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.password-box {
  text-align: center;
  width: 90%;
  max-width: 500px;
}
.password-logo {
  font-family: 'Helvetica Now Display Bold', sans-serif;
  font-size: 25px;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.password-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.password-input {
  font-family: 'Helvetica Now Display Regular', sans-serif;
  font-size: 19px;
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 0;
  padding: 12px 20px;
  text-align: center;
  width: 100%;
  max-width: 240px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.password-input:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.6);
}
.password-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.password-submit {
  display: inline-flex;
  align-items: center;
  font-family: 'Helvetica Now Display Regular', sans-serif;
  font-size: 16px;
  color: #fff;
  background: transparent;
  border: 1px solid #fff;
  border-radius: 50px;
  padding: 12px 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 8px;
}
.password-submit:hover {
  background: #fff;
  color: #000;
}
.password-submit:active {
  transform: scale(0.98);
}
.password-error {
  font-family: 'Helvetica Now Display Regular', sans-serif;
  font-size: 14px;
  color: rgba(255, 100, 100, 0.9);
  margin-top: 16px;
  letter-spacing: 0.02em;
}

/* Screen-reader only helper */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/*# sourceMappingURL=styles.css.map */
