:root {
  --ppc-white: #ffffff;
  --ppc-ink: #233238;
  --ppc-text: #46575C;
  --ppc-muted: #64747A;
  --ppc-line: #C9D1CD;
  --ppc-sand: #5C766A;
  --ppc-sand-dark: #3E584C;
  --ppc-accent-light: #B9CEC2;
  --ppc-cream: #F4F3EE;
  --ppc-stone: #E1E4DF;
  --ppc-footer: #233238;
  --ppc-shadow: 0 18px 45px rgba(35, 50, 56, 0.14);
  --ppc-container-max: 1320px;
  scroll-behavior: auto;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
  scroll-behavior: auto;
}

body {
  overflow-x: clip;
  margin: 0;
  color: var(--ppc-text);
  background: var(--ppc-white);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.is-menu-open {
  overflow: hidden;
}

main,
.site-footer {
  animation: pageEnter 0.46s cubic-bezier(0.16, 0.84, 0.24, 1) backwards;
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.16, 0.84, 0.24, 1);
}

body.is-page-exiting {
  pointer-events: none;
}

body.is-page-exiting main,
body.is-page-exiting .site-footer {
  animation: pageExit 0.34s cubic-bezier(0.4, 0, 0.2, 1) both;
}

body.is-page-exiting .site-header,
body.is-page-exiting .floating-contact,
body.is-page-exiting .back-to-top {
  opacity: 0;
  transition: opacity 0.24s ease;
}

@supports not (overflow: clip) {
  html {
    overflow-x: hidden;
  }

  body {
    overflow-x: visible;
  }
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, opacity 0.25s ease;
}

a:hover {
  color: var(--ppc-sand);
}

/* Links in doorlopende tekst moeten zichtbaar klikbaar zijn. Navigatie,
   kaarten en knoppen behouden hun eigen componentstijl. */
main p a:not(.btn),
.content-section li a:not(.btn),
.content-highlight li a:not(.btn) {
  color: var(--ppc-sand-dark);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.16em;
}

main p a:not(.btn):hover,
main p a:not(.btn):focus-visible,
.content-section li a:not(.btn):hover,
.content-section li a:not(.btn):focus-visible,
.content-highlight li a:not(.btn):hover,
.content-highlight li a:not(.btn):focus-visible {
  color: var(--ppc-ink);
  text-decoration-thickness: 2px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  color: var(--ppc-ink);
  font-family: "Rajdhani", Arial, sans-serif;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0;
}

p {
  margin: 0;
}

.container {
  max-width: 1120px;
  padding-left: 35px;
  padding-right: 35px;
}

.container-xxl {
  max-width: var(--ppc-container-max);
  padding-left: 35px;
  padding-right: 35px;
}

.btn {
  --bs-btn-padding-x: 35px;
  --bs-btn-padding-y: 15px;
  --bs-btn-border-radius: 4px;
  --bs-btn-font-family: "Manrope", Arial, sans-serif;
  --bs-btn-font-size: 15px;
  --bs-btn-font-weight: 700;
  --bs-btn-line-height: 1;
  letter-spacing: 1px;
  text-transform: uppercase;
  transform: translateZ(0);
  transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
  will-change: transform;
}

.btn:hover,
.btn:focus-visible {
  transform: scale(1.025);
}

.btn-sm {
  --bs-btn-padding-x: 28px;
  --bs-btn-padding-y: 11px;
  --bs-btn-font-size: 13px;
}

.btn-primary {
  --bs-btn-color: var(--ppc-white);
  --bs-btn-bg: var(--ppc-sand);
  --bs-btn-border-color: var(--ppc-sand);
  --bs-btn-hover-color: var(--ppc-white);
  --bs-btn-hover-bg: var(--ppc-ink);
  --bs-btn-hover-border-color: var(--ppc-ink);
  --bs-btn-active-bg: var(--ppc-ink);
  --bs-btn-active-border-color: var(--ppc-ink);
}

.btn-outline-primary {
  --bs-btn-color: var(--ppc-sand-dark);
  --bs-btn-border-color: var(--ppc-line);
  --bs-btn-hover-color: var(--ppc-white);
  --bs-btn-hover-bg: var(--ppc-ink);
  --bs-btn-hover-border-color: var(--ppc-ink);
  --bs-btn-active-bg: var(--ppc-ink);
  --bs-btn-active-border-color: var(--ppc-ink);
}

.section-space {
  padding: 105px 0 140px;
}

.load-fade {
  animation: loadFadeDown 0.75s cubic-bezier(0.2, 0.72, 0.25, 1) 0.12s both;
}

.hero__bg {
  animation: heroImageIn 1.4s cubic-bezier(0.2, 0.72, 0.25, 1) both;
}

.hero__content > * {
  animation: heroTextIn 0.8s cubic-bezier(0.2, 0.72, 0.25, 1) both;
}

.hero__content > *:nth-child(1) {
  animation-delay: 0.25s;
}

.hero__content > *:nth-child(2) {
  animation-delay: 0.36s;
}

.hero__content > *:nth-child(3) {
  animation-delay: 0.47s;
}

.hero__content > *:nth-child(4) {
  animation-delay: 0.58s;
}

.floating-contact {
  animation: floatingContactIn 0.75s cubic-bezier(0.2, 0.72, 0.25, 1) 0.75s both;
}

body:not(.aos-ready) [data-aos] {
  opacity: 1 !important;
  transform: none !important;
}

@keyframes loadFadeDown {
  from {
    opacity: 0;
    transform: translate3d(0, -18px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes heroImageIn {
  from {
    opacity: 0.75;
    transform: scale(1.1);
  }

  to {
    opacity: 1;
    transform: scale(1.035);
  }
}

@keyframes heroTextIn {
  from {
    opacity: 0;
    transform: translate3d(0, 28px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes floatingContactIn {
  from {
    opacity: 0;
    transform: translate3d(42px, -50%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, -50%, 0);
  }
}

@keyframes pageEnter {
  from {
    opacity: 0;
    transform: translate3d(18px, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes pageExit {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

  to {
    opacity: 0;
    transform: translate3d(-18px, 0, 0);
  }
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  padding-top: 35px;
}

.navbar {
  padding: 0;
}

.navbar-brand {
  margin: 0;
  padding: 0;
}

.logo-mark {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 110px;
  height: auto;
  color: var(--ppc-white);
  font-family: "Rajdhani", Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}

.logo-mark__arc {
  position: absolute;
  top: 3px;
  left: 50%;
  width: 78px;
  transform: translateX(-50%) rotate(-18deg);
  font-size: 12px;
  line-height: 1;
  text-align: center;
}

.logo-mark__core {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 2px solid currentColor;
  border-radius: 50%;
  font-size: 26px;
  line-height: 1;
}

.navbar-nav {
  gap: 28px;
}

.navbar-dark .navbar-nav .nav-link {
  position: relative;
  padding: 9px 0;
  color: rgba(255, 255, 255, 0.72);
  font-family: "Manrope", Arial, sans-serif;
    font-size: 17px;
  font-weight: 600;
  line-height: 1.15;
}

.navbar-dark .navbar-nav .nav-link::before {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  margin: 0 auto;
  content: "";
  background: var(--ppc-sand);
  transition: width 0.25s ease;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link:focus {
  color: var(--ppc-white);
}

.navbar-dark .navbar-nav .nav-link.active {
  color: var(--ppc-accent-light);
}

.navbar-dark .navbar-nav .nav-link:hover::before,
.navbar-dark .navbar-nav .nav-link.active::before {
  width: 28px;
}

.navbar-dark .navbar-nav .dropdown-toggle::after {
  display: inline-block;
  width: 10px;
  height: 5px;
  margin-left: 8px;
  vertical-align: 2px;
  content: "";
  border-top: 5px solid var(--ppc-white);
  border-right: 5px solid transparent;
  border-bottom: 0;
  border-left: 5px solid transparent;
  transition: none;
}

.navbar-dark .navbar-nav .nav-link.active.dropdown-toggle::after {
  border-top-color: var(--ppc-accent-light);
}

.navbar-nav .dropdown {
  position: relative;
}

.dropdown-menu {
  --bs-dropdown-min-width: 220px;
  --bs-dropdown-padding-x: 25px;
  --bs-dropdown-padding-y: 25px;
  --bs-dropdown-border-width: 0;
  --bs-dropdown-border-radius: 4px;
  --bs-dropdown-link-color: var(--ppc-ink);
  --bs-dropdown-link-hover-color: var(--ppc-white);
  --bs-dropdown-link-hover-bg: var(--ppc-sand);
  --bs-dropdown-link-active-color: var(--ppc-white);
  --bs-dropdown-link-active-bg: var(--ppc-sand);
  box-shadow: var(--ppc-shadow);
}
.dropdown-menu li {
  border-bottom: solid 1px var(--ppc-sand);
}
.dropdown-menu li:last-child {
  border-bottom: none;
}

.dropdown-item {
  font-size: 15px;
  font-weight: 700;
  padding-top: 10px;
  padding-bottom: 10px;
}


@media (min-width: 992px) {
  .navbar-nav .dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    margin: 0;
    transform: translate3d(-50%, 0, 0);
  }
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  height: 100vh;
  min-height: 100vh;
  overflow: hidden;
  color: var(--ppc-white);
  background: var(--ppc-ink);
}

.hero__bg {
  position: absolute;
  inset: -24px;
  background-image: var(--hero-image, url("../../imgs/samples/projectplan-sample-001.jpg"));
  background-position: center;
  background-size: cover;
  transform: scale(1.035);
  transform-origin: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.68);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding-top: 105px;
  text-align: center;
}

.hero__eyebrow {
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.76);
  font-family: "Rajdhani", Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
}

.hero h1 {
  color: var(--ppc-white);
  font-size: 80px;
}

.hero p:not(.hero__eyebrow) {
  max-width: 650px;
  margin: 22px auto 35px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  line-height: 1.7;
}

.floating-contact {
  position: fixed;
  top: 50%;
  right: 0;
  z-index: 30;
  display: grid;
  border-radius: 4px 0 0 4px;
  transform: translateY(-50%);
}

.floating-contact a {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
  width: 150px;
  height: 42px;
  padding: 0;
  color: var(--ppc-white);
  background: var(--ppc-sand);
  font-size: 15px;
  box-shadow: var(--ppc-shadow);
  transform: translate3d(108px, 0, 0);
  transition: transform 0.32s cubic-bezier(0.2, 0.72, 0.25, 1), background-color 0.25s ease;
}

.floating-contact span {
  display: flex;
  flex: 0 0 108px;
  justify-content: center;
  font-family: "Rajdhani", Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.4px;
  line-height: 1;
  opacity: 0;
  text-transform: uppercase;
  transform: translate3d(8px, 0, 0);
  transition: opacity 0.2s ease, transform 0.32s cubic-bezier(0.2, 0.72, 0.25, 1);
  white-space: nowrap;
}

.floating-contact i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 42px;
  color: var(--ppc-white);
  font-size: 17px;
  line-height: 1;
  text-align: center;
}

.floating-contact a + a {
  border-top: 1px solid rgba(255, 255, 255, 0.35);
}

.floating-contact a:hover,
.floating-contact a:focus-visible {
  background: var(--ppc-ink);
  color: var(--ppc-white);
  outline: none;
  transform: translate3d(0, 0, 0);
}

.floating-contact a:hover span,
.floating-contact a:focus-visible span {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.back-to-top {
  position: fixed;
  right: 0;
  bottom: 35px;
  z-index: 31;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  color: var(--ppc-white);
  background: var(--ppc-ink);
  border: 0;
  border-radius: 4px 0 0 4px;
  box-shadow: var(--ppc-shadow);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(42px, 0, 0);
  transition: opacity 0.28s ease, transform 0.28s ease, background-color 0.25s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
}

.back-to-top:hover,
.back-to-top:focus-visible {
  color: var(--ppc-white);
  background: var(--ppc-sand);
  outline: none;
}

.intro-section h2 {
  max-width: 780px;
  margin-bottom: 45px;
  color: var(--ppc-sand-dark);
  font-size: 42px;
}

.intro-copy {
  max-width: 890px;
}

.intro-copy p + p {
  margin-top: 8px;
}

.intro-copy p:last-child {
  color: var(--ppc-ink);
  font-weight: 800;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 35px;
}

.permit-section {
  position: relative;
  padding: 105px 0;
  background: var(--ppc-cream);
}

.permit-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(360px, 0.84fr);
  overflow: hidden;
  background: var(--ppc-white);
  border: 1px solid var(--ppc-line);
  border-radius: 4px;
  box-shadow: var(--ppc-shadow);
}

.permit-panel::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1;
  height: 6px;
  content: "";
  background: var(--ppc-sand);
}

.permit-panel__content {
  padding: 72px 70px;
}

.permit-panel__eyebrow {
  margin-bottom: 16px;
  color: var(--ppc-sand-dark);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.permit-panel h2 {
  max-width: 650px;
  margin-bottom: 28px;
  font-size: 48px;
}

.permit-panel h2 span {
  display: block;
  color: var(--ppc-sand-dark);
}

.permit-panel__lead {
  margin-bottom: 16px;
  color: var(--ppc-ink);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
}

.permit-panel__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  margin-top: 34px;
}

.permit-panel__source {
  color: var(--ppc-sand-dark);
  font-size: 14px;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.permit-panel__source span {
  display: inline-block;
  margin-left: 4px;
  transition: transform 0.2s ease;
}

.permit-panel__source:hover,
.permit-panel__source:focus-visible {
  color: var(--ppc-ink);
}

.permit-panel__source:hover span,
.permit-panel__source:focus-visible span {
  transform: translate3d(2px, -2px, 0);
}

.permit-panel__facts {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 60px;
  color: rgba(255, 255, 255, 0.82);
  background: var(--ppc-ink);
}

.permit-panel__facts h3 {
  margin-bottom: 28px;
  color: var(--ppc-white);
  font-size: 27px;
  line-height: 1.2;
}

.permit-panel__facts ul {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.permit-panel__facts li {
  position: relative;
  padding-left: 32px;
  line-height: 1.55;
}

.permit-panel__facts li::before {
  position: absolute;
  top: 1px;
  left: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 21px;
  height: 21px;
  content: "\2713";
  color: var(--ppc-ink);
  background: var(--ppc-accent-light);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
}

.permit-panel__notice {
  margin-top: 32px;
  padding: 20px 22px;
  background: rgba(255, 255, 255, 0.08);
  border-left: 3px solid var(--ppc-accent-light);
  font-size: 13px;
  line-height: 1.6;
}

.permit-panel__notice strong {
  color: var(--ppc-white);
}
.audience-section {
  padding-bottom: 105px;
}

.audience-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-height: 260px;
  background: var(--ppc-cream);
  padding-top: 35px;
  padding-bottom: 35px;
}

.audience-card {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  align-items: center;
  gap: 20px;
  padding: 35px 70px;
}

.audience-card--split {
  border-left: 1px solid var(--ppc-line);
}

.audience-card__icon {
  color: var(--ppc-ink);
  font-size: 58px;
  line-height: 1;
}

.audience-card h3 {
  margin-bottom: 14px;
  font-size: 34px;
}

.audience-card p {
  max-width: 360px;
  margin-bottom: 28px;
  font-size: 15px;
  line-height: 1.55;
}

.values-section {
  position: relative;
  padding: 0 0 105px;
  background: linear-gradient(to bottom, var(--ppc-white) 0, var(--ppc-white) 120px, var(--ppc-stone) 120px, var(--ppc-stone) 100%);
}

.values-image {
  margin: 0 auto;
}

.values-image img {
  width: 100%;
  height: 430px;
  object-fit: cover;
}

.values-content {
  padding-top: 90px;
}

.values-content h2 {
  margin-bottom: 60px;
  font-size: 38px;
}

.values-grid {
  margin-left: 0;
  margin-right: 0;
}

.value-item {
  min-height: 250px;
  padding: 0 35px;
  text-align: center;
}

.value-item + .value-item {
  border-left: 1px solid rgba(79, 56, 42, 0.16);
}

.value-item i {
  display: block;
  margin-bottom: 20px;
  color: var(--ppc-ink);
  font-size: 52px;
  line-height: 1;
}

.value-item h3 {
  min-height: 48px;
  margin-bottom: 20px;
  font-size: 18px;
  font-family: "Manrope", Arial, sans-serif;
  line-height: 1.2;
}

.value-item p {
  max-width: 210px;
  margin: 0 auto;
  font-size: 14px;
  line-height: 1.55;
}

.realisations-section {
  --scroll-distance: 900px;
  --realisations-gap: 28px;
  --realisations-gap-space: 84px;
  --realisations-visible-cards: 3.5;
  --realisations-side-space: max(35px, calc((100vw - var(--ppc-container-max)) / 2 + 35px));
  --realisations-card-width: calc((100vw - var(--realisations-side-space) - var(--realisations-gap-space)) / var(--realisations-visible-cards));
  position: relative;
  min-height: calc(100vh + var(--scroll-distance));
  background: var(--ppc-white);
}

.realisations-sticky {
  position: relative;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100vh;
  min-height: 0;
  overflow: hidden;
  padding: 105px 0 90px;
}

.realisations-section.is-pinned .realisations-sticky,
.realisations-section.is-after-pin .realisations-sticky {
  left: 0;
  z-index: 2;
  width: 100%;
  background: var(--ppc-white);
}

.realisations-section.is-pinned .realisations-sticky {
  position: fixed;
  top: 0;
}

.realisations-section.is-after-pin .realisations-sticky {
  position: absolute;
  top: auto;
  bottom: 0;
}

.realisations-section h2 {
  margin-bottom: 55px;
  color: var(--ppc-sand-dark);
  font-size: 40px;
}

.realisations-viewport {
  width: 100%;
  overflow: visible;
}

.realisations-track {
  display: flex;
  gap: var(--realisations-gap);
  width: max-content;
  padding-left: var(--realisations-side-space);
  padding-right: 35px;
  will-change: transform;
}

.realisation-card {
  flex: 0 0 var(--realisations-card-width);
  max-width: var(--realisations-card-width);
}

.realisation-card:nth-child(n+9) {
  display: none;
}

.realisation-card figure {
  position: relative;
  height: 540px;
  margin: 0 0 24px;
  overflow: hidden;
  border-radius: 4px;
  background: var(--ppc-cream);
}

.realisation-card figure a {
  display: block;
  width: 100%;
  height: 100%;
}

.realisation-card figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.realisation-card:hover figure img {
  transform: scale(1.035);
}

.realisation-card span {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  width: max-content;
  min-height: 32px;
  margin: -40px 0 0 25px;
  padding: 0 18px;
  color: var(--ppc-white);
  background: var(--ppc-ink);
  border-radius: 2px;
  font-family: "Rajdhani", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 1;
  text-transform: uppercase;
}

.realisation-card h3 {
  margin-top: 35px;
  padding: 0 25px;
  color: var(--ppc-sand-dark);
  font-size: 22px;
}

.realisation-card p {
  min-height: 78px;
  margin-top: 18px;
  padding: 0 25px;
  font-size: 14px;
  line-height: 1.55;
}

.realisation-card > a {
  display: inline-flex;
  margin-left: 25px;
  margin-top: 20px;
  color: var(--ppc-sand-dark);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-decoration: underline;
}

.realisation-card > a:hover {
  color: var(--ppc-ink);
}

.realisations-cta {
  margin-top: 105px;
  text-align: center;
}

.site-footer {
  position: relative;
  z-index: 5;
  padding: 92px 0 70px;
  color: rgba(255, 255, 255, 0.76);
  background: var(--ppc-footer);
  font-size: 14px;
}

.footer-cta {
  position: absolute;
  z-index: 6;
  top: -21px;
  right: max(35px, calc((100vw - var(--ppc-container-max)) / 2 + 35px));
}

.footer-cta.btn-primary  {
  --bs-btn-hover-color: var(--ppc-ink);
  --bs-btn-hover-bg: white; 
  --bs-btn-hover-border-color: var(--ppc-ink);

}






.logo-mark--footer {
  color: var(--ppc-white);
}

.logo-mark--footer img {
  filter: none;
}

.site-footer address {
  margin: 0;
  line-height: 1.7;
}

.footer-nav,
.social-list,
.legal-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-nav a,
.legal-links a {
  color: rgba(255, 255, 255, 0.76);
}

.footer-nav a:hover,
.legal-links a:hover {
  color: var(--ppc-white);
}

.social-list {
  display: flex;
  gap: 9px;
  margin-top: 10px;
}

.social-list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  color: var(--ppc-footer);
  background: rgba(255, 255, 255, 0.82);
  border-radius: 50%;
  font-size: 12px;
}

.social-list a:hover {
  color: var(--ppc-white);
  background: var(--ppc-sand);
}

.legal-links {
  display: grid;
  gap: 2px;
  padding-top: 0px;
  margin-top: 0px;
}

.page-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 520px;
  overflow: hidden;
  padding: 190px 0 105px;
  color: var(--ppc-white);
  background: var(--ppc-ink);
}

.page-hero__bg,
.page-hero__overlay {
  position: absolute;
  inset: 0;
}

.page-hero__bg {
  background-image: url("../../imgs/samples/projectplan-sample-001.jpg");
  background-position: center;
  background-size: cover;
  transform: scale(1.03);
}

.page-hero__overlay {
  background: rgba(0, 0, 0, 0.64);
}

.page-hero__content {
  position: relative;
  z-index: 2;
}

.page-hero__breadcrumb {
  margin-bottom: 14px;
  color: var(--ppc-accent-light);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1px;
  line-height: 1.2;
  text-transform: uppercase;
}

.page-hero__breadcrumb .breadcrumb {
  --bs-breadcrumb-divider: "/";
  --bs-breadcrumb-divider-color: rgba(255, 255, 255, 0.55);
  margin: 0;
}

.page-hero__breadcrumb .breadcrumb-item {
  color: rgba(255, 255, 255, 0.78);
}

.page-hero__breadcrumb .breadcrumb-item + .breadcrumb-item {
  padding-left: 10px;
}

.page-hero__breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  padding-right: 10px;
  color: rgba(255, 255, 255, 0.55);
}

.page-hero__breadcrumb a {
  color: rgba(255, 255, 255, 0.82);
}

.page-hero__breadcrumb a:hover,
.page-hero__breadcrumb a:focus-visible {
  color: var(--ppc-white);
}

.page-hero__breadcrumb .active {
  color: var(--ppc-accent-light);
}

.page-hero__content p,
.section-kicker {
  margin-bottom: 14px;
  color: var(--ppc-sand);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1px;
  line-height: 1.2;
  text-transform: uppercase;
}

.page-hero__content h1 {
  max-width: 860px;
  color: var(--ppc-white);
  font-size: 64px;
}

.content-section {
  background: var(--ppc-white);
}

.seo-landing {
  width: 100%;
}

.seo-landing__section {
  width: 100%;
  margin-bottom: 72px;
}

.seo-landing__section h2,
.seo-landing__cta h2 {
  max-width: none;
  margin: 0 0 24px;
  color: var(--ppc-sand-dark);
  font-size: 42px;
}

.seo-landing__section p,
.seo-landing__section ul,
.seo-landing__cta p {
  width: 100%;
  max-width: none;
  font-size: 16px;
  line-height: 1.75;
}

.seo-landing__section p + p {
  margin-top: 16px;
}

.seo-landing__section ul {
  margin: 24px 0 0;
  padding-left: 22px;
}

.seo-landing__section li + li {
  margin-top: 8px;
}

.seo-landing__cta {
  display: block;
  width: 100%;
  margin-top: 16px;
  padding: 56px;
  background: var(--ppc-cream);
  border-radius: 4px;
}

.seo-landing__cta .btn {
  margin-top: 24px;
}

.seo-faq {
  width: 100%;
  margin-top: 72px;
  padding-top: 56px;
  border-top: 1px solid rgba(79, 56, 42, 0.2);
}

.seo-faq__header {
  max-width: 820px;
  margin-bottom: 32px;
}

.seo-faq__header h2 {
  margin: 0 0 14px;
  color: var(--ppc-sand-dark);
  font-size: 42px;
}

.seo-faq__header p {
  margin: 0;
  font-size: 16px;
  line-height: 1.75;
}

.seo-faq__item {
  border-top: 1px solid rgba(79, 56, 42, 0.2);
}

.seo-faq__item:last-child {
  border-bottom: 1px solid rgba(79, 56, 42, 0.2);
}

.seo-faq__question {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 32px;
  gap: 24px;
  align-items: center;
  width: 100%;
  padding: 24px 0;
  color: var(--ppc-ink);
  cursor: pointer;
  font-family: var(--ppc-font-heading);
  font-size: 22px;
  line-height: 1.3;
  list-style: none;
}

.seo-faq__question::-webkit-details-marker {
  display: none;
}

.seo-faq__question::after {
  content: "+";
  color: var(--ppc-sand-dark);
  font-family: Arial, sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1;
  text-align: center;
}

.seo-faq__item[open] .seo-faq__question::after {
  content: "-";
}

.seo-faq__answer {
  max-width: 960px;
  padding: 0 56px 26px 0;
}

.seo-faq__answer p {
  margin: 0;
  font-size: 16px;
  line-height: 1.75;
}

.text-media-block {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
  align-items: center;
  gap: 70px;
  margin-bottom: 105px;
}

.text-media-block--reverse {
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
}

.text-media-block--reverse figure {
  order: 2;
}

.text-media-block figure {
  margin: 0;
  overflow: hidden;
  border-radius: 4px;
}

.text-media-block img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.text-media-block__content h2,
.listing-intro h2,
.detail-intro h2,
.contact-intro h2 {
  max-width: 760px;
  margin-bottom: 28px;
  color: var(--ppc-sand-dark);
  font-size: 42px;
}

.text-media-block__content p,
.listing-intro p,
.detail-intro p,
.contact-intro p {
  max-width: 680px;
  font-size: 16px;
  line-height: 1.75;
}

.text-media-block__content p + p {
  margin-top: 16px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 32px;
  color: var(--ppc-ink);
  font-weight: 800;
}

.check-list li::before {
  position: absolute;
  top: 2px;
  left: 0;
  content: "\f26e";
  color: var(--ppc-sand);
  font-family: "bootstrap-icons";
  font-weight: 400;
}

.content-highlight {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr) auto;
  align-items: center;
  gap: 35px;
  margin-top: 55px;
  padding: 70px;
  background: var(--ppc-cream);
  border-radius: 4px;
}

.content-highlight h2 {
  color: var(--ppc-ink);
  font-size: 36px;
}

.content-highlight p {
  font-size: 16px;
  line-height: 1.7;
}

.listing-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: 70px;
  align-items: center;
  margin-bottom: 55px;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 55px;
}

.filter-btn {
  min-height: 42px;
  padding: 0 24px;
  color: var(--ppc-sand-dark);
  background: transparent;
  border: 1px solid var(--ppc-line);
  border-radius: 4px;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.8px;
  line-height: 1;
  text-transform: uppercase;
  transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.filter-btn:hover,
.filter-btn:focus-visible,
.filter-btn.is-active {
  color: var(--ppc-white);
  background: var(--ppc-ink);
  border-color: var(--ppc-ink);
  outline: none;
  transform: scale(1.025);
}

.masonry-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-flow: dense;
  grid-auto-rows: 8px;
  gap: 35px;
  align-items: start;
}

.masonry-card {
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
  break-inside: avoid;
}

.masonry-card.is-hidden,
.masonry-card.is-filtered-out {
  display: none;
}

.masonry-card figure {
  margin: 0 0 0;
  overflow: hidden;
  border-radius: 4px;
  background: var(--ppc-cream);
}

.masonry-card figure a,
.masonry-card figure img {
  display: block;
  width: 100%;
}

.masonry-card figure img {
  height: auto;
  transition: transform 0.35s ease;
}

.masonry-card:hover figure img {
  transform: scale(1.035);
}

.masonry-card span {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  width: max-content;
  min-height: 32px;
  margin: -16px 0 0 25px;
  padding: 0 18px;
  color: var(--ppc-white);
  background: var(--ppc-ink);
  border-radius: 2px;
  font-family: "Rajdhani", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 1;
  text-transform: uppercase;
}

.masonry-card h3 {
  margin-top: 28px;
  padding: 0 25px;
  color: var(--ppc-sand-dark);
  font-size: 24px;
}

.masonry-card p {
  margin-top: 16px;
  padding: 0 25px;
  font-size: 14px;
  line-height: 1.6;
}

.masonry-card > a {
  display: inline-flex;
  margin: 22px 0 0 25px;
  color: var(--ppc-sand-dark);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-decoration: underline;
}

.masonry-card > a:hover {
  color: var(--ppc-ink);
}

.load-status {
  margin-top: 15px;
  color: var(--ppc-sand-dark);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-align: center;
  text-transform: uppercase;
}

.detail-intro {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  gap: 56px;
  align-items: start;
  margin-bottom: 90px;
}

.project-data {
  display: grid;
  margin: 0;
  padding: 35px;
  background: var(--ppc-cream);
  border-radius: 4px;
}

.project-data div {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--ppc-line);
}

.project-data div:first-child {
  padding-top: 0;
}

.project-data div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.project-data dt {
  color: var(--ppc-ink);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.project-data dd {
  margin: 0;
}

.detail-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-flow: dense;
  grid-auto-rows: 1px;
  column-gap: 28px;
  row-gap: 0;
  align-items: start;
}

.detail-gallery a {
  display: block;
  overflow: hidden;
  outline: none;
  border-radius: 4px;
  -webkit-tap-highlight-color: transparent;
}

.detail-gallery a:focus,
.detail-gallery a:active {
  outline: none;
  box-shadow: none;
}

.detail-gallery a:focus-visible {
  outline: 2px solid var(--ppc-sand);
  outline-offset: 4px;
}

.detail-gallery img {
  width: 100%;
  height: auto;
  outline: none;
  transition: transform 0.35s ease;
}

.detail-gallery a:nth-child(3n+2) img {
  height: auto;
}

.detail-gallery a:hover img {
  transform: scale(1.035);
}

.detail-actions {
  margin-top: 70px;
  text-align: center;
}

.mfp-bg {
  background: #000000;
  opacity: 0.9;
}

.mfp-title {
  font-family: "Manrope", Arial, sans-serif;
}

.contact-intro {
  width: 100%;
  max-width: none;
  margin-bottom: 55px;
}

.contact-intro h2,
.contact-intro p {
  max-width: none;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.38fr) minmax(0, 1fr);
  gap: 70px;
  align-items: start;
}

.contact-details {
  padding: 35px;
  color: var(--ppc-white);
  background: var(--ppc-ink);
  border-radius: 4px;
}

.contact-details h3 {
  margin-bottom: 28px;
  color: var(--ppc-white);
  font-size: 32px;
}

.contact-details address {
  margin: 0 0 28px;
  line-height: 1.7;
}

.contact-details ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 28px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  list-style: none;
}

.contact-details a,
.contact-details span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.82);
}

.contact-details a:hover {
  color: var(--ppc-white);
}

.contact-form {
  display: grid;
  gap: 24px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.contact-form label {
  display: grid;
  gap: 9px;
  color: var(--ppc-ink);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 14px 18px;
  color: var(--ppc-text);
  background: var(--ppc-cream);
  border: 1px solid transparent;
  border-radius: 4px;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  outline: none;
  transition: border-color 0.25s ease, background-color 0.25s ease;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  background: var(--ppc-white);
  border-color: var(--ppc-sand);
}

.contact-form .btn {
  justify-self: start;
}

.map-wrap {
  width: 100%;
  margin-top: 105px;
  background: var(--ppc-stone);
}
#map_canvas {
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%
}
#map {
  margin-top: 0;
  height: 700px
}

@media (min-width: 1921px) {
  .realisations-section {
    --realisations-gap-space: 112px;
    --realisations-visible-cards: 4.5;
  }
}

@media (max-width: 1199px) {
  .navbar-nav {
    gap: 18px;
  }

  .audience-card {
    padding: 60px 45px;
  }

  .text-media-block,
  .listing-intro,
  .detail-intro,
  .contact-layout {
    gap: 45px;
  }

  .realisations-track {
    padding-left: 35px;
  }
}

@media (min-width: 768px) and (max-height: 860px) {
  .realisations-sticky {
    padding: 105px 0;
  }

  .realisations-section h2 {
    margin-bottom: 35px;
  }

  .realisation-card figure {
    height: 460px;
  }

  .realisation-card p {
    min-height: 62px;
  }

  .realisations-cta {
    margin-top: 35px;
  }
}

@media (max-width: 991px) {
  .site-header {
    padding-top: 24px;
  }

  .navbar-collapse {
    margin-top: 20px;
    padding: 24px;
    background: rgba(79, 56, 42, 0.95);
    border-radius: 4px;
  }

  .navbar-nav {
    align-items: flex-start !important;
    gap: 6px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .intro-section h2,
  .values-content h2,
  .realisations-section h2,
  .text-media-block__content h2,
  .listing-intro h2,
  .detail-intro h2,
  .contact-intro h2 {
    font-size: 34px;
  }

  .page-hero {
    min-height: 430px;
    padding: 160px 0 80px;
  }

  .page-hero__content h1 {
    font-size: 50px;
  }

  .text-media-block,
  .text-media-block--reverse,
  .listing-intro,
  .detail-intro,
  .contact-layout,
  .content-highlight {
    grid-template-columns: 1fr;
  }

  .text-media-block--reverse figure {
    order: 0;
  }

  .text-media-block img {
    height: 420px;
  }

  .content-highlight {
    padding: 45px;
  }

  .seo-landing__section {
    margin-bottom: 52px;
  }

  .seo-landing__section h2,
  .seo-landing__cta h2 {
    font-size: 34px;
  }

  .seo-landing__cta {
    padding: 45px;
  }

  .seo-faq {
    margin-top: 56px;
    padding-top: 44px;
  }

  .seo-faq__header h2 {
    font-size: 34px;
  }

  .masonry-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .detail-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .audience-panel {
    grid-template-columns: 1fr;
  }

  .audience-card {
    min-height: 250px;
  }

  .audience-card--split {
    border-top: 1px solid var(--ppc-line);
    border-left: 0;
  }

  .values-section {
    background: linear-gradient(to bottom, var(--ppc-white) 0, var(--ppc-white) 90px, var(--ppc-stone) 90px, var(--ppc-stone) 100%);
  }

  .values-image img {
    height: 360px;
  }

  .value-item {
    padding: 35px;
  }

  .value-item:nth-child(odd) {
    border-left: 0;
  }

  .value-item:nth-child(n+3) {
    border-top: 1px solid rgba(79, 56, 42, 0.16);
  }

}

@media (max-width: 767px) {
  .container,
  .container-xxl {
    padding-left: 24px;
    padding-right: 24px;
  }

  .section-space {
    padding: 70px 0 50px;
  }

  .logo-mark {
    width: 72px;
    height: 72px;
  }

  .logo-mark__arc {
    width: 68px;
    font-size: 10px;
  }

  .logo-mark__core {
    width: 28px;
    height: 28px;
    font-size: 22px;
  }

  .hero {
    height: 100svh;
    min-height: 100svh;
  }

  .hero__content {
    padding-top: 120px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero p:not(.hero__eyebrow) {
    font-size: 15px;
  }

  .floating-contact {
    display: none;
  }

  .back-to-top {
    right: 24px;
    bottom: 24px;
    border-radius: 4px;
    transform: translate3d(0, 20px, 0);
  }

  .back-to-top.is-visible {
    transform: translate3d(0, 0, 0);
  }

  .intro-section h2,
  .values-content h2,
  .realisations-section h2,
  .text-media-block__content h2,
  .listing-intro h2,
  .detail-intro h2,
  .contact-intro h2 {
    font-size: 30px;
  }

  .page-hero {
    min-height: 380px;
    padding: 135px 0 70px;
  }

  .page-hero__content h1 {
    font-size: 40px;
  }

  .text-media-block {
    gap: 35px;
    margin-bottom: 70px;
  }

  .text-media-block img {
    height: 330px;
  }

  .content-highlight {
    gap: 24px;
    margin-top: 40px;
    padding: 35px 24px;
  }

  .content-highlight h2 {
    font-size: 30px;
  }

  .seo-landing__section {
    margin-bottom: 44px;
  }

  .seo-landing__section h2,
  .seo-landing__cta h2 {
    margin-bottom: 18px;
    font-size: 30px;
  }

  .seo-landing__cta {
    padding: 35px 24px;
  }

  .seo-faq {
    margin-top: 44px;
    padding-top: 36px;
  }

  .seo-faq__header {
    margin-bottom: 24px;
  }

  .seo-faq__header h2 {
    font-size: 30px;
  }

  .seo-faq__question {
    grid-template-columns: minmax(0, 1fr) 26px;
    gap: 16px;
    padding: 20px 0;
    font-size: 19px;
  }

  .seo-faq__answer {
    padding: 0 0 22px;
  }

  .filter-bar {
    margin-bottom: 35px;
  }

  .filter-btn {
    flex: 1 1 auto;
  }

  .masonry-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .masonry-card {
    margin: 0;
  }

  .detail-intro {
    margin-bottom: 60px;
  }

  .project-data {
    padding: 28px 24px;
  }

  .project-data div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .detail-gallery {
    grid-template-columns: 1fr;
    column-gap: 22px;
    row-gap: 0;
  }

  .detail-gallery img,
  .detail-gallery a:nth-child(3n+2) img {
    height: auto;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .contact-details {
    padding: 28px 24px;
  }

  .map-wrap {
    margin-top: 70px;
  }

  .map-wrap iframe {
    height: 360px;
  }

  .button-row {
    align-items: stretch;
    flex-direction: column;
  }

  .button-row .btn {
    width: 100%;
  }

  .audience-section {
    padding-bottom: 70px;
  }

  .audience-card {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 45px 35px;
  }

  .audience-card p {
    max-width: none;
  }

  .values-section {
    padding-bottom: 70px;
  }

  .values-image img {
    height: 300px;
  }

  .values-content {
    padding-top: 60px;
  }

  .values-content h2 {
    margin-bottom: 35px;
  }

  .value-item {
    min-height: auto;
    padding: 35px 24px;
  }

  .value-item h3 {
    font-size: 19px;
  }

  .realisations-section {
    min-height: auto !important;
  }

  .realisations-sticky {
    position: relative;
    height: auto;
    min-height: 0;
    padding: 70px 0;
  }

  .realisations-section h2 {
    margin-bottom: 35px;
  }

  .realisations-viewport {
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 14px;
    -webkit-overflow-scrolling: touch;
  }

  .realisations-track {
    gap: 22px;
    padding-left: 24px;
    transform: none !important;
  }

  .realisation-card {
    flex-basis: 280px;
    max-width: 280px;
  }

  .realisation-card figure {
    height: 405px;
  }

  .site-footer {
    padding-top: 80px;
  }

  .footer-cta {
    right: 24px;
  }
}

@media (max-width: 550px) {
  .hero h1 {
    font-size: 34px;
  }

  .intro-section h2,
  .values-content h2,
  .realisations-section h2,
  .text-media-block__content h2,
  .listing-intro h2,
  .detail-intro h2,
  .contact-intro h2 {
    font-size: 28px;
  }

  .page-hero__content h1 {
    font-size: 34px;
  }

  .text-media-block img {
    height: 275px;
  }

  .audience-card h3 {
    font-size: 30px;
  }

  .values-image img {
    height: 250px;
  }

  .value-item {
    flex: 0 0 100%;
    max-width: 100%;
    border-left: 0 !important;
  }

  .value-item + .value-item {
    border-top: 1px solid rgba(79, 56, 42, 0.16);
  }

  .footer-cta {
    left: 24px;
    right: 24px;
    width: calc(100% - 48px);
  }
}

@media (max-width: 991px) {
  .permit-panel {
    grid-template-columns: 1fr;
  }

  .permit-panel__content,
  .permit-panel__facts {
    padding: 58px 50px;
  }

  .permit-panel__facts {
    min-height: 0;
  }
}

@media (max-width: 767px) {
  .permit-section {
    padding: 70px 0;
  }

  .permit-panel__content,
  .permit-panel__facts {
    padding: 46px 28px;
  }

  .permit-panel h2 {
    font-size: 36px;
  }

  .permit-panel__lead {
    font-size: 16px;
  }

  .permit-panel__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .permit-panel__actions .btn {
    width: 100%;
  }

  .permit-panel__source {
    align-self: flex-start;
  }
}

@media (max-width: 550px) {
  .permit-panel h2 {
    font-size: 32px;
  }

  .permit-panel__facts h3 {
    font-size: 24px;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

}
.realisations-section--slider {
  --realisations-gap: 28px;
  min-height: auto;
  overflow: hidden;
  padding: 110px 0 95px;
}

.realisations-section--slider .realisations-sticky {
  position: relative;
  height: auto;
  min-height: 0;
  overflow: visible;
  padding: 0;
}

.realisations-section--slider .realisations-viewport {
  width: min(100%, var(--ppc-container-max));
  margin: 0 auto;
  overflow: hidden;
  padding: 0 35px;
}

.realisations-section--slider .realisations-track {
  display: flex;
  gap: var(--realisations-gap);
  width: auto;
  padding: 0;
  transition: transform 0.55s ease;
  transform: translate3d(var(--realisations-offset, 0px), 0, 0) !important;
  will-change: transform;
}

.realisations-section--slider .realisation-card {
  flex: 0 0 calc((100% - (var(--realisations-gap) * 2)) / 3);
  max-width: calc((100% - (var(--realisations-gap) * 2)) / 3);
}

.realisations-section--slider .realisation-card:nth-child(n+9) {
  display: block;
}

.realisations-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 42px;
}

.realisations-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  padding: 0;
  color: var(--ppc-ink);
  background: var(--ppc-white);
  border: 1px solid rgba(79, 56, 42, 0.28);
  border-radius: 50%;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.realisations-arrow:hover,
.realisations-arrow:focus-visible {
  color: var(--ppc-white);
  background: var(--ppc-ink);
  border-color: var(--ppc-ink);
}

.realisations-arrow:disabled {
  opacity: 0.35;
  pointer-events: none;
}

.realisations-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 14px;
}

.realisations-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  background: rgba(79, 56, 42, 0.28);
  border: 0;
  border-radius: 50%;
}

.realisations-dot.is-active {
  width: 30px;
  border-radius: 999px;
  background: var(--ppc-ink);
}

.realisations-section--slider .realisations-cta {
  margin-top: 48px;
}

@media (max-width: 991px) {
  .realisations-section--slider {
    padding: 82px 0 76px;
  }

  .realisations-section--slider .realisation-card {
    flex-basis: calc((100% - var(--realisations-gap)) / 2);
    max-width: calc((100% - var(--realisations-gap)) / 2);
  }
}

@media (max-width: 767px) {
  .realisations-section--slider {
    padding: 70px 0;
  }

  .realisations-section--slider .realisations-viewport {
    padding: 0 24px;
  }

  .realisations-section--slider .realisations-track {
    gap: 0;
  }

  .realisations-section--slider .realisation-card {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .realisations-section--slider .realisation-card figure {
    height: 405px;
  }

  .realisations-controls {
    margin-top: 34px;
  }
}
