@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");
body {
  margin: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-family: "Inter", sans-serif;
  color: #231F20;
}

* {
  box-sizing: border-box;
}

h2, h3, h4, h5, h6 {
  color: #AA273E;
  font-weight: 600;
}

body.menu-open {
  overflow: hidden;
}

.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  z-index: 100;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
.site-header .header-container {
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 90px;
}
@media (max-width: 767px) {
  .site-header .header-container {
    height: 75px;
    padding: 0 20px;
  }
}

.site-logo {
  display: flex;
  align-items: center;
}
.site-logo a {
  display: flex;
  align-items: center;
}
.site-logo .custom-logo-img {
  height: 70px;
  width: auto;
  max-width: 100%;
  display: block;
  transition: height 0.3s ease;
}
@media (max-width: 767px) {
  .site-logo .custom-logo-img {
    height: 40px;
  }
}

.main-navigation.desktop-only {
  display: block;
  flex-grow: 1;
  margin-right: 40px;
}
@media (max-width: 1023px) {
  .main-navigation.desktop-only {
    display: none;
  }
}
.main-navigation.desktop-only .nav-menu-desktop {
  display: flex;
  justify-content: flex-end;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 40px;
}
.main-navigation.desktop-only .nav-menu-desktop li {
  position: relative;
}
.main-navigation.desktop-only .nav-menu-desktop a {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #231F20;
  text-decoration: none;
  padding: 8px 0;
  display: block;
  transition: color 0.3s ease;
}
.main-navigation.desktop-only .nav-menu-desktop a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #AA273E;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.main-navigation.desktop-only .nav-menu-desktop a:hover {
  color: #AA273E;
}
.main-navigation.desktop-only .nav-menu-desktop a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.main-navigation.desktop-only .nav-menu-desktop li ul li a {
  padding: 8px 10px;
}

.main-navigation ul ul,
.main-navigation .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  min-width: 240px;
  max-width: 320px;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
  margin: 0;
  padding: 8px;
  list-style: none;
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12), 0 2px 6px rgba(0, 0, 0, 0.04);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1), transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  /* Smooth scrollbar for long sub-menus */
}
.main-navigation ul ul::-webkit-scrollbar,
.main-navigation .sub-menu::-webkit-scrollbar {
  width: 4px;
}
.main-navigation ul ul::-webkit-scrollbar-track,
.main-navigation .sub-menu::-webkit-scrollbar-track {
  background: transparent;
}
.main-navigation ul ul::-webkit-scrollbar-thumb,
.main-navigation .sub-menu::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.15);
  border-radius: 4px;
}
.main-navigation ul ul,
.main-navigation .sub-menu {
  /* Hover bridge to keep dropdown open while moving mouse down */
}
.main-navigation ul ul::before,
.main-navigation .sub-menu::before {
  content: "";
  position: absolute;
  top: -15px;
  left: 0;
  width: 100%;
  height: 15px;
}
.main-navigation ul ul li,
.main-navigation ul ul .menu-item,
.main-navigation .sub-menu li,
.main-navigation .sub-menu .menu-item {
  display: block;
  width: 100%;
  margin: 0 0 2px 0;
  padding: 0;
  position: relative;
}
.main-navigation ul ul li:last-child,
.main-navigation ul ul .menu-item:last-child,
.main-navigation .sub-menu li:last-child,
.main-navigation .sub-menu .menu-item:last-child {
  margin-bottom: 0;
}
.main-navigation ul ul a,
.main-navigation .sub-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 10px 16px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  color: #231F20;
  text-decoration: none;
  border-radius: 8px;
  white-space: normal;
  word-break: break-word;
  transition: background-color 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
}
.main-navigation ul ul a::after,
.main-navigation .sub-menu a::after {
  display: none !important;
}
.main-navigation ul ul a:hover, .main-navigation ul ul a:focus,
.main-navigation .sub-menu a:hover,
.main-navigation .sub-menu a:focus {
  background-color: rgba(170, 39, 62, 0.06);
  color: #AA273E;
  padding-left: 20px;
}
.main-navigation ul ul,
.main-navigation .sub-menu {
  /* Nested 3rd-level sub-menus */
}
.main-navigation ul ul ul,
.main-navigation ul ul .sub-menu,
.main-navigation .sub-menu ul,
.main-navigation .sub-menu .sub-menu {
  top: -8px;
  left: 100%;
  margin-left: 4px;
}
.main-navigation {
  /* Show sub-menu on parent hover or focus */
}
.main-navigation li:hover > ul,
.main-navigation li:hover > .sub-menu,
.main-navigation li.focus > ul,
.main-navigation li.focus > .sub-menu,
.main-navigation li:focus-within > ul,
.main-navigation li:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.main-navigation li.menu-item-has-children {
  position: relative;
}
.main-navigation li.menu-item-has-children > a {
  display: inline-flex;
  align-items: center;
}
.main-navigation li.menu-item-has-children > a::before {
  content: "";
  display: inline-block;
  order: 2;
  width: 5px;
  height: 5px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-left: 8px;
  margin-bottom: 2px;
  transition: transform 0.25s ease;
}
.main-navigation li.menu-item-has-children > a:hover::before {
  transform: rotate(225deg);
  margin-bottom: -1px;
}
.main-navigation ul ul li.menu-item-has-children > a::before,
.main-navigation .sub-menu li.menu-item-has-children > a::before {
  transform: rotate(-45deg);
  margin-left: auto;
  margin-bottom: 0;
}

.header-cta {
  display: flex;
  align-items: center;
}
@media (max-width: 1023px) {
  .header-cta.desktop-only {
    display: none;
  }
}
.header-cta .btn-header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 2em;
  background-color: #AA273E;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 13px 24px;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  white-space: nowrap;
}
.header-cta .btn-header-cta:hover {
  background-color: #8c2032;
  color: #ffffff;
  box-shadow: 0 6px 15px rgba(170, 39, 62, 0.2);
}

.hamburger-menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 6px;
  width: 40px;
  height: 40px;
  z-index: 101;
  outline: none;
}
.hamburger-menu-toggle .bar {
  height: 2px;
  background-color: #AA273E;
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.hamburger-menu-toggle .bar.line-1 {
  width: 28px;
}
.hamburger-menu-toggle .bar.line-2 {
  width: 20px;
}
.hamburger-menu-toggle .bar.line-3 {
  width: 24px;
}
.hamburger-menu-toggle:hover .bar {
  background-color: #8c2032;
}
.hamburger-menu-toggle:hover .bar.line-2 {
  width: 28px;
}
.hamburger-menu-toggle:hover .bar.line-3 {
  width: 28px;
}

.fullscreen-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #ffffff;
  z-index: 999;
  display: flex;
  flex-direction: column;
  transform: translateY(-100%);
  transition: transform 0.6s cubic-bezier(0.85, 0, 0.15, 1);
  overflow: hidden;
}
.fullscreen-menu-overlay.is-active {
  transform: translateY(0);
}
.fullscreen-menu-overlay .overlay-header-bar {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 90px;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .fullscreen-menu-overlay .overlay-header-bar {
    height: 75px;
    padding: 0 20px;
  }
}
.fullscreen-menu-overlay .overlay-header-bar .overlay-logo {
  display: flex;
  align-items: center;
}
.fullscreen-menu-overlay .overlay-header-bar .overlay-logo a {
  display: flex;
  align-items: center;
}
.fullscreen-menu-overlay .overlay-header-bar .overlay-logo .custom-logo-img {
  height: 50px;
  width: auto;
  display: block;
}
@media (max-width: 767px) {
  .fullscreen-menu-overlay .overlay-header-bar .overlay-logo .custom-logo-img {
    height: 40px;
  }
}
.fullscreen-menu-overlay .overlay-header-bar .hamburger-menu-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  outline: none;
}
.fullscreen-menu-overlay .overlay-header-bar .hamburger-menu-close .bar {
  position: absolute;
  width: 28px;
  height: 2px;
  background-color: #AA273E;
  border-radius: 2px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease;
}
.fullscreen-menu-overlay .overlay-header-bar .hamburger-menu-close .bar.close-line-1 {
  transform: rotate(45deg);
}
.fullscreen-menu-overlay .overlay-header-bar .hamburger-menu-close .bar.close-line-2 {
  transform: rotate(-45deg);
}
.fullscreen-menu-overlay .overlay-header-bar .hamburger-menu-close:hover .bar {
  background-color: #8c2032;
}
.fullscreen-menu-overlay .overlay-header-bar .hamburger-menu-close:hover .bar.close-line-1 {
  transform: rotate(135deg);
}
.fullscreen-menu-overlay .overlay-header-bar .hamburger-menu-close:hover .bar.close-line-2 {
  transform: rotate(45deg);
}
.fullscreen-menu-overlay .overlay-body-container {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 40px;
  flex: 1;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  align-items: center;
  overflow-y: auto;
  box-sizing: border-box;
}
@media (max-width: 1023px) {
  .fullscreen-menu-overlay .overlay-body-container {
    grid-template-columns: 1fr;
    align-items: flex-start;
    padding: 40px 20px;
    gap: 50px;
  }
}
.fullscreen-menu-overlay .overlay-navigation-wrapper .nav-menu-overlay {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 767px) {
  .fullscreen-menu-overlay .overlay-navigation-wrapper .nav-menu-overlay {
    gap: 16px;
  }
}
.fullscreen-menu-overlay .overlay-navigation-wrapper .nav-menu-overlay > li {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--delay, 0s);
}
.fullscreen-menu-overlay .overlay-navigation-wrapper .nav-menu-overlay > li.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.fullscreen-menu-overlay .overlay-navigation-wrapper .nav-menu-overlay > li > a {
  font-family: "Inter", sans-serif;
  font-size: 40px;
  font-weight: 600;
  color: #231F20;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  letter-spacing: -0.01em;
}
@media (max-width: 767px) {
  .fullscreen-menu-overlay .overlay-navigation-wrapper .nav-menu-overlay > li > a {
    font-size: 28px;
  }
}
.fullscreen-menu-overlay .overlay-navigation-wrapper .nav-menu-overlay > li > a:hover {
  color: #AA273E;
  transform: translateX(10px);
}
.fullscreen-menu-overlay .overlay-navigation-wrapper .nav-menu-overlay {
  /* Sub-menu styling in overlay navigation */
}
.fullscreen-menu-overlay .overlay-navigation-wrapper .nav-menu-overlay ul.sub-menu,
.fullscreen-menu-overlay .overlay-navigation-wrapper .nav-menu-overlay .sub-menu {
  position: static;
  top: auto;
  left: auto;
  right: auto;
  z-index: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 12px 0 4px 0;
  padding: 0 0 0 20px;
  list-style: none;
  background-color: transparent;
  border: none;
  border-left: 2px solid rgba(170, 39, 62, 0.25);
  border-radius: 0;
  box-shadow: none;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
  max-width: 100%;
  max-height: none;
  overflow: visible;
}
.fullscreen-menu-overlay .overlay-navigation-wrapper .nav-menu-overlay ul.sub-menu::before,
.fullscreen-menu-overlay .overlay-navigation-wrapper .nav-menu-overlay .sub-menu::before {
  display: none;
}
.fullscreen-menu-overlay .overlay-navigation-wrapper .nav-menu-overlay ul.sub-menu li,
.fullscreen-menu-overlay .overlay-navigation-wrapper .nav-menu-overlay .sub-menu li {
  opacity: 1;
  transform: none;
  margin: 0;
  padding: 0;
}
.fullscreen-menu-overlay .overlay-navigation-wrapper .nav-menu-overlay ul.sub-menu a,
.fullscreen-menu-overlay .overlay-navigation-wrapper .nav-menu-overlay .sub-menu a {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #555555;
  text-decoration: none;
  display: inline-block;
  padding: 4px 0;
  border-radius: 0;
  white-space: normal;
  line-height: 1.4;
  transition: color 0.3s ease, transform 0.3s ease;
}
@media (max-width: 767px) {
  .fullscreen-menu-overlay .overlay-navigation-wrapper .nav-menu-overlay ul.sub-menu a,
  .fullscreen-menu-overlay .overlay-navigation-wrapper .nav-menu-overlay .sub-menu a {
    font-size: 17px;
  }
}
.fullscreen-menu-overlay .overlay-navigation-wrapper .nav-menu-overlay ul.sub-menu a:hover, .fullscreen-menu-overlay .overlay-navigation-wrapper .nav-menu-overlay ul.sub-menu a:focus,
.fullscreen-menu-overlay .overlay-navigation-wrapper .nav-menu-overlay .sub-menu a:hover,
.fullscreen-menu-overlay .overlay-navigation-wrapper .nav-menu-overlay .sub-menu a:focus {
  color: #AA273E;
  background-color: transparent;
  transform: translateX(6px);
  padding-left: 0;
}
.fullscreen-menu-overlay .overlay-contact-panel {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease 0.2s, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
  border-left: 1px solid #eaeaea;
  padding-left: 80px;
}
@media (max-width: 1023px) {
  .fullscreen-menu-overlay .overlay-contact-panel {
    border-left: none;
    border-top: 1px solid #eaeaea;
    padding-left: 0;
    padding-top: 40px;
  }
}
.fullscreen-menu-overlay .overlay-contact-panel.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.fullscreen-menu-overlay .overlay-contact-panel .contact-heading {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #231F20;
  margin-top: 0;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.fullscreen-menu-overlay .overlay-contact-panel .contact-item {
  margin-bottom: 24px;
}
.fullscreen-menu-overlay .overlay-contact-panel .contact-item:last-child {
  margin-bottom: 0;
}
.fullscreen-menu-overlay .overlay-contact-panel .contact-item .contact-label {
  font-size: 11px;
  font-weight: 600;
  color: #888888;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 6px;
}
.fullscreen-menu-overlay .overlay-contact-panel .contact-item .contact-value {
  font-size: 16px;
  font-weight: 500;
  color: #231F20;
  margin: 0;
  line-height: 1.6;
}
.fullscreen-menu-overlay .overlay-contact-panel .contact-item .contact-value a {
  color: #231F20;
  text-decoration: none;
  transition: color 0.3s ease;
}
.fullscreen-menu-overlay .overlay-contact-panel .contact-item .contact-value a:hover {
  color: #AA273E;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 14px 28px;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}
@media only screen and (min-width: 768px) {
  .btn {
    padding: 16px 36px;
    font-size: 15px;
  }
}
.btn.btn-red {
  background-color: #AA273E;
  color: #ffffff;
}
.btn.btn-red:hover {
  background-color: #8c2032;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(170, 39, 62, 0.15);
}
.btn.btn-gold {
  background-color: #E2A732;
  color: #FFF;
}
.btn.btn-gold:hover {
  background-color: #c99124;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(226, 167, 50, 0.15);
}
.btn.btn-white {
  background-color: #ffffff;
  color: #AA273E;
}
.btn.btn-white:hover {
  background-color: #f7f7f7;
  color: #8c2032;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}
.btn.btn-arrow {
  justify-content: space-between;
  gap: 15px;
}
.btn.btn-arrow .arrow-icon {
  transition: transform 0.3s ease;
}
.btn.btn-arrow:hover .arrow-icon {
  transform: translateX(5px);
}

.red-line {
  width: 30px;
  height: 13px;
  background-image: url("../img/wendelgelst-streepje.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left center;
  display: block;
  margin-bottom: 12px;
}

.section-hero {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #ffffff;
  text-align: center;
  min-height: 480px;
  height: 65vh;
}
@media only screen and (min-width: 768px) {
  .section-hero {
    height: 75vh;
    min-height: 550px;
  }
}
.section-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(35, 31, 32, 0.35) 0%, rgba(35, 31, 32, 0.5) 100%);
  z-index: 1;
}
.section-hero .hero-content-container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  width: 100%;
  padding: 0 20px;
}
.section-hero .hero-title {
  font-family: "Inter", sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 24px;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
}
@media only screen and (min-width: 768px) {
  .section-hero .hero-title {
    font-size: 44px;
    margin: 0 0 35px;
  }
}
@media only screen and (min-width: 1024px) {
  .section-hero .hero-title {
    font-size: 52px;
  }
}
.section-hero .hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  justify-content: center;
  align-items: center;
}
@media only screen and (min-width: 768px) {
  .section-hero .hero-buttons {
    flex-direction: row;
    gap: 20px;
  }
}
.section-hero .hero-buttons .btn {
  width: 100%;
  max-width: 320px;
}
@media only screen and (min-width: 768px) {
  .section-hero .hero-buttons .btn {
    width: auto;
  }
}

.section-intro {
  padding: 3em 0;
  background-color: #ffffff;
}
@media only screen and (min-width: 1024px) {
  .section-intro {
    padding: 3em 0;
  }
}
.section-intro .intro-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media only screen and (min-width: 1024px) {
  .section-intro .intro-container {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 80px;
    align-items: start;
  }
}
@media only screen and (min-width: 1024px) {
  .section-intro .intro-container.image-left {
    grid-template-columns: 1fr 1.15fr;
  }
  .section-intro .intro-container.image-left .intro-content-left {
    grid-column: 2;
  }
  .section-intro .intro-container.image-left .intro-content-right {
    grid-column: 1;
    grid-row: 1;
  }
}
.section-intro .intro-content-left .section-title-wrapper {
  margin-bottom: 24px;
}
.section-intro .intro-content-left .intro-section-title {
  font-family: "Inter", sans-serif;
  font-size: 30px;
  font-weight: 600;
  color: #231F20;
  margin: 0;
  letter-spacing: -0.01em;
}
@media only screen and (min-width: 768px) {
  .section-intro .intro-content-left .intro-section-title {
    font-size: 36px;
  }
}
.section-intro .intro-content-left .intro-text-editor {
  font-size: 15px;
  line-height: 1.7;
  color: #555555;
}
.section-intro .intro-content-left .intro-text-editor p {
  margin: 0 0 20px;
}
.section-intro .intro-content-left .intro-text-editor p:last-child {
  margin-bottom: 0;
}
.section-intro .intro-content-left .intro-text-editor a:not(.btn) {
  color: #AA273E;
  text-decoration: underline;
  transition: color 0.2s ease;
}
.section-intro .intro-content-left .intro-text-editor a:not(.btn):hover, .section-intro .intro-content-left .intro-text-editor a:not(.btn):focus {
  color: #8c2032;
}
.section-intro .intro-content-right {
  position: relative;
  display: flex;
  flex-direction: column;
}
.section-intro .intro-content-right .intro-image-wrapper {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.section-intro .intro-content-right .intro-image-wrapper .intro-img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  max-height: 480px;
}
.section-intro .intro-content-right .intro-callout-card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 8px;
  margin-top: 24px;
  width: 100%;
}
.section-intro .intro-content-right .intro-callout-card .callout-title {
  font-family: "Inter", sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: #AA273E;
  margin: 0 0 12px;
}
.section-intro .intro-content-right .intro-callout-card .callout-text {
  font-size: 14px;
  line-height: 1.6;
  color: #666666;
  margin: 0 0 24px;
}

.section-recent-projects {
  padding: 3em 0;
  background-color: #f9f9f9;
}
@media only screen and (min-width: 1024px) {
  .section-recent-projects {
    padding: 3em 0;
  }
}
.section-recent-projects .projects-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}
.section-recent-projects .projects-header {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 40px;
}
@media only screen and (min-width: 768px) {
  .section-recent-projects .projects-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
  }
}
.section-recent-projects .projects-header .projects-section-title {
  font-family: "Inter", sans-serif;
  font-size: 30px;
  font-weight: 600;
  color: #231F20;
  margin: 0;
  letter-spacing: -0.01em;
}
@media only screen and (min-width: 768px) {
  .section-recent-projects .projects-header .projects-section-title {
    font-size: 36px;
  }
}
.section-recent-projects .projects-header .projects-header-link {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #231F20;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s ease;
}
.section-recent-projects .projects-header .projects-header-link .link-arrow {
  transition: transform 0.3s ease;
}
.section-recent-projects .projects-header .projects-header-link:hover {
  color: #AA273E;
}
.section-recent-projects .projects-header .projects-header-link:hover .link-arrow {
  transform: translateX(4px);
}
.section-recent-projects .projects-list {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
@media only screen and (min-width: 1024px) {
  .section-recent-projects .projects-list {
    gap: 80px;
  }
}
.section-recent-projects .project-row {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
@media only screen and (min-width: 1024px) {
  .section-recent-projects .project-row {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 60px;
    align-items: stretch;
  }
  .section-recent-projects .project-row.align-right {
    grid-template-columns: 1.05fr 1fr;
  }
  .section-recent-projects .project-row.align-right .project-image-column {
    grid-column: 2;
    grid-row: 1;
  }
  .section-recent-projects .project-row.align-right .project-details-column {
    grid-column: 1;
    grid-row: 1;
  }
}
.section-recent-projects .project-row .project-image-column {
  width: 100%;
}
.section-recent-projects .project-row .project-image-column .project-img-wrapper {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
}
.section-recent-projects .project-row .project-image-column .project-img-wrapper .project-img {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
@media only screen and (min-width: 768px) {
  .section-recent-projects .project-row .project-image-column .project-img-wrapper .project-img {
    height: 380px;
  }
}
@media only screen and (min-width: 1024px) {
  .section-recent-projects .project-row .project-image-column .project-img-wrapper .project-img {
    height: 420px;
  }
}
.section-recent-projects .project-row .project-image-column .project-img-wrapper:hover .project-img {
  transform: scale(1.03);
}
.section-recent-projects .project-row .project-details-column {
  width: 100%;
  height: 100%;
  display: flex;
}
.section-recent-projects .project-row .project-details-column .project-card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  height: 100%;
  width: 100%;
  box-sizing: border-box;
}
@media only screen and (min-width: 768px) {
  .section-recent-projects .project-row .project-details-column .project-card {
    padding: 50px;
  }
}
.section-recent-projects .project-row .project-details-column .project-card .red-line {
  margin-bottom: 16px;
}
.section-recent-projects .project-row .project-details-column .project-card .project-title {
  font-family: "Inter", sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #231F20;
  margin: 0 0 12px;
  line-height: 1.35;
}
@media only screen and (min-width: 768px) {
  .section-recent-projects .project-row .project-details-column .project-card .project-title {
    font-size: 28px;
  }
}
.section-recent-projects .project-row .project-details-column .project-card .project-subtitle {
  font-size: 14px;
  color: #777777;
  margin: 0 0 24px;
}
.section-recent-projects .project-row .project-details-column .project-card .btn {
  padding: 12px 24px;
  font-size: 13px;
}

.section-reviews-rating {
  padding: 3em 0;
  background-color: #ffffff;
}
@media only screen and (min-width: 1024px) {
  .section-reviews-rating {
    padding: 3em 0;
  }
}
.section-reviews-rating .reviews-rating-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media only screen and (min-width: 1024px) {
  .section-reviews-rating .reviews-rating-container {
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: 40px;
  }
}
.section-reviews-rating .reviews-card-left {
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.01);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media only screen and (min-width: 768px) {
  .section-reviews-rating .reviews-card-left {
    padding: 50px;
  }
}
.section-reviews-rating .reviews-card-left .red-line {
  margin-bottom: 16px;
}
.section-reviews-rating .reviews-card-left .reviews-title {
  font-family: "Inter", sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: #231F20;
  margin: 0 0 30px;
  letter-spacing: -0.01em;
}
@media only screen and (min-width: 768px) {
  .section-reviews-rating .reviews-card-left .reviews-title {
    font-size: 32px;
  }
}
.section-reviews-rating .reviews-card-left .testimonial-slider {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.section-reviews-rating .reviews-card-left .testimonial-slides-wrapper {
  position: relative;
  min-height: 180px;
}
@media only screen and (min-width: 768px) {
  .section-reviews-rating .reviews-card-left .testimonial-slides-wrapper {
    min-height: 140px;
  }
}
.section-reviews-rating .reviews-card-left .testimonial-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: scale(0.98);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
}
.section-reviews-rating .reviews-card-left .testimonial-slide.is-active {
  position: relative;
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}
.section-reviews-rating .reviews-card-left .testimonial-slide .testimonial-content {
  margin-bottom: 24px;
}
.section-reviews-rating .reviews-card-left .testimonial-slide .testimonial-text {
  font-size: 16px;
  line-height: 1.65;
  color: #555555;
  font-style: italic;
  margin: 0;
  font-weight: 400;
}
@media only screen and (min-width: 768px) {
  .section-reviews-rating .reviews-card-left .testimonial-slide .testimonial-text {
    font-size: 17px;
  }
}
.section-reviews-rating .reviews-card-left .testimonial-slide .testimonial-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-reviews-rating .reviews-card-left .testimonial-slide .rating-badge-small {
  background-color: #E2A732;
  color: #231F20;
  font-weight: 600;
  font-size: 13px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-reviews-rating .reviews-card-left .testimonial-slide .testimonial-author {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #231F20;
}
.section-reviews-rating .reviews-card-left .testimonial-footer {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  border-top: 1px solid #eaeaea;
  padding-top: 24px;
}
@media only screen and (min-width: 768px) {
  .section-reviews-rating .reviews-card-left .testimonial-footer {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.section-reviews-rating .reviews-card-left .testimonial-footer .slider-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}
.section-reviews-rating .reviews-card-left .testimonial-footer .slider-dots .slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #cccccc;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}
.section-reviews-rating .reviews-card-left .testimonial-footer .slider-dots .slider-dot.is-active {
  background-color: #AA273E;
  transform: scale(1.2);
}
.section-reviews-rating .reviews-card-left .testimonial-footer .reviews-logo-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
@media only screen and (min-width: 768px) {
  .section-reviews-rating .reviews-card-left .testimonial-footer .reviews-logo-link {
    justify-content: flex-end;
  }
}
.section-reviews-rating .reviews-card-left .testimonial-footer .reviews-logo-link .more-link {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #AA273E;
  text-decoration: none;
  transition: color 0.3s ease;
}
.section-reviews-rating .reviews-card-left .testimonial-footer .reviews-logo-link .more-link:hover {
  color: #8c2032;
}
.section-reviews-rating .reviews-card-left .testimonial-footer .reviews-logo-link .rw-logo-inline {
  height: 24px;
  width: auto;
  display: inline-block;
  vertical-align: middle;
  opacity: 0.8;
}
.section-reviews-rating .rating-card-right {
  background-color: #AA273E;
  color: #ffffff;
  padding: 40px 20px;
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(170, 39, 62, 0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .section-reviews-rating .rating-card-right {
    padding: 60px 40px;
  }
}
.section-reviews-rating .rating-card-right .rating-badge-large {
  background-color: #ffffff;
  border: 1px solid #dcdcdc;
  border-radius: 12px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.16);
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 320px;
  overflow: hidden;
  position: relative;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.section-reviews-rating .rating-card-right .rating-badge-large:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
}
.section-reviews-rating .rating-card-right .rating-badge-large::after {
  display: none;
}
.section-reviews-rating .rating-card-right .rating-badge-large .badge-top {
  background-color: #ededed;
  display: flex;
  flex-direction: row;
  height: 190px;
  position: relative;
  border-bottom: 1px solid #e0e0e0;
}
.section-reviews-rating .rating-card-right .rating-badge-large .badge-illustration {
  flex: 1.1;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left center;
  background-image: url("../img/bg-review-kaart.jpg");
}
.section-reviews-rating .rating-card-right .rating-badge-large .badge-rating-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10px 15px 10px 0;
  text-align: center;
}
.section-reviews-rating .rating-card-right .rating-badge-large .rating-number {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 78px;
  font-weight: bold;
  font-style: italic;
  color: #e12b77;
  line-height: 0.9;
  margin-bottom: 12px;
  letter-spacing: -2px;
}
.section-reviews-rating .rating-card-right .rating-badge-large .bouwnu-logo {
  display: flex;
  align-items: center;
  gap: 6px;
}
.section-reviews-rating .rating-card-right .rating-badge-large .bouwnu-logo-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  display: block;
}
.section-reviews-rating .rating-card-right .rating-badge-large .bouwnu-logo-text {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
}
.section-reviews-rating .rating-card-right .rating-badge-large .bouwnu-logo-text .logo-text-bouw {
  color: #222222;
}
.section-reviews-rating .rating-card-right .rating-badge-large .bouwnu-logo-text .logo-text-nu {
  color: #e12b77;
}
.section-reviews-rating .rating-card-right .rating-badge-large .bouwnu-logo-text .logo-text-nl {
  color: #222222;
}
.section-reviews-rating .rating-card-right .rating-badge-large .badge-middle {
  background-color: #ffffff;
  padding: 24px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 76px;
  text-align: center;
}
.section-reviews-rating .rating-card-right .rating-badge-large .badge-title {
  font-family: "Inter", sans-serif;
  font-size: 19px;
  font-weight: 600;
  color: #e12b77;
  margin: 0;
  line-height: 1.3;
  text-transform: none;
  letter-spacing: normal;
}
.section-reviews-rating .rating-card-right .rating-badge-large .badge-bottom {
  background-color: #e12b77;
  padding: 16px 20px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-reviews-rating .rating-card-right .rating-badge-large .badge-count {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  margin: 0;
  line-height: 1.2;
}
.section-reviews-rating .rating-card-right .btn-white {
  max-width: 320px;
  width: 100%;
}

.project-single-page .project-hero {
  position: relative;
  min-height: 350px;
  height: 50vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  padding: 40px 20px;
  overflow: hidden;
}
.project-single-page .project-hero .project-hero-video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}
.project-single-page .project-hero .project-hero-video-wrapper iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  border: 0;
  pointer-events: none;
}
@media (min-aspect-ratio: 16/9) {
  .project-single-page .project-hero .project-hero-video-wrapper iframe {
    height: 56.25vw;
  }
}
@media (max-aspect-ratio: 16/9) {
  .project-single-page .project-hero .project-hero-video-wrapper iframe {
    width: 177.78vh;
  }
}
.project-single-page .project-hero .project-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(35, 31, 32, 0.4), rgba(35, 31, 32, 0.65));
  z-index: 2;
  pointer-events: none;
}
.project-single-page .project-hero .project-hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.project-single-page .project-hero .project-hero-content .red-line {
  margin: 0 auto 16px;
}
.project-single-page .project-hero .project-hero-content .project-title {
  font-family: "Inter", sans-serif;
  font-size: 32px;
  font-weight: 600;
  margin: 0 0 12px;
  line-height: 1.25;
  letter-spacing: -0.01em;
}
@media only screen and (min-width: 768px) {
  .project-single-page .project-hero .project-hero-content .project-title {
    font-size: 48px;
  }
}
@media only screen and (min-width: 1024px) {
  .project-single-page .project-hero .project-hero-content .project-title {
    font-size: 54px;
  }
}
.project-single-page .project-hero .project-hero-content .project-hero-category {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #eaeaea;
  margin: 0;
}
@media only screen and (min-width: 768px) {
  .project-single-page .project-hero .project-hero-content .project-hero-category {
    font-size: 15px;
  }
}
.project-single-page .project-body {
  padding: 3em 0;
  background-color: #ffffff;
}
@media only screen and (min-width: 1024px) {
  .project-single-page .project-body {
    padding: 3em 0;
  }
}
.project-single-page .project-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 767px) {
  .project-single-page .project-container {
    padding: 0 20px;
  }
}
.project-single-page .project-breadcrumbs,
.project-single-page .page-breadcrumbs {
  margin-bottom: 30px;
}
@media only screen and (min-width: 1024px) {
  .project-single-page .project-breadcrumbs,
  .project-single-page .page-breadcrumbs {
    margin-bottom: 40px;
  }
}
.project-single-page .project-breadcrumbs .breadcrumbs-list,
.project-single-page .page-breadcrumbs .breadcrumbs-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 1.4;
}
.project-single-page .project-breadcrumbs .breadcrumb-item,
.project-single-page .page-breadcrumbs .breadcrumb-item {
  display: inline-flex;
  align-items: center;
}
.project-single-page .project-breadcrumbs .breadcrumb-item a,
.project-single-page .page-breadcrumbs .breadcrumb-item a {
  color: #777777;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}
.project-single-page .project-breadcrumbs .breadcrumb-item a:hover,
.project-single-page .page-breadcrumbs .breadcrumb-item a:hover {
  color: #AA273E;
}
.project-single-page .project-breadcrumbs .breadcrumb-item.active,
.project-single-page .page-breadcrumbs .breadcrumb-item.active {
  color: #231F20;
  font-weight: 500;
}
.project-single-page .project-breadcrumbs .breadcrumb-separator,
.project-single-page .page-breadcrumbs .breadcrumb-separator {
  display: inline-flex;
  align-items: center;
  color: #cccccc;
  font-size: 12px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.project-single-page .project-columns-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media only screen and (min-width: 1024px) {
  .project-single-page .project-columns-grid {
    grid-template-columns: 1.8fr 1fr;
    gap: 60px;
  }
}
.project-single-page .project-main-content .project-section-title {
  font-family: "Inter", sans-serif;
  font-size: 26px;
  font-weight: 600;
  color: #231F20;
  margin: 0 0 24px;
}
@media only screen and (min-width: 768px) {
  .project-single-page .project-main-content .project-section-title {
    font-size: 30px;
  }
}
.project-single-page .project-main-content .project-entry-content {
  font-size: 16px;
  line-height: 1.7;
  color: #444444;
}
.project-single-page .project-main-content .project-entry-content p {
  margin: 0 0 24px;
}
.project-single-page .project-main-content .project-entry-content p:last-child {
  margin-bottom: 0;
}
.project-single-page .project-main-content .project-entry-content ul, .project-single-page .project-main-content .project-entry-content ol {
  margin: 0 0 20px 0;
  padding-left: 20px;
}
.project-single-page .project-main-content .project-entry-content ul:last-child, .project-single-page .project-main-content .project-entry-content ol:last-child {
  margin-bottom: 0;
}
.project-single-page .project-main-content .project-entry-content ul li, .project-single-page .project-main-content .project-entry-content ol li {
  margin-bottom: 8px;
}
.project-single-page .project-main-content .project-entry-content ul li:last-child, .project-single-page .project-main-content .project-entry-content ol li:last-child {
  margin-bottom: 0;
}
.project-single-page .project-main-content .project-entry-content ul {
  list-style-type: disc;
}
.project-single-page .project-main-content .project-entry-content ol {
  list-style-type: decimal;
}
.project-single-page .project-main-content .project-entry-content h3 {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #231F20;
  margin: 30px 0 15px;
}
.project-single-page .project-main-content .project-entry-content a:not(.btn) {
  color: #AA273E;
  text-decoration: underline;
  transition: color 0.2s ease;
}
.project-single-page .project-main-content .project-entry-content a:not(.btn):hover, .project-single-page .project-main-content .project-entry-content a:not(.btn):focus {
  color: #8c2032;
}
.project-single-page .project-main-content .project-contact-teaser {
  margin-top: 40px;
  padding: 30px;
  background-color: #f9f9f9;
  border-left: 4px solid #AA273E;
  border-radius: 6px;
}
.project-single-page .project-main-content .project-contact-teaser .teaser-title {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #231F20;
  margin: 0 0 12px;
}
.project-single-page .project-main-content .project-contact-teaser .teaser-text {
  font-size: 15px;
  line-height: 1.6;
  color: #555555;
  margin: 0 0 20px;
}
.project-single-page .project-main-content .project-contact-teaser .teaser-actions {
  display: flex;
  align-items: center;
}
.project-single-page .project-main-content .project-gallery-section {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #eaeaea;
}
.project-single-page .project-main-content .project-gallery-section .project-gallery-title {
  font-family: "Inter", sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: #AA273E;
  margin: 0 0 20px;
}
.project-single-page .project-main-content .project-gallery-section .project-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}
.project-single-page .project-main-content .project-gallery-section .project-gallery-grid .gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  aspect-ratio: 4/3;
}
.project-single-page .project-main-content .project-gallery-section .project-gallery-grid .gallery-item .gallery-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.project-single-page .project-main-content .project-gallery-section .project-gallery-grid .gallery-item:hover .gallery-img {
  transform: scale(1.04);
}
.project-single-page .project-sidebar .project-featured-card {
  margin-bottom: 30px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid #eaeaea;
}
.project-single-page .project-sidebar .project-featured-card .project-sidebar-img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
.project-single-page .project-sidebar .project-details-card {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid #eaeaea;
}
@media only screen and (min-width: 768px) {
  .project-single-page .project-sidebar .project-details-card {
    padding: 40px;
  }
}
.project-single-page .project-sidebar .project-details-card .card-title {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #231F20;
  margin: 0 0 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid #AA273E;
}
.project-single-page .project-sidebar .project-details-card .details-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}
.project-single-page .project-sidebar .project-details-card .details-list .details-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 15px;
}
.project-single-page .project-sidebar .project-details-card .details-list .details-item:last-child {
  border-bottom: none;
}
.project-single-page .project-sidebar .project-details-card .details-list .details-item .details-label {
  font-weight: 600;
  color: #888888;
}
.project-single-page .project-sidebar .project-details-card .details-list .details-item .details-value {
  font-weight: 500;
  color: #231F20;
  text-align: right;
}
.project-single-page .project-sidebar .project-details-card .project-sidebar-actions {
  display: flex;
  flex-direction: column;
}
.project-single-page .project-sidebar .project-details-card .project-sidebar-actions .btn {
  width: 100%;
}
.project-single-page .project-sidebar .project-details-card .project-sidebar-actions .btn.btn-arrow {
  justify-content: center;
  gap: 10px;
}

.project-archive-page {
  background-color: #ffffff;
}
.project-archive-page .archive-header {
  padding: 3em 0 20px;
  background-color: #ffffff;
}
@media only screen and (min-width: 768px) {
  .project-archive-page .archive-header {
    padding: 3em 0 30px;
  }
}
.project-archive-page .archive-header .archive-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 767px) {
  .project-archive-page .archive-header .archive-container {
    padding: 0 20px;
  }
}
.project-archive-page .archive-header .red-line {
  margin-bottom: 12px;
}
.project-archive-page .archive-header .archive-title {
  font-family: "Inter", sans-serif;
  font-size: 32px;
  font-weight: 600;
  color: #231F20;
  margin: 0;
  letter-spacing: -0.01em;
}
@media only screen and (min-width: 768px) {
  .project-archive-page .archive-header .archive-title {
    font-size: 40px;
  }
}
.project-archive-page .archive-header .archive-intro {
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.6;
  color: #4A4A4A;
  max-width: 800px;
}
.project-archive-page .archive-header .archive-intro p:last-child {
  margin-bottom: 0;
}
.project-archive-page .archive-content {
  padding: 0 0 80px;
  background-color: #ffffff;
}
@media only screen and (min-width: 768px) {
  .project-archive-page .archive-content {
    padding: 0 0 120px;
  }
}
.project-archive-page .archive-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 767px) {
  .project-archive-page .archive-container {
    padding: 0 20px;
  }
}
.project-archive-page .archive-layout-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media only screen and (min-width: 1024px) {
  .project-archive-page .archive-layout-grid {
    grid-template-columns: 280px 1fr;
    gap: 60px;
    align-items: start;
  }
}
.project-archive-page .archive-sidebar {
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
@media only screen and (min-width: 1024px) {
  .project-archive-page .archive-sidebar {
    padding: 40px;
    gap: 35px;
  }
}
.project-archive-page .archive-sidebar.filters-open {
  gap: 25px;
}
.project-archive-page .archive-sidebar.filters-open .archive-filters-wrapper {
  display: block;
}
.project-archive-page .archive-sidebar.filters-open .filter-mobile-toggle {
  border-color: #AA273E;
  color: #AA273E;
}
.project-archive-page .archive-sidebar.filters-open .filter-mobile-toggle .toggle-icon {
  transform: rotate(180deg);
}
.project-archive-page .archive-sidebar .filter-mobile-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background-color: #ffffff;
  border: 1px solid #eaeaea;
  color: #231F20;
  padding: 12px 20px;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}
.project-archive-page .archive-sidebar .filter-mobile-toggle:hover {
  border-color: #AA273E;
  color: #AA273E;
}
.project-archive-page .archive-sidebar .filter-mobile-toggle .toggle-icon {
  font-size: 10px;
  transition: transform 0.3s ease;
}
@media only screen and (min-width: 1024px) {
  .project-archive-page .archive-sidebar .filter-mobile-toggle {
    display: none;
  }
}
.project-archive-page .archive-sidebar .archive-filters-wrapper {
  display: none;
}
@media only screen and (min-width: 1024px) {
  .project-archive-page .archive-sidebar .archive-filters-wrapper {
    display: block !important;
  }
}
.project-archive-page .archive-sidebar .archive-filters-wrapper .filter-group {
  margin-top: 25px;
}
@media only screen and (min-width: 1024px) {
  .project-archive-page .archive-sidebar .archive-filters-wrapper .filter-group {
    margin-top: 0;
    margin-bottom: 35px;
  }
  .project-archive-page .archive-sidebar .archive-filters-wrapper .filter-group:last-child {
    margin-bottom: 0;
  }
}
.project-archive-page .archive-sidebar .archive-filters-wrapper .filter-group .filter-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 20px;
  gap: 10px;
}
.project-archive-page .archive-sidebar .archive-filters-wrapper .filter-group .filter-header .filter-title {
  margin: 0;
}
.project-archive-page .archive-sidebar .archive-filters-wrapper .filter-group .filter-title {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #AA273E;
  margin: 0 0 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.project-archive-page .archive-sidebar .archive-filters-wrapper .filter-group .filter-info-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #888888;
  transition: all 0.2s ease;
  outline: none;
}
.project-archive-page .archive-sidebar .archive-filters-wrapper .filter-group .filter-info-btn .info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.5px solid #aaaaaa;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 700;
  font-style: italic;
  line-height: 1;
  color: #777777;
  transition: all 0.2s ease;
}
.project-archive-page .archive-sidebar .archive-filters-wrapper .filter-group .filter-info-btn:hover .info-icon,
.project-archive-page .archive-sidebar .archive-filters-wrapper .filter-group .filter-info-btn:focus-visible .info-icon {
  border-color: #AA273E;
  color: #ffffff;
  background-color: #AA273E;
  transform: scale(1.08);
}
.project-archive-page .archive-sidebar .archive-filters-wrapper .filter-group .filter-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.project-archive-page .archive-sidebar .archive-filters-wrapper .filter-group .filter-item {
  margin: 0;
}
.project-archive-page .checkbox-container {
  display: flex;
  align-items: center;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #231F20;
}
@media only screen and (min-width: 768px) {
  .project-archive-page .checkbox-container {
    font-size: 15px;
  }
}
.project-archive-page .checkbox-container input[type=checkbox] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.project-archive-page .checkbox-container input[type=checkbox]:checked ~ .checkbox-box {
  border-color: #AA273E;
}
.project-archive-page .checkbox-container input[type=checkbox]:checked ~ .checkbox-box::after {
  display: block;
}
.project-archive-page .checkbox-container .checkbox-box {
  height: 18px;
  width: 18px;
  background-color: #ffffff;
  border: 1px solid #cccccc;
  border-radius: 2px;
  margin-right: 12px;
  position: relative;
  flex-shrink: 0;
  transition: all 0.2s ease;
}
.project-archive-page .checkbox-container .checkbox-box::after {
  content: "";
  position: absolute;
  display: none;
  left: 4px;
  top: 4px;
  width: 8px;
  height: 8px;
  background-color: #AA273E;
  border-radius: 1px;
}
.project-archive-page .checkbox-container .checkbox-label {
  line-height: 1.2;
}
.project-archive-page .checkbox-container:hover input[type=checkbox] ~ .checkbox-box {
  border-color: #AA273E;
}
.project-archive-page .archive-projects-section {
  width: 100%;
}
.project-archive-page .archive-projects-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
@media only screen and (min-width: 768px) {
  .project-archive-page .archive-projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (min-width: 1024px) {
  .project-archive-page .archive-projects-grid {
    gap: 40px;
  }
}
.project-archive-page .no-projects-found {
  text-align: center;
  padding: 50px 20px;
  background: #f9f9f9;
  border-radius: 4px;
  font-size: 16px;
  color: #666666;
}

@media only screen and (min-width: 1024px) {
  .uitbouw-archive-page .archive-projects-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

@media only screen and (min-width: 1024px) {
  .nieuwbouw-archive-page .archive-projects-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
}

.archive-load-more-wrapper {
  text-align: center;
  margin-top: 50px;
  width: 100%;
}
.archive-load-more-wrapper .archive-load-more-btn {
  display: inline-block;
  cursor: pointer;
  border: none;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  border-radius: 4px;
}

.filter-info-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.filter-info-modal.is-active {
  opacity: 1;
  visibility: visible;
}
.filter-info-modal.is-active .filter-info-modal-content {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.filter-info-modal .filter-info-modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.filter-info-modal .filter-info-modal-content {
  position: relative;
  z-index: 1;
  background-color: #ffffff;
  border-radius: 8px;
  width: 100%;
  max-width: 540px;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
  transform: translateY(12px) scale(0.97);
  opacity: 0;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease;
  display: flex;
  flex-direction: column;
}
.filter-info-modal .filter-info-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  border-bottom: 1px solid #e0e0e0;
  position: sticky;
  top: 0;
  background-color: #ffffff;
  z-index: 2;
}
.filter-info-modal .filter-info-modal-header .filter-info-modal-title {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #AA273E;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.filter-info-modal .filter-info-modal-header .filter-info-modal-close {
  background: none;
  border: none;
  padding: 4px 8px;
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
  color: #777777;
  transition: color 0.2s ease, transform 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.filter-info-modal .filter-info-modal-header .filter-info-modal-close:hover {
  color: #AA273E;
  transform: scale(1.15);
}
.filter-info-modal .filter-info-modal-body {
  padding: 24px 28px 30px;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  line-height: 1.65;
  color: #2b2b2b;
}
.filter-info-modal .filter-info-modal-body p {
  margin-top: 0;
  margin-bottom: 14px;
}
.filter-info-modal .filter-info-modal-body p:last-child {
  margin-bottom: 0;
}
.filter-info-modal .filter-info-modal-body ul,
.filter-info-modal .filter-info-modal-body ol {
  margin-top: 0;
  margin-bottom: 14px;
  padding-left: 20px;
}

.archive-project-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.archive-project-card .card-link-wrapper {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.archive-project-card .card-link-wrapper:hover .project-card-image .project-img {
  transform: scale(1.03);
}
.archive-project-card .card-link-wrapper:hover .project-card-details .project-title .title-arrow {
  transform: translateX(4px);
}
.archive-project-card .project-card-image {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  overflow: hidden;
  background-color: #eee;
  border-radius: 4px;
  margin-bottom: 20px;
}
.archive-project-card .project-card-image .project-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.archive-project-card .project-card-image .project-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #e5e5e5;
  color: #888888;
}
.archive-project-card .project-card-image .project-img-placeholder .dashicons {
  font-size: 40px;
  width: 40px;
  height: 40px;
}
.archive-project-card .project-card-details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.archive-project-card .project-card-details .project-title {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #AA273E;
  margin: 0;
  line-height: 1.35;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 15px;
}
@media only screen and (min-width: 768px) {
  .archive-project-card .project-card-details .project-title {
    font-size: 18px;
  }
}
.archive-project-card .project-card-details .project-title .title-arrow {
  color: #AA273E;
  font-size: 22px;
  line-height: 1;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
}

.section-pagina-teasers {
  padding: 3em 0;
  background-color: #ffffff;
}
@media only screen and (min-width: 1024px) {
  .section-pagina-teasers {
    padding: 3em 0;
  }
}
.section-pagina-teasers .teasers-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}
.section-pagina-teasers .teasers-section-title {
  font-family: "Inter", sans-serif;
  font-size: 30px;
  font-weight: 600;
  color: #AA273E;
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}
@media only screen and (min-width: 768px) {
  .section-pagina-teasers .teasers-section-title {
    font-size: 36px;
  }
}
.section-pagina-teasers .teasers-section-intro {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #555555;
  margin-bottom: 40px;
}
.section-pagina-teasers .teasers-section-intro p {
  margin: 0 0 20px;
}
.section-pagina-teasers .teasers-section-intro p:last-child {
  margin-bottom: 0;
}
.section-pagina-teasers .teasers-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
@media only screen and (min-width: 768px) {
  .section-pagina-teasers .teasers-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (min-width: 1024px) {
  .section-pagina-teasers .teasers-list {
    gap: 40px;
  }
}

.sticky-contact-bar {
  position: fixed;
  bottom: 2em;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 4em);
  padding: 1em 1.5em;
  max-width: 1400px;
  background-color: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  z-index: 9999;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.sticky-contact-bar.is-hidden {
  transform: translate(-50%, calc(100% + 3em));
  opacity: 0;
  pointer-events: none;
}
.sticky-contact-bar .sticky-contact-bar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.sticky-contact-bar .sticky-contact-bar-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.sticky-contact-bar .sticky-contact-bar-logo a {
  display: flex;
  align-items: center;
}
.sticky-contact-bar .sticky-contact-bar-logo img {
  height: 38px;
  width: auto;
  display: block;
}
.sticky-contact-bar .sticky-contact-bar-info {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  margin-left: auto;
  margin-right: 2em;
}
.sticky-contact-bar .sticky-contact-bar-info .contact-label {
  font-weight: 600;
  color: #AA273E;
}
.sticky-contact-bar .sticky-contact-bar-info .contact-email {
  color: #231F20;
  text-decoration: none;
  font-weight: 400;
  transition: color 0.2s ease;
}
.sticky-contact-bar .sticky-contact-bar-info .contact-email:hover {
  color: #AA273E;
  text-decoration: underline;
}
.sticky-contact-bar .sticky-contact-bar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.sticky-contact-bar .btn-bar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  height: 42px;
  text-transform: none; /* Override standard uppercase button style */
  letter-spacing: normal;
}
.sticky-contact-bar .btn-bar svg, .sticky-contact-bar .btn-bar img {
  display: block;
  flex-shrink: 0;
}
.sticky-contact-bar .btn-bar-red {
  background-color: #AA273E;
  color: #ffffff;
}
.sticky-contact-bar .btn-bar-red:hover {
  background-color: #8c2032;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(170, 39, 62, 0.15);
}
.sticky-contact-bar .btn-bar-green {
  background-color: #5A9E3C;
  color: #ffffff;
}
.sticky-contact-bar .btn-bar-green:hover {
  background-color: #4a8431;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(90, 158, 60, 0.15);
}
@media (max-width: 1023px) {
  .sticky-contact-bar {
    bottom: 1em;
    width: calc(100% - 2em);
    padding: 10px 16px;
  }
  .sticky-contact-bar .sticky-contact-bar-info {
    display: none;
  }
}
@media (max-width: 480px) {
  .sticky-contact-bar .sticky-contact-bar-container {
    gap: 8px;
  }
  .sticky-contact-bar .sticky-contact-bar-logo {
    display: none;
  }
  .sticky-contact-bar .sticky-contact-bar-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .sticky-contact-bar .btn-bar {
    padding: 8px 10px;
    font-size: 13px;
    height: 38px;
    text-align: center;
    white-space: nowrap;
  }
}

.site-footer {
  background-color: #AA273E;
  color: #ffffff;
  position: relative;
  width: 100%;
  margin-top: auto;
}
.site-footer .footer-main {
  padding: 80px 0 60px;
}
@media (max-width: 767px) {
  .site-footer .footer-main {
    padding: 50px 0 40px;
  }
}
.site-footer .footer-container {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 767px) {
  .site-footer .footer-container {
    padding: 0 20px;
  }
}
.site-footer .footer-logo {
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .site-footer .footer-logo {
    margin-bottom: 40px;
  }
}
.site-footer .footer-logo .footer-logo-img {
  height: 50px;
  width: auto;
  display: block;
}
@media (max-width: 767px) {
  .site-footer .footer-logo .footer-logo-img {
    height: 40px;
  }
}
.site-footer .footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 40px;
}
@media (max-width: 1023px) {
  .site-footer .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 30px;
  }
}
@media (max-width: 767px) {
  .site-footer .footer-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
}
.site-footer .footer-col .footer-col-title {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 20px 0;
  text-transform: none;
  letter-spacing: 0.5px;
}
.site-footer .footer-col .footer-address-text {
  font-size: 15px;
  line-height: 1.6;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
}
.site-footer .footer-col-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer .footer-col-links li {
  margin-bottom: 12px;
}
.site-footer .footer-col-links li:last-child {
  margin-bottom: 0;
}
.site-footer .footer-col-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 300;
  opacity: 0.85;
  transition: opacity 0.2s ease, -webkit-text-decoration 0.2s ease;
  transition: opacity 0.2s ease, text-decoration 0.2s ease;
  transition: opacity 0.2s ease, text-decoration 0.2s ease, -webkit-text-decoration 0.2s ease;
}
.site-footer .footer-col-links a:hover {
  opacity: 1;
  text-decoration: underline;
}
.site-footer .footer-col-links.address-links {
  margin-top: 15px;
}
.site-footer .footer-col-links.address-links a {
  font-weight: 400;
}
.site-footer .footer-social-icons {
  display: flex;
  gap: 12px;
  align-items: center;
}
.site-footer .footer-social-icons .social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}
.site-footer .footer-social-icons .social-icon:hover {
  transform: scale(1.1);
}
.site-footer .footer-social-icons .social-icon img {
  width: 36px;
  height: 36px;
  display: block;
}
.site-footer .footer-bottom-section {
  position: relative;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
@media (min-width: 768px) {
  .site-footer .footer-bottom-section {
    border-top: none;
    background: linear-gradient(115deg, transparent 38%, #ffffff 38.1%);
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .site-footer .footer-bottom-section {
    background: linear-gradient(115deg, transparent 42%, #ffffff 42.1%);
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .site-footer .footer-bottom-section {
    background: linear-gradient(115deg, transparent 48%, #ffffff 48.1%);
  }
}
@media (max-width: 767px) {
  .site-footer .footer-bottom-section {
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    border-top: none;
  }
}
.site-footer .footer-bottom-container {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 90px;
}
@media (max-width: 767px) {
  .site-footer .footer-bottom-container {
    padding: 0;
    flex-direction: column;
    align-items: stretch;
  }
}
.site-footer .footer-copyright-col {
  flex: 0 0 35%;
  color: #ffffff;
  font-size: 14px;
  font-weight: 300;
  padding: 20px 0;
}
@media (max-width: 1199px) {
  .site-footer .footer-copyright-col {
    flex: 0 0 38%;
  }
}
@media (max-width: 991px) {
  .site-footer .footer-copyright-col {
    flex: 0 0 44%;
  }
}
@media (max-width: 767px) {
  .site-footer .footer-copyright-col {
    background-color: #AA273E;
    padding: 20px;
    text-align: center;
    width: 100%;
  }
}
.site-footer .footer-copyright-col p {
  margin: 0;
}
.site-footer .footer-logos-col {
  flex: 0 0 65%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 20px 0 20px 40px;
}
@media (max-width: 1199px) {
  .site-footer .footer-logos-col {
    flex: 0 0 62%;
  }
}
@media (max-width: 991px) {
  .site-footer .footer-logos-col {
    flex: 0 0 56%;
  }
}
@media (max-width: 767px) {
  .site-footer .footer-logos-col {
    background-color: #ffffff;
    padding: 25px 20px;
    width: 100%;
    justify-content: center;
  }
}
.site-footer .footer-logos-list {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 1199px) {
  .site-footer .footer-logos-list {
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .site-footer .footer-logos-list {
    justify-content: center;
    gap: 15px 20px;
  }
}
.site-footer .footer-partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.site-footer .footer-partner-logo img {
  max-height: 42px;
  width: auto;
  display: block;
  transition: transform 0.2s ease;
}
.site-footer .footer-partner-logo img:hover {
  transform: scale(1.05);
}
@media (max-width: 1199px) {
  .site-footer .footer-partner-logo img {
    max-height: 36px;
  }
}
@media (max-width: 767px) {
  .site-footer .footer-partner-logo img {
    max-height: 32px;
  }
}

.section-snelle-links {
  padding: 3em 0;
  background-color: #ffffff;
}
.section-snelle-links .snelle-links-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}
.section-snelle-links .snelle-links-title {
  font-family: "Inter", sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: #231F20;
  margin: 0 0 20px;
  letter-spacing: -0.01em;
}
@media only screen and (min-width: 768px) {
  .section-snelle-links .snelle-links-title {
    font-size: 26px;
  }
}
.section-snelle-links .snelle-links-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.section-snelle-links .snelle-link-button {
  display: inline-flex;
  align-items: center;
  background-color: #efefef;
  color: #231F20;
  padding: 12px 24px;
  border-radius: 6px;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.2s cubic-bezier(0.16, 1, 0.3, 1), transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}
.section-snelle-links .snelle-link-button:hover {
  background-color: #e2e2e2;
  color: #000000;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.section-header-subpagina {
  background-color: #AA273E;
  padding: 3em 20px;
  text-align: center;
  margin: 0 auto;
}
@media only screen and (min-width: 768px) {
  .section-header-subpagina {
    padding: 4em 20px;
  }
}
.section-header-subpagina .header-subpagina-container {
  max-width: 1240px;
  margin: 0 auto;
}
.section-header-subpagina .header-subpagina-title {
  font-family: "Inter", sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
@media only screen and (min-width: 768px) {
  .section-header-subpagina .header-subpagina-title {
    font-size: 38px;
  }
}

.page-breadcrumbs {
  margin-bottom: 24px;
}
@media only screen and (min-width: 1024px) {
  .page-breadcrumbs {
    margin-bottom: 30px;
  }
}
.page-breadcrumbs .breadcrumbs-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 1.4;
}
.page-breadcrumbs .breadcrumb-item {
  display: inline-flex;
  align-items: center;
}
.page-breadcrumbs .breadcrumb-item a {
  color: #777777;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}
.page-breadcrumbs .breadcrumb-item a:hover {
  color: #AA273E;
}
.page-breadcrumbs .breadcrumb-item.active {
  color: #231F20;
  font-weight: 500;
}
.page-breadcrumbs .breadcrumb-separator {
  display: inline-flex;
  align-items: center;
  color: #cccccc;
  font-size: 12px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.breadcrumbs-outer-container {
  padding-top: 2.5em;
  padding-bottom: 0.5em;
  background-color: #ffffff;
}

.breadcrumbs-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}
.breadcrumbs-container .page-breadcrumbs {
  margin-bottom: 0;
}

.section-full-content {
  padding: 3em 0;
  background-color: #ffffff;
}
@media only screen and (min-width: 1024px) {
  .section-full-content {
    padding: 3em 0;
  }
}
.section-full-content .full-content-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}
.section-full-content .section-title-wrapper {
  margin-bottom: 24px;
  max-width: 850px;
}
.section-full-content .full-content-title {
  font-family: "Inter", sans-serif;
  font-size: 30px;
  font-weight: 600;
  color: #231F20;
  margin: 0;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
@media only screen and (min-width: 768px) {
  .section-full-content .full-content-title {
    font-size: 36px;
  }
}
.section-full-content .full-content-body {
  font-size: 15px;
  line-height: 1.7;
  color: #555555;
  margin-top: 24px;
  max-width: 850px;
}
.section-full-content .full-content-body p {
  margin: 0 0 20px;
}
.section-full-content .full-content-body p:last-child {
  margin-bottom: 0;
}
.section-full-content .full-content-body ul, .section-full-content .full-content-body ol {
  margin: 0 0 20px 0;
  padding-left: 20px;
}
.section-full-content .full-content-body ul:last-child, .section-full-content .full-content-body ol:last-child {
  margin-bottom: 0;
}
.section-full-content .full-content-body ul li, .section-full-content .full-content-body ol li {
  margin-bottom: 8px;
}
.section-full-content .full-content-body ul li:last-child, .section-full-content .full-content-body ol li:last-child {
  margin-bottom: 0;
}
.section-full-content .full-content-body ul {
  list-style-type: disc;
}
.section-full-content .full-content-body ol {
  list-style-type: decimal;
}
.section-full-content .full-content-body strong, .section-full-content .full-content-body b {
  color: #AA273E;
  display: block;
  font-size: 18px;
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 8px;
}
.section-full-content .full-content-body strong:first-child, .section-full-content .full-content-body b:first-child {
  margin-top: 0;
}
.section-full-content .full-content-body h3 {
  color: #AA273E;
  font-family: "Inter", sans-serif;
  font-size: 22px;
  font-weight: 600;
  margin-top: 35px;
  margin-bottom: 12px;
}
.section-full-content .full-content-body h3:first-child {
  margin-top: 0;
}
.section-full-content .full-content-body h4 {
  color: #AA273E;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 8px;
}
.section-full-content .full-content-body h4:first-child {
  margin-top: 0;
}
.section-full-content .full-content-body a:not(.btn) {
  color: #AA273E;
  text-decoration: underline;
  transition: color 0.2s ease;
}
.section-full-content .full-content-body a:not(.btn):hover, .section-full-content .full-content-body a:not(.btn):focus {
  color: #8c2032;
}

.section-foto-volle-breedte {
  padding: 3em 0;
  background-color: #ffffff;
}
@media only screen and (min-width: 1024px) {
  .section-foto-volle-breedte {
    padding: 3em 0;
  }
}
.section-foto-volle-breedte .foto-volle-breedte-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}
@media only screen and (min-width: 768px) {
  .section-foto-volle-breedte .foto-volle-breedte-container {
    padding: 0;
  }
}
.section-foto-volle-breedte .foto-volle-breedte-image-wrapper {
  width: 100%;
  overflow: hidden;
}
.section-foto-volle-breedte .foto-volle-breedte-image-wrapper .foto-volle-breedte-img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.section-foto-volle-breedte .foto-volle-breedte-video-wrapper {
  width: 100%;
  aspect-ratio: 16/9;
  position: relative;
  overflow: hidden;
}
.section-foto-volle-breedte .foto-volle-breedte-video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.section-usp-blok {
  background-color: #ffffff;
  overflow: hidden;
  padding: 2em 0;
}
.section-usp-blok .usp-container {
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media only screen and (min-width: 1024px) {
  .section-usp-blok .usp-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    min-height: 500px;
  }
  .section-usp-blok .usp-container.media-left .usp-content-side {
    grid-column: 2;
  }
  .section-usp-blok .usp-container.media-left .usp-media-side {
    grid-column: 1;
  }
}
.section-usp-blok .usp-content-side {
  width: 100%;
  background-color: #AA273E;
  color: #ffffff;
  padding: 3em 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (min-width: 768px) {
  .section-usp-blok .usp-content-side {
    padding: 3em 40px;
  }
}
@media only screen and (min-width: 1024px) {
  .section-usp-blok .usp-content-side {
    padding: 3em 60px;
  }
}
@media only screen and (min-width: 1200px) {
  .section-usp-blok .usp-content-side {
    padding: 3em 100px;
  }
}
.section-usp-blok .usp-content-inner {
  max-width: 500px;
  width: 100%;
}
.section-usp-blok .usp-title {
  font-family: "Inter", sans-serif;
  font-size: 30px;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 24px 0;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
@media only screen and (min-width: 768px) {
  .section-usp-blok .usp-title {
    font-size: 36px;
  }
}
.section-usp-blok .usp-text-editor {
  font-size: 15px;
  line-height: 1.7;
  color: #ffffff;
}
.section-usp-blok .usp-text-editor p {
  margin: 0 0 20px 0;
}
.section-usp-blok .usp-text-editor p:last-child {
  margin-bottom: 0;
}
.section-usp-blok .usp-text-editor ul {
  list-style: none;
  padding-left: 0;
  margin: 24px 0;
}
.section-usp-blok .usp-text-editor ul li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 14px;
  font-size: 15px;
  font-weight: 400;
  color: #ffffff;
}
.section-usp-blok .usp-text-editor ul li:last-child {
  margin-bottom: 0;
}
.section-usp-blok .usp-text-editor ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  background-image: url("../img/checkmark-wendelgelst-wit.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.section-usp-blok .usp-button-wrapper {
  margin-top: 35px;
}
.section-usp-blok .usp-button-wrapper .btn.btn-white {
  color: #231F20;
}
.section-usp-blok .usp-button-wrapper .btn.btn-white:hover {
  color: #AA273E;
}
.section-usp-blok .usp-media-side {
  width: 100%;
  position: relative;
  min-height: 350px;
}
@media only screen and (min-width: 768px) {
  .section-usp-blok .usp-media-side {
    min-height: 500px;
  }
}
@media only screen and (min-width: 1024px) {
  .section-usp-blok .usp-media-side {
    height: 100%;
    min-height: 500px;
  }
}
.section-usp-blok .usp-image-wrapper {
  width: 100%;
  height: 100%;
}
.section-usp-blok .usp-image-wrapper .usp-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.section-usp-blok .usp-video-wrapper {
  width: 100%;
  height: 100%;
  min-height: 350px;
  position: relative;
  background-color: #000;
}
@media only screen and (min-width: 768px) {
  .section-usp-blok .usp-video-wrapper {
    min-height: 250px;
  }
}
.section-usp-blok .usp-video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.section-usp-blok-kaart {
  background-color: #ffffff;
  padding: 2.5em 0;
}
.section-usp-blok-kaart .usp-blok-kaart-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}
.section-usp-blok-kaart .usp-blok-kaart-title {
  font-family: "Inter", sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: #231F20;
  margin: 0 0 24px;
  letter-spacing: -0.01em;
}
@media only screen and (min-width: 768px) {
  .section-usp-blok-kaart .usp-blok-kaart-title {
    font-size: 26px;
  }
}
.section-usp-blok-kaart .usp-blok-kaart-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media only screen and (min-width: 568px) {
  .section-usp-blok-kaart .usp-blok-kaart-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media only screen and (min-width: 1024px) {
  .section-usp-blok-kaart .usp-blok-kaart-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
}
.section-usp-blok-kaart .usp-card-item {
  display: flex;
  align-items: center;
  background: #ffffff;
  border: 1px solid #e2e4e8;
  border-radius: 12px;
  padding: 20px 22px;
  gap: 16px;
  box-sizing: border-box;
  min-height: 80px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.section-usp-blok-kaart .usp-card-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.section-usp-blok-kaart .usp-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  color: #111111;
}
.section-usp-blok-kaart .usp-card-icon .dashicons {
  font-size: 26px;
  width: 26px;
  height: 26px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-usp-blok-kaart .usp-card-icon .usp-icon-img {
  width: 28px;
  height: 28px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
.section-usp-blok-kaart .usp-card-text {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
  color: #111111;
  word-break: break-word;
}

.section-call-to-action-blok {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #AA273E;
  padding: 3em 20px;
  box-sizing: border-box;
  max-width: 1240px;
  width: calc(100% - 40px);
  margin: 3em auto;
  border-radius: 8px;
}
@media only screen and (min-width: 768px) {
  .section-call-to-action-blok {
    margin: 3em auto;
  }
}
@media only screen and (min-width: 1024px) {
  .section-call-to-action-blok {
    padding: 3em 40px;
    margin: 3em auto;
  }
}
.section-call-to-action-blok.has-media {
  background-color: #000;
}
.section-call-to-action-blok .cta-background-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}
.section-call-to-action-blok .cta-background-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.section-call-to-action-blok .cta-background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.section-call-to-action-blok .cta-background-video iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  border: 0;
  pointer-events: none;
}
@media (min-aspect-ratio: 16/9) {
  .section-call-to-action-blok .cta-background-video iframe {
    height: 56.25vw;
  }
}
@media (max-aspect-ratio: 16/9) {
  .section-call-to-action-blok .cta-background-video iframe {
    width: 177.78vh;
  }
}
.section-call-to-action-blok .cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(140, 32, 50, 0.8);
  z-index: 2;
}
.section-call-to-action-blok .cta-container {
  position: relative;
  z-index: 3;
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
.section-call-to-action-blok .cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.section-call-to-action-blok .cta-title {
  font-family: "Inter", sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  margin: 0;
  max-width: 800px;
}
@media only screen and (min-width: 768px) {
  .section-call-to-action-blok .cta-title {
    font-size: 38px;
  }
}
@media only screen and (min-width: 1024px) {
  .section-call-to-action-blok .cta-title {
    font-size: 44px;
  }
}
.section-call-to-action-blok .cta-button-wrapper {
  margin-top: 10px;
}
.section-call-to-action-blok .cta-button-wrapper .btn-cta {
  background-color: #ffffff;
  color: #231F20;
  font-weight: 700;
  border: 1px solid #ffffff;
}
.section-call-to-action-blok .cta-button-wrapper .btn-cta:hover {
  background-color: transparent;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Lightbox Modal & Gallery Overlay */
.gallery-hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(35, 31, 32, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-hover-overlay .zoom-icon {
  color: #ffffff;
  width: 32px;
  height: 32px;
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-hover-overlay,
.project-featured-card a:hover .gallery-hover-overlay {
  opacity: 1;
}
.gallery-item:hover .gallery-hover-overlay .zoom-icon,
.project-featured-card a:hover .gallery-hover-overlay .zoom-icon {
  transform: scale(1);
}

.project-featured-card a {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 8px;
}

.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  background-color: rgba(15, 15, 15, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  backdrop-filter: blur(5px);
}
.lightbox-modal.is-active {
  opacity: 1;
  visibility: visible;
}
.lightbox-modal .lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.lightbox-modal .lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}
.lightbox-modal .lightbox-close {
  position: absolute;
  top: 20px;
  right: 25px;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 36px;
  line-height: 1;
  cursor: pointer;
  z-index: 100000;
  transition: color 0.2s ease, transform 0.2s ease;
  padding: 5px 10px;
}
.lightbox-modal .lightbox-close:hover {
  color: #AA273E;
  transform: scale(1.1);
}
.lightbox-modal .lightbox-prev,
.lightbox-modal .lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #ffffff;
  padding: 0.3em 0 0.5em 0;
  font-size: 28px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100000;
  transition: background 0.2s ease, transform 0.2s ease;
}
.lightbox-modal .lightbox-prev:hover,
.lightbox-modal .lightbox-next:hover {
  background: #AA273E;
  transform: translateY(-50%) scale(1.08);
}
.lightbox-modal .lightbox-prev {
  left: 20px;
}
.lightbox-modal .lightbox-next {
  right: 20px;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}
.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
  will-change: auto;
}/*# sourceMappingURL=global.css.map */