@charset "UTF-8";
/***********
 * GENERAL *
 ***********/
/******************************************************************************
 * --------------------------------- GLOBAL --------------------------------- *
 ******************************************************************************/
* {
  font-family: var(--secondary-font);
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

:root {
  /* FONTS */
  --primary-font: "Noto Serif Display", serif;
  --secondary-font: "helvetica-neue-lt-pro", sans-serif;
  /* COLORS */
  --theme-color-blue: #212121;
  --theme-color-blue-2: #2e3033;
  --body-color-white: #FFFFFF;
  --theme-color-black: #000;
  --theme-color-lightgrey: #ECECEC;
  --theme-color-grey: #353535;
  --theme-color-medgrey: #838383;
  /* SIZES */
  --text-size-160: clamp(50px, 8vw, 160px);
  --text-size-120: clamp(42px, 8vw, 120px);
  --text-size-100: clamp(40px, 8vw, 100px);
  --text-size-80: clamp(35px, 7vw, 80px);
  --text-size-60: clamp(30px, 5vw, 60px);
  --text-size-58: clamp(30px, 4vw, 58px);
  --text-size-48: clamp(28px, 4vw, 48px);
  --text-size-40: clamp(25px, 4vw, 40px);
  --text-size-32: clamp(25px, 2vw, 32px);
  --text-size-30: clamp(24px, 2vw, 30px);
  --text-size-26: clamp(22px, 2vw, 26px);
  --text-size-24: clamp(20px, 1.8vw, 24px);
  --text-size-22: clamp(18px, 1.6vw, 22px);
  --text-size-20: clamp(18px, 1.4vw, 20px);
  --text-size-18: clamp(16px, 1.2vw, 18px);
  --text-size-96: clamp(40px, 8vw, 96px);
  --text-size-84: clamp(36px, 7vw, 84px);
  --text-size-64: clamp(30px, 5vw, 64px);
  --text-size-46: clamp(26px, 4vw, 46px);
  --text-size-28: clamp(24px, 2vw, 28px);
  --text-size-16: clamp(14px, 1vw, 16px);
}

::selection {
  background: var(--theme-color-black);
  color: white;
}

::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgb(94, 98, 104);
  background-color: var(--theme-color-black);
}

::-webkit-scrollbar {
  width: 7px;
  background-color: var(--theme-color-black);
}

::-webkit-scrollbar-thumb {
  background-color: var(--theme-color-black);
}

.section-top-padding {
  padding-top: clamp(2.5rem, 8vw, 5rem);
}

.section-bottom-padding {
  padding-bottom: clamp(2.5rem, 8vw, 5rem);
}

.title_space_before::before {
  content: "";
  padding-left: clamp(1.5rem, 4vw, 9rem);
  padding-right: clamp(1.5rem, 4vw, 9rem);
}

#breadcrumbs {
  padding-left: 6px;
  font-family: var(--secondary-font);
  font-weight: 200;
  font-size: var(--txt-xs);
  color: white;
  margin-bottom: 0.8rem;
  text-transform: capitalize;
}
#breadcrumbs a:hover {
  text-decoration: underline;
}
#breadcrumbs span {
  text-transform: uppercase;
  transition: all 0.3s ease;
}
#breadcrumbs span:hover {
  opacity: 1;
}
#breadcrumbs span.breadcrumb_last {
  opacity: 1;
}

.btn {
  font-family: var(--secondary-font);
  font-size: var(--text-size-18);
  font-weight: 200;
  color: white;
  background-color: var(--theme-color-blue);
  border: 1px solid var(--theme-color-blue);
  padding: 0.7rem 3rem 0.8rem 1.2rem;
  display: flex;
  align-items: center;
  position: relative;
}
.btn:before {
  content: "";
  background-image: url(../../assets/images/arrow_btn.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  position: absolute;
  right: 16.5px;
  top: 12px;
  transform: rotate(1deg);
  transform-origin: 50% 100%;
  transition: 0.3s transform ease;
}
.btn:hover:before {
  transform: rotate(44deg);
}

.btn.light_btn {
  background: transparent;
  border-color: white;
  backdrop-filter: blur(3px);
}

.btn.light_btn_black {
  background: transparent;
  border-color: var(--theme-color-blue);
  color: var(--theme-color-blue);
  backdrop-filter: blur(3px);
}

.btn.btn_white {
  color: var(--theme-color-blue);
  background-color: white;
  border: 1px solid white;
}
.btn.btn_white:before {
  background-image: url(../../assets/images/arrow_blue.svg);
  background-size: initial;
}

.btn.light_btn_white {
  background: transparent;
  border-color: white;
  color: white;
  backdrop-filter: blur(3px);
}
.btn.light_btn_white:before {
  background-color: white;
}

.btn_active_ftr, .btn_reset_ftr {
  font-size: 18px;
  border: 1px solid var(--theme-color-blue);
  padding: 0.5rem 3.3rem 0.7rem 2rem;
  border-radius: 5rem;
  position: relative;
  transition: all 0.3s ease;
}
.btn_active_ftr::after, .btn_reset_ftr::after {
  content: "\e95a";
  font-family: "icomoon", sans-serif; /* Corretto da font-size a font-family */
  font-size: 1rem;
  position: absolute;
  right: 22px;
  top: 25%;
}
.btn_active_ftr:hover, .btn_reset_ftr:hover {
  background-color: var(--theme-color-blue);
  color: white;
}

.btn_reset_ftr {
  border: 1px solid var(--theme-color-blue);
  color: var(--theme-color-blue);
  transition: all 0.3s ease;
}
.btn_reset_ftr:hover {
  background-color: var(--theme-color-blue);
  color: white;
}

/***************
 * BTN STYLING *
 ***************/
.cs-btn-slide {
  display: inline-block;
  position: relative;
}

.cs-btn-slide__inner {
  position: relative;
  display: block;
  overflow: hidden;
  height: 1.2em; /* the "visible" line height, keep as-is */
  padding-bottom: 0.15em; /* buffer for descenders, tune per font */
  box-sizing: content-box;
}

.cs-btn-slide__text {
  display: block;
  line-height: 1.2em;
  padding-bottom: 0.15em; /* match the buffer so both texts share the same box height */
  transition: transform 0.35s ease;
  will-change: transform;
}

.cs-btn-slide__text--top {
  transform: translateY(0);
}

.cs-btn-slide__text--bottom {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(100%);
}

.cs-btn-slide:hover .cs-btn-slide__text--top {
  transform: translateY(-100%);
}

.cs-btn-slide:hover .cs-btn-slide__text--bottom {
  transform: translateY(0);
}

/**************
 * ARROW ONLY *
 **************/
.arrow_span {
  width: 30px;
  height: 30px;
  position: relative;
}
.arrow_span:before {
  content: "";
  background-image: url(../../assets/images/arrow_black.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  transform: rotate(1deg);
  transform-origin: 50% 100%;
  transition: 0.3s transform ease;
}

/**********
 * IFRAME *
 **********/
.video-cover-iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none; /* optional: since controls are hidden anyway, avoids stray click/hover issues */
  z-index: 5;
}

/***************
 * LIST CYRCLE *
 ***************/
.list-disc_theme {
  position: relative;
  padding-left: 3.5rem !important;
}
.list-disc_theme::before {
  content: "";
  position: absolute;
  left: 2rem;
  top: 45%;
  width: 0.5rem;
  height: 0.5rem;
  background-color: white;
  border-radius: 50%;
}

/************
 * FANCYBOX *
 ************/
.fancybox__caption {
  text-align: center;
}

/**********
 * LOADER *
 **********/
#loader {
  background: var(--theme-color-black);
}
#loader .custom-logo {
  width: 5rem;
}

/*******************
 * EDITOR WYS TEXT *
 *******************/
.editor_text a:hover {
  text-decoration: underline;
}

/****************************
 * REVERSED THEMES TEMPLATE *
 ****************************/
.reversed_colors_template {
  background: #353535;
}
.reversed_colors_template .inc_module_1_2 #breadcrumbs span {
  color: white;
}
.reversed_colors_template .inc_module_1_2 {
  color: white;
}
.reversed_colors_template .inc_contactform {
  background: white;
}

/**********
 * HEADER *
 **********/
/**********
 * HEADER *
 **********/
#site-header {
  background: white;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
}
#site-header a {
  font-family: var(--secondary-font);
  font-size: var(--text-size-24);
  font-weight: 300;
  color: black !important;
}
#site-header #mobile-menu-toggle {
  font-size: var(--text-size-24);
  font-weight: 400;
  text-transform: uppercase;
}
#site-header #mobile-menu-toggle .icon_burger {
  width: 20px;
  height: 10px;
}
#site-header .custom-logo-link {
  width: fit-content;
  max-width: 10.5rem;
}
#site-header #mobile-menu-toggle {
  font-size: var(--text-size-18);
}
#site-header .custom-logo-link.sticky_logo {
  display: none;
}
#site-header .lang_switch_btn {
  color: black;
}
#site-header .lang_switch {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0 0 1rem;
  display: none;
}

#site-header.light_menu .lang_switch_btn {
  color: white;
}
#site-header.light_menu {
  background: black;
}
#site-header.light_menu #mobile-menu-toggle {
  color: white;
}
#site-header.light_menu li a {
  color: white !important;
}
#site-header.light_menu .custom-logo-link {
  display: none;
}
#site-header.light_menu .custom-logo-link.sticky_logo {
  display: block;
}
#site-header.light_menu .lang_switch a, #site-header.light_menu .lang_switch span {
  color: black;
}

/********
 * MENU *
 ********/
#nav-overlay {
  max-width: 60rem;
  box-shadow: 6px 0px 80px 0px rgba(0, 0, 0, 0.1098039216);
}
#nav-overlay #nav-close-btn {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-family: var(--secondary-font);
  font-size: var(--text-size-20);
  text-transform: uppercase;
  color: black;
  padding-left: 10px;
}
#nav-overlay #nav-close-btn svg {
  position: relative;
  top: 1.8px;
  right: 8px;
}
#nav-overlay #panel-back-label {
  font-family: var(--primary-font);
  font-size: var(--text-size-24);
  font-weight: 400;
  padding-left: 5px;
}
#nav-overlay nav button, #nav-overlay nav a {
  font-family: var(--primary-font);
  font-size: var(--text-size-46);
  font-weight: 400;
}
#nav-overlay footer nav a {
  font-size: var(--text-size-20) !important;
  color: black;
}

/* ==========================================================================
MEGA MENU SUBMENU LINKS (Hover, Shift & Slash Prefix)
========================================================================== */
/* 1. Default Link State */
.mega-menu-link {
  position: relative;
  display: inline-block;
  color: #5F5F5F !important; /* Default text color */
  padding-left: 0;
  font-weight: 400;
  text-decoration: none;
  /* Smooth animation for color shift and padding expansion */
  transition: color 0.2s ease-in-out, padding-left 0.2s ease-in-out;
}

/* 2. Slash Prefix (`// `) - Hidden by default at left: 0 */
.mega-menu-link::before {
  content: "// "; /* "// " with a non-breaking space */
  position: absolute;
  left: 0;
  opacity: 0;
  color: #000000;
  pointer-events: none;
  transition: opacity 0.2s ease-in-out;
}

/* 3. Hover State: Turn Black, Slide Right, Show "// " */
.mega-menu-link:hover {
  color: #000000 !important; /* Hover text color */
  font-weight: 700;
  padding-left: 1.25rem; /* ~20px shift right to make room for "// " */
}

.mega-menu-link:hover::before {
  opacity: 1;
}

/* 4. Group Dimming (Dims non-hovered items when hovering over the menu grid) */
.mega-submenu-list:hover .mega-menu-link {
  color: #a3a3a3;
}

.mega-submenu-list:hover .mega-menu-link:hover {
  color: #000000; /* Keeps active link black */
}

/**********
 * FOOTER *
 **********/
/**********
 * FOOTER *
 **********/
footer.website_footer {
  background: var(--theme-color-black);
}
footer.website_footer li a:hover {
  text-decoration: underline;
}
footer.website_footer .footer_menus_title {
  font-family: var(--secondary-font);
  font-weight: 400;
  font-size: var(--text-size-20);
  text-transform: uppercase;
}
footer.website_footer .footer_menu_item {
  font-family: var(--secondary-font);
  font-weight: 400;
  font-size: var(--text-size-40);
}
footer.website_footer .diff_font_col .footer_menu_item {
  font-family: var(--primary-font);
  font-weight: 400;
  font-size: var(--text-size-22);
}
footer.website_footer .primaryfooter_menu ul {
  line-height: 1.2;
}
footer.website_footer .primaryfooter_menu .custom-logo-link img {
  width: 100%;
  min-width: 8rem;
  max-width: 15rem;
}
footer.website_footer .primaryfooter_menu .menu-item a {
  font-size: 1.3rem;
}
footer.website_footer .secondfooter_menu {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 1.4rem 0 0.5rem;
}
footer.website_footer .secondfooter_menu p, footer.website_footer .secondfooter_menu a, footer.website_footer .secondfooter_menu li {
  font-family: var(--secondary-font) !important;
  font-size: var(--text-size-16) !important;
}
footer.website_footer .footer_text_company_details {
  color: white;
  font-family: var(--secondary-font);
  font-weight: 300;
  font-size: var(--text-size-24);
}
footer.website_footer .footer_text_company_details strong {
  color: #D7D7D7;
  font-weight: 500;
  font-family: var(--secondary-font);
  font-size: var(--text-size-20);
  text-transform: uppercase;
  display: block;
}
footer.website_footer .footer_text_company_details a {
  text-decoration: underline;
}

/*********
 * PARTS *
 *********/
/************
 * MODULE 0 *
 ************/
.inc_module_0 .scroll_icon {
  font-family: var(--secondary-font);
  font-size: var(--text-size-16);
  text-transform: uppercase;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 8rem;
  width: 100%;
  display: flex;
  justify-content: center;
}
.inc_module_0 .scroll_icon:after {
  content: "";
  position: absolute;
  bottom: 0;
  height: 75%;
  width: 1px;
  background: white;
}

/****************
 * CONTACT FORM *
 ****************/
.inc_contactform .ts-control input[type=text] {
  border: none !important;
}
.inc_contactform .cs-label {
  font-size: 20px;
  font-family: var(--primary-font);
}
.inc_contactform [multiple], .inc_contactform [type=date], .inc_contactform [type=datetime-local], .inc_contactform [type=email], .inc_contactform [type=month], .inc_contactform [type=number], .inc_contactform [type=password], .inc_contactform [type=search], .inc_contactform [type=tel], .inc_contactform [type=text], .inc_contactform [type=time], .inc_contactform [type=url], .inc_contactform [type=week], .inc_contactform select, .inc_contactform textarea {
  border: none !important;
  border-bottom: 1px solid #ccc !important;
  padding-left: 0;
}
.inc_contactform [multiple]:focus, .inc_contactform [type=date]:focus, .inc_contactform [type=datetime-local]:focus, .inc_contactform [type=email]:focus, .inc_contactform [type=month]:focus, .inc_contactform [type=number]:focus, .inc_contactform [type=password]:focus, .inc_contactform [type=search]:focus, .inc_contactform [type=tel]:focus, .inc_contactform [type=text]:focus, .inc_contactform [type=time]:focus, .inc_contactform [type=url]:focus, .inc_contactform [type=week]:focus, .inc_contactform select:focus, .inc_contactform textarea:focus {
  --tw-ring-color: trasparent;
}
.inc_contactform select#city-state-picker {
  visibility: hidden !important;
}
.inc_contactform {
  /* Tom Select skin — inherits your cs-* design tokens */
}
.inc_contactform .ts-wrapper {
  width: 100%;
}
.inc_contactform .ts-control {
  /* Match your cs-select appearance */
  border: none;
  border-bottom: 1px solid #cccccc;
  border-radius: 0;
  background: transparent;
  padding: 0.7rem 0;
  box-shadow: none;
  cursor: pointer;
}
.inc_contactform .ts-control input {
  font-family: inherit;
  color: black;
  font-size: 1rem;
}
.inc_contactform .ts-dropdown {
  border: 1px solid rgba(128, 128, 128, 0.2117647059);
  border-radius: 4px;
  background: white;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  z-index: 9999;
}
.inc_contactform .ts-dropdown .option {
  padding: 0.6rem 1rem;
  color: black;
  cursor: pointer;
}
.inc_contactform .ts-dropdown .option:hover,
.inc_contactform .ts-dropdown .option.active {
  background: var(--theme-color-blue);
  color: white;
}
.inc_contactform .ts-dropdown .no-results {
  padding: 0.6rem 1rem;
  opacity: 0.5;
}
.inc_contactform .cs-btn {
  font-size: var(--text-size-18);
  font-weight: 400;
  color: white;
  background-color: var(--theme-color-blue) !important;
  border: 1px solid var(--theme-color-blue);
  padding: 0.7rem 2.9rem 0.8rem 2rem;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.inc_contactform .cs-btn::before {
  content: "";
  background-color: white;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  position: relative;
  right: 9px;
  top: 1.8px;
}
.inc_contactform .wpcf7-spinner {
  top: -46px;
  right: -130px;
  opacity: 1;
}
.inc_contactform .wpcf7-spinner::before {
  top: 4px;
  left: 4px;
  width: 6px;
  height: 6px;
}
.inc_contactform .wpcf7-spinner::after {
  content: "";
  color: white;
  background-image: url(../../assets/images/arrow_btn.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  position: absolute;
  left: 4px;
  top: 10px;
  opacity: 1 !important;
  visibility: visible;
}
.inc_contactform .wpcf7-spinner {
  transform: rotate(1deg);
  transform-origin: 50% 100%;
  transition: 0.3s transform ease;
}
.inc_contactform .wpcf7-spinner:hover .wpcf7-spinner {
  transform: rotate(44deg);
}
.inc_contactform .wpcf7 .wpcf7-submit:disabled {
  opacity: 0.5;
}
.inc_contactform form.submitting .wpcf7-spinner::after {
  display: none;
}
.inc_contactform form.submitting .wpcf7-spinner {
  top: -38px;
}
.inc_contactform .wpcf7-list-item {
  margin: 0;
}

/************
 * MODULE 1 *
 ************/
.inc_ex_module_1 .stats-title {
  font-size: var(--text-size-40);
  font-weight: 300;
  line-height: 1.25;
  letter-spacing: -0.5px;
  margin-bottom: 60px;
}
.inc_ex_module_1 .stats-divider {
  width: 100%;
  height: 1px;
  background-color: #e5e5e5;
  border: none;
  margin-bottom: 60px;
}
.inc_ex_module_1 .stat-number-wrapper span {
  font-family: var(--primary-font);
}
.inc_ex_module_1 .stat-number-wrapper {
  font-size: var(--text-size-80);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 15px;
  display: flex;
  justify-content: center;
  align-items: baseline;
}
.inc_ex_module_1 .stat-label {
  font-size: var(--text-size-22);
  font-weight: 300;
  line-height: 1.4;
}
.inc_ex_module_1 .stats-btn-wrapper {
  margin-top: 70px;
}
.inc_ex_module_1 .stats-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: #000000;
  color: #ffffff;
  padding: 16px 36px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 400;
  transition: background-color 0.3s ease, transform 0.2s ease;
}
.inc_ex_module_1 .stats-btn:hover {
  background-color: #222222;
  transform: translateY(-2px);
}

/************
 * MODULE 3 *
 ************/
.inc_ex_module_3 {
  background-color: #ffffff;
  padding: 100px 20px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #111111;
}
.inc_ex_module_3 .gallery-title {
  font-family: var(--primary-font);
  font-size: var(--text-size-120);
  font-weight: 400;
  line-height: 1.15;
  text-align: center;
  letter-spacing: -0.5px;
  margin-bottom: 40px;
}
.inc_ex_module_3 .gallery-subtitle {
  font-size: var(--text-size-20);
  font-weight: 300;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 70px;
}
.inc_ex_module_3 .gallery-card {
  display: block;
  text-decoration: none;
  color: #111111;
  overflow: hidden;
}
.inc_ex_module_3 .gallery-image-wrapper {
  width: 100%;
  overflow: hidden;
  background-color: #f4f4f4;
}
.inc_ex_module_3 .gallery-image-wrapper img {
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.inc_ex_module_3 .gallery-card:hover .gallery-image-wrapper img {
  transform: scale(1.04);
}
.inc_ex_module_3 .gallery-item-title {
  font-size: var(--text-size-48);
  font-weight: 300;
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.inc_ex_module_3 .gallery-item-icon {
  font-size: 16px;
  transition: transform 0.3s ease;
}
.inc_ex_module_3 .gallery-card:hover .gallery-item-icon {
  transform: translate(3px, -3px);
}
.inc_ex_module_3 .gallery-btn-wrapper {
  margin-top: 60px;
  text-align: center;
}
.inc_ex_module_3 {
  /* Standardized button styles for cs-btn-slide */
}
.inc_ex_module_3 .cs-btn-slide {
  display: inline-block;
  background-color: #000000;
  color: #ffffff;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  overflow: hidden;
  position: relative;
  transition: background-color 0.3s ease, transform 0.2s ease;
}
.inc_ex_module_3 .cs-btn-slide:hover {
  background-color: #222222;
  transform: translateY(-2px);
}
.inc_ex_module_3 .cs-btn-slide__inner {
  display: block;
  position: relative;
}
.inc_ex_module_3 .cs-btn-slide__text {
  display: block;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.inc_ex_module_3 {
  /* Asymmetric grid layout */
}
.inc_ex_module_3 .grid-col-left {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.inc_ex_module_3 .grid-col-right {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin-top: 40px;
}

/************
 * MODULE 4 *
 ************/
.inc_ex_module_4 {
  background-color: #ffffff;
  margin: 5rem 0;
}
.inc_ex_module_4 .history-card-inner {
  background-color: #ebebeb;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 80px 60px;
  height: 100%;
}
.inc_ex_module_4 .history-title {
  font-size: var(--text-size-80);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 40px;
}
.inc_ex_module_4 .history-description {
  font-size: var(--text-size-24);
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 50px;
  max-width: 50rem;
}
.inc_ex_module_4 .history-image-wrapper {
  width: 100%;
  height: 100vh;
  max-height: 90vh;
  overflow: hidden;
}
.inc_ex_module_4 .history-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.inc_ex_module_4 {
  /* Button Styling overriding default layout for outlined theme */
}
.inc_ex_module_4 .btn-history-outline {
  display: inline-block;
  background-color: transparent;
  color: #111111;
  border: 1px solid #111111;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  transition: all 0.3s ease;
}
.inc_ex_module_4 .btn-history-outline:hover {
  background-color: #111111;
  color: #ffffff;
  transform: translateY(-2px);
}
.inc_ex_module_4 .cs-btn-slide__inner {
  display: block;
  position: relative;
}
.inc_ex_module_4 .cs-btn-slide__text {
  display: block;
}

/************
 * MODULE 5 *
 ************/
.inc_ex_module_5 {
  background-color: #000000;
  width: 100%;
  color: #ffffff;
  overflow: hidden;
  margin: 5rem 0;
}
.inc_ex_module_5 .inlay-image-wrapper {
  width: 100%;
  height: 100vh;
  max-height: 90vh;
  min-height: 550px;
}
.inc_ex_module_5 .inlay-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.inc_ex_module_5 .inlay-content-wrapper {
  background-color: #000000;
  color: #ffffff;
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.inc_ex_module_5 .inlay-title {
  font-size: var(--text-size-80);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 30px;
}
.inc_ex_module_5 .inlay-description {
  font-size: var(--text-size-24);
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 50rem;
}
.inc_ex_module_5 {
  /* Dark theme button overriding for outlined style */
}
.inc_ex_module_5 .btn-inlay-outline {
  display: inline-block;
  background-color: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  transition: all 0.3s ease;
}
.inc_ex_module_5 .btn-inlay-outline:hover {
  background-color: #ffffff;
  color: #000000;
  transform: translateY(-2px);
}

/************
 * MODULE 6 *
 ************/
.inc_ex_module_6 {
  background-color: #000000;
  color: #ffffff;
  padding: 100px 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  overflow: hidden;
}
.inc_ex_module_6 .slider-header-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
}
.inc_ex_module_6 .slider-title {
  font-size: var(--text-size-80);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 24px;
  color: #ffffff;
}
.inc_ex_module_6 .slider-subtitle {
  font-size: var(--text-size-20);
  font-weight: 300;
  line-height: 1.6;
  max-width: 40rem;
}
.inc_ex_module_6 .materials-swiper {
  width: 100%;
  overflow: visible !important;
}
.inc_ex_module_6 .material-card {
  display: block;
  text-decoration: none;
  color: #ffffff;
  outline: none;
}
.inc_ex_module_6 .material-card:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 4px;
}
.inc_ex_module_6 .material-image-wrapper {
  width: 100%;
  aspect-ratio: 4/5;
  overflow: hidden;
  background-color: #1a1a1a;
  margin-bottom: 20px;
}
.inc_ex_module_6 .material-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.inc_ex_module_6 .material-card:hover .material-image-wrapper img,
.inc_ex_module_6 .material-card:focus-visible .material-image-wrapper img {
  transform: scale(1.05);
}
.inc_ex_module_6 .material-title {
  font-size: var(--text-size-32);
  font-weight: 300;
  color: #ffffff;
}
.inc_ex_module_6 {
  /* Accessibility focus state for dynamic button */
}
.inc_ex_module_6 .btn-slider-outline {
  display: inline-block;
  background-color: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.inc_ex_module_6 .btn-slider-outline:hover,
.inc_ex_module_6 .btn-slider-outline:focus-visible {
  background-color: #ffffff;
  color: #000000;
  transform: translateY(-2px);
}

/************
 * MODULE 7 *
 ************/
.inc_ex_module_7 {
  background-color: #000000;
  color: #ffffff;
  padding: 100px 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  overflow: hidden;
}
.inc_ex_module_7 .projects-header-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 70px;
}
.inc_ex_module_7 .projects-title {
  font-size: var(--text-size-80);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 24px;
  color: #ffffff;
}
.inc_ex_module_7 .projects-subtitle {
  font-size: var(--text-size-20);
  font-weight: 300;
  line-height: 1.6;
  max-width: 40rem;
}
.inc_ex_module_7 {
  /* Swiper Base Styling */
}
.inc_ex_module_7 .projects-swiper {
  width: 100%;
  overflow: visible !important;
}
.inc_ex_module_7 .projects-swiper .swiper-slide {
  height: auto;
  display: flex;
  flex-direction: column;
}
.inc_ex_module_7 {
  /* Asymmetric Top Offset for alternate slides */
}
.inc_ex_module_7 .slide-offset-top {
  margin-top: 80px;
}
.inc_ex_module_7 .project-card {
  display: block;
  text-decoration: none;
  color: #ffffff;
  outline: none;
  width: 100%;
}
.inc_ex_module_7 .project-image-wrapper {
  width: 100%;
  overflow: hidden;
  background-color: #1a1a1a;
}
.inc_ex_module_7 .project-image-wrapper img {
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.inc_ex_module_7 .project-card:hover .project-image-wrapper img,
.inc_ex_module_7 .project-card:focus-visible .project-image-wrapper img {
  transform: scale(1.04);
}
.inc_ex_module_7 .project-item-title {
  font-size: var(--text-size-32);
  font-weight: 300;
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
}
.inc_ex_module_7 .project-item-icon {
  font-size: 16px;
  transition: transform 0.3s ease;
}
.inc_ex_module_7 .project-card:hover .project-item-icon {
  transform: translate(3px, -3px);
}
.inc_ex_module_7 {
  /* Dynamic Button Dark Outline Theme */
}
.inc_ex_module_7 .btn-dark-outline {
  display: inline-block;
  background-color: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.inc_ex_module_7 .btn-dark-outline:hover,
.inc_ex_module_7 .btn-dark-outline:focus-visible {
  background-color: #ffffff;
  color: #000000;
  transform: translateY(-2px);
}

/************
 * MODULE 8 *
 ************/
.inc_ex_module_8 {
  position: relative;
  width: 100%;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background-color: #111111;
  color: #ffffff;
  padding: 80px 20px;
  /* Full-bleed background image with dark overlay */
}
.inc_ex_module_8 .quote-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.inc_ex_module_8 .quote-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.inc_ex_module_8 .quote-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.65) 100%);
  z-index: 2;
}
.inc_ex_module_8 {
  /* Content Styling */
}
.inc_ex_module_8 .quote-hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  margin: 0 auto;
}
.inc_ex_module_8 .quote-text {
  font-family: var(--primary-font);
  font-size: var(--text-size-60);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.3px;
  color: #ffffff;
  margin-bottom: 30px;
}
.inc_ex_module_8 .quote-author {
  font-size: var(--text-size-20);
  font-weight: 300;
  letter-spacing: 0.5px;
  color: #dddddd;
  margin-bottom: 50px;
}
.inc_ex_module_8 {
  /* Dynamic Button Styling for Hero Theme */
}
.inc_ex_module_8 .btn-quote-hero {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  transition: all 0.3s ease;
}
.inc_ex_module_8 .btn-quote-hero:hover,
.inc_ex_module_8 .btn-quote-hero:focus-visible {
  background-color: #ffffff;
  color: #000000;
  border-color: #ffffff;
  transform: translateY(-2px);
}

/************
 * MODULE 9 *
 ************/
.inc_ex_module_9 {
  background-color: #000000;
  color: #ffffff;
  padding: 120px 20px;
  text-align: center;
  font-family: var(--secondary-font);
}
.inc_ex_module_9 .cta-title {
  font-size: var(--text-size-58);
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: -0.4px;
  color: #ffffff;
  margin-bottom: 50px;
}
.inc_ex_module_9 .cta-btn-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.inc_ex_module_9 {
  /* Solid Pill White Button Theme */
}
.inc_ex_module_9 .btn-cta-white {
  display: inline-block;
  background-color: #ffffff;
  color: #000000;
  padding: 16px 36px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 400;
  transition: background-color 0.3s ease, transform 0.2s ease, color 0.3s ease;
}
.inc_ex_module_9 .btn-cta-white:hover,
.inc_ex_module_9 .btn-cta-white:focus-visible {
  background-color: #e5e5e5;
  color: #000000;
  transform: translateY(-2px);
}

/*************
 * MODULE 10 *
 *************/
.inc_ex_module_10 {
  position: relative;
  width: 100%;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background-color: #000000;
  color: #ffffff;
  /* Full-width Background Image Setup */
}
.inc_ex_module_10 .banner-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.inc_ex_module_10 .banner-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.inc_ex_module_10 .banner-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 2;
}
.inc_ex_module_10 {
  /* Floating Center Content */
}
.inc_ex_module_10 .banner-hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.inc_ex_module_10 .banner-title {
  font-family: var(--primary-font);
  font-size: var(--text-size-120);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.5px;
  color: #ffffff;
  margin-bottom: 20px;
}
.inc_ex_module_10 {
  /* Minimalist Ghost Link Button */
}
.inc_ex_module_10 .btn-banner-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: transparent;
  color: #ffffff;
  text-decoration: none;
  font-size: var(--text-size-32);
  font-weight: 300;
  letter-spacing: 0.3px;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.inc_ex_module_10 .btn-banner-link:hover,
.inc_ex_module_10 .btn-banner-link:focus-visible {
  opacity: 0.8;
  transform: translateY(-2px);
}

/*************
 * MODULE 11 *
 *************/
.inc_ex_module_11 {
  background-color: #ffffff;
  color: #111111;
  padding-top: 50px;
  font-family: var(--primary-font);
  /* Yoast Breadcrumb Styling Overrides */
}
.inc_ex_module_11 .product-breadcrumb {
  text-align: center;
  font-size: 13px;
  color: #666666;
  margin-bottom: 25px;
}
.inc_ex_module_11 .product-breadcrumb a {
  color: #111111;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.inc_ex_module_11 .product-breadcrumb a:hover {
  opacity: 0.7;
}
.inc_ex_module_11 .product-title {
  font-family: var(--primary-font);
  font-size: var(--text-size-120);
  font-weight: 400;
  line-height: 1.1;
  text-align: center;
  letter-spacing: -0.5px;
  margin-bottom: 30px;
  color: #111111;
}
.inc_ex_module_11 .product-description {
  font-size: var(--text-size-24);
  font-weight: 300;
  line-height: 1.6;
  color: #333333;
  text-align: center;
  max-width: 50rem;
  margin: 0 auto 60px auto;
}
.inc_ex_module_11 {
  /* Fancybox Clickable Image Container */
}
.inc_ex_module_11 .product-gallery-preview {
  display: block;
  width: 100%;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.inc_ex_module_11 .product-gallery-preview img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.inc_ex_module_11 .product-gallery-preview:hover img,
.inc_ex_module_11 .product-gallery-preview:focus-visible img {
  transform: scale(1.02);
}

/*************
 * MODULE 12 *
 *************/
.inc_ex_module_12 {
  background-color: #ffffff;
  color: #111111;
  padding: 80px 20px;
  font-family: var(--secondary-font);
}
.inc_ex_module_12 .formats-title {
  font-family: var(--secondary-font);
  font-size: var(--text-size-80);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
  color: #111111;
}
.inc_ex_module_12 .formats-subtitle {
  font-size: var(--text-size-24);
  font-weight: 300;
  color: #444444;
  margin-bottom: 50px;
}
.inc_ex_module_12 {
  /* Responsive Table Container */
}
.inc_ex_module_12 .formats-table-wrapper {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.inc_ex_module_12 .formats-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 10px;
  min-width: 850px;
}
.inc_ex_module_12 {
  /* Table Header */
}
.inc_ex_module_12 .formats-table thead th {
  background-color: #000000;
  color: #ffffff;
  font-size: var(--text-size-24);
  font-weight: 400;
  padding: 18px 20px;
  text-align: center;
  white-space: nowrap;
}
.inc_ex_module_12 .formats-table thead th:first-child {
  text-align: left;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
  padding-left: 30px;
}
.inc_ex_module_12 .formats-table thead th:last-child {
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  padding-right: 30px;
}
.inc_ex_module_12 {
  /* Table Body Rows */
}
.inc_ex_module_12 .formats-table tbody tr {
  background-color: #f2f2f2;
  transition: background-color 0.2s ease;
}
.inc_ex_module_12 .formats-table tbody tr:hover {
  background-color: #e8e8e8;
}
.inc_ex_module_12 .formats-table tbody td {
  padding: 16px 20px;
  text-align: center;
  vertical-align: middle;
  font-size: var(--text-size-24);
  font-weight: 400;
  color: #111111;
  white-space: nowrap;
}
.inc_ex_module_12 .formats-table tbody td:first-child {
  text-align: left;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
  padding-left: 30px;
}
.inc_ex_module_12 .formats-table tbody td:last-child {
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  padding-right: 30px;
}
.inc_ex_module_12 {
  /* Checkmark & Dash Icons */
}
.inc_ex_module_12 .status-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background-color: #000000;
  color: #ffffff;
  border-radius: 50%;
  font-size: 11px;
}
.inc_ex_module_12 .status-dash {
  color: #666666;
  font-size: var(--text-size-16);
}
.inc_ex_module_12 {
  /* Table Legend */
}
.inc_ex_module_12 .formats-legend {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 25px;
  font-size: var(--text-size-16);
  color: #555555;
}
.inc_ex_module_12 .legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

/*************
 * MODULE 13 *
 *************/
.inc_ex_module_13 {
  background-color: #ffffff;
  color: #111111;
  padding: 80px 20px;
  font-family: var(--secondary-font);
}
.inc_ex_module_13 .mosaics-title {
  font-family: var(--secondary-font);
  font-size: var(--text-size-80);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
  color: #111111;
}
.inc_ex_module_13 .mosaics-subtitle {
  font-size: var(--text-size-24);
  font-weight: 300;
  margin-bottom: 60px;
}
.inc_ex_module_13 {
  /* Mosaic Grid Items */
}
.inc_ex_module_13 .mosaic-item-card {
  display: flex;
  flex-direction: column;
}
.inc_ex_module_13 .mosaic-image-wrapper {
  width: 100%;
  background-color: #f9f9f9;
  border: 1px solid #e0e0e0;
  overflow: hidden;
  margin-bottom: 16px;
  cursor: pointer;
  display: block;
}
.inc_ex_module_13 .mosaic-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.inc_ex_module_13 .mosaic-image-wrapper:hover img,
.inc_ex_module_13 .mosaic-image-wrapper:focus-visible img {
  transform: scale(1.04);
}
.inc_ex_module_13 .mosaic-item-title {
  font-family: var(--primary-font);
  font-size: var(--text-size-24);
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 8px;
  color: #111111;
}
.inc_ex_module_13 .mosaic-item-finishes {
  font-size: var(--text-size-18);
  font-weight: 300;
  line-height: 1.5;
  color: #555555;
}

/*************
 * MODULE 14 *
 *************/
.inc_ex_module_14 .cornici-listing-section {
  background-color: #ffffff;
  color: #111111;
  padding: 80px 20px;
  font-family: var(--secondary-font);
}
.inc_ex_module_14 .cornici-title {
  font-size: var(--text-size-80);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
  color: #111111;
}
.inc_ex_module_14 .cornici-subtitle {
  font-size: var(--text-size-24);
  font-weight: 300;
  color: #444444;
  margin-bottom: 40px;
}
.inc_ex_module_14 {
  /* Filter Pills */
}
.inc_ex_module_14 .filter-pills-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 50px;
}
.inc_ex_module_14 .filter-btn {
  background-color: transparent;
  color: #111111;
  border: 1px solid #d0d0d0;
  padding: 8px 22px;
  border-radius: 50px;
  font-size: var(--text-size-20);
  font-weight: 300;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  outline: none;
}
.inc_ex_module_14 .filter-btn:hover {
  border-color: #111111;
}
.inc_ex_module_14 .filter-btn.active {
  background-color: #000000;
  color: #ffffff;
  border-color: #000000;
}
.inc_ex_module_14 {
  /* Grid Items */
}
.inc_ex_module_14 .cornici-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 20px;
}
.inc_ex_module_14 .cornici-item-card {
  display: flex;
  flex-direction: column;
  will-change: transform, opacity;
}
.inc_ex_module_14 .cornici-image-wrapper {
  width: 100%;
  background-color: #f7f7f7;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 14px;
  cursor: pointer;
  display: block;
}
.inc_ex_module_14 .cornici-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  padding: 15px;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.inc_ex_module_14 .cornici-image-wrapper:hover img,
.inc_ex_module_14 .cornici-image-wrapper:focus-visible img {
  transform: scale(1.06);
}
.inc_ex_module_14 .cornici-item-title {
  font-size: var(--text-size-20);
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 2px;
  color: #111111;
}
.inc_ex_module_14 .cornici-item-dimensions {
  font-size: var(--text-size-20);
  font-weight: 300;
  color: #666666;
}

@media (min-width: 640px) {
  .inc_ex_module_14 .cornici-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  .inc_ex_module_14 .cornici-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 40px 24px;
  }
}
/*************
 * MODULE 15 *
 *************/
.inc_ex_module_15 {
  background-color: #ffffff;
  color: #111111;
  padding: 80px 20px;
  font-family: var(--primary-font);
}
.inc_ex_module_15 .special-card {
  display: block;
  text-decoration: none;
  color: #111111;
  outline: none;
}
.inc_ex_module_15 .special-image-wrapper {
  width: 100%;
  overflow: hidden;
  background-color: #f4f4f4;
}
.inc_ex_module_15 .special-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.inc_ex_module_15 .special-card:hover .special-image-wrapper img,
.inc_ex_module_15 .special-card:focus-visible .special-image-wrapper img {
  transform: scale(1.04);
}
.inc_ex_module_15 .special-item-title {
  font-size: var(--text-size-32);
  font-weight: 300;
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #111111;
}
.inc_ex_module_15 .special-item-icon {
  font-size: 15px;
  transition: transform 0.3s ease;
}
.inc_ex_module_15 .special-card:hover .special-item-icon {
  transform: translate(3px, -3px);
}

/* Asymmetric Column Offsets mimicking high-end architectural layout */
@media (min-width: 768px) {
  .inc_ex_module_15 .col-stagger-middle {
    margin-top: 50px;
  }
  .inc_ex_module_15 .col-stagger-right {
    margin-top: 10px;
  }
}
/*************
 * MODULE 16 *
 *************/
.inc_ex_module_16 {
  background-color: #ffffff;
  padding: 80px 20px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
.inc_ex_module_16 .inlay-grid-item {
  display: block;
  width: 100%;
  overflow: hidden;
  background-color: #f4f4f4;
  cursor: pointer;
  position: relative;
}
.inc_ex_module_16 .inlay-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.inc_ex_module_16 .inlay-grid-item:hover img,
.inc_ex_module_16 .inlay-grid-item:focus-visible img {
  transform: scale(1.05);
}

/*************
 * MODULE 17 *
 *************/
.inc_ex_module_17 {
  background-color: #ffffff;
  color: #111111;
  margin: 5rem 0;
  font-family: var(--secondary-font);
  overflow: hidden;
}
.inc_ex_module_17 .feature-image-wrapper {
  width: 100%;
  height: 70vh;
  min-height: 420px;
  background-color: #e5e5e5;
  overflow: hidden;
}
.inc_ex_module_17 .feature-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.inc_ex_module_17 .feature-image-wrapper:hover img {
  transform: scale(1.03);
}
.inc_ex_module_17 .feature-content-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 20px;
}
.inc_ex_module_17 .feature-title {
  font-size: var(--text-size-80);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: #111111;
  margin-bottom: 24px;
}
.inc_ex_module_17 .feature-description {
  font-size: var(--text-size-24);
  font-weight: 300;
  line-height: 1.6;
  color: #444444;
  margin-bottom: 40px;
  max-width: 50rem;
}
.inc_ex_module_17 {
  /* Outlined Button Styling */
}
.inc_ex_module_17 .btn-feature-outline {
  display: inline-block;
  background-color: transparent;
  color: #111111;
  border: 1px solid #111111;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  transition: all 0.3s ease;
}
.inc_ex_module_17 .btn-feature-outline:hover,
.inc_ex_module_17 .btn-feature-outline:focus-visible {
  background-color: #111111;
  color: #ffffff;
  transform: translateY(-2px);
}

/*************
 * MODULE 18 *
 *************/
.inc_ex_module_18 {
  background-color: #000000;
  color: #ffffff;
  padding: 100px 20px;
  font-family: var(--secondary-font);
  text-align: center;
  overflow: hidden;
}
.inc_ex_module_18 .timeline-title {
  font-size: var(--text-size-80);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: #ffffff;
  margin-bottom: 20px;
}
.inc_ex_module_18 .timeline-subtitle {
  font-size: var(--text-size-20);
  font-weight: 300;
  line-height: 1.6;
  color: white;
  max-width: 580px;
  margin: 0 auto 50px auto;
}
.inc_ex_module_18 .timeline-divider {
  width: 100%;
  max-width: 600px;
  height: 1px;
  background-color: #222222;
  border: none;
  margin: 0 auto 60px auto;
}
.inc_ex_module_18 {
  /* 3D Perspective Stage */
}
.inc_ex_module_18 .timeline-stage {
  perspective: 1000px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.inc_ex_module_18 {
  /* Isolated Year Container (Prevents Layout Jumps) */
}
.inc_ex_module_18 .timeline-year-wrapper {
  font-size: var(--text-size-160);
  display: flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
  margin-bottom: 40px;
}
.inc_ex_module_18 .timeline-year {
  font-family: var(--primary-font);
  font-size: var(--text-size-160);
  font-weight: 400;
  line-height: 1;
  color: #ffffff;
  letter-spacing: -1px;
  backface-visibility: hidden;
  transform-origin: 50% 50% -40px;
}
.inc_ex_module_18 {
  /* Isolated Text Container with Fixed Minimum Height */
}
.inc_ex_module_18 .timeline-text-wrapper {
  font-size: var(--text-size-120);
  display: flex;
  flex-direction: column;
  align-items: center;
  transform-style: preserve-3d;
  max-width: 560px;
}
.inc_ex_module_18 .timeline-label {
  font-size: var(--text-size-40);
  font-weight: 300;
  color: #ffffff;
  margin-bottom: 12px;
  backface-visibility: hidden;
}
.inc_ex_module_18 .timeline-description {
  font-size: var(--text-size-22);
  font-weight: 300;
  line-height: 1.6;
  color: white;
  backface-visibility: hidden;
}
.inc_ex_module_18 {
  /* Slider Controls & Dots */
}
.inc_ex_module_18 .timeline-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 50px;
}
.inc_ex_module_18 .nav-arrow {
  background: none;
  border: none;
  color: #666666;
  font-size: 18px;
  cursor: pointer;
  padding: 8px 12px;
  transition: color 0.3s ease, transform 0.2s ease;
}
.inc_ex_module_18 .nav-arrow:hover,
.inc_ex_module_18 .nav-arrow:focus-visible {
  color: #ffffff;
  transform: scale(1.2);
}
.inc_ex_module_18 .pagination-dots {
  display: flex;
  align-items: center;
  gap: 10px;
}
.inc_ex_module_18 .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #444444;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.inc_ex_module_18 .dot.active {
  background-color: #ffffff;
  transform: scale(1.4);
}

/************
 * MODULE 19 *
 ************/
.inc_ex_module_19 {
  background-color: #ffffff;
  color: #111111;
  padding: 120px 20px;
}
.inc_ex_module_19 .manifesto-title {
  font-size: var(--text-size-58);
  font-weight: 300;
  line-height: 1.25;
  letter-spacing: -0.5px;
  color: #111111;
  margin-bottom: 60px;
}
@media (min-width: 768px) {
  .inc_ex_module_19 .manifesto-title {
    font-size: 46px;
  }
}
@media (min-width: 1024px) {
  .inc_ex_module_19 .manifesto-title {
    font-size: 52px;
  }
}
.inc_ex_module_19 .manifesto-description {
  font-size: var(--text-size-24);
  font-weight: 300;
  line-height: 1.65;
  color: #333333;
  max-width: 60rem;
}

/*************
 * MODULE 20 *
 *************/
.inc_ex_module_20 {
  background-color: #ffffff;
  padding: 80px 0;
  width: 100%;
  overflow: hidden;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  /* Swiper Styling */
}
.inc_ex_module_20 .featured-swiper {
  width: 100%;
  overflow: visible !important; /* Allow slides to bleed out of container if constrained, but we constrain the outer section */
}
.inc_ex_module_20 .featured-swiper .swiper-slide {
  width: 85%; /* Mobile default */
  transition: opacity 0.5s ease;
  opacity: 0.5; /* Dim inactive slides */
}
@media (min-width: 768px) {
  .inc_ex_module_20 .featured-swiper .swiper-slide {
    width: 70%;
  }
}
@media (min-width: 1024px) {
  .inc_ex_module_20 .featured-swiper .swiper-slide {
    width: 60%;
  }
}
.inc_ex_module_20 {
  /* Active Slide Full Opacity */
}
.inc_ex_module_20 .featured-swiper .swiper-slide-active {
  opacity: 1;
}
.inc_ex_module_20 {
  /* Image Wrapper */
}
.inc_ex_module_20 .slider-image-wrapper {
  width: 100%;
  display: block;
  aspect-ratio: 16/9; /* Can be adjusted to match exact proportions */
  background-color: #f4f4f4;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .inc_ex_module_20 .slider-image-wrapper {
    aspect-ratio: 16/10;
  }
}
.inc_ex_module_20 .slider-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.inc_ex_module_20 {
  /* Custom Navigation Buttons */
}
.inc_ex_module_20 .slider-nav-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
}
.inc_ex_module_20 .nav-circle-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid #d0d0d0;
  background-color: transparent;
  color: #111111;
  cursor: pointer;
  transition: all 0.3s ease;
  outline: none;
}
.inc_ex_module_20 .nav-circle-btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}
.inc_ex_module_20 .nav-circle-btn:hover,
.inc_ex_module_20 .nav-circle-btn:focus-visible {
  border-color: #111111;
  background-color: #f9f9f9;
}
.inc_ex_module_20 .nav-circle-btn.prev-btn:hover svg {
  transform: translateX(-2px);
}
.inc_ex_module_20 .nav-circle-btn.next-btn:hover svg {
  transform: translateX(2px);
}

/*******************
 * CONTACT SECTION *
 *******************/
.contact-section {
  background-color: #ffffff;
  color: #111111;
  padding: 100px 20px;
  /* Contact Form 7 Dedicated Styles (Independent of Tailwind) */
}
.contact-section .cf7-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 36px 30px;
}
@media (min-width: 768px) {
  .contact-section .cf7-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.contact-section .cf7-field-full {
  grid-column: 1/-1;
}
.contact-section .cf7-label {
  display: block;
  font-size: var(--text-size-16);
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #111111;
  margin-bottom: 12px;
}
.contact-section .cf7-input,
.contact-section .cf7-textarea {
  width: 100%;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #e0e0e0;
  padding: 10px 0;
  font-size: var(--text-size-20);
  font-weight: 300;
  color: #111111;
  outline: none;
  border-radius: 0;
  transition: border-color 0.3s ease;
}
.contact-section .cf7-input::placeholder,
.contact-section .cf7-textarea::placeholder {
  color: #aaaaaa;
  font-weight: 300;
}
.contact-section .cf7-input:focus,
.contact-section .cf7-textarea:focus {
  border-color: #000000;
}
.contact-section .cf7-textarea {
  resize: vertical;
  min-height: 90px;
}
.contact-section .cf7-submit {
  background-color: #000000;
  color: #ffffff;
  border: none;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: var(--text-size-20);
  font-weight: 400;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  margin-top: 10px;
}
.contact-section .cf7-submit:hover {
  background-color: #222222;
  transform: translateY(-2px);
}
.contact-section {
  /* CF7 Standard Validation Overrides */
}
.contact-section .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}
.contact-section .wpcf7-not-valid-tip {
  font-size: 11px;
  color: #d97706;
  margin-top: 6px;
}
.contact-section .wpcf7-response-output {
  border: none !important;
  padding: 12px 0 !important;
  margin: 20px 0 0 0 !important;
  font-size: 13px !important;
  color: #111111 !important;
}
.contact-section {
  /* Showroom Details Styling */
}
.contact-section .showroom-title {
  font-size: var(--text-size-40);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 40px;
  color: #111111;
}
.contact-section .showroom-item {
  margin-bottom: 28px;
}
.contact-section .showroom-label {
  font-size: var(--text-size-16);
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #505050;
  margin-bottom: 6px;
}
.contact-section .showroom-value {
  font-size: var(--text-size-24);
  font-weight: 300;
  line-height: 1.5;
  color: #111111;
}
.contact-section .showroom-value a {
  color: #111111;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.contact-section .showroom-value a:hover {
  opacity: 0.7;
}

/*********
 * PAGES *
 *********/
/****************************
 * PROJECTS LISTING FILTERS *
 ****************************/
/* Trigger button */
.filter-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 12px 20px;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  position: relative;
  user-select: none;
}

/* Badge */
.filter-badge {
  position: absolute;
  top: -8px;
  right: -4px;
  font-size: 0.7rem;
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.filter-badge[hidden] {
  display: none;
}

/* Icon toggle */
.icon-open, .icon-close {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

[aria-expanded=false] .icon-open {
  display: block;
}

[aria-expanded=false] .icon-close {
  display: none;
}

[aria-expanded=true] .icon-open {
  display: none;
}

[aria-expanded=true] .icon-close {
  display: block;
}

.filter-trigger[aria-expanded=true] {
  background-color: #353535 !important;
  color: white !important;
}

/* Dropdown panel */
.filter-panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  z-index: 50;
  transform-origin: top center;
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.filter-panel[hidden] {
  display: none;
}

.filter-panel.is-animating-in {
  animation: dropIn 0.15s ease forwards;
}

.filter-panel.is-animating-out {
  animation: dropOut 0.1s ease forwards;
}

@keyframes dropIn {
  from {
    opacity: 0;
    transform: translateY(-6px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes dropOut {
  from {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  to {
    opacity: 0;
    transform: translateY(-6px) scale(0.98);
  }
}
/* Option row */
.filter-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 400;
  transition: background 0.1s ease;
}

.filter-option:not(:last-child) {
  border-bottom-width: 1px;
  border-bottom-style: solid;
}

/* Custom checkbox */
.filter-option input[type=checkbox] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.custom-checkbox {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  border-width: 2px;
  border-style: solid;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.custom-checkbox svg {
  width: 14px;
  height: 14px;
  opacity: 0;
  transition: opacity 0.1s ease;
}

.filter-option input[type=checkbox]:checked + .custom-checkbox svg {
  opacity: 1;
}

/* Focus ring on label via keyboard */
.filter-option:focus-within {
  outline: 2px solid #3b82f6;
  outline-offset: -2px;
}

/************************
 * SINGLE MAGAZINE PAGE *
 ************************/
/* Target Gutenberg output inside .prose-content */
.prose-content h1,
.prose-content h2,
.prose-content h3,
.prose-content h4,
.prose-content h5,
.prose-content h6 {
  /* maps to your cs-title styles */
  font-family: var(--primary-font) !important;
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.prose-content p {
  /* maps to cs-body */
  font-family: var(--secondary-font);
  font-size: 18px;
  margin-bottom: 1.5rem;
}

.prose-content figure img {
  width: 100%;
  height: auto;
  display: block;
}

.prose-content blockquote {
  border-left: 4px solid var(--theme-color-blue);
  padding-left: 1.25rem;
}

/************
 * 404 PAGE *
 ************/
.container404 {
  position: fixed;
  height: 100%;
  width: 100%;
  background: white;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

/*****************
 * RESPOPNSIVITY *
 *****************/
@media screen and (max-width: 1024px) {
  .website_footer .primaryfooter_menu .custom-logo-link img {
    max-width: 12.5rem !important;
  }
}
@media screen and (max-width: 1023px) {
  #site-header .custom-logo-link {
    max-width: 7.5rem !important;
  }
  .inc_ex_module_4 .history-image-wrapper,
  .inc_ex_module_5 .inlay-image-wrapper,
  .inc_ex_module_17 .feature-image-wrapper {
    max-height: 35rem !important;
  }
  .inc_ex_module_4 .history-card-inner,
  .inc_ex_module_5 .inlay-content-wrapper {
    padding: 45px 25px 10px !important;
  }
  .inc_ex_module_17 .feature-content-box {
    padding: 8px 20px;
  }
}
