/* ------------------------- Style ® Code by Dennis -------------------------------------------------- */

main {
   box-sizing: border-box;
   overflow: hidden;
   width: 100vw;
   position: fixed;
   height: 100%;
   background: var(--color-white);
}

.main-wrap::after {
   display: block;
   position: absolute;
   content: "";
   width: 100%;
   height: 5vh;
   top: 99%;
   left: 0;
   background: var(--color-dark);
   z-index: -1;
}

.main-wrap {
   box-sizing: border-box;
   width: 100vw;
   will-change: transform;
   position: fixed;
}

main.touch {
   position: relative;
   height: auto;
}

main.touch .main-wrap {
   position: relative;
}

@media screen and (max-width: 1024px) {
   main {
      position: relative;
   }

   .main-wrap {
      position: relative;
   }
}

/* ------------------------- Page Transition -------------------------------------------------- */

.no-scroll-overlay {
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: 100vh;
   overflow: hidden;
   z-index: 900;
   display: none;
}

.loading-container {
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: 100vh;
   overflow: hidden;
   z-index: 800;
   pointer-events: none;
   background: transparent;
}

.loading-screen {
   position: relative;
   padding: 0;
   width: 100%;
   height: 100%;
   left: 0;
   will-change: top;
}

.loading-screen,
.loading-container .rounded-div-wrap.top .rounded-div,
.loading-container .rounded-div-wrap.bottom .rounded-div {
   background: #F9460E;
}

.loading-container .rounded-div-wrap.top .rounded-div,
.loading-container .rounded-div-wrap.bottom .rounded-div {
   height: 745%;
}

.loading-container .rounded-div-wrap.top {
   top: 0;
   position: absolute;
   transform: translateY(-99%) scale(1, -1);
   z-index: 2;
   height: 0vh;
   will-change: height;
}

.loading-container .rounded-div-wrap.bottom {
   top: unset;
   bottom: 0;
   position: absolute;
   transform: translateY(99%);
   z-index: 2;
   height: 0vh;
   will-change: height;
}

.loading-container .loading-brand {
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   color: var(--color-white);
   font-weight: 900;
   font-size: clamp(3.25em, 10vw, 10em);
   line-height: 1;
   letter-spacing: .01em;
   white-space: nowrap;
   pointer-events: none;
   z-index: 3;
}

.loading-container .loading-words {
   position: absolute;
   top: 78%;
   left: 50%;
   transform: translate(-50%, -50%);
   opacity: 0;
   pointer-events: none;
   display: block;
   will-change: opacity;
}

/* Service pages: loading shows the service name with the site name smaller above it */
.loading-container.loading-service .loading-words {
   display: none;
}

.loading-container.loading-service .loading-brand {
   display: flex;
   flex-direction: column;
   align-items: center;
   gap: .35em;
   width: min(90vw, 11em);
   white-space: normal;
   text-align: center;
   font-size: clamp(2em, 7vw, 5.5em);
}

.loading-container.loading-service .loading-brand-site {
   font-size: .26em;
   font-weight: 700;
   letter-spacing: .3em;
   text-indent: .3em;
   opacity: .9;
}

.loading-container.loading-service .loading-brand-name {
   font-size: 1em;
   font-weight: 900;
   line-height: 1.05;
}

.loading-container .loading-words h2 {
   margin: 0;
   padding: 0;
   color: var(--color-white);
   position: absolute;
   top: 0;
   left: 50%;
   transform: translateX(-50%);
   display: none;
   padding-left: .6em;
   white-space: nowrap;
   padding-right: .4em;
   will-change: opacity;
}

.loading-container .loading-words h2.jap {
   font-size: calc(clamp(3.25em, 5vw, 4.5em) * .65);
   transform: translate(-50%, 10%);
}

.loading-container .dot {
   display: block;
   position: absolute;
   border-radius: 50%;
   background: var(--color-white);
   left: 0;
   top: 47%;
   bottom: auto;
   width: calc(clamp(16px, 1.2vw, 19px) / 1.65);
   height: calc(clamp(16px, 1.2vw, 19px) / 1.65);
   transform: translate(0, 0) scale(1);
}

.loading-container .loading-words h2.active {
   display: block;
}

.loading-container .loading-words .home-active,
.loading-container .loading-words .home-active-last {
   opacity: 0;
   display: none;
}

.loading-fade {
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: 100vh;
   overflow: hidden;
   z-index: 90;
   background: #FFF;
   visibility: hidden;
   opacity: 0;
}

.once-in {
   will-change: transform;
}

@media screen and (max-width: 540px) {

   /* .loading-container .loading-words h2 {
      padding-left: 0;
   } */

   /* .loading-container .dot {
      display: none;
   } */

   .loading-container .dot {
      top: 42%;
   }
}


/* ------------------------- Top Bar -------------------------------------------------- */

.nav-bar {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   background: transparent;
   z-index: 5;
   transform: translate(0, 0) rotate(0.001deg);
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: calc(var(--gap-padding) / 2) calc(var(--gap-padding) / 2);
}

/* Contact Us: brand color */
.nav-bar .links-wrap .btn-link.btn-contact .btn-text-inner {
   color: #F9460E;
}

@media screen and (max-width: 540px) {

   .nav-bar {
      padding: calc(var(--gap-padding) / 1) calc(var(--gap-padding) * .5) calc(var(--gap-padding) / 1) calc(var(--gap-padding) * .33);
   }

   .nav-bar .links-wrap li {
      display: none;
   }

   /* Show the hamburger from the start on mobile (nav links are hidden) */
   .btn-hamburger {
      transform: translateY(0%) scale(1) rotate(0.001deg);
   }
}

/* ------------------------- Fixed Nav -------------------------------------------------- */

.fixed-nav-back {
   background: linear-gradient(to right, hsla(220, 13%, 0%, .3) 40%, hsla(220, 13%, 0%, 1) 80%);
   opacity: 0;
   transition: opacity .8s cubic-bezier(.7, 0, .2, 1);
   z-index: 100;
   pointer-events: none;
   will-change: opacity;
}

.nav-active .fixed-nav-back {
   opacity: .35;
   pointer-events: all;
}

.fixed-nav {
   position: fixed;
   right: 0;
   top: 0;
   height: 100vh;
   background: var(--color-dark);
   z-index: 100;
   transform: translate(calc(100% + 6vw), 0) rotate(0.001deg);
   transition: transform .8s cubic-bezier(.7, 0, .2, 1);
   will-change: transform;
}

.nav-active .fixed-nav {
   transform: translate(0, 0) rotate(0.001deg);
}

.fixed-nav-inner {
   display: flex;
   flex-direction: column;
   justify-content: space-between;
   height: 100%;
   padding: 15vh 7.5vw 10vh 7.5vw;
   position: relative;
   transform: translate(0, 0) rotate(0.001deg);
   transition: all .6s cubic-bezier(.7, 0, .2, 1);
   will-change: transform;
}

.nav-active .fixed-nav-inner {
   transform: translate(0, 0) rotate(0.001deg);
}

.fixed-nav .nav-row h5 {
   margin-bottom: 3em;
}

.fixed-nav .nav-row ul {
   display: flex;
   flex-direction: column;
   align-items: flex-start;
   padding-top: 5vh;
}

.fixed-nav .nav-row .btn-link .btn-click {
   height: auto;
}

.fixed-nav .nav-row ul {
   margin-left: calc(var(--gap-padding) / -2);
}

.fixed-nav .nav-row .btn-text-inner {
   font-size: 3.5em;
   line-height: 1.4;
   font-size: calc(clamp(3.25em, 5vw, 4em) * .875);
}

.fixed-nav .nav-row .btn-link .btn-click::after {
   background: var(--color-white);
   left: calc(var(--gap-padding) / -4);
   top: 50%;
   bottom: auto;
   width: calc(clamp(16px, 1.2vw, 19px) / 1.65);
   height: calc(clamp(16px, 1.2vw, 19px) / 1.65);
}

.fixed-nav .social-row {
   margin-left: calc(var(--gap-padding) / -4);
}

.fixed-nav-rounded-div {
   position: absolute;
   left: 1px;
   transform: translateX(-100%);
   height: 100%;
   top: 0;
}

.fixed-nav-rounded-div .rounded-div-wrap {
   width: 6vw;
   height: 100%;
   transition: var(--animation-slow);
   transition: all .85s cubic-bezier(.7, 0, .2, 1);
   will-change: width;
}

.nav-active .fixed-nav-rounded-div .rounded-div-wrap {
   width: 0vw;
}

.fixed-nav-rounded-div .rounded-div-wrap .rounded-div {
   background: var(--color-dark);
   height: 150%;
   content: "";
   display: block;
   position: absolute;
   width: 775%;
   top: 50%;
   border-radius: 50%;
   transform: translate(-6.5%, -50%);
}

.fixed-nav .nav-row ul .btn {
   transform: translate(15vw, 0) rotate(0.001deg);
   transition: all .8s cubic-bezier(.7, 0, .2, 1);
   will-change: transform;
}

.nav-active .fixed-nav .nav-row ul .btn {
   transform: translate(0, 0) rotate(0.001deg);
}

.fixed-nav .nav-row ul .btn:nth-child(2) {
   transition-delay: .03s;
}

.fixed-nav .nav-row ul .btn:nth-child(3) {
   transition-delay: .06s;
}

.fixed-nav .nav-row ul .btn:nth-child(4) {
   transition-delay: .09s;
}

.fixed-nav .social-row .stripe {
   display: none;
}

@media screen and (max-height: 680px) {
   .fixed-nav .nav-row .btn-text-inner {
      font-size: 3em;
      line-height: 1.25;
   }
}

@media screen and (max-width: 540px) {

   .fixed-nav-back {
      background: hsla(220, 13%, 5%, 1);
   }

   .fixed-nav {
      width: 100%;
      transform: translate(calc(100% + 20vw), 0) rotate(0.001deg);
   }

   .fixed-nav .fixed-nav-inner {
      height: calc(var(--vh, 1vh) * 100);
      padding: calc(var(--vh, 1vh) * 15) var(--container-padding) calc(var(--gap-padding) * 1.25) var(--container-padding);
      transform: translate(20vw, 0) rotate(0.001deg);
      transition-delay: 0s;
   }

   .nav-active .fixed-nav .fixed-nav-inner {
      transform: translate(0, 0) rotate(0.001deg);
      transition-delay: .1s;
   }

   .fixed-nav .nav-row .btn-link .btn-click::after {
      background: var(--color-white);
      left: auto;
      right: .4em;
      top: 50%;
      bottom: auto;
      width: calc(clamp(16px, 1.2vw, 19px) / 1.5);
      height: calc(clamp(16px, 1.2vw, 19px) / 1.5);
   }

   .fixed-nav .nav-row ul {
      width: 100%;
      padding-top: calc(var(--vh, 1vh) * 3);
      padding-bottom: calc(var(--vh, 1vh) * 3);
   }

   .fixed-nav .nav-row ul .btn {
      width: 100%;
      transition: all .8s cubic-bezier(.7, 0, .2, 1);
   }

   .fixed-nav .nav-row ul .btn .btn-text {
      justify-content: flex-start;
   }

   .fixed-nav .social-row .stripe {
      display: block;
      margin-bottom: calc(var(--section-padding) / 3);
   }

   .fixed-nav-rounded-div .rounded-div-wrap {
      width: 20vw;
   }

   .nav-active .fixed-nav-rounded-div .rounded-div-wrap {
      width: 0;
   }

   .fixed-nav .nav-row ul .btn:nth-child(1) {
      transition-delay: 0s;
   }

   .fixed-nav .nav-row ul .btn:nth-child(2) {
      transition-delay: .03s;
   }

   .fixed-nav .nav-row ul .btn:nth-child(3) {
      transition-delay: .06s;
   }

   .fixed-nav .nav-row ul .btn:nth-child(4) {
      transition-delay: .09s;
   }

   .nav-active .fixed-nav .nav-row ul .btn:nth-child(1) {
      transition-delay: .1s;
   }

   .nav-active .fixed-nav .nav-row ul .btn:nth-child(2) {
      transition-delay: .13s;
   }

   .nav-active .fixed-nav .nav-row ul .btn:nth-child(3) {
      transition-delay: .16s;
   }

   .nav-active .fixed-nav .nav-row ul .btn:nth-child(4) {
      transition-delay: .19s;
   }
}


/* ------------------------- Footer -------------------------------------------------- */

.footer-wrap {
   display: block;
   width: 100%;
   position: relative;
   overflow: hidden;
   background: #F9460E;
   display: flex;
   align-items: flex-end;
   box-shadow: 0px 5px 0px 5px #F9460E;
}

.footer-wrap.theme-dark .footer {
   background: #F9460E;
}

.footer-wrap.theme-dark .overlay-gradient {
   pointer-events: none;
   height: calc(var(--section-padding) * .75);
   /* background: linear-gradient(to bottom,hsla(225, 7%, 12%) 0%, hsla(225, 7%, 12%, 0.987) 8.1%, hsla(225, 7%, 12%, 0.951) 15.5%, hsla(225, 7%, 12%, 0.896) 22.5%, hsla(225, 7%, 12%, 0.825) 29%, hsla(225, 7%, 12%, 0.741) 35.3%,  hsla(225, 7%, 12%, 0.648) 41.2%,  hsla(225, 7%, 12%, 0.55) 47.1%, hsla(225, 7%, 12%, 0.45) 52.9%, hsla(225, 7%, 12%, 0.352) 58.8%, hsla(225, 7%, 12%, 0.259) 64.7%, hsla(225, 7%, 12%, 0.175) 71%, hsla(225, 7%, 12%, 0.104) 77.5%, hsla(225, 7%, 12%, 0.049) 84.5%, hsla(225, 7%, 12%, 0.013) 91.9%, hsla(225, 7%, 12%, 0) 100%); */
   background: linear-gradient(to bottom, rgba(249, 70, 14, 1) 0%, rgba(249, 70, 14, 0) 100%);
   opacity: .75;
}

.footer-rounded-div {
   width: 100%;
   position: relative;
   height: 0;
   display: block;
   z-index: 2;
}

.footer-rounded-div .rounded-div-wrap {
   transform: translateY(-1px);
   will-change: height;
}

.footer-rounded-div .rounded-div-wrap .rounded-div {
   background: #FFFDED;
}

.footer {
   padding-bottom: 0;
   width: 100%;
   will-change: transform;
}

.footer .dots {
   width: calc(var(--container-padding) * 3);
}

.footer h2 {
   font-size: calc(clamp(3.25em, 7vw, 8em) * .875);
}

.footer h2 span {
   display: block;
}

/* Footer hero: big image left, title right */
.footer .footer-hero-row {
   align-items: center;
   justify-content: space-between;
   gap: clamp(1.5em, 4vw, 4em);
   flex-wrap: nowrap;
}

.footer .footer-hero-media {
   width: 42%;
   flex: 0 0 42%;
   transform: translateY(20%);
}

.footer .footer-bigimg {
   width: 100%;
   line-height: 0;
   border-radius: clamp(16px, 2vw, 32px);
   overflow: hidden;
}

.footer .footer-bigimg img {
   display: block;
   width: 100%;
   height: auto;
   transition: transform .6s cubic-bezier(.2, .6, .2, 1);
   will-change: transform;
}

.footer .footer-bigimg:hover img {
   transform: scale(1.05);
}

.footer .footer-hero-text {
   width: auto;
   flex: 1 1 auto;
}

.footer .footer-eyebrow {
   margin: 0 0 .5em;
   font-size: clamp(1.35em, 2.6vw, 2.4em);
   font-weight: 500;
   line-height: 1.3;
}

/* Footer contact buttons: original pill design, stacked, with icons */
.footer-contacts {
   display: flex;
   flex-direction: column;
   align-items: flex-start;
   gap: clamp(.7em, 1.5vw, 1.1em);
}

.footer-contacts .btn {
   display: block;
   margin: 0;
}

.footer-contacts .btn-text {
   gap: .55em;
}

.footer-contacts .btn-click {
   height: auto;
   min-height: 4.25em;
   padding: .55em 0;
}

.footer-contact-icon {
   width: 1.2em;
   height: 1.2em;
   flex: none;
   background-color: var(--color-white);
   -webkit-mask-repeat: no-repeat;
   mask-repeat: no-repeat;
   -webkit-mask-position: center;
   mask-position: center;
   -webkit-mask-size: contain;
   mask-size: contain;
}

.footer-contact-icon-location {
   -webkit-mask-image: url("../icons/icon-location.svg");
   mask-image: url("../icons/icon-location.svg");
}

.footer-contact-icon-phone {
   -webkit-mask-image: url("../icons/icon-phone.svg");
   mask-image: url("../icons/icon-phone.svg");
}

.footer-contact-icon-email {
   -webkit-mask-image: url("../icons/icon-email.svg");
   mask-image: url("../icons/icon-email.svg");
}

.footer-contact-icon-whatsapp {
   -webkit-mask-image: url("../icons/social-whatsapp.svg");
   mask-image: url("../icons/social-whatsapp.svg");
}

/* hover: pill fills cream, text + icon turn orange */
.footer-contacts .btn-normal .btn-fill,
.footer-contacts .btn-normal.not-active .btn-click .btn-fill,
.footer-contacts .btn-normal.active .btn-click .btn-fill {
   background-color: #FFFDED;
}

.footer-contacts .btn-normal.active .btn-click .btn-text-inner,
.footer-contacts .btn-normal .btn-click:hover .btn-text-inner {
   color: #F9460E !important;
}

.footer-contacts .btn-normal.active .btn-click .footer-contact-icon,
.footer-contacts .btn-normal .btn-click:hover .footer-contact-icon {
   background-color: #F9460E;
}

/* Footer social icons next to the link names */
.socials .social-icon {
   width: 1.1em;
   height: 1.1em;
   flex: none;
   margin-right: .5em;
   background-color: currentColor;
   -webkit-mask-repeat: no-repeat;
   mask-repeat: no-repeat;
   -webkit-mask-position: center;
   mask-position: center;
   -webkit-mask-size: contain;
   mask-size: contain;
}

.social-icon-instagram {
   -webkit-mask-image: url("../icons/social-instagram.svg");
   mask-image: url("../icons/social-instagram.svg");
}

.social-icon-x {
   -webkit-mask-image: url("../icons/social-x.svg");
   mask-image: url("../icons/social-x.svg");
}

.social-icon-tiktok {
   -webkit-mask-image: url("../icons/social-tiktok.svg");
   mask-image: url("../icons/social-tiktok.svg");
}

.social-icon-facebook {
   -webkit-mask-image: url("../icons/social-facebook.svg");
   mask-image: url("../icons/social-facebook.svg");
}

.social-icon-youtube {
   -webkit-mask-image: url("../icons/social-youtube.svg");
   mask-image: url("../icons/social-youtube.svg");
}

.social-icon-linkedin {
   -webkit-mask-image: url("../icons/social-linkedin.svg");
   mask-image: url("../icons/social-linkedin.svg");
}

.footer .footer-hero-text h2 {
   margin-top: clamp(.6em, 2.5vw, 1.6em);
}

/* Footer CTA circle: cream, larger */
.footer .btn-round .btn-click {
   width: clamp(13em, 18vw, 17em);
   height: clamp(13em, 18vw, 17em);
   background: #FFFDED;
}

.footer .btn-round .btn-fill {
   background: var(--color-dark);
}

.footer .btn-round .btn-text-inner {
   color: #F9460E;
   font-size: 1.2em;
   font-weight: 800;
}

.footer .btn-round .btn-click:hover .btn-text-inner {
   color: #FFFDED;
}

.footer .container.medium {
   display: flex;
   flex-direction: column;
}

.footer .container.medium .row:nth-child(1) {
   padding-top: calc(var(--section-padding) + 12vh);
   padding-bottom: var(--section-padding);
}

.footer .container.medium .row:nth-child(2) .btn-fixed {
   position: absolute;
   right: 0;
   top: 0;
   transform: translate(-50%, -50%);
   z-index: 20;
}

.footer .container.medium .row:nth-child(2) .btn-fixed .btn {
   will-change: transform;
}

.footer .container.medium .row:nth-child(2) {
   padding-bottom: calc(var(--section-padding) * .475);
}

.footer .container.medium .row:nth-child(3) .flex-col {
   display: block;
}

.footer .container.medium .row:nth-child(3) .flex-col .btn {
   display: block;
   margin-right: 0;
   margin-bottom: 0;
}

.footer .arrow {
   position: absolute;
   right: 0;
   bottom: calc(var(--gap-padding) * 1.5);
   will-change: transform;
}

.footer .profile-picture {
   margin-right: .18em;
   height: 1.1em;
   width: .78em;
   border-radius: .18em;
   background-image: url("../images/p1.webp");
   transform: translateY(.14em);
}

.footer .arrow svg {
   transform: rotate(90deg);
}

.bottom-footer {
   padding: calc(var(--section-padding) / 1.3) calc(var(--gap-padding) / 1.33) calc(var(--gap-padding) / 1.75) calc(var(--gap-padding) / 1);
   flex-direction: row;
   justify-content: space-between;
}

.bottom-footer .stripe {
   display: none;
}

.bottom-footer .flex-col {
   display: flex;
   width: auto;
   justify-content: space-between;
}

.bottom-footer .credits {
   padding-right: var(--gap-padding);
}

.socials li {
   display: inline-flex;
   font-size: .85em;
}

.bottom-footer p {
   font-size: .85em;
}

.bottom-footer h5 {
   margin-bottom: 1.5em;
}

.socials h5 {
   padding-left: calc(var(--gap-padding) * .5);
   margin-bottom: 1em;
}

.bottom-footer #timeSpan {
   text-transform: uppercase;
}

@media screen and (max-width: 900px) {

   .footer .container.medium .row:nth-child(2) {
      padding-bottom: calc(var(--section-padding) * .75);
   }
}

@media screen and (max-width: 720px) {

   .footer-rounded-div .rounded-div-wrap {
      height: 7.5vh;
   }

   .footer .container.medium .row:nth-child(3) .flex-col {
      flex-direction: column;
   }

   .footer .container.medium .row:nth-child(3) .flex-col .btn {
      width: 100%;
      margin: 0;
      margin-bottom: .75em;
   }

   .footer .container.medium .row:nth-child(3) .flex-col .btn .btn-click {
      width: 100%;
   }

   .footer .container.medium .row:nth-child(1) {
      padding-bottom: calc(var(--section-padding) * .75);
   }

   .footer .container.medium .row:nth-child(2) {
      padding-bottom: calc(var(--section-padding) * 1.25);
   }

   .footer .container.medium .row:nth-child(3) {
      padding-bottom: calc(var(--section-padding) / 5);
   }

   .footer .container.medium .row:nth-child(2) .btn-fixed {
      position: absolute;
      right: 0;
      top: 0;
      transform: translate(-20%, -50%);
   }

   .bottom-footer {
      padding: 5vh 0 calc(var(--gap-padding) / 1.75) 0;
   }

   .bottom-footer .flex-col {
      width: 100%;
   }

   .bottom-footer .flex-col:nth-child(2) {
      padding: 0 calc(var(--container-padding) - calc(var(--gap-padding) * .333)) calc(var(--section-padding) / 3) calc(var(--container-padding) - calc(var(--gap-padding) * .333));
      width: 100%;
   }

   .bottom-footer .flex-col:nth-child(1) {
      order: 3;
      padding: 0 var(--container-padding) calc(var(--gap-padding) * .75) var(--container-padding);
   }

   .socials li {
      display: inline-flex;
      font-size: 1em;
      margin-right: 0;
   }

   .bottom-footer p {
      font-size: 1em;
   }

   .footer .container.medium .row:nth-child(2) .stripe {
      display: block;
   }

   .bottom-footer .stripe {
      display: block;
      margin-top: var(--gap-padding);
      width: calc(100% - (var(--gap-padding) * .666));
      left: 50%;
      margin-left: calc(var(--gap-padding) * .333);
   }

   .socials,
   .socials ul {
      width: 100%;
   }

   .footer .footer-hero-row {
      flex-direction: column;
      align-items: flex-start;
   }

   .footer .footer-hero-media {
      width: 62%;
      flex: none;
      margin-bottom: var(--gap-padding);
   }

   .footer .arrow {
      position: absolute;
      right: 0;
      bottom: 1em;
   }

   .footer .profile-picture {
      margin-right: .15em;
      height: 1.1em;
      width: .78em;
      transform: translateY(.12em);
   }

}

/* ------------------------- Footer - Contact -------------------------------------------------- */

.footer-contact {
   background: var(--color-dark);
   margin-top: -1px;
   padding-top: 0;
   box-shadow: 0px 5px 0px 5px var(--color-dark);
}

.footer-contact .bottom-footer {
   padding-top: 0;
}

/* ------------------------- Home - Header -------------------------------------------------- */

.home-header {
   min-height: 115vh;
   display: flex;
   align-items: center;
   background: var(--color-gray);
   overflow: hidden;
}

.home-header .personal-image-wrap {
   top: 50%;
   left: 50%;
   height: 100%;
   width: 100%;
   display: block;
   position: absolute;
   transform: translate(-50%, -50%);
}

.home-header .personal-image {
   top: -10%;
   width: 100%;
   height: 110%;
   background: var(--color-gray);
}

.home-header .personal-image img {
   width: auto;
   height: 100%;
   object-fit: cover;
   position: absolute;
   left: 50%;
   transform: translateX(-50%);
}

.home-header .big-name {
   position: absolute;
   bottom: 15vh;
   left: 0;
   width: 100%;
   padding-bottom: calc(var(--gap-padding) * 1.25);
}

.home-header .big-name .name-h1 {
   position: relative;
   display: flex;
   width: 100%;
}

.home-header .big-name .name-wrap {
   position: relative;
   display: flex;
   align-items: center;
}

.home-header .big-name .name-wrap .spacer {
   padding: 0 3vw;
}

.home-header .big-name h1 {
   position: relative;
   display: flex;
   align-items: center;
   color: var(--color-white);
   font-weight: 900;
   line-height: 1;
   font-size: 17.5vw;
   font-size: max(9em, 15vw);
   white-space: nowrap;
   pointer-events: none;
   margin: 0;
   padding: 0;
}

.home-header .container {
   width: 100%;
   padding-bottom: 15vh;
}

.home-header .row {
   justify-content: flex-start;
}

.home-header .row .flex-col {
   width: auto;
}

.home-header .row .flex-col .header-above-h4 {
   top: -12.5vh;
   position: absolute;
}

.home-header .row .flex-col .header-above-h4 svg {
   width: clamp(1.1em, 1.3vw, 1.25em);
}

.home-header .row .flex-col h4 {
   line-height: 1.4;
   margin-bottom: 0;
   font-weight: 900;
   font-size: clamp(2.4em, 4.5vw, 4.5em);
}

.home-header .row .flex-col h4 span {
   display: block;
}

.home-header .get-height {
   height: 100vh;
}

.home-header .hanger {
   position: absolute;
   left: 0;
   top: 50%;
   transform: translateY(-50%);
   display: inline-block;
}

.home-header .hanger svg {
   width: auto;
   height: 6em;
}

.home-header .hanger p {
   position: absolute;
   top: 50%;
   transform: translateY(-50%);
   margin: 0;
   padding-right: 5em;
   padding-left: var(--gap-padding);
   line-height: 1.2;
}

.home-header .hanger p span {
   display: block;
}

.home-header .white-block {
   position: absolute;
   height: 30vh;
   width: 50vw;
   top: 115vh;
   right: 0;
   background: var(--color-white);
   display: none;
}

.home-header .hanger .digital-ball {
   z-index: 500;
   position: absolute;
   right: .9em;
   left: auto;
   top: .9em;
   width: 4.2em;
   height: 4.2em;
   transform: translate(0%, 0%);
   background: transparent;
}

.home-header .hanger .digital-ball .globe {
   width: 2.5em;
   height: 2.5em;
   font-size: .8em;
}


@media screen and (max-width: 720px) {

   .home-header {
      min-height: 110vh;
      min-height: calc(var(--vh, 1vh) * 110);
      max-height: 110vh;
      align-items: flex-end;
      padding-top: calc(var(--gap-padding) * 2);
      padding-bottom: calc(var(--gap-padding) * 2);
   }

   .home-header .personal-image {
      top: -5%;
      height: 105%;
   }

   .home-header .big-name {
      position: absolute;
      bottom: calc(var(--vh, 1vh) * 33);
      left: 0;
      width: 100%;
      padding-bottom: calc(var(--gap-padding) * 1.25);
   }

   .home-header .row {
      justify-content: flex-start;
   }

   .home-header .container {
      padding-bottom: calc(var(--vh, 1vh) * 9);
   }

   .home-header .row .flex-col .header-above-h4 {
      top: calc(var(--vh, 1vh) * -8);
      position: absolute;
   }

   .home-header .hanger {
      width: 6em;
      height: 6em;
      left: auto;
      right: 0;
      top: calc(var(--vh, 1vh) * 100);
      transform: translate(0, -110%);
   }

   .home-header .hanger svg,
   .home-header .hanger p {
      display: none;
   }

   .home-header .hanger .digital-ball .globe {
      width: 3em;
      height: 3em;
   }

}


/* ------------------------- Home - Intro -------------------------------------------------- */

.home-intro {
   padding-top: calc(var(--section-padding) * .45);
   padding-bottom: calc(var(--section-padding) * .45);
}

/* About section: tighter side padding */
.home-intro .container.medium {
   padding-left: var(--gap-padding);
   padding-right: var(--gap-padding);
}

.home-intro .flex-col:nth-child(1) {
   width: 70%;
   padding-right: var(--gap-padding);
}

/* About section stats */
.home-intro .stats {
   display: flex;
   justify-content: space-around;
   gap: calc(var(--gap-padding) * .3);
   flex-wrap: nowrap;
}

.home-intro .stat {
   flex: 0 0 auto;
   min-width: 0;
}

.home-intro .stat-number {
   font-family: 'Cairo', sans-serif;
   font-weight: 900;
   font-size: clamp(2.25rem, 5vw, 64px);
   line-height: 1;
   color: #F9460E;
}

.home-intro .stat-description {
   margin-top: .6em;
   max-width: 12em;
}

.home-intro .flex-col:nth-child(2) {
   width: 30%;
   padding-left: var(--gap-padding);
}

.home-intro .flex-col:nth-child(2) .btn {
   position: absolute;
   top: auto;
   bottom: 0;
}

.home-intro .flex-col:nth-child(2) .text-wrap {
   position: absolute;
   top: 80%;
   left: 0;
   right: 0;
}

.home-intro .flex-col:nth-child(2) p {
   margin-bottom: 0;
   padding-top: .5em;
   max-width: 14em;
}

/* About section round button (Contact Us): +20% size, brand hover color */
.home-intro .btn-round.btn-contact-round .btn-click {
   width: clamp(13em, 18vw, 16em);
   height: clamp(13em, 18vw, 16em);
}

.home-intro .btn-round.btn-contact-round .btn-text-inner {
   font-size: 1.6em;
}

.home-intro .btn-round.btn-contact-round .btn-fill {
   background: #F9460E;
}

@media screen and (max-width: 720px) {

   .home-intro {
      padding-top: calc(var(--section-padding) * .45);
      padding-bottom: calc(var(--section-padding) * .6);
   }

   .home-intro .flex-col:nth-child(1) {
      width: 100%;
      padding-right: 0;
   }

   .home-intro .stats {
      flex-direction: row;
      gap: var(--gap-padding);
   }

   .home-intro .stat-number {
      font-size: clamp(1.75rem, 9vw, 3.5rem);
   }

   .home-intro .stat-description {
      max-width: 100%;
   }

   .home-intro .flex-col:nth-child(2) {
      width: 100%;
      padding-left: 0;
      max-width: 100%;
      padding: calc(var(--section-padding) / 2) 0 0 0;
      display: flex;
      flex-direction: column;
      align-items: flex-end;
   }

   .home-intro .flex-col:nth-child(2) .text-wrap {
      position: static;
      width: 100%;
      order: 2;
   }

   .home-intro .flex-col:nth-child(2) p {
      margin-bottom: 0;
      padding-top: 0;
   }

   .home-intro .flex-col:nth-child(2) .btn {
      position: relative;
      top: 0;
      bottom: auto;
      right: auto;
      transform: none;
      order: 1;
      align-self: flex-end;
      margin-bottom: calc(var(--section-padding) * .5);
   }
}

/* ------------------------- About Us -------------------------------------------------- */

.about-us {
   position: relative;
   z-index: 2;
   background: var(--color-white);
   padding-bottom: calc(var(--section-padding) * .15);
}

.about-us .row {
   align-items: flex-start;
   justify-content: space-between;
}

.about-us .about-us-text {
   width: 55%;
   padding-right: var(--gap-padding);
}

.about-us .about-us-media {
   width: 40%;
   display: flex;
   justify-content: flex-end;
   margin-top: 8em;
}

.about-us .about-us-media img {
   width: 100%;
   max-width: 32em;
   height: auto;
   object-fit: contain;
}

.about-us .about-us-title {
   font-weight: 800;
   font-size: clamp(2.5em, 5vw, 4.5em);
   line-height: 1;
   margin: 0 0 .6em;
   color: var(--color-dark);
}

/* Lead statement. Font size pinned so it can be a <p> (it is prose, not a heading)
   while keeping the large display look it had as an <h4>. */
.about-us .about-us-lead {
   font-family: 'Dennis Sans', sans-serif;
   font-weight: 800;
   font-size: clamp(1.55em, 2.3vw, 2.5em);
   line-height: 1.45;
   max-width: 15em;
   margin: 0 0 2em;
   color: var(--color-dark);
}

.about-us .about-us-body p {
   max-width: 34em;
   margin-bottom: 1.5em;
}

.about-us .about-us-body ul {
   list-style: disc;
   padding-left: 1.2em;
   margin: 0;
}

.about-us .about-us-body ul li {
   margin-bottom: .5em;
   max-width: 34em;
}

@media screen and (max-width: 720px) {

   .about-us .row {
      flex-direction: column;
   }

   .about-us .about-us-text,
   .about-us .about-us-media {
      width: 100%;
      padding-right: 0;
   }

   .about-us .about-us-media {
      justify-content: center;
      margin-top: calc(var(--gap-padding) * 1.5);
   }

   .about-us .about-us-media img {
      max-width: 22em;
   }
}

/* ------------------------- Our Services -------------------------------------------------- */

.our-services {
   position: relative;
   z-index: 1;
   background: #F9460E;
   color: #FFFDED;
   overflow: hidden;
   margin-top: -5px;
   padding-top: calc(clamp(45px, 7vw, 110px) + var(--section-padding) * .5);
   padding-bottom: 0;
}

/* Old city band at the bottom of the services section */
.services-cityband {
   width: 100%;
   margin-top: clamp(2.5em, 6vw, 5em);
   line-height: 0;
   pointer-events: none;
}

.services-cityband img {
   display: block;
   width: 100%;
   height: auto;
}

.our-services .services-wave {
   position: absolute;
   top: -1px;
   left: -1px;
   right: -1px;
   width: auto;
   line-height: 0;
   pointer-events: none;
   z-index: 5;
}

.our-services .services-wave svg {
   display: block;
   width: 100%;
   height: clamp(45px, 7vw, 110px);
}

.our-services .container {
   position: relative;
   z-index: 1;
}

.our-services .services-title {
   font-family: 'Cairo', sans-serif;
   font-weight: 900;
   font-size: clamp(2.4em, 5vw, 64px);
   line-height: 1.1;
   letter-spacing: .05em;
   margin: 0 0 .35em;
   color: #FFFDED;
}

.our-services .services-sub {
   font-family: 'Cairo', sans-serif;
   font-weight: 700;
   font-size: clamp(1.05em, 2.2vw, 32px);
   line-height: 1.4;
   letter-spacing: .02em;
   max-width: 960px;
   margin: 0;
   color: #FFFDED;
}

/* Service cards */
.our-services .services-cards {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   grid-auto-rows: 1fr;
   gap: clamp(22px, 3vw, 56px);
   margin-top: clamp(2.5em, 5vw, 4.5em);
}

.service-card {
   position: relative;
   display: flex;
   flex-direction: column;
   border-radius: 48px;
   overflow: hidden;
   background: #FFFDED;
   box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.service-card-media {
   position: relative;
   flex: none;
   width: 100%;
   aspect-ratio: 1 / 1;
}

.service-card-media img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   display: block;
}

/* zoom on card hover */
.service-card-media img,
.testi-card-media img {
   transition: transform .6s cubic-bezier(.2, .6, .2, 1);
   will-change: transform;
}

.service-card:hover .service-card-media img,
.testi-card:hover .testi-card-media img {
   transform: scale(1.07);
}

/* image overlay: #FFFDED at 20% */
.service-card-tint {
   position: absolute;
   inset: 0;
   background: rgba(255, 253, 237, 0.2);
   pointer-events: none;
}

/* cream layer overlapping the image, fading up to transparent (the gradient) */
.service-card-body {
   position: relative;
   flex: 1 1 auto;
   margin-top: -48%;
   padding: 64px 28px 28px;
   display: flex;
   flex-direction: column;
   align-items: center;
   gap: 19px;
   text-align: center;
   background: linear-gradient(0.151deg, rgb(255, 253, 238) 55.11%, rgba(153, 152, 142, 0) 99.86%);
}

.service-card-title {
   margin: 0;
   font-family: 'Cairo', sans-serif;
   font-weight: 700;
   font-size: 20px;
   line-height: 1.25;
   letter-spacing: 1px;
   color: #090909;
}

.service-card-text {
   margin: 0;
   font-family: 'Cairo', sans-serif;
   font-weight: 400;
   font-size: 15px;
   line-height: 1.5;
   letter-spacing: .75px;
   color: #000;
}

/* Service card "Details" button: template magnetic + fill-slide hover */
.service-card-btn {
   margin: auto 0 0;
}

.service-card-btn .btn-click {
   height: auto;
   min-width: 0;
   border-radius: 50px;
   box-shadow: inset 0 0 0 1px #F9460E;
}

.service-card-btn .btn-text {
   gap: 8px;
   padding: 9px 30px;
}

.service-card-btn .btn-text-inner {
   font-family: 'Inter', sans-serif;
   font-weight: 500;
   font-size: 20px;
   color: #F9460E;
   transition: color .35s ease;
}

.service-card-btn .service-card-arrow {
   width: 25px;
   height: 25px;
   fill: none;
   stroke: #F9460E;
   stroke-width: 1.8;
   stroke-linecap: round;
   stroke-linejoin: round;
   transition: stroke .35s ease;
}

.service-card-btn .btn-fill {
   background: #F9460E;
}

.service-card-btn .btn-click:hover .btn-text-inner {
   color: #FFFDED;
}

.service-card-btn .btn-click:hover .service-card-arrow {
   stroke: #FFFDED;
}

/* Services CTA button (Let's bring your idea to life) */
.services-cta-wrap {
   display: flex;
   justify-content: center;
   margin-top: clamp(2.5em, 5vw, 4.5em);
}

.services-cta {
   margin: 0;
}

.services-cta .btn-click {
   height: auto;
   min-width: 0;
   border-radius: 100px;
   box-shadow: inset 0 0 0 6px #FFFDED, 0 4px 4px rgba(255, 255, 255, 0.25);
}

.services-cta .btn-text {
   gap: 12px;
   padding: 14px 40px;
}

.services-cta .btn-text-inner {
   font-family: 'Cairo', sans-serif;
   font-weight: 700;
   font-size: clamp(1.05em, 2vw, 24px);
   letter-spacing: 1.2px;
   color: #FFFDED;
   transition: color .35s ease;
}

.services-cta .services-cta-arrow {
   width: clamp(36px, 5vw, 50px);
   height: clamp(36px, 5vw, 50px);
   flex: none;
   fill: none;
   stroke: #FFFDED;
   stroke-width: 4;
   stroke-linecap: round;
   stroke-linejoin: round;
   transition: stroke .35s ease;
}

.services-cta .btn-fill {
   background: #FFFDED;
}

.services-cta .btn-click:hover .btn-text-inner {
   color: #F9460E;
}

.services-cta .btn-click:hover .services-cta-arrow {
   stroke: #F9460E;
}

@media screen and (max-width: 980px) {
   .our-services .services-cards {
      grid-template-columns: repeat(2, 1fr);
   }
}

@media screen and (max-width: 600px) {
   .our-services .services-cards {
      grid-template-columns: 1fr;
      max-width: 26em;
      margin-left: auto;
      margin-right: auto;
   }
}

/* ------------------------- Testimonials -------------------------------------------------- */

.testimonials {
   position: relative;
   z-index: 1;
   background: #FFFDED;
   color: #000;
   margin-top: -1px;
   padding-top: 0;
   padding-bottom: calc(var(--section-padding) * 1.1);
}

/* cream wave rising over the city at the bottom of services into testimonials */
.services-bottomwave {
   position: relative;
   width: 100%;
   margin-top: -7vw;
   line-height: 0;
   pointer-events: none;
}

.services-bottomwave svg {
   display: block;
   width: 100%;
   height: clamp(70px, 11vw, 170px);
}

.testimonials .testi-top {
   display: flex;
   align-items: center;
   gap: clamp(1.5em, 4vw, 4em);
   padding-top: clamp(2em, 5vw, 4em);
}

.testimonials .testi-deco {
   flex: 0 0 42%;
   max-width: 30em;
   line-height: 0;
}

.testimonials .testi-deco img {
   display: block;
   width: 100%;
   height: auto;
}

.testimonials .testi-title {
   margin: 0 0 .3em;
   font-family: 'Cairo', sans-serif;
   font-weight: 900;
   font-size: clamp(2.5em, 5vw, 64px);
   line-height: 1.1;
   letter-spacing: .05em;
   color: #000;
}

.testimonials .testi-sub {
   margin: 0;
   font-family: 'Cairo', sans-serif;
   font-weight: 700;
   font-size: clamp(1.05em, 2vw, 24px);
   line-height: 1.45;
   letter-spacing: .05em;
   color: #000;
}

/* cards (same principle as service cards) */
.testimonials .testi-cards {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   grid-auto-rows: 1fr;
   gap: clamp(22px, 3vw, 56px);
   margin-top: clamp(2.5em, 5vw, 4.5em);
}

.testi-card {
   position: relative;
   display: flex;
   flex-direction: column;
   border-radius: 48px;
   overflow: hidden;
   background: #FFFDED;
   box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.testi-card-media {
   position: relative;
   flex: none;
   width: 100%;
   aspect-ratio: 360 / 514;
}

.testi-card-media img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   display: block;
}

.testi-card-body {
   position: relative;
   flex: 1 1 auto;
   margin-top: -56%;
   padding: 64px 28px 28px;
   display: flex;
   flex-direction: column;
   align-items: center;
   gap: 19px;
   text-align: center;
   background: linear-gradient(0.135deg, rgb(255, 253, 238) 55.11%, rgba(153, 152, 142, 0) 99.86%);
}

.testi-quote {
   margin: 0;
   font-family: 'Cairo', sans-serif;
   font-weight: 400;
   font-size: 15px;
   line-height: 1.5;
   letter-spacing: .75px;
   color: #000;
}

.testi-author {
   margin-top: auto;
}

.testi-name {
   margin: 0;
   font-family: 'Cairo', sans-serif;
   font-weight: 700;
   font-size: 24px;
   line-height: 1.15;
   letter-spacing: 1px;
   color: #000;
}

.testi-role {
   margin: 0;
   font-family: 'Cairo', sans-serif;
   font-weight: 500;
   font-size: 20px;
   line-height: 1.35;
   letter-spacing: 1px;
   color: #000;
}

@media screen and (max-width: 980px) {
   .testimonials .testi-cards {
      grid-template-columns: repeat(2, 1fr);
   }
}

@media screen and (max-width: 760px) {
   .testimonials .testi-top {
      flex-direction: column-reverse;
      align-items: flex-start;
   }

   .testimonials .testi-deco {
      flex: none;
      width: 70%;
      max-width: 16em;
      margin-top: clamp(1.2em, 4vw, 2em);
   }
}

@media screen and (max-width: 600px) {
   .testimonials .testi-cards {
      grid-template-columns: 1fr;
      max-width: 26em;
      margin-left: auto;
      margin-right: auto;
   }
}

/* ------------------------- Wrap Work Grid -------------------------------------------------- */

.section-wrap-work {
   background: var(--color-white);
}

/* ------------------------- Work Grid -------------------------------------------------- */

.work-grid .row {
   align-items: center;
   color: unset;
   text-decoration: unset;
   padding: calc(var(--section-padding) / 3) 0;
}

.work-grid .work-items li {
   transition: var(--animation-smooth);
}

.work-grid .work-items .flex-col:nth-child(1) {
   padding-left: calc(var(--container-padding) * 1);
   width: 44%;
}

.work-grid .work-items .flex-col:nth-child(2) {
   width: 20%;
   padding-top: .25em;
}

.work-grid .work-items .flex-col:nth-child(3) {
   width: 22%;
   padding-top: .25em;
}

.work-grid .work-items .flex-col:nth-child(4) {
   width: 14%;
   padding-top: .25em;
   padding-right: calc(var(--container-padding) * 1);
   text-align: right;
}

.work-grid .work-items h4 {
   position: relative;
   display: block;
   overflow: hidden;
   line-height: 1;
   transition: var(--animation-fast);
   transform: translateX(0) rotate(0.001deg);
}

.work-grid .work-items h4 span {
   position: relative;
   display: block;
   padding: .1em 0;
}

.work-grid .work-items a:hover h4 {
   transform: translateX(calc(var(--container-padding) * -.1)) rotate(0.001deg);
}

.work-grid .work-items a p {
   transition: var(--animation-fast);
   transform: translateX(0) rotate(0.001deg);
}

.work-grid .work-items a:hover p {
   transform: translateX(calc(var(--container-padding) * .1)) rotate(0.001deg);
}

.work-grid .work-items li a {
   transition: var(--animation-fast);
}

.work-grid .work-items:hover a {
   opacity: 1;
}

.work-grid .work-items a:hover {
   opacity: .33;
}

/* ------------------------- Work Grid - Large -------------------------------------------------- */

.large-work-grid {
   padding-top: 0;
   padding-bottom: 0;
}

.large-work-grid .work-items h4 {
   font-size: calc(clamp(3.25em, 7vw, 8em) * .75);
}

.large-work-grid .row {
   padding: calc(var(--section-padding) / 3.5) 0 calc(var(--section-padding) / 3) 0;
}

.large-work-grid .work-items .flex-col:nth-child(1) {
   padding-left: calc(var(--container-padding) * 1);
   width: 70%;
}

.large-work-grid .work-items .flex-col:nth-child(2) {
   width: 30%;
   padding-left: var(--gap-padding);
   padding-top: 1em;
   padding-right: calc(var(--container-padding) * .5);
}

@media screen and (max-width: 1024px) {
   .large-work-grid {
      display: none;
   }
}

/* ------------------------- Work Grid - Small -------------------------------------------------- */

.small-work-grid {
   padding-top: 0;
   padding-bottom: 0;
}

.small-work-grid .row {
   padding: 2em 0 2em 0;
}

.small-work-grid .work-items li {
   max-height: 0;
   overflow: hidden;
}

.small-work-grid .work-items li.visible {
   max-height: calc(clamp(1.75em, 2.3vw, 2.5em) + 4.4em);
}

.small-work-grid .work-items {
   padding-bottom: calc(var(--section-padding) * .5);
}

@media screen and (max-width: 1024px) {
   .small-work-grid {
      display: none;
   }
}

/* ------------------------- Work Grid - Tiny -------------------------------------------------- */

.tiny-work-grid {
   padding-top: 0;
   padding-bottom: 0;
}

.tiny-work-grid .row {
   padding: 2em 0 2em 0;
}

.tiny-work-grid .work-items {
   padding-bottom: calc(var(--section-padding) * .75);
}

.tiny-work-grid .arrow {
   position: absolute;
   right: var(--container-padding);
   transform: translateY(.2em);
   background: var(--color-dark);
   width: 2em;
   height: 2em;
   border-radius: 50%;
   display: none;
   align-content: center;
   justify-content: center;
}

.tiny-work-grid .arrow svg {
   width: 35%;
   transform: rotate(-90deg);
}

@media screen and (max-width: 1000px) {

   .archive-header h1 .count-nr {
      font-size: .45em;
   }

   .tiny-work-grid .container {
      padding: 0;
   }

   .tiny-work-grid .work-items a:hover {
      opacity: 1;
   }

   .tiny-work-grid .arrow {
      display: flex;
   }

   .tiny-work-grid .row {
      align-items: flex-start;
      padding: 2em 0 2.15em 0;
   }

   .tiny-work-grid .grid-sub-title .flex-col:nth-child(1) {
      display: none;
   }

   .tiny-work-grid .grid-sub-title .flex-col:nth-child(2) {
      width: 35% !important;
      order: 3;
   }

   .tiny-work-grid .grid-sub-title .flex-col:nth-child(3) {
      width: 52% !important;
      order: 2;
      padding-left: calc(var(--container-padding) * 1);
   }

   .tiny-work-grid .grid-sub-title .flex-col:nth-child(4) {
      width: 13% !important;
      order: 4;
   }

   .tiny-work-grid .work-items .flex-col:nth-child(1) {
      width: 100%;
      padding-bottom: .75em;
      order: 1;
   }

   .tiny-work-grid .work-items .flex-col:nth-child(2) {
      width: 35%;
      order: 3;
      padding-right: 1em;
   }

   .tiny-work-grid .work-items .flex-col:nth-child(3) {
      width: 52%;
      order: 2;
      padding-right: 1em;
      padding-left: calc(var(--container-padding) * 1);
   }

   .tiny-work-grid .work-items .flex-col:nth-child(4) {
      width: 13%;
      order: 4;
   }

   .tiny-work-grid .work-items a:hover h4 {
      transform: translateX(0) rotate(0.001deg);
   }

   .tiny-work-grid .work-items a:hover p {
      transform: translateX(0) rotate(0.001deg);
   }

   .tiny-work-grid .work-items p {
      font-size: .9em;
   }

   .tiny-work-grid .stripe {
      opacity: .75;
   }
}

@media screen and (max-width: 450px) {

   .tiny-work-grid .row {
      align-items: flex-start;
      padding: 1.9em 0 1.9em 0;
   }

   .tiny-work-grid .work-items .flex-col:nth-child(1) {
      padding-bottom: .5em;
   }

   .tiny-work-grid .work-items h4 {
      font-size: 1.3em;
   }

   .tiny-work-grid .work-items p {
      font-size: .8em;
   }

   .tiny-work-grid .arrow {
      transform: translateY(-.2em);
   }
}

/* ------------------------- Work Grid - Sub Title Info -------------------------------------------------- */

.work-grid .grid-sub-title {
   width: 100%;
   display: flex;
   padding-bottom: var(--gap-padding);
}

.work-grid .grid-sub-title h5 {
   margin: 0;
   width: 100%;
}

.work-grid .grid-sub-title .flex-col:nth-child(1) {
   padding-left: calc(var(--container-padding) * 1);
   width: 44%;
   /* padding-left: var(--gap-padding); */
}

.work-grid .grid-sub-title .flex-col:nth-child(2) {
   width: 20%;
}

.work-grid .grid-sub-title .flex-col:nth-child(3) {
   width: 22%;
}

.work-grid .grid-sub-title .flex-col:nth-child(4) {
   width: 14%;
   padding-right: calc(var(--container-padding) * 1);
   text-align: right;
   /* padding-right: var(--gap-padding); */
}

/* ------------------------- Large Work Grid - Sub Title Info -------------------------------------------------- */


.large-work-grid .grid-sub-title .flex-col:nth-child(1) {
   padding-left: calc(var(--container-padding) * 1);
   width: 70%;
}

.large-work-grid .grid-sub-title .flex-col:nth-child(2) {
   width: 30%;
   padding-left: var(--gap-padding);
   padding-right: calc(var(--container-padding) * 1);
}


/* ------------------------- Work Grid - Filter Row -------------------------------------------------- */

.work-filters {
   margin-top: calc(var(--section-padding) * -.25);
   padding-top: 0;
   padding-bottom: calc(var(--section-padding) / 2);
}

.work-filters .filter-row {
   width: 100%;
   padding: 0 var(--container-padding) 0 var(--container-padding);
   padding: 0 calc(var(--container-padding) * .96) 0 calc(var(--container-padding) * .96);
   display: flex;
   justify-content: space-between;
}

.work-filters .filter-row .toggle-row {
   display: flex;
}

.work-filters .filter-row .toggle-row .btn {
   display: inline-flex;
   margin-right: .5em;
}

.work-filters .filter-row .grid-row {
   display: flex;
}

.work-filters .filter-row .grid-row .btn {
   display: inline-flex;
   margin-left: .5em;
}

@media screen and (max-width: 1024px) {
   .work-filters .filter-row .grid-row {
      display: none;
   }
}

@media screen and (max-width: 540px) {
   .work-filters .filter-row {
      padding: 0;
   }

   .work-filters .filter-row .toggle-row .btn .btn-text {
      margin-right: .15em;
   }
}

@media screen and (max-width: 460px) {
   .work-filters .filter-row .toggle-row .btn {
      font-size: .89em;
   }
}

@media screen and (max-width: 390px) {
   .work-filters .filter-row .toggle-row .btn {
      font-size: .83em;
   }
}

@media screen and (max-width: 380px) {
   .work-filters .filter-row .toggle-row .btn {
      font-size: .8em;
   }
}


/* ------------------------- Work Grid - After Center Btn -------------------------------------------------- */

.center-grid-btn {
   padding-top: calc(var(--section-padding) / 3);
   padding-bottom: calc(var(--section-padding) * 1);
}

.center-grid-btn-home {
   padding-top: calc(var(--section-padding) / 2);
   padding-bottom: 0;
}

.center-grid-btn-archive {
   padding-top: 0;
   padding-bottom: calc(var(--section-padding) * .75);
}

.center-grid-btn .grid-after-btn {
   display: flex;
   justify-content: center;
}

.center-grid-btn .grid-after-btn .btn-text {
   min-width: 10em;
}

@media screen and (max-width: 720px) {

   /* .center-grid-btn .btn,
   .center-grid-btn .btn-click {
      width: 100%;
   } */

}

/* ------------------------- Work Tiles -------------------------------------------------- */

.work-tiles {
   padding-top: 0;
}

.work-tiles .container {
   padding-left: calc(var(--container-padding) * .75);
   padding-right: calc(var(--container-padding) * .75);
}

.work-tiles ul {
   width: 100%;
   display: flex;
   flex-wrap: wrap;
   position: relative;
   padding-top: var(--gap-padding);
}

.work-tiles ul li {
   display: block;
   width: 50%;
   position: relative;
   overflow: hidden;
   height: 0;
   width: 0;
   transform: translateY(0%) rotate(0.001deg) scale(1);
   transition: opacity .3s ease-in .4s, transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.work-tiles ul li.visible {
   height: auto;
   width: 50%;
}

.work-tiles ul li.tile-fade-out {
   opacity: 0;
   transform: translateY(5em) rotate(0.001deg);
   transition: opacity .25s ease-out, transform 0s linear .3s;
}

.work-tiles ul li.tile-fade-in {
   opacity: 1;
   transform: translateY(5em) rotate(0.001deg) scale(1);
}

.work-tiles ul li .single-tile-wrap {
   width: 100%;
   padding-bottom: calc(var(--section-padding) * 1);
   padding-left: calc(var(--container-padding) * .25);
   padding-right: calc(var(--container-padding) * .25);
}

.work-tiles ul li a {
   align-items: center;
   color: unset;
   text-decoration: unset;
   overflow: hidden;
}

.work-tiles ul li a .flex-col:nth-child(1) {
   width: 100%;
   padding-bottom: var(--gap-padding);
}

.work-tiles ul li a .flex-col:nth-child(2) {
   width: 100%;
   padding-bottom: calc(var(--gap-padding) / 2);
}

.work-tiles ul li a .stripe {
   margin-top: calc(var(--gap-padding) / 2);
}

.work-tiles ul li a .flex-col:nth-child(3) {
   width: 70%;
}

.work-tiles ul li a .flex-col:nth-child(4) {
   width: 30%;
   text-align: right;
}

.work-tiles ul li a .tile-image {
   width: 100%;
   position: relative;
   background: var(--color-lightgray);
   overflow: hidden;
}

.work-tiles ul li a .tile-image .overlay-image {
   transform: scale(1) rotate(0.001deg);
   transition: var(--animation-primary);
   will-change: transform;
}

.work-tiles ul li a:hover .tile-image .overlay-image {
   transform: scale(1.025) rotate(0.001deg);
}

.work-tiles ul li a .tile-image::before {
   display: block;
   content: "";
   padding-top: 100%;
}

.work-tiles ul li a h4 {
   position: relative;
   display: block;
   overflow: hidden;
   line-height: 1;
   transition: var(--animation-fast);
   transform: translateX(0) rotate(0.001deg);
   margin: 0;
}

.work-tiles ul li a h4 span {
   position: relative;
   display: block;
   padding: .1em 0;
}

@media screen and (max-width: 1024px) {
   .work-tiles ul li a h4 {
      font-size: calc(clamp(1.75em, 2.3vw, 2.5em) * 1.125);
   }
}

@media screen and (max-width: 620px) {

   .work-tiles ul li.visible {
      width: 100%;
   }

   .work-tiles .container {
      padding-left: var(--container-padding);
      padding-right: var(--container-padding);
   }

   .work-tiles ul li .single-tile-wrap {
      padding-left: 0;
      padding-right: 0;
   }

   .work-tiles ul li a:hover .tile-image .overlay-image {
      transform: scale(1) rotate(0.001deg);
   }

   .work-tiles ul li a .flex-col:nth-child(2) {
      width: 100%;
      padding-bottom: calc(var(--section-padding) / 6);
   }

   .work-tiles ul li a .stripe {
      margin-top: calc(var(--section-padding) / 6);
   }
}

/* ------------------------- Work Tiles - Home -------------------------------------------------- */

.work-tiles-home {
   display: none;
   padding-bottom: 0;
}

@media screen and (max-width: 1024px) {
   .work-tiles-home {
      display: block;
   }

   .work-tiles-home+.center-grid-btn {
      padding-top: 0;
   }

   .work-tiles-home .container ul li:nth-child(3) {
      display: none;
   }

   .work-tiles-home .container ul li:nth-child(4) {
      display: none;
   }
}

/* ------------------------- Work Grid - Fade -------------------------------------------------- */


.grid-fade {
   height: 0;
   overflow: hidden;
   transform: translateY(0%) rotate(0.001deg) scale(1);
   transition: opacity .3s ease-in .4s, transform 1s cubic-bezier(0.16, 1, 0.3, 1);
   padding: 0;
}

.grid-fade.visible {
   height: auto;
}

.grid-fade.grid-fade-out {
   opacity: 0;
   transform: translateY(5em) rotate(0.001deg);
   transition: opacity .25s ease-out, transform 0s linear .3s;
}

.grid-fade.grid-fade-in {
   opacity: 1;
   transform: translateY(5em) rotate(0.001deg) scale(1);
}

@media screen and (max-width: 1024px) {
   .grid-fade {
      height: auto;
   }
}


/* ------------------------- Mouse Position Image -------------------------------------------------- */

.mouse-pos-list-image {
   width: 0;
   z-index: 25;
   position: fixed;
   pointer-events: none;
   transform: translate(-50%, -52%);
   display: block;
   left: 55%;
   overflow: hidden;
   transition: width .4s cubic-bezier(0.36, 0, 0.66, 0);
   left: 0%;
   will-change: transform, width;
}

.mouse-pos-list-image.active {
   border-radius: 0;
   width: clamp(10em, 27.5vw, 25em);
   transition: width .4s cubic-bezier(0.34, 1, 0.64, 1);
}

.mouse-pos-list-image-bounce {
   overflow: hidden;
   transform: scale(1) rotate(.001deg);
   transition: all .5s cubic-bezier(0.65, 0, 0.35, 1);
   will-change: transform;
}

.mouse-pos-list-image-bounce.active {
   transform: scale(1) rotate(.001deg);
}

.mouse-pos-list-image::before {
   display: block;
   content: "";
   padding-top: 100%;
}

.mouse-pos-list-image .mouse-pos-list-image-inner {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
}

.mouse-pos-list-image .float-image-wrap {
   width: 100%;
   position: absolute;
   left: 0;
   top: 0;
   display: block;
   will-change: transform;
}

.mouse-pos-list-image .float-image-wrap .mouse-pos-list-image-inner {
   position: relative;
   width: 100%;
   display: block;
   overflow: hidden;
}

.mouse-pos-list-image .float-image-wrap .mouse-pos-list-image-inner:before {
   display: block;
   content: "";
   padding-top: 100%;
}

.mouse-pos-list-image .float-image-wrap .mouse-pos-list-image-inner {
   width: 0;
}

.mouse-pos-list-image .float-image-wrap .mouse-pos-list-image-inner.visible {
   width: 100%;
}

@media screen and (max-width: 540px) {

   .mouse-pos-list-image {
      display: none;
   }
}

/* ------------------------- Mouse Position Button -------------------------------------------------- */


.mouse-pos-list-btn,
.mouse-pos-list-span {
   width: 0;
   height: 0;
   border-radius: 50%;
   border: 0;
   background: var(--color-blue);
   position: fixed;
   z-index: 26;
   pointer-events: none;
   transform: translate(-50%, -60%);
   overflow: hidden;
   display: block;
   transition: width .4s cubic-bezier(0.36, 0, 0.66, 0), height .4s cubic-bezier(0.36, 0, 0.66, 0);
   left: 50.5%;
   top: -10%;
   left: -10%;
   left: 0%;
   top: 0%;
   will-change: transform, width, height;
}

.mouse-pos-list-span {
   background: transparent;
   color: var(--color-white);
   display: flex;
   justify-content: center;
   align-items: center;
   left: 49.75%;
   top: -11.25%;
   left: -11.25%;
   left: 0%;
   top: 0%;
}

.mouse-pos-list-span p {
   margin: 0;
}

.mouse-pos-list-span .arrow,
.btn .arrow {
   width: 0em;
   transform: rotate(-90deg) translateX(-.05em);
   margin-left: .33em;
   display: inline-flex;
   position: relative;
   transition: width .4s cubic-bezier(0.36, 0, 0.66, 0);
   will-change: width;
}

.mouse-pos-list-span.active-big .arrow,
.btn .arrow {
   width: .66em;
   transition: width .4s cubic-bezier(0.34, 1, 0.64, 1)
}

.mouse-pos-list-btn.active,
.mouse-pos-list-span.active {
   width: clamp(3.75em, 5.5vw, 5em);
   height: clamp(3.75em, 5.5vw, 5em);
   transition: width .4s cubic-bezier(0.34, 1, 0.64, 1), height .4s cubic-bezier(0.34, 1, 0.64, 1);
}

.mouse-pos-list-btn.active-big,
.mouse-pos-list-span.active-big {
   width: calc(clamp(3.75em, 5.5vw, 5em) * 1.66);
   height: calc(clamp(3.75em, 5.5vw, 5em) * 1.66);
   transition: width .4s cubic-bezier(0.34, 1, 0.64, 1), height .4s cubic-bezier(0.34, 1, 0.64, 1);
}

.mouse-pos-list-btn.active-big.hover,
.mouse-pos-list-span.active-big.hover {
   width: calc(clamp(3.75em, 5.5vw, 5em) * 1.45);
   height: calc(clamp(3.75em, 5.5vw, 5em) * 1.45);
}

.mouse-pos-list-btn.active.pressed,
.mouse-pos-list-span.active.pressed {
   height: calc(clamp(3.75em, 5.5vw, 8em) * 1.4);
   width: calc(clamp(3.75em, 5.5vw, 8em) * 1.4);
}

.mouse-pos-list-btn.active-big.pressed,
.mouse-pos-list-span.active-big.pressed {
   height: calc(clamp(3.75em, 5.5vw, 8em) * 2);
   width: calc(clamp(3.75em, 5.5vw, 8em) * 2);
}

.mouse-pos-list-span.active,
.mouse-pos-list-span.active-big {
   border-radius: 0;
   width: clamp(10em, 27.5vw, 25em);
   transition: width .4s cubic-bezier(0.34, 1, 0.64, 1), height .4s cubic-bezier(0.34, 1, 0.64, 1);
}

.mouse-pos-list-span p {
   font-size: 0em;
   transition: font-size .4s cubic-bezier(0.36, 0, 0.66, 0);
   will-change: font-size;
}

.mouse-pos-list-span.active p,
.mouse-pos-list-span.active-big p {
   font-size: 1em;
   transition: font-size .4s cubic-bezier(0.34, 1, 0.64, 1);
}

.load-icon {
   width: 3em;
   height: 3em;
   border-radius: 50%;
   border: 0;
   background: var(--color-blue);
   position: fixed;
   pointer-events: none;
   transform: scale(0);
   overflow: hidden;
   display: block;
   right: var(--gap-padding);
   bottom: var(--gap-padding);
   z-index: 2000;
}

.load-icon svg {
   left: 25%;
   top: 25%;
   position: absolute;
   width: 50%;
   transform: rotate(0.0001deg);
   animation: rotateLoad 1s linear infinite;
}

@keyframes rotateLoad {
   0% {
      transform: rotate(0.0001deg);
   }

   100% {
      transform: rotate(360deg);
   }
}


@media screen and (max-width: 540px) {

   .mouse-pos-list-btn,
   .mouse-pos-list-span {
      display: none;
   }
}

/* ------------------------- About - Header -------------------------------------------------- */

.about-header {
   background: var(--color-white);
}

/* ------------------------- About - Stripe + Globe -------------------------------------------------- */

.line-globe {
   overflow: visible;
   z-index: 5;
}

@keyframes digitalball {
   0% {
      background: var(--color-blue);
   }

   50% {
      background: #ff4444;
   }

   100% {
      background: var(--color-blue);
   }
}

.digital-ball {
   width: clamp(9em, 12vw, 11em);
   height: clamp(9em, 12vw, 11em);
   background: var(--color-dark);
   border-radius: 50%;
   top: 0;
   right: 0;
   transform: translate(-50%, -50%);
   position: absolute;
   overflow: hidden;
   background: var(--color-blue);
}

.digital-ball .overlay {
   opacity: 0;
   transition: opacity 1s ease-in-out;
   animation: digitalball 6s ease-in-out infinite;
}

.line-globe .digital-ball:hover .overlay {
   opacity: 1;
}

@keyframes globeBounce {
   0% {
      transform: translate(-50%, -40%);
   }

   50% {
      transform: translate(-50%, -60%);
   }

   100% {
      transform: translate(-50%, -40%);
   }
}

.globe {
   position: absolute;
   top: 50%;
   left: 50%;
   width: 3em;
   height: 3em;
   transform: translate(-50%, -50%);
   border-radius: 50%;
   overflow: hidden;
   will-change: transform;
}

@keyframes globe {
   0% {
      transform: translate(-50%, -50%) rotate(15deg);
   }

   50% {
      transform: translate(-50%, -50%) rotate(-15deg);
   }

   100% {
      transform: translate(-50%, -50%) rotate(15deg);
   }
}

.globe-wrap {
   top: 50%;
   left: 50%;
   width: 100%;
   height: 100%;
   position: absolute;
   display: block;
   border-radius: 50%;
   transform: translate(-50%, -50%) rotate(30deg);
   animation: globe 5.4s cubic-bezier(0.35, 0, 0.65, 1) infinite;
   overflow: hidden;
   box-shadow: inset 0px 0px 0px .125em var(--color-white);
}

.globe .circle {
   position: absolute;
   top: 50%;
   left: 50%;
   width: 100%;
   height: 100%;
   transform: translate(-50%, -50%);
   border-radius: 50%;
   box-shadow: inset .1em 0px 0px .08em var(--color-white);
   animation: circle1 2.7s linear infinite;
   font-size: .75em;
}

@keyframes circle1 {
   0% {
      border-radius: 50%;
      box-shadow: inset .1em 0px 0px .08em var(--color-white);
      width: 100%;
   }

   49% {
      border-radius: 50%;
      box-shadow: inset .1em 0px 0px .08em var(--color-white);
      background: transparent;
   }

   50% {
      border-radius: 0%;
      width: .175em;
      background: var(--color-white);
   }

   51% {
      border-radius: 50%;
      box-shadow: inset -.1em 0px 0px .08em var(--color-white);
      background: transparent;
   }

   100% {
      border-radius: 50%;
      box-shadow: inset -.1em 0px 0px .08em var(--color-white);
      width: 100%;
   }
}

.globe :nth-child(1) {
   animation-delay: -1.8s;
}

.globe :nth-child(2) {
   animation-delay: -.9s;
}


.globe .circle-hor {
   position: absolute;
   top: 50%;
   left: 50%;
   width: 150%;
   transform: translate(-50%, -50%);
   border-radius: 50%;
   height: 55%;
   box-shadow: inset 0px 0px 0px .15em var(--color-white);
   font-size: .75em;
}

.globe .circle-hor-middle {
   position: absolute;
   top: 50%;
   left: 50%;
   width: 150%;
   transform: translate(-50%, -50%);
   border-radius: 0%;
   height: .15em;
   background: var(--color-white);
   font-size: .75em;
}

@media screen and (max-width: 1000px) {

   .digital-ball {
      transform: translate(-20%, -50%);
   }

}

/* ------------------------- About - Image -------------------------------------------------- */

.about-image {
   padding-top: calc(var(--section-padding) * .75);
   padding-bottom: 0;
   background: var(--color-white);
}

.about-image .bottom-lightgray {
   position: absolute;
   bottom: 0;
   width: 100%;
   height: var(--section-padding);
   left: 0;
   background: var(--color-lightgray);
   height: 10vw;
   display: none;
}

.about-image .flex-col:nth-child(1) {
   width: 35%;
   padding-left: var(--container-padding);
   padding-right: calc(var(--container-padding) / 2);
}

.about-image .flex-col:nth-child(1) p {
   margin-top: -.33em;
   display: block;
   will-change: transform;
}

.about-image .flex-col:nth-child(1) .arrow {
   position: absolute;
   left: 0;
   transform: rotate(-45deg);
   will-change: transform;
}

.about-image .flex-col:nth-child(1) .arrow svg g {
   stroke: var(--color-dark);
}

.about-image .flex-col:nth-child(2) {
   width: 65%;
}

.single-about-image {
   width: 100%;
   display: block;
   background: var(--color-lightgray);
   overflow: hidden;
   position: relative;
}

.single-about-image::before {
   content: "";
   display: block;
   padding-top: 135%;
}

.single-about-image .overlay:nth-child(1) {
   background: url("../img/IMG_2057.jpg") center center no-repeat;
   background-size: cover;
   top: -20vh;
   height: 105%;
}

.single-about-image .overlay:nth-child(2) {
   background: linear-gradient(to bottom, hsla(220, 13%, 5%, .075) 0%, hsla(220, 13%, 5%, 0) 50%);
   display: none;
}

@media screen and (max-width: 840px) {
   .about-image .flex-col:nth-child(1) {
      width: 45%;
      padding-right: calc(var(--container-padding) / 1);
   }

   .about-image .flex-col:nth-child(2) {
      width: 55%;
   }

   .single-about-image::before {
      padding-top: 125%;
   }
}

@media screen and (max-width: 840px) {

   .about-image {
      padding-top: calc(var(--section-padding) * .85);
   }

   .about-image .flex-col:nth-child(1) {
      width: unset;
      padding: 0;
      margin-left: calc(var(--container-padding) / 1);
      padding-right: calc(var(--container-padding) / 1);
      padding-top: calc(var(--section-padding) / 4);
      width: 100%;
   }

   .about-image .flex-col:nth-child(1) p {
      max-width: 100%;
   }

   .about-image .flex-col:nth-child(2) {
      padding-top: calc(var(--section-padding) / 1.15);
      width: 100%;
   }

   .about-image .flex-col:nth-child(1) .arrow {
      top: calc(var(--section-padding) / -4);
      transform: rotate(0deg) translateY(-50%);
   }

   .about-image .bottom-lightgray {
      position: absolute;
      bottom: 0;
      width: 100%;
      height: var(--section-padding);
      left: 0;
      background: var(--color-lightgray);
      height: 60vw;
      display: block;
   }
}

@media screen and (max-width: 540px) {

   .single-about-image::before {
      padding-top: 125%;
      padding-top: 140%;
   }

   .single-about-image .overlay:nth-child(1) {
      width: 130%;
      left: -30%;

      width: 100%;
      left: 0;
      top: -18%;
      height: 120%;
   }

   .about-image .flex-col:nth-child(1) {
      margin-left: 0;
      padding-right: 0;
   }

   .about-image .flex-col:nth-child(2) {
      padding-top: calc(var(--section-padding) * .5);
   }

}


/* ------------------------- About - Services -------------------------------------------------- */

.about-services {
   padding-top: calc(var(--section-padding) * .75);
   background: var(--color-lightgray);
   margin-top: -1px;
}

.about-services .row:nth-child(1) {
   padding-bottom: calc(var(--section-padding) / 2);
}

.about-services .row:nth-child(2) {
   width: calc(100% + calc(var(--container-padding) / 1.5));
   margin-left: calc(var(--container-padding) / -1.5);
}

.about-services .row:nth-child(2) .flex-col {
   width: 33.333%;
   padding-left: calc(var(--container-padding) / 1.5);
}

.about-services .row:nth-child(2) .flex-col h5:nth-child(1) {
   padding-bottom: 2em;
}

.about-services .row:nth-child(2) .flex-col h5 {
   margin: 0;
   font-size: .8em;
}

.about-services .row:nth-child(2) .flex-col h4 {
   margin: 0;
}

.about-services .row:nth-child(2) .flex-col .stripe {
   margin-bottom: 2em;
}

.about-services .row:nth-child(2) .flex-col svg {
   width: 1em;
   padding: 0;
   margin-right: .25em;
   transform: translate(0, -.05em);
}

.about-services .row:nth-child(2) .flex-col svg path {
   fill: var(--color-dark);
}

.about-services .row:nth-child(2) .flex-col p:nth-child(4) {
   padding-top: 2em;
}

/* Custom services grid for Go Trip layout restructure */
.about-services .row.services-grid-custom {
   display: flex;
   flex-wrap: wrap;
   width: calc(100% + calc(var(--container-padding) / 1.5));
   margin-left: calc(var(--container-padding) / -1.5);
}

.about-services .row.services-grid-custom > .flex-col.flex-left-custom {
   width: 50%;
   padding-left: calc(var(--container-padding) / 1.5);
}

.about-services .row.services-grid-custom > .flex-col.flex-right-custom {
   width: 50%;
   display: flex;
   flex-direction: column;
   padding-left: calc(var(--container-padding) / 1.5);
}

.about-services .row.services-grid-custom > .flex-col.flex-right-custom > .flex-col {
   width: 100%;
   padding-left: 0;
   padding-bottom: 4em;
}

@media screen and (max-width: 720px) {
   .about-services .row.services-grid-custom {
      width: 100%;
      margin-left: 0;
   }
   .about-services .row.services-grid-custom > .flex-col.flex-left-custom,
   .about-services .row.services-grid-custom > .flex-col.flex-right-custom {
      width: 100%;
      padding-left: 0;
   }
   .about-services .row.services-grid-custom > .flex-col.flex-right-custom > .flex-col {
      padding-bottom: calc(var(--section-padding) * .5);
   }
}

.animate-dot {
   opacity: 0;
   animation: animateDot1 2s linear infinite;
}

.animate-dot:nth-child(2) {
   animation: animateDot2 2s linear infinite;
}

.animate-dot:nth-child(3) {
   animation: animateDot3 2s linear infinite;
}

@keyframes animateDot1 {
   0% {
      opacity: 0;
   }

   20% {
      opacity: 0;
   }

   30% {
      opacity: 1;
   }

   90% {
      opacity: 1;
   }
}

@keyframes animateDot2 {
   0% {
      opacity: 0;
   }

   35% {
      opacity: 0;
   }

   45% {
      opacity: 1;
   }

   90% {
      opacity: 1;
   }
}

@keyframes animateDot3 {
   0% {
      opacity: 0;
   }

   50% {
      opacity: 0;
   }

   60% {
      opacity: 1;
   }

   90% {
      opacity: 1;
   }
}

@media screen and (max-width: 720px) {

   .about-services {
      padding-top: calc(var(--section-padding) * 1);
   }

   .about-services .row:nth-child(2) {
      width: 100%;
      margin-left: 0;
   }

   .about-services .row:nth-child(2) .flex-col h5:nth-child(1) {
      display: none;
   }

   .about-services .row:nth-child(2) .flex-col {
      width: 100%;
      padding-left: 0;
      padding-bottom: calc(var(--section-padding) * .5);
   }

   .about-services .row:nth-child(2) .flex-col:last-child {
      padding-bottom: 0;
   }

   .about-services .row:nth-child(2) .flex-col .stripe {
      margin-bottom: calc(var(--section-padding) * .5);
   }

   .about-services .row:nth-child(2) .flex-col p:nth-child(4) {
      padding-top: calc(var(--gap-padding) * .5);
   }
}


/* ------------------------- About - Split Awwwards -------------------------------------------------- */


.about-awwwards .row {
   align-items: center;
}

.about-awwwards .flex-col:nth-child(1) {
   width: 50%;
   padding-right: calc(var(--container-padding) / 2);
}

.about-awwwards .flex-col:nth-child(2) {
   width: 50%;
   padding-left: calc(var(--container-padding) / 2);
   padding-bottom: 3em;
}

.about-awwwards .single-image {
   width: 100%;
   display: block;
   background: var(--color-lightgray);
   overflow: hidden;
   position: relative;
}

.about-awwwards .single-image::before {
   content: "";
   display: block;
   padding-top: 135%;
   padding-top: 125%;
}

.about-awwwards .single-image .overlay:nth-child(1) {
   /* background: url("../img/DSC07292.jpg") center center no-repeat;
   background-size: cover;
   height: 130%;
   top: -25%;
   width: 105%;
   left: -5%; */

   background: url("../img/Frame 427319044.png") center center no-repeat;
   background-size: cover;
   top: -3%;
   height: 106%;
   width: 140%;
   left: -40%;

   /* background: url("../img/Kien_Team-16.jpg") center center no-repeat;
   background-size: cover;
   top: -3%;
   height: 106%;
   width: 140%;
   left: -14%; */
}

.about-awwwards .single-image .overlay:nth-child(2) {
   background: linear-gradient(to top, hsla(220, 13%, 5%, .075) 0%, hsla(220, 13%, 5%, 0) 50%);
}

.about-awwwards .awwwards-badge {
   width: 6em;
   position: relative;
   margin-bottom: calc(var(--section-padding) / 4);
   border-radius: 50%;
}

.about-awwwards .awwwards-badge::before {
   display: block;
   content: "";
   padding-top: 100%;
}

.about-awwwards .awwwards-badge svg:nth-child(1) {
   width: 100%;
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
}

.about-awwwards .awwwards-badge svg:nth-child(1) g {
   fill: var(--color-gray);
}

.about-awwwards .awwwards-badge svg:nth-child(2) {
   width: 40%;
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
}

.about-awwwards .awwwards-badge svg:nth-child(2) path {
   fill: var(--color-gray);
}

@media screen and (max-width: 720px) {

   .about-awwwards {
      padding-top: calc(var(--section-padding) / 1.5);
   }

   .about-awwwards .flex-col:nth-child(1) {
      width: 100%;
      padding-right: 0;
   }

   .about-awwwards .flex-col:nth-child(2) {
      width: 100%;
      padding-left: 0;
      padding-bottom: calc(var(--section-padding) / 2);
      order: 1;
   }

   .about-awwwards .single-image::before {
      padding-top: 125%;
   }

   .about-awwwards .single-image .overlay:nth-child(1) {
      background: url("../img/Frame 427319044.png") center center no-repeat;
      background-size: cover;
      top: -3%;
      height: 106%;
      width: 140%;
      left: -40%;
   }
}


/* ------------------------- FAQ - Section -------------------------------------------------- */


.faq {
   padding-top: 0;
}

.faq .flex-col:nth-child(1) {
   padding: 0 calc(var(--container-padding) / 2);
   padding-bottom: calc(var(--section-padding) / 2);
}

.faq ul {
   width: 100%;
}

.faq li {
   padding: 0 calc(var(--container-padding) / 2);
   border-top: 1px solid var(--color-border);
}

.faq li a {
   padding: 2em 0 2em 0;
   margin: 0;
   background: transparent !important;
   position: relative;
   border-radius: 0 !important;
}

.faq li h4 {
   margin: 0;
}

.faq .uk-accordion-title {
   font-size: unset;
   line-height: unset;
}

.faq .uk-accordion>:nth-child(n+2) {
   margin-top: 0;
}

.faq .uk-accordion>:last-child {
   border-bottom: 1px solid var(--color-border);
}

.faq .uk-accordion-content {
   margin-top: -.5em;
   padding-bottom: 2.5em;
   padding-right: calc(var(--container-padding) / 2);
}

.faq .uk-accordion-title:hover {
   color: var(--color-dark);
}

.faq .uk-accordion-title::before {
   display: none;
}

.faq .plus {
   position: absolute;
   right: 0;
   top: 50%;
   transform: translateY(-50%) rotate(0.001deg);
   width: 2em;
   height: 2em;
   transition: var(--animation-fast);
}

.faq .plus::before,
.faq .plus::after {
   content: "";
   position: absolute;
   width: 60%;
   height: 2px;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%) rotate(0.001deg);
   background: var(--color-dark);
   transition: var(--animation-fast);
}

.faq .plus::after {
   transform: translate(-50%, -50%) scale(1, 1) rotate(90deg);
}

.faq li a:hover .plus {
   opacity: .5;
}

.faq li.uk-open a .plus::after {
   transform: translate(-50%, -50%) scale(1, 0) rotate(90deg);
}

@media screen and (max-width: 720px) {

   .faq .flex-col:nth-child(1) {
      padding: 0;
      padding-bottom: calc(var(--section-padding) / 3);
   }

   .faq li {
      padding: 0;
      border-top: 1px solid var(--color-border);
   }

   .faq .uk-accordion-content {
      padding-right: 0;
   }
}

/* ------------------------- Contact - Header -------------------------------------------------- */

.contact-header {
   background: var(--color-dark);
   padding-bottom: calc(var(--section-padding) / 3);
}

.contact-header .row .flex-col:nth-child(1) {
   width: 73%;
   padding-right: calc(var(--container-padding) / 2);
}

.contact-header .row:nth-child(1) .flex-col:nth-child(2) {
   padding-top: calc(clamp(3.25em, 7vw, 8em) * .875 * 1.175);
}

.contact-header .row:nth-child(1) .flex-col:nth-child(2) .arrow {
   position: absolute;
   bottom: calc(var(--section-padding) * -.5);
   transform: translateY(-50%);
}

.contact-header .row .flex-col:nth-child(2) {
   width: 27%;
   padding-left: calc(var(--container-padding) / 2);
}

.contact-header .row:nth-child(2) {
   padding-top: var(--section-padding);
}

.contact-header .row:nth-child(2) .links-wrap {
   width: 100%;
   flex-direction: column;
   align-items: flex-start;
   padding-bottom: 2.5em;
}

.contact-header .row:nth-child(2) .links-wrap li {
   height: 2em;
   display: flex;
   align-items: center;
}

.contact-header .row:nth-child(2) .links-wrap .btn-link.btn-link-external .btn-click {
   margin: 0;
   height: 2em;
}

.contact-header .row .flex-col:nth-child(1) .profile-picture {
   margin-right: .125em;
   height: .85em;
   width: .85em;
   transform: translateY(.09em);
   display: none;
}

.contact-header .row .flex-col:nth-child(1) h1 span {
   display: block;
}

.contact-header .form {
   background: var(--color-dark);
}

@media screen and (max-width: 720px) {

   .contact-header .row .flex-col:nth-child(1) {
      width: 100%;
      padding-right: 0;
   }

   .contact-header .row .flex-col:nth-child(2) {
      width: 100%;
      padding-left: 0;
   }

   .contact-header .row .flex-col:nth-child(1) .profile-picture {
      display: inline-flex;
      margin-right: .125em;
      height: .95em;
      width: .95em;
      transform: translateY(.1em);
   }

   .contact-header .row:nth-child(1) .flex-col:nth-child(2) .profile-picture {
      display: none;
   }

   .contact-header .form-col {
      padding: 0 0 0 1.5em;
      font-size: 1.15em;
   }

   .contact-header .row:nth-child(2) .flex-col:nth-child(2) h5:last-of-type,
   .contact-header .row:nth-child(2) .flex-col:nth-child(2) ul:last-of-type {
      display: none;
   }

   .contact-header .row:nth-child(2) {
      padding-top: 0;
   }

   .contact-header .row:nth-child(2) .flex-col:nth-child(2) {
      order: 1;
   }

   .contact-header .row:nth-child(1) .flex-col:nth-child(2) {
      height: calc(var(--section-padding) * .75);
   }

   .contact-header .row:nth-child(1) .flex-col:nth-child(2) .arrow {
      left: unset;
      bottom: 0;
      top: -4em;
      right: .5em;
      transform: translateY(-50%) scale(-1, 1);
   }

   .contact-header .row:nth-child(2) .flex-col:nth-child(1) {
      padding-top: calc(var(--section-padding) * .25);
   }
}

/* ------------------------- Archive - Header -------------------------------------------------- */

#archive,
.archive-header,
.archive-work-grid,
.archive-work-grid+.footer-rounded-div .rounded-div {
   background: var(--color-lightgray);
}

.archive-header h1 .count-nr {
   color: var(--color-dark);
   opacity: 1;
   font-size: .3em;
}

/* ------------------------- Error - Header -------------------------------------------------- */

.error-header .overlay-video {
   overflow: hidden;
}

.error-header .overlay-dark {
   background: var(--color-dark-dark);
   opacity: .7;
}

.error-header h1 {
   margin-bottom: 0;
}

.error-header p {
   position: absolute;
   right: 0;
   top: 1em;
}

.error-header .stripe {
   margin-top: calc(var(--section-padding) * .66);
}

.error-header .container {
   width: 100%;
}

.section.full-height.error-header {
   display: block;
   align-items: unset;
}

.error-header .container .btn-row {
   position: relative;
}

.error-header .container .btn {
   position: absolute;
   right: 0;
   top: 0;
   transform: translate(-50%, -50%);
}

#error footer,
#default footer,
#success footer {
   transform: translateY(-100%);
   position: absolute;
   z-index: 5;
   bottom: 0;
   background: transparent;
}

#error .footer-contact,
#default .footer-contact,
#success .footer-contact {
   box-shadow: none;
}

@media screen and (max-width: 720px) {
   .error-header p {
      position: relative;
      right: unset;
      top: unset;
      margin-top: calc(var(--gap-padding) * 1.5);
      margin-bottom: var(--section-padding);
   }

   .error-header h1 span {
      display: inline-flex;
   }

   #error footer,
   #default footer,
   #success footer {
      transform: translateY(0);
   }

   #error footer .socials,
   #default footer .socials,
   #success footer .socials {
      display: none;
   }

   .error-header .container .btn {
      transform: translate(-20%, -50%);
   }
}

/* ------------------------- Home - Horizontal Items -------------------------------------------------- */

.horizontal-items {
   overflow: hidden;
   padding-top: calc(var(--section-padding) * .75);
   padding-bottom: calc(var(--section-padding) - 2.5vw);
}

.horizontal-items .container {
   padding: 0;
   transform: rotate(0deg);
}

.horizontal-items .row {
   width: 120vw;
   left: -10vw;
   will-change: transform;
}

.horizontal-items .flex-col {
   width: 25%;
   padding: calc(var(--gap-padding) / 2);
   padding: 1.25vw;
   will-change: transform;
}

.horizontal-items .horizontal-single-item {
   position: relative;
}

.horizontal-items .horizontal-single-item::before {
   display: block;
   content: "";
   padding-top: 75%;
}

@media screen and (max-width: 1000px) {
   .horizontal-items .flex-col {
      width: 33.333%;
   }

   .horizontal-items .flex-col:nth-child(4) {
      display: none;
   }

}

@media screen and (max-width: 540px) {
   .horizontal-items {
      padding-top: calc(var(--section-padding) * 1);
   }

   .horizontal-items .flex-col {
      width: 50%;
      padding: 2.5vw;
   }

   .horizontal-items .flex-col:nth-child(4) {
      display: block;
   }

   .horizontal-items .row {
      width: 120vw;
   }

   .horizontal-items .row.row-1,
   .horizontal-items .row.row-2 {
      transform: translate(0, 0) !important;
   }

   .horizontal-items .row-1 .flex-col:nth-child(3),
   .horizontal-items .row-1 .flex-col:nth-child(4) {
      transform: translate(-20vw, 0);
   }

   .horizontal-items .row-2 .flex-col:nth-child(3),
   .horizontal-items .row-2 .flex-col:nth-child(4) {
      display: none;
   }

   .horizontal-items .container {
      display: none;
      opacity: 0;
      visibility: hidden;
   }

   .horizontal-items {
      padding-top: 0;
   }
}


/* ------------------------- Case - Header -------------------------------------------------- */

.case-top-wrap {
   padding: 0;
}

.case-top-wrap.theme-dark {
   background: var(--color-dark);
}

.case-header {
   padding-bottom: 0;
}

.case-header h1 {
   font-size: calc(clamp(3.25em, 7vw, 8em) * 1);
}

.case-header p {
   padding-bottom: 0;
   opacity: .5;
   transform: translateY(-1em);
}


/* ------------------------- Case - Intro -------------------------------------------------- */

.case-intro {
   padding-top: calc(var(--section-padding) / 1.75);
   padding-bottom: calc(var(--section-padding) / 1.25);
   margin-top: -1px;
}

/* ------------------------- Case - Overview (service detail) -------------------------------------------------- */

.case-overview {
   padding-top: calc(var(--section-padding) / 2);
   padding-bottom: calc(var(--section-padding) / 1.5);
   color: var(--color-dark);
}

.case-overview .row .flex-col {
   width: 100%;
   max-width: 52em;
}

/* secondary heading: smaller than the main title */
.case-overview-sub {
   font-family: 'Dennis Sans', sans-serif;
   font-weight: 600;
   font-size: clamp(1.5em, 3vw, 2.4em);
   line-height: 1.12;
   margin: 0 0 1em;
   color: #F9460E;
}

.case-overview-body p {
   font-weight: 450;
   font-size: clamp(1em, 1.25vw, 1.15em);
   line-height: 1.6;
   max-width: 42em;
   margin: 0 0 1.4em;
   color: rgba(9, 9, 9, 0.42);
}

/* "What's Included?" header row: label on the left, contact circle on the right */
.case-includes-head {
   display: flex;
   justify-content: space-between;
   align-items: center;
   gap: 2em;
   margin-top: 10em;
   margin-bottom: .9em;
}

/* Small uppercase section label. Typography is pinned here (not inherited from a
   heading tag) so these can be proper <h2> section headings without looking big. */
.case-overview-label {
   margin: 0;
   color: var(--color-dark);
   font-family: 'Dennis Sans', sans-serif;
   font-weight: 450;
   font-size: .6em;
   line-height: 1.065;
   text-transform: uppercase;
   letter-spacing: .05em;
   opacity: .5;
}

.case-overview-contact {
   position: relative;
   flex: none;
}

.case-overview-contact .btn-round .btn-click {
   width: clamp(9.1em, 13vw, 11.7em);
   height: clamp(9.1em, 13vw, 11.7em);
}

/* Expected Outcome paragraph (case-intro bottom) */
.case-outcome {
   margin: 0;
   line-height: 1.55;
   color: rgba(9, 9, 9, 0.62);
}

/* Our Process / Expected Outcome stacked (one under the other) */
.case-intro-bottom .row {
   flex-direction: column;
}

.case-intro-bottom .row .flex-col {
   width: 100%;
   max-width: 42em;
   margin-right: 0;
   margin-bottom: 3em;
}

.case-intro-bottom .row .flex-col:last-child {
   margin-bottom: 0;
}

/* Our Process as a bulleted list (orange dot markers) */
.process-list {
   list-style: none;
   margin: 0;
   padding: 0;
}

.process-list li {
   position: relative;
   padding-left: 1.5em;
   margin-bottom: .65em;
   font-weight: 500;
   line-height: 1.4;
   color: var(--color-dark);
}

.process-list li::before {
   content: "";
   position: absolute;
   left: 0;
   top: .5em;
   width: .5em;
   height: .5em;
   border-radius: 50%;
   background: #F9460E;
}

.case-overview .stripe {
   margin-bottom: 2.2em;
}

.case-includes {
   display: grid;
   grid-template-columns: repeat(2, 1fr);
   gap: 2.2em 3em;
}

.case-include-item h3 {
   font-family: 'Dennis Sans', sans-serif;
   font-weight: 700;
   font-size: clamp(1.1em, 1.5vw, 1.3em);
   line-height: 1.2;
   margin: 0 0 .5em;
   color: var(--color-dark);
}

.case-include-item p {
   font-weight: 450;
   font-size: clamp(.95em, 1.15vw, 1.05em);
   line-height: 1.55;
   margin: 0;
   color: rgba(9, 9, 9, 0.42);
}

@media screen and (max-width: 720px) {
   .case-includes {
      grid-template-columns: 1fr;
      gap: 1.8em;
   }
}

.case-intro .row .flex-col {
   width: calc(33.333% - (var(--gap-padding) / 1));
   margin-right: calc(var(--gap-padding) * 1.5);
}

.case-intro .row .flex-col:last-child {
   margin-right: 0;
}

.case-intro .row .flex-col:last-child li {
   display: inline-block;
}

.case-intro .row .flex-col .stripe {
   margin: 1.75em 0 1.5em 0;
}

@media screen and (max-width: 720px) {

   .case-intro {
      padding-top: calc(var(--section-padding) / 2.5);
      padding-bottom: calc(var(--section-padding) / 1.25);
   }

   .case-intro .row .flex-col {
      width: 100%;
      margin-right: 0;
      margin-bottom: 8vw;
   }

   .case-intro .row .flex-col:last-child {
      margin-bottom: 0;
   }

   .case-intro .row .flex-col .stripe {
      margin: 4.5vw 0 3vw 0;
   }
}

/* ------------------------- Case - Intro Image -------------------------------------------------- */

.case-intro-image {
   padding-top: 0;
   padding-bottom: 0;
   margin-top: -1px;
}

.case-intro-image.block-padding-bottom {
   padding-bottom: var(--section-padding);
}

.case-intro-image .btn-wrap {
   position: absolute;
   top: 0;
   right: 0;
   transform: translate(-50%, -50%);
   z-index: 2;
   display: block;
}

.case-intro-image .single-image {
   width: 100%;
   background: rgba(100, 100, 100, 0.1);
   overflow: hidden;
   position: relative;
}

.case-intro-image .single-image::before {
   content: "";
   display: block;
   padding-top: 38%;
}

.case-intro-image .single-image .overlay-image {
   height: 120%;
   top: -10%;
}

/* main case image: fill + cover */
.case-intro-image .single-image .case-image-photo {
   width: 100%;
   object-fit: cover;
}

/* light cream overlay on the image */
.case-intro-image .single-image .case-image-tint {
   background: rgba(255, 253, 237, 0.22);
   z-index: 1;
}

/* short label over the image (like the twice header) */
.case-intro-image .single-image .case-image-label {
   position: absolute;
   inset: 0;
   z-index: 2;
   display: flex;
   align-items: center;
   justify-content: center;
   font-family: 'Cairo', sans-serif;
   font-weight: 900;
   font-size: clamp(2.5em, 11vw, 10em);
   line-height: 1;
   letter-spacing: .02em;
   color: #FFFDED;
   text-shadow: 0 2px 24px rgba(0, 0, 0, 0.25);
   pointer-events: none;
}

/* case pages: cream page background */
main#work-single {
   background: #FFFDED;
}

/* case pages: the moving "Next case" cursor circle -> cream */
main#work-single .mouse-pos-list-btn {
   background: #FFFDED;
}

main#work-single .mouse-pos-list-span {
   color: #090909;
}

main.touch .case-intro-image .btn-wrap {
   transform: translate(-50%, -50%);
}

@media screen and (max-width: 1000px) {
   .case-intro-image .single-image::before {
      padding-top: 52%;
   }
}

@media screen and (max-width: 720px) {

   .case-intro-image .container {
      padding: 0;
   }

   .case-intro-image .single-image::before {
      padding-top: 68%;
   }

   main.touch .case-intro-image .btn-wrap,
   .case-intro-image .btn-wrap {
      transform: translate(-5vw, -50%);
      transform: translate(-10vw, -130%);
   }

   .case-intro-image.block-padding-bottom {
      padding-bottom: 0;
   }
}

/* ------------------------- Case - Footer -------------------------------------------------- */


.footer-case-wrap .container:nth-child(1) .row:nth-child(1) p {
   text-align: center;
   margin-bottom: calc(var(--section-padding) / 4);
}

.footer-case-wrap .footer h2 {
   font-size: calc(clamp(3.25em, 7vw, 8em) * 1);
   text-align: center;
   transition: var(--animation-primary);
}

.footer-case-wrap .container.medium .row:nth-child(3) .flex-col {
   justify-content: center;
}

.footer-case-wrap .container.medium .row:nth-child(1) {
   padding-bottom: calc(var(--section-padding) / 1.25);
}

.footer-case-wrap .bottom-footer {
   padding-top: calc(var(--section-padding) / 1.9);
}

/* Case pages: black circle buttons with background-aware hover
   (cream background -> hover orange ; orange background -> hover cream) */
.case-intro-image .btn-round .btn-click,
.case-overview .btn-round .btn-click,
.footer-case-wrap .btn-round .btn-click {
   background: #0A0A0A;
}

.case-intro-image .btn-round .btn-text-inner,
.case-overview .btn-round .btn-text-inner,
.footer-case-wrap .btn-round .btn-text-inner {
   color: #FFFDED;
}

/* circle on the cream content area -> fills orange on hover */
.case-intro-image .btn-round .btn-fill,
.case-overview .btn-round .btn-fill {
   background: #F9460E;
}

.case-intro-image .btn-round .btn-click:hover .btn-text-inner,
.case-overview .btn-round .btn-click:hover .btn-text-inner {
   color: #FFFDED;
}

/* circle on the orange footer -> fills cream on hover, text turns orange */
.footer-case-wrap .btn-round .btn-fill {
   background: #FFFDED;
}

.footer-case-wrap .btn-round .btn-click:hover .btn-text-inner {
   color: #F9460E;
}

.footer-case-wrap .next-case-round {
   margin-top: 1.5em;
}

.footer-case-wrap .next-case-btn:hover {
   text-decoration: none;
}

.footer-case-wrap .next-case-btn:hover h2 {
   opacity: .25;
}

.footer-case-wrap .tile-image-wrap {
   width: calc(clamp(10em, 27.5vw, 25em) * .9);
   position: absolute;
   left: 50%;
   bottom: 0;
   background: transparent;
   transform: translateX(-50%);
   overflow: hidden;
   z-index: 2;
}

.footer-case-wrap .tile-image-wrap::before {
   display: block;
   content: "";
   padding-bottom: 50%;
}

.footer-case-wrap .tile-image-wrap .tile-image {
   width: 100%;
   position: absolute;
   top: 0;
   left: 0;
   transform: translateY(30%);
   transition: var(--animation-primary);
}

.footer-case-wrap .next-case-btn:hover .tile-image-wrap .tile-image {
   transform: translateY(0%);
}

.footer-case-wrap .tile-image-wrap .tile-image::before {
   content: "";
   display: block;
   padding-bottom: 85%;
}

@media screen and (max-width: 1000px) {

   .footer-case-wrap .tile-image-wrap {
      width: 40vw;
   }

   .footer-case-wrap .tile-image-wrap .tile-image {
      transform: translateY(20%);
   }
}

@media screen and (max-width: 720px) {

   .footer-case-wrap .container.medium .row:nth-child(2) {
      padding-bottom: calc(var(--section-padding) * 1);
   }

   .footer-case-wrap .container.medium .row:nth-child(1) {
      padding-bottom: calc(var(--section-padding) / .5);
      padding-bottom: 13em;
   }

   .footer-case-wrap .tile-image-wrap {
      width: 50vw;
   }

   .footer-case-wrap .tile-image-wrap .tile-image {
      transform: translateY(0%);
   }

   .footer-case-wrap .next-case-btn:hover h2 {
      opacity: 1;
   }
}

@media screen and (max-width: 540px) {
   .footer-case-wrap .tile-image-wrap {
      width: 70vw;
   }

   .footer-case-wrap .tile-image-wrap::before {
      padding-bottom: 60%;
   }
}

/* ------------------------- Case - Pagebuilder Blocks -------------------------------------------------- */

.single-block {
   padding-bottom: 0;
   margin-top: -1px;
   background: var(--color-white);
}

.single-block .dark-overlay {
   background: var(--color-dark-dark);
}

.single-block.block-padding-bottom {
   padding-bottom: var(--section-padding);
}

/* ------------------------- Case - Block: Fullwidth -------------------------------------------------- */

.block-fullwidth {
   padding-top: 0;
   padding-bottom: 0;
   background: rgba(100, 100, 100, 0.1);
}

.block-fullwidth .single-image {
   width: 100%;
   overflow: hidden;
   position: relative;
}

.block-fullwidth .single-image::before {
   content: "";
   display: block;
   padding-top: 66%;
}

.block-fullwidth .single-image .overlay-image {
   height: 120%;
   top: -10%;
}

.block-fullwidth .text-overlay {
   display: flex;
   align-items: center;
   justify-content: center;
}

.block-fullwidth .text-overlay h2 {
   margin: 0;
   text-align: center;
}

@media screen and (max-width: 540px) {
   .block-fullwidth .single-image::before {
      padding-top: 100%;
   }
}

/* ------------------------- Case - Block: Devices -------------------------------------------------- */

.block-device .overlay-device-image {
   width: 100%;
   position: relative;
}

.block-device .overlay-device-image::before {
   content: "";
   display: block;
   padding-top: 56.8%;
}

.block-device .single-image {
   width: 100%;
   background: rgba(100, 100, 100, 0.1);
   overflow: hidden;
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
}

.block-device .single-image::before {
   content: "";
   display: block;
   padding-top: 62.5%;
}

.block-device .single-image .parallax-image-wrap {
   width: 100%;
   position: absolute;
   top: 50%;
   transform: translateY(-50%);
}

.block-device .single-image .image-wrap img {
   width: 100%;
}

.block-device .overlay-top {
   position: absolute;
   object-fit: contain;
   position: absolute;
   top: 0;
   height: unset;
}

/* Device MBP 16 Lower */

.block-device .device-mbp16lower {
   padding-left: calc(var(--container-padding) / 2);
   padding-right: calc(var(--container-padding) / 2);
}

.block-device .device-mbp16lower .single-image {
   width: 79.5%;
   top: 45.3%;
}

@media screen and (max-width: 540px) {
   .block-device .device-mbp16lower {
      padding-left: 0;
      padding-right: 0;
   }
}

/* Device MBP 15 */

.block-device .device-mbp15 .overlay-device-image::before {
   content: "";
   display: block;
   padding-top: 50.365%;
}

.block-device .device-mbp15 {
   padding-left: calc(var(--container-padding) / 2);
   padding-right: calc(var(--container-padding) / 2);
}

.block-device .device-mbp15 .single-image {
   width: 74.4%;
   left: 49.95%;
   top: 47.3%;
   border-radius: 5px 5px 0 0;
}

@media screen and (max-width: 540px) {
   .block-device .device-mbp15 {
      padding-left: 0;
      padding-right: 0;
   }
}

/* Device MacPro */

.block-device .device-macpro .overlay-device-image::before {
   content: "";
   display: block;
   padding-top: 85.5%;
}

.block-device .device-macpro {
   padding-left: calc(var(--container-padding) / 1);
   padding-right: calc(var(--container-padding) / 1);
}

.block-device .device-macpro video.overlay,
.block-device .device-macpro img.overlay {
   object-position: center top;
}

.block-device .device-macpro .single-image {
   width: 98.7%;
   top: 33.4%;
}

.block-device .device-macpro .single-image::before {
   padding-top: 57%;
}

@media screen and (max-width: 540px) {
   .block-device .device-macpro {
      padding-left: 0;
      padding-right: 0;
   }
}

/* Device MacPro Higher */

.block-device .device-macprohigher .overlay-device-image::before {
   content: "";
   display: block;
   padding-top: 85.5%;
}

.block-device .device-macprohigher {
   padding-left: calc(var(--container-padding) / 1);
   padding-right: calc(var(--container-padding) / 1);
}

.block-device .device-macprohigher .single-image {
   width: 98.8%;
   top: 37%;
}

@media screen and (max-width: 540px) {
   .block-device .device-macprohigher {
      padding-left: 0;
      padding-right: 0;
   }
}


/* Device No Device */

.block-device .device-nodevice .single-image {
   position: relative;
   top: unset;
   left: unset;
   transform: translate(0, 0);
}

.block-device .device-nodevice {
   padding-left: calc(var(--container-padding) / 1);
   padding-right: calc(var(--container-padding) / 1);
}

@media screen and (max-width: 540px) {
   .block-device .device-nodevice {
      padding-left: 0;
      padding-right: 0;
   }
}

/* Device iPad Pro */

.block-device .device-ipadpro .overlay-device-image::before {
   content: "";
   display: block;
   padding-top: 63.7%;
}

.block-device .device-ipadpro {
   padding-left: calc(var(--container-padding) / 1.25);
   padding-right: calc(var(--container-padding) / 1.25);
}

.block-device .device-ipadpro .single-image {
   width: 97%;
   top: 50%;
   border-radius: 2.5%/4%;
   left: 50.1%;
}

.block-device .device-ipadpro .overlay-pencil {
   height: 60%;
   width: auto;
   left: 71%;
   top: 51%;
}

@media screen and (max-width: 540px) {
   .block-device .device-ipadpro {
      padding-left: 0;
      padding-right: 0;
   }
}



/* ------------------------- Case - Block: Mobile Double -------------------------------------------------- */

.block-mobile-devices {
   padding: 0;
   overflow: hidden;
}

.block-mobile-devices .container.block-padding-sides {
   padding: 0 var(--container-padding);
}

.block-mobile-devices .flex-col {
   width: 33.333%;
   padding-top: var(--section-padding);
   display: flex;
   justify-content: center;
}

.block-mobile-devices .flex-col.block-padding-bottom {
   padding-bottom: var(--section-padding);
}

.block-mobile-devices .device {
   width: 55%;
   position: relative;
   display: flex;
   justify-content: center;
}

.block-mobile-devices .overlay-device-image {
   width: 100%;
   position: relative;
}

.block-mobile-devices .overlay-device-image::before {
   content: "";
   display: block;
   padding-top: 202%;
}

.block-mobile-devices .single-image {
   width: 90.2%;
   background: rgba(100, 100, 100, 0.1);
   overflow: hidden;
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   border-radius: 10%/5%;
}

.block-mobile-devices .single-image::before {
   content: "";
   display: block;
   padding-top: 216%;
}

.block-mobile-devices .device-nodevice .single-image,
.block-mobile-devices .device-nodevicerounded .single-image {
   width: 100%;
}

@media screen and (max-width: 540px) {
   .block-mobile-devices .container.block-padding-sides {
      padding: 0;
   }
}

/* Device No Device */

.block-mobile-devices .device-nodevice .single-image {
   position: relative;
   top: unset;
   left: unset;
   transform: translate(0, 0);
   border-radius: 0;
   background-color: transparent;
}

/* Device No Device Rounded */

.block-mobile-devices .device-nodevicerounded .single-image {
   position: relative;
   top: unset;
   left: unset;
   transform: translate(0, 0);
   background-color: transparent;
   border-radius: 10%/5%;
}

/* Amount 3 */

.block-mobile-devices .container.block-padding-sides.amount-3 .device {
   width: 68%;
}

@media screen and (max-width: 540px) {
   .block-mobile-devices .container.block-padding-sides.amount-3 .device {
      width: 76%;
   }
}

/* Amount 2 */

.block-mobile-devices .amount-2 .flex-col {
   width: 50%;
}

.block-mobile-devices .amount-2 .device {
   width: 40%;
}

.block-mobile-devices .container.block-padding-sides.amount-2 {
   padding: 0 calc(var(--container-padding) * 1.5);
}

.block-mobile-devices .container.block-padding-sides.amount-2 .device {
   width: 55%;
}

@media screen and (max-width: 540px) {
   .block-mobile-devices .container.block-padding-sides.amount-2 {
      padding: 0 calc(var(--container-padding) * 1);
   }

   .block-mobile-devices .container.block-padding-sides.amount-2 .device {
      width: 80%;
   }
}

/* Amount 1 */

.block-mobile-devices .amount-1 .flex-col {
   width: 100%;
}

.block-mobile-devices .amount-1 .device {
   width: 30%;
}

@media screen and (max-width: 540px) {
   .block-mobile-devices .amount-1 .device {
      width: 60%;
   }
}


/* ------------------------- Case - Block: Screenshot -------------------------------------------------- */

.block-screenshot .row {
   padding: 0 var(--container-padding);
}

.block-screenshot .device {
   position: relative;
   display: flex;
   justify-content: center;
}

.block-screenshot .single-image {
   width: 100%;
   background: rgba(100, 100, 100, 0.1);
}

.block-screenshot .single-image img {
   width: 100%;
}

.block-screenshot .single-image video {
   width: 100%;
}

.block-screenshot .overlay-device-image {
   width: 100%;
   position: absolute;
   top: 0;
   left: 50%;
   transform: translate(-50%, 0);
}

.block-screenshot .overlay-device-image::before {
   content: "";
   display: block;
   padding-top: 56.8%;
}

@media screen and (max-width: 540px) {
   .block-screenshot .row {
      padding: 0;
   }
}

/* Device MBP 16 Lower */

.block-screenshot .device-mbp16 .single-image {
   width: 79.2%;
}

.block-screenshot .device-mbp16 {
   padding-left: calc(var(--section-padding) / 2);
   padding-right: calc(var(--section-padding) / 2);
}

.block-screenshot .device-mbp16 .overlay-device-image {
   transform: translate(-50%, -1.7%);
}


/* ------------------------- Case - Block: Button -------------------------------------------------- */

.block-button .container .flex-col {
   z-index: 1;
}

.block-button .row {
   flex-wrap: nowrap;
   justify-content: center
}

.block-button .row .flex-col {
   width: unset;
   margin-right: calc(var(--gap-padding) / 2);
}

.block-button .row .flex-col:last-child {
   margin-right: 0;
}
/* Custom Frame Image for Go Trip */
.custom-frame-image .single-image {
   width: 100%;
   display: block;
   background: var(--color-lightgray);
   overflow: hidden;
   position: relative;
   border-radius: 1vw;
}

.services-grid-custom-section {
   background: var(--color-lightergray) !important;
}

.services-grid-custom-section .flex-col p {
   margin-bottom: 0;
}

.custom-frame-image .single-image::before {
   content: "";
   display: block;
   padding-top: 90%;
}

.custom-frame-image .single-image .overlay:nth-child(1) {
   background: url("../img/ff.png") center center no-repeat;
   background-size: cover;
   height: 130%;
   top: -15%;
   width: 100%;
   position: absolute;
}

@media screen and (max-width: 720px) {
   .custom-frame-image .single-image::before {
      padding-top: 70%;
   }
}

.layout-foundations-image .single-image .overlay:nth-child(1) {
   background: url("../img/work/go-trip/Layout-Foundations.png") center center no-repeat !important;
   background-size: cover !important;
}

.color-strategy-image .single-image .overlay:nth-child(1) {
   background: url("../img/work/go-trip/Color-Strategy-Visual-Identity-v2.png") center center no-repeat !important;
   background-size: cover !important;
}

.liquid-glass-system-image .single-image .overlay:nth-child(1) {
   background: url("../img/work/go-trip/Liquid-Glass-System.png") center center no-repeat !important;
   background-size: cover !important;
}

/* --- Label Colors: Two-image responsive layout --- */
.label-colors-row {
   display: flex;
   flex-direction: row;
   gap: clamp(1em, 2vw, 2em);
   align-items: stretch;
}

.label-colors-row .flex-col {
   flex: 1 1 0;
   min-width: 0;
}

.label-colors-image .single-image::before,
.label-colors-image-2 .single-image::before {
   content: "";
   display: block;
   padding-top: 90%;
}

.label-colors-image .single-image .overlay:nth-child(1) {
   background: url("../img/work/go-trip/Label-Colors-img.png") center center no-repeat !important;
   background-size: cover !important;
   height: 130%;
   top: -15%;
   width: 100%;
   position: absolute;
}

.label-colors-image-2 .single-image .overlay:nth-child(1) {
   background: url("../img/work/go-trip/Label-Colors.png") center center no-repeat !important;
   background-size: cover !important;
   height: 130%;
   top: -15%;
   width: 100%;
   position: absolute;
}

/* Tablet */
@media screen and (max-width: 1024px) {
   .label-colors-image .single-image::before,
   .label-colors-image-2 .single-image::before {
      padding-top: 80%;
   }
}

/* Mobile: stack vertically */
@media screen and (max-width: 720px) {
   .label-colors-row {
      flex-direction: column;
   }
   .label-colors-image .single-image::before,
   .label-colors-image-2 .single-image::before {
      padding-top: 70%;
   }
}


.background-foundations-image,
.system-utility-colors-image,
.neutral-grays-colors-image,
.typography-image,
.liquid-glass-system-image {
   width: 90%;
   margin: 0 auto 5vh auto;
}

.background-foundations-image .single-image .overlay:nth-child(1) {
   background: url("../img/work/go-trip/Background-Foundations-v2.png") center center no-repeat !important;
   background-size: cover !important;
   height: 130% !important;
   top: -15% !important;
   width: 100% !important;
   position: absolute !important;
}

.system-utility-colors-image .single-image .overlay:nth-child(1) {
   background: url("../img/work/go-trip/System Utility  Colors.png") center center no-repeat !important;
   background-size: cover !important;
   height: 130% !important;
   top: -15% !important;
   width: 100% !important;
   position: absolute !important;
}

.neutral-grays-colors-image .single-image .overlay:nth-child(1) {
   background: url("../img/work/go-trip/Neutral Grays  Colors.png") center center no-repeat !important;
   background-size: cover !important;
   height: 130% !important;
   top: -15% !important;
   width: 100% !important;
   position: absolute !important;
}

.typography-image .single-image .overlay:nth-child(1) {
   background: url("../img/work/go-trip/font img.png") center center no-repeat !important;
   background-size: cover !important;
   height: 130% !important;
   top: -15% !important;
   width: 100% !important;
   position: absolute !important;
}

.background-foundations-image .single-image::before,
.system-utility-colors-image .single-image::before,
.neutral-grays-colors-image .single-image::before,
.typography-image .single-image::before {
   padding-top: 52% !important; /* Base layout */
}

@media screen and (max-width: 1024px) {
   .background-foundations-image,
   .system-utility-colors-image,
   .neutral-grays-colors-image,
   .typography-image {
      width: 100%;
   }
   .background-foundations-image .single-image::before,
   .system-utility-colors-image .single-image::before,
   .neutral-grays-colors-image .single-image::before,
   .typography-image .single-image::before {
      padding-top: 55% !important;
   }
}

@media screen and (max-width: 720px) {
   .background-foundations-image,
   .system-utility-colors-image,
   .neutral-grays-colors-image,
   .typography-image {
      width: 100%;
   }
   .background-foundations-image .single-image::before,
   .system-utility-colors-image .single-image::before,
   .neutral-grays-colors-image .single-image::before {
      padding-top: 60% !important;
   }
}

/* Floating Side SVGs */
.floating-decor-left,
.floating-decor-right {
   position: absolute;
   top: 50%;
   transform: translateY(-50%);
   height: 40vh; /* Scale with viewport height */
   max-height: 400px;
   min-height: 150px;
   width: auto;
   z-index: 100;
   pointer-events: none; /* Allows clicking through them */
}

.floating-decor-left {
   left: 0;
}

.floating-decor-right {
   right: 0;
}

/* Scale down on tablets */
@media screen and (max-width: 1280px) {
   .floating-decor-left,
   .floating-decor-right {
      height: 28vh;
      max-height: 280px;
   }
}

@media screen and (max-width: 1023px) {
   .floating-decor-left,
   .floating-decor-right {
      height: 20vh;
      max-height: 200px;
      min-height: 100px;
   }
}

/* Hide on small phones */
@media screen and (max-width: 600px) {
   .floating-decor-left,
   .floating-decor-right {
      display: none;
   }
}

/* Typography Specs Section */
.typography-grid {
   display: grid;
   grid-template-columns: repeat(4, 1fr);
   gap: 0;
   margin-top: 5vh;
}

.typography-grid-6 {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 0;
   margin-top: 5vh;
}

.typo-col {
   border-right: 1px solid var(--color-border);
   padding: 0 2vw;
}

.theme-dark .typo-col {
   border-right: 1px solid var(--color-border-light);
}

.typo-col:first-child {
   padding-left: 0;
}

.typo-col:last-child {
   border-right: none;
   padding-right: 0;
}

/* 3-column layout for typography-grid-6: fix right borders per row */
.typography-grid-6 .typo-col:nth-child(3n) {
   border-right: none;
   padding-right: 0;
}
.typography-grid-6 .typo-col:nth-child(3n+1) {
   padding-left: 0;
}
/* Row separator between first and second row */
.typography-grid-6 .typo-col:nth-child(-n+3) {
   border-bottom: 1px solid var(--color-border);
   padding-bottom: 4vh;
}
.typography-grid-6 .typo-col:nth-child(n+4) {
   padding-top: 4vh;
}
.theme-dark .typography-grid-6 .typo-col:nth-child(-n+3) {
   border-bottom: 1px solid var(--color-border-light);
}

.typo-col h5 {
   margin-bottom: 2vh;
   font-weight: 500;
   opacity: 1;
   color: var(--color-text);
}

.typo-col h4 {
   margin-bottom: 2vh;
}

.typo-col .stripe {
   margin: 2vh 0;
}

.typo-col p.typo-use-for {
   font-weight: 500;
   margin-bottom: 1vh;
   color: var(--color-text);
}

.typo-col p.typo-desc {
   color: var(--color-text);
   margin-bottom: 3vh;
   min-height: 10vh; /* align stripes */
}

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

.typo-specs li {
   margin-bottom: 1vh;
   color: var(--color-text);
}

.typo-specs li span {
   font-weight: 500;
   color: var(--color-text);
   display: inline-block;
   width: 6vw;
}

/* === Tablet / iPad mini Portrait and Landscape (769px – 1023px) === */
@media screen and (max-width: 1023px) {
   .typography-grid {
      grid-template-columns: repeat(2, 1fr);
      row-gap: 0;
   }
   .typography-grid-6 {
      grid-template-columns: repeat(2, 1fr);
      row-gap: 0;
   }
   .typo-col {
      padding: 0 4vw;
   }
   .typo-col:nth-child(2n) {
      border-right: none;
      padding-right: 0;
   }
   .typo-col:nth-child(2n+1) {
      padding-left: 0;
      border-right: 1px solid var(--color-border);
   }
   .theme-dark .typo-col:nth-child(2n+1) {
      border-right: 1px solid var(--color-border-light);
   }
   .typo-specs li span {
      width: 12vw;
   }
   .typo-col p.typo-desc {
      min-height: auto;
   }
}

/* === Small Mobile Portrait (≤ 480px) === */
@media screen and (max-width: 480px) {
   .typography-grid,
   .typography-grid-6 {
      grid-template-columns: 1fr;
   }
   .typo-col {
      padding: 0 !important;
      border-right: none !important;
   }
   .typo-col:nth-child(2n+1) {
      border-right: none !important;
   }
   .typo-specs li span {
      width: 28vw;
   }
}

/* =========================================
   Surface Dynamics Styles
   ========================================= */
.surface-dynamics-section {
   padding-bottom: 15vh;
}

/* Transparency Image */
.sd-transparency-image-wrap {
   margin-top: 5vh;
}

.sd-transparency-image img {
   width: 100%;
   height: auto;
   border-radius: 12px;
   box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.theme-dark .sd-transparency-image img {
   box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.surface-dynamics-section .stripe {
   width: 100%;
   height: 1px;
   background: var(--color-border);
   margin-bottom: 2vh;
}

/* Shadow Cards */
.sd-shadow-cards-wrap {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 3vw;
   margin-top: 5vh;
}

.sd-shadow-card {
   display: flex;
   flex-direction: column;
}

.sd-shadow-preview {
   width: 100%;
   aspect-ratio: 16/9;
   background: #F4F4F4;
   border-radius: 4px;
   margin-bottom: 3vh;
   transition: transform 0.4s ease;
}

.theme-dark .sd-shadow-preview {
   background: #1e1e1e;
}

.sd-shadow-subtle {
   box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}
.sd-shadow-medium {
   box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}
.sd-shadow-strong {
   box-shadow: 0 8px 16px rgba(0,0,0,0.25);
}

.sd-shadow-card h5 {
   margin-bottom: 1.5vh;
   font-weight: 500;
}

.sd-shadow-card p {
   font-size: 16px;
   line-height: 1.5;
   margin-bottom: 3vh;
   opacity: 0.8;
}

.sd-shadow-specs {
   list-style: none;
   padding: 0;
   margin-top: auto;
   border-top: 1px solid var(--color-border);
   padding-top: 2vh;
}

.sd-shadow-specs li {
   font-size: 13px;
   margin-bottom: 5px;
   color: var(--color-text);
   opacity: 0.6;
   font-family: monospace;
}

.sd-shadow-specs li span {
   color: var(--color-text);
   opacity: 1;
}

/* Closing Quote */
.sd-closing-quote {
   margin-top: 15vh;
   text-align: center;
}

.sd-closing-quote p {
   font-size: 20px;
   line-height: 1.6;
   max-width: 800px;
   margin: 4vh auto 0 auto;
   font-weight: 500;
   color: var(--color-text);
   opacity: 0.9;
   text-transform: uppercase;
   letter-spacing: 0.02em;
}

.surface-dynamics-section .stripe {
   width: 100%;
   height: 1px;
   background: var(--color-border);
   margin-bottom: 2vh;
}

/* Background tones for cells */
.sd-cell:nth-child(5n+1) .sd-overlay { background-color: rgba(255,255,255, var(--sd-op)); }
.sd-cell:nth-child(5n+2) .sd-overlay { background-color: rgba(209,213,219, var(--sd-op)); }
.sd-cell:nth-child(5n+3) .sd-overlay { background-color: rgba(107,114,128, var(--sd-op)); }
.sd-cell:nth-child(5n+4) .sd-overlay { background-color: rgba(55,65,81, var(--sd-op)); }
.sd-cell:nth-child(5n+5) .sd-overlay { background-color: rgba(0,0,0, var(--sd-op)); }

/* Responsive */
@media screen and (max-width: 1023px) {
   .sd-transparency-grid {
      grid-template-columns: repeat(5, 1fr);
   }
   .sd-shadow-cards-wrap {
      grid-template-columns: 1fr;
      gap: 5vh;
   }
}

@media screen and (max-width: 768px) {
   .sd-transparency-image-wrap {
      margin-top: 3vh;
   }
}

/* ------------------------- Tablet portrait (iPad Pro 1024 etc.) -------------------------------------------------- */

@media screen and (min-width: 768px) and (max-width: 1024px) {

   /* hide the secondary description text in service cards */
   .service-card-text {
      display: none;
   }

   /* bigger, touch-friendly nav bar links */
   .nav-bar .links-wrap .btn-link .btn-click {
      height: 3.6em;
   }

   .nav-bar .links-wrap .btn-link .btn-text {
      padding: 0 1.1em;
   }

   .nav-bar .links-wrap .btn-link .btn-text-inner {
      font-size: 1.35em;
   }

   /* slightly smaller card grids */
   .our-services .services-cards,
   .testimonials .testi-cards {
      max-width: 86%;
      margin-left: auto;
      margin-right: auto;
   }

   /* Testimonials: keep the 3 cards side by side, just smaller */
   .testimonials .testi-cards {
      grid-template-columns: repeat(3, 1fr);
      gap: clamp(10px, 1.8vw, 20px);
   }

   .testimonials .testi-card-body {
      padding: 46px 16px 20px;
   }

   .testimonials .testi-quote {
      font-size: 13px;
      letter-spacing: .4px;
   }

   .testimonials .testi-name {
      font-size: 18px;
   }

   .testimonials .testi-role {
      font-size: 15px;
   }
}

/* ------------------------- Mobile (phones) -------------------------------------------------- */

@media screen and (max-width: 540px) {

   /* Service cards: horizontal layout like testimonials — image right, text left, no secondary text */
   .our-services .services-cards {
      max-width: 24em;
      grid-auto-rows: auto;
   }

   .service-card {
      aspect-ratio: 16 / 10;
   }

   /* image anchored to the right so it sits clear of the gradient */
   .service-card-media {
      display: block;
      position: absolute;
      top: 0;
      right: 0;
      left: auto;
      bottom: 0;
      width: 70%;
      height: 100%;
      aspect-ratio: auto;
   }

   .service-card-media img {
      height: 100%;
      object-position: top;
   }

   /* drop the secondary description text */
   .service-card-text {
      display: none;
   }

   .service-card-body {
      position: relative;
      z-index: 2;
      width: 64%;
      height: 100%;
      margin-top: 0;
      padding: 16px 14px 16px 20px;
      gap: 12px;
      align-items: flex-start;
      justify-content: center;
      text-align: left;
      /* horizontal gradient: cream (text side) -> transparent (toward image) */
      background: linear-gradient(90deg, rgb(255, 253, 238) 55%, rgba(153, 152, 142, 0) 99%);
   }

   .service-card-title {
      font-size: 15px;
      line-height: 1.25;
   }

   /* center the title; pin the button to the bottom */
   .service-card-btn {
      position: absolute;
      left: 20px;
      bottom: 16px;
      margin: 0;
   }

   /* Testimonials top: title on top, then image (right) + secondary text (left) */
   .testimonials .testi-top {
      display: grid;
      grid-template-columns: 1fr 1fr;
      column-gap: 1.2em;
      row-gap: 1em;
      align-items: center;
   }

   .testimonials .testi-head {
      display: contents;
   }

   .testimonials .testi-title {
      grid-column: 1 / -1;
      grid-row: 1;
   }

   .testimonials .testi-sub {
      grid-column: 1;
      grid-row: 2;
      align-self: center;
   }

   .testimonials .testi-deco {
      grid-column: 2;
      grid-row: 2;
      width: 100%;
      max-width: none;
      margin-top: 0;
   }

   /* Testimonials cards: horizontal layout — image (right) + text (left) */
   .testimonials .testi-cards {
      max-width: 24em;
      grid-auto-rows: auto;
   }

   .testi-card {
      border-radius: 24px;
      aspect-ratio: 16 / 10;
   }

   /* image anchored to the right so faces sit clear of the gradient */
   .testi-card-media {
      position: absolute;
      top: 0;
      right: 0;
      left: auto;
      bottom: 0;
      width: 70%;
      height: 100%;
      aspect-ratio: auto;
   }

   .testi-card-media img {
      height: 100%;
      object-position: top;
   }

   .testi-card-body {
      position: relative;
      z-index: 2;
      width: 64%;
      height: 100%;
      margin-top: 0;
      padding: 16px 14px 16px 20px;
      gap: 8px;
      align-items: flex-start;
      justify-content: center;
      text-align: left;
      /* gradient now horizontal: cream (text side) -> transparent (toward image) */
      background: linear-gradient(90deg, rgb(255, 253, 238) 55%, rgba(153, 152, 142, 0) 99%);
   }

   .testi-author {
      margin-top: 0;
   }

   .testi-quote {
      font-size: 11px;
      line-height: 1.4;
   }

   .testi-name {
      font-size: 15px;
   }

   .testi-role {
      font-size: 12px;
   }

   /* Footer: drop the portrait image on mobile */
   .footer .footer-hero-media {
      display: none;
   }

   /* Footer: tidy spacing between the hero text and the round CTA button */
   .footer .container.medium .row:nth-child(1) {
      padding-bottom: calc(var(--section-padding) * .4);
   }

   .footer .container.medium .row:nth-child(2) {
      padding-bottom: calc(var(--section-padding) * .6);
   }

   .footer .container.medium .row:nth-child(2) .btn-fixed {
      position: static;
      transform: none;
      display: flex;
      justify-content: center;
      margin-top: 1.5em;
   }

   .footer .btn-round .btn-click {
      width: clamp(11em, 42vw, 13em);
      height: clamp(11em, 42vw, 13em);
   }
}

/* ==========================================================================
   FAQ section (AEO / GEO — direct answers for search & AI engines)
   ========================================================================== */
.faq-section {
   background: #FFFDED;
   padding: clamp(3.5em, 8vw, 7em) 0;
}

.faq-eyebrow {
   font-family: 'Dennis Sans', sans-serif;
   text-transform: uppercase;
   letter-spacing: .12em;
   font-size: .72em;
   color: #F9460E;
   margin: 0 0 .7em;
}

.faq-title {
   font-family: 'Cairo', sans-serif;
   font-weight: 900;
   font-size: clamp(1.5em, 2.6vw, 2em);
   line-height: 1.2;
   color: #090909;
   margin: 0 0 1.2em;
}

.faq-list {
   list-style: none;
   margin: 0;
   padding: 0;
   border-top: 1px solid rgba(9, 9, 9, .14);
}

.faq-item {
   padding: 1.5em 0;
   border-bottom: 1px solid rgba(9, 9, 9, .14);
}

.faq-q {
   font-family: 'Cairo', sans-serif;
   font-weight: 700;
   font-size: clamp(.92em, 1.3vw, 1.12em);
   line-height: 1.35;
   color: #090909;
   margin: 0 0 .45em;
}

.faq-a {
   font-size: clamp(.82em, 1.05vw, .95em);
   line-height: 1.6;
   color: rgba(9, 9, 9, .62);
   margin: 0;
   max-width: 48em;
}

/* ==========================================================================
   Arabic / RTL  (applied when the device language is Arabic — body.lang-ar + <html dir="rtl">)
   ========================================================================== */

/* Use the Arabic-capable font for the internal content (loading screen keeps its own font) */
body.lang-ar main,
body.lang-ar main p,
body.lang-ar main h1, body.lang-ar main h2, body.lang-ar main h3,
body.lang-ar main h4, body.lang-ar main h5, body.lang-ar main h6,
body.lang-ar main a, body.lang-ar main span, body.lang-ar main li,
body.lang-ar main div, body.lang-ar main .btn-text-inner {
   font-family: 'Cairo', sans-serif !important;
}

/* social icon sits on the other side of the label */
body.lang-ar .socials .social-icon {
   margin-right: 0;
   margin-left: .5em;
}

/* "Our Process" bullet list flips to the right side */
body.lang-ar .process-list li {
   padding-left: 0;
   padding-right: 1.5em;
}

body.lang-ar .process-list li::before {
   left: auto;
   right: 0;
}

/* contact circle: keep the arrow visually consistent */
body.lang-ar .case-overview-contact .arrow svg {
   transform: scaleX(-1);
}

/* service-card details arrow mirrors */
body.lang-ar .service-card-btn .service-card-arrow {
   transform: scaleX(-1);
}

/* Main footer: keep the hero block (image + text + CTA circle) positioned exactly
   like the English/LTR layout — only the text content is Arabic */
body.lang-ar .footer .footer-hero-row,
body.lang-ar .footer .container.medium .row:nth-child(2) {
   direction: ltr;
}

/* the text beside the image still reads right-to-left */
body.lang-ar .footer .footer-hero-text {
   direction: rtl;
   text-align: right;
}

/* Contact buttons under the circle: icon on the left + left-aligned, like English
   (Arabic text inside still renders correctly via the bidi algorithm) */
body.lang-ar .footer .container.medium .row:nth-child(3),
body.lang-ar .footer-contacts {
   direction: ltr;
}

/* ---- Arabic RTL fixes specific to mobile (phones) ---- */
@media screen and (max-width: 540px) {

   /* Keep the logo on the left, clear of the fixed hamburger button on the right
      (RTL would otherwise push the logo to the right and overlap the burger) */
   body.lang-ar .nav-bar {
      direction: ltr;
   }

   /* Service & testimonial cards keep their English horizontal layout
      (cream text panel on the left, image on the right); only the text is Arabic.
      Without this, RTL moves the text panel over the right-anchored image. */
   body.lang-ar .our-services .service-card,
   body.lang-ar .our-services .service-card-body,
   body.lang-ar .testimonials .testi-card,
   body.lang-ar .testimonials .testi-card-body {
      direction: ltr;
   }
}
