/*
Theme Name: DC Constructions
Theme URI: https://example.com/
Author: Your Name
Author URI: https://example.com/
Description: Custom theme for DC Constructions company.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: dc-constructions
*/

* {
  /* outline: 1px solid rgba(255, 0, 0, 0.1); */
}

:root {
  --container-padding: 20px;

  --container-max-width-sm: 540px;
  --container-max-width-md: 720px;
  --container-max-width-lg: 960px;
  --container-max-width-xl: 1200px;
  --container-max-width-xxl: 1400px;

  /* Breakpoints */
  --breakpoint-xs: 480px;
  --breakpoint-sm: 768px;
  --breakpoint-md: 992px;
  --breakpoint-lg: 1200px;
  --breakpoint-xl: 1400px;

  --font-primary: 'Geologica', sans-serif;
  --font-weight-regular: 100;
  --font-weight-bold: 700;
  --font-size-base: 1.6rem; /* 14px */
  --line-height-base: 1.6;

  --font-size-xs: 1.4rem; /* 12px */
  --font-size-sm: 1.6rem; /* 14px */
  --font-size-md: 1.8rem; /* 16px */
  --font-size-lg: clamp(1.6rem, 3vw, 2rem); /* 18px */
  --font-size-xl: clamp(1.8rem, 1.8rem + 2vw, 2.4rem); /* 20px */
  --font-size-xxl: clamp(2rem, 5vw, 2.8rem); /* 24px */
  --font-size-xxxl: 3.6rem; /* 30px */

  /* Fluid heading font-sizes */
  --font-size-h1: clamp(3.6rem, 6vw, 5.4rem); /* ~30px to 50px */
  --font-size-h2: clamp(2.8rem, 5vw, 5rem); /* ~25px to 40px */
  --font-size-h3: clamp(2.4rem, 4vw, 3.8rem); /* ~20px to 32px */
  --font-size-h4: clamp(1.8rem, 3.5vw, 2.8rem); /* ~18px to 28px */
  --font-size-h5: clamp(1.6rem, 3vw, 2rem); /* ~16px to 24px */
  --font-size-h6: clamp(1.4rem, 2.5vw, 1.8rem); /* ~14px to 20px */
  --font-size-big-text: clamp(2rem, 5vw + 1rem, 3rem); /* ~24px to 36px */
  --font-size-medium-text: clamp(1.4rem, 3vw + 0.15rem, 1.8rem); /* ~14px to 20px */

  /* Colors */
  /* --color-primary: #f26722; */
  --color-primary: rgb(255, 108, 11);
  --color-dark: #000000;

  --color-white: #ffffff;
  --color-grey-light: #f5f5f5;
  --color-text-base: var(--color-dark);
  --color-text-grey: #717171;

  --bg-light: #fff;
  --bg-dark: #000000;
  --bg-grey: #f6f6f6;
  --bg-grey-hov: #dcdcdc;
  --bg-primary: #f47333;
  --bg-primary-dark: #de5815;
  --bg-secondary: #111;

  --border-grey: rgba(52, 52, 52, 0.2);

  /* Spacing (Rounded System) */
  --spacing-xs: 1rem; /* 10px */
  --spacing-sm: 2rem; /* 20px */
  --spacing-md: 3rem; /* 30px */
  --spacing-lg: 4rem; /* 40px */
  --spacing-xl: 5rem; /* 50px */

  --padding: 2.5rem;
  --padding--xs: 2.5rem;
  --padding--sm: 3.5rem;
  --padding--md: 5rem;
  --padding--lg: 7.5rem;
  --padding--xl: 7.5rem;
  --padding--xxl: 12.5rem;

  --default-gap-xs: 2.5rem;
  --default-gap-sm: 3.5rem;
  --default-gap: 5rem;

  --clip-path-l-sm: polygon(30px 0%, 100% 0, 100% 100%, 0 100%, 0% 25px);
  --clip-path-l-md: polygon(50px 0%, 100% 0, 100% 100%, 0 100%, 0% 35px);
  --clip-path-l-lg: polygon(80px 0%, 100% 0, 100% 100%, 0 100%, 0% 55px);

  --clip-path-r-sm: polygon(0 0, calc(100% - 30px) 0, 100% 25px, 100% 100%, 0 100%);
  --clip-path-r-md: polygon(0 0, calc(100% - 50px) 0, 100% 35px, 100% 100%, 0 100%);
  --clip-path-r-lg: polygon(0 0, calc(100% - 80px) 0, 100% 55px, 100% 100%, 0 100%);

  /* Container Padding */
  --pad-y-md: clamp(2.5rem, 3vw + 1rem, 5rem);
  --pad-y-lg: clamp(3rem, 4vw + 1rem, 6rem);
  --pad-y-xl: clamp(3.5rem, 7vw + 2rem, 12rem);
  --pad-y-xxl: clamp(5rem, 10vw + 2rem, 16rem);

  /* Buttons */
  --btn-bg: rgba(255, 255, 255, 0.15);
  --btn-text: #ffffff;
  --btn-text-dark: #000000;
  --btn-hover-bg: rgba(255, 255, 255, 0.25);
  --btn-border: rgba(0, 0, 0, 1);
  --btn-blur: blur(7px);
  --btn-radius: 0px;
  --btn-padding: 1.15rem 3.5rem;
  --btn-font-size: 1.4rem;
  --btn-font-weight: 400;

  /* Transitions */
  --transition-1: all 0.3s ease-in-out;
  --transition-2: all 0.4s ease-in-out;

  --clip-bg: inset(0 0 0 100%);
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  font-weight: var(--font-weight-regular);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  overflow-x: hidden;
  color: var(--color-text-base);
  background-color: var(--color-white);
}

a {
  /* color: var(--bg-primary-dark); */
  color: var(--color-dark);
  text-decoration: none;
}
body a:visited {
  color: inherit;
}
a:hover {
  color: var(--bg-primary-dark);
}

/* --------------------------------------- */
/* BASIC STYLES */

h1 {
  line-height: 1.3;
  font-size: var(--font-size-h1);
  letter-spacing: -1px;
}

h2 {
  font-size: var(--font-size-h2);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.85px;
}

h3,
.heading-3 {
  font-size: var(--font-size-h3);
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.75px;
}
@media (max-width: 767.98px) {
  h3 {
    letter-spacing: -0.5px;
  }
}

h4,
.heading-4 {
  font-size: var(--font-size-h4);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.5px;
}

h5 {
  font-size: var(--font-size-h5);
  line-height: 1.5;
}

h6 {
  font-size: var(--font-size-h6);
  line-height: 1.4;
}

p {
  /* font-size: var(--font-size-base); */
  /* font-size: var(--font-size-medium-text); */
  line-height: var(--line-height-base);
  font-weight: var(--font-weight-regular);
}

.text-md {
  font-size: var(--font-size-md);
}

/* PADDINGS */
.pad-y-lg {
  padding-block: var(--pad-y-lg);
}
.pad-y-md {
  padding-block: var(--pad-y-md);
}
.pad-y-xl {
  padding-block: var(--pad-y-xl);
}
.pad-y-xxl {
  padding-block: var(--pad-y-xxl);
}

.pad-t-md {
  padding-top: var(--pad-y-md);
}
.pad-t-lg {
  padding-top: var(--pad-y-lg);
}
.pad-t-xl {
  padding-top: var(--pad-y-xl);
}
.m-t-xl {
  margin-top: var(--pad-y-xl);
}

.pad-b-md {
  padding-bottom: var(--pad-y-md);
}
.pad-b-lg {
  padding-bottom: var(--pad-y-lg);
}
.pad-b-xl {
  padding-bottom: var(--pad-y-xl);
}
.m-b-xl {
  margin-bottom: var(--pad-y-xl);
}

.px-extra-padding {
  max-width: calc(100% - calc(2 * var(--padding--sm)));
  margin-inline: auto;
}
@media (max-width: 767.98px) {
  .px-extra-padding {
    /* max-width: 100%; */
  }
}

/* MARGINS */
.m-b-lg {
  margin-bottom: clamp(2.5rem, 3vw + 1rem, 5rem);
}
.m-b-xl {
  margin-bottom: clamp(2.5rem, 5vw + 2rem, 7.5rem);
}

/* CLIP PATHS */
.cp-lg,
.cp-lg-left {
  clip-path: polygon(80px 0%, 100% 0, 100% 100%, 0 100%, 0% 55px);
}
.cp-lg-right {
  clip-path: polygon(0 0, calc(100% - 55px) 0, 100% 55px, 100% 100%, 0 100%);
}

.cp-img-left-sm {
  clip-path: polygon(30px 0%, 100% 0, 100% 100%, 0 100%, 0% 25px);
}
.cp-img-left-md {
  clip-path: polygon(50px 0%, 100% 0, 100% 100%, 0 100%, 0% 35px);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* BORDERS */
.b-t {
  border-top: 1px solid var(--bg-dark);
  padding-top: 2.5rem;
}

/* --------------------------------------- */
/* COMPONENTS */
.section-title {
  position: relative;

  .slider-navigation {
    position: relative;
    width: 5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }
  .slider-navigation .nav-prev,
  .slider-navigation .nav-next {
    position: relative;
    margin-top: unset;
    height: unset;
    inset: unset;
    width: auto;
  }
}
.section-title.--hasNavigation {
  display: flex;
  align-items: center;
  gap: 3.5rem;
}
.section-title.--hasButton {
  display: flex;
  justify-content: space-between;

  .section-title--left {
    display: flex;
    align-items: flex-end;
    gap: 3rem;
  }
}

.swiper-button-next.nav-next:after,
.swiper-button-prev.nav-prev:after {
  font-size: 1.8rem;
  color: var(--color-dark);
}

.toggle-item .toggle-header {
  position: relative;
  padding-block: 1rem;
  margin-bottom: 0;

  .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .icon:before {
    font-size: 2.4rem;
  }
}

/* BANNER DARK CTA */
.dark-cta-section {
  padding-top: var(--pad-y-xl);

  .section-wrapper {
    position: relative;
    /* background-color: var(--bg-dark); */
    background-image: url('/wp-content/uploads/2025/07/dc-branding-5.jpg');
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    /* padding: clamp(5rem, 5vw + 3rem, 12rem) var(--padding--lg); */
    color: var(--color-white);
    clip-path: var(--clip-path-l-lg);

    overflow: hidden;
  }
  .button-arrow {
    position: absolute;
    right: 5rem;
    bottom: 5rem;
    width: 6rem;
  }
  /* .section-wrapper:before {
    content: '';
    position: absolute;
    top: -30%;
    left: 10%;
    width: calc(200px + 15vw);
    height: 150%;
    transform: rotate(80deg);
    background-image: url('/wp-content/uploads/2025/05/dc-line-2.svg');
    background-size: contain;
    background-position: center right;
    background-repeat: no-repeat;
  } */
  .section-title {
    font-size: clamp(1.6rem, 15vw + 1rem, 3.8rem);
    font-weight: 100;
    line-height: 1.5;
    max-width: 800px;
    margin-bottom: 0;
  }
  .section-wrapper .col-1 {
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
    gap: 3.5rem;
  }
  .section-wrapper .col-2 {
    text-align: right;
  }
  .section-wrapper .col-wrapper {
    padding: clamp(5rem, 8.5vw, 17.5rem) var(--padding--lg);
  }

  .cta-links {
    text-align: center;
    padding-top: 3.5rem;
  }
/*  .cta-links a {
    font-size: 1.8rem;
    font-weight: 100;
    color: var(--color-white);
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(7px);
    border-radius: 35px;
    padding: 8px 16px;
  }*/

  .cta-links-2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    padding-top: 3.5rem;
  }
}
@media (max-width: 767.98px) {
  .dark-cta-section .section-wrapper .col-2 {
    text-align: center;
    padding-bottom: 2.5rem;
  }

  .dark-cta-section .section-title {
    font-size: 2rem;
    max-width: 100%;
  }
  .dark-cta-section .button-arrow {
    width: 2.5rem;
  }
  .dark-cta-section .section-wrapper .col-1 {
    text-wrap: balance;
    text-align: center;
  }
  .dark-cta-section .section-wrapper .col-2 {
    text-align: center;
    padding-top: 2.5rem;
  }
  .dark-cta-section .section-wrapper:before {
    background-size: 150%;
    width: 320px;
    left: 5%;
  }

  .dark-cta-section .cta-links-2 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding-bottom: 3.5rem;
  }
  .dark-cta-section .cta-links-2 a {
    width: 100%;
  }
}

/* --------------------------------------- */
/* HEADER  */

.site-header {
  background-color: #fff;
  padding: 1.5rem 0;
  width: 100%;
  overflow: hidden;
  z-index: 1000;
}
.site-header .site-branding {
  display: flex;
  width: clamp(20rem, 55vw, 42rem);
}
.site-header .site-branding .custom-logo-link {
  width: 100%;
}
.site-header .site-branding img {
  max-width: 100%;
  height: auto;
  width: 100%;
}
.site-header .header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.site-header .header-left {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 5rem;
}
.site-header .header-left .main-navigation {
  width: auto;
}
.site-header .header-right {
  flex: 1;
  flex-grow: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 3rem;
}
.site-header .header-right #site-social li a i {
  font-size: 2.2rem;
}
.site-header .header-right .header-socials {
  display: flex;
  gap: 1rem;
}

.main-navigation #primary-menu {
  gap: 3.5rem;
}
.main-navigation #primary-menu .menu-item a {
  /* font-size: var(--font-size-md); */
  font-size: 1.6rem;
  color: var(--color-dark);
  font-weight: 300;
}

.social-list {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  list-style: none;
  margin: 0;

  a {
    text-decoration: none;
  }
  .icon {
    font-size: 1.8rem;
    color: var(--color-dark);
  }
}

/* Mobile menu */
.burger-menu-toggle {
  display: none;
  font-size: 3.2rem;
  padding: 0;
  background: transparent;
  border: 0;
}

.burger-menu__overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.burger-menu__overlay.active {
  opacity: 1;
  visibility: visible;
}

.burger-menu__content {
  text-align: center;
  color: white;
  font-size: 2rem;

  ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  ul li {
    padding-block: 0.25rem;
    opacity: 0;
    transform: translateY(20px);
    animation-fill-mode: forwards;
  }
  ul li a {
    color: var(--color-white);
    font-size: clamp(2.4rem, 6.5vw, 5.4rem);
    font-weight: 500;
  }
}
.stagger li {
  animation: fadeInUp 0.5s ease forwards;
}

#burger-menu .burger-menu-close {
  position: absolute;
  top: 2.5rem;
  right: 2.5rem;
  background: none;
  border: none;
  font-size: 3rem;
  line-height: 1;
  color: white;
  padding: 0;
  cursor: pointer;
  z-index: 10001;
}

@media (max-width: 1199.98px) {
  .site-header #site-navigation {
    display: none;
  }
  .site-header .burger-menu-toggle {
    display: block;
  }
}
@media (max-width: 991.98px) {
}
@media (max-width: 767.98px) {
  .site-header .site-branding {
    width: clamp(20rem, 75vw, 42rem);
    max-width: 300px;
  }
  .site-header .header-right {
    gap: 2rem;
  }
}
@media (max-width: 579.98px) {
  .site-header .social-list {
    display: none;
  }
}
@media (max-width: 479.98px) {
  .site-header .site-branding {
    /* max-width: 220px; */
  }
}

/* --------------------------------------- */
/* HERO BANNER */
#hero-banner {
  position: relative;
  width: 100%;
  height: 100%;
  max-height: clamp(450px, 80vh, 900px);
  clip-path: polygon(80px 0%, 100% 0, 100% 100%, 0 100%, 0% 55px);
  overflow: hidden;
}
#hero-banner .overlay {
  z-index: 2;
}
#hero-banner .hero-content {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  padding: var(--padding--lg) var(--padding--lg);
  z-index: 3;
}
#hero-banner .hero-content .hero-left {
  flex: 1;
  width: 100%;
  max-width: clamp(400px, calc(700px + 5vw), 680px);
}
#hero-banner .hero-content .hero-left h1 {
  font-size: var(--font-size-h1);
  font-weight: 100;
  letter-spacing: -1px;
  color: var(--color-white);
}
#hero-banner .hero-content .hero-left .button {
  margin-top: 3.5rem;
}

.point-of-sales {
  display: flex;
  gap: 2.5rem;
  margin-bottom: -10%;
}
.point-of-sales .pos-item {
  flex: 0;
}
.point-of-sales .pos-item .pos-title {
  font-size: 3rem;
  font-weight: 300;
  line-height: 1;
  letter-spacing: -1px;
  color: var(--color-white);
  margin-bottom: 1rem;
}
.point-of-sales .pos-item .post-subtitle {
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--color-white);
  max-width: 100px;
}

@media (max-width: 991.98px) {
  #hero-banner .hero-content {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding-bottom: 5rem;
  }
  #hero-banner .hero-content .hero-left {
    max-width: 100%;
  }
  #hero-banner .hero-content .point-of-sales {
    margin-top: 4.5rem;
    margin-bottom: 0;
  }
}
@media (max-width: 767.98px) {
  #hero-banner .hero-content {
    padding-inline: 3.5rem;
    padding-bottom: 3rem;
  }
  #hero-banner .hero-content .hero-left .button {
    margin-top: 2.5rem;
  }
  .point-of-sales {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2.5rem;
  }
  .point-of-sales .pos-item .pos-title {
    font-size: 2.2brem;
    font-weight: 500;
    margin-bottom: 0.25rem;
  }
  .point-of-sales .pos-item .post-subtitle {
    font-size: 1.2rem;
  }
}

/* --------------------------------------- */
/* HOME: -- SECTIONS */
.section-heading {
  margin-bottom: var(--default-gap-sm);
}

/* HOME: -- SECTION 2 - ABOUT*/
#about-us .toggle-item {
  padding-right: 3.5rem;
}
#about-us .toggle-item .toggle-header .icon {
  display: none;
}
.slogan-text {
  display: flex;
  gap: 2.5rem;

  h3 {
    line-height: 1.4;
    /* max-width: 90%; */
    max-width: 500px;
  }
}
.slogan-text .slogan-icon {
  width: calc(8rem + 2vw);
  padding-top: 0.7rem;
}

@media (max-width: 990.98px) {
  .slogan-col {
    padding-top: 5rem;
  }
}

@media (max-width: 767.98px) {
  #about-us .toggle-item {
    padding-right: 0;
  }
  #about-us .text-col {
    margin-bottom: 1.5rem;
  }
  .slogan-col {
    padding-top: 1rem;
    margin-bottom: 3.5rem;
  }
  .slogan-text .slogan-icon {
    width: 5rem;
  }

  #about-us .toggle-item {
    background-color: var(--bg-grey);
    padding: 1rem 2.5rem 1rem 4rem;
    clip-path: var(--clip-path-l-sm);

    .toggle-header {
      font-size: 1.8rem;
    }
    .toggle-header .icon {
      display: block;
      top: 7.5px;
    }
  }
  #about-us .toggle-header {
    cursor: pointer;
  }

  #about-us .toggle-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }

  #about-us .toggle-header .arrow {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
  }

  #about-us .toggle-header.active .arrow {
    transform: rotate(180deg);
  }
}

/* HOME: -- SECTION 3 - SERVICES */
#services {
  position: relative;
}
#services .services-left-col {
  position: sticky;
  top: 6rem;
}
#services .services-left .branding {
  position: absolute;
  left: calc(-1 * calc(18% - 2vw));
  top: 35%;
}
#services .services-left-col .services-title {
  max-width: 20ch;
}
#services .services-left-col .services-texts {
  max-width: calc(550px + 2.5vw);
  padding-left: var(--pad-y-xl);
  padding-right: 5rem;
}
#services .services-left-col .services-texts .services-text-1 {
  font-size: var(--font-size-lg);
}
#services .services-left-col .services-texts .services-text-2 {
  color: var(--color-text-grey);
}
#services .services-left-col .services-texts .services-cta {
  margin-top: var(--pad-y-xl);
}

.service-card {
  margin-bottom: 5rem;
}
.service-card .service-card--img {
  padding-bottom: 2.5rem;

  img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
  }
}
.service-card .service-card--content {
  max-width: 500px;

  h5 {
    font-weight: 400;
  }
  p {
    font-weight: 300;
    padding-top: 1rem;
  }
}

@media (max-width: 1279.98px) {
  #services .gx-6 > * {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
  #services .services-left-col .services-texts {
    max-width: 100%;
    padding-left: 0;
  }
}
@media (max-width: 991.98px) {
  #services .services-left-col {
    position: relative;
    top: 0;
    margin-bottom: 5rem;
  }
  #services .services-left-col .services-texts {
    padding-right: 0;
  }
}
@media (max-width: 767.98px) {
  .service-card {
    margin-bottom: 2.5rem;
  }
}

/* HOME: -- SECTION 4 - STEPS*/
.step-card-block .step-card {
  position: relative;
  background: var(--bg-grey);
  padding: 3.5rem;
  overflow: hidden;
}
.step-card-block .step-card .step-card--number {
  font-size: 1.2rem;
  font-weight: 600;
}
.step-card-block .step-card .step-card--content {
  margin-top: 2rem;
}
.step-card-block .step-card .step-card--content .step-card--title {
  font-size: var(--font-size-lg);
  font-weight: 400;
  margin-bottom: 1.5rem;
}
.step-card-block .step-card .step-card--content .step-card--text {
  font-size: var(--font-size-sm);
}

/* SECTION - PORTFOLIO */
.section-portfolio {
  position: relative;
  background-color: var(--bg-grey);
  padding: var(--pad-y-xl) 0;

  .section-title--left {
    max-width: 30ch;
    display: inline-block;
    margin-bottom: var(--default-gap-sm);
  }
  .section-heading {
    margin-bottom: 0;
  }
  .section-title .slider-navigation {
    /* margin-left: -7.5rem; */
    height: 100%;
    padding-bottom: 1rem;
  }

  .portfolio-card {
    position: relative;
  }
  .portfolio-card .portfolio__media {
    position: relative;
    height: calc(30rem + 5vw);
    clip-path: var(--clip-path-l-md);
    /* aspect-ratio: 16 / 9; */
    margin-bottom: 2.5rem;
    overflow: hidden;
  }
  .portfolio-card .portfolio__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--trans);
  }
  .portfolio-card .portfolio__content {
    position: relative;
    padding-bottom: 2rem;
  }
  .portfolio-card .portfolio__content .portfolio__title {
    color: var(--color-dark);
    font-size: var(--font-size-xxl);
    font-weight: 300;
    margin-bottom: 1rem;
  }
  .portfolio-card .portfolio__content .portfolio__text {
    font-size: var(--font-size-sm);
    font-weight: 100;
    color: var(--color-text-grey);
    max-width: 500px;
    width: 90%;
  }

  .portfolio-card .portfolio__content .portfolio__availability {
    margin-top: 20px;
  }
  .portfolio-card .portfolio__content .portfolio__availability .avail-badge {
    position: relative;
    font-weight: 300;
    padding-left: 2.5rem;
  }
  .portfolio-card .portfolio__content .portfolio__availability .avail-badge:before {
    content: '';
    position: absolute;
    left: 5px;
    top: 50%;
    /* transform: translateY(-50%) skewY(-23deg); */
    transform: translateY(-50%);
    border-radius: 50%;
    width: 10px;
    height: 10px;
    background-color: white;
  }
  .portfolio-card .portfolio__content .portfolio__availability .avail-badge--available:before {
    background-color: green;
  }
  .portfolio-card .portfolio__content .portfolio__availability .avail-badge--unavailable:before {
    background-color: orangered;
  }

  .portfolio-card .portfolio__content .card-cta {
    position: absolute;
    width: 2.5rem;
    height: auto;
    right: 0.5rem;
    bottom: 0.5rem;
    /* transform: rotate(-90deg); */
    transition: var(--transition-1);
    opacity: 0.25;
  }

  .portfolio-card:hover .portfolio__content .card-cta {
    transform: rotate(-45deg);
    opacity: 1;
  }
}

@media (max-width: 990.98px) {
  .section-portfolio .portfolio-card .portfolio__content .portfolio__title {
    font-size: var(--font-size-xl);
    font-weight: 400;
  }
}
@media (max-width: 767.98px) {
  .section-portfolio .portfolio-card .portfolio__content .portfolio__text {
    display: none;
  }
  .section-portfolio .section-title {
    justify-content: space-between;
  }
  .section-portfolio .section-title .section-title--left {
    flex-direction: row-reverse;
    justify-content: space-between;
    width: 100%;
    max-width: 100%;
  }
  .section-portfolio .section-title .section-title--right {
    display: none;
  }
  .section-portfolio .section-title .slider-navigation {
    padding-bottom: 0;
  }
  .section-portfolio .portfolio-card .card-cta {
    display: none;
  }
}

/* SECTION - PROJECT SPOTLIGHT */
.section-project-spotlight {
  padding-bottom: var(--pad-y-xl);
}
.section-project-spotlight .project-spotlight {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) 2fr;
  gap: calc(5rem + 2vw);
  place-items: center;
  justify-content: center;

  .ps-col-text {
    /* padding: 5rem; */
    max-width: 450px;
  }
  .ps-col-text .ps-title {
    position: relative;
    display: inline-flex;
    font-size: clamp(2.8rem, 10vw, 7.2rem);
    font-weight: 300;
    line-height: 1;
    letter-spacing: -1px;
    margin-left: -5px;
    margin-bottom: 2.5rem;
  }
  .ps-col-text .ps-title:after {
    content: '';
    position: absolute;
    bottom: 12px;
    right: -20px;
    width: 10px;
    height: 10px;
    background-color: var(--color-primary);
  }
  .ps-col-text .ps-subtitle {
    font-size: clamp(1.8rem, 1.2rem + 2vw, 2rem);
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 1.5rem;
  }
  .ps-col-text .ps-description {
    /* font-size: 1.4rem; */
    font-weight: 300;
    color: var(--color-text-grey);
  }
  .ps-col-text .ps-info-list {
    list-style: none;
    padding-top: 3.5rem;
    padding-left: 0;
    margin: 0;

    li {
      padding-block: 0.5rem;
    }
  }
  .ps-col-text .ps-cta {
    margin-top: 3.5rem;
  }
  .ps-col-text .ps-cta a:visited {
    color: var(--color-dark);
  }

  .ps-col-image {
    position: relative;
    width: 100%;
    height: 100%;
    max-height: 600px;
    overflow: hidden;
    clip-path: var(--clip-path-l-md);
  }
  .ps-col-image .tag {
    position: absolute;
    right: 2.5rem;
    top: 2.5rem;
    color: var(--color-white);
    background-color: var(--color-primary);
    padding: 3px 1.5rem;
  }
}

@media (max-width: 990.98px) {
  .section-project-spotlight .project-spotlight {
    grid-template-columns: 1fr;
    place-items: flex-start;
    justify-content: flex-start;
    row-gap: 4rem;

    .ps-col-text {
      max-width: 100%;
    }
    .ps-col-text .ps-info-list {
      display: flex;
      flex-wrap: wrap;
      column-gap: 3.5rem;
      row-gap: 0rem;
      padding-top: 1rem;
    }
  }
}

/* BLOCK: SECTION BANNER */
.section-banner {
  height: 60vh;
  max-height: 800px;
  position: relative;
  overflow: hidden;
  /* clip-path: var(--clip); */
}
.section-banner--img {
  overflow: hidden;
}
.section-banner--content {
  padding-block: var(--pad-y-lg);
}
.section-banner--content._alignBottom {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
}
.section-banner--content._alignCenter {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.section-banner--content .content--title {
  max-width: 15ch;
}
@media (max-width: 767.98px) {
  .section-banner-container {
    padding-right: 0 !important;
  }
}

/* BLOCK: IMAGE WITH TEXT */
.section-banner-text {
  position: relative;
  overflow: hidden;

  .section-wrapper {
    height: 70vh;
    max-height: 900px;
  }
  .text-overlay {
    height: 100%;
    position: relative;
    color: var(--color-white);
    width: 100%;

    z-index: 3;
  }
  .text-overlay.--center {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .text-overlay .content {
    max-width: clamp(1px, 50vw, 800px);
  }
}

/* BLOCK: FOOTER BANNER */
#footer-banner .section-banner--content .content--title {
  /* font-size: clamp(2.8rem, 25vw, 92px); */
  max-width: 600px;
  margin-bottom: 2.5rem;
}
@media (max-width: 767.98px) {
  #footer-banner .section-banner--content {
    justify-content: flex-end;
    padding-bottom: 5rem;
  }
}

/* BLOCK: TRUST */
.trust-section .trust-section-wrapper {
  display: grid;
  grid-template-columns: 3fr 1.25fr 1.25fr 1.5fr;
  align-items: center;
  gap: 2.5rem;
}
.trust-section .trust-col {
  position: relative;
  height: 100%;
}
.trust-section .trust-col-a img {
  width: 100%;
  height: 100%;
  max-height: calc(280px + 5vw);
  object-fit: cover;
  clip-path: var(--clip-path-l-md);
}
.trust-section .trust-col-b {
  text-align: right;
  background-color: var(--bg-primary);
  clip-path: var(--clip-path-l-md);
  padding: 2.5rem;
}
.trust-section .trust-col-b:before {
  content: '';
  width: 85%;
  height: 75%;
  position: absolute;
  inset: 0;
  background-image: url('/wp-content/uploads/2025/05/dc-trust-1.svg');
  background-size: contain;
  background-position: bottom right;
  background-repeat: no-repeat;
  mix-blend-mode: multiply;
  margin-top: auto;
  margin-left: auto;
  opacity: 0.4;
}
.trust-section .trust-col-b h5 {
  font-size: var(--font-size-sm);
  color: #fff;
}
.trust-section .trust-col-c {
  text-align: right;
  background-color: var(--bg-dark);
  clip-path: var(--clip-path-l-md);
  padding: 2.5rem;
}
.trust-section .trust-col-c:before {
  content: '';
  width: 85%;
  height: 75%;
  position: absolute;
  inset: 0;
  background-image: url('/wp-content/uploads/2025/05/dc-trust-3.svg');
  background-size: contain;
  background-position: bottom right;
  background-repeat: no-repeat;
  margin-top: auto;
  margin-left: auto;
  opacity: 0.1;
}
.trust-section .trust-col-c h5 {
  font-size: var(--font-size-sm);
  color: #fff;
}
.trust-section .trust-col-d {
  display: grid;
  place-items: center;
  padding-left: 2.5rem;
}
.trust-section .trust-col-d h3 {
  margin-bottom: 2.5rem;
}
@media (max-width: 1439.98px) {
  .trust-section .trust-section-wrapper {
    grid-template-columns: 3fr 1.25fr 1.25fr;
  }
  .trust-section .trust-col-d {
    order: 1;
    grid-column: 1 / -1;
  }
  .trust-section .trust-col-d .trust-col-wrapper {
    display: grid;
    grid-template-columns: 1fr 3fr 1fr;
    align-items: center;
    gap: 5rem;
  }
  .trust-description {
    max-width: 450px;
  }
  .trust-section .trust-col-a {
    order: 2;
  }
  .trust-section .trust-col-b {
    order: 3;
  }
  .trust-section .trust-col-c {
    order: 4;
  }
}
@media (max-width: 990.98px) {
  .trust-section .trust-section-wrapper {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .trust-section .trust-col-b {
    margin-top: -6.5rem;
    padding-bottom: 8rem;
  }
  .trust-section .trust-col-c {
    margin-top: -6.5rem;
    padding-bottom: 5rem;
  }
  .trust-section .trust-col-b:before,
  .trust-section .trust-col-c:before {
    width: 85%;
    height: 175%;
    margin-top: auto;
    margin-left: auto;
    opacity: 0.1;
  }
  .trust-section .trust-col-d {
    padding-bottom: 2.5rem;
    padding-left: 0;
  }
  .trust-section .trust-col-a img {
    height: calc(400px + 20vw);
  }
}
/* @media (min-width: 768px) and (max-width: 990.98px) {
  .trust-description {
    display: none;
  }
} */
@media (max-width: 880px) {
  .trust-section .trust-col-d .trust-col-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0;
    text-align: left;
    justify-content: flex-start;
    align-items: flex-start;
    padding-bottom: 2.5rem;
  }
  .trust-section .trust-col-d {
    place-items: flex-start;
  }
}
@media (max-width: 579.98px) {
  .trust-section .trust-col-b {
    margin-top: -5.5rem;
    padding-bottom: 8rem;
  }
  .trust-section .trust-col-c {
    margin-top: -7rem;
    padding-bottom: 4.5rem;
  }
}

/* BLOCK: KEY STATS */
.section-key-stats .sks-wrapper {
  position: relative;
  background-color: var(--bg-dark);
  padding: 2.5rem;
  overflow: hidden;
}
.sks-wrapper .line {
  position: absolute;
}
.sks-wrapper .line-1 {
  left: 0;
  bottom: 0;
  width: 15vw;
}
.sks-wrapper .line-2 {
  right: 0;
  bottom: 0;
  width: 20vw;
}
.section-key-stats .sks-wrapper .stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  place-items: center;
  place-content: center;
  gap: 2.5rem;
  max-width: 1080px;
  margin-inline: auto;
}
.section-key-stats .sks-wrapper .stat {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  padding-inline: 2.5rem;
  color: var(--color-white);
  /* border-right: 1px solid rgba(255, 255, 255, 0.15); */
}
.section-key-stats .sks-wrapper .stat:not(:last-child):after {
  content: '';
  position: absolute;
  right: -1.25rem;
  top: 50%;
  width: 1px;
  height: 3.5rem;
  transform: translateY(-50%);
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}
.section-key-stats .sks-wrapper .stat .stat-number {
  font-size: 4.2rem;
  font-weight: 200;
  line-height: 1.2;
}
.section-key-stats .sks-wrapper .stat .stat-text {
  font-size: var(--font-size-sm);
  font-weight: 200;
  max-width: 12ch;
}

@media (max-width: 1279.98px) {
  .section-key-stats .sks-wrapper .stats-grid {
    gap: 1.5rem;
  }
  .section-key-stats .sks-wrapper .stat {
    flex-direction: column;
    align-items: center;
    gap: 0;
    text-align: center;
    padding-inline: 0.5rem;
  }
  .section-key-stats .sks-wrapper .stat .stat-number {
    font-size: 3.2rem;
  }
}
@media (max-width: 767.98px) {
  .section-key-stats .sks-wrapper {
    padding-block: 4rem;
  }
  .section-key-stats .sks-wrapper .stats-grid {
    grid-template-columns: 1fr 1fr;
    /* row-gap: 2.5rem; */
    gap: 0;
  }
  .section-key-stats .sks-wrapper .stat {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 1.5rem;
    padding: 2rem;
  }
  .section-key-stats .sks-wrapper .stat:nth-child(1) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    border-right: 1px solid rgba(255, 255, 255, 0.2);
  }
  .section-key-stats .sks-wrapper .stat:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  .section-key-stats .sks-wrapper .stat:nth-child(3) {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
  }
  /* .section-key-stats .sks-wrapper .stat:nth-child(2):after { */
  .section-key-stats .sks-wrapper .stat:after {
    display: none;
  }
}
@media (max-width: 479.98px) {
  .section-key-stats .sks-wrapper .stat {
    border-right: 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  .section-key-stats .sks-wrapper .stats-grid {
    grid-template-columns: 1fr;
  }
  .section-key-stats .sks-wrapper .stat:last-child {
    border-bottom: 0;
  }
  .section-key-stats .sks-wrapper .stat .stat-number {
    flex: 0 0 6rem;
    text-align: right;
  }
}

/* BLOCK: FEATURED CARDS */
.feature-cards-section .cards-grid {
  /* display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem; */
}
.feature-cards-section .section-title {
  max-width: 31ch;
  margin-bottom: var(--default-gap-sm);
}
.feature-cards-section .card-item {
  max-width: 400px;
  /* min-height: 495px; */
  height: auto;
  position: relative;
  background: var(--bg-grey);
  clip-path: var(--clip-path-l-md);
  padding: var(--pad-y-lg) 5rem 3.5rem 5rem;
  overflow: hidden;
}
.feature-cards-section .card-item-1 {
  color: var(--color-dark);
  background: #e8e8e8;
}
.feature-cards-section .card-item-3 {
  color: var(--color-dark);
  background: var(--bg-primary);
}
.feature-cards-section .card-item-4 {
  color: var(--color-white);
  background: var(--bg-dark);
}
.feature-cards-section .card-item .card-index {
  position: absolute;
  top: 3.5rem;
  right: 5rem;
  font-size: var(--font-size-xs);
  font-weight: 200;
  /* color: var(--color-white); */
}
.feature-cards-section .card-item .card-icon {
  /* max-height: clamp(15rem, calc(10vw + 1rem), 27.5rem); */
  margin-bottom: calc(2.5rem + 3.5vw);
  height: 100%;

  img {
    height: auto;
    max-height: clamp(12.5rem, calc(10vw + 1rem), 15rem);
    width: 100%;
    object-fit: contain;
    object-position: left;
  }
}
.feature-cards-section .card-item .card-content .card-title {
  font-size: var(--font-size-xl);
  font-weight: 400;
  line-height: 1.5;
  max-width: 14ch;
  margin-bottom: 2rem;
}
.feature-cards-section .card-item .card-content .card-text p {
  font-size: var(--font-size-sm);
  font-weight: 100;
  line-height: 1.5;
  max-width: calc(90% - 1rem);
}

@media (min-width: 1440px) {
  .featureCards-swiper .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
  }
}
@media (max-width: 1439.98px) {
  .feature-cards-section > div {
    padding-right: 0;
  }
  /* .featureCards-swiper .swiper-wrapper {
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  } */
}
@media (max-width: 989.98px) {
  .feature-cards-section .card-item {
    max-width: 350px;
  }
}
@media (max-width: 479.98px) {
  .feature-cards-section .card-item {
    max-width: 300px;
    padding-top: 5rem;
    padding-inline: 3.5rem;
  }
  .feature-cards-section .card-item .card-content .card-text p {
    max-width: 100%;
  }

  .feature-cards-section .card-item .card-icon {
    margin-bottom: calc(2.5rem + 3.5vw);

    img {
      max-height: clamp(8.5rem, calc(10vw + 1rem), 12.5rem);
    }
  }
}

/* --------------------------------------- */

/* --------------------------------------- */
/* FOOTER */
#footer {
  padding-top: var(--pad-y-lg);
  overflow: hidden;

  .footer-cols a {
    font-size: var(--font-size-md);
    color: var(--color-dark);
    text-decoration: none;
  }
  .iso-logos {
    max-width: 80px;
  }
  p {
    line-height: 1.8;
  }
}
#footer .footer-cols {
  font-size: var(--font-size-md);
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 15rem;
}

#footer .footer-cols .footer-cols__right {
  display: grid;
  grid-template-columns: 1fr 1fr 0.5fr;
  gap: 5rem;
}

#footer .contact-us {
  font-size: clamp(1.5rem, 2vw + 1rem, 2.4rem);
  font-weight: 400;
  line-height: 1.3;
}

/* --- */
#footer .footer-cols .footer-col {
  ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
  }

  &.footer-col__menu {
    border-right: 1px solid var(--border-grey);
    padding-right: 3.5rem;
  }
  &.footer-col__3 {
    text-align: right;
  }
}
#footer .footer-cols .footer-col.footer-col__menu ul li {
  padding-bottom: 1rem;

  &:last-child {
    padding-bottom: 0;
  }
}
#footer .footer-cols .footer-col.footer-col__menu ul li a {
  color: var(--color-dark);
  font-size: var(--font-size-xxl);
  font-weight: 400;
  line-height: 1.6;
  text-decoration: none;
}
#footer .footer-cols .footer-col > .footer-block:first-child {
  padding-bottom: 3.5rem;
}
#footer .footer-block {
  position: relative;

  .footer-block__title {
    color: var(--color-text-grey);
    font-size: var(--font-size-xs);
    font-weight: 300;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
  }
}

/* --- */
#footer .footer-branding {
  padding-top: var(--pad-y-md);
  padding-bottom: var(--pad-y-md);
}
#footer .footer-branding img {
  width: 100%;
  height: auto;
}

/* --- */
#footer .footer-copyright {
  /* font-size: 1.3rem; */
  color: var(--color-text-grey);
  border-top: 1px solid var(--border-grey);
  padding-top: 2.5rem;

  .copyright-1 {
  }
  .copyright-2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.25rem;
  }
  .copyright-2 a {
    color: var(--color-text-grey);
    line-height: 1.4;
    text-decoration: none;
  }
  .copyright-3 {
    text-align: right;
  }
}

@media (max-width: 1279.98px) {
  #footer .footer-cols {
    gap: 5rem;
  }
  /* #footer .footer-cols .footer-cols__left {
    padding-right: 3.5rem;
  } */
  #footer .footer-cols .footer-cols__right {
    grid-template-columns: 1.5fr 1fr 60px;
    gap: 2.5rem;
  }
  #footer .iso-logos {
    max-width: 60px;
  }
}
@media (max-width: 767.98px) {
  #footer .footer-cols {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  #footer .footer-cols__left {
    display: none;
  }
  #footer .footer-cols .footer-cols__right {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  #footer .footer-col__3 {
    grid-column: 1 / -1;
  }
  #footer .footer-col__3 .footer-block {
    /* padding: 0 !important; */
    display: none;
  }
  #footer .footer-col__3 img {
    /* position: absolute;
    top: -5rem;
    right: 0;
    width: 4.5rem; */
  }
  #footer .footer-copyright {
    border-top: 0;
  }
  #footer .footer-copyright .copyright-1 {
    display: flex;
  }
  #footer .footer-copyright .copyright-1 p {
    margin-bottom: 2px;
  }
  #footer .footer-copyright .copyright-2 {
    flex-direction: row;
  }
  #footer .footer-copyright .copyright-3 {
    display: flex;
    gap: 1rem;
    padding-top: 2.5rem;
  }
}
@media (max-width: 579.98px) {
  #footer {
    /* padding-top: var(--pad-y-xl); */
    padding-bottom: var(--pad-y-md);
  }
  #footer .footer-cols .footer-cols__right {
    grid-template-columns: 1fr;
  }
  #footer .footer-cols .footer-cols__right .footer-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  #footer .footer-cols .footer-cols__right .footer-col__2 {
    order: 1;
    text-align: center;
    padding-bottom: 3.5rem;
  }
  #footer .footer-cols .footer-cols__right .footer-col__1 {
    order: 2;
  }
  #footer .footer-cols .footer-cols__right .footer-col.footer-col__2 {
    grid-template-columns: 1fr;
  }
  .block__contact {
    text-align: center;
  }
  #footer .block__contact .contact-us {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background-color: #000;
    padding: var(--btn-padding);
    clip-path: polygon(9% 0%, 100% 0%, 100% 66%, 92% 100%, 0% 100%, -6% 60%);
  }
  .block__social {
    background: var(--bg-grey);
    padding: 2.5rem;
  }
  .block__social ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
  }
}
@media (max-width: 479.98px) {
  #footer .footer-cols .footer-cols__right .footer-col__1 {
    grid-template-columns: 1fr;
    padding-bottom: 2.5rem;
  }
}

/* --------------------------------------- */
/* PAGES */
.site-main {
}

/* --- PAGE: PORTFOLIO */
.portfolio-page {
  .page-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-block: var(--pad-y-md);
  }
  .page-header h1 {
    font-size: var(--font-size-md);
    font-weight: 300;
  }
  .page-header h2 {
    letter-spacing: -0.5px;
    max-width: 520px;
  }
  .slogan-text {
    max-width: 500px;
  }
  .slogan-text h4 {
    font-size: var(--font-size-sm);
    font-weight: 300;
  }

  #portfolio-nav {
    position: relative;
    clip-path: var(--clip-path-l-sm);
    margin-bottom: var(--padding--sm);
    overflow: hidden;
  }
  #portfolio-nav #portfolio-menu {
    position: relative;
  }
  #portfolio-nav #portfolio-menu:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: calc(100px + 15vw);
    height: 100%;
    background-image: url('/wp-content/uploads/2025/05/dc-line-2.svg');
    background-size: contain;
    background-position: center right;
    background-repeat: no-repeat;
  }
  #portfolio-nav #toggle-menu {
    display: none;
    flex-direction: column;
    gap: 10px;
  }
  #portfolio-nav .toggle-button {
    display: none;
    background-color: var(--bg-grey-hov);
    color: #000;
    padding: 14px 15px;
    border: none;
    cursor: pointer;
    font-size: 16px;
  }

  #portfolio-nav #portfolio-menu.open {
    /* display: flex; */
    /* flex-direction: column; */
    max-height: 1000px;
    /* padding: 1.5rem; */
  }

  #portfolio-nav nav {
    display: flex;
    align-items: center;
    gap: 2.5rem;

    background: var(--bg-dark);
    padding: 1.25rem var(--padding--xl);
  }
  #portfolio-nav nav .portfolio-nav__item {
    font-size: var(--font-size-md);
    color: var(--color-white);
    opacity: 0.6;
    transition: var(--transition-1);
  }
  #portfolio-nav nav .portfolio-nav__item:hover {
    opacity: 1;
  }
  #portfolio-nav nav .portfolio-nav__item.current {
    /* font-weight: 500; */
    opacity: 1;
  }

  .portfolio-grid {
    display: grid;
    /* grid-template-columns: repeat(auto-fit, minmax(550px, 1fr)); */
    column-gap: 3.5rem;
    row-gap: calc(2.5rem + 4vw);
    margin-bottom: calc(2.5rem + 3vw);
  }
  .quote-block {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem 3rem;
  }
  .quote-block p {
    font-size: clamp(1.8rem, calc(0.1rem + 4.4vw), 4.4rem);
    font-weight: 100;
    line-height: 1.4;
    max-width: 600px;
    margin-inline: auto;
    margin-bottom: 3rem;
  }
  .quote-block footer {
    font-size: clamp(1.5rem, 2vw, 2rem);
    font-weight: 200;
    line-height: 1.6;
  }
  .quote-block blockquote {
    padding-block: 5rem;
  }
  /* .quote-block blockquote::before, */
  .quote-block blockquote::after {
    content: '“';
    font-size: clamp(2.5rem, 16vw, 14.2rem);
    font-weight: bold;
    line-height: 1;
    color: #bbbbbb;
    position: absolute;
    opacity: 0.2;
    font-family: 'Times New Roman', serif;
  }
  .quote-block blockquote::before {
    top: -20px;
    left: 20px;
  }

  .quote-block blockquote::after {
    content: '”';
    /* bottom: -30px;
    right: 20px; */
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%) scale(5);
  }
  .portfolio-grid .portfolio-item.special-item {
    grid-column: 1 / 3;

    /* .card-img-top {
      height: calc(500px + 10vw);
    } */
  }
  @media (min-width: 768px) {
    .portfolio-grid .portfolio-item.special-item .card-img-top {
      height: calc(500px + 10vw);
    }
  }
  .portfolio-grid .portfolio {
    position: relative;
    border: 0;
    overflow: hidden;
  }
  .portfolio-grid .portfolio .card-img-top {
    position: relative;
    clip-path: var(--clip-path-l-md);
    height: calc(350px + 8.5vw);
    margin-bottom: 2rem;
    overflow: hidden;
  }
  .portfolio-grid .portfolio .card-img-top:before {
    content: '';
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-dark);
    mix-blend-mode: multiply;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-1);
    z-index: 2;
  }
  .portfolio-grid .portfolio .card-img-top:after {
    content: '';
    position: absolute;
    /* left: 50%; */
    /* top: 50%; */
    /* transform: translate(-50%, -50%); */
    /* bottom: 0; */
    /* inset-inline: 0; */
    bottom: 3.5rem;
    right: 3.5rem;
    background-image: url('/wp-content/uploads/2025/05/dc-trust-3.svg');
    background-size: contain;
    background-repeat: no-repeat;
    width: 35px;
    height: 35px;
    opacity: 0;
    visibility: hidden;
    /* mix-blend-mode: overlay; */
    z-index: 3;
    transition: var(--transition-1);
    /* animation: scroll-bg 30s linear infinite; */
  }
  .portfolio-grid .portfolio .card-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    opacity: 0;
    visibility: hidden;
    /* transition: var(--transition-1); */
    z-index: 9;
  }
  .portfolio-grid .portfolio .card-img-top > a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
  }
  .portfolio-grid .portfolio .card-img-top img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.125);
    transition: var(--transition-2);
  }
  .portfolio-grid .portfolio .card-body {
    position: relative;
    flex: 0 0 auto;
    padding: 0;
    padding-bottom: 2.5rem;
  }
  .portfolio-grid .portfolio .card-body h5 {
    font-weight: 400;
  }
  .portfolio-grid .portfolio .card-body .card-text {
    opacity: 0.4;
    width: 90%;
    max-width: 500px;
  }
  .portfolio-grid .portfolio .card-body .portfolio__availability {
    margin-top: 10px;
  }
  .portfolio-grid .portfolio .card-body .portfolio__availability .avail-badge {
    position: relative;
    font-weight: 300;
    padding-left: 2.5rem;
  }
  .portfolio-grid .portfolio .card-body .portfolio__availability .avail-badge:before {
    content: '';
    position: absolute;
    left: 5px;
    top: 50%;
    /* transform: translateY(-50%) skewY(-23deg); */
    transform: translateY(-50%);
    border-radius: 50%;
    width: 10px;
    height: 10px;
    background-color: white;
  }
  .portfolio-grid .portfolio .card-body .portfolio__availability .avail-badge--available:before {
    background-color: green;
  }
  .portfolio-grid .portfolio .card-body .portfolio__availability .avail-badge--unavailable:before {
    background-color: orangered;
  }

  .portfolio-grid .portfolio .card-body .card-cta,
  .portfolio-card .card-body .card-cta {
    position: absolute;
    width: 2.5rem;
    height: auto;
    right: 0.5rem;
    bottom: 0.5rem;
    transition: var(--transition-1);
    opacity: 0.25;
  }

  .portfolio-card:hover .card-body .card-cta {
    transform: rotate(-45deg);
    opacity: 1;
  }

  .portfolio-grid .portfolio-item:hover {
    .card-img-top img {
      transform: scale(1);
    }
    .card-overlay {
      opacity: 1;
      visibility: visible;
    }
    .card-overlay .button.button-glass {
      clip-path: polygon(9% 0%, 100% 0%, 100% 66%, 92% 100%, 0% 100%, -6% 60%);
    }
    .card-img-top:before {
      opacity: 0.3;
      visibility: visible;
    }
    .card-img-top:after {
      opacity: 1;
      visibility: visible;
    }
    .card-img-top img {
      /* filter: blur(2px); */
    }
    .card-cta {
      transform: rotate(-45deg);
      opacity: 1;
    }
  }
}

@keyframes scroll-bg {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 100% 0;
  }
}

.main-sectors-container {
  background: var(--bg-grey);

  .section-head {
    margin-bottom: 5rem;
  }
  .section-head h2 {
    max-width: 800px;
    text-wrap: balance;
    margin-bottom: 3.5rem;
  }
  .section-head h5 {
    font-weight: 100;
    /* text-wrap: balance; */
    max-width: 900px;
  }

  .sector {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2.5rem;
    margin-bottom: calc(5rem + 4vw);
  }
  .sector.sector-right-img {
    grid-template-columns: 1fr 1.5fr;
  }

  .sector-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 3.5rem;
    padding: 5rem;
  }
  .sector-content .sector-title {
    color: var(--color-dark);
  }
  .sector-content .sector-description {
    font-size: var(--font-size-md);
    font-weight: 300;
  }
}

/* CLIP PATH IMAGES ANIMATION */
.sector-img {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 700px;
}

.image-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--bg-dark);
  clip-path: inset(0 0 0 100%);
  z-index: 1;
  overflow: hidden;
}

.sector-img img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  clip-path: inset(0 0 0 100%);
  z-index: 2;
}

/* .animate-image {
  position: relative;
  overflow: hidden;
}
.animate-image img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom center;
  clip-path: inset(0 0 0 100%);
  z-index: 2;
} */

.img-wrap {
  position: relative;
  overflow: hidden;
}

.img-wrap img {
  display: block;
  width: 100%;
  transform: scale(1.2); /* start zoomed */
  filter: blur(10px);
  opacity: 0;
  will-change: transform, opacity, filter;
}

/* overlay mask */
.img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: #111; /* change to brand color if needed */
  transform: translateX(0);
  will-change: transform;
}

@media (min-width: 1680px) {
  .portfolio-page .portfolio-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
/* @media (min-width: 1440px) {
  .portfolio-page .portfolio-grid {
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  }
  .portfolio-page .portfolio-grid .portfolio .card-img-top {
    height: calc(350px + 6.5vw);
  }
} */
@media (max-width: 1680px) {
  .portfolio-page .portfolio-grid {
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  }
}
@media (max-width: 1280.98px) {
  .portfolio-page .portfolio-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  }
  .portfolio-page .portfolio-grid .portfolio .card-img-top {
    height: calc(350px + 6.5vw);
  }
  .main-sectors-container .sector {
    grid-template-columns: 1fr;
    gap: 5rem;
  }
  .main-sectors-container .sector.sector.sector-right-img {
    grid-template-columns: 1fr;
  }
  .main-sectors-container .sector.sector.sector-right-img .sector-img {
    order: 1;
  }
  .main-sectors-container .sector.sector.sector-right-img .sector-content {
    order: 2;
  }
  .main-sectors-container .sector .sector-content {
    padding: 0;
  }
}
@media (max-width: 767.98px) {
  .portfolio-page .portfolio-grid {
    display: flex;
    flex-direction: column;
  }
  .portfolio-page #portfolio-nav #toggle-menu {
    display: flex;
    width: 100%;
  }
  .portfolio-page .page-header__right {
    display: none;
  }
  #portfolio-nav #portfolio-menu {
    flex-direction: column;
  }
  .portfolio-page #portfolio-nav nav {
    background-color: var(--bg-grey);
  }
  #portfolio-nav #portfolio-menu {
    gap: 0;
    padding: 0;
    transition: all 0.5s ease-in-out;
    max-height: 0px;
  }
  .portfolio-page #portfolio-nav nav .portfolio-nav__item {
    display: block;
    border-top: 3px solid #fff;
    color: #000;
    width: 100%;
    text-align: center;
    padding: 1.25rem 1rem;
  }
  #portfolio-nav #portfolio-menu:after {
    display: none;
  }

  .portfolio-page .page-header h1 {
    font-size: 1.4rem;
  }
}
@media (max-width: 579.98px) {
  .portfolio-page .portfolio-grid .portfolio .card-img-top {
    height: 300px;
  }
}

/* --- PAGE: SERVICES */
body.post-type-archive-service,
body.service-template-page-service {
  .services-head {
    /* text-align: center; */
    padding-bottom: 3.5rem;
  }
  .services-head h5 {
    font-weight: 300;
  }
  #services-hor {
    position: relative;
    height: 100vh;
    overflow: hidden;
  }
  #services-section {
    display: flex;
    height: 100%;
  }

  .service-card {
    min-width: 100vw;
    height: calc(100vh - 7rem);
    background: var(--bg-grey);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 5rem;
    text-align: center;
    clip-path: var(--clip-path-l-lg);
    margin-right: 5rem;
    overflow: hidden;
  }

  .service-card h2 {
    font-size: clamp(2.4rem, 14vw, 7.2rem);
    letter-spacing: -1px;
    margin-bottom: 1rem;
  }

  .service-card p {
    max-width: 600px;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
  }

  .service-item {
    background: var(--bg-grey);
    clip-path: var(--clip-path-l-md);
    min-height: 350px;
    padding: 5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
}

@media (min-width: 768px) {
  body.post-type-archive-service .services-grid,
  body.service-template-page-service .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* PAGE: SINGLE SERVICE */
body.service-template-page-service {
  #hero-banner {
    max-height: clamp(400px, 80vh, 550px);
    margin-bottom: 5rem;
  }
  #services-list {
    margin-top: var(--pad-y-xl);
  }
}

body.post-type-archive-service,
body.service-template-page-service {
  .services-grid .service-item {
    padding-bottom: 7rem;
  }
  .services-grid .service-card-item .service-card-content .service-card-title {
    line-height: 1.4;
    padding-bottom: 1.5rem;
  }
  .services-grid .service-card-item .service-card-content .service-card-description {
    text-wrap: pretty;
  }
  .services-grid .service-card-item .service-card-cta {
    position: absolute;
    right: 2.5rem;
    bottom: 2.5rem;
    width: 2.5rem;
  }
}

/* --- PAGE: SINGLE PORTFOLIO */
body.single-portfolio {
  .section-portfolio {
    background: var(--bg-light);
    padding-bottom: 0;
  }

  /* text */
  .project-info-section {
    padding-top: 5rem;
    /* padding-inline: var(--padding--lg); */
  }
  .project-info-section .title-block {
    padding-top: 1.5rem;
    padding-bottom: 4.5rem;
    border-bottom: 1px solid var(--bg-grey-hov);
  }
  .project-info-section .title-block .project-info-title {
    font-weight: 200;
  }
  .project-info-section .description-block {
    max-width: 700px;
    padding-left: 5rem;

    h2,
    h3,
    h4 {
      padding-bottom: 1.5rem;
      margin-bottom: 0;
    }
    h4 {
      font-size: 1.8rem;
      font-weight: 500;
    }
    p {
      font-size: 1.8rem;
      font-weight: 100;
      line-height: 1.6;
      /* text-wrap: balance; */
      padding-bottom: 2.5rem;
    }
  }
  .project-info-section .info-block {
    h2,
    h3,
    h4 {
      padding-bottom: 1.5rem;
      margin-bottom: 0;
    }
    h4 {
      font-size: 1.8rem;
      font-weight: 500;
    }

    /* display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 350px));
    gap: 2.5rem; */

    .project-info-item {
      display: flex;
      /* align-items: center; */
      flex-direction: column;
      gap: 0.5rem;
      padding-bottom: 2.5rem;
      /* border-bottom: 1px solid var(--bg-grey-hov); */
      /* border-bottom: 1px solid var(--bg-dark); */
      max-width: 400px;
    }
    .project-info-item:first-child {
      padding-top: 0;
    }
    .project-info-item .label {
      /* flex: 0 0 12rem; */
      font-weight: 100;
      color: var(--color-text-grey);
    }
    .project-info-item .v {
      font-size: clamp(1.8rem, 5vw, 2.8rem);
      line-height: 1.2;
    }
  }

  .row-2 {
    /* padding-top: 5rem; */
    border-bottom: 1px solid var(--bg-grey-hov);
  }
  .row-2 .col-1 {
    border-right: 1px solid var(--bg-grey-hov);
  }
  .row-2 .col-1,
  .row-2 .col-2 {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  /* flats */
  .building-flats .flat-headings {
    color: var(--color-text-grey);
    padding-bottom: 3.5rem;
    /* padding-inline: 2.5rem; */
  }
  .building-flats .section-title {
    margin-bottom: calc(3.5rem + 2vw);
  }
  .building-flats .flat-item {
    font-size: 1.6rem;
    /* background-color: var(--bg-grey); */
    padding-block: 1.75rem;
    /* padding-inline: 2.5rem; */
    /* clip-path: var(--clip-path-r-md); */
    border-bottom: 1px solid var(--border-grey);
    margin-bottom: 10px;
  }
  .building-flats .flat-item > div {
    display: flex;
    align-items: center;
  }
  .building-flats .flat-item:last-child {
    border-bottom: 0;
  }
  .building-flats .flat-item .flat--name {
    font-size: 2.8rem;
  }
  .building-flats .flat-item .col-avail {
    justify-content: flex-end;
  }
  .building-flats .flat-item .col-avail .avail-badge {
    position: relative;
    font-weight: 300;
    padding-left: 2.5rem;
  }
  .building-flats .flat-item .col-avail .avail-badge:before {
    content: '';
    position: absolute;
    left: 5px;
    top: 50%;
    /* transform: translateY(-50%) skewY(-23deg); */
    transform: translateY(-50%);
    border-radius: 50%;
    width: 10px;
    height: 10px;
    background-color: white;
  }
  .building-flats .flat-item .col-avail .avail-badge--available:before {
    background-color: green;
  }
  .building-flats .flat-item .col-avail .avail-badge--unavailable:before {
    background-color: orangered;
  }

  .flats-cta {
    margin-top: 5rem;
  }

  /* masonry */
  .shuffle-container {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -20px;
  }

  .shuffle-item {
    width: 33.3333%;
    padding: 20px;
    box-sizing: border-box;
  }

  .shuffle-item img {
    width: 100%;
    display: block;
    height: auto;
    object-fit: cover;
    height: clamp(400px, calc(300px + 10vw), 600px);
    /* max-height: 700px; */
  }

  /* Width modifiers */
  /* .shuffle-item--width2 {
    width: 66.6666%;
  }

  .shuffle-item--width3 {
    width: 75%;

    img {
      height: clamp(500px, calc(100vh - 200px), 900px);
    }
  }


  .shuffle-item--height2 img {
    height: calc(1000px + 20px);
    object-fit: cover;
  } */
  .my-sizer-element {
    width: 33.33333%;
  }
}

/* @media (min-width: 1440px) {
  body.single-portfolio .project-info-section {
    padding-inline: 0
  }
} */
@media (max-width: 767.98px) {
  body.single-portfolio .shuffle-item {
    width: 50%;
  }
  body.single-portfolio .my-sizer-element {
    width: 50%;
  }
  body.single-portfolio .shuffle-item--height2 img {
    height: calc(500px + 20px);
  }
  body.single-portfolio .project-info-section {
    /* padding-inline: 0; */
  }
  body.single-portfolio .row-2 .col-1 {
    border-right: 0;
    border-bottom: 1px solid var(--bg-grey-hov);
  }
  body.single-portfolio .project-info-section .description-block {
    padding-left: 0;
  }


body.single-portfolio .building-flats .flat-item {
  border: 0;
}
  body.single-portfolio .building-flats .flat-item .col-6  {
    /*display: flex;
    flex-direction: column;*/
    background-color: var(--bg-grey);
    padding: 7px 8px;
  }
  body.single-portfolio .building-flats .flat-item .col-6:nth-child(1){
    flex: 0 0 100%;
    background: #fff;
    /*padding-top: 5px;*/
    padding-bottom: 5px;
    /*border-top: 1px solid #000;*/
  }
  body.single-portfolio .building-flats .flat-item .col-6:nth-child(2),
  body.single-portfolio .building-flats .flat-item .col-6:nth-child(4),
  body.single-portfolio .building-flats .flat-item .col-6:nth-child(6) {
    border-right: 5px solid #fff;
  }
  body.single-portfolio .building-flats .flat-item span.label {
    font-weight: 200;
    padding-right: 5px;
  }
  body.single-portfolio .building-flats .flat-item span {
    font-size: 1.4rem;
    font-weight: 400;
  }
  body.single-portfolio .building-flats .flat-item span.flat--name {
    font-size: 2.8rem;
  }
  body.single-portfolio .building-flats .flat-item .col-avail {
    color: #fff;
    background: #000;
    padding: 5px 7px;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 20px 100%, 0 calc(100% - 15px));;
  }
  #flat-name .label {
    display: none;
  }

}
@media (max-width: 479.98px) {
  body.single-portfolio .shuffle-item {
    width: 100%;
  }
  body.single-portfolio .my-sizer-element {
    width: 100%;
  }
  body.single-portfolio .shuffle-item--height2 img {
    height: calc(300px + 20px);
  }
  body.single-portfolio .shuffle-item--width3 img {
    height: clamp(300px, calc(300px + 10vw), 550px);
  }
  body.single-portfolio .project-info-section {
    /* padding-inline: 0; */
  }
}

.gallery-section {
  margin-bottom: 5rem;

  .gallery-title {
    position: relative;
    /* background: var(--bg-grey);
    padding: 2rem var(--padding--xl);
    clip-path: var(--clip-path-l-md); */
    margin-bottom: 3.5rem;
  }
  /* .gallery-title:before {
    content: '';
    position: absolute;
    top: 0;
    right: 30%;
    width: calc(100px + 15vw);
    height: 100%;
    background-image: url(/wp-content/uploads/2025/05/dc-line-1.svg);
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
  }
  .gallery-title:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: calc(150px + 15vw);
    height: 100%;
    background-image: url(/wp-content/uploads/2025/05/dc-line-2.svg);
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
  } */
}

@media (max-width: 767.98px) {
  .gallery-section .gallery-title {
    text-align: center;
  }
  .gallery-section .gallery-title:before,
  .gallery-section .gallery-title:after {
    display: none;
  }
}

/* --- PAGE: ABOUT */
body.page-id-93 {
  .about-dc-section {
  }
  .branded-slogan {
    font-size: clamp(1.8rem, 5vw + 1.8rem, 2.8rem);
    font-weight: 500;
    letter-spacing: -1px;
    /* color: #515151; */
    /* font-style: italic; */
    line-height: 1.3;
    /* margin: 0 auto; */
    max-width: 450px;
    padding: 3.5rem;
    padding-left: 0;
    text-wrap: balance;
  }
  .point-of-sales {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 250px));
    place-items: center;
    place-content: center;
    background-color: var(--bg-grey);
    clip-path: var(--clip-path-r-md);
    padding: 7.5rem 4.5rem;
  }
  .point-of-sales .pos-item .pos-title {
    font-size: clamp(2.8rem, 15vw, 5.4rem);
    font-weight: 300;
    color: var(--color-dark);
  }
  .point-of-sales .pos-item .post-subtitle {
    font-size: 1.6rem;
    color: var(--color-dark);
    max-width: 100%;
  }
}

/* --- PAGE: SERVICES */
body.page-id-97 {
  .entry-header {
    display: none;
  }
  .section-header {
    text-align: left;
    max-width: 1200px;
  }
  .section-header .section-big-title {
    max-width: clamp(600px, 60vw, 900px);
    margin-left: 0;
  }

  #par-1 {
    height: clamp(400px, calc(300px + 30vw), 700px);
    clip-path: var(--clip-path-l-lg);
  }
  #par-1 .floating-image {
    position: absolute;
    top: -100px;
    right: 0;
    width: 500px;
    z-index: 2;
  }
  #par-1 .floating-image img {
    width: 100%;
    height: auto;
  }
}

@media (max-width: 767.98px) {
  #par-1 .floating-image {
    display: none;
  }
}

.text-medium {
  font-size: var(--font-size-medium-text);
  letter-spacing: -0.02rem;
  font-weight: 300;
  line-height: 160%;
  /* text-wrap: balance; */
}
.text-big {
  font-size: var(--font-size-big-text);
  letter-spacing: -0.1rem;
  /* font-weight: 500; */
  line-height: 140%;
  /* text-wrap: balance; */
}
.text-bold {
  font-weight: 800;
}

@media (max-width: 767.98px) {
  .text-medium {
    font-size: 1.8rem;
  }
  .text-big {
    font-size: 2.6rem;
  }
}

/* --- PAGE: ABOUT */
body.page-id-93 {
  .img-4 {
    width: 500px;
    max-width: 100%;
  }
}

/* --- PAGE: CONTACT */
body.page-id-99 {
  #contact-us-details #contact-header {
    padding-block: 2.5rem;
  }
  #contact-us-details #contact-details .col-1 {
    max-width: 500px;
  }
  #contact-us-details .contact-details {
    padding-top: 2.5rem;
  }
  #contact-us-details .contact-details .info-col {
    display: flex;
    /* align-items: center; */
    flex-direction: column;
    gap: 1.5rem;
    border: 0;
    padding: 1rem 0;
  }
  #contact-us-details .contact-details .info-col h5 {
    /* flex: 0 0 100px; */
    font-size: 1.2rem;
    color: var(--color-text-grey);
    font-weight: 300;
    margin-bottom: 0;
  }
  #contact-us-details .contact-details .info-col a {
    color: var(--color-primary);
    text-decoration: underline;
  }
  #contact-us-details .contact-details .info-col h4 {
    font-size: 2.8rem;
    font-weight: 300;
    margin-bottom: 0;
  }
  #contact-map {
    filter: grayscale(1) contrast(1);
  }
  #contact-follow-us {
    text-align: center;
  }
  .simple-banner {
    height: 100%;
  }
  .simple-banner img {
    max-height: 400px;
  }
  .social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3.5rem;
    padding-block: 2.5rem;
    list-style-type: none;
    margin: 0;
  }
  .social-links a {
    color: var(--color-dark);
    font-size: var(--font-size-xl);
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .contact-form {
    will-change: unset;
  }
  #contact-form .contact-form-container {
    color: var(--color-white);
    /* background-color: var(--bg-grey); */
    background-color: var(--bg-dark);
    background: url('/wp-content/uploads/2025/07/dc-branding-5.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: left top;
    /* clip-path: var(--clip-path-l-xl); */
    /* padding-block: 5rem; */
  }
  #contact-form .cf-title {
    /* color: #fff; */
    text-align: center;
  }
  #contact-form .cf-subtitle {
    font-size: 16px;
    font-weight: 300;
    color: #666;
    text-align: center;
    margin-bottom: 2rem;
  }
  form.wpcf7-form {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
  }

  form.wpcf7-form .row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }

  form.wpcf7-form .col {
    flex: 1 1 100%;
  }

  form.wpcf7-form .col-6 {
    flex: 1 1 calc(50% - 10px);
  }

  form.wpcf7-form .col-12 {
    flex: 1 1 100%;
  }

  form.wpcf7-form h5 {
    display: block;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 7px;
    color: #333;
  }

  form.wpcf7-form .input-wrapper input,
  form.wpcf7-form .input-wrapper textarea {
    font-size: 18px;
    font-weight: 300;
    width: 100%;
    padding: 1.5rem 2.5rem;
    color: var(--color-white);
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    /* border: 1px solid #ccc; */
    /* background-color: transparent; */
    border-radius: 0;
    border: 0;
    box-sizing: border-box;
  }

  form.wpcf7-form .input-wrapper textarea {
    min-height: 150px;
    resize: vertical;
  }

  form.wpcf7-form .submit-button-wrapper {
    /* text-align: right; */
    display: flex;
    justify-content: center;
  }

  form.wpcf7-form .submit-button-wrapper .button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-primary) !important;
    border: 0;
    padding: var(--btn-padding) !important;
    font-size: 1.6rem;
    line-height: 1.4;
    max-width: 400px;
    border-radius: 0;
    width: 100%;
    font-weight: var(--btn-font-weight);
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.3s ease, border 0.3s ease;
  }

  form.wpcf7-form .button:hover,
  form.wpcf7-form .button-light:hover {
    /* background: #003060; */
  }
}
@media (max-width: 1199.98px) {
  body.page-id-99 .simple-banner {
    margin-top: 2.5rem;
  }
}
@media (max-width: 767.98px) {
  body.page-id-99 form.wpcf7-form .input-wrapper input,
  body.page-id-99 form.wpcf7-form .input-wrapper textarea {
    font-size: 1.6rem;
  }
}

/* --------------------------------------- */
/* COMPONENTS */
.section-header {
  /* text-align: center; */
  padding-block: calc(2.5rem + 2vw) calc(2.5rem + 2vw);
}
.section-header h1 {
  /* font-size: 1.4rem; */
  /* font-weight: 200; */
  /* text-transform: uppercase; */
  padding-bottom: 0.5rem;
}
.section-header .section-big-title {
  font-size: clamp(2.4rem, 2.4vw + 12vw, 6.4rem);
  letter-spacing: -1px;
  max-width: 900px;
  /* margin-inline: auto; */
  padding-bottom: 2.5rem;
}
.section-header p {
  /* font-size: 1.6rem; */
  max-width: 800px;
  /* text-wrap: balance; */
  /* margin-inline: auto; */
}

.company-links {
  max-width: 900px;
  margin-left: auto;

  .c-heading {
    padding-bottom: 2.5rem;
  }
  .c-link-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2.5rem 0;
  }
  .c-link-item .c-link {
    font-size: var(--font-size-xxl);
    font-weight: 300;
    color: var(--color-dark);
  }
  .c-link-item .c-icon {
    max-height: 3rem;
  }
  .c-link-item {
    position: relative;
  }
  .c-link-item:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: var(--bg-dark);
  }
}

@media (max-width: 768px) {
  .section-header .section-big-title {
    font-size: 3.6rem;
  }
}

/* ---- PARALLAX */
.parallax-section {
  position: relative;
  height: 400px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;

  .parallax-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: translateY(0);
    will-change: transform;
    z-index: 1;
  }

  .parallax-content {
    position: relative;
    z-index: 2;
  }
}

/* --------------------------------------- */
/* BUTTONS */
.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--btn-padding);

  font-weight: var(--btn-font-weight);
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.3s ease, border 0.3s ease;
  cursor: pointer;
}
a:visited {
  color: var(--color-white);
}
a:hover {
  /* color: var(--btn-text-dark); */
}
/* .button:visited {
  color: var(--color-dark);
} */

.button-glass {
  color: white;
  background: var(--btn-bg);
  backdrop-filter: var(--btn-blur);
  -webkit-backdrop-filter: var(--btn-blur);
  clip-path: polygon(9% 0%, 100% 0%, 100% 66%, 92% 100%, 0% 100%, -6% 60%);
  overflow: hidden;
}
.button-glass:visited {
  color: var(--color-white);
}

.button-primary {
  color: var(--btn-text);
  background: var(--bg-primary);
  /* border: 1px solid var(--btn-border); */
  clip-path: polygon(9% 0%, 100% 0%, 100% 66%, 92% 100%, 0% 100%, -6% 60%);
}
.button-primary:visited {
  color: var(--btn-text);
}

.button-primary:hover {
  background: var(--bg-primary-dark);
  /* border-color: rgba(255, 255, 255, 0.5); */
}

.button-gray {
  color: var(--btn-text-dark);
  background: var(--bg-grey);
  clip-path: polygon(9% 0%, 100% 0%, 100% 66%, 92% 100%, 0% 100%, -6% 60%);
}
.button-gray:hover {
  background-color: var(--bg-grey-hov);
}
.button-light {
  color: var(--btn-text-dark);
  background: var(--bg-light);
  clip-path: polygon(9% 0%, 100% 0%, 100% 66%, 92% 100%, 0% 100%, -6% 60%);
}

.button-primary-outline {
  --border-color: #000;
  --border-width: 0.125em;
  --curve-size: 0.5em;
  --blur: 30px;
  --bg: transparent;
  --color: #afffff;
  color: var(--btn-text-dark);
  position: relative;
  isolation: isolate;
  /*display: inline-grid;
  place-content: center;
  border: 1px solid #000; */
  /* box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.6); */
  /* clip-path: polygon(9% 0%, 100% 0%, 100% 66%, 92% 100%, 0% 100%, -6% 60%); */

  /* background: var(--bg); */
}

/* .button-primary-outline::after,
.button-primary-outline::before {
  content: '';
  position: absolute;
  inset: 0;
} */
.button-primary-outline::before {
  clip-path: inherit;
  content: '';
  display: block;
  position: relative;
  clip-path: polygon(9% 0%, 100% 0%, 100% 66%, 92% 100%, 0% 100%, -6% 60%);
  /* content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: transparent;
  border: 1px solid #000; */
  /* border: var(--border-width) solid var(--border-color); */
  /* clip-path: inherit;
  pointer-events: none;
  clip-path: polygon(9% 0%, 100% 0%, 100% 66%, 92% 100%, 0% 100%, -6% 60%); */
}
.button-primary-outline:visited {
  color: var(--btn-text-dark);
}
.button-primary-outline:hover {
  background: var(--btn-hover-bg);
  border-color: rgba(255, 255, 255, 0.5);
}

.simple-banner {
  img {
    width: 100%;
    height: 100%;
    /* max-height: calc(280px + 5vw); */
    object-fit: cover;
    clip-path: var(--clip-path-l-md);
  }
}

/* SUB SERVICES  */
.dc-sub-services {
  ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    list-style-type: none;
    gap: 1.5rem;
    max-width: 1080px;
    margin: 0;
    padding: 0;
  }
  ul li {
    font-size: var(--font-size-md);
    font-weight: 300;
    background-color: var(--bg-grey);
    padding: 8px 24px;
  }
}

/* BLOCKS */
.styled-text {
  font-size: var(--font-size-medium-text);
  max-width: 1280px;
  text-align: pretty;
}

/* --------------------------------------- */
/* Bootstrap Overrides */
/* .gx-6 > * {
  padding-left: 3.5rem;
  padding-right: 3.5rem;
}
.gx-6 {
  margin-left: -3.5rem;
  margin-right: -3.5rem;
}

.gx-7 > * {
  padding-left: 7.5rem;
  padding-right: 7.5rem;
}
.gx-7 {
  margin-left: -7.5rem;
  margin-right: -7.5rem;
} */
/* .container-fluid {
  padding-inline: 0;
} */

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

@media (min-width: 576px) {
  .container {
    max-width: var(--container-max-width-sm);
  }
}

@media (min-width: 768px) {
  .container {
    max-width: var(--container-max-width-md);
  }
}

@media (min-width: 992px) {
  .container {
    max-width: var(--container-max-width-lg);
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: var(--container-max-width-xl);
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: var(--container-max-width-xxl);
  }
}

/* --------------------------------------- */
/* CUSTOM LEFT-RIGHT CONTAINERS */

/* Base Section Settings */
.section-left,
.section-right {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: var(--spacing-xl) 0;
}

/* Inner Container */
.section-left .section-inner,
.section-right .section-inner {
  width: 100%;
  padding-left: var(--container-padding, 15px);
  padding-right: var(--container-padding, 15px);
}

/* LEFT Aligned Content */
.section-left {
  width: 100%;
  max-width: calc(100% - var(--padding--xl));
  margin-left: auto;
}

/* RIGHT Aligned Content */
.section-right .section-inner {
  margin-left: auto;
  margin-right: 0;
  max-width: 1320px;
}

.px-custom {
  padding-left: var(--padding--xl);
  padding-right: var(--padding--xl);
}
.px-custom-sm {
  padding-left: var(--padding--lg);
  padding-right: var(--padding--lg);
}
.px-custom-left {
  padding-left: var(--padding--xl);
}
.px-custom-right {
  padding-right: var(--padding--xl);
}

/* Responsive Widths Based on Breakpoints */
@media (max-width: 1399.98px) {
  .px-custom {
    padding-left: var(--padding--xl);
    padding-right: var(--padding--xl);
  }
  .px-custom-left {
    padding-left: var(--padding--xl);
  }
  .px-custom-right {
    padding-right: var(--padding--xl);
  }
  .section-left {
    max-width: calc(100% - var(--padding--xl));
  }
}

@media (max-width: 1199.98px) {
  .px-custom {
    padding-left: var(--padding--lg);
    padding-right: var(--padding--lg);
  }
  .px-custom-left {
    padding-left: var(--padding--lg);
  }
  .px-custom-right {
    padding-right: var(--padding--lg);
  }
  .section-left {
    max-width: calc(100% - var(--padding--lg));
  }
}

@media (max-width: 991.98px) {
  .px-custom {
    padding-left: var(--padding--md);
    padding-right: var(--padding--md);
  }
  .px-custom-left {
    padding-left: var(--padding--md);
  }
  .px-custom-right {
    padding-right: var(--padding--md);
  }
  .px-custom-sm {
    padding-left: var(--padding--sm);
    padding-right: var(--padding--sm);
  }
  .section-left {
    max-width: calc(100% - var(--padding--md));
  }
}

@media (max-width: 767.98px) {
  .px-custom {
    padding-left: var(--padding--sm);
    padding-right: var(--padding--sm);
  }
  .px-custom-sm {
    padding-left: var(--padding--xs);
    padding-right: var(--padding--xs);
  }
  .px-custom-left {
    padding-left: var(--padding--sm);
  }
  .px-custom-right {
    padding-right: var(--padding--sm);
  }
  .section-left {
    max-width: calc(100% - var(--padding--sm));
  }
}

@media (max-width: 575.98px) {
  .px-custom {
    padding-left: var(--padding--xs);
    padding-right: var(--padding--xs);
  }
  .px-custom-left {
    padding-left: var(--padding--xs);
  }
  .px-custom-right {
    padding-right: var(--padding--sm);
  }
  .section-left {
    max-width: calc(100% - var(--padding--xs));
  }
}

/* --------------------------------------- */
/* CUSTOM RESET */
.page-content,
.entry-content,
.entry-summary {
  margin: 0;
}
/* .container-fluid {
  padding-inline: 0;
} */

/* effects */

/* [data-motion] {
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px); 
  will-change: opacity, transform;
  transition: none !important;
}

[data-motion].motion-visible {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
} */
[data-motion] {
  opacity: 0;
}

/* Optional slide, scale, and direction */
[data-motion='fade'] {
  transform: none; /* only fades in */
}
[data-motion='slide-left'] {
  transform: translateX(-40px);
}
[data-motion='slide-right'] {
  transform: translateX(40px);
}
[data-motion='slide-up'] {
  transform: translateY(40px);
}
[data-motion='scale-in'] {
  transform: scale(0.9);
}

/* Masonry */

.masonry-grid-item {
  width: calc(33.333% - 0.5rem);
  padding: 0.5rem;
  display: inline-block;

  @media (max-width: 767.98px) {
    width: calc(50% - 0.5rem);
  }

  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
}

.masonry-grid-item:nth-child(2n) {
  aspect-ratio: 1/1;
}

/* .masonry-grid-item:nth-child(4n) {
  aspect-ratio: 3/2;
} */
/* .masonry-grid-item:nth-child(5) {
  aspect-ratio: 3/2;
  width: 100%;
} */

/* ANIMATIONS */
[data-splt] .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

[data-splt] .word.revealed {
  opacity: 1;
  transform: translateY(0);
}

.split-heading {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

.split-paragraph {
  overflow: hidden;

  p {
    margin: 0;
  }
}
.line {
  display: block;
}

.about-dc-image img {
  display: block;
  will-change: transform;
}

/* images clip path */
/* .animate-image {
  clip-path: inset(0 100% 0 0);
  opacity: 1;
} */

/* LENIS */
.fade-on-scroll {
  opacity: 0;
  transform: translateY(80px) scale(0.95);
  will-change: transform, opacity;
}
.no-fade-mobile {
  opacity: 1;
  transform: none;
}
/* .fade-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease-out;
}

.fade-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
} */

/* .fade-on-scroll {
  opacity: 0;
  transform: translateY(20px);
}
.fade-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
} */

html.lenis {
  height: auto;
}
.lenis.lenis-smooth {
  scroll-behavior: auto;
}
.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}
.lenis.lenis-stopped {
  overflow: hidden;
}
