:root {
  --header-block-size: 98px;
  --site-primary: #bf2202;
  --site-primary-hover: #a41d01;
  --site-header-bg: var(--site-body-bg);
  --site-header-border: rgba(24, 24, 24, 0.12);
  --border: var(--site-header-border);
  --border-strong: rgba(24, 24, 24, 0.45);
  --site-body-bg: #f4f4f1;
  --site-text: #444d57;
  --site-list-marker: #bf2202;
  --site-muted: rgba(255, 255, 255, 0.9);
  --site-shadow: 0 24px 60px rgba(15, 23, 42, 0.16);
  /* Typography system */
  --font-display: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --font-body: 'Barlow', Arial, sans-serif;
  --font-data: 'JetBrains Mono', 'SF Mono', monospace;
  /* Override Bootstrap font vars so all BS components inherit our system */
  --bs-body-font-family: var(--font-body);
  --bs-btn-font-family: var(--font-display);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--site-body-bg);
  color: var(--site-text);
  font-family: var(--font-body);
  overflow-x: hidden;
}

main img,
main svg,
main video {
  max-width: 100%;
}

main :where(
  .row > *,
  [class*="__grid"] > *,
  [class*="__layout"] > *,
  [class*="__shell"] > *,
  [class*="__frame"] > *
) {
  min-width: 0;
}

main :where(h1, h2, h3, h4, p, li, a, span) {
  overflow-wrap: break-word;
}

main :where(ul, ol) > li::marker {
  color: var(--site-list-marker);
}

main :where(input, select, textarea, button) {
  max-width: 100%;
}

.table-responsive,
main table {
  max-width: 100%;
}

.deferred-section {
  content-visibility: auto;
  contain-intrinsic-size: 760px;
}

/* Override vendor/Bootstrap hardcoded font declarations */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: var(--font-display);
}

.navbar-nav .nav-link,
.dropdown-item,
.btn {
  font-family: var(--font-display);
}

/* Bootstrap tooltip/popover inherit body font */
.tooltip,
.popover {
  font-family: var(--font-body);
}

.container {
  width: min(100% - 48px, 1632px);
}

.btn-primary {
  --bs-btn-bg: var(--site-primary);
  --bs-btn-border-color: var(--site-primary);
  --bs-btn-hover-bg: var(--site-primary-hover);
  --bs-btn-hover-border-color: var(--site-primary-hover);
  --bs-btn-active-bg: var(--site-primary-hover);
  --bs-btn-active-border-color: var(--site-primary-hover);
}

.btn:hover,
.btn:focus,
.btn:active {
  box-shadow: none !important;
}

.header-absolute {
  background: transparent;
  left: auto;
  position: relative;
  right: auto;
  top: auto;
  width: 100%;
}

.navbar {
  background: var(--site-header-bg);
  backdrop-filter: blur(12px);
  position: relative;
  padding-bottom: 16px;
}

.header-sticky-on .navbar {
  box-shadow: 0 10px 30px rgba(19, 20, 27, 0.08);
}

.navbar-brand {
  padding: 20px 0;
}

.navbar-brand .navbar-brand-item {
  height: 36px !important;
  width: auto;
}

.navbar-nav {
  align-items: center;
  gap: 0.3rem;
}

.navbar-nav .nav-link {
  color: #495364;
  font-size: 1.02rem;
  font-weight: 500;
  padding: 1rem 1.25rem;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.navbar .nav-link.dropdown-toggle::after {
  border: solid currentColor;
  border-width: 0 1.5px 1.5px 0;
  content: "";
  display: inline-block;
  height: 0.42rem;
  margin-left: 0.55rem;
  vertical-align: middle;
  width: 0.42rem;
  transform: translateY(-0.12rem) rotate(45deg);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus,
.navbar-nav .show > .nav-link,
.navbar-nav .nav-link.active {
  color: var(--site-primary);
}

.dropdown-menu {
  border: 1px solid rgba(55, 65, 81, 0.16);
  border-radius: 12px;
  box-shadow: var(--site-shadow);
  padding: 1rem 0;
  margin-top: 1rem;
  min-width: 21rem;
}

.dropdown-menu-size-lg {
  min-width: 34rem;
}

.dropdown-item,
.dropdown-link {
  color: #666d78;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.9rem 1.5rem;
}

.dropdown-menu .nav-link {
  display: block;
  white-space: normal;
}

.dropdown-item:hover,
.dropdown-item:focus,
.dropdown-link:hover,
.dropdown-link:focus {
  color: var(--site-primary);
  background: rgba(191, 34, 2, 0.06);
}

.dropdown-menu .show > .dropdown-link {
  color: var(--site-primary);
}

.dropdown-item.disabled,
.dropdown-item:disabled {
  color: #9aa3b2;
  opacity: 1;
}

.dropdown.dropend > .dropdown-toggle {
  position: relative;
  padding-right: 2.75rem;
}

.dropdown.dropend > .dropdown-toggle::after {
  border: 0;
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  position: absolute;
  right: 1.6rem;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.dropdown-submenu-menu {
  top: -0.75rem;
  left: calc(100% - 0.35rem);
  max-height: 70vh;
  overflow-y: auto;
}

.header-actions {
  gap: 0.35rem;
  flex-wrap: nowrap;
}

.header-actions > .nav-item {
  flex: 0 0 auto;
}

.mobile-nav-cta {
  border-top: 1px solid rgba(73, 83, 100, 0.12);
  display: none;
  gap: 0.8rem;
  margin-top: 0.75rem;
  padding: 1.1rem 0.75rem 0.35rem;
}

.mobile-cta-btn {
  min-height: 3rem;
}

.theme-toggle-btn,
.theme-toggle-btn:hover,
.theme-toggle-btn:focus {
  color: #1b1d22;
  text-decoration: none;
}

.theme-toggle-btn {
  align-items: center;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0;
  box-shadow: none !important;
  display: inline-flex;
  gap: 0.45rem;
  justify-content: center;
  min-height: 2.25rem;
  min-width: 2.25rem;
  padding: 0.35rem !important;
}

.theme-toggle-btn::after {
  display: none;
}

.theme-toggle-icon,
.theme-option-icon,
.report-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.theme-toggle-icon svg,
.theme-option-icon svg,
.report-icon svg {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
}

.theme-toggle-label {
  color: inherit;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1;
}

.theme-menu {
  min-width: 8.75rem;
}

.theme-menu .dropdown-item {
  gap: 0.45rem;
  padding: 0.7rem 0.95rem;
}

.theme-option-label {
  color: inherit;
  display: inline-block;
  line-height: 1.2;
}

.theme-menu .dropdown-item.active {
  color: var(--site-primary);
  background: rgba(191, 34, 2, 0.06);
}

.report-case-btn {
  background: #f3f3f1;
  border-color: #f3f3f1;
  color: #202635;
  padding-inline: 1rem;
  white-space: nowrap;
}

.report-case-btn:hover,
.report-case-btn:focus {
  background: #ecece8;
  border-color: #ecece8;
  color: #202635;
}

.report-icon {
  margin-right: 0.4rem;
}

.contact-btn {
  padding-inline: 1.55rem;
}

.hero-shell {
  position: relative;
  margin-top: 0;
  padding-top: 0;
  padding-bottom: 0;
}

.hero-carousel,
.hero-carousel .carousel-inner,
.hero-carousel .carousel-item,
.hero-slide {
  min-height: calc(100svh - var(--header-block-size));
}

.hero-slide {
  background-color: #0f1116;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  overflow: hidden;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: inherit;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transform: scale(1);
  animation: heroSlowZoom 9s ease-out forwards;
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide::before {
    animation: none;
  }
}

.hero-slide .bg-linear-overlay {
  z-index: 2;
  background:
    linear-gradient(270deg, rgba(255, 118, 42, 0.22) 0%, rgba(191, 34, 2, 0.13) 38%, rgba(0, 0, 0, 0) 70%),
    linear-gradient(90deg, rgba(8, 10, 13, 0.5) 0%, rgba(8, 10, 13, 0.26) 48%, rgba(8, 10, 13, 0.18) 100%),
    linear-gradient(to top, rgba(20, 11, 6, 0.5) 0%, rgba(12, 8, 6, 0.28) 54%, rgba(2, 3, 5, 0.74) 100%);
}

.hero-copy-wrap {
  padding-top: 9.75rem;
  padding-bottom: 4rem;
  position: relative;
  z-index: 3;
}

.hero-content {
  max-width: 49rem;
}

/* Trigger the entrance animation as soon as a slide starts becoming the
   incoming one (Bootstrap's .carousel-item-next.carousel-item-start /
   .carousel-item-prev.carousel-item-end), not only once it finally
   receives .active at the END of the 0.6s crossfade. Bootstrap doesn't add
   .active to the incoming slide until the crossfade finishes, so gating on
   .active alone means the caption sits there already visible for 0.6s via
   the plain background fade, then blinks out and replays this animation
   from scratch the instant .active lands - a visible "reload" of text that
   was already on screen. Listing both states here keeps the computed
   animation identical across the class swap, so it plays once, seamlessly. */
.carousel-item.active .hero-title,
.carousel-item-next.carousel-item-start .hero-title,
.carousel-item-prev.carousel-item-end .hero-title {
  animation: heroRiseIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.carousel-item.active .hero-text,
.carousel-item-next.carousel-item-start .hero-text,
.carousel-item-prev.carousel-item-end .hero-text {
  animation: heroRiseIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) both 0.14s;
}

.carousel-item.active .hero-btn,
.carousel-item-next.carousel-item-start .hero-btn,
.carousel-item-prev.carousel-item-end .hero-btn {
  animation: heroRiseIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) both 0.26s;
}

@media (prefers-reduced-motion: reduce) {
  .carousel-item.active .hero-title,
  .carousel-item.active .hero-text,
  .carousel-item.active .hero-btn,
  .carousel-item-next.carousel-item-start .hero-title,
  .carousel-item-next.carousel-item-start .hero-text,
  .carousel-item-next.carousel-item-start .hero-btn,
  .carousel-item-prev.carousel-item-end .hero-title,
  .carousel-item-prev.carousel-item-end .hero-text,
  .carousel-item-prev.carousel-item-end .hero-btn {
    animation: none;
  }
}

/* Bootstrap's fade transition keeps the outgoing slide's opacity at 1 for
   the whole 0.6s crossfade and gives it .active alongside the incoming
   slide, so its caption would otherwise stay visible while the next
   slide's caption rises in on top of it. Hide it immediately instead. */
.carousel-item.active.carousel-item-start .hero-copy-wrap,
.carousel-item.active.carousel-item-end .hero-copy-wrap {
  opacity: 0;
  transition: opacity 0.15s ease;
}

@keyframes heroSlowZoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.08);
  }
}

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

.hero-title {
  color: #ffffff;
  font-size: clamp(2.95rem, 4vw, 4.7rem);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 1.02;
  max-width: 46rem;
  text-shadow: 0 3px 24px rgba(0, 0, 0, 0.38);
  text-wrap: balance;
}

html[lang="fr"] .hero-content {
  max-width: 58rem;
}

html[lang="fr"] .hero-title {
  font-size: clamp(2.5rem, 3.35vw, 4rem);
  letter-spacing: -0.045em;
  line-height: 1.04;
  max-width: 56rem;
  overflow-wrap: normal;
  text-wrap: balance;
  word-break: normal;
}

.hero-text {
  color: var(--site-muted);
  font-size: clamp(1rem, 0.96vw, 1.18rem);
  line-height: 1.58;
  max-width: 41rem;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.42);
}

.hero-btn {
  align-items: center;
  display: inline-flex;
  gap: 0.5rem;
  margin-top: 0.85rem;
  font-size: 1.08rem;
  min-height: 3.85rem;
  padding-inline: 1.7rem;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, background-color 0.25s ease;
  box-shadow: 0 8px 24px rgba(191, 34, 2, 0.18);
}

.hero-btn:hover,
.hero-btn:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(255, 118, 42, 0.32);
}

.hero-btn span {
  display: inline-block;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-btn:hover span,
.hero-btn:focus-visible span {
  transform: translateX(4px);
}

.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next,
.hero-carousel .carousel-indicators {
  display: none;
}

.about-overview {
  padding: 5.6rem 0 5.8rem;
}

.about-overview__content {
  max-width: 44rem;
}

.about-overview__title {
  color: #111827;
  font-size: clamp(2.15rem, 2.2vw, 3.35rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.16;
  margin: 0 0 2.35rem;
}

.about-overview__text {
  color: #4f5a69;
  font-size: 1.04rem;
  line-height: 1.58;
  margin: 0 0 1.15rem;
}

.about-overview__text--last {
  margin-bottom: 1.65rem;
}

.about-tabs-card {
  background: #efefee;
  border-radius: 12px;
  padding: 2rem 2.2rem 2.35rem;
}

.about-tabs-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.about-tabs-nav .nav-link {
  background: transparent;
  border: 0;
  border-radius: 8px;
  color: #131722;
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.2;
  padding: 0.9rem 1.15rem;
}

.about-tabs-nav .nav-link:hover,
.about-tabs-nav .nav-link:focus {
  color: #131722;
}

.about-tabs-nav .nav-link.active {
  background: #171b23;
  color: #ffffff;
}

.about-tabs-content {
  margin-top: 1.7rem;
}

.about-tabs-pane-title {
  color: #111827;
  font-size: clamp(1.75rem, 1.65vw, 2.45rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.18;
  margin: 0 0 1.1rem;
}

.about-tabs-pane-text {
  color: #4f5a69;
  font-size: 1rem;
  line-height: 1.56;
  margin: 0 0 0.65rem;
  max-width: 38rem;
}

.about-tabs-link {
  color: var(--site-primary);
  display: inline-flex;
  font-family: var(--font-display);
  font-size: 1.04rem;
  font-weight: 500;
  gap: 0.45rem;
  margin-top: 1rem;
  text-decoration: none;
}

.about-tabs-link:hover,
.about-tabs-link:focus {
  color: var(--site-primary-hover);
}

.about-overview__media {
  position: relative;
}

.about-overview__image {
  border-radius: 12px;
  display: block;
  height: 100%;
  min-height: 42.5rem;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.stats-section {
  padding: 3.35rem 0 5.6rem;
  position: relative;
}

.stat-card {
  container-type: inline-size;
  height: 100%;
}

.stat-card__label {
  color: #111827;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.25;
  margin: 0;
}

.stat-card__divider {
  background: rgba(191, 34, 2, 0.24);
  height: 1px;
  margin: 1.55rem 0 2rem;
  width: 100%;
}

.stat-card__value {
  color: #191c24;
  font-family: var(--font-data);
  font-size: clamp(3.2rem, 4vw, 4.55rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 0.95;
  margin: 0 0 1.25rem;
  white-space: nowrap;
}

.stat-card__value span {
  color: var(--site-primary);
}

.stat-card__value--plain {
  font-family: var(--font-display);
  letter-spacing: -0.03em;
}

.stat-card__copy {
  color: #4f5a69;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
  max-width: 18rem;
}

.services-showcase {
  padding: 1.15rem 0 6rem;
}

.services-showcase__intro {
  margin: 0 auto 3.25rem;
  max-width: 42rem;
  text-align: center;
}

.services-showcase__title {
  color: #111827;
  font-size: clamp(2.4rem, 3vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.08;
  margin: 0 0 1rem;
}

.services-showcase__subtitle {
  color: #4f5a69;
  font-size: 1.04rem;
  line-height: 1.55;
  margin: 0 auto;
  max-width: 37rem;
}

.service-card {
  background: #12151b;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.service-card:hover,
.service-card:focus-within {
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.22);
  transform: translateY(-4px);
}

@media (hover: none) {
  .service-card {
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.14);
  }
}

.service-card__media-link {
  aspect-ratio: 7 / 6;
  display: block;
  overflow: hidden;
  position: relative;
}

.service-card__image {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.35s ease;
  width: 100%;
}

.service-card__media-placeholder {
  align-items: flex-end;
  aspect-ratio: 7 / 6;
  background:
    linear-gradient(135deg, rgba(9, 35, 63, 0.2), rgba(10, 78, 115, 0.55)),
    radial-gradient(circle at 75% 20%, rgba(255, 255, 255, 0.25), transparent 32%),
    linear-gradient(150deg, #0e6f99 0%, #0a3557 100%);
  display: flex;
  overflow: hidden;
  padding: 1.5rem;
  position: relative;
}

.service-card__media-placeholder::before,
.service-card__media-placeholder::after {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  content: "";
  height: 16rem;
  position: absolute;
  right: -5rem;
  top: -8rem;
  width: 16rem;
}

.service-card__media-placeholder::after {
  height: 11rem;
  right: 2rem;
  top: 7rem;
  width: 11rem;
}

.service-card__media-placeholder-label {
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  position: relative;
  text-transform: uppercase;
  z-index: 1;
}

.service-card:hover .service-card__image,
.service-card:focus-within .service-card__image {
  transform: scale(1.04);
}

.service-card__content {
  background: linear-gradient(180deg, rgba(6, 9, 14, 0.22) 0%, rgba(6, 9, 14, 0.32) 35%, rgba(6, 9, 14, 0.82) 100%);
  bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  justify-content: flex-end;
  left: 0;
  padding: 1.6rem 1.6rem 1.7rem;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
}

.service-card__title {
  color: #ffffff;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 1.7vw, 1.65rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin: 0;
}

.service-card__cta {
  align-items: center;
  color: rgba(255, 255, 255, 0.82);
  display: inline-flex;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  gap: 0.4rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 200ms ease;
}

.service-card:hover .service-card__cta,
.service-card:focus-within .service-card__cta {
  color: #ff5b3a;
}

.service-card__cta-arrow {
  transition: transform 180ms ease;
}

.service-card:hover .service-card__cta-arrow,
.service-card:focus-within .service-card__cta-arrow {
  transform: translateX(0.3rem);
}

.video-feature {
  padding: 0 0 6rem;
}

.video-feature__shell {
  background: #050506;
  min-height: clamp(24rem, 44vw, 48rem);
  overflow: hidden;
  position: relative;
}

.video-feature__iframe {
  border: 0;
  height: 56.25vw;
  left: 50%;
  min-height: 100%;
  min-width: 100%;
  pointer-events: none;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 177.77777778vh;
}

.video-feature__overlay {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.28) 0%, rgba(0, 0, 0, 0.18) 100%);
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.projects-showcase {
  padding: 5.9rem 0 6rem;
}

.projects-showcase__header {
  align-items: flex-start;
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  margin-bottom: 3.2rem;
}

.projects-showcase__intro {
  max-width: 43rem;
}

.projects-showcase__title {
  color: #111827;
  font-size: clamp(2.45rem, 3vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.08;
  margin: 0 0 0.9rem;
}

.projects-showcase__subtitle {
  color: #4f5a69;
  font-size: 1.04rem;
  line-height: 1.55;
  margin: 0;
  max-width: 39rem;
}

.projects-showcase__cta {
  margin-top: 1.35rem;
  white-space: nowrap;
}

.projects-filter {
  max-width: 17.5rem;
}

.projects-filter__title {
  color: #111827;
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 1rem;
}

.projects-filter__list {
  display: grid;
  gap: 0.55rem;
}

.projects-filter__button {
  background: transparent;
  border: 0;
  border-radius: 8px;
  color: #1d2430;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.25;
  padding: 0.9rem 0.95rem;
  text-align: left;
  transition: background 0.2s ease, color 0.2s ease;
}

.projects-filter__button:hover,
.projects-filter__button:focus {
  background: rgba(191, 34, 2, 0.08);
  color: var(--site-primary);
}

.projects-filter__button.is-active {
  background: var(--site-primary);
  color: #ffffff;
}

.projects-grid {
  align-items: start;
  display: grid;
  gap: 1.6rem;
  grid-template-areas:
    "tile1 tile2 tile3"
    "tile4 . tile5";
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.projects-grid--filtered {
  grid-template-areas: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.projects-grid--filtered .project-tile {
  grid-area: auto !important;
}

.project-tile {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.project-tile[hidden] {
  display: none !important;
}

.project-tile--1 {
  grid-area: tile1;
}

.project-tile--2 {
  grid-area: tile2;
}

.project-tile--3 {
  grid-area: tile3;
}

.project-tile--4 {
  grid-area: tile4;
}

.project-tile--5 {
  grid-area: tile5;
}

.project-tile__link {
  display: block;
  position: relative;
}

.project-tile__image {
  aspect-ratio: 16 / 9;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 0.28s ease;
  width: 100%;
}

.project-tile__meta {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.72) 100%);
  bottom: 0;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  inset-inline: 0;
  opacity: 0;
  padding: 1.05rem 1.1rem;
  position: absolute;
  transform: translateY(8px);
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.project-tile__location {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.project-tile__name {
  font-size: 0.98rem;
  line-height: 1.35;
}

.project-tile:hover .project-tile__image,
.project-tile:focus-within .project-tile__image {
  transform: scale(1.03);
}

.project-tile:hover .project-tile__meta,
.project-tile:focus-within .project-tile__meta {
  opacity: 1;
  transform: translateY(0);
}

@media (hover: none) {
  .project-tile__meta {
    opacity: 1;
    transform: translateY(0);
  }
}

.partners-showcase {
  background: #ffffff;
  padding: 5.6rem 0 5.9rem;
}

.partners-showcase__intro {
  margin: 0 auto 3.6rem;
  text-align: center;
}

.partners-showcase__eyebrow,
.operations-section__eyebrow {
  color: var(--site-primary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  margin: 0 0 1.25rem;
  text-transform: uppercase;
}

.partners-showcase__title {
  color: #111827;
  font-size: clamp(2.4rem, 3.5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.08;
  margin: 0;
}

.partners-grid {
  margin: 0 auto;
  max-width: 100rem;
}

.partners-list {
  display: grid;
  gap: clamp(1.1rem, 1.55vw, 1.6rem);
  grid-template-columns: repeat(6, minmax(0, 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
}

.partner-logo {
  align-items: center;
  display: flex;
  justify-content: center;
  min-width: 0;
}

.partner-logo__card {
  aspect-ratio: 1.32 / 1;
  background: transparent;
  border: 0;
  display: block;
  min-height: 10rem;
  perspective: 1000px;
  position: relative;
  width: 100%;
}

.partner-logo__card:hover,
.partner-logo__card:focus,
.partner-logo__card:focus-within {
  z-index: 2;
}

.partner-logo__card:hover .partner-logo__face--front,
.partner-logo__card:focus .partner-logo__face--front,
.partner-logo__card:focus-within .partner-logo__face--front {
  transform: rotateY(180deg);
}

.partner-logo__card:hover .partner-logo__face--back,
.partner-logo__card:focus .partner-logo__face--back,
.partner-logo__card:focus-within .partner-logo__face--back {
  transform: rotateY(0);
}

.partner-logo__card:focus-visible {
  outline: 3px solid rgba(231, 64, 45, 0.42);
  outline-offset: 7px;
}

.partner-logo__face {
  align-items: center;
  backface-visibility: hidden;
  background: #eef0f4;
  border: 1px solid rgba(15, 23, 42, 0.09);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
  display: flex;
  inset: 0;
  justify-content: center;
  overflow: hidden;
  padding: clamp(1rem, 1.8vw, 1.45rem);
  position: absolute;
  transition: transform 0.48s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.22s ease;
}

.partner-logo__card:hover .partner-logo__face,
.partner-logo__card:focus .partner-logo__face,
.partner-logo__card:focus-within .partner-logo__face {
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.16);
}

.partner-logo__face--front {
  transform: rotateY(0);
}

.partner-logo__face--back {
  align-items: flex-start;
  background: #f3f4f6;
  color: #1f2937;
  flex-direction: column;
  gap: 0.58rem;
  justify-content: center;
  padding: clamp(1.05rem, 1.35vw, 1.35rem);
  transform: rotateY(-180deg);
}

.partner-logo__name {
  color: #2f3137;
  font-size: clamp(1.1rem, 1.1vw, 1.38rem);
  font-weight: 700;
  line-height: 1.08;
  margin: 0;
}

.partner-logo__text {
  color: #555b66;
  font-size: clamp(0.78rem, 0.68vw, 0.88rem);
  line-height: 1.3;
  margin: 0;
  overflow-wrap: anywhere;
}

.partner-logo__link {
  align-items: center;
  background: var(--site-primary);
  border-radius: 999px;
  color: #ffffff;
  display: inline-flex;
  font-family: var(--font-display);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1;
  min-height: 2.35rem;
  padding: 0.72rem 1rem;
  text-decoration: none;
  text-transform: uppercase;
}

.partner-logo__link:hover,
.partner-logo__link:focus {
  background: var(--site-primary-hover);
  color: #ffffff;
}

.partner-logo__image {
  display: block;
  height: auto;
  max-height: 8.4rem;
  max-width: 96%;
  object-fit: contain;
  opacity: 1;
  width: auto;
}

.partner-logo--bexa .partner-logo__image,
.partner-logo:has(.partner-logo__image[src$="bexa.png"]) .partner-logo__image {
  max-height: 7.85rem;
  max-width: 82%;
}

.partner-logo--edo-state-government .partner-logo__image,
.partner-logo:has(.partner-logo__image[src$="edo-logo.png"]) .partner-logo__image {
  max-height: 7.85rem;
  max-width: 90%;
}

.partner-logo--mixta-nigeria .partner-logo__image,
.partner-logo:has(.partner-logo__image[src$="mixta-nigeria.svg"]) .partner-logo__image {
  max-height: 8rem;
  max-width: 90%;
}

.partner-logo--sterling-realties .partner-logo__image,
.partner-logo:has(.partner-logo__image[src$="sterling-realties.png"]) .partner-logo__image {
  max-height: none;
  max-width: 112%;
  width: 112%;
}

.partner-logo--oyo-state-government .partner-logo__image,
.partner-logo:has(.partner-logo__image[src$="oyo.png"]) .partner-logo__image {
  max-height: 10.6rem;
  max-width: 112%;
}

@media (prefers-reduced-motion: reduce) {
  .partner-logo__face {
    transition: none;
  }
}

.project-cta {
  padding: 0 0 4rem;
}

.project-cta__card {
  background: linear-gradient(90deg, #1d1f26 0%, #171921 52%, #1d1f27 100%);
  border-radius: 16px;
  color: #ffffff;
  overflow: hidden;
  padding: 4rem 3.5rem;
  position: relative;
}

.project-cta__card::before,
.project-cta__card::after {
  border-radius: 50%;
  content: "";
  pointer-events: none;
  position: absolute;
}

.project-cta__card::before {
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 72%);
  height: 14rem;
  left: -7rem;
  top: -7rem;
  width: 14rem;
}

.project-cta__card::after {
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 72%);
  height: 18rem;
  right: -9rem;
  top: -8rem;
  width: 18rem;
}

.project-cta__content {
  max-width: 42rem;
  position: relative;
  z-index: 1;
}

.project-cta__eyebrow {
  align-items: center;
  color: rgba(255, 255, 255, 0.68);
  display: inline-flex;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  gap: 0.7rem;
  letter-spacing: 0.18em;
  margin: 0 0 1rem;
  text-transform: uppercase;
}

.project-cta__eyebrow::before {
  background: var(--site-primary);
  content: "";
  display: inline-block;
  height: 1px;
  width: 2rem;
}

.project-cta__title {
  color: #ffffff;
  font-size: clamp(2.6rem, 3.2vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.06;
  margin: 0 0 1rem;
}

.project-cta__text {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.05rem;
  line-height: 1.55;
  margin: 0 0 1.8rem;
  max-width: 38rem;
}

.project-cta__since {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  margin: 0 0 1.65rem;
  position: relative;
  z-index: 1;
}

.project-cta__since-year {
  color: rgba(255, 255, 255, 0.065);
  display: block;
  font-family: var(--font-display);
  font-size: clamp(5.5rem, 10vw, 9rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.82;
}

.project-cta__since-label {
  align-items: center;
  color: rgba(255, 255, 255, 0.5);
  display: inline-flex;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  gap: 0.7rem;
  letter-spacing: 0.18em;
  line-height: 1.2;
  margin-top: 0.55rem;
  text-transform: uppercase;
}

.project-cta__since-label::before {
  background: var(--site-primary);
  content: "";
  display: inline-block;
  height: 1px;
  width: 2rem;
}

.project-cta__button {
  align-items: center;
  border-radius: 5px;
  display: inline-flex;
  font-size: 1.16rem;
  font-weight: 600;
  justify-content: center;
  min-height: 3.9rem;
  padding: 0.95rem 1.5rem;
  position: relative;
  width: auto;
  z-index: 1;
}

.site-footer {
  --site-footer-muted: #c4c5c7;
  background: linear-gradient(90deg, #1a1c23 0%, #171921 50%, #1b1d24 100%);
  color: #ffffff;
  overflow: hidden;
  padding: 3rem 0 1.5rem;
  position: relative;
}

.site-footer::before {
  background-image: repeating-linear-gradient(103deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 18px);
  content: "";
  height: 120%;
  left: -7rem;
  opacity: 0.18;
  pointer-events: none;
  position: absolute;
  top: -4rem;
  transform: skewX(-16deg);
  width: 24rem;
}

.site-footer::after {
  background: radial-gradient(circle, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0) 74%);
  border-radius: 50%;
  bottom: -10rem;
  content: "";
  height: 20rem;
  left: -8rem;
  pointer-events: none;
  position: absolute;
  width: 20rem;
}

.site-footer__top,
.site-footer__bottom {
  position: relative;
  z-index: 1;
}

.site-footer__top {
  --bs-gutter-y: 1.25rem;
  padding-bottom: 1.55rem;
}

/* Social column alignment on desktop */
.site-footer__column {
  width: 100%;
}

@media (min-width: 992px) {
  .site-footer__column {
    padding-top: calc(56px + 1.35rem);
  }
}

.site-footer__brand {
  max-width: 22rem;
}

.site-footer__logo-link {
  display: inline-flex;
  text-decoration: none;
}

.site-footer__logo {
  display: block;
  height: 56px;
  width: auto;
}

.site-footer__summary {
  color: var(--site-footer-muted);
  font-size: 1.12rem;
  line-height: 1.48;
  margin: 1.35rem 0 0;
  max-width: 18rem;
}

.site-footer__heading {
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 1.1rem;
}

.site-footer__links,
.site-footer__social {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer__links {
  display: grid;
  gap: 1rem;
}

.site-footer__links a {
  color: var(--site-footer-muted);
  display: inline-flex;
  font-size: 1.05rem;
  line-height: 1.5;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.site-footer__links a:hover,
.site-footer__links a:focus {
  color: #ffffff;
  transform: translateX(2px);
}

.site-footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.35rem;
}

.site-footer__social-link {
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  color: #ffffff;
  display: inline-flex;
  height: 2.6rem;
  justify-content: center;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
  width: 2.6rem;
}

.site-footer__social-link:hover,
.site-footer__social-link:focus {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  transform: translateY(-2px);
}

.site-footer__social-link svg {
  fill: currentColor;
  height: 1.1rem;
  width: 1.1rem;
}

.site-footer__bottom {
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  gap: 1rem 1.5rem;
  justify-content: space-between;
  padding-top: 1.15rem;
}

.site-footer__copyright {
  color: var(--site-footer-muted);
  font-size: 1.08rem;
  line-height: 1.45;
  margin: 0;
}

.footer-language__button {
  align-items: center;
  background: #f4f4f1;
  border: 1px solid #f4f4f1;
  border-radius: 4px;
  color: #111827;
  display: inline-flex;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  gap: 0.55rem;
  min-height: 2.8rem;
  padding: 0.6rem 0.95rem;
}

.footer-language__button:hover,
.footer-language__button:focus,
.footer-language__button:active {
  background: #ffffff !important;
  border-color: #ffffff !important;
  color: #111827 !important;
}

.footer-language__button.dropdown-toggle::after {
  display: none;
}

.footer-language__icon {
  display: inline-flex;
  height: 1rem;
  width: 1rem;
}

.footer-language__icon svg {
  fill: currentColor;
  height: 100%;
  width: 100%;
}

.footer-language__label {
  line-height: 1;
}

.footer-language__caret {
  display: inline-flex;
  height: 0.95rem;
  margin-left: -0.05rem;
  width: 0.95rem;
}

.footer-language__caret svg {
  fill: currentColor;
  height: 100%;
  width: 100%;
}

.footer-language .dropdown-menu {
  background: linear-gradient(180deg, #181b21 0%, #13161c 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  box-shadow: 0 22px 44px rgba(4, 7, 16, 0.42);
  margin-bottom: 0.55rem !important;
  min-width: 11rem;
  padding: 0.9rem;
}

.footer-language__menu-link {
  align-items: center;
  border-radius: 4px;
  color: #f3f4f6;
  display: flex;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 500;
  gap: 0.7rem;
  min-height: 4rem;
  padding: 0.7rem 0.8rem;
}

.footer-language__menu-link:hover,
.footer-language__menu-link:focus {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.footer-language__menu-link.is-active {
  background: rgba(255, 255, 255, 0.06);
}

.footer-language__flag {
  border-radius: 2px;
  display: inline-flex;
  flex: 0 0 auto;
  overflow: hidden;
  width: 1.45rem;
}

.footer-language__flag svg {
  display: block;
  height: auto;
  width: 100%;
}

/* ── Credibility scope line ────────────────────────────────────────────────── */

.site-footer__scope {
  color: var(--site-footer-muted);
  font-family: var(--font-data);
  font-size: clamp(0.73rem, 0.34vw + 0.63rem, 0.82rem);
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1.65;
  margin: 1.3rem 0 1.55rem;
  text-transform: uppercase;
}

.site-footer__dot {
  color: var(--site-primary);
  display: inline-block;
  margin: 0 0.4em;
  user-select: none;
}

/* ── Ruler tick strip ──────────────────────────────────────────────────────── */

.ticks {
  align-items: flex-start;
  background: var(--border);
  display: flex;
  height: 16px;
  justify-content: space-between;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
}

.stats-section > .ticks {
  top: 0 !important;
}

:root:not([data-bs-theme="dark"]) .ticks {
  display: none;
}

.ticks span {
  background: var(--border);
  height: 6px;
  width: 1px;
}

.ticks span:nth-child(5n+1) {
  background: var(--border-strong);
  height: 14px;
}



.who-intro {
  padding: 4.5rem 0 4rem;
}

.who-intro__content {
  max-width: 68rem;
}

.who-intro__title {
  color: #111827;
  font-size: clamp(2.65rem, 3.3vw, 4.25rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.14;
  margin: 0 0 2rem;
}

.who-intro__text,
.who-story__text {
  color: #4f5a69;
  font-size: 1.02rem;
  line-height: 1.58;
  margin: 0 0 1.15rem;
}

.who-intro__text--last {
  margin-bottom: 0;
}

.who-intro__list {
  display: grid;
  gap: 1.05rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
}

.who-intro__list li {
  align-items: flex-start;
  border-top: 1px solid rgba(17, 24, 39, 0.12);
  color: #111827;
  display: flex;
  gap: 0.65rem;
  font-size: 0.99rem;
  font-weight: 500;
  line-height: 1.45;
  padding-top: 1rem;
}

.who-intro__list-icon {
  color: var(--site-primary);
  display: inline-flex;
  flex: 0 0 auto;
  margin-top: 0.15rem;
}

.who-intro__list-icon svg {
  display: block;
  fill: currentColor;
  height: 1rem;
  width: 1rem;
}

.who-story {
  border-top: 1px solid rgba(17, 24, 39, 0.1);
  padding: 4.5rem 0 5.5rem;
}

.who-story__mini-stats {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

.who-story__mini-stat {
  align-items: center;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  justify-content: center;
  min-height: 10rem;
  padding: 1.5rem 1rem 1.35rem;
  text-align: center;
}

.who-story__mini-stat--dark {
  background: #1b1e26;
  color: #ffffff;
}

.who-story__mini-stat--primary {
  background: var(--site-primary);
  color: #ffffff;
}

.who-story__mini-value {
  font-family: var(--font-display);
  font-size: clamp(2.55rem, 3vw, 3.05rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
}

.who-story__mini-stat p {
  color: inherit;
  font-size: 0.94rem;
  line-height: 1.35;
  margin: 0;
  max-width: 5.6rem;
}

.who-story__content {
  max-width: 52rem;
  padding-top: 0;
}

.who-updates {
  padding: 0 0 5.85rem;
}

.newsletter-card {
  background: linear-gradient(180deg, #191c23 0%, #161920 100%);
  border-radius: 8px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  min-height: 27rem;
  padding: 2.55rem 2.55rem 2.35rem;
}

.newsletter-card__badge {
  align-items: center;
  align-self: flex-start;
  background: var(--site-primary);
  border-radius: 8px;
  color: #ffffff;
  display: inline-flex;
  font-size: 0.95rem;
  font-weight: 600;
  gap: 0.5rem;
  line-height: 1;
  padding: 0.55rem 0.7rem;
}

.newsletter-card__badge-icon {
  color: inherit;
  display: inline-flex;
  flex: 0 0 auto;
}

.newsletter-card__badge-icon svg {
  display: block;
  fill: currentColor;
  height: 0.9rem;
  width: 0.9rem;
}

.newsletter-card__body {
  margin-top: 1.35rem;
}

.newsletter-card__title {
  color: #f8fafc;
  font-size: clamp(2.35rem, 3.05vw, 3.55rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.12;
  margin: 0;
  max-width: 19rem;
}

.newsletter-card__footer {
  margin-top: 1.25rem;
}

.newsletter-card__form {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: minmax(0, 1fr) 3.25rem;
}

.newsletter-card__input {
  background: #111318;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  color: #f8fafc;
  font-size: 1rem;
  min-height: 3.25rem;
  outline: none;
  padding: 0.85rem 1.15rem;
  width: 100%;
}

.newsletter-card__input::placeholder {
  color: #9ea7b4;
}

.newsletter-card__input:focus {
  border-color: rgba(255, 255, 255, 0.26);
}

.newsletter-card__submit {
  align-items: center;
  background: #f3f4f6;
  border: 0;
  border-radius: 4px;
  color: #111827;
  display: inline-flex;
  height: 3.25rem;
  justify-content: center;
  transition: transform 0.2s ease, background 0.2s ease;
  width: 3.25rem;
}

.newsletter-card__submit:hover,
.newsletter-card__submit:focus {
  background: #ffffff;
  transform: translateY(-1px);
}

.newsletter-card__submit svg {
  display: block;
  fill: currentColor;
  height: 1.1rem;
  width: 1.1rem;
}

.newsletter-card__submit:disabled {
  cursor: wait;
  opacity: 0.72;
}

.newsletter-card__status {
  color: #e6e7eb;
  display: none;
  font-size: 0.95rem;
  line-height: 1.45;
  margin: 0.7rem 0 0;
  min-height: 0;
}

.newsletter-card__status[data-state] {
  display: block;
}

.newsletter-card__status[data-state="success"] {
  color: #c6f6da;
}

.newsletter-card__status[data-state="error"] {
  color: #fecaca;
}

.newsletter-card__note {
  align-items: center;
  color: #e6e7eb;
  display: flex;
  font-size: 0.95rem;
  gap: 0.55rem;
  line-height: 1.45;
  margin: 0.85rem 0 0;
}

.newsletter-card__note-icon {
  color: #f6c453;
  display: inline-flex;
  flex: 0 0 auto;
}

.newsletter-card__note-icon svg {
  display: block;
  fill: currentColor;
  height: 0.92rem;
  width: 0.92rem;
}

.who-updates__content {
  max-width: 40rem;
  padding-top: 0.35rem;
}

.who-updates__text {
  color: #4f5a69;
  font-size: 1.02rem;
  line-height: 1.56;
  margin: 0 0 1.6rem;
}

.who-updates__text--last {
  margin-bottom: 0;
  margin-top: 2rem;
}

.who-updates__list {
  display: grid;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.who-updates__list li {
  align-items: flex-start;
  color: #111827;
  display: flex;
  gap: 0.7rem;
  font-size: 1rem;
  line-height: 1.5;
}

.who-updates__list-icon {
  color: var(--site-primary);
  display: inline-flex;
  flex: 0 0 auto;
  margin-top: 0.18rem;
}

.who-updates__list-icon svg {
  display: block;
  fill: currentColor;
  height: 1rem;
  width: 1rem;
}

.leadership-team {
  padding: 0 0 5.85rem;
}

.leadership-team__intro {
  margin: 0 auto 2.7rem;
  max-width: 52rem;
  text-align: center;
}

.leadership-team__title,
.operations-section__title {
  color: #111827;
  font-size: clamp(2.25rem, 2.8vw, 3.6rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.08;
  margin: 0 0 0.9rem;
}

.leadership-team__subtitle {
  color: #5b6574;
  font-size: 1.02rem;
  line-height: 1.6;
  margin: 0 auto;
  max-width: 38rem;
}

.leadership-team__grid {
  row-gap: 2.35rem;
}

.leader-card {
  margin-inline: auto;
  max-width: 17.35rem;
}

.leader-card__media {
  background: #e7e9ec;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.leader-card__image {
  aspect-ratio: 3 / 4;
  display: block;
  object-fit: cover;
  object-position: center top;
  width: 100%;
}

.leader-card__social {
  align-items: center;
  background: #1883c9;
  border-radius: 6px;
  box-shadow: 0 12px 24px rgba(24, 131, 201, 0.28);
  color: #ffffff;
  display: inline-flex;
  height: 2.3rem;
  justify-content: center;
  position: absolute;
  right: 0.95rem;
  text-decoration: none;
  top: 0.95rem;
  transition: background 0.2s ease, transform 0.2s ease;
  width: 2.3rem;
}

.leader-card__social:hover,
.leader-card__social:focus {
  background: #0a66c2;
  color: #ffffff;
  transform: translateY(-2px);
}

.leader-card__social svg {
  fill: currentColor;
  height: 1rem;
  width: 1rem;
}

.leader-card__body {
  padding-top: 1.15rem;
  text-align: center;
}

.leader-card__name {
  color: #111827;
  font-size: 1.18rem;
  font-weight: 700;
  margin: 0 0 0.25rem;
}

.leader-card--accent .leader-card__name {
  color: var(--site-primary);
}

.leader-card__role {
  color: #626c7b;
  font-size: 0.98rem;
  margin: 0;
}

.who-stats {
  padding-bottom: 5.85rem;
}

.operations-section {
  padding: 0 0 6.2rem;
}

.operations-section__intro {
  margin-bottom: 2.3rem;
}

.operations-section__summary {
  color: #5b6574;
  font-size: 1.05rem;
  line-height: 1.65;
  margin: 0.75rem 0 0;
  max-width: 44rem;
}

.operations-section--about .operations-section__intro {
  max-width: 50rem;
}

.operations-section--about .operations-grid {
  gap: 1rem;
  grid-template-areas:
    "compliance human"
    "quality plant";
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.operations-section--about .operations-card {
  min-height: 19rem;
  padding: 2.4rem;
}

.operations-section--about .operations-card__text {
  font-weight: 500;
  max-width: 34rem;
}

.operations-grid {
  display: grid;
  gap: 0.65rem;
  grid-template-areas:
    "compliance human quality"
    "plant . .";
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.operations-card--compliance {
  grid-area: compliance;
}

.operations-card--human {
  grid-area: human;
}

.operations-card--quality {
  grid-area: quality;
}

.operations-card--plant {
  grid-area: plant;
}

.operations-card {
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  overflow: hidden;
  padding: 2.55rem 2.45rem 2.4rem;
  position: relative;
}

.operations-card--primary {
  background: var(--site-primary);
  color: #ffffff;
}

.operations-card--dark {
  background: #171b23;
  color: #ffffff;
}

.operations-card--light {
  background: #efefee;
  border: 1px solid #d4d8df;
  color: #111827;
}

.operations-card__head {
  align-items: flex-start;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
}

.operations-card__title {
  font-size: clamp(1.6rem, 2vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.16;
  margin: 0;
  max-width: 100%;
}

.operations-card__title a {
  color: inherit;
  text-decoration: none;
}

.operations-card__title a:hover,
.operations-card__title a:focus {
  color: inherit;
  text-decoration: none;
}

.operations-card--primary .operations-card__title {
  color: #111827;
}

.operations-card--light .operations-card__title {
  color: var(--site-primary);
}

.operations-card__title--grey {
  color: #687280;
}

.operations-card__title--grey-soft {
  color: #c8ced8;
}

.operations-card__action {
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: inherit;
  display: inline-flex;
  flex: 0 0 auto;
  font-family: var(--font-display);
  font-size: 1.05rem;
  height: 2.75rem;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease;
  width: 2.75rem;
}

.operations-card--primary .operations-card__action {
  background: rgba(255, 255, 255, 0.92);
  border-color: transparent;
  color: #111827;
}

.operations-card--light .operations-card__action {
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(17, 24, 39, 0.12);
  color: #111827;
}

.operations-card__action:hover,
.operations-card__action:focus {
  color: inherit;
  transform: translateY(-2px);
}


.operations-card__text {
  color: inherit;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.65;
  margin: 0;
  max-width: 100%;
  opacity: 1;
}


.operations-card--dark .operations-card__text {
  color: #c4c5c7;
}

.operations-card--dark .operations-card__title,
.operations-card--dark .operations-card__title--grey,
.operations-card--dark .operations-card__title--grey-soft {
  color: #ffffff;
}


.resource-hero {
  padding: 2.8rem 0 0;
}

.resource-hero__frame {
  margin: 0 auto;
  max-width: 79rem;
}

.resource-hero__media {
  border-radius: 8px;
  overflow: hidden;
}

.resource-hero__image {
  aspect-ratio: 16 / 7.1;
  display: block;
  object-fit: cover;
  object-position: center 30%;
  width: 100%;
}

.resource-hero__image--compliance {
  object-position: center center;
}

.resource-hero__image--plant {
  object-position: center 38%;
}

.resource-hero__image--quality {
  object-position: center 34%;
}

.resource-hero__card {
  background: #f3f4f6;
  border: 1px solid #d9dde3;
  border-radius: 6px;
  margin: -4rem auto 0;
  max-width: 66rem;
  padding: 2.8rem 2.55rem 2.55rem;
  position: relative;
  z-index: 1;
}

.resource-hero__title {
  color: #1b1e26;
  font-size: clamp(2.2rem, 3vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin: 0 0 1.15rem;
}

.resource-hero__meta {
  align-items: center;
  color: #667080;
  display: flex;
  flex-wrap: wrap;
  font-size: 0.98rem;
  gap: 0.95rem;
  line-height: 1.5;
}

.resource-hero__meta-divider {
  background: #c9ced6;
  display: inline-block;
  height: 1.5rem;
  width: 1px;
}

.resource-article {
  padding: 4.3rem 0 6rem;
}

.resource-article--intro-only {
  padding-bottom: 10rem;
}

.resource-article__content {
  margin: 0 auto;
  max-width: 66rem;
}

.contact-page {
  padding: 4.3rem 0 6rem;
}

.contact-page__grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 1.45fr) minmax(18rem, 0.85fr);
}

.contact-card {
  background: #f3f4f6;
  border: 1px solid #d9dde3;
  border-radius: 10px;
  padding: 2.25rem 2rem;
}

.contact-card--aside {
  background: linear-gradient(180deg, #171b23 0%, #1d222c 100%);
  border-color: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.contact-card__eyebrow {
  color: var(--site-primary);
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-card__title {
  color: #111827;
  font-size: clamp(1.9rem, 2.3vw, 2.85rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.08;
  margin: 0.8rem 0 1rem;
}

.contact-card__title--aside,
.contact-card--aside .contact-aside__title {
  color: #ffffff;
}

.contact-card__text {
  color: #576172;
  font-size: 1rem;
  line-height: 1.58;
  margin: 0;
}

.contact-card--aside .contact-card__text {
  color: rgba(255, 255, 255, 0.82);
}

.contact-offices {
  margin-top: 2rem;
}

.contact-offices__intro {
  margin-bottom: 1rem;
}

.contact-offices__title {
  color: #111827;
  font-size: clamp(1.8rem, 2.2vw, 2.65rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.1;
  margin: 0;
}

.contact-offices__grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.contact-office-card {
  background: #f3f4f6;
  border: 1px solid #d9dde3;
  border-radius: 8px;
  min-height: 17rem;
  padding: 1.45rem 1.25rem;
}

.contact-office-card__flag {
  box-shadow: inset 0 0 0 1px rgba(17, 24, 39, 0.08);
  display: block;
  height: 3.1rem;
  margin-bottom: 1.25rem;
  overflow: hidden;
  width: 5rem;
}

.contact-office-card__flag--nigeria {
  background: linear-gradient(90deg, #008751 0 33.333%, #ffffff 33.333% 66.666%, #008751 66.666% 100%);
}

.contact-office-card__flag--togo {
  background:
    linear-gradient(90deg, #d21034 0 34%, transparent 34% 100%),
    repeating-linear-gradient(180deg, #006a4e 0 20%, #ffce00 20% 40%);
  position: relative;
}

.contact-office-card__flag--togo::after {
  color: #ffffff;
  content: "★";
  font-size: 1.55rem;
  left: 0.58rem;
  line-height: 1;
  position: absolute;
  top: 0.7rem;
}

.contact-office-card__flag--benin {
  background:
    linear-gradient(90deg, #008751 0 42%, transparent 42% 100%),
    linear-gradient(180deg, #fcd116 0 50%, #e8112d 50% 100%);
}

.contact-office-card__flag--uk {
  background:
    linear-gradient(0deg, transparent 43%, #c8102e 43% 57%, transparent 57%),
    linear-gradient(90deg, transparent 45%, #c8102e 45% 55%, transparent 55%),
    linear-gradient(0deg, transparent 38%, #ffffff 38% 62%, transparent 62%),
    linear-gradient(90deg, transparent 40%, #ffffff 40% 60%, transparent 60%),
    linear-gradient(34deg, transparent 45%, #c8102e 45% 52%, transparent 52%),
    linear-gradient(-34deg, transparent 45%, #c8102e 45% 52%, transparent 52%),
    linear-gradient(34deg, transparent 41%, #ffffff 41% 56%, transparent 56%),
    linear-gradient(-34deg, transparent 41%, #ffffff 41% 56%, transparent 56%),
    #012169;
}

.contact-office-card__title {
  color: #111827;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin: 0 0 1.2rem;
}

.contact-office-card__text,
.contact-office-card__reg {
  color: #4f5a69;
  font-size: 0.98rem;
  line-height: 1.5;
  margin: 0;
}

.contact-office-card__reg {
  font-weight: 700;
  margin-top: 0.35rem;
}

.contact-form {
  margin-top: 2rem;
}

.contact-form__grid {
  display: grid;
  gap: 1rem 1.1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-field {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.contact-field--full {
  margin-top: 1rem;
}

.contact-field__label {
  color: #111827;
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 600;
}

.contact-field__input {
  background: #ffffff;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  color: #111827;
  font-size: 1rem;
  min-height: 3.35rem;
  padding: 0.9rem 1rem;
  width: 100%;
}

.contact-field__input:focus {
  border-color: rgba(191, 34, 2, 0.5);
  box-shadow: 0 0 0 3px rgba(191, 34, 2, 0.12);
  outline: none;
}

.contact-field__select {
  appearance: none;
}

.contact-field__textarea {
  min-height: 10rem;
  resize: vertical;
}

.contact-form__actions {
  align-items: center;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  margin-top: 1.35rem;
}

.contact-form__submit {
  min-height: 3.4rem;
  padding-inline: 1.55rem;
}

.contact-form__submit:disabled {
  cursor: wait;
  opacity: 0.72;
}

.contact-form__note {
  color: #5b6574;
  font-size: 0.94rem;
  line-height: 1.5;
  margin: 0;
  max-width: 25rem;
}

.contact-form__status {
  color: #5b6574;
  font-size: 0.96rem;
  line-height: 1.5;
  margin: 1rem 0 0;
  min-height: 1.5rem;
}

.contact-form__status[data-state="success"] {
  color: #0d7a43;
}

.contact-form__status[data-state="error"] {
  color: var(--site-primary);
}

.report-hero__card {
  max-width: 69rem;
}

.report-hero__image {
  object-position: center 38%;
}

.report-hero__text {
  color: #576172;
  font-size: 1.05rem;
  line-height: 1.65;
  margin: 0 0 1.5rem;
  max-width: 47rem;
}

.case-overview {
  padding: 4.3rem 0 1.5rem;
}

.case-overview__grid {
  align-items: start;
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.28fr);
}

.case-overview__intro {
  max-width: 35rem;
}

.case-overview__cards {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.case-overview__card {
  background: #ffffff;
  border: 1px solid #d9dde3;
  border-radius: 12px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  min-height: 100%;
  padding: 1.45rem 1.3rem 1.5rem;
}

.case-overview__card-kicker {
  color: var(--site-primary);
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 0.7rem;
  text-transform: uppercase;
}

.case-overview__card-title {
  color: #111827;
  font-size: 1.22rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.18;
  margin: 0 0 0.8rem;
}

.case-overview__card-text {
  color: #5b6574;
  line-height: 1.58;
  margin: 0;
}

.case-report-page {
  padding: 1.45rem 0 6rem;
}

.case-report-page__grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 1.45fr) minmax(20rem, 0.85fr);
}

.report-form-card {
  overflow: hidden;
  position: relative;
}

.report-form-card::before {
  background: linear-gradient(90deg, rgba(191, 34, 2, 0.88), rgba(191, 34, 2, 0));
  content: "";
  display: block;
  height: 3px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.report-form__section {
  border: 0;
  margin: 0;
  padding: 0;
}

.report-form__choice-grid {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 0.8rem;
}

.report-form__choice-card {
  align-items: center;
  background: #ffffff;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  gap: 0.7rem;
  min-height: 4rem;
  padding: 0.95rem 1rem;
}

.report-form__choice-card input {
  accent-color: var(--site-primary);
  flex: 0 0 auto;
  margin: 0;
}

.report-form__choice-card span {
  color: #111827;
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.4;
}

.report-form__helper {
  margin: 1rem 0 0;
}

.report-form__contact-grid {
  margin-top: 1rem;
}

.report-form__textarea--short {
  min-height: 7.5rem;
}

.report-form__footer {
  align-items: flex-start;
}

.report-form__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.report-form__secondary {
  border-color: #d7dce3;
  color: #1b2430;
  min-height: 3.4rem;
  padding-inline: 1.35rem;
}

.report-form__secondary:hover,
.report-form__secondary:focus {
  background: #eceff3;
  border-color: #eceff3;
  color: #111827;
}

.report-aside__steps,
.report-aside__checklist {
  display: grid;
  gap: 0.9rem;
  margin: 0;
  padding: 0;
}

.report-aside__steps {
  list-style: none;
}

.report-aside__step {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  display: grid;
  gap: 0.35rem;
  padding: 1rem 1rem 1rem 3.6rem;
  position: relative;
}

.report-aside__step strong {
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 1.02rem;
}

.report-aside__step span:last-child {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
}

.report-aside__step-index {
  align-items: center;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: #ffffff;
  display: inline-flex;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  height: 1.8rem;
  justify-content: center;
  left: 1rem;
  position: absolute;
  top: 1rem;
  width: 1.8rem;
}

.report-aside__checklist {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.55;
  list-style: none;
}

.report-aside__checklist li {
  padding-left: 1.45rem;
  position: relative;
}

.report-aside__checklist li::before {
  color: var(--site-primary);
  content: "+";
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  left: 0;
  position: absolute;
  top: 0;
}

.contact-aside__section + .contact-aside__section {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 1.65rem;
  padding-top: 1.65rem;
}

.contact-aside__title {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 0.85rem;
}

.contact-aside__list {
  color: rgba(255, 255, 255, 0.82);
  display: grid;
  gap: 0.85rem;
  line-height: 1.55;
  margin: 0;
  padding-left: 1.2rem;
}

.contact-aside__section--accent {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  padding: 1.35rem 1.25rem;
}

.contact-aside__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.contact-aside__link {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: #ffffff;
  display: inline-flex;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  min-height: 2.85rem;
  padding: 0 1rem;
  text-decoration: none;
}

.contact-aside__link:hover,
.contact-aside__link:focus {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.resource-article__section {
  padding: 0;
}

.resource-article__section + .resource-article__section {
  margin-top: 1.65rem;
}

body[data-page="company-compliance"] .resource-article__section + .resource-article__section {
  margin-top: 0.9rem;
}

.resource-article__subheading {
  color: #111827;
  font-size: 1.22rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 1.2rem 0 0.75rem;
}

.resource-article__title {
  color: #111827;
  font-size: clamp(1.9rem, 2.3vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0 0 1.2rem;
}

.resource-article__text {
  color: #4f5a69;
  font-size: 1.02rem;
  line-height: 1.58;
  margin: 0 0 1.25rem;
}

.resource-article__text--last {
  margin-bottom: 0;
}

.resource-article__text--compact {
  margin-bottom: 0.5rem;
}

.resource-article__list,
.resource-article__ordered {
  color: #4f5a69;
  font-size: 1.02rem;
  line-height: 1.55;
  margin: 0 0 1.6rem 1.1rem;
  padding-left: 1.5rem;
}

.resource-article__ordered {
  margin-left: 1.25rem;
}

body[data-page="company-compliance"] .resource-article__list,
body[data-page="company-compliance"] .resource-article__ordered {
  margin-bottom: 0.9rem;
}

.resource-article__list li + li,
.resource-article__ordered li + li {
  margin-top: 0.15rem;
}

.resource-article__list strong,
.resource-article__ordered strong,
.resource-article__text strong {
  color: #111827;
  font-weight: 700;
}

.qse-hero__card {
  max-width: 70rem;
}

.qse-eyebrow {
  color: var(--site-primary);
  display: inline-flex;
  font-family: var(--font-display);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin: 0 0 0.9rem;
  text-transform: uppercase;
}

.qse-hero__text,
.qse-text,
.qse-pillar-card__text,
.qse-commitment-card,
.qse-grievance__note {
  color: #4f5a69;
  font-size: 1.02rem;
  line-height: 1.6;
}

.qse-hero__text {
  margin: 0;
  max-width: 52rem;
}

.qse-text {
  margin: 0 0 1rem;
}

.qse-text--last {
  margin-bottom: 0;
}

.qse-section-title {
  color: #111827;
  font-size: clamp(2rem, 3vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin: 0 0 1.15rem;
}

.qse-section-heading {
  margin-bottom: 1.75rem;
  max-width: 54rem;
}

.qse-overview,
.qse-standards,
.qse-objectives,
.qse-commitments,
.qse-grievance {
  padding: 5.5rem 0 0;
}

.qse-overview__layout,
.qse-standards__layout,
.qse-grievance__layout {
  align-items: start;
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.qse-pillar-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.qse-pillar-card {
  background: #f3f4f6;
  border: 1px solid #d9dde3;
  border-radius: 8px;
  min-height: 15rem;
  padding: 1.55rem 1.35rem;
}

.qse-pillar-card--accent {
  background: linear-gradient(145deg, rgba(191, 34, 2, 0.08) 0%, #f3f4f6 100%);
}

.qse-pillar-card__number {
  color: var(--site-primary);
  display: inline-flex;
  font-family: var(--font-display);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin-bottom: 2.2rem;
}

.qse-pillar-card__title {
  color: #111827;
  font-size: 1.38rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0 0 0.8rem;
}

.qse-pillar-card__text {
  margin: 0;
}

.qse-standards__layout {
  align-items: center;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.qse-standards__media {
  border-radius: 8px;
  margin: 0;
  overflow: hidden;
}

.qse-standards__image {
  aspect-ratio: 16 / 11;
  display: block;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.qse-standard-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.qse-standard-tags span {
  background: #f3f4f6;
  border: 1px solid #d9dde3;
  border-radius: 999px;
  color: #111827;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.75rem 1rem;
}

.qse-objective-grid {
  counter-reset: qse-objectives;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
}

.qse-objective-grid li {
  align-items: baseline;
  background: #ffffff;
  border: 1px solid #d9dde3;
  border-radius: 8px;
  color: #4f5a69;
  counter-increment: qse-objectives;
  display: flex;
  font-size: 0.98rem;
  gap: 0.65rem;
  line-height: 1.4;
  padding: 1rem 1.1rem;
}

.qse-objective-grid li::before {
  color: var(--site-primary);
  content: counter(qse-objectives, decimal-leading-zero);
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.qse-commitment-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.qse-commitment-card {
  background: #f3f4f6;
  border: 1px solid #d9dde3;
  border-radius: 8px;
  padding: 2rem 1.8rem;
}

.qse-commitment-card--dark {
  background: linear-gradient(135deg, #171b22 0%, #1f232c 100%);
  border-color: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.qse-commitment-card__title {
  color: #111827;
  font-size: clamp(1.55rem, 2vw, 2.15rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.15;
  margin: 0 0 1.2rem;
}

.qse-commitment-card--dark .qse-commitment-card__title {
  color: #ffffff;
}

.qse-check-list {
  display: grid;
  gap: 0.8rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.qse-check-list li {
  line-height: 1.58;
  padding-left: 1.5rem;
  position: relative;
}

.qse-check-list li::before {
  color: var(--site-primary);
  content: "+";
  font-family: var(--font-display);
  font-weight: 800;
  left: 0;
  position: absolute;
  top: 0;
}

.qse-commitment-card--dark .qse-check-list li {
  color: rgba(255, 255, 255, 0.82);
}

.qse-grievance {
  padding-bottom: 6rem;
}

.qse-grievance__layout {
  grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.72fr);
}

.qse-audience-grid {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1.45rem;
}

.qse-audience-grid span {
  background: #f3f4f6;
  border: 1px solid #d9dde3;
  border-radius: 8px;
  color: #111827;
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.35;
  padding: 1rem;
}

.qse-grievance__panel {
  background: linear-gradient(135deg, #171b22 0%, #1f232c 100%);
  border-radius: 8px;
  color: #ffffff;
  padding: 1.8rem;
}

.qse-grievance__panel-title {
  color: #ffffff;
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0 0 1.25rem;
}

.qse-contact-list {
  display: grid;
  gap: 0.9rem;
  margin: 0;
}

.qse-contact-list div {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 0.9rem;
}

.qse-contact-list dt {
  color: #ff725c;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin-bottom: 0.35rem;
  text-transform: uppercase;
}

.qse-contact-list dd {
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.5;
  margin: 0;
}

.qse-contact-list a {
  color: #ffffff;
  text-decoration: none;
}

.qse-contact-list a:hover,
.qse-contact-list a:focus {
  color: #ffb1a5;
}

.qse-grievance__note {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  margin: 1.1rem 0 0;
  padding-top: 1.1rem;
}

.service-detail-hero {
  padding: 2.8rem 0 0;
}

.service-detail-hero__frame {
  margin: 0 auto;
  max-width: 79rem;
}

.service-detail-hero__title {
  color: #1b1e26;
  font-size: clamp(2.2rem, 3.8vw, 3.4rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.04;
  margin: 0 0 2.1rem;
  max-width: 76rem;
}

.service-detail-hero__layout {
  align-items: start;
  display: grid;
  gap: 2.5rem;
  grid-template-columns: minmax(0, 1.8fr) minmax(18rem, 0.78fr);
}

.service-detail-hero__layout:has(.service-detail-hero__media:only-child) {
  grid-template-columns: 1fr;
}

.service-detail-hero__media {
  border-radius: 8px;
  overflow: hidden;
}

.service-detail-hero__image {
  aspect-ratio: 16 / 5.25;
  display: block;
  object-fit: cover;
  object-position: center 38%;
  width: 100%;
}

.service-detail-hero__image--roadworks {
  object-position: center 32%;
}

.service-detail-hero__image--water {
  object-position: center 42%;
}

.service-photo-placeholder {
  align-items: flex-end;
  background:
    linear-gradient(135deg, rgba(9, 35, 63, 0.18), rgba(10, 78, 115, 0.58)),
    radial-gradient(circle at 76% 18%, rgba(255, 255, 255, 0.22), transparent 31%),
    linear-gradient(150deg, #0e6f99 0%, #092e4d 100%);
  color: #fff;
  display: flex;
  overflow: hidden;
  padding: 1.5rem;
  position: relative;
  width: 100%;
}

.service-photo-placeholder::before,
.service-photo-placeholder::after {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  content: "";
  height: 18rem;
  position: absolute;
  right: -5rem;
  top: -8rem;
  width: 18rem;
}

.service-photo-placeholder::after {
  height: 12rem;
  right: 3rem;
  top: 9rem;
  width: 12rem;
}

.service-photo-placeholder span {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  position: relative;
  text-transform: uppercase;
  z-index: 1;
}

.service-photo-placeholder--hero {
  aspect-ratio: 16 / 5.25;
}

.service-photo-placeholder--approach {
  aspect-ratio: 16 / 12.4;
}

.service-photo-placeholder--wide {
  aspect-ratio: 16 / 8.9;
}

.service-detail-hero__image--land {
  object-position: center 36%;
}

.service-detail-article {
  padding-top: 3.8rem;
}

.service-detail-article .resource-article__content {
  max-width: 72rem;
}

.service-detail-article__label {
  color: #4f5a69;
  font-size: 1.02rem;
  line-height: 1.55;
  margin: 0 0 0.95rem;
}

.roadworks-story__layout,
.roadworks-focus__layout {
  align-items: start;
  display: grid;
  gap: 2.25rem;
}

.roadworks-story__layout {
  grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.92fr);
}

.roadworks-story__title,
.roadworks-focus__title,
.roadworks-updates__title {
  color: #111827;
  font-size: clamp(2rem, 2.35vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.14;
  margin: 0 0 1.15rem;
}

.roadworks-story__text,
.roadworks-updates__text,
.roadworks-service-card__text {
  color: #4f5a69;
  font-size: 1.02rem;
  line-height: 1.6;
}

.roadworks-story__text {
  margin: 0 0 1.15rem;
}

.roadworks-story__text--last,
.roadworks-updates__text--last {
  margin-bottom: 0;
}

.roadworks-story__gallery {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.roadworks-story__image-card {
  border-radius: 10px;
  overflow: hidden;
}

.roadworks-story__image-card--offset {
  margin-top: 2.1rem;
}

.roadworks-story__image {
  aspect-ratio: 4 / 5.1;
  display: block;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.roadworks-service-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.roadworks-service-card,
.roadworks-updates__panel {
  background: #f3f4f6;
  border: 1px solid #d9dde3;
  border-radius: 12px;
}

.roadworks-service-card {
  height: 100%;
  padding: 1.65rem 1.45rem 1.55rem;
}

.roadworks-service-card__eyebrow,
.roadworks-updates__eyebrow {
  color: var(--site-primary);
  display: inline-flex;
  font-family: var(--font-display);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin: 0 0 0.85rem;
  text-transform: uppercase;
}

.roadworks-service-card__title {
  color: #111827;
  font-size: 1.34rem;
  font-weight: 700;
  line-height: 1.22;
  margin: 0 0 0.8rem;
}

.roadworks-service-card__text {
  margin: 0;
}

.roadworks-focus__layout {
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
}

.roadworks-focus__media,
.roadworks-updates__panel-media {
  border-radius: 12px;
  overflow: hidden;
}

.roadworks-focus__image,
.roadworks-updates__image {
  display: block;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.roadworks-focus__image {
  aspect-ratio: 16 / 12.2;
}

.roadworks-focus__list {
  margin-bottom: 1.2rem;
}

.roadworks-updates {
  padding: 0 0 6rem;
}

.roadworks-updates__image {
  aspect-ratio: 16 / 8.8;
}

.roadworks-updates__panel-body {
  padding: 2rem 2rem 2.15rem;
}

.roadworks-updates__text {
  margin: 0 0 1.15rem;
}

.roadworks-updates__list {
  color: #4f5a69;
  display: grid;
  gap: 0.8rem;
  line-height: 1.6;
  margin: 1.35rem 0 0;
  padding-left: 1.3rem;
}

.water-schemes-intro__layout,
.water-schemes-approach__layout,
.water-schemes-technology__layout {
  align-items: start;
  display: grid;
  gap: 2.25rem;
}

.water-schemes-intro__layout {
  grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.85fr);
}

.water-schemes-intro__eyebrow,
.water-schemes-updates__eyebrow {
  color: var(--site-primary);
  display: inline-flex;
  font-family: var(--font-display);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin: 0 0 0.9rem;
  text-transform: uppercase;
}

.water-schemes-intro__title,
.water-schemes-updates__title {
  color: #111827;
  font-size: clamp(2rem, 2.4vw, 2.95rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.12;
  margin: 0 0 1.15rem;
}

.water-schemes-intro__stats {
  display: grid;
  gap: 1rem;
}

.water-schemes-stat {
  background: #f3f4f6;
  border: 1px solid #d9dde3;
  border-radius: 12px;
  padding: 1.55rem 1.4rem;
}

.water-schemes-stat--accent {
  background: linear-gradient(145deg, rgba(191, 34, 2, 0.08) 0%, #f3f4f6 100%);
}

.water-schemes-stat__value {
  color: #111827;
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 2.4vw, 2.7rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.water-schemes-stat__label,
.water-schemes-service-card__text,
.water-schemes-updates__text {
  color: #4f5a69;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

.water-schemes-approach__layout {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.water-schemes-approach__media {
  border-radius: 12px;
  overflow: hidden;
}

.water-schemes-approach__image {
  aspect-ratio: 16 / 12.4;
  display: block;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.water-schemes-approach__highlights {
  color: #4f5a69;
  display: grid;
  gap: 0.8rem;
  line-height: 1.6;
  margin: 1.35rem 0 0;
  padding-left: 1.3rem;
}

.water-schemes-service-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.water-schemes-service-card {
  background: linear-gradient(180deg, #f5f6f7 0%, #eef1f3 100%);
  border: 1px solid #d9dde3;
  border-radius: 12px;
  height: 100%;
  padding: 1.7rem 1.45rem 1.55rem;
}

.water-schemes-service-card__eyebrow,
.water-schemes-assurance__eyebrow {
  color: var(--site-primary);
  display: inline-flex;
  font-family: var(--font-display);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin: 0 0 0.85rem;
  text-transform: uppercase;
}

.water-schemes-service-card__title,
.water-schemes-assurance__title {
  color: #111827;
  font-size: 1.36rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin: 0 0 0.85rem;
}

.water-schemes-technology__layout {
  grid-template-columns: minmax(0, 1.02fr) minmax(18rem, 0.98fr);
}

.water-schemes-technology__panel {
  background: linear-gradient(135deg, #171b22 0%, #1f232c 100%);
  border-radius: 14px;
  color: #ffffff;
  display: grid;
  gap: 1rem;
  padding: 1.8rem;
}

.water-schemes-technology__item {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 1rem 1rem 1.05rem;
}

.water-schemes-technology__item p,
.water-schemes-assurance__text {
  color: inherit;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

.water-schemes-technology__item-title {
  color: #ffffff;
  display: inline-flex;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.55rem;
}

.water-schemes-assurance__layout {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.water-schemes-assurance__card {
  border-radius: 14px;
  padding: 2rem 1.75rem 1.8rem;
}

.water-schemes-assurance__card--dark {
  background: linear-gradient(135deg, #171b22 0%, #1f232c 100%);
  color: #ffffff;
}

.water-schemes-assurance__card--dark .water-schemes-assurance__title {
  color: #ffffff;
}

.water-schemes-assurance__card--light {
  background: #f3f4f6;
  border: 1px solid #d9dde3;
  color: #4f5a69;
}

.water-schemes-updates {
  padding: 0 0 6rem;
}

.water-schemes-updates__panel {
  background: #f3f4f6;
  border: 1px solid #d9dde3;
  border-radius: 12px;
  overflow: hidden;
}

.water-schemes-updates__media {
  overflow: hidden;
}

.water-schemes-updates__image {
  aspect-ratio: 16 / 8.9;
  display: block;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.water-schemes-updates__body {
  padding: 2rem 2rem 2.15rem;
}

.water-schemes-updates__text {
  margin: 0 0 1.15rem;
}

.water-schemes-updates__text--last {
  margin-bottom: 0;
}

.landworks-intro__layout,
.landworks-approach__layout,
.landworks-partnership__layout {
  align-items: start;
  display: grid;
  gap: 2.25rem;
}

.landworks-intro__layout {
  grid-template-columns: minmax(0, 1.1fr) minmax(18rem, 0.9fr);
}

.landworks-intro__eyebrow,
.landworks-updates__eyebrow,
.landworks-service-card__eyebrow,
.landworks-excellence__eyebrow {
  color: var(--site-primary);
  display: inline-flex;
  font-family: var(--font-display);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin: 0 0 0.9rem;
  text-transform: uppercase;
}

.landworks-intro__title,
.landworks-updates__title {
  color: #111827;
  font-size: clamp(2rem, 2.45vw, 2.95rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.12;
  margin: 0 0 1.15rem;
}

.landworks-intro__panel,
.landworks-updates__panel {
  border-radius: 14px;
}

.landworks-intro__panel {
  background: linear-gradient(135deg, #171b22 0%, #1f232c 100%);
  color: #ffffff;
  padding: 2rem 1.8rem;
}

.landworks-intro__panel-label {
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--font-display);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin: 0 0 0.9rem;
  text-transform: uppercase;
}

.landworks-intro__panel-text,
.landworks-service-card__text,
.landworks-excellence__text,
.landworks-updates__text {
  color: inherit;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

.landworks-approach__layout {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.landworks-approach__media {
  border-radius: 12px;
  overflow: hidden;
}

.landworks-approach__image {
  aspect-ratio: 16 / 12.5;
  display: block;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.landworks-approach__list {
  color: #4f5a69;
  display: grid;
  gap: 0.8rem;
  line-height: 1.6;
  margin: 1.35rem 0 0;
  padding-left: 1.3rem;
}

.landworks-service-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.landworks-service-card {
  background: linear-gradient(180deg, #f5f6f7 0%, #eef1f3 100%);
  border: 1px solid #d9dde3;
  border-radius: 12px;
  height: 100%;
  padding: 1.7rem 1.45rem 1.55rem;
}

.landworks-service-card__title,
.landworks-excellence__title {
  color: #111827;
  font-size: 1.36rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin: 0 0 0.85rem;
}

.landworks-excellence__card--dark .landworks-excellence__title {
  color: #c8ced8;
}

.landworks-service-card__text {
  color: #4f5a69;
}

.landworks-excellence__layout {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.landworks-excellence__card {
  border-radius: 14px;
  padding: 2rem 1.75rem 1.8rem;
}

.landworks-excellence__card--dark {
  background: linear-gradient(135deg, #171b22 0%, #1f232c 100%);
  color: #ffffff;
}

.landworks-excellence__card--light {
  background: #f3f4f6;
  border: 1px solid #d9dde3;
  color: #4f5a69;
}

.landworks-partnership__layout {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
}

.landworks-partnership__gallery {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.landworks-partnership__image-card {
  border-radius: 10px;
  overflow: hidden;
}

.landworks-partnership__image-card--offset {
  margin-top: 2.15rem;
}

.landworks-partnership__image {
  aspect-ratio: 4 / 5.2;
  display: block;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.landworks-updates {
  padding: 0 0 6rem;
}

.landworks-updates__panel {
  background: #f3f4f6;
  border: 1px solid #d9dde3;
  overflow: hidden;
}

.landworks-updates__media {
  overflow: hidden;
}

.landworks-updates__image {
  aspect-ratio: 16 / 8.9;
  display: block;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.landworks-updates__body {
  padding: 2rem 2rem 2.15rem;
}

.landworks-updates__text {
  color: #4f5a69;
  margin: 0 0 1.15rem;
}

.landworks-updates__text--last {
  margin-bottom: 0;
}

.service-detail-hero__image--foam {
  object-position: center 39%;
}

.foam-materials-intro__layout,
.foam-materials-approach__layout,
.foam-materials-performance__layout,
.foam-materials-partnership__layout {
  align-items: start;
  display: grid;
  gap: 2.25rem;
}

.foam-materials-intro__layout {
  grid-template-columns: minmax(0, 1.08fr) minmax(18rem, 0.92fr);
}

.foam-materials-intro__eyebrow,
.foam-materials-service-card__eyebrow,
.foam-materials-performance__eyebrow,
.foam-materials-partnership__eyebrow,
.foam-materials-updates__eyebrow {
  color: var(--site-primary);
  display: inline-flex;
  font-family: var(--font-display);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin: 0 0 0.9rem;
  text-transform: uppercase;
}

.foam-materials-intro__title,
.foam-materials-updates__title,
.foam-materials-partnership__title {
  color: #111827;
  font-size: clamp(2rem, 2.45vw, 2.95rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.12;
  margin: 0 0 1.15rem;
}

.foam-materials-intro__panel {
  background: linear-gradient(135deg, #171b22 0%, #1f232c 100%);
  border-radius: 14px;
  color: #ffffff;
  padding: 1.9rem 1.7rem;
}

.foam-materials-intro__panel-label {
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--font-display);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin: 0 0 1rem;
  text-transform: uppercase;
}

.foam-materials-intro__panel-items {
  display: grid;
  gap: 0.95rem;
}

.foam-materials-intro__panel-item {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 0.95rem 1rem 1rem;
}

.foam-materials-intro__panel-key {
  color: #ffffff;
  display: inline-flex;
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 700;
  margin-bottom: 0.45rem;
}

.foam-materials-intro__panel-text,
.foam-materials-service-card__text,
.foam-materials-performance__text,
.foam-materials-updates__text {
  color: inherit;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

.foam-materials-approach__layout {
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
}

.foam-materials-approach__media {
  border-radius: 12px;
  overflow: hidden;
}

.foam-materials-approach__image {
  aspect-ratio: 16 / 12.4;
  display: block;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.foam-materials-approach__list {
  color: #4f5a69;
  display: grid;
  gap: 0.8rem;
  line-height: 1.6;
  margin: 1.35rem 0 0;
  padding-left: 1.3rem;
}

.foam-materials-service-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.foam-materials-service-card {
  background: linear-gradient(180deg, #f8f4f0 0%, #f1f3f5 100%);
  border: 1px solid #d9dde3;
  border-radius: 12px;
  height: 100%;
  overflow: hidden;
  padding: 1.7rem 1.45rem 1.55rem;
  position: relative;
}

.foam-materials-service-card::before {
  background: linear-gradient(90deg, rgba(191, 34, 2, 0.14) 0%, rgba(191, 34, 2, 0) 100%);
  content: "";
  height: 4px;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.foam-materials-service-card__title,
.foam-materials-performance__title {
  color: #111827;
  font-size: 1.36rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin: 0 0 0.85rem;
}

.foam-materials-service-card__text {
  color: #4f5a69;
}

.foam-materials-performance__layout {
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
}

.foam-materials-performance__card {
  border-radius: 14px;
  padding: 2rem 1.75rem 1.8rem;
}

.foam-materials-performance__card--dark {
  background: linear-gradient(135deg, #171b22 0%, #1f232c 100%);
  color: #ffffff;
}

.foam-materials-performance__card--dark .foam-materials-performance__title {
  color: #ffffff;
}

.foam-materials-performance__card--light {
  background: #f3f4f6;
  border: 1px solid #d9dde3;
  color: #4f5a69;
}

.foam-materials-partnership__layout {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
}

.foam-materials-partnership__gallery {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.foam-materials-partnership__image-card {
  border-radius: 10px;
  overflow: hidden;
}

.foam-materials-partnership__image-card--offset {
  margin-top: 2.15rem;
}

.foam-materials-partnership__image {
  aspect-ratio: 4 / 5.2;
  display: block;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.foam-materials-updates {
  padding: 0 0 6rem;
}

.foam-materials-updates__panel {
  background: #f3f4f6;
  border: 1px solid #d9dde3;
  border-radius: 12px;
  overflow: hidden;
}

.foam-materials-updates__media {
  overflow: hidden;
}

.foam-materials-updates__image {
  aspect-ratio: 16 / 8.9;
  display: block;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.foam-materials-updates__body {
  padding: 2rem 2rem 2.15rem;
}

.foam-materials-updates__text {
  color: #4f5a69;
  margin: 0 0 1.15rem;
}

.foam-materials-updates__list {
  color: #4f5a69;
  display: grid;
  gap: 0.8rem;
  line-height: 1.6;
  margin: 0;
  padding-left: 1.3rem;
}

.service-detail-hero__image--recycling {
  object-position: center 44%;
}

.recycling-roads-intro__layout,
.recycling-roads-approach__layout,
.recycling-roads-applications__layout,
.recycling-roads-assurance__layout {
  align-items: start;
  display: grid;
  gap: 2.25rem;
}

.recycling-roads-intro__layout {
  grid-template-columns: minmax(0, 1.08fr) minmax(18rem, 0.92fr);
}

.recycling-roads-intro__eyebrow,
.recycling-roads-benefit-card__eyebrow,
.recycling-roads-applications__eyebrow,
.recycling-roads-assurance__eyebrow,
.recycling-roads-updates__eyebrow {
  color: var(--site-primary);
  display: inline-flex;
  font-family: var(--font-display);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin: 0 0 0.9rem;
  text-transform: uppercase;
}

.recycling-roads-intro__title,
.recycling-roads-applications__title,
.recycling-roads-updates__title {
  color: #111827;
  font-size: clamp(2rem, 2.45vw, 2.95rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.12;
  margin: 0 0 1.15rem;
}

.recycling-roads-intro__panel {
  background: linear-gradient(135deg, #171b22 0%, #1f232c 100%);
  border-radius: 14px;
  color: #ffffff;
  padding: 1.9rem 1.7rem;
}

.recycling-roads-intro__panel-label {
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--font-display);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin: 0 0 1rem;
  text-transform: uppercase;
}

.recycling-roads-intro__panel-items {
  display: grid;
  gap: 0.95rem;
}

.recycling-roads-intro__panel-item {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 0.95rem 1rem 1rem;
}

.recycling-roads-intro__panel-key {
  color: #ffffff;
  display: inline-flex;
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 700;
  margin-bottom: 0.45rem;
}

.recycling-roads-intro__panel-text,
.recycling-roads-benefit-card__text,
.recycling-roads-applications__text,
.recycling-roads-application-card__text,
.recycling-roads-assurance__text,
.recycling-roads-updates__text {
  color: inherit;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

.recycling-roads-approach__layout {
  grid-template-columns: minmax(0, 0.97fr) minmax(0, 1.03fr);
}

.recycling-roads-approach__media {
  border-radius: 12px;
  overflow: hidden;
}

.recycling-roads-approach__image {
  aspect-ratio: 16 / 12.4;
  display: block;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.recycling-roads-approach__list {
  color: #4f5a69;
  display: grid;
  gap: 0.8rem;
  line-height: 1.6;
  margin: 1.35rem 0 0;
  padding-left: 1.3rem;
}

.recycling-roads-benefit-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.recycling-roads-benefit-card {
  background: linear-gradient(180deg, #f7f4ee 0%, #f2f5f7 100%);
  border: 1px solid #d9dde3;
  border-radius: 12px;
  height: 100%;
  overflow: hidden;
  padding: 1.7rem 1.45rem 1.55rem;
  position: relative;
}

.recycling-roads-benefit-card::before {
  background: linear-gradient(90deg, rgba(191, 34, 2, 0.16) 0%, rgba(191, 34, 2, 0) 100%);
  content: "";
  height: 4px;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.recycling-roads-benefit-card__title,
.recycling-roads-application-card__title,
.recycling-roads-assurance__title {
  color: #111827;
  font-size: 1.36rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin: 0 0 0.85rem;
}

.recycling-roads-assurance__card--dark .recycling-roads-assurance__title {
  color: #ffffff;
}

.recycling-roads-benefit-card__text,
.recycling-roads-application-card__text {
  color: #4f5a69;
}

.recycling-roads-applications__layout {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
}

.recycling-roads-applications__intro {
  background: linear-gradient(135deg, #171b22 0%, #1f232c 100%);
  border-radius: 14px;
  color: #ffffff;
  padding: 2rem 1.8rem;
}

.recycling-roads-applications__intro .recycling-roads-applications__title {
  color: #ffffff;
}

.recycling-roads-application-grid {
  display: grid;
  gap: 1.1rem;
}

.recycling-roads-application-card {
  background: #f3f4f6;
  border: 1px solid #d9dde3;
  border-radius: 12px;
  padding: 1.55rem 1.4rem 1.45rem;
}

.recycling-roads-assurance__layout {
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
}

.recycling-roads-assurance__card {
  border-radius: 14px;
  padding: 2rem 1.75rem 1.8rem;
}

.recycling-roads-assurance__card--dark {
  background: linear-gradient(135deg, #171b22 0%, #1f232c 100%);
  color: #ffffff;
}

.recycling-roads-assurance__card--light {
  background: #f3f4f6;
  border: 1px solid #d9dde3;
  color: #4f5a69;
}

.recycling-roads-updates {
  padding: 0 0 6rem;
}

.recycling-roads-updates__panel {
  background: #f3f4f6;
  border: 1px solid #d9dde3;
  border-radius: 12px;
  overflow: hidden;
}

.recycling-roads-updates__media {
  overflow: hidden;
}

.recycling-roads-updates__image {
  aspect-ratio: 16 / 8.9;
  display: block;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.recycling-roads-updates__body {
  padding: 2rem 2rem 2.15rem;
}

.recycling-roads-updates__text {
  color: #4f5a69;
  margin: 0 0 1.15rem;
}

.recycling-roads-updates__text--last {
  margin-bottom: 0;
}

.service-detail-hero__image--crcp {
  object-position: center 36%;
}

.crcp-intro__layout,
.crcp-approach__layout,
.crcp-applications__layout,
.crcp-assurance__layout {
  align-items: start;
  display: grid;
  gap: 2.25rem;
}

.crcp-intro__layout {
  grid-template-columns: minmax(0, 1.08fr) minmax(18rem, 0.92fr);
}

.crcp-intro__eyebrow,
.crcp-advantage-card__eyebrow,
.crcp-applications__eyebrow,
.crcp-assurance__eyebrow,
.crcp-updates__eyebrow {
  color: var(--site-primary);
  display: inline-flex;
  font-family: var(--font-display);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin: 0 0 0.9rem;
  text-transform: uppercase;
}

.crcp-intro__title,
.crcp-applications__title,
.crcp-updates__title {
  color: #111827;
  font-size: clamp(2rem, 2.45vw, 2.95rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.12;
  margin: 0 0 1.15rem;
}

.crcp-intro__panel {
  background: linear-gradient(135deg, #171b22 0%, #1f232c 100%);
  border-radius: 14px;
  color: #ffffff;
  padding: 1.9rem 1.7rem;
}

.crcp-intro__panel-label {
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--font-display);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin: 0 0 1rem;
  text-transform: uppercase;
}

.crcp-intro__panel-items {
  display: grid;
  gap: 0.95rem;
}

.crcp-intro__panel-item {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 0.95rem 1rem 1rem;
}

.crcp-intro__panel-key {
  color: #ffffff;
  display: inline-flex;
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 700;
  margin-bottom: 0.45rem;
}

.crcp-intro__panel-text,
.crcp-advantage-card__text,
.crcp-applications__text,
.crcp-application-card__text,
.crcp-assurance__text,
.crcp-updates__text {
  color: inherit;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

.crcp-approach__layout {
  grid-template-columns: minmax(0, 0.97fr) minmax(0, 1.03fr);
}

.crcp-approach__media {
  border-radius: 12px;
  overflow: hidden;
}

.crcp-approach__image {
  aspect-ratio: 16 / 12.4;
  display: block;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.crcp-approach__list {
  color: #4f5a69;
  display: grid;
  gap: 0.8rem;
  line-height: 1.6;
  margin: 1.35rem 0 0;
  padding-left: 1.3rem;
}

.crcp-advantage-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.crcp-advantage-card {
  background: linear-gradient(180deg, #f7f5f1 0%, #f2f4f6 100%);
  border: 1px solid #d9dde3;
  border-radius: 12px;
  height: 100%;
  overflow: hidden;
  padding: 1.7rem 1.45rem 1.55rem;
  position: relative;
}

.crcp-advantage-card::before {
  background: linear-gradient(90deg, rgba(191, 34, 2, 0.16) 0%, rgba(191, 34, 2, 0) 100%);
  content: "";
  height: 4px;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.crcp-advantage-card__title,
.crcp-application-card__title,
.crcp-assurance__title {
  color: #111827;
  font-size: 1.36rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin: 0 0 0.85rem;
}

.crcp-assurance__card--dark .crcp-assurance__title {
  color: #c8ced8;
}

.crcp-advantage-card__text,
.crcp-application-card__text {
  color: #4f5a69;
}

.crcp-applications__layout {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
}

.crcp-applications__intro {
  background: linear-gradient(135deg, #171b22 0%, #1f232c 100%);
  border-radius: 14px;
  color: #ffffff;
  padding: 2rem 1.8rem;
}

.crcp-applications__intro .crcp-applications__title {
  color: #ffffff;
}

.crcp-application-grid {
  display: grid;
  gap: 1.1rem;
}

.crcp-application-card {
  background: #f3f4f6;
  border: 1px solid #d9dde3;
  border-radius: 12px;
  padding: 1.55rem 1.4rem 1.45rem;
}

.crcp-assurance__layout {
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
}

.crcp-assurance__card {
  border-radius: 14px;
  padding: 2rem 1.75rem 1.8rem;
}

.crcp-assurance__card--dark {
  background: linear-gradient(135deg, #171b22 0%, #1f232c 100%);
  color: #ffffff;
}

.crcp-assurance__card--light {
  background: #f3f4f6;
  border: 1px solid #d9dde3;
  color: #4f5a69;
}

.crcp-updates {
  padding: 0 0 6rem;
}

.crcp-updates__panel {
  background: #f3f4f6;
  border: 1px solid #d9dde3;
  border-radius: 12px;
  overflow: hidden;
}

.crcp-updates__media {
  overflow: hidden;
}

.crcp-updates__image {
  aspect-ratio: 16 / 8.9;
  display: block;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.crcp-updates__body {
  padding: 2rem 2rem 2.15rem;
}

.crcp-updates__text {
  color: #4f5a69;
  margin: 0 0 1.15rem;
}

.crcp-updates__text--last {
  margin-bottom: 0;
}

.plant-equipment-article .resource-article__content {
  max-width: 76rem;
}

.plant-fleet-overview__layout,
.plant-facilities__layout {
  align-items: start;
  display: grid;
  gap: 2.25rem;
}

.plant-fleet-overview__layout {
  grid-template-columns: minmax(0, 1.05fr) minmax(19rem, 0.95fr);
}

.plant-fleet-overview__media {
  border-radius: 14px;
  overflow: hidden;
}

.plant-fleet-overview__image {
  aspect-ratio: 16 / 11.5;
  display: block;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.plant-fleet-overview__eyebrow,
.plant-facilities__eyebrow {
  color: var(--site-primary);
  display: inline-flex;
  font-family: var(--font-display);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin: 0 0 0.9rem;
  text-transform: uppercase;
}

.plant-fleet-overview__title,
.plant-facilities__title,
.plant-section-heading__title {
  color: #111827;
  font-size: clamp(2rem, 2.45vw, 2.95rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.12;
  margin: 0;
}

/* .plant-fleet-overview__copy has no wrapping spacer between the title and
   the paragraphs that follow it (unlike .plant-facilities__title, which gets
   its gap from a card-specific override, and .plant-section-heading__title,
   which gets its gap from its flex wrapper's margin-bottom), so the heading's
   last line sits flush against the body text. Give it its own bottom margin. */
.plant-fleet-overview__title {
  margin-bottom: 1.25rem;
}

.plant-operate__text {
  color: #4f5a69;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

.plant-section-heading {
  align-items: start;
  display: flex;
  gap: 1.3rem;
  margin-bottom: 1.6rem;
}

.plant-section-heading__accent {
  background: var(--site-primary);
  border-radius: 2px;
  flex: 0 0 auto;
  height: 5.3rem;
  width: 0.55rem;
}

.plant-facilities__layout {
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
}

.plant-facilities__media {
  border-radius: 14px;
  overflow: hidden;
}

.plant-facilities__image {
  aspect-ratio: 16 / 12.1;
  display: block;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.plant-facilities__card {
  background: linear-gradient(135deg, #171b22 0%, #1f232c 100%);
  border-radius: 14px;
  color: #ffffff;
  padding: 2rem 1.8rem;
}

.plant-facilities__card .plant-facilities__title {
  color: #ffffff;
  margin-bottom: 1.05rem;
}

.plant-facilities__list {
  color: #d7dde5;
  display: grid;
  gap: 0.8rem;
  line-height: 1.65;
  margin: 0 0 1.5rem;
  padding-left: 1.25rem;
}

.plant-facilities__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.plant-facilities__tag {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  color: #ffffff;
  display: inline-flex;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 600;
  min-height: 2.4rem;
  padding: 0.5rem 0.95rem;
}

.plant-operate .operations-grid {
  gap: clamp(0.85rem, 1.5vw, 1.2rem);
  grid-template-areas:
    "compliance human"
    "quality plant";
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.plant-operate .operations-card {
  gap: clamp(1rem, 1.8vw, 1.4rem);
  min-height: 0;
  padding: clamp(1.5rem, 2.4vw, 2rem);
}

.plant-operate .operations-card__head {
  min-height: 0;
}

.plant-operate .operations-card__text {
  line-height: 1.6;
}

.plant-operate__text {
  margin: 0.9rem 0 0;
  max-width: 42rem;
}

.lcch-hero {
  background:
    radial-gradient(circle at top right, rgba(16, 153, 165, 0.12), transparent 26%),
    linear-gradient(180deg, #f7f5ef 0%, #ffffff 48%, #f5f7f8 100%);
  overflow: hidden;
  padding: 3rem 0 5rem;
  position: relative;
}

.lcch-hero::before {
  background: linear-gradient(135deg, rgba(17, 24, 39, 0.04), transparent 50%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.lcch-hero__shell,
.lcch-story__layout,
.lcch-delivery__layout {
  align-items: start;
  display: grid;
  gap: 2.25rem;
}

.lcch-hero__shell {
  grid-template-columns: minmax(0, 1.02fr) minmax(20rem, 0.98fr);
  position: relative;
  z-index: 1;
}

.lcch-hero__eyebrow,
.lcch-story__eyebrow,
.lcch-documents__eyebrow,
.lcch-delivery__eyebrow,
.lcch-gallery__eyebrow,
.lcch-document-card__eyebrow {
  color: var(--site-primary);
  display: inline-flex;
  font-family: var(--font-display);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  margin: 0 0 0.9rem;
  text-transform: uppercase;
}

.lcch-hero__title,
.lcch-story__title,
.lcch-documents__title,
.lcch-delivery__title,
.lcch-gallery__title {
  color: #111827;
  font-size: clamp(2.4rem, 4vw, 4.55rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1.02;
  margin: 0 0 1.15rem;
}

.lcch-hero__subtitle {
  color: #1f2937;
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 600;
  line-height: 1.4;
  margin: 0 0 1.1rem;
}

.lcch-hero__text,
.lcch-story__text,
.lcch-documents__text,
.lcch-delivery__text,
.lcch-document-card__text {
  color: #4f5a69;
  font-size: 1rem;
  line-height: 1.65;
  margin: 0 0 1.1rem;
}

.lcch-hero__text--last,
.lcch-story__text--last {
  margin-bottom: 0;
}

.lcch-hero__stats {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1.8rem;
}

.lcch-stat {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 14px;
  padding: 1.45rem 1.25rem;
}

.lcch-stat--accent {
  background: linear-gradient(145deg, rgba(191, 34, 2, 0.08) 0%, #ffffff 100%);
}

.lcch-stat__value {
  color: #111827;
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2.6vw, 2.65rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.7rem;
}

.lcch-stat__label {
  color: #4f5a69;
  font-size: 0.98rem;
  line-height: 1.58;
  margin: 0;
}

.lcch-hero__media-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lcch-hero__media-card,
.lcch-story__image-card,
.lcch-delivery__image-card,
.lcch-gallery__card {
  border-radius: 18px;
  overflow: hidden;
  position: relative;
}

.lcch-hero__media-card--large {
  grid-column: 1 / -1;
}

.lcch-hero__image,
.lcch-story__image,
.lcch-delivery__image,
.lcch-gallery__image {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.lcch-hero__media-card--large .lcch-hero__image {
  aspect-ratio: 16 / 10.6;
}

.lcch-hero__media-card:not(.lcch-hero__media-card--large) .lcch-hero__image {
  aspect-ratio: 4 / 4.2;
}

.lcch-story {
  padding: 0 0 5.8rem;
}

.lcch-story__layout {
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.96fr);
}

.lcch-story__gallery {
  display: grid;
  gap: 1rem;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
}

.lcch-story__image-card--tall .lcch-story__image {
  aspect-ratio: 4 / 5.4;
}

.lcch-story__image-stack {
  display: grid;
  gap: 1rem;
}

.lcch-story__image-stack .lcch-story__image {
  aspect-ratio: 4 / 2.55;
}

.lcch-documents {
  padding: 0 0 5.8rem;
}

.lcch-documents__intro {
  margin: 0 auto 2rem;
  max-width: 46rem;
  text-align: center;
}

.lcch-document-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lcch-document-card {
  background: #f5f6f7;
  border: 1px solid #d9dde3;
  border-radius: 18px;
  padding: 1.75rem 1.55rem 1.6rem;
}

.lcch-document-card--accent {
  background: linear-gradient(145deg, rgba(191, 34, 2, 0.08) 0%, #f5f6f7 100%);
}

.lcch-document-card__title {
  color: #111827;
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin: 0 0 0.9rem;
}

.lcch-document-card__button {
  align-items: center;
  border: 1px solid rgba(17, 24, 39, 0.12);
  border-radius: 999px;
  color: #111827;
  display: inline-flex;
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 600;
  min-height: 3rem;
  padding: 0.55rem 1.1rem;
  text-decoration: none;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.lcch-document-card__button:hover,
.lcch-document-card__button:focus {
  background: #ffffff;
  border-color: rgba(17, 24, 39, 0.2);
  color: #111827;
  transform: translateY(-1px);
}

.lcch-delivery {
  padding: 0 0 5.8rem;
}

.lcch-delivery__layout {
  grid-template-columns: minmax(0, 1.03fr) minmax(19rem, 0.97fr);
}

.lcch-delivery__list {
  color: #4f5a69;
  display: grid;
  gap: 0.8rem;
  line-height: 1.62;
  margin: 1.4rem 0 0;
  padding-left: 1.3rem;
}

.lcch-delivery__media-column {
  display: grid;
  gap: 1rem;
}

.lcch-delivery__image-card--offset {
  margin-left: 2rem;
}

.lcch-delivery__image {
  aspect-ratio: 16 / 10.1;
}

.lcch-gallery {
  padding: 0 0 6rem;
}

.lcch-gallery__intro {
  margin-bottom: 2rem;
  max-width: 42rem;
}

.lcch-gallery__grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.lcch-gallery__card--wide {
  grid-column: span 2;
}

.lcch-gallery__card--tall {
  grid-row: span 2;
}

.lcch-gallery__card--wide .lcch-gallery__image {
  aspect-ratio: 16 / 10;
}

.lcch-gallery__card:not(.lcch-gallery__card--wide):not(.lcch-gallery__card--tall) .lcch-gallery__image {
  aspect-ratio: 4 / 4.1;
}

.lcch-gallery__card--tall .lcch-gallery__image {
  aspect-ratio: 4 / 8.4;
}

.quarry-intro {
  background: #f5f6f7;
  padding: 3.4rem 0 3.8rem;
}

.quarry-hero {
  align-items: stretch;
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
}

.quarry-hero__content {
  align-self: center;
  max-width: 44rem;
}

.quarry-hero__eyebrow,
.quarry-browse__eyebrow {
  color: var(--site-primary);
  display: inline-flex;
  font-family: var(--font-display);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin: 0 0 0.9rem;
  text-transform: uppercase;
}

.quarry-intro__title {
  color: #111827;
  font-size: clamp(3.5rem, 5vw, 4.75rem);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 0.96;
  margin: 0 0 1.6rem;
}

.quarry-intro__text {
  color: #4f5a69;
  font-size: 1.04rem;
  line-height: 1.6;
  margin: 0;
  max-width: 56rem;
}

.quarry-intro__text--last {
  margin-top: 1rem;
}

.quarry-hero__media,
.quarry-detail__media,
.quarry-rock__media {
  border-radius: 8px;
  margin: 0;
  overflow: hidden;
}

.quarry-hero__image,
.quarry-detail__image,
.quarry-rock__image {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.quarry-hero__image {
  aspect-ratio: 16 / 10.2;
}

.quarry-summary-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1.2rem;
}

.quarry-summary-card {
  background: #ffffff;
  border: 1px solid #d9dde3;
  border-radius: 8px;
  padding: 1.45rem 1.35rem;
}

.quarry-summary-card--accent {
  background: linear-gradient(145deg, rgba(191, 34, 2, 0.08) 0%, #ffffff 100%);
}

.quarry-summary-card__value {
  color: #111827;
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
  margin-bottom: 0.65rem;
}

.quarry-summary-card__label {
  color: #4f5a69;
  font-size: 0.96rem;
  line-height: 1.5;
  margin: 0;
}

.quarry-detail,
.quarry-rock,
.quarry-standards {
  padding: 5.5rem 0 0;
}

.quarry-detail__layout,
.quarry-rock__layout,
.quarry-standards__layout {
  align-items: center;
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.quarry-detail__title {
  color: #111827;
  font-size: clamp(2.1rem, 3vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin: 0 0 1.15rem;
}

.quarry-detail__text {
  color: #4f5a69;
  font-size: 1.03rem;
  line-height: 1.62;
  margin: 0 0 1rem;
}

.quarry-detail__text--last {
  margin-bottom: 0;
}

.quarry-detail__image,
.quarry-rock__image {
  aspect-ratio: 16 / 11.4;
}

.quarry-panel {
  border-radius: 8px;
  min-height: 32rem;
  overflow: hidden;
  padding: 3.2rem 3rem 2.8rem;
  position: relative;
}

.quarry-panel--light {
  background: #f3f1f0;
  color: #111827;
}

.quarry-panel--light::after {
  background:
    repeating-radial-gradient(circle at center, rgba(191, 34, 2, 0.18) 0 1px, transparent 1px 9px);
  border-radius: 50%;
  content: "";
  height: 18rem;
  opacity: 0.45;
  pointer-events: none;
  position: absolute;
  right: -2rem;
  top: -1rem;
  width: 18rem;
}

.quarry-panel--dark {
  background: linear-gradient(90deg, #191c23 0%, #171b22 100%);
  color: #ffffff;
}

.quarry-panel__title {
  color: inherit;
  font-size: clamp(2rem, 2.7vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.14;
  margin: 0 0 1.5rem;
  max-width: 30rem;
  position: relative;
  z-index: 1;
}

.quarry-panel__text,
.quarry-panel__list {
  color: inherit;
  font-size: 1.03rem;
  line-height: 1.62;
  margin: 0;
  max-width: 34rem;
  opacity: 0.96;
  position: relative;
  z-index: 1;
}

.quarry-panel__list {
  padding-left: 1.25rem;
}

.quarry-panel__text--last {
  margin-top: 1rem;
}

.quarry-process-list {
  counter-reset: quarry-process;
  display: grid;
  gap: 0.9rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.quarry-process-list li {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  counter-increment: quarry-process;
  display: flex;
  gap: 1rem;
  padding: 0.95rem 1rem;
}

.quarry-process-list li::before {
  color: #ff725c;
  content: counter(quarry-process, decimal-leading-zero);
  flex: 0 0 auto;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.quarry-process-list span {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
}

.quarry-gallery {
  padding: 5.5rem 0 6rem;
}

.quarry-browse {
  align-items: flex-end;
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  margin-bottom: 2.6rem;
}

.quarry-browse__title {
  color: #111827;
  font-size: clamp(2rem, 3vw, 3.1rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin: 0;
  max-width: 46rem;
}

.quarry-browse__actions {
  align-items: center;
  display: inline-flex;
  gap: 1rem;
}

.quarry-gallery__grid {
  display: grid;
  gap: 0.75rem;
  grid-auto-flow: dense;
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.quarry-card {
  border-radius: 4px;
  cursor: default;
  grid-column: span 3;
  min-width: 0;
  overflow: hidden;
  position: relative;
}

.quarry-card[hidden] {
  display: none !important;
}

.quarry-card__image {
  aspect-ratio: 4 / 4.7;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 0.28s ease;
  width: 100%;
}

.quarry-card--wide {
  grid-column: span 6;
}

.quarry-card--wide .quarry-card__image {
  aspect-ratio: 8 / 4.7;
}

.quarry-card--tall {
  grid-row: span 2;
}

.quarry-card--tall .quarry-card__image {
  aspect-ratio: 4 / 9.6;
}

.quarry-card__overlay {
  align-items: flex-start;
  background: linear-gradient(180deg, rgba(7, 10, 16, 0.04) 18%, rgba(7, 10, 16, 0.82) 100%);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  inset: 0;
  justify-content: flex-end;
  opacity: 0;
  padding: 1.6rem 1.45rem;
  pointer-events: none;
  position: absolute;
  transition: opacity 0.24s ease;
}

.quarry-card__state {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.quarry-card__country {
  display: none;
}

.quarry-card:hover .quarry-card__image,
.quarry-card:focus-within .quarry-card__image,
.quarry-card:focus .quarry-card__image {
  transform: scale(1.03);
}

.quarry-card:hover .quarry-card__overlay,
.quarry-card:focus-within .quarry-card__overlay,
.quarry-card:focus .quarry-card__overlay {
  opacity: 1;
}

.back-to-top {
  align-items: center;
  background: var(--site-primary);
  border: 0;
  border-radius: 8px;
  bottom: 2rem;
  box-shadow: 0 14px 34px rgba(191, 34, 2, 0.24);
  color: #ffffff;
  cursor: pointer;
  display: inline-flex;
  font-family: var(--font-display);
  font-size: 1.5rem;
  height: 3.3rem;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  right: 2rem;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease, background 0.2s ease;
  width: 3.3rem;
  z-index: 1030;
}

.back-to-top:hover,
.back-to-top:focus {
  background: var(--site-primary-hover);
}

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

[data-bs-theme="dark"] {
  --site-header-bg: var(--site-body-bg);
  --site-header-border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.40);
  --site-body-bg: #0f0f10;
  --site-text: #dbdee4;
  --site-list-marker: #ff795d;
}

[data-bs-theme="dark"] .navbar-nav .nav-link {
  color: #d7d7d7;
}

[data-bs-theme="dark"] .navbar-nav .nav-link:hover,
[data-bs-theme="dark"] .navbar-nav .nav-link:focus,
[data-bs-theme="dark"] .navbar-nav .show > .nav-link,
[data-bs-theme="dark"] .navbar-nav .nav-link.active {
  color: var(--site-primary);
}

[data-bs-theme="dark"] .theme-toggle-btn,
[data-bs-theme="dark"] .report-case-btn {
  color: #f5f5f5;
}

[data-bs-theme="dark"] .navbar-toggler {
  background: #17181b;
  border-color: rgba(255, 255, 255, 0.12);
}

[data-bs-theme="dark"] .navbar-toggler .navbar-toggler-animation span {
  background: #f5f5f5;
}

[data-bs-theme="dark"] .report-case-btn {
  background: #212227;
  border-color: #212227;
}

[data-bs-theme="dark"] .dropdown-menu {
  background: #17181b;
  border-color: rgba(255, 255, 255, 0.08);
}

[data-bs-theme="dark"] .dropdown-item,
[data-bs-theme="dark"] .dropdown-link {
  color: #d0d5dd;
}

[data-bs-theme="dark"] .theme-menu .dropdown-item.active {
  background: rgba(191, 34, 2, 0.2);
  color: #ffe1da;
}

[data-bs-theme="dark"] .dropdown-item:hover,
[data-bs-theme="dark"] .dropdown-item:focus,
[data-bs-theme="dark"] .dropdown-link:hover,
[data-bs-theme="dark"] .dropdown-link:focus {
  background: rgba(191, 34, 2, 0.14);
}

[data-bs-theme="dark"] .about-overview__title,
[data-bs-theme="dark"] .about-tabs-pane-title {
  color: #f3f4f6;
}

[data-bs-theme="dark"] .about-overview__text,
[data-bs-theme="dark"] .about-tabs-pane-text {
  color: #d0d6df;
}

[data-bs-theme="dark"] .about-tabs-card {
  background: #1a1c20;
}

[data-bs-theme="dark"] .about-tabs-nav .nav-link {
  color: #f3f4f6;
}

[data-bs-theme="dark"] .about-tabs-nav .nav-link.active {
  background: #ffffff;
  color: #171b23;
}

[data-bs-theme="dark"] .stat-card__label,
[data-bs-theme="dark"] .stat-card__value,
[data-bs-theme="dark"] .services-showcase__title {
  color: #f3f4f6;
}

[data-bs-theme="dark"] .stat-card__copy,
[data-bs-theme="dark"] .services-showcase__subtitle {
  color: #d0d6df;
}

[data-bs-theme="dark"] .projects-showcase__title,
[data-bs-theme="dark"] .projects-filter__title {
  color: #f3f4f6;
}

[data-bs-theme="dark"] .projects-showcase__subtitle {
  color: #d0d6df;
}

[data-bs-theme="dark"] .projects-filter__button {
  color: #e5e7eb;
}

[data-bs-theme="dark"] .partners-showcase {
  background: #151920;
}

[data-bs-theme="dark"] .partners-showcase__title {
  color: #f3f4f6;
}

[data-bs-theme="dark"] .operations-section__summary {
  color: #c9d0d9;
}

[data-bs-theme="dark"] .partner-logo {
  background: transparent;
}

[data-bs-theme="dark"] .partner-logo__face--front,
[data-bs-theme="dark"] .partner-logo__face--back {
  background: #f3f4f6;
  border-color: rgba(17, 24, 39, 0.08);
}

[data-bs-theme="dark"] .partner-logo__name {
  color: #2f3137 !important;
}

[data-bs-theme="dark"] .partner-logo__text {
  color: #555b66 !important;
}

[data-bs-theme="dark"] main .partner-logo__link {
  background: var(--site-primary);
  color: #ffffff !important;
}

[data-bs-theme="dark"] main .partner-logo__link:hover,
[data-bs-theme="dark"] main .partner-logo__link:focus {
  background: var(--site-primary-hover);
  color: #ffffff !important;
}

[data-bs-theme="dark"] .who-intro__title,
[data-bs-theme="dark"] .leadership-team__title,
[data-bs-theme="dark"] .operations-section__title,
[data-bs-theme="dark"] .leader-card__name,
[data-bs-theme="dark"] .who-intro__list li {
  color: #f3f4f6;
}

[data-bs-theme="dark"] .who-intro__text,
[data-bs-theme="dark"] .who-story__text,
[data-bs-theme="dark"] .leadership-team__subtitle,
[data-bs-theme="dark"] .leader-card__role {
  color: #d0d6df;
}

[data-bs-theme="dark"] .who-story,
[data-bs-theme="dark"] .who-intro__list li {
  border-color: rgba(255, 255, 255, 0.12);
}

[data-bs-theme="dark"] .who-story__mini-stat--dark,
[data-bs-theme="dark"] .leader-card__media {
  background: #1a1c20;
}

[data-bs-theme="dark"] .operations-card--light {
  background: #1a1c20;
  color: #f3f4f6;
}

[data-bs-theme="dark"] .operations-card--light .operations-card__action {
  background: rgba(255, 255, 255, 0.12);
}

[data-bs-theme="dark"] .operations-card__title--grey,
[data-bs-theme="dark"] .operations-card__title--grey-soft {
  color: #c8ced8;
}

[data-bs-theme="dark"] .operations-card--dark .operations-card__title--grey,
[data-bs-theme="dark"] .operations-card--dark .operations-card__title--grey-soft {
  color: #ffffff;
}

[data-bs-theme="dark"] .resource-hero__title,
[data-bs-theme="dark"] .resource-article__title,
[data-bs-theme="dark"] .resource-article__subheading {
  color: #f3f4f6;
}

[data-bs-theme="dark"] .resource-hero__card {
  background: #171b23;
  border-color: rgba(255, 255, 255, 0.08);
}

[data-bs-theme="dark"] .resource-hero__meta,
[data-bs-theme="dark"] .resource-article__text,
[data-bs-theme="dark"] .resource-article__list,
[data-bs-theme="dark"] .resource-article__ordered {
  color: #cfd5de;
}

[data-bs-theme="dark"] .resource-article__list li::marker,
[data-bs-theme="dark"] .resource-article__ordered li::marker {
  color: var(--site-list-marker);
}

[data-bs-theme="dark"] .contact-card,
[data-bs-theme="dark"] .contact-office-card {
  background: #171a21;
  border-color: rgba(255, 255, 255, 0.08);
}

[data-bs-theme="dark"] .contact-card__title,
[data-bs-theme="dark"] .contact-offices__title,
[data-bs-theme="dark"] .contact-office-card__title,
[data-bs-theme="dark"] .contact-field__label {
  color: #f3f4f6;
}

[data-bs-theme="dark"] .contact-card__text,
[data-bs-theme="dark"] .contact-office-card__text,
[data-bs-theme="dark"] .contact-office-card__reg,
[data-bs-theme="dark"] .contact-form__note,
[data-bs-theme="dark"] .contact-form__status {
  color: #b2b9c5;
}

[data-bs-theme="dark"] .contact-field__input {
  background: #101319;
  border-color: rgba(255, 255, 255, 0.12);
  color: #f3f4f6;
}

[data-bs-theme="dark"] .contact-field__input::placeholder {
  color: #9ca3af;
}

[data-bs-theme="dark"] .report-hero__text {
  color: #b2b9c5;
}

[data-bs-theme="dark"] .case-overview__card {
  background: #171a21;
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

[data-bs-theme="dark"] .case-overview__card-title {
  color: #f3f4f6;
}

[data-bs-theme="dark"] .case-overview__card-text {
  color: #b2b9c5;
}

[data-bs-theme="dark"] .report-form__secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.14);
  color: #f3f4f6;
}

[data-bs-theme="dark"] .report-form__choice-card {
  background: #101319;
  border-color: rgba(255, 255, 255, 0.12);
}

[data-bs-theme="dark"] .report-form__choice-card span {
  color: #f3f4f6;
}

[data-bs-theme="dark"] .report-form__secondary:hover,
[data-bs-theme="dark"] .report-form__secondary:focus {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  color: #f3f4f6;
}

[data-bs-theme="dark"] .resource-article__list strong,
[data-bs-theme="dark"] .resource-article__ordered strong,
[data-bs-theme="dark"] .resource-article__text strong {
  color: #f3f4f6;
}

[data-bs-theme="dark"] .qse-section-title,
[data-bs-theme="dark"] .qse-pillar-card__title,
[data-bs-theme="dark"] .qse-standard-tags span,
[data-bs-theme="dark"] .qse-audience-grid span,
[data-bs-theme="dark"] .qse-commitment-card__title {
  color: #f3f4f6;
}

[data-bs-theme="dark"] .qse-hero__text,
[data-bs-theme="dark"] .qse-text,
[data-bs-theme="dark"] .qse-pillar-card__text,
[data-bs-theme="dark"] .qse-objective-grid li,
[data-bs-theme="dark"] .qse-commitment-card,
[data-bs-theme="dark"] .qse-audience-grid span {
  color: #cfd5de;
}

[data-bs-theme="dark"] .qse-pillar-card,
[data-bs-theme="dark"] .qse-standard-tags span,
[data-bs-theme="dark"] .qse-objective-grid li,
[data-bs-theme="dark"] .qse-commitment-card,
[data-bs-theme="dark"] .qse-audience-grid span {
  background: #171b23;
  border-color: rgba(255, 255, 255, 0.08);
}

[data-bs-theme="dark"] .qse-pillar-card--accent {
  background: linear-gradient(145deg, rgba(191, 34, 2, 0.2) 0%, #171b23 100%);
}

[data-bs-theme="dark"] .service-detail-hero__title {
  color: #f3f4f6;
}

[data-bs-theme="dark"] .service-detail-article__label {
  color: #cfd5de;
}

[data-bs-theme="dark"] .roadworks-story__title,
[data-bs-theme="dark"] .roadworks-focus__title,
[data-bs-theme="dark"] .roadworks-updates__title,
[data-bs-theme="dark"] .roadworks-service-card__title {
  color: #f3f4f6;
}

[data-bs-theme="dark"] .roadworks-story__text,
[data-bs-theme="dark"] .roadworks-service-card__text,
[data-bs-theme="dark"] .roadworks-updates__text,
[data-bs-theme="dark"] .roadworks-updates__list {
  color: #cfd5de;
}

[data-bs-theme="dark"] .roadworks-service-card,
[data-bs-theme="dark"] .roadworks-updates__panel {
  background: #171b23;
  border-color: rgba(255, 255, 255, 0.08);
}

[data-bs-theme="dark"] .water-schemes-intro__title,
[data-bs-theme="dark"] .water-schemes-updates__title,
[data-bs-theme="dark"] .water-schemes-service-card__title,
[data-bs-theme="dark"] .water-schemes-assurance__title,
[data-bs-theme="dark"] .water-schemes-stat__value {
  color: #f3f4f6;
}

[data-bs-theme="dark"] .water-schemes-stat,
[data-bs-theme="dark"] .water-schemes-service-card,
[data-bs-theme="dark"] .water-schemes-assurance__card--light,
[data-bs-theme="dark"] .water-schemes-updates__panel {
  background: #171b23;
  border-color: rgba(255, 255, 255, 0.08);
}

[data-bs-theme="dark"] .water-schemes-stat--accent {
  background: linear-gradient(145deg, rgba(191, 34, 2, 0.2) 0%, #171b23 100%);
}

[data-bs-theme="dark"] .water-schemes-stat__label,
[data-bs-theme="dark"] .water-schemes-service-card__text,
[data-bs-theme="dark"] .water-schemes-updates__text,
[data-bs-theme="dark"] .water-schemes-approach__highlights,
[data-bs-theme="dark"] .water-schemes-assurance__card--light,
[data-bs-theme="dark"] .water-schemes-assurance__card--light .water-schemes-assurance__text {
  color: #cfd5de;
}

[data-bs-theme="dark"] .landworks-intro__title,
[data-bs-theme="dark"] .landworks-updates__title,
[data-bs-theme="dark"] .landworks-service-card__title,
[data-bs-theme="dark"] .landworks-excellence__title {
  color: #f3f4f6;
}

[data-bs-theme="dark"] .landworks-excellence__card--dark .landworks-excellence__title {
  color: #c8ced8;
}

[data-bs-theme="dark"] .landworks-service-card,
[data-bs-theme="dark"] .landworks-excellence__card--light,
[data-bs-theme="dark"] .landworks-updates__panel {
  background: #171b23;
  border-color: rgba(255, 255, 255, 0.08);
}

[data-bs-theme="dark"] .landworks-service-card__text,
[data-bs-theme="dark"] .landworks-excellence__card--light,
[data-bs-theme="dark"] .landworks-excellence__card--light .landworks-excellence__text,
[data-bs-theme="dark"] .landworks-approach__list,
[data-bs-theme="dark"] .landworks-updates__text {
  color: #cfd5de;
}

[data-bs-theme="dark"] .foam-materials-intro__title,
[data-bs-theme="dark"] .foam-materials-updates__title,
[data-bs-theme="dark"] .foam-materials-partnership__title,
[data-bs-theme="dark"] .foam-materials-service-card__title,
[data-bs-theme="dark"] .foam-materials-performance__title {
  color: #f3f4f6;
}

[data-bs-theme="dark"] .foam-materials-service-card,
[data-bs-theme="dark"] .foam-materials-performance__card--light,
[data-bs-theme="dark"] .foam-materials-updates__panel {
  background: #171b23;
  border-color: rgba(255, 255, 255, 0.08);
}

[data-bs-theme="dark"] .foam-materials-service-card__text,
[data-bs-theme="dark"] .foam-materials-performance__card--light,
[data-bs-theme="dark"] .foam-materials-performance__card--light .foam-materials-performance__text,
[data-bs-theme="dark"] .foam-materials-approach__list,
[data-bs-theme="dark"] .foam-materials-updates__text,
[data-bs-theme="dark"] .foam-materials-updates__list {
  color: #cfd5de;
}

[data-bs-theme="dark"] .recycling-roads-intro__title,
[data-bs-theme="dark"] .recycling-roads-applications__title,
[data-bs-theme="dark"] .recycling-roads-updates__title,
[data-bs-theme="dark"] .recycling-roads-benefit-card__title,
[data-bs-theme="dark"] .recycling-roads-application-card__title,
[data-bs-theme="dark"] .recycling-roads-assurance__title {
  color: #f3f4f6;
}

[data-bs-theme="dark"] .recycling-roads-benefit-card,
[data-bs-theme="dark"] .recycling-roads-application-card,
[data-bs-theme="dark"] .recycling-roads-assurance__card--light,
[data-bs-theme="dark"] .recycling-roads-updates__panel {
  background: #171b23;
  border-color: rgba(255, 255, 255, 0.08);
}

[data-bs-theme="dark"] .recycling-roads-benefit-card__text,
[data-bs-theme="dark"] .recycling-roads-application-card__text,
[data-bs-theme="dark"] .recycling-roads-assurance__card--light,
[data-bs-theme="dark"] .recycling-roads-assurance__card--light .recycling-roads-assurance__text,
[data-bs-theme="dark"] .recycling-roads-approach__list,
[data-bs-theme="dark"] .recycling-roads-updates__text {
  color: #cfd5de;
}

[data-bs-theme="dark"] .crcp-intro__title,
[data-bs-theme="dark"] .crcp-applications__title,
[data-bs-theme="dark"] .crcp-updates__title,
[data-bs-theme="dark"] .crcp-advantage-card__title,
[data-bs-theme="dark"] .crcp-application-card__title,
[data-bs-theme="dark"] .crcp-assurance__title {
  color: #f3f4f6;
}

[data-bs-theme="dark"] .crcp-assurance__card--dark .crcp-assurance__title {
  color: #c8ced8;
}

[data-bs-theme="dark"] .crcp-advantage-card,
[data-bs-theme="dark"] .crcp-application-card,
[data-bs-theme="dark"] .crcp-assurance__card--light,
[data-bs-theme="dark"] .crcp-updates__panel {
  background: #171b23;
  border-color: rgba(255, 255, 255, 0.08);
}

[data-bs-theme="dark"] .crcp-advantage-card__text,
[data-bs-theme="dark"] .crcp-application-card__text,
[data-bs-theme="dark"] .crcp-assurance__card--light,
[data-bs-theme="dark"] .crcp-assurance__card--light .crcp-assurance__text,
[data-bs-theme="dark"] .crcp-approach__list,
[data-bs-theme="dark"] .crcp-updates__text {
  color: #cfd5de;
}

[data-bs-theme="dark"] .plant-fleet-overview__title,
[data-bs-theme="dark"] .plant-facilities__title,
[data-bs-theme="dark"] .plant-section-heading__title {
  color: #f3f4f6;
}

[data-bs-theme="dark"] .plant-operate__text {
  color: #cfd5de;
}

[data-bs-theme="dark"] .lcch-hero {
  background:
    radial-gradient(circle at top right, rgba(16, 153, 165, 0.16), transparent 28%),
    linear-gradient(180deg, #11151b 0%, #12171e 45%, #151b22 100%);
}

[data-bs-theme="dark"] .lcch-hero__title,
[data-bs-theme="dark"] .lcch-story__title,
[data-bs-theme="dark"] .lcch-documents__title,
[data-bs-theme="dark"] .lcch-delivery__title,
[data-bs-theme="dark"] .lcch-gallery__title,
[data-bs-theme="dark"] .lcch-stat__value,
[data-bs-theme="dark"] .lcch-document-card__title {
  color: #f3f4f6;
}

[data-bs-theme="dark"] .lcch-hero__subtitle,
[data-bs-theme="dark"] .lcch-hero__text,
[data-bs-theme="dark"] .lcch-story__text,
[data-bs-theme="dark"] .lcch-documents__text,
[data-bs-theme="dark"] .lcch-delivery__text,
[data-bs-theme="dark"] .lcch-delivery__list,
[data-bs-theme="dark"] .lcch-stat__label,
[data-bs-theme="dark"] .lcch-document-card__text {
  color: #cfd5de;
}

[data-bs-theme="dark"] .lcch-stat,
[data-bs-theme="dark"] .lcch-document-card {
  background: #171b23;
  border-color: rgba(255, 255, 255, 0.08);
}

[data-bs-theme="dark"] .lcch-stat--accent,
[data-bs-theme="dark"] .lcch-document-card--accent {
  background: linear-gradient(145deg, rgba(191, 34, 2, 0.18) 0%, #171b23 100%);
}

[data-bs-theme="dark"] .lcch-document-card__button {
  border-color: rgba(255, 255, 255, 0.12);
  color: #f3f4f6;
}

[data-bs-theme="dark"] .lcch-document-card__button:hover,
[data-bs-theme="dark"] .lcch-document-card__button:focus {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

[data-bs-theme="dark"] .quarry-intro {
  background: #11151c;
}

[data-bs-theme="dark"] .quarry-intro__title,
[data-bs-theme="dark"] .quarry-browse__title,
[data-bs-theme="dark"] .quarry-detail__title,
[data-bs-theme="dark"] .quarry-summary-card__value {
  color: #f3f4f6;
}

[data-bs-theme="dark"] .quarry-intro__text,
[data-bs-theme="dark"] .quarry-detail__text,
[data-bs-theme="dark"] .quarry-summary-card__label {
  color: #cfd5de;
}

[data-bs-theme="dark"] .quarry-summary-card,
[data-bs-theme="dark"] .quarry-panel--light {
  background: #171b23;
  border-color: rgba(255, 255, 255, 0.08);
  color: #f3f4f6;
}

[data-bs-theme="dark"] .quarry-summary-card--accent {
  background: linear-gradient(145deg, rgba(191, 34, 2, 0.2) 0%, #171b23 100%);
}

[data-bs-theme="dark"] .quarry-panel--light::after {
  opacity: 0.25;
}

[data-bs-theme="dark"] .resource-hero__meta-divider {
  background: rgba(255, 255, 255, 0.18);
}

@media (min-width: 1200px) {
  .navbar > .container {
    column-gap: clamp(0.5rem, 0.75vw, 1rem);
  }

  .navbar-collapse {
    flex: 1 1 auto;
    min-width: 0;
  }

  .navbar-nav {
    flex-wrap: nowrap;
    gap: 0.05rem;
  }

  .navbar-nav .nav-link {
    font-size: 0.98rem;
    padding-inline: clamp(0.68rem, 0.8vw, 0.95rem);
  }

  .header-actions {
    flex-shrink: 0;
    gap: 0.25rem;
    margin-left: clamp(0.35rem, 0.55vw, 0.7rem);
  }

  .header-actions .report-case-btn,
  .header-actions .contact-btn {
    align-items: center;
    display: inline-flex !important;
    justify-content: center;
  }

  .navbar-nav .dropdown-menu {
    animation: dropdownLift 0.22s ease;
  }
}

/*
 * Below 2000px, root font-size stayed at the 16px mobile/tablet baseline all
 * the way up through standard laptop and desktop monitor widths, so rem-sized
 * body text read the same on a 15" laptop as on a phone. Nudge it up a step
 * for that range without touching layout (container/header sizing unchanged).
 */
@media (min-width: 1200px) {
  :root {
    font-size: 17px;
  }
}

/*
 * Ultrawide displays need a larger design canvas, not merely more empty space.
 * These tiers leave laptop layouts unchanged while scaling the shared rem-based
 * typography, spacing, cards, and page sections on 2K and 4K screens.
 */
@media (min-width: 2000px) {
  :root {
    --header-block-size: 112px;
    font-size: 18px;
  }

  .container {
    max-width: 1600px;
    width: min(100% - 96px, 1600px);
  }

  .navbar-brand {
    padding-block: 24px;
  }

  .navbar-brand .navbar-brand-item {
    height: 42px !important;
  }

  .navbar-nav .nav-link {
    font-size: 1rem;
    padding-inline: 1rem;
  }
}

@media (min-width: 2800px) {
  :root {
    --header-block-size: 148px;
    font-size: 26px;
  }

  .container {
    max-width: 2400px;
    width: min(100% - 160px, 2400px);
  }

  .navbar-brand {
    padding-block: 32px;
  }

  .navbar-brand .navbar-brand-item {
    height: 64px !important;
  }

  .navbar-nav .nav-link {
    padding-inline: 1.05rem;
  }
}

@media (min-width: 1200px) and (max-width: 1439.98px) {
  .theme-toggle-btn {
    padding-inline: 0.4rem !important;
  }

  .theme-toggle-label {
    display: none;
  }

  .navbar-nav .nav-link {
    font-size: 0.96rem;
    padding-inline: 0.8rem;
  }

  .header-actions {
    gap: 0.2rem;
  }

  .report-case-btn {
    padding-inline: 0.85rem;
  }

  .contact-btn {
    padding-inline: 1.25rem;
  }
}

@media (max-width: 1199.98px) {
  :root {
    --header-block-size: 82px;
  }

  .container {
    width: min(100% - 28px, 100%);
  }

  .navbar {
    border-bottom: 1px solid rgba(55, 65, 81, 0.12);
  }

  .navbar-brand {
    padding: 16px 0;
  }

  .navbar-brand .navbar-brand-item {
    height: 36px !important;
  }

  .navbar-collapse {
    background: var(--bs-body-bg);
    border-radius: 16px;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.2);
    margin-top: 1rem;
    padding: 1rem 0.75rem;
  }

  .mobile-nav-cta {
    display: grid;
  }

  .navbar-nav {
    align-items: stretch;
    gap: 0;
  }

  .navbar-nav .nav-link {
    padding: 0.85rem 0.9rem;
  }

  .navbar .nav-link.dropdown-toggle::after {
    margin-left: 0.4rem;
  }

  .dropdown-menu,
  .dropdown-menu-size-lg {
    box-shadow: none;
    border: 0;
    min-width: 100%;
    padding-top: 0;
    margin-top: 0;
  }

  .dropdown-item,
  .dropdown-link {
    padding: 0.7rem 1rem 0.7rem 1.5rem;
  }

  .dropdown-submenu-menu {
    left: 0;
    top: 0;
  }

  .header-actions {
    gap: 0.15rem;
    margin-left: auto;
    flex-wrap: nowrap;
  }

  .header-actions .report-case-btn,
  .header-actions .contact-btn {
    display: none;
  }

  .navbar-toggler {
    align-items: center;
    background: #ffffff;
    border: 1px solid rgba(55, 65, 81, 0.16);
    border-radius: 12px;
    display: inline-flex !important;
    justify-content: center;
    min-height: 2.75rem;
    min-width: 2.75rem;
  }

  .navbar-toggler .navbar-toggler-animation span {
    background: #111827;
  }

  .mobile-nav-cta .report-case-btn,
  .mobile-nav-cta .contact-btn {
    display: inline-flex;
    justify-content: center;
  }

  .hero-carousel,
  .hero-carousel .carousel-inner,
  .hero-carousel .carousel-item,
  .hero-slide {
    min-height: 44rem;
  }

  .hero-copy-wrap {
    padding-top: 7.75rem;
    padding-bottom: 3rem;
  }

  .hero-title {
    font-size: clamp(2.7rem, 6vw, 4rem);
    max-width: 38rem;
  }

  .hero-text {
    font-size: 1rem;
    max-width: 100%;
  }

  .hero-btn {
    min-height: 3.65rem;
    padding-inline: 1.45rem;
  }

  .about-overview {
    padding: 4.9rem 0 5.25rem;
  }

  .about-overview__title {
    font-size: clamp(2rem, 3vw, 2.8rem);
    margin-bottom: 2rem;
  }

  .about-tabs-card {
    padding: 1.75rem 1.65rem 2rem;
  }

  .about-overview__image {
    min-height: 36rem;
  }

  .stat-card__copy {
    max-width: 16.5rem;
  }
}

@media (max-width: 991.98px) {
  .navbar-brand .navbar-brand-item {
    height: 34px !important;
  }

  .hero-copy-wrap {
    padding-top: 7rem;
    padding-bottom: 2.75rem;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-title {
    font-size: clamp(2.35rem, 7.3vw, 3.5rem);
    max-width: 32rem;
  }

  .hero-text {
    font-size: 0.98rem;
    line-height: 1.6;
    max-width: 30rem;
  }

  .about-overview {
    padding: 4.25rem 0 4.5rem;
  }

  .about-overview__content {
    max-width: 100%;
  }

  .about-overview__title {
    font-size: clamp(1.9rem, 5vw, 2.65rem);
    margin-bottom: 1.6rem;
  }

  .about-overview__text {
    font-size: 1rem;
  }

  .about-tabs-card {
    padding: 1.65rem 1.4rem 1.85rem;
  }

  .about-tabs-pane-title {
    font-size: clamp(1.45rem, 4vw, 2rem);
  }

  .about-overview__media {
    margin-top: 0.4rem;
  }

  .about-overview__image {
    min-height: 32rem;
  }

  .stats-section {
    padding-top: 3rem;
    padding-bottom: 4.5rem;
  }

  .stat-card__divider {
    margin: 1.2rem 0 1.5rem;
  }

  .stat-card__value {
    font-size: clamp(2.7rem, 8vw, 3.8rem);
  }

  .services-showcase {
    padding: 0.5rem 0 4.75rem;
  }

  .services-showcase__intro {
    margin-bottom: 2.5rem;
  }

  .video-feature {
    padding-bottom: 4.75rem;
  }

  .video-feature__shell {
    min-height: clamp(21rem, 52vw, 34rem);
  }

  .projects-showcase {
    padding: 5rem 0 5rem;
  }

  .projects-showcase__header {
    margin-bottom: 2.7rem;
  }

  .projects-showcase__title {
    font-size: clamp(2.2rem, 3vw, 3.25rem);
  }

  .partners-showcase {
    padding: 4.8rem 0 5rem;
  }

  .partners-showcase__title {
    font-size: clamp(2.2rem, 3vw, 3.25rem);
  }

  .who-intro {
    padding: 4.25rem 0 4.9rem;
  }

  .who-intro__content {
    max-width: 100%;
  }

  .who-story,
  .leadership-team,
  .who-stats {
    padding-bottom: 4.9rem;
  }

  .operations-section {
    padding-bottom: 5.2rem;
  }

  .operations-grid,
  .plant-operate .operations-grid {
    gap: 1rem;
    grid-template-areas:
      "compliance human"
      "quality plant";
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .operations-card,
  .plant-operate .operations-card {
    padding: 2rem 1.85rem 1.95rem;
  }

  .operations-card__title,
  .operations-card__text {
    max-width: 100%;
  }

  .project-cta {
    padding-bottom: 3.6rem;
  }

  .project-cta__card {
    padding: 3.1rem 2.4rem;
  }

  .project-cta__title {
    font-size: clamp(2.25rem, 4.5vw, 3.25rem);
  }

  .project-cta__button {
    max-width: 28rem;
  }

  .site-footer {
    padding: 2.65rem 0 1.35rem;
  }

  .site-footer__brand {
    max-width: 100%;
  }

  .site-footer__summary {
    margin-top: 1.15rem;
    max-width: 26rem;
  }

  .site-footer__top {
    padding-bottom: 1.35rem;
  }

  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .quarry-intro {
    padding-top: 2.8rem;
  }

  .quarry-hero,
  .quarry-detail__layout,
  .quarry-rock__layout,
  .quarry-standards__layout {
    grid-template-columns: 1fr;
  }

  .quarry-hero__content {
    max-width: 58rem;
  }

  .quarry-summary-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .quarry-panels {
    gap: 1.5rem;
    grid-template-columns: 1fr;
    margin-top: 2.75rem;
  }

  .quarry-panel {
    min-height: 0;
    padding: 3rem 2.5rem 2.4rem;
  }

  .quarry-gallery__grid {
    gap: 1.35rem;
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .quarry-card--wide {
    grid-column: span 6;
  }

  .quarry-card--wide .quarry-card__image {
    aspect-ratio: 16 / 10;
  }

  .quarry-card {
    grid-column: span 3;
  }

  .service-detail-hero__layout {
    gap: 1.75rem;
    grid-template-columns: minmax(0, 1.55fr) minmax(17rem, 0.92fr);
  }

  .service-detail-hero__title {
    max-width: 58rem;
  }

  .roadworks-story__layout,
  .roadworks-focus__layout {
    grid-template-columns: 1fr;
  }

  .water-schemes-intro__layout,
  .water-schemes-approach__layout,
  .water-schemes-technology__layout,
  .water-schemes-assurance__layout {
    grid-template-columns: 1fr;
  }

  .qse-overview__layout,
  .qse-standards__layout,
  .qse-grievance__layout {
    grid-template-columns: 1fr;
  }

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

  .landworks-intro__layout,
  .landworks-approach__layout,
  .landworks-excellence__layout,
  .landworks-partnership__layout {
    grid-template-columns: 1fr;
  }

  .foam-materials-intro__layout,
  .foam-materials-approach__layout,
  .foam-materials-performance__layout,
  .foam-materials-partnership__layout {
    grid-template-columns: 1fr;
  }

  .recycling-roads-intro__layout,
  .recycling-roads-approach__layout,
  .recycling-roads-applications__layout,
  .recycling-roads-assurance__layout {
    grid-template-columns: 1fr;
  }

  .crcp-intro__layout,
  .crcp-approach__layout,
  .crcp-applications__layout,
  .crcp-assurance__layout {
    grid-template-columns: 1fr;
  }

  .plant-fleet-overview__layout,
  .plant-facilities__layout,
  .lcch-hero__shell,
  .lcch-story__layout,
  .lcch-delivery__layout {
    grid-template-columns: 1fr;
  }

  .roadworks-service-grid {
    grid-template-columns: 1fr;
  }

  .water-schemes-service-grid {
    grid-template-columns: 1fr;
  }

  .landworks-service-grid {
    grid-template-columns: 1fr;
  }

  .foam-materials-service-grid {
    grid-template-columns: 1fr;
  }

  .recycling-roads-benefit-grid {
    grid-template-columns: 1fr;
  }

  .crcp-advantage-grid {
    grid-template-columns: 1fr;
  }

  .lcch-hero__stats,
  .lcch-document-grid {
    grid-template-columns: 1fr;
  }

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

  .resource-article {
    padding-bottom: 5.15rem;
  }

  .case-overview__grid,
  .contact-page__grid {
    grid-template-columns: 1fr;
  }

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

  .case-report-page__grid {
    grid-template-columns: 1fr;
  }

  .report-form__choice-grid {
    grid-template-columns: 1fr;
  }

  .contact-form__actions {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 767.98px) {
  .hero-carousel,
  .hero-carousel .carousel-inner,
  .hero-carousel .carousel-item,
  .hero-slide {
    min-height: 38rem;
  }

  .hero-copy-wrap {
    padding-top: 6.5rem;
    padding-bottom: 2.35rem;
  }

  .hero-title {
    font-size: clamp(2rem, 10.2vw, 3rem);
    letter-spacing: -0.04em;
    max-width: 100%;
  }

  .hero-text {
    font-size: 0.96rem;
    max-width: 100%;
  }

  .hero-btn {
    font-size: 1rem;
    min-height: 3.35rem;
    padding-inline: 1.25rem;
  }

  .about-overview {
    padding: 3.5rem 0 3.85rem;
  }

  .about-overview__title {
    font-size: clamp(1.75rem, 7vw, 2.2rem);
    margin-bottom: 1.35rem;
  }

  .about-overview__text {
    font-size: 0.98rem;
    line-height: 1.6;
  }

  .about-overview__text--last {
    margin-bottom: 1.35rem;
  }

  .about-tabs-card {
    border-radius: 10px;
    padding: 1.4rem 1.15rem 1.55rem;
  }

  .about-tabs-nav {
    gap: 0.45rem;
  }

  .about-tabs-nav .nav-link {
    font-size: 0.98rem;
    padding: 0.8rem 0.95rem;
  }

  .about-tabs-content {
    margin-top: 1.35rem;
  }

  .about-tabs-pane-title {
    font-size: clamp(1.35rem, 6vw, 1.75rem);
  }

  .about-tabs-pane-text {
    font-size: 0.97rem;
  }

  .about-overview__image {
    min-height: 25rem;
  }

  .stats-section {
    padding-top: 2.8rem;
    padding-bottom: 3.6rem;
  }

  .stat-card__copy {
    max-width: 100%;
  }

  .services-showcase {
    padding: 0.35rem 0 4rem;
  }

  .services-showcase__intro {
    margin-bottom: 2rem;
  }

  .services-showcase__title {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .services-showcase__subtitle {
    font-size: 0.98rem;
  }

  .video-feature {
    padding-bottom: 4rem;
  }

  .video-feature__shell {
    min-height: 19rem;
  }

  .projects-showcase {
    padding: 4rem 0;
  }

  .projects-showcase__header {
    align-items: stretch;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
  }

  .projects-showcase__cta {
    margin-top: 0;
    width: fit-content;
  }

  .projects-filter {
    max-width: 100%;
  }

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

  .projects-grid,
  .projects-grid--filtered {
    gap: 1rem;
    grid-template-areas: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .partners-showcase {
    padding: 4rem 0 4.2rem;
  }

  .partners-showcase__intro {
    margin-bottom: 3rem;
  }

  .partners-showcase__title {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .partners-list {
    gap: 1.15rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .partner-logo {
    min-height: 6.5rem;
  }

  .partner-logo__card {
    min-height: 12.5rem;
  }

  .partner-logo__image {
    max-height: 7rem;
    max-width: 92%;
  }

  .partner-logo--oyo-state-government .partner-logo__image {
    max-height: 8.1rem;
    max-width: 98%;
  }

  .partner-logo--bexa .partner-logo__image {
    max-height: 7rem;
    max-width: 80%;
  }

  .partner-logo--edo-state-government .partner-logo__image {
    max-height: 7.2rem;
    max-width: 88%;
  }

  .partner-logo--mixta-nigeria .partner-logo__image {
    max-height: 7.3rem;
    max-width: 88%;
  }

  .partner-logo--sterling-realties .partner-logo__image {
    max-width: 116%;
    width: 116%;
  }

  .partner-logo--oyo-state-government .partner-logo__image {
    max-height: 9.55rem;
    max-width: 110%;
  }

  .who-intro {
    padding: 3.5rem 0 4rem;
  }

  .who-intro__title,
  .leadership-team__title,
  .operations-section__title {
    font-size: clamp(2rem, 8.5vw, 2.85rem);
  }

  .who-story {
    padding-bottom: 4rem;
  }

  .service-detail-hero {
    padding-top: 2.3rem;
  }

  .service-detail-hero__title {
    font-size: clamp(1.7rem, 7vw, 2.5rem);
    margin-bottom: 1.55rem;
  }

  .service-detail-hero__layout {
    grid-template-columns: 1fr;
  }

  .service-detail-article {
    padding-top: 3.2rem;
  }

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

  .roadworks-updates {
    padding-bottom: 4.2rem;
  }

  .roadworks-updates__panel-body {
    padding: 1.7rem 1.55rem 1.8rem;
  }

  .water-schemes-updates {
    padding-bottom: 4.2rem;
  }

  .water-schemes-updates__body {
    padding: 1.75rem 1.55rem 1.85rem;
  }

  .landworks-updates {
    padding-bottom: 4.2rem;
  }

  .landworks-updates__body {
    padding: 1.75rem 1.55rem 1.85rem;
  }

  .foam-materials-updates {
    padding-bottom: 4.2rem;
  }

  .foam-materials-updates__body {
    padding: 1.75rem 1.55rem 1.85rem;
  }

  .recycling-roads-updates {
    padding-bottom: 4.2rem;
  }

  .recycling-roads-updates__body {
    padding: 1.75rem 1.55rem 1.85rem;
  }

  .crcp-updates {
    padding-bottom: 4.2rem;
  }

  .crcp-updates__body {
    padding: 1.75rem 1.55rem 1.85rem;
  }

  .lcch-hero {
    padding-bottom: 4.2rem;
  }

  .resource-hero {
    padding-top: 2.3rem;
  }

  .resource-hero__card {
    margin-top: -3rem;
    max-width: calc(100% - 3rem);
    padding: 2rem 1.6rem 1.8rem;
  }

  .resource-article {
    padding: 3.4rem 0 4.2rem;
  }

  .resource-article--intro-only {
    padding-bottom: 7rem;
  }

  .case-overview {
    padding: 3.4rem 0 1.1rem;
  }

  .case-overview__cards {
    grid-template-columns: 1fr;
  }

  .case-report-page {
    padding: 1.1rem 0 4.2rem;
  }

  .contact-page {
    padding: 3.4rem 0 4.2rem;
  }

  .contact-card {
    padding: 1.75rem 1.45rem;
  }

  .report-form__actions {
    width: 100%;
  }

  .report-form__actions .btn {
    width: 100%;
  }

  .contact-form__grid {
    grid-template-columns: 1fr;
  }

  .resource-article__list,
  .resource-article__ordered {
    margin-bottom: 1.35rem;
  }

  .who-story__content {
    max-width: 100%;
  }

  .leadership-team,
  .who-stats {
    padding-bottom: 4rem;
  }

  .operations-section {
    padding-bottom: 4.2rem;
  }

  .operations-grid,
  .plant-operate .operations-grid {
    grid-template-areas:
      "compliance"
      "human"
      "quality"
      "plant";
    grid-template-columns: 1fr;
  }

  .operations-section--about .operations-grid {
    grid-template-areas:
      "compliance"
      "human"
      "quality"
      "plant";
    grid-template-columns: 1fr;
  }

  .operations-card,
  .plant-operate .operations-card {
    min-height: 0;
    padding: 1.7rem 1.45rem 1.75rem;
  }

  .operations-section--about .operations-card {
    min-height: 0;
    padding: 1.7rem 1.45rem 1.75rem;
  }

  .operations-card__head {
    gap: 0.85rem;
  }

  .operations-card__title {
    font-size: clamp(1.35rem, 6vw, 1.6rem);
    max-width: 100%;
  }

  .operations-card__text {
    max-width: 100%;
  }

  .quarry-panels {
    gap: 1.25rem;
    grid-template-columns: 1fr;
    margin-top: 2rem;
  }

  .quarry-panel {
    min-height: 0;
    padding: 2rem 1.5rem 1.8rem;
  }

  .quarry-panel--light::after {
    height: 12rem;
    right: -3rem;
    top: -2.5rem;
    width: 12rem;
  }

  .quarry-panel__title {
    font-size: clamp(1.7rem, 8vw, 2.3rem);
    margin-bottom: 1.2rem;
    max-width: 100%;
  }

  .quarry-panel__text,
  .quarry-panel__list {
    font-size: 0.98rem;
    max-width: 100%;
  }

  .project-cta {
    padding-bottom: 3rem;
  }

  .project-cta__card {
    padding: 2.6rem 1.75rem;
  }

  .project-cta__title {
    font-size: clamp(2rem, 7vw, 2.8rem);
  }

  .project-cta__text {
    font-size: 1rem;
  }

  .project-cta__button {
    min-height: 3.55rem;
  }

  .site-footer {
    padding: 2.35rem 0 1.25rem;
  }

  .site-footer__logo {
    height: 50px;
  }

  .site-footer__summary {
    font-size: 1.06rem;
    max-width: 100%;
  }

  .site-footer__heading {
    margin-bottom: 1.2rem;
  }

  .site-footer__links {
    gap: 0.85rem;
  }

  .site-footer__links a {
    font-size: 1rem;
  }

  .site-footer__social {
    margin-top: 1rem;
  }

  .back-to-top {
    bottom: 1.25rem;
    height: 3rem;
    right: 1.25rem;
    width: 3rem;
  }
}

@media (max-width: 575.98px) {
  :root {
    --header-block-size: 68px;
  }

  .container {
    width: min(100% - 24px, 100%);
  }

  .navbar-brand {
    padding: 14px 0;
  }

  .header-actions {
    gap: 0.1rem;
  }

  .navbar-brand .navbar-brand-item {
    height: 32px !important;
  }

  .theme-toggle-btn {
    padding-inline: 0.4rem !important;
  }

  .theme-toggle-label {
    display: none;
  }

  .hero-carousel,
  .hero-carousel .carousel-inner,
  .hero-carousel .carousel-item,
  .hero-slide {
    min-height: 34rem;
  }

  .hero-copy-wrap {
    padding-top: 6.1rem;
    padding-bottom: 2rem;
  }

  .hero-title {
    font-size: clamp(1.8rem, 9.4vw, 2.55rem);
  }

  .hero-text {
    font-size: 0.93rem;
    line-height: 1.55;
  }

  .about-overview {
    padding: 3rem 0 3.35rem;
  }

  .about-overview__title {
    font-size: clamp(1.58rem, 8.6vw, 2rem);
  }

  .about-overview__text {
    font-size: 0.95rem;
  }

  .about-tabs-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-tabs-nav .nav-link {
    justify-content: center;
    text-align: center;
    width: 100%;
  }

  .about-overview__image {
    min-height: 22rem;
  }

  .stat-card__label {
    font-size: 0.94rem;
  }

  .stat-card__value {
    font-size: clamp(2.5rem, 14vw, 3.25rem);
    margin-bottom: 1rem;
  }

  .stat-card__copy {
    font-size: 0.95rem;
  }

  .services-showcase__title {
    font-size: clamp(1.9rem, 11vw, 2.6rem);
  }

  .services-showcase__subtitle {
    font-size: 0.95rem;
  }

  .service-card__content {
    padding: 1.25rem 1.25rem 1.4rem;
  }

  .video-feature__shell {
    min-height: 16rem;
  }

  .projects-showcase {
    padding: 3.4rem 0 3.6rem;
  }

  .projects-showcase__title {
    font-size: clamp(1.95rem, 10vw, 2.7rem);
  }

  .projects-showcase__subtitle {
    font-size: 0.95rem;
  }

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

  .projects-filter__button {
    font-size: 0.96rem;
    padding: 0.82rem 0.9rem;
  }

  .projects-grid,
  .projects-grid--filtered {
    grid-template-columns: 1fr;
  }

  .partners-showcase {
    padding: 3.4rem 0 3.6rem;
  }

  .partners-showcase__title {
    font-size: clamp(1.95rem, 10vw, 2.7rem);
  }

  .partners-showcase__intro {
    margin-bottom: 2.4rem;
  }

  .partners-list {
    gap: 1rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .partner-logo {
    min-height: 5.75rem;
  }

  .partner-logo__card {
    min-height: 11.4rem;
  }

  .partner-logo__image {
    max-height: 6.4rem;
    max-width: 90%;
  }

  .partner-logo--oyo-state-government .partner-logo__image {
    max-height: 7.3rem;
    max-width: 96%;
  }

  .partner-logo--bexa .partner-logo__image {
    max-height: 6.35rem;
    max-width: 78%;
  }

  .partner-logo--edo-state-government .partner-logo__image {
    max-height: 6.5rem;
    max-width: 86%;
  }

  .partner-logo--mixta-nigeria .partner-logo__image {
    max-height: 6.5rem;
    max-width: 86%;
  }

  .partner-logo--sterling-realties .partner-logo__image {
    max-width: 118%;
    width: 118%;
  }

  .partner-logo--oyo-state-government .partner-logo__image {
    max-height: 8.6rem;
    max-width: 108%;
  }

  .who-intro__text,
  .who-story__text,
  .leadership-team__subtitle,
  .resource-article__text {
    font-size: 0.96rem;
  }

  .resource-hero__image {
    aspect-ratio: 16 / 10.5;
    object-position: center top;
  }

  .service-detail-hero__title {
    font-size: clamp(1.5rem, 8vw, 2.2rem);
  }

  .service-detail-hero__image {
    aspect-ratio: 16 / 6.5;
  }

  .service-detail-article__label {
    font-size: 0.96rem;
  }

  .roadworks-story__gallery {
    grid-template-columns: 1fr;
  }

  .roadworks-story__image-card--offset {
    margin-top: 0;
  }

  .roadworks-service-card {
    padding: 1.4rem 1.15rem 1.35rem;
  }

  .roadworks-updates__list {
    font-size: 0.96rem;
    margin-top: 1.1rem;
  }

  .water-schemes-service-card {
    padding: 1.45rem 1.15rem 1.35rem;
  }

  .water-schemes-approach__highlights {
    font-size: 0.96rem;
    margin-top: 1.1rem;
  }

  .water-schemes-updates__text,
  .water-schemes-stat__label,
  .water-schemes-service-card__text,
  .water-schemes-assurance__text,
  .water-schemes-technology__item p {
    font-size: 0.96rem;
  }

  .qse-overview,
  .qse-standards,
  .qse-objectives,
  .qse-commitments,
  .qse-grievance {
    padding-top: 3.6rem;
  }

  .qse-grievance {
    padding-bottom: 3.8rem;
  }

  .qse-pillar-grid,
  .qse-objective-grid,
  .qse-commitment-grid,
  .qse-audience-grid {
    grid-template-columns: 1fr;
  }

  .qse-pillar-card,
  .qse-objective-grid li {
    min-height: auto;
  }

  .qse-commitment-card,
  .qse-grievance__panel {
    padding: 1.45rem 1.15rem;
  }

  .qse-text,
  .qse-hero__text,
  .qse-pillar-card__text,
  .qse-objective-grid li,
  .qse-check-list li {
    font-size: 0.96rem;
  }

  .landworks-service-card {
    padding: 1.45rem 1.15rem 1.35rem;
  }

  .landworks-approach__list,
  .landworks-updates__text,
  .landworks-service-card__text,
  .landworks-excellence__text,
  .landworks-intro__panel-text {
    font-size: 0.96rem;
  }

  .landworks-partnership__gallery {
    grid-template-columns: 1fr;
  }

  .landworks-partnership__image-card--offset {
    margin-top: 0;
  }

  .foam-materials-service-card {
    padding: 1.45rem 1.15rem 1.35rem;
  }

  .foam-materials-approach__list,
  .foam-materials-updates__text,
  .foam-materials-updates__list,
  .foam-materials-service-card__text,
  .foam-materials-performance__text,
  .foam-materials-intro__panel-text {
    font-size: 0.96rem;
  }

  .foam-materials-partnership__gallery {
    grid-template-columns: 1fr;
  }

  .foam-materials-partnership__image-card--offset {
    margin-top: 0;
  }

  .recycling-roads-benefit-card,
  .recycling-roads-application-card {
    padding: 1.45rem 1.15rem 1.35rem;
  }

  .recycling-roads-approach__list,
  .recycling-roads-benefit-card__text,
  .recycling-roads-applications__text,
  .recycling-roads-application-card__text,
  .recycling-roads-assurance__text,
  .recycling-roads-updates__text,
  .recycling-roads-intro__panel-text {
    font-size: 0.96rem;
  }

  .crcp-advantage-card,
  .crcp-application-card {
    padding: 1.45rem 1.15rem 1.35rem;
  }

  .lcch-delivery__image-card--offset {
    margin-left: 0;
  }

  .crcp-approach__list,
  .crcp-advantage-card__text,
  .crcp-applications__text,
  .crcp-application-card__text,
  .crcp-assurance__text,
  .crcp-updates__text,
  .crcp-intro__panel-text {
    font-size: 0.96rem;
  }

  .plant-operate__text,
  .lcch-hero__text,
  .lcch-story__text,
  .lcch-documents__text,
  .lcch-delivery__text,
  .lcch-delivery__list,
  .lcch-stat__label,
  .lcch-document-card__text {
    font-size: 0.96rem;
  }

  .lcch-gallery__grid {
    grid-template-columns: 1fr;
  }

  .lcch-gallery__card--wide,
  .lcch-gallery__card--tall {
    grid-column: auto;
    grid-row: auto;
  }

  .lcch-gallery__card--tall .lcch-gallery__image,
  .lcch-gallery__card--wide .lcch-gallery__image,
  .lcch-gallery__card:not(.lcch-gallery__card--wide):not(.lcch-gallery__card--tall) .lcch-gallery__image {
    aspect-ratio: 16 / 11.5;
  }

  .resource-hero__image--plant {
    object-position: center 32%;
  }

  .resource-hero__image--quality {
    object-position: center 22%;
  }

  .resource-hero__card {
    margin-top: -2.2rem;
    max-width: calc(100% - 1.5rem);
    padding: 1.6rem 1.25rem 1.45rem;
  }

  .resource-hero__title {
    font-size: clamp(1.8rem, 8vw, 2.25rem);
    margin-bottom: 0.9rem;
  }

  .resource-hero__meta {
    font-size: 0.93rem;
    gap: 0.65rem;
  }

  .resource-article {
    padding: 2.9rem 0 3.8rem;
  }

  .resource-article--intro-only {
    padding-bottom: 4.5rem;
  }

  .contact-card {
    padding: 1.45rem 1.15rem;
  }

  .report-aside__step {
    padding: 0.95rem 0.95rem 0.95rem 3.2rem;
  }

  .contact-card__title {
    font-size: clamp(1.75rem, 8vw, 2.25rem);
  }

  .contact-form__submit {
    width: 100%;
  }

  .resource-article__title {
    font-size: clamp(1.6rem, 7vw, 2rem);
  }

  .resource-article__list,
  .resource-article__ordered {
    font-size: 0.96rem;
    margin-left: 0.2rem;
    padding-left: 1.25rem;
  }

  .who-intro__list {
    gap: 0.9rem;
    grid-template-columns: 1fr;
    margin-top: 1.45rem;
  }

  .who-intro__list li {
    font-size: 0.96rem;
  }

  .who-intro__list-icon svg {
    height: 0.95rem;
    width: 0.95rem;
  }

  .who-story__mini-stat {
    min-height: auto;
  }

  .leader-card__image {
    aspect-ratio: 4 / 4.4;
  }

  .operations-section__intro {
    margin-bottom: 1.6rem;
  }

  .operations-card {
    border-radius: 14px;
    padding: 1.35rem 1.15rem 1.45rem;
  }

  .operations-card__title {
    font-size: 1.08rem;
  }

  .operations-card__text {
    font-size: 0.94rem;
  }

  .quarry-intro {
    padding: 2.4rem 0 3rem;
  }

  .quarry-intro__title {
    font-size: clamp(2.75rem, 13vw, 3.75rem);
  }

  .quarry-intro__text,
  .quarry-detail__text {
    font-size: 0.96rem;
  }

  .quarry-summary-grid,
  .quarry-gallery__grid {
    grid-template-columns: 1fr;
  }

  .quarry-card--wide {
    grid-column: auto;
  }

  .quarry-card {
    grid-column: auto;
  }

  .quarry-card__image,
  .quarry-card--wide .quarry-card__image,
  .quarry-card--tall .quarry-card__image {
    aspect-ratio: 16 / 11;
  }

  .quarry-browse {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.9rem;
    margin-bottom: 1.6rem;
  }

  .quarry-detail,
  .quarry-rock,
  .quarry-standards,
  .quarry-gallery {
    padding-top: 3.6rem;
  }

  .quarry-panel {
    padding: 1.7rem 1.15rem 1.55rem;
  }

  .quarry-panel__title {
    font-size: clamp(1.55rem, 8vw, 2rem);
  }

  .quarry-panel__text,
  .quarry-panel__list {
    font-size: 0.96rem;
  }

  .project-cta {
    padding-bottom: 2.6rem;
  }

  .newsletter-card__form {
    grid-template-columns: 1fr;
  }

  .newsletter-card__form .newsletter-card__submit {
    width: 100%;
  }

  .project-cta__card {
    border-radius: 12px;
    padding: 2.15rem 1.15rem;
  }

  .project-cta__card::before {
    height: 9rem;
    left: -4.5rem;
    top: -4.5rem;
    width: 9rem;
  }

  .project-cta__card::after {
    height: 11rem;
    right: -5.5rem;
    top: -5rem;
    width: 11rem;
  }

  .project-cta__title {
    font-size: clamp(1.95rem, 10vw, 2.45rem);
    margin-bottom: 0.85rem;
  }

  .project-cta__text {
    font-size: 0.95rem;
  }

  .project-cta__button {
    font-size: 1rem;
    min-height: 3.3rem;
  }

  .site-footer {
    padding: 2.15rem 0 1.2rem;
  }

  .site-footer__top {
    padding-bottom: 1.2rem;
  }

  .site-footer__logo {
    height: 44px;
  }

  .site-footer__summary {
    font-size: 1.02rem;
    margin-top: 1rem;
  }

  .site-footer__heading {
    font-size: 1.12rem;
    margin-bottom: 0.9rem;
  }

  .site-footer__links a,
  .site-footer__copyright {
    font-size: 1rem;
  }

  .site-footer__social-link {
    height: 2.75rem;
    width: 2.75rem;
  }

  .footer-language__button {
    font-size: 0.95rem;
  }
}

.required-marker {
  color: var(--site-primary);
  font-size: 0.72rem;
  font-weight: 600;
}

/* Let service content lead; keep the magazine request as a quiet secondary action. */
.service-detail-hero {
  padding-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.service-detail-hero__frame {
  max-width: 92rem;
}

.service-detail-hero__layout {
  align-items: stretch;
  grid-template-columns: minmax(0, 1fr);
}

.service-detail-hero__media {
  min-height: clamp(14rem, 24vw, 18rem);
}

.service-detail-hero__image,
.service-photo-placeholder--hero {
  min-height: clamp(14rem, 24vw, 18rem);
}

.service-detail-article .resource-article__content {
  max-width: 92rem;
}

.resource-article__section {
  border-bottom: 1px solid rgba(17, 24, 39, 0.1);
  padding-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.resource-article__section:last-child {
  border-bottom: 0;
}

.resource-article__list {
  display: grid;
  gap: 0.75rem;
}

.resource-article__list li {
  line-height: 1.65;
}

.roadworks-service-card,
.water-schemes-service-card,
.landworks-service-card,
.foam-materials-service-card {
  background: transparent;
  border: 0;
  border-left: 2px solid rgba(191, 34, 2, 0.35);
  border-radius: 0;
  box-shadow: none;
  padding: 0.4rem 1.5rem;
}

.roadworks-service-grid,
.water-schemes-service-grid,
.landworks-service-grid,
.foam-materials-service-grid {
  gap: clamp(1.5rem, 3vw, 3rem);
}

.project-cta__card {
  border-radius: 22px;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.09);
}

/* Selected project references. Pending records stay hidden until verified. */
.service-projects {
  background: #f7f8fa;
  padding: clamp(2.1rem, 3.5vw, 3.2rem) 0 clamp(3rem, 5vw, 4.5rem);
}

[data-page="land-reclamation"] .service-projects {
  padding-top: clamp(0.9rem, 2vw, 1.65rem);
}

.service-projects .container {
  align-items: start;
  display: grid;
  gap: clamp(1rem, 2vw, 1.4rem);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 19rem), 1fr));
}

.service-projects__heading {
  align-items: start;
  align-self: start;
  display: block;
  gap: 0.85rem clamp(1.5rem, 4vw, 4rem);
  grid-column: auto;
  grid-template-columns: none;
  margin-bottom: clamp(0.9rem, 2vw, 1.4rem);
}

.service-projects__eyebrow,
.service-projects__record-label {
  color: var(--site-primary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  margin: 0 0 0.7rem;
  text-transform: uppercase;
}

.service-projects__title {
  color: #111827;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 3.2rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.02;
  margin: 0;
}

.service-projects__intro,
.service-projects__record-text {
  color: #4b5563;
  font-size: 0.98rem;
  line-height: 1.6;
  margin: 0;
}

.service-projects__intro {
  margin-top: 1rem;
  max-width: 34rem;
}

.service-projects__record {
  background: #ffffff;
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: 8px;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  padding: 0;
}

.service-projects__records {
  display: grid;
  gap: clamp(1rem, 2vw, 1.4rem);
  grid-column: 1 / -1;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-projects__record + .service-projects__record {
  border-top: 1px solid rgba(17, 24, 39, 0.12);
}

.service-projects__records .service-projects__record + .service-projects__record {
  border-top: 0;
}

.service-projects__media {
  margin: 0;
  min-height: 0;
  overflow: hidden;
}

.service-projects__image {
  aspect-ratio: 16 / 8.4;
  display: block;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  width: 100%;
}

.service-projects__record:hover .service-projects__image {
  transform: scale(1.025);
}

.service-projects__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: clamp(1rem, 2vw, 1.25rem);
}

.service-projects__record-title {
  color: #111827;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 1.7vw, 1.65rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.15;
  margin: 0 0 0.75rem;
}

.service-projects__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1rem 0 0;
}

.service-projects__fact {
  background: #f2f4f7;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 6px;
  display: grid;
  flex: 1 1 11rem;
  gap: 0.2rem;
  grid-template-columns: 1fr;
  padding: 0.6rem 0.7rem;
}

.service-projects__fact dt {
  color: #6b7280;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-projects__fact dd {
  color: #111827;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.35;
  margin: 0;
}

[data-bs-theme="dark"] .service-projects__title,
[data-bs-theme="dark"] .service-projects__record-title,
[data-bs-theme="dark"] .service-projects__fact dd {
  color: #f3f4f6;
}

[data-bs-theme="dark"] .service-projects__intro,
[data-bs-theme="dark"] .service-projects__record-text {
  color: #cbd2dc;
}

[data-bs-theme="dark"] .service-projects__record,
[data-bs-theme="dark"] .service-projects__fact {
  border-color: rgba(255, 255, 255, 0.13);
}

[data-bs-theme="dark"] .service-projects__record {
  background: rgba(255, 255, 255, 0.035);
  box-shadow: none;
}

/* Forms should read as a clear task, not another decorative card wall. */
.contact-page__grid,
.case-report-page__grid {
  align-items: start;
}

.contact-card,
.report-form-card {
  border-radius: 20px;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
}

.contact-field__input {
  min-height: 3.35rem;
}

.contact-field__textarea {
  min-height: 10rem;
}

.contact-form__submit {
  min-height: 3.35rem;
  padding-inline: 1.5rem;
}

.report-form__actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.quarry-browse {
  align-items: end;
  display: grid;
  gap: 1.25rem;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.65fr);
}

.quarry-browse__eyebrow {
  color: var(--site-primary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin: 0 0 0.65rem;
  text-transform: uppercase;
}

.quarry-browse__summary {
  color: #5d6775;
  line-height: 1.65;
  margin: 0;
}

/* Coordinate the operating-model sections while preserving each page's card colors. */
.operations-section--about,
body[data-page="human-resources"] .plant-operate {
  padding: clamp(4.5rem, 7vw, 7rem) 0;
  background: transparent;
  border: 0;
}

.operations-section--about {
  margin-top: 0;
}

body[data-page="human-resources"] .plant-operate .operations-section__intro {
  margin-bottom: clamp(1.8rem, 3vw, 2.6rem);
}

body[data-page="human-resources"] .plant-operate .operations-section__title {
  max-width: 14ch;
}

.operations-section--about .operations-section__intro {
  margin-bottom: clamp(1.8rem, 3vw, 2.6rem);
}

.operations-section--about .operations-section__title {
  max-width: 12ch;
}

.operations-section--about .operations-section__summary {
  max-width: 38rem;
}

.operations-section--about .operations-grid {
  display: grid;
  gap: clamp(0.85rem, 1.5vw, 1.2rem);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.operations-section--about .operations-card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.05);
  color: #111827;
  gap: clamp(1rem, 1.8vw, 1.4rem);
  min-height: 0;
  overflow: hidden;
  padding: clamp(1.5rem, 2.4vw, 2rem);
  transition: background-color 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.operations-section--about .operations-card__head {
  min-height: 0;
}

.operations-section--about .operations-card__action {
  flex: 0 0 auto;
}

.operations-section--about .operations-card__text {
  line-height: 1.6;
}

.operations-section--about .operations-card:hover,
.operations-section--about .operations-card:focus-within {
  background: #ffffff;
  border-color: rgba(191, 34, 2, 0.28);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.1);
  transform: translateY(-5px);
}

.operations-section--about .operations-card::before {
  background: var(--site-primary);
  content: "";
  height: 3px;
  left: 1.5rem;
  position: absolute;
  right: calc(100% - 1.5rem);
  top: 0;
  transition: right 0.3s ease;
}

.operations-section--about .operations-card:hover::before,
.operations-section--about .operations-card:focus-within::before {
  right: 1.5rem;
}

.operations-section--about .operations-card .operations-card__title,
.operations-section--about .operations-card .operations-card__title--grey,
.operations-section--about .operations-card .operations-card__title--grey-soft,
.operations-section--about .operations-card__title a,
.operations-section--about .operations-card__text {
  color: #111827;
}

.operations-section--about .operations-card__title a {
  transition: color 0.2s ease;
}

.operations-section--about .operations-card__title a:hover,
.operations-section--about .operations-card__title a:focus {
  color: var(--site-primary);
}

.operations-section--about .operations-card__action {
  background: var(--site-primary);
  border: 0;
  color: #ffffff;
}

[data-bs-theme="dark"] .resource-article__section {
  border-color: rgba(255, 255, 255, 0.1);
}

[data-bs-theme="dark"] .quarry-browse__summary {
  color: #cbd2dc;
}

[data-bs-theme="dark"] .operations-section--about .operations-grid,
[data-bs-theme="dark"] .operations-section--about .operations-card {
  border-color: rgba(255, 255, 255, 0.12);
}

[data-bs-theme="dark"] .operations-section--about,
[data-bs-theme="dark"] body[data-page="human-resources"] .plant-operate {
  background: transparent;
  border-color: transparent;
}

[data-bs-theme="dark"] .operations-section--about .operations-card {
  background: rgba(255, 255, 255, 0.025);
  color: #f3f4f6;
}

[data-bs-theme="dark"] .operations-section--about .operations-card:hover,
[data-bs-theme="dark"] .operations-section--about .operations-card:focus-within {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 121, 93, 0.4);
}

[data-bs-theme="dark"] .operations-section--about .operations-card .operations-card__title,
[data-bs-theme="dark"] .operations-section--about .operations-card .operations-card__title--grey,
[data-bs-theme="dark"] .operations-section--about .operations-card .operations-card__title--grey-soft,
[data-bs-theme="dark"] .operations-section--about .operations-card__title a,
[data-bs-theme="dark"] .operations-section--about .operations-card__text {
  color: #f3f4f6;
}

[data-bs-theme="dark"] .operations-section--about .operations-card__title a:hover,
[data-bs-theme="dark"] .operations-section--about .operations-card__title a:focus {
  color: #ff795d;
}

@media (max-width: 991.98px) {
  .quarry-browse {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .service-projects__heading {
    grid-template-columns: 1fr;
  }

  .service-projects__intro {
    max-width: 44rem;
  }
}

@media (max-width: 767.98px) {
  .operations-section--about .operations-grid {
    grid-template-columns: 1fr;
  }

  .operations-section--about .operations-card:hover,
  .operations-section--about .operations-card:focus-within {
    transform: translateY(-3px);
  }

  .operations-section--about .operations-card__head {
    min-height: 0;
  }

  .service-projects__fact {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .service-projects__records {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .operations-section--about .operations-card,
  .operations-section--about .operations-card::before,
  .service-projects__image {
    transition: none;
  }
}

/* Final spacing pass for home and about page section rhythm. */
.partners-showcase + .project-cta {
  padding-top: clamp(2.75rem, 5vw, 4.5rem);
}

.project-cta__card {
  padding: clamp(2.75rem, 5vw, 4.75rem) clamp(1.5rem, 4vw, 3.75rem);
}

.project-cta__card .row {
  align-items: center;
  row-gap: clamp(1.5rem, 3vw, 2.25rem);
}

.project-cta__title {
  font-size: clamp(2.15rem, 4vw, 3.65rem);
  letter-spacing: 0;
  max-width: 16ch;
  overflow-wrap: normal;
  text-wrap: balance;
  word-break: normal;
}

html[lang="fr"] .project-cta__content {
  max-width: 56rem;
}

html[lang="fr"] .project-cta__title {
  font-size: clamp(1.85rem, 3.25vw, 3.05rem);
  letter-spacing: -0.02em;
  line-height: 1.08;
  max-width: 17ch;
  overflow-wrap: normal;
  text-wrap: balance;
  word-break: normal;
}

.project-cta__text {
  max-width: 34rem;
}

.project-cta__since {
  align-items: center;
  margin: 0 0 1.5rem auto;
  max-width: 21rem;
}

.project-cta__button {
  margin: 0;
  max-width: 100%;
  white-space: normal;
  width: 14.75rem;
}

@media (max-width: 991.98px) {
  .project-cta__since,
  .project-cta__button {
    margin-left: 0;
    margin-right: 0;
  }

  .project-cta__since {
    align-items: flex-start;
  }
}

@media (max-width: 575.98px) {
  .project-cta__since {
    margin-bottom: 1.25rem;
  }

  .project-cta__since-year {
    font-size: clamp(4.5rem, 24vw, 6rem);
  }

  .project-cta__since-label {
    font-size: 0.64rem;
    letter-spacing: 0.14em;
  }

  .project-cta__button {
    max-width: 100%;
  }
}

.who-stats + .operations-section--about {
  padding-top: clamp(2rem, 3.5vw, 3rem);
}

.human-resources-article + .plant-operate {
  padding-top: clamp(0.45rem, 1.2vw, 1rem);
}

body[data-page="human-resources"] .human-resources-article {
  padding-bottom: clamp(0.75rem, 1.5vw, 1.25rem);
}

body[data-page="human-resources"] .human-resources-article .resource-article__section:last-child {
  padding-bottom: clamp(0.5rem, 1.2vw, 1rem);
}

.operations-section--about {
  padding-bottom: clamp(4.25rem, 6vw, 6rem);
}

.operations-section--about .operations-section__intro {
  margin-bottom: clamp(1.5rem, 2.6vw, 2.25rem);
}

.operations-section--about .operations-card {
  border-radius: 12px;
}

.operations-section--about .operations-card::before {
  display: none;
}

.operations-section--about .operations-card--primary {
  background: var(--site-primary);
  border-color: transparent;
  color: #ffffff;
}

.operations-section--about .operations-card--dark {
  background: #171b23;
  border-color: transparent;
  color: #ffffff;
}

.operations-section--about .operations-card--light {
  background: #efefee;
  border-color: #d4d8df;
  color: #111827;
}

.operations-section--about .operations-card--primary:hover,
.operations-section--about .operations-card--primary:focus-within {
  background: #c91f06;
  border-color: transparent;
}

.operations-section--about .operations-card--dark:hover,
.operations-section--about .operations-card--dark:focus-within {
  background: #1f242d;
  border-color: transparent;
}

.operations-section--about .operations-card--light:hover,
.operations-section--about .operations-card--light:focus-within {
  background: #ffffff;
  border-color: rgba(17, 24, 39, 0.18);
}

.operations-section--about .operations-card--primary .operations-card__title,
.operations-section--about .operations-card--primary .operations-card__title a {
  color: #111827;
}

.operations-section--about .operations-card--dark .operations-card__title,
.operations-section--about .operations-card--dark .operations-card__title--grey,
.operations-section--about .operations-card--dark .operations-card__title--grey-soft,
.operations-section--about .operations-card--dark .operations-card__title a {
  color: #ffffff;
}

.operations-section--about .operations-card--light .operations-card__title,
.operations-section--about .operations-card--light .operations-card__title--grey,
.operations-section--about .operations-card--light .operations-card__title--grey-soft,
.operations-section--about .operations-card--light .operations-card__title a {
  color: var(--site-primary);
}

.operations-section--about .operations-card--primary .operations-card__text {
  color: #ffffff;
}

.operations-section--about .operations-card--dark .operations-card__text {
  color: #c4c5c7;
}

.operations-section--about .operations-card--light .operations-card__text {
  color: #111827;
}

.operations-section--about .operations-card--primary .operations-card__action,
.operations-section--about .operations-card--light .operations-card__action {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(17, 24, 39, 0.08);
  color: #111827;
}

.operations-section--about .operations-card--dark .operations-card__action {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}


@keyframes dropdownLift {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ─── Image Lightbox ───────────────────────────────────────────────────────── */

.site-lightbox {
  align-items: center;
  display: flex;
  inset: 0;
  justify-content: center;
  position: fixed;
  z-index: 9000;
}

.site-lightbox[hidden] {
  display: none !important;
}

.site-lightbox__backdrop {
  background: rgba(8, 10, 15, 0.88);
  cursor: zoom-out;
  inset: 0;
  position: absolute;
}

.site-lightbox__frame {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-height: 92dvh;
  max-width: 92dvw;
  position: relative;
  z-index: 1;
  animation: lightboxIn 0.22s ease;
}

@keyframes lightboxIn {
  from {
    opacity: 0;
    transform: scale(0.96);
  }

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

.site-lightbox__image {
  border-radius: 12px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.6);
  display: block;
  max-height: 82dvh;
  max-width: 88dvw;
  object-fit: contain;
  width: auto;
}

.site-lightbox__title {
  align-self: flex-start;
  max-width: calc(100% - 3rem);
  margin: 0 0 0.75rem;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 700;
}

.site-lightbox__footer {
  display: grid;
  width: min(52rem, 88dvw);
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  margin-top: 0.9rem;
}

.site-lightbox__details {
  min-width: 0;
  text-align: center;
}

.site-lightbox__caption {
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--font-display);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
  max-width: 52rem;
  text-align: center;
}

.site-lightbox__counter {
  margin: 0.3rem 0 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.site-lightbox__nav {
  display: inline-flex;
  width: 2.8rem;
  height: 2.8rem;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
  font-size: 1.1rem;
  transition: background-color 0.18s ease, transform 0.18s ease;
}

.site-lightbox__nav[hidden],
.site-lightbox__title[hidden],
.site-lightbox__counter[hidden] {
  display: none !important;
}

.site-lightbox__nav:hover,
.site-lightbox__nav:focus-visible {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.06);
}

.site-lightbox__close {
  align-items: center;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  height: 2.6rem;
  justify-content: center;
  position: absolute;
  right: -0.6rem;
  top: -0.6rem;
  transition: background-color 0.18s ease, transform 0.18s ease;
  width: 2.6rem;
  z-index: 2;
}

.site-lightbox__close:hover,
.site-lightbox__close:focus-visible {
  background: rgba(255, 255, 255, 0.22);
  transform: scale(1.08);
}

.site-lightbox__close:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.5);
  outline-offset: 2px;
}

/* Zoom cursor on all lightbox-triggerable images */
.nigeria-gallery-card__image,
.nigeria-spotlight__image {
  cursor: zoom-in;
}

[data-bs-theme="dark"] {
  --site-body-bg: #101319;
  --site-text: #d0d6df;
  --site-header-bg: #101319;
  --site-header-border: rgba(255, 255, 255, 0.1);
  --site-list-marker: #ff795d;
  --bs-primary-rgb: 255, 121, 93;
  --bs-link-color-rgb: 255, 121, 93;
}

[data-bs-theme="dark"] body {
  background: var(--site-body-bg);
  color: var(--site-text);
}

[data-bs-theme="dark"] main :where(.text-primary, a:not(.btn):not(.dropdown-item):not(.nav-link)) {
  color: #ff8b73 !important;
}

[data-bs-theme="dark"] main :where(a:not(.btn):not(.dropdown-item):not(.nav-link)):hover,
[data-bs-theme="dark"] main :where(a:not(.btn):not(.dropdown-item):not(.nav-link)):focus {
  color: #ffad9c !important;
}

[data-bs-theme="dark"] .services-showcase,
[data-bs-theme="dark"] .projects-showcase,
[data-bs-theme="dark"] .service-detail-article,
[data-bs-theme="dark"] .resource-article,
[data-bs-theme="dark"] .service-projects {
  background: transparent;
}

[data-bs-theme="dark"] .services-showcase__title,
[data-bs-theme="dark"] .projects-showcase__title,
[data-bs-theme="dark"] .resource-article__title,
[data-bs-theme="dark"] .resource-article__subheading,
[data-bs-theme="dark"] .service-detail-hero__title,
[data-bs-theme="dark"] .service-projects__title,
[data-bs-theme="dark"] .service-projects__record-title,
[data-bs-theme="dark"] .service-projects__fact dd,
[data-bs-theme="dark"] .roadworks-service-card__title,
[data-bs-theme="dark"] .water-schemes-service-card__title,
[data-bs-theme="dark"] .landworks-service-card__title,
[data-bs-theme="dark"] .foam-materials-service-card__title {
  color: #f8fafc;
}

[data-bs-theme="dark"] .services-showcase__subtitle,
[data-bs-theme="dark"] .projects-showcase__subtitle,
[data-bs-theme="dark"] .resource-article__text,
[data-bs-theme="dark"] .resource-article__list,
[data-bs-theme="dark"] .resource-article__ordered,
[data-bs-theme="dark"] .service-detail-article__label,
[data-bs-theme="dark"] .service-projects__intro,
[data-bs-theme="dark"] .service-projects__record-text,
[data-bs-theme="dark"] .roadworks-service-card__text,
[data-bs-theme="dark"] .water-schemes-service-card__text,
[data-bs-theme="dark"] .landworks-service-card__text,
[data-bs-theme="dark"] .foam-materials-service-card__text {
  color: #cfd8e3;
}

[data-bs-theme="dark"] .service-projects__record,
[data-bs-theme="dark"] .service-projects__fact,
[data-bs-theme="dark"] .roadworks-service-card,
[data-bs-theme="dark"] .water-schemes-service-card,
[data-bs-theme="dark"] .landworks-service-card,
[data-bs-theme="dark"] .foam-materials-service-card {
  background: #171b23;
  border-color: rgba(255, 255, 255, 0.12);
}

[data-bs-theme="dark"] .resource-article__section {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.12);
}

[data-bs-theme="dark"] .resource-article__list strong,
[data-bs-theme="dark"] .resource-article__ordered strong,
[data-bs-theme="dark"] .resource-article__text strong {
  color: #f8fafc;
}

[data-bs-theme="dark"] .partners-showcase {
  background: #151920;
}

[data-bs-theme="dark"] .partner-logo {
  background: transparent;
  border: 0;
  border-radius: 0;
  min-height: 8.5rem;
  padding: 0;
}

[data-bs-theme="dark"] .partner-logo__image {
  filter: none;
  opacity: 1;
}

/* Final dark contrast guard for long-form content blocks. */
[data-bs-theme="dark"] .who-updates__text,
[data-bs-theme="dark"] .who-updates__list,
[data-bs-theme="dark"] .who-updates__list li,
[data-bs-theme="dark"] .who-updates__list li span:not(.who-updates__list-icon) {
  color: #dce3ee !important;
}

[data-bs-theme="dark"] .who-updates__list-icon {
  color: #ff795d;
}

[data-bs-theme="dark"] .operations-section--about .operations-card,
[data-bs-theme="dark"] .operations-section--about .operations-card--primary,
[data-bs-theme="dark"] .operations-section--about .operations-card--dark,
[data-bs-theme="dark"] .operations-section--about .operations-card--light {
  background: rgba(255, 255, 255, 0.035);
  border-color: rgba(255, 255, 255, 0.14);
  color: #f8fafc !important;
}

[data-bs-theme="dark"] .operations-section--about .operations-card:hover,
[data-bs-theme="dark"] .operations-section--about .operations-card:focus-within {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 121, 93, 0.42);
}

[data-bs-theme="dark"] .operations-section--about .operations-card .operations-card__title,
[data-bs-theme="dark"] .operations-section--about .operations-card .operations-card__title--grey,
[data-bs-theme="dark"] .operations-section--about .operations-card .operations-card__title--grey-soft,
[data-bs-theme="dark"] .operations-section--about .operations-card__title a {
  color: #ff8b73 !important;
}

[data-bs-theme="dark"] .operations-section--about .operations-card .operations-card__text {
  color: #dce3ee !important;
}

[data-bs-theme="dark"] .operations-section--about .operations-card__action {
  background: rgba(248, 250, 252, 0.94);
  border-color: rgba(248, 250, 252, 0.94);
  color: #101319 !important;
}

.plant-operate .operations-card,
.plant-operate .operations-card--primary,
.plant-operate .operations-card--dark,
.plant-operate .operations-card--light,
[data-bs-theme="dark"] .plant-operate .operations-card,
[data-bs-theme="dark"] .plant-operate .operations-card--primary,
[data-bs-theme="dark"] .plant-operate .operations-card--dark,
[data-bs-theme="dark"] .plant-operate .operations-card--light {
  background: #171b23 !important;
  border: 0 !important;
  color: #f8fafc !important;
}

.plant-operate .operations-card:hover,
.plant-operate .operations-card:focus-within,
[data-bs-theme="dark"] .plant-operate .operations-card:hover,
[data-bs-theme="dark"] .plant-operate .operations-card:focus-within {
  background: #1f242d !important;
  border: 0 !important;
}

.plant-operate .operations-card .operations-card__title,
.plant-operate .operations-card .operations-card__title--grey,
.plant-operate .operations-card .operations-card__title--grey-soft,
.plant-operate .operations-card__title a,
[data-bs-theme="dark"] .plant-operate .operations-card .operations-card__title,
[data-bs-theme="dark"] .plant-operate .operations-card .operations-card__title--grey,
[data-bs-theme="dark"] .plant-operate .operations-card .operations-card__title--grey-soft,
[data-bs-theme="dark"] .plant-operate .operations-card__title a {
  color: #ff8b73 !important;
}

.plant-operate .operations-card .operations-card__text,
[data-bs-theme="dark"] .plant-operate .operations-card .operations-card__text {
  color: #dce3ee !important;
}

.plant-operate .operations-card .operations-card__action,
[data-bs-theme="dark"] .plant-operate .operations-card .operations-card__action {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(255, 255, 255, 0.14) !important;
  color: #ff8b73 !important;
}

[data-bs-theme="dark"] main :where(
  p[class$="__text"],
  p[class*="__text "],
  div[class$="__text"],
  span[class$="__text"],
  li[class$="__text"],
  ul[class$="__list"],
  ol[class$="__list"],
  p[class$="__summary"],
  p[class$="__subtitle"],
  p[class$="__copy"],
  p[class$="__description"]
) {
  color: #cfd8e3;
}

[data-bs-theme="dark"] main :where(
  h1[class$="__title"],
  h2[class$="__title"],
  h3[class$="__title"],
  h4[class$="__title"],
  strong[class$="__title"],
  span[class$="__title"]
) {
  color: #f8fafc;
}

[data-bs-theme="dark"] main :where(li, dd) {
  color: inherit;
}

@media (max-width: 991.98px) {
  .contact-offices__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575.98px) {
  .contact-offices {
    margin-top: 1.5rem;
  }

  .contact-offices__grid {
    grid-template-columns: 1fr;
  }

  .contact-office-card {
    min-height: auto;
    padding: 1.25rem 1.1rem;
  }

  .contact-office-card__title {
    font-size: 1.2rem;
  }
}

@media (max-width: 575.98px) {
  .site-lightbox__footer {
    gap: 0.55rem;
  }

  .site-lightbox__nav {
    width: 2.45rem;
    height: 2.45rem;
  }
}

/* Longer figures (6+ characters, e.g. "10,000+") don't fit at the
   default hero size in every column count this grid uses (2/3/5 cols),
   and white-space: nowrap alone would let them spill into the next card
   instead of wrapping. Size these off the card's own width (via
   container query units) rather than the viewport, since the safe font
   size tracks column width, not viewport width, and column width jumps
   at every row-cols breakpoint. Placed last in the file so it wins the
   cascade over the other .stat-card__value rules above (equal
   specificity; source order decides). */
.stat-card__value--long {
  font-size: clamp(1.6rem, 26cqw, 4rem);
}
