@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400&display=swap");

@font-face {
  font-family: "Avenir LT";
  src: url("https://solucoesparaincorporadoras.com.br/assets/Avenir-LT-Std-45-Book.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Avenir LT";
  src: url("https://solucoesparaincorporadoras.com.br/assets/Avenir-LT-Std-35-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-height: 100%;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  background: #000;
  font-family: "Avenir LT", Arial, Helvetica, sans-serif;
  overscroll-behavior-y: contain;
}

main {
  position: relative;
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

main > section[id] {
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

body.is-menu-open,
body.is-video-modal-open,
body.is-app-modal-open {
  overflow: hidden;
}

.video-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  background: #000;
}

.video-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(0, 0, 0, 0.2);
  pointer-events: none;
  z-index: 1;
}

.video-hero__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.video-hero__media--mobile {
  display: none !important;
}

.site-header {
  position: fixed !important;
  top: 28px !important;
  left: 46px !important;
  right: 46px !important;
  width: auto !important;
  max-width: none !important;
  margin: 0 !important;
  z-index: 3;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  pointer-events: none;
}

.site-header__logo,
.menu-toggle {
  pointer-events: auto;
}

.site-header__logo {
  display: inline-flex;
  width: 180px !important;
  max-width: none !important;
  text-decoration: none !important;
  background: transparent !important;
  box-shadow: none !important;
}

.site-header__logo img {
  display: block;
  width: 100%;
  height: auto;
}

.menu-toggle {
  display: inline-flex;
  width: 28px;
  height: 28px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 3px;
  border-radius: 999px;
  background: #fff;
  transition: transform 180ms ease, opacity 180ms ease;
}

.is-menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.is-menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 4;
  background: rgba(0, 0, 0, 0.18);
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms ease;
}

.site-menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 5;
  display: flex;
  width: min(360px, 68vw);
  height: 100vh;
  min-height: 100svh;
  padding: 68px 42px 36px 28px;
  background: rgba(18, 18, 18, 0.88);
  transform: translateX(100%);
  transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  gap: clamp(20px, 3vh, 34px);
}

.site-menu a {
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(20px, 1.45vw, 26px);
  line-height: 1.3;
  text-align: right;
  text-decoration: none;
  transition: color 180ms ease, transform 180ms ease;
}

.site-menu a:hover,
.site-menu a:focus-visible {
  color: #fff;
  transform: translateX(-4px);
}

.site-menu__close {
  position: absolute;
  top: 24px;
  right: 24px;
  display: inline-flex;
  width: 24px;
  height: 24px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.site-menu__close span {
  position: absolute;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
}

.site-menu__close span:first-child {
  transform: rotate(45deg);
}

.site-menu__close span:last-child {
  transform: rotate(-45deg);
}

.is-menu-open .menu-backdrop {
  opacity: 1;
  pointer-events: auto;
}

.is-menu-open .site-menu {
  transform: translateX(0);
}

.section-nav {
  position: fixed;
  top: 50%;
  left: 30px;
  z-index: 3;
  display: flex;
  transform: translateY(-50%);
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.section-nav__item {
  position: relative;
  display: inline-flex;
  --section-nav-dot-center: 12px;
  width: 104px;
  height: 28px;
  padding: 0;
  border-radius: 999px;
  align-items: center;
  justify-content: flex-start;
  text-decoration: none;
}

.section-nav__item::before,
.section-nav__item::after {
  position: absolute;
  z-index: 2;
  content: "";
  border-radius: 999px;
  top: 50%;
  left: var(--section-nav-dot-center);
  transform: translate(-50%, -50%);
  transition: background-color 180ms ease, border-color 180ms ease;
}

.section-nav__item::before {
  width: 6px;
  height: 6px;
  background: #fff;
}

.section-nav__item::after {
  width: 14px;
  height: 14px;
  border: 1px solid transparent;
}

.section-nav__item.is-active::after {
  border-color: #fff;
}

.section-nav__item:hover::before,
.section-nav__item:focus-visible::before {
  background: #838383;
}

.section-nav__item:hover::after,
.section-nav__item:focus-visible::after {
  border-color: transparent;
}

.section-nav__item span {
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 1;
  display: block;
  width: max-content;
  max-width: 210px;
  padding: 8px 13px 8px 24px;
  border-radius: 999px;
  color: #fff;
  background: #212121;
  font-family: "Avenir LT", Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-50%) translateX(-6px);
  transition: opacity 180ms ease, transform 180ms ease;
  white-space: nowrap;
}

.section-nav__item:hover span,
.section-nav__item:focus-visible span {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.section-nav__item:hover,
.section-nav__item:focus-visible {
  background: transparent;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 3;
  display: inline-flex;
  width: 32px;
  height: 32px;
  opacity: 0.82;
  transform: translateX(-50%);
  transition: opacity 180ms ease, transform 180ms ease;
}

.scroll-cue:hover,
.scroll-cue:focus-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(2px);
}

.scroll-cue img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.archviz-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  background: #000;
}

.archviz-section::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: rgba(0, 0, 0, 0.28);
  pointer-events: none;
}

.archviz-slider,
.archviz-slider__item,
.archviz-slider__item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.archviz-slider__item {
  opacity: 0;
  transition: opacity 500ms ease;
}

.archviz-slider__item.is-active {
  opacity: 1;
}

.archviz-slider__item img {
  display: block;
  object-fit: cover;
  object-position: center;
}

.archviz-section__content {
  position: relative;
  z-index: 2;
  display: flex;
  width: auto;
  height: 100%;
  margin-left: clamp(100px, 10.5vw, 150px);
  color: #fff;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-top: 34px;
}

.archviz-section__content h2 {
  margin: 0 0 4px;
  color: #fff;
  font-size: 50px;
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: 0;
}

.archviz-section__button {
  display: inline-flex;
  color: #fff;
  border: 0;
  background: transparent;
  font-family: "Avenir LT", Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
  align-items: center;
  gap: 9px;
}

.archviz-section__button img {
  display: block;
  width: 18px;
  height: 18px;
  object-fit: contain;
  transition: transform 180ms ease;
}

.archviz-section__button:hover img,
.archviz-section__button:focus-visible img {
  transform: translateX(4px);
}

.tour-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  background: #000;
}

.tour-section__background,
.tour-section__background img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.tour-section__background img {
  display: block;
  object-fit: cover;
  object-position: center;
}

.tour-section__inner {
  position: relative;
  z-index: 2;
  display: grid;
  width: auto;
  height: 100%;
  margin-left: clamp(100px, 10.5vw, 150px);
  margin-right: clamp(42px, 4vw, 72px);
  padding-top: 56px;
  grid-template-columns: minmax(210px, 0.48fr) minmax(620px, 1.55fr);
  gap: clamp(24px, 4vw, 60px);
  align-items: center;
}

.tour-section__content {
  color: #fff;
}

.tour-section__content h2 {
  margin: 0;
  color: #fff;
  font-size: 50px;
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: 0;
  text-align: left;
}

.tour-carousel {
  width: min(100%, 1200px);
  justify-self: end;
}

.tour-carousel__viewport {
  position: relative;
  width: 100%;
  height: min(70vh, 590px);
  min-height: 410px;
  overflow: hidden;
  border-radius: 15px;
  background: #d9d9d9;
}

.tour-carousel__track {
  display: flex;
  width: 100%;
  height: 100%;
  transform: translateX(0);
  transition: transform 650ms cubic-bezier(0.76, 0, 0.24, 1);
  will-change: transform;
}

.tour-carousel__item {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.tour-carousel__item.is-active {
  pointer-events: auto;
}

.tour-carousel iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 15px;
}

.tour-carousel__controls {
  display: flex;
  margin-top: 24px;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.tour-carousel__arrow {
  display: inline-flex;
  width: 30px;
  height: 30px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: background-color 180ms ease, border-color 180ms ease;
}

.tour-carousel__arrow:hover,
.tour-carousel__arrow:focus-visible {
  opacity: 0.72;
}

.tour-carousel__arrow img {
  display: block;
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.tour-carousel__pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.tour-carousel__pagination button {
  position: relative;
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #7e7e7e;
  cursor: pointer;
}

.tour-carousel__pagination button::after {
  position: absolute;
  inset: -4px;
  content: "";
  border: 1px solid transparent;
  border-radius: 999px;
}

.tour-carousel__pagination button.is-active {
  background: #fff;
}

.tour-carousel__pagination button.is-active::after {
  border-color: #fff;
}

.production-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  background: #000;
}

.production-section::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: rgba(0, 0, 0, 0.1);
  pointer-events: none;
}

.production-section__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.production-section__media--mobile {
  display: none;
}

.production-section__content {
  position: relative;
  z-index: 2;
  display: flex;
  height: 100%;
  margin-left: clamp(100px, 10.5vw, 150px);
  color: #fff;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-top: 34px;
}

.production-section__content h2 {
  margin: 0 0 18px;
  color: #fff;
  font-size: 50px;
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: 0;
}

.production-section__toggle {
  display: inline-flex;
  padding: 0;
  border: 0;
  color: #fff;
  background: transparent;
  cursor: pointer;
  font-family: "Avenir LT", Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  align-items: center;
  gap: 10px;
}

.production-section__toggle img {
  display: block;
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.production-projects {
  width: min(130px, 12vw);
  margin-top: 0;
  padding: 0 17px;
  border-radius: 9px;
  background: rgba(0, 0, 0, 0.27);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  transform: translateY(-8px);
  transition: max-height 620ms ease, opacity 420ms ease, transform 620ms ease, padding-top 620ms ease, padding-bottom 620ms ease, margin-top 620ms ease;
}

.production-projects.is-open {
  max-height: 420px;
  margin-top: 28px;
  padding-top: 18px;
  padding-bottom: 20px;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.production-projects button {
  display: block;
  width: 100%;
  padding: 17px 0;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.72);
  border-top: 0;
  border-right: 0;
  border-left: 0;
  background: transparent;
  cursor: pointer;
  font-family: "Avenir LT", Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  text-align: left;
  text-decoration: none;
}

.production-projects button:first-child {
  padding-top: 0;
}

.production-projects button:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: flex;
  padding: clamp(24px, 5vw, 70px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms ease;
  align-items: center;
  justify-content: center;
}

.video-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
}

.video-modal__content {
  position: relative;
  z-index: 1;
  width: min(64vw, 1200px);
}

.video-modal__close {
  position: absolute;
  right: -36px;
  top: -34px;
  width: 24px;
  height: 24px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.video-modal__close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
}

.video-modal__close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.video-modal__close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.video-modal__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #111;
}

.video-modal__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.ar-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  background: #000;
}

.ar-section::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: rgba(0, 0, 0, 0.4);
  pointer-events: none;
}

.ar-section__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.ar-section__media--mobile {
  display: none;
}

.ar-section__content {
  position: relative;
  z-index: 2;
  display: flex;
  height: 100%;
  margin-left: clamp(100px, 10.5vw, 150px);
  color: #fff;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-top: 34px;
}

.ar-section__button {
  position: relative;
  z-index: 3;
}

.ar-section__content h2 {
  margin: 0 0 18px;
  color: #fff;
  font-size: 50px;
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: 0;
}

.ar-section__button {
  display: inline-flex;
  color: #fff;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-family: "Avenir LT", Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
  align-items: center;
  gap: 9px;
}

.ar-section__button img {
  display: block;
  width: 18px;
  height: 18px;
  object-fit: contain;
  transition: transform 180ms ease;
}

.ar-section__button:hover img,
.ar-section__button:focus-visible img {
  transform: translateX(4px);
}

.ar-section__button--mobile {
  display: none;
}

.app-modal {
  position: fixed;
  inset: 0;
  z-index: 21;
  display: flex;
  padding: clamp(24px, 4vw, 64px);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 240ms ease;
  align-items: center;
  justify-content: center;
}

.app-modal.is-open,
.app-modal:target {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.app-modal__backdrop {
  position: absolute;
  inset: 0;
  display: block;
  background: rgba(0, 0, 0, 0.86);
}

.app-modal__content {
  position: relative;
  z-index: 1;
  width: min(84vw, 1440px);
}

.app-modal__close {
  position: absolute;
  right: -38px;
  top: -34px;
  z-index: 3;
  width: 24px;
  height: 24px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.app-modal__close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
}

.app-modal__close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.app-modal__close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.app-modal__desktop-link {
  display: block;
}

.app-modal__desktop-link img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 20px;
}

.app-modal__mobile-carousel {
  display: none;
}

.simple-video-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  background: #000;
}

.simple-video-section::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: rgba(0, 0, 0, 0.2);
  pointer-events: none;
}

.simple-video-section__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.simple-video-section__media--mobile {
  display: none;
}

.simple-video-section__content {
  position: relative;
  z-index: 2;
  display: flex;
  height: 100%;
  margin-left: clamp(100px, 10.5vw, 150px);
  color: #fff;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-top: 34px;
}

.simple-video-section__content h2 {
  margin: 0;
  color: #fff;
  font-size: 50px;
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: 0;
}

.marketing-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  background: #000;
}

.marketing-section::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: rgba(0, 0, 0, 0.2);
  pointer-events: none;
}

.marketing-section__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.marketing-section__media--mobile,
.marketing-section__title-mobile {
  display: none;
}

.marketing-section__content {
  position: relative;
  z-index: 2;
  display: flex;
  height: 100%;
  margin-left: clamp(100px, 10.5vw, 150px);
  color: #fff;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-top: 34px;
}

.marketing-section__content h2 {
  margin: 0 0 18px;
  color: #fff;
  font-size: 50px;
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: 0;
}

.marketing-section__button {
  display: inline-flex;
  color: #fff;
  border: 0;
  background: transparent;
  font-family: "Avenir LT", Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
  align-items: center;
  gap: 9px;
}

.marketing-section__button img {
  display: block;
  width: 18px;
  height: 18px;
  object-fit: contain;
  transition: transform 180ms ease;
}

.marketing-section__button:hover img,
.marketing-section__button:focus-visible img {
  transform: translateX(4px);
}

.contact-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  background: #000;
}

.contact-section__background,
.contact-section__background img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.contact-section__background img {
  display: block;
  object-fit: cover;
  object-position: center;
}

.contact-section__content {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(31vw, 570px);
  min-width: 470px;
  height: 100%;
  margin-left: auto;
  margin-right: clamp(64px, 6.5vw, 120px);
  color: #fff;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: clamp(96px, 10vh, 128px);
}

.contact-section__content h2 {
  margin: 0 0 34px;
  color: #fff;
  font-size: 50px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form input,
.contact-form textarea {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 0;
  color: #fff;
  background: transparent;
  box-shadow: none;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.2;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  background: transparent;
  box-shadow: none;
  outline: none;
}

.contact-form input:-webkit-autofill,
.contact-form input:-webkit-autofill:hover,
.contact-form input:-webkit-autofill:focus,
.contact-form textarea:-webkit-autofill,
.contact-form textarea:-webkit-autofill:hover,
.contact-form textarea:-webkit-autofill:focus {
  border-bottom-color: rgba(255, 255, 255, 0.88);
  -webkit-text-fill-color: #fff;
  box-shadow: 0 0 0 1000px transparent inset;
  caret-color: #fff;
  transition: background-color 9999s ease-out;
}

.contact-form input {
  height: 28px;
}

.contact-form textarea {
  min-height: 70px;
  padding-top: 0;
  resize: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.9);
  font-family: "Avenir LT", Arial, Helvetica, sans-serif;
  opacity: 1;
}

.contact-form button {
  width: 112px;
  height: 39px;
  border: 0;
  color: #202020;
  background: #fff;
  cursor: pointer;
  font-family: "Avenir LT", Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 400;
  transition: opacity 180ms ease;
}

.contact-form button:hover,
.contact-form button:focus-visible {
  opacity: 0.82;
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.contact-form__status {
  min-height: 18px;
  margin: -12px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  line-height: 1.3;
}

.footer-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  background: #000;
  color: #fff;
}

.footer-section__video,
.footer-section__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.footer-section__video {
  object-fit: cover;
  object-position: center;
}

.footer-section__overlay {
  background: rgba(0, 0, 0, 0.5);
}

.footer-section__inner {
  position: relative;
  z-index: 2;
  display: flex;
  width: 100%;
  height: 100%;
  padding: 100px clamp(48px, 2.6vw, 56px);
  flex-direction: column;
  justify-content: space-between;
}

.footer-section__top {
  width: min(82vw, 1520px);
  margin: 0 auto;
}

.footer-section__services {
  display: flex;
  color: #fff;
  font-family: "Avenir LT", Arial, Helvetica, sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 1;
  white-space: nowrap;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.footer-section__dot {
  color: rgba(255, 255, 255, 0.72);
  margin: 0 8px;
}

.footer-section__divider {
  display: block;
  width: 100%;
  height: 1px;
  margin-top: 26px;
  object-fit: fill;
  opacity: 0.6;
}

.footer-section__bottom {
  display: flex;
  width: 100%;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.footer-section__logo {
  display: inline-flex;
  width: clamp(176px, 13.2vw, 242px);
}

.footer-section__logo img {
  display: block;
  width: 100%;
  height: auto;
}

.footer-section__contact {
  display: flex;
  color: #fff;
  font-family: "Avenir LT", Arial, Helvetica, sans-serif;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}

.footer-section__contact p {
  display: flex;
  margin: 0;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.28;
  flex-direction: column;
}

.footer-section__social {
  display: flex;
  margin-top: 20px;
  align-items: center;
  gap: 14px;
}

.footer-section__social a {
  display: inline-flex;
  color: #fff;
  font-family: "Avenir LT", Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1;
  text-decoration: none;
  align-items: center;
  gap: 5px;
}

.footer-section__social img {
  display: block;
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.footer-section__mobile-only {
  display: none;
}

@media (max-width: 767px) {
  .video-hero,
  .archviz-section,
  .tour-section,
  .production-section,
  .ar-section,
  .simple-video-section,
  .marketing-section,
  .contact-section,
  .footer-section {
    height: 100dvh;
    min-height: 100svh;
  }

  html {
    scroll-snap-type: y mandatory;
  }

  body {
    scroll-snap-type: y mandatory;
  }

  main {
    scroll-snap-type: y mandatory;
  }

  .video-hero__media--desktop {
    display: none !important;
  }

  .video-hero__media--mobile {
    display: block !important;
  }

  .site-header {
    top: 29px !important;
    left: 22px !important;
    right: 25px !important;
    align-items: center;
  }

  .site-header__logo {
    width: 180px !important;
  }

  .menu-toggle {
    width: 24px;
    height: 24px;
    gap: 3px;
  }

  .menu-toggle span {
    width: 20px;
    height: 3px;
  }

  .site-menu {
    width: 68vw;
    min-width: 250px;
    padding: 78px 28px 38px 22px;
    background: rgba(18, 18, 18, 0.94);
    align-items: flex-end;
    gap: clamp(18px, 3vh, 28px);
  }

  .site-menu a {
    font-size: 18px;
    text-align: right;
  }

  .scroll-cue {
    bottom: max(44px, calc(env(safe-area-inset-bottom) + 24px));
    width: 28px;
    height: 28px;
  }

  .archviz-section__content {
    width: calc(100% - 44px);
    margin: 0 auto;
    padding-top: 20px;
  }

  .archviz-section__content h2 {
    margin-bottom: 6px;
    font-size: 40px;
  }

  .archviz-section__button {
    font-size: 18px;
  }

  .archviz-section__button img {
    width: 17px;
    height: 17px;
  }

  .tour-section__inner {
    display: flex;
    width: calc(100% - 50px);
    margin: 0 auto;
    padding-top: 76px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
  }

  .tour-carousel {
    width: 100%;
  }

  .tour-section__content h2 {
    font-size: 40px;
    line-height: 1.1;
    text-align: center;
    white-space: nowrap;
  }

  .tour-section__content h2 br {
    display: none;
  }

  .tour-carousel__viewport {
    height: min(58vh, 400px);
    min-height: 255px;
    border-radius: 5px;
  }

  .tour-carousel iframe {
    border-radius: 5px;
  }

  .tour-carousel__controls {
    margin-top: 16px;
    gap: 12px;
  }

  .tour-carousel__arrow {
    width: 30px;
    height: 30px;
  }

  .tour-carousel__arrow img {
    width: 30px;
    height: 30px;
  }

  .tour-carousel__pagination {
    gap: 12px;
  }

  .tour-carousel__pagination button {
    width: 6px;
    height: 6px;
  }

  .tour-carousel__pagination button::after {
    inset: -3px;
  }

  .production-section__content {
    width: calc(100% - 44px);
    margin: 0 auto;
    padding-top: 20px;
  }

  .production-section__content h2 {
    margin-bottom: 14px;
    font-size: 40px;
    line-height: 1;
  }

  .production-section__media--desktop {
    display: none;
  }

  .production-section__media--mobile {
    display: block;
  }

  .production-section::after {
    background: rgba(0, 0, 0, 0.4);
  }

  .production-section__toggle {
    font-size: 18px;
  }

  .production-section__toggle img {
    width: 14px;
    height: 14px;
  }

  .production-projects {
    width: min(120px, 32vw);
    padding-right: 15px;
    padding-left: 15px;
    border-radius: 9px;
  }

  .production-projects.is-open {
    margin-top: 24px;
    padding-top: 22px;
    padding-bottom: 22px;
  }

  .production-projects button {
    padding: 15px 0;
    font-size: 18px;
  }

  .video-modal {
    padding: 24px;
  }

  .video-modal__content {
    width: 100%;
  }

  .video-modal__close {
    right: 0;
    top: -34px;
  }

  .ar-section__content {
    width: calc(100% - 44px);
    margin: 0 auto;
    padding-top: 20px;
  }

  .ar-section__content h2 {
    margin-bottom: 14px;
    font-size: 40px;
    line-height: 1;
  }

  .ar-section__button {
    font-size: 18px;
  }

  .ar-section__button--desktop {
    display: none;
  }

  .ar-section__button--mobile {
    display: inline-flex;
  }

  .ar-section__button img {
    width: 17px;
    height: 17px;
  }

  .app-modal {
    padding: 28px 30px;
  }

  .app-modal__content {
    width: 100%;
    padding: 88px 20px 36px;
    border: 1px solid rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    background: #000;
  }

  .app-modal__close {
    right: 28px;
    top: 28px;
  }

  .app-modal__desktop-link {
    display: none;
  }

  .app-modal__mobile-carousel {
    display: block;
  }

  .app-modal__viewport {
    width: 100%;
    overflow: hidden;
  }

  .app-modal__mobile-carousel .tour-carousel__track {
    display: flex;
    transition: transform 520ms ease;
  }

  .app-modal__mobile-carousel .tour-carousel__item {
    display: block;
    flex: 0 0 100%;
  }

  .app-modal__mobile-carousel .tour-carousel__item a {
    display: block;
  }

  .app-modal__mobile-carousel .tour-carousel__item img {
    display: block;
    width: 100%;
    height: auto;
  }

  .app-modal__controls {
    display: flex;
    margin-top: 26px;
    align-items: center;
    justify-content: center;
    gap: 18px;
  }

  .ar-section__media--desktop {
    display: none;
  }

  .ar-section__media--mobile {
    display: block;
  }

  .simple-video-section__content {
    width: calc(100% - 44px);
    margin: 0 auto;
    padding-top: 20px;
  }

  .simple-video-section__content h2 {
    font-size: 40px;
    line-height: 1;
  }

  .simple-video-section__media--desktop {
    display: none;
  }

  .simple-video-section__media--mobile {
    display: block;
  }

  .marketing-section__content {
    width: calc(100% - 44px);
    margin: 0 auto;
    padding-top: 20px;
  }

  .marketing-section__content h2 {
    margin-bottom: 14px;
    font-size: 40px;
    line-height: 1;
  }

  .marketing-section__button {
    font-size: 18px;
  }

  .marketing-section__button img {
    width: 17px;
    height: 17px;
  }

  .marketing-section__media--desktop,
  .marketing-section__title-desktop {
    display: none;
  }

  .marketing-section__media--mobile,
  .marketing-section__title-mobile {
    display: block;
  }

  .contact-section {
    min-height: 100svh;
  }

  .contact-section__content {
    width: calc(100% - 72px);
    min-width: 0;
    height: 100%;
    margin: 0 auto;
    justify-content: flex-start;
    padding-top: 14vh;
  }

  .contact-section__content h2 {
    margin-bottom: 20px;
    font-size: 40px;
  }

  .contact-form {
    gap: 16px;
  }

  .contact-form__row {
    grid-template-columns: 1fr 1fr;
    gap: 22px;
  }

  .contact-form input,
  .contact-form textarea {
    font-family: "Montserrat", Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 400;
  }

  .contact-form input {
    height: 28px;
  }

  .contact-form textarea {
    min-height: 48px;
  }

  .contact-form button {
    width: 112px;
    height: 39px;
    font-family: "Avenir LT", Arial, Helvetica, sans-serif;
    font-size: 18px;
    font-weight: 400;
  }

  .footer-section {
    min-height: 100svh;
  }

  .footer-section__video {
    object-position: center;
  }

  .footer-section__inner {
    padding: 100px 28px;
  }

  .footer-section__top {
    width: 100%;
  }

  .footer-section__services {
    display: block;
    font-size: 16px;
    font-weight: 300;
    line-height: 2;
    white-space: normal;
    text-align: center;
  }

  .footer-section__dot {
    margin: 0 8px;
  }

  .footer-section__desktop-only {
    display: none;
  }

  .footer-section__mobile-only {
    display: block;
  }

  .footer-section__divider {
    margin-top: 22px;
  }

  .footer-section__bottom {
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: 42px;
    text-align: center;
  }

  .footer-section__logo {
    width: 150px;
  }

  .footer-section__contact {
    align-items: center;
    text-align: center;
  }

  .footer-section__contact p {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.35;
  }

  .footer-section__social {
    margin-top: 20px;
    justify-content: center;
    gap: 9px;
    flex-wrap: nowrap;
  }

  .footer-section__social a {
    font-size: 12px;
    font-weight: 300;
    gap: 5px;
  }

  .footer-section__social img {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 1023px) {
  .section-nav {
    display: none;
  }
}

.archviz-section__button,
.archviz-section__button:visited,
.archviz-section__button:hover,
.archviz-section__button:focus,
.archviz-section__button:focus-visible,
.archviz-section__button:active,
.marketing-section__button,
.marketing-section__button:visited,
.marketing-section__button:hover,
.marketing-section__button:focus,
.marketing-section__button:focus-visible,
.marketing-section__button:active,
.footer-section__social a,
.footer-section__social a:visited,
.footer-section__social a:hover,
.footer-section__social a:focus,
.footer-section__social a:focus-visible,
.footer-section__social a:active {
  color: #fff !important;
  background: transparent !important;
  text-decoration: none !important;
  box-shadow: none !important;
  outline: 0 !important;
  border: 0 !important;
  padding: 0 !important;
}

.production-section__toggle,
.production-section__toggle:hover,
.production-section__toggle:focus,
.production-section__toggle:focus-visible,
.production-section__toggle:active,
.menu-toggle,
.menu-toggle:hover,
.menu-toggle:focus,
.menu-toggle:focus-visible,
.menu-toggle:active,
.site-menu__close,
.site-menu__close:hover,
.site-menu__close:focus,
.site-menu__close:focus-visible,
.site-menu__close:active,
.ar-section__button,
.ar-section__button:hover,
.ar-section__button:focus,
.ar-section__button:focus-visible,
.ar-section__button:active,
.tour-carousel__arrow,
.tour-carousel__arrow:hover,
.tour-carousel__arrow:focus,
.tour-carousel__arrow:focus-visible,
.tour-carousel__arrow:active,
.app-modal__close,
.app-modal__close:hover,
.app-modal__close:focus,
.app-modal__close:focus-visible,
.app-modal__close:active {
  color: #fff !important;
  background: transparent !important;
  text-decoration: none !important;
  box-shadow: none !important;
  outline: 0 !important;
  border: 0 !important;
  padding: 0 !important;
  appearance: none !important;
  -webkit-appearance: none !important;
}

.production-projects button,
.production-projects button:hover,
.production-projects button:focus,
.production-projects button:focus-visible,
.production-projects button:active {
  color: #fff !important;
  background: transparent !important;
  text-decoration: none !important;
  box-shadow: none !important;
  outline: 0 !important;
  border: 0 !important;
  appearance: none !important;
  -webkit-appearance: none !important;
}

.contact-form button,
.contact-form button:hover,
.contact-form button:focus,
.contact-form button:focus-visible,
.contact-form button:active {
  color: #202020 !important;
  background: #fff !important;
  text-decoration: none !important;
  box-shadow: none !important;
  outline: 0 !important;
  border: 0 !important;
  appearance: none !important;
  -webkit-appearance: none !important;
}
