:root {
  --brand-primary: #2a3cb7;
  --brand-secondary: #ffdd00;
  --brand-dark: #12192d;
  --brand-text: #5f6674;
  --brand-heading: #111827;
  --brand-soft: #f5f7fb;
  --border-color: #e6e9f2;
  --highlight-font-family: "Titillium Web", sans-serif;
  --shadow: 0 22px 60px rgba(18, 25, 45, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  color: var(--brand-text);
  font-family: "Poppins", Arial, sans-serif;
  line-height: 1.7;
  margin: 0;
  overflow-x: hidden;
}

body.is-loading {
  overflow: hidden;
}

p {
  font-family: "Open Sans", sans-serif;
}

h1,
h2,
h3 {
  color: var(--brand-heading);
  font-family: var(--highlight-font-family);
  font-weight: 700;
  line-height: 1.1;
}

a {
  color: var(--brand-primary);
  text-decoration: none;
}

a:hover,
a:focus {
  color: #182683;
}

.skip-link {
  background: var(--brand-primary);
  color: #fff;
  left: 1rem;
  padding: 0.75rem 1rem;
  position: fixed;
  top: -5rem;
  z-index: 1100;
}

.skip-link:focus {
  top: 1rem;
}

.site-loader {
  align-items: center;
  background: #fff;
  display: flex;
  inset: 0;
  justify-content: center;
  opacity: 1;
  pointer-events: auto;
  position: fixed;
  transition:
    opacity 0.35s ease,
    visibility 0.35s ease;
  visibility: visible;
  z-index: 2000;
}

.site-loader.is-hidden {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.loader-mark {
  background: url("../images/loader-4.gif") center / contain no-repeat;
  height: 500px;
  position: relative;
  width: 500px;
}

.loader-mark::before,
.loader-mark::after {
  display: none;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes loaderPulse {
  0%,
  100% {
    opacity: 0.88;
    transform: scale(0.985);
  }

  50% {
    opacity: 1;
    transform: scale(1);
  }
}

.site-header {
  background: #fff;
  box-shadow: 0 8px 22px rgba(18, 25, 45, 0.08);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
  z-index: 1030;
}

.site-header.is-scrolled {
  animation: stickyHeaderDown 0.28s ease both;
  box-shadow: 0 12px 30px rgba(18, 25, 45, 0.14);
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
}

.site-header.is-scrolled + main {
  padding-top: 100px;
}

@keyframes stickyHeaderDown {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}
.site-header .container-fluid {
  padding: 0 100px;
}
.site-header .navbar {
  min-height: 100px;
  padding-bottom: 0;
  padding-top: 0;
}

.navbar-brand img {
  max-height: 31px;
  width: auto;
  padding-right: 40px;
}

.navbar-nav .nav-link {
  color: var(--brand-heading);
  font-family: var(--highlight-font-family);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.33em;
  padding: 0.8rem 0.9rem;
  position: relative;
  text-transform: uppercase;
}

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

.navbar-nav .nav-link::before,
.navbar-nav .nav-link::after {
  bottom: 0.2rem;
  content: "";
  height: 7px;
  opacity: 0;
  position: absolute;
  transform: translateX(-50%);
  width: 7px;
}

.navbar-nav .nav-link::before {
  background: var(--brand-primary);
  left: 38%;
}

.navbar-nav .nav-link::after {
  background: var(--brand-secondary);
  left: 50%;
}

.navbar-nav .nav-link.active::before,
.navbar-nav .nav-link.active::after,
.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link:focus::before,
.navbar-nav .nav-link:focus::after {
  animation: menuDotBlink 0.85s ease-in-out infinite;
  opacity: 1;
}

.navbar-nav .nav-link.active::after,
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link:focus::after {
  animation-delay: 0.16s;
}

@keyframes menuDotBlink {
  0%,
  100% {
    opacity: 0.35;
  }

  50% {
    opacity: 1;
  }
}

.menu-toggler {
  align-items: center;
  border: 1px solid var(--border-color);
  border-radius: 0;
  gap: 0.65rem;
  padding: 0.55rem 0.75rem;
}

.menu-toggler:focus {
  box-shadow: 0 0 0 0.18rem rgba(47, 66, 200, 0.18);
}

.menu-toggler-text {
  color: var(--brand-heading);
  font-family: var(--highlight-font-family);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.menu-toggler-box {
  display: grid;
  gap: 4px;
}

.menu-toggler-box span {
  background: var(--brand-heading);
  display: block;
  height: 2px;
  width: 22px;
}

.dropdown-menu {
  border: 0;
  border-radius: 0.35rem;
  box-shadow: var(--shadow);
  min-width: 360px;
  padding: 1.9rem 1.8rem;
}

.navbar-nav .dropdown-menu::before {
  content: "";
  height: 1rem;
  left: 0;
  position: absolute;
  right: 0;
  top: -1rem;
}

.dropdown-item {
  border-radius: 0;
  color: var(--brand-text);
  font-family: var(--highlight-font-family);
  font-size: 1.1rem;
  font-weight: 400;
  padding: 0.8rem 0;
}

.dropdown-item:focus,
.dropdown-item:hover {
  background: var(--brand-soft);
  color: var(--brand-primary);
}

@media (min-width: 1200px) {
  .navbar-nav .dropdown:hover > .dropdown-menu,
  .navbar-nav .dropdown:focus-within > .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}

.header-actions {
  align-items: center;
  display: flex;
  gap: 1rem;
  padding: 0.75rem 0;
}

.icon-link-button,
.side-toggle {
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--brand-heading);
  display: inline-flex;
  font-family: var(--highlight-font-family);
  font-size: 1rem;
  font-weight: 400;
  gap: 0.5rem;
  letter-spacing: 0.35em;
  padding: 0.35rem;
  text-transform: uppercase;
}

.side-toggle {
  display: grid;
  gap: 4px;
  grid-template-columns: repeat(2, 9px);
}

.side-toggle span {
  background: var(--brand-heading);
  display: block;
  height: 9px;
  width: 9px;
}

.side-toggle span:nth-child(3) {
  background: var(--brand-primary);
}

.hero-section {
  margin-top: 0;
}

.hero-section .carousel-item {
  background: #121212;
  min-height: 850px;
  overflow: hidden;
  position: relative;
}

.hero-section .carousel-item > .hero-bg {
  height: 850px;
  object-fit: cover;
  transform: scale(1);
}

.hero-section .carousel-item.active > .hero-bg {
  animation: heroPanZoom 10s linear both;
}

.hero-overlay {
  background: rgba(0, 0, 0, 0.64);
  inset: 0;
  position: absolute;
}

.hero-content {
  align-items: center;
  display: flex;
  inset: 0;
  padding: 6rem 0;
  position: absolute;
  z-index: 2;
}

.hero-content .container {
  max-width: none;
  padding-left: 8.5rem;
  padding-right: 8.5rem;
}

.hero-content .col-lg-4 {
  flex: 0 0 auto;
  width: 25%;
}

.hero-content .col-lg-8 {
  flex: 0 0 auto;
  width: 75%;
}

.hero-figure {
  display: block;
  height: min(575px, 58vh);
  margin-left: 0;
  object-fit: cover;
  width: min(446px, 100%);
}

.hero-figure-wide {
  height: auto;
}

.hero-copy {
  margin-left: 2rem;
  max-width: 780px;
}

.hero-copy h1,
.hero-copy h2 {
  color: #fff;
  font-size: 3.1575rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.13;
  margin: 0;
}

.hero-section .carousel-indicators {
  bottom: 1.9rem;
  gap: 0.32rem;
  margin: 0;
}

.hero-section .carousel-indicators [data-bs-target] {
  background: #c7c7c7;
  border: 1px solid rgba(255, 255, 255, 0.65);
  height: 13px;
  margin: 0;
  opacity: 1;
  width: 13px;
}

.hero-section .carousel-indicators .active {
  background: #ee202a;
  border-color: #ee202a;
}

.hero-section .carousel-control-prev,
.hero-section .carousel-control-next {
  width: 8%;
}

@keyframes heroPanZoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.12);
  }
}

.eyebrow,
.section-kicker {
  color: var(--brand-primary);
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 0.8rem;
  position: relative;
  text-transform: uppercase;
  z-index: 0;
}

.hero-section .eyebrow {
  color: #ee202a;
  font-family: var(--highlight-font-family);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  margin-bottom: 1.25rem;
}
.section-kicker::before {
  content: "";
  border: 3px solid var(--brand-secondary);
  height: 49px;
  left: -13px;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  width: 23px;
  z-index: -1;
}

.btn {
  border-radius: 0;
  font-weight: 400;
  padding: 0.85rem 1.35rem;
}

.btn-brand {
  background: var(--brand-primary);
  border-color: var(--brand-primary);
  color: #fff;
}

.btn-brand:hover,
.btn-brand:focus {
  background: #182683;
  border-color: #182683;
  color: #fff;
}

.section-padding {
  padding: 5rem 0;
}

.bg-soft {
  background: var(--brand-soft);
}

.lead-text {
  font-size: 1.06rem;
  max-width: 680px;
}

.why-section {
  background: #fff;
  padding: 9rem 0 8rem;
}

.why-section .row.align-items-end {
  margin-bottom: 4.5rem !important;
}

.why-section .section-kicker {
  color: var(--brand-primary);
  font-family: var(--highlight-font-family);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.38em;
  margin-bottom: 1.7rem;
  position: relative;
  z-index: 1;
}

.why-section .section-kicker::before {
  border: 3px solid var(--brand-secondary);
  height: 58px;
  left: 0;
  top: 50%;
  width: 27px;
  z-index: -1;
}

.why-section h2 {
  font-size: 3.137rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.18;
  max-width: 650px;
}

.why-section .lead-text {
  color: #7b8492;
  font-size: 1rem;
  line-height: 1.75;
  margin-left: auto;
  max-width: 820px;
}

.section-heading {
  margin-bottom: 3rem;
  max-width: 720px;
}

.section-heading p {
  margin-bottom: 0;
}

.about-section {
  background: #eef0f3;
  overflow: visible;
  padding: 8rem 0;
  position: relative;
  z-index: 1;
}

.about-section .container {
  position: relative;
  z-index: 1;
}

.mill-rotate-pattern {
  bottom: -150px;
  pointer-events: none;
  position: absolute;
  right: -8rem;
  width: 320px;
  z-index: 2;
}

.mill-rotate-pattern img {
  animation: millRotatePattern 30s linear infinite;
  display: block;
  width: 100%;
}

@keyframes millRotatePattern {
  to {
    transform: rotate(360deg);
  }
}

.about-section .section-kicker {
  color: var(--brand-primary);
  font-family: var(--highlight-font-family);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.34em;
  margin-bottom: 1.6rem;
  position: relative;
  z-index: 1;
}

.about-section .section-kicker::before {
  border: 3px solid var(--brand-secondary);
  height: 58px;
  left: 0;
  width: 26px;
}

.about-section h2 {
  color: var(--brand-heading);
  font-family: var(--highlight-font-family);
  font-size: 3.157rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.18;
  margin-bottom: 1.75rem;
  max-width: 760px;
}

.about-lead {
  color: #7d8795;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.72;
  margin-bottom: 0;
  max-width: 780px;
}

.image-stack {
  position: relative;
}

.about-section .image-stack {
  margin-left: auto;
  max-width: 700px;
  padding-bottom: 150px;
}

.primary-image {
  box-shadow: var(--shadow);
  width: 100%;
}

.about-section .primary-image {
  box-shadow: none;
  display: block;
  height: 570px;
  object-fit: cover;
}

.experience-badge {
  align-items: center;
  background: var(--brand-primary);
  bottom: 1.25rem;
  color: #fff;
  display: flex;
  gap: 0.9rem;
  left: 1.25rem;
  padding: 1rem 1.2rem;
  position: absolute;
}

.about-section .experience-badge {
  bottom: 0;
  gap: 1.7rem;
  justify-content: center;
  left: 0;
  min-height: 155px;
  padding: 2rem;
  right: 0;
}

.experience-badge strong {
  color: var(--brand-secondary);
  font-family: var(--highlight-font-family);
  font-size: 3rem;
  line-height: 1;
}

.about-section .experience-badge strong {
  font-size: 5.2rem;
  font-weight: 600;
}

.about-section .experience-badge span {
  color: #fff;
  font-family: var(--highlight-font-family);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.34em;
  line-height: 1.55;
}

.feature-box {
  background: #fff;
  border: 1px solid var(--border-color);
  height: 100%;
  padding: 1.5rem;
}

.about-section .feature-box {
  border: 0;
  min-height: 355px;
  padding: 2rem;
}

.feature-box i {
  color: var(--brand-primary);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.about-section .feature-box svg {
  align-items: center;
  background: #f5f6fb;
  color: var(--brand-primary);
  display: inline-flex;
  font-size: 2rem;
  height: 50px;
  justify-content: center;
  margin: 1.55rem 0 1.5rem;
  width: 50px;
}

.about-section .feature-box h3 {
  color: var(--brand-heading);
  font-family: var(--highlight-font-family);
  font-size: 1.333rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 0;
}

.about-section .feature-box p {
  color: #7d8795;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 0;
}

.about-section .btn-brand {
  margin-top: 2rem !important;
  min-width: 190px;
}

.feature-box h3,
.service-card h3,
.team-card h3,
.value-card h3,
.mini-service h3,
.project-card h3,
.news-card h3 {
  font-size: 1.35rem;
}

.value-card,
.mini-service {
  background: #fff;
  border: 1px solid var(--border-color);
  height: 100%;
  padding: 1.5rem;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.why-section .value-card {
  background: #f6f7f9;
  border: 0;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  min-height: 405px;
  padding: 3.2rem;
}

.why-section .value-card:hover {
  box-shadow: none;
  transform: none;
}

.why-section .value-card h3 {
  font-size: 1.333rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.3;
  margin-bottom: 1.45rem;
  max-width: 230px;
}

.why-section .value-card p {
  color: #7b8492;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 1.6rem;
}

.why-section .value-card strong {
  align-items: center;
  background: var(--brand-primary);
  color: #fff;
  display: inline-flex;
  font-size: 1.15rem;
  font-weight: 400;
  height: 55px;
  justify-content: center;
  margin-bottom: 0;
  margin-top: auto;
  width: 55px;
}

.value-card:hover,
.mini-service:hover,
.project-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.value-card strong,
.mini-service span {
  color: var(--brand-primary);
  display: block;
  font-family: var(--highlight-font-family);
  font-size: 2.4rem;
  line-height: 1;
  margin-bottom: 1rem;
}

.service-overview {
  background:
    linear-gradient(rgba(246, 248, 251, 0.88), rgba(246, 248, 251, 0.88)),
    url("../images/home-service-bg-banner-1-3.png") bottom center / cover no-repeat;
  padding: 8rem 0 6rem;
  position: relative;
}


.service-overview .section-kicker {
  color: var(--brand-primary);
  font-family: var(--highlight-font-family);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.38em;
  margin-bottom: 1.7rem;
  position: relative;
  z-index: 1;
}

.service-overview .section-kicker::before {
  border: 3px solid var(--brand-secondary);
  height: 58px;
  left: 0;
  top: 50%;
  width: 27px;
  z-index: -1;
}

.service-overview h2 {
  font-size: 3.157rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.18;
  margin-bottom: 1.9rem;
  max-width: 620px;
}

.service-overview .col-lg-5 > p {
  color: #7b8492;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 2.7rem;
}

.service-overview .btn-brand {
  min-width: 220px;
  padding: 1.15rem 2.2rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 1rem;
}

.service-overview-grid {
  margin-top: 2.45rem;
}

.mini-service {
  align-items: center;
  background: #fff;
  border: 0;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  isolation: isolate;
  overflow: hidden;
  padding: 20px;
  min-height: 400px;
  position: relative;
  text-align: center;
  transition:
    box-shadow 0.35s ease,
    transform 0.35s ease;
}

.mini-service::before {
  background:
    linear-gradient(rgba(18, 25, 45, 0.56), rgba(18, 25, 45, 0.56)),
    var(--hover-image, url("../images/service-hover-import-export-061-3.jpg")) center / cover no-repeat;
  content: "";
  inset: 0;
  opacity: 0;
  position: absolute;
  transform: scale(1.08);
  transition:
    opacity 0.35s ease,
    transform 0.85s ease;
  z-index: 0;
}

.service-overview-grid > [class*="col"]:nth-child(1) .mini-service::before {
  background-image:
    linear-gradient(rgba(18, 25, 45, 0.56), rgba(18, 25, 45, 0.56)),
    url("../images/service-hover-import-export-061-3.jpg");
}

.service-overview-grid > [class*="col"]:nth-child(2) .mini-service::before {
  background-image:
    linear-gradient(rgba(18, 25, 45, 0.56), rgba(18, 25, 45, 0.56)),
    url("../images/service-hover-automation-02-min-3.jpg");
}

.service-overview-grid > [class*="col"]:nth-child(3) .mini-service::before {
  background-image:
    linear-gradient(rgba(18, 25, 45, 0.56), rgba(18, 25, 45, 0.56)),
    url("../images/service-hover-equipment-b2-min.jpg");
}

.service-overview-grid > [class*="col"]:nth-child(4) .mini-service::before {
  background-image:
    linear-gradient(rgba(18, 25, 45, 0.56), rgba(18, 25, 45, 0.56)),
    url("../images/service-hover-software-010d-min-3.jpg");
}

.mini-service > * {
  position: relative;
  z-index: 1;
}

.mini-service:hover,
.mini-service:focus-within {
  box-shadow: 0 26px 60px rgba(11, 18, 34, 0.16);
  transform: none;
}

.mini-service:hover::before,
.mini-service:focus-within::before {
  opacity: 1;
  transform: scale(1);
}

.mini-service span {
  color: var(--brand-primary);
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0.36em;
  margin-bottom: 1.05rem;
  transition: color 0.3s ease;
}

.mini-service h3 {
  font-size: 1.777rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.25;
  margin-bottom: 1.5rem;
  transition: color 0.3s ease;
}

.mini-service p {
  color: #7b8492;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.55;
  margin: 0 auto 2.6rem;
  max-width: 300px;
  transition: color 0.3s ease;
}

.mill-img-box::before {
  content: "";
  background: var(--brand-secondary);
  border: 0;
  width: 80px;
  height: 80px;
  left: -5px;
  top: -5px;
  right: 0;
  position: absolute;
  transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -ms-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  -webkit-transition: all .2s ease-in-out;
}

.mill-img-box::before {
  z-index: 0;
}

.mill-img-box::after {
  background: #fff;
  content: "";
  inset: 0;
  position: absolute;
  z-index: 1;
}

.mini-service:hover .mill-img-box::before,
.mini-service:focus-within .mill-img-box::before {
  left: -8px;
  top: -8px;
}

.mill-service-image .mill-img-box {
  display: inline-block;
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  background: transparent;
  isolation: isolate;
  z-index: 0;
  position: relative;
}

.mill-service-image .mill-img-box svg {
  position: relative;
  z-index: 2;
}
.mini-service-icon {
  align-items: center;
  border-left: 5px solid var(--brand-secondary);
  border-top: 5px solid var(--brand-secondary);
  color: var(--brand-heading);
  display: inline-flex;
  height: 95px;
  justify-content: center;
  margin-top: auto;
  padding-left: 1.2rem;
  padding-top: 1.15rem;
  position: relative;
  transition:
    border-color 0.3s ease,
    color 0.3s ease,
    transform 0.35s ease;
  width: 95px;
}

.mini-service-icon::before {
  background: var(--brand-secondary);
  content: "";
  height: 88px;
  left: -5px;
  opacity: 0;
  position: absolute;
  top: -5px;
  transform: translate(14px, 14px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
  width: 88px;
  z-index: -1;
}

.mini-service-icon i {
  align-items: center;
  display: inline-flex;
  font-size: 2.05rem;
  height: 50px;
  justify-content: center;
  position: relative;
  transition:
    background 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
  width: 50px;
  z-index: 1;
}

.mini-service-icon i::after {
  background: var(--brand-secondary);
  border-radius: 50%;
  content: "";
  height: 20px;
  position: absolute;
  right: 3px;
  top: 4px;
  width: 20px;
  z-index: -1;
}

.mini-service:hover span,
.mini-service:focus-within span {
  color: var(--brand-secondary);
}

.mini-service:hover h3,
.mini-service:hover p,
.mini-service:focus-within h3,
.mini-service:focus-within p {
  color: #fff;
}

.mini-service:hover .mini-service-icon,
.mini-service:focus-within .mini-service-icon {
  border-color: transparent;
  color: var(--brand-heading);
  transform: translateY(-6px);
}

.mini-service:hover .mini-service-icon::before,
.mini-service:focus-within .mini-service-icon::before {
  opacity: 1;
  transform: translate(0, 0);
}

.mini-service:hover .mini-service-icon i,
.mini-service:focus-within .mini-service-icon i {
  background: #fff;
  color: var(--brand-heading);
  height: 96px;
  transform: translate(6px, 6px);
  width: 96px;
}

.nav-pills {
  gap: 0.5rem;
}

.nav-pills .nav-link {
  border-radius: 0;
  color: var(--brand-heading);
  font-weight: 700;
}

.nav-pills .nav-link.active {
  background: var(--brand-primary);
}

.services-section {
  background: #fff;
  overflow: hidden;
  padding: 8rem 0;
  position: relative;
}

.services-section .container {
  position: relative;
  z-index: 1;
}

.service-pattern {
  pointer-events: none;
  position: absolute;
  z-index: 0;
}

.service-pattern img {
  display: block;
  width: 100%;
}

.service-pattern-top-left {
  left: -200px;
  top: -80px;
  width: 600px;
}

.service-pattern-right-center {
  right: -4rem;
  top: 50%;
  transform: translateY(-50%);
  width: 160px;
}

.services-section .section-kicker {
  color: var(--brand-primary);
  font-family: var(--highlight-font-family);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.34em;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.services-section .section-kicker::before {
  border: 3px solid var(--brand-secondary);
  height: 58px;
  left: 0;
  width: 26px;
}

.services-section h2 {
  color: var(--brand-heading);
  font-family: var(--highlight-font-family);
  font-size: 3.157rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.12;
}

.services-section .lead-text {
  color: #7d8795;
  font-weight: 600;
  line-height: 1.7;
  margin-left: auto;
  margin-right: auto;
}

.service-card {
  background: #fff;
  border-bottom: 6px solid var(--brand-secondary);
  box-shadow: 0 18px 52px rgba(11, 18, 34, 0.08);
  overflow: hidden;
  position: relative;
  transition:
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.service-card:hover {
  box-shadow: 0 28px 70px rgba(11, 18, 34, 0.14);
  transform: translateY(-4px);
}

.service-card > img {
  aspect-ratio: 480 / 345;
  display: block;
  object-fit: cover;
  width: 100%;
}

.service-icon {
  align-items: center;
  background: #fff;
  border-bottom: 3px solid var(--brand-secondary);
  display: flex;
  height: 88px;
  justify-content: center;
  position: absolute;
  right: 40px;
  top: 250px;
  width: 88px;
  z-index: 1;
}

.service-icon img {
  display: block;
  max-height: 50px;
  max-width: 50px;
}

.service-body {
  padding: 3rem 2.35rem 2.45rem;
}

.service-body span,
.team-card span {
  color: var(--brand-primary);
  display: block;
  font-family: var(--highlight-font-family);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  margin-bottom: 0.7rem;
  text-transform: uppercase;
}

.service-body h3 {
  color: var(--brand-heading);
  font-family: var(--highlight-font-family);
  font-size: 2.369rem;
  font-weight: 600;
  line-height: 1.18;
  margin-bottom: 1rem;
}

.service-body p {
  color: #7d8795;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 1.6rem;
}

.service-body a {
  align-items: center;
  color: var(--brand-primary);
  display: inline-flex;
  font-family: var(--highlight-font-family);
  font-size: 0.9rem;
  font-weight: 700;
  gap: 0.55rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.stats-band {
  background-color: var(--brand-dark);
  background-position: center;
  background-size: cover;
  color: #fff;
  padding: 6.5rem 0;
  position: relative;
}

.stats-band::before {
  background: rgba(18, 25, 45, 0.82);
  content: "";
  inset: 0;
  position: absolute;
}

.stats-band .container {
  position: relative;
}

.stats-band strong {
  color: var(--brand-secondary);
  display: block;
  font-family: var(--highlight-font-family);
  font-size: 5rem;
  font-weight: 600;
  line-height: 1;
}

.stats-band strong::after {
  content: "+";
}

.stats-band span {
  color: rgba(255, 255, 255, 0.82);
  display: block;
  font-family: var(--highlight-font-family);
  font-weight: 700;
  letter-spacing: 0.18em;
  margin-top: 0.5rem;
  text-transform: uppercase;
}

.team-card {
  border: 1px solid var(--border-color);
  height: 100%;
  padding-bottom: 1rem;
  text-align: center;
}

.team-card img {
  aspect-ratio: 1 / 1.12;
  margin-bottom: 1rem;
  object-fit: cover;
  width: 100%;
}

.team-card h3 {
  padding: 0 0.75rem;
}

.projects-section {
  background: #fff;
  overflow: hidden;
  padding-top: 9.25rem;
}

.projects-section .projects-heading {
  margin-bottom: 5.75rem;
  max-width: 640px;
}

.projects-section .section-kicker {
  font-family: var(--highlight-font-family);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}

.projects-section .section-kicker::before {
  height: 58px;
  left: 0;
  width: 26px;
}

.projects-section h2 {
  color: var(--brand-heading);
  font-family: var(--highlight-font-family);
  font-size: 4.6rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.05;
  margin-bottom: 1.35rem;
}

.projects-section p {
  color: #8a94a3;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.7;
  margin-bottom: 0;
}

.project-mosaic {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: 100%;
}

.project-tile {
  background: var(--brand-dark);
  display: block;
  height: 380px;
  overflow: hidden;
  position: relative;
}

.project-tile-wide {
  grid-column: span 2;
}

.project-tile img {
  display: block;
  height: 100%;
  object-fit: cover;
  transition:
    filter 0.35s ease,
    transform 0.45s ease;
  width: 100%;
}

.project-tile::after {
  background: rgba(11, 18, 34, 0.22);
  content: "";
  inset: 0;
  opacity: 0;
  position: absolute;
  transition: opacity 0.35s ease;
  z-index: 1;
}

.project-tile-content {
  background: #fff;
  bottom: 2.25rem;
  display: block;
  left: 2.25rem;
  max-width: min(43rem, calc(100% - 2.5rem));
  opacity: 0;
  padding: 2rem 2.4rem;
  position: absolute;
  transform: translateY(18px);
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
  width: calc(100% - 4.5rem);
  z-index: 2;
}

.project-tile:not(.project-tile-wide) .project-tile-content {
  padding: 1.1rem 1.2rem;
}

.project-tile-kicker,
.project-tile-title,
.project-tile-link {
  display: block;
}

.project-tile-kicker,
.project-tile-link {
  color: var(--brand-primary);
  font-family: var(--highlight-font-family);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.project-tile-title {
  color: var(--brand-heading);
  font-family: var(--highlight-font-family);
  font-size: 1.777rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.15;
  margin: 0.85rem 0 1.35rem;
}

.project-tile:not(.project-tile-wide) .project-tile-title {
  font-size: 1.55rem;
}

.project-tile-link i {
  font-size: 0.8em;
  margin-left: 0.45rem;
}

.project-tile:hover img,
.project-tile:focus-visible img {
  filter: saturate(1.06);
  transform: scale(1.045);
}

.project-tile:hover::after,
.project-tile:focus-visible::after {
  opacity: 1;
}

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

.project-tile:focus-visible {
  outline: 3px solid var(--brand-secondary);
  outline-offset: -3px;
  z-index: 2;
}

.project-card a,
.news-card a {
  font-weight: 700;
}

.latest-posts-section {
  background:
    url("../images/3s-min-3.png") left -3rem top -7rem / 500px auto no-repeat,
    url("../images/4s-min-3.png") right -8rem top 9rem / 400px auto no-repeat,
    #fff;
  overflow: hidden;
  padding: 8rem 0 7rem;
}


.latest-posts-section .latest-posts-heading {
  margin-bottom: 3rem;
  max-width: 720px;
}

.latest-posts-section .section-kicker {
  font-family: var(--highlight-font-family);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  margin-bottom: 1.15rem;
  position: relative;
  z-index: 1;
}

.latest-posts-section .section-kicker::before {
  height: 58px;
  left: 0;
  width: 26px;
}

.latest-posts-section h2 {
  color: var(--brand-heading);
  font-family: var(--highlight-font-family);
  font-size: 4.5rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.05;
  margin-bottom: 1.35rem;
}

.latest-posts-section .section-heading > p {
  color: #7f8997;
  font-size: 1rem;
  font-weight: 600;
}

.latest-posts-slider {
  --latest-posts-gap: 2rem;
  --latest-posts-visible: 3;
  margin-left: auto;
  margin-right: auto;
  max-width: 1500px;
}

.latest-posts-viewport {
  margin: 0 -1rem;
  overflow: hidden;
  padding: 0rem 0rem 4rem;
  width: 100%;
}

.latest-posts-track {
  display: flex;
  gap: var(--latest-posts-gap);
  transition: transform 0.45s ease;
  width: 100%;
  will-change: transform;
}

.latest-posts-slide {
  background: #fff;
  box-shadow: 0 -10px 57px -18px rgba(11, 18, 34, 0.42);
  flex: 0 0 calc((100% - (var(--latest-posts-gap) * (var(--latest-posts-visible) - 1))) / var(--latest-posts-visible));
  min-width: 0;
  transition:
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.latest-posts-section .news-card {
  background: #fff;
  height: 100%;
  overflow: hidden;
  transition:
    transform 0.25s ease;
}

.latest-posts-slide:hover {
  box-shadow: 0 38px 66px -40px rgba(11, 18, 34, 0.5);
}



.news-card-image {
  aspect-ratio: 480 / 315;
  overflow: visible;
  position: relative;
}

.news-card-image img {
  display: block;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
  width: 100%;
}

.latest-posts-section .news-card:hover .news-card-image img {
  transform: scale(1.045);
}

.news-card-image span {
  background: var(--brand-primary);
  bottom: -14px;
  color: #fff;
  display: inline-flex;
  font-family: var(--highlight-font-family);
  font-size: 0.78rem;
  font-weight: 600;
  left: 2rem;
  letter-spacing: 0.38em;
  line-height: 1;
  padding: 0.75rem 1.15rem;
  position: absolute;
  text-transform: uppercase;
  z-index: 2;
}

.news-card-body {
  padding: 2.85rem 2rem 2.4rem;
}

.news-meta {
  color: #7d8795;
  font-family: var(--highlight-font-family);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.34em;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.latest-posts-section .news-card h3 {
  color: var(--brand-heading);
  font-family: var(--highlight-font-family);
  font-size: 1.777rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.22;
  margin-bottom: 1.75rem;
}

.latest-posts-section .news-card a {
  align-items: center;
  color: var(--brand-primary);
  display: inline-flex;
  font-family: var(--highlight-font-family);
  font-size: 0.92rem;
  font-weight: 600;
  gap: 0.45rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.latest-posts-dots {
  align-items: center;
  display: flex;
  gap: 0.45rem;
  justify-content: center;
  margin-top: 2rem;
}

.latest-posts-dots button {
  appearance: none;
  background: transparent;
  border: 2px solid var(--brand-primary);
  cursor: pointer;
  display: block;
  height: 12px;
  padding: 0;
  width: 12px;
}

.latest-posts-dots button.is-active,
.latest-posts-dots button:hover,
.latest-posts-dots button:focus-visible {
  background: var(--brand-primary);
}

.latest-posts-dots button:focus-visible {
  outline: 2px solid var(--brand-secondary);
  outline-offset: 3px;
}

.career-section {
  background: #fff;
}

.accordion-button {
  color: var(--brand-heading);
  font-weight: 700;
}

.accordion-button:not(.collapsed) {
  background: var(--brand-primary);
  color: #fff;
}

.bg-dark-blue {
  background: var(--brand-dark);
}

.testimonials {
  background:
    url("../images/contact-banner.png") right bottom / 70% auto no-repeat,
    #f3f5f8;
  background-size: contain;
  padding: 0;
}

.testimonial-media {
  height: 100%;
  position: relative;
}



.testimonial-media img {
  display: block;
  height: 90%;
  object-fit: cover;
  width: 100%;
  bottom: -122px;
  position: relative;
  z-index: 11;
}

.testimonial-play {
  align-items: center;
  color: #fff;
  display: inline-flex;
  gap: 1rem;
  left: 42%;
  position: absolute;
  text-decoration: none;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.testimonial-play span {
  align-items: center;
  background: #fff;
  color: var(--brand-heading);
  display: inline-flex;
  height: 58px;
  justify-content: center;
  width: 58px;
}

.testimonial-play strong {
  color: #fff;
  font-family: var(--highlight-font-family);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.4;
}

.testimonial-panel {
  min-height: 730px;
  overflow: hidden;
  padding: 6rem 7rem;
  position: relative;
}

.testimonial-panel::after {
  background: url("../images/contact-banner.png") right bottom / 100% auto no-repeat;
  content: "";
  inset: auto 0 0 0;
  height: 62%;
  opacity: 0.58;
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.testimonial-panel > * {
  position: relative;
  z-index: 1;
}

.testimonials .section-kicker {
  color: var(--brand-primary) !important;
  font-family: var(--highlight-font-family);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.34em;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.testimonials .section-kicker::before {
  border: 3px solid var(--brand-secondary);
  height: 58px;
  left: 0;
  width: 26px;
}

.testimonials h2,
.testimonials p {
  color: var(--brand-heading);
}

.testimonials h2 {
  font-family: var(--highlight-font-family);
  font-size: 3.157rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.12;
  margin-bottom: 2.2rem;
  max-width: 780px;
}

.testimonial-people {
  display: flex;
  gap: 1.7rem;
  margin-bottom: 3rem;
  max-width: 760px;
  overflow: hidden;
}

.testimonial-person {
  flex: 0 0 130px;
  opacity: 0.34;
}

.testimonial-person.active {
  opacity: 1;
}

.testimonial-person img {
  border-bottom: 5px solid #aeb6e5;
  border-right: 5px solid #aeb6e5;
  display: block;
  height: 112px;
  object-fit: cover;
  width: 112px;
}

.testimonial-person.active img {
  border-bottom-color: var(--brand-secondary);
  border-right-color: var(--brand-secondary);
}

.testimonial-person strong {
  color: var(--brand-heading);
  display: block;
  font-family: var(--highlight-font-family);
  font-size: 1.12rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.35;
  margin-top: 1.05rem;
}

.testimonial-person span {
  color: var(--brand-primary);
  display: block;
  font-family: var(--highlight-font-family);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  line-height: 1.8;
  margin-top: 0.45rem;
  text-transform: uppercase;
}

.testimonial-card {
  background: transparent;
  margin: 0;
  min-height: 0;
  padding: 0;
}

.testimonial-card p {
  color: #717b8a;
  font-size: 1.333rem;
  font-style: italic;
  font-weight: 600;
  line-height: 1.6;
  max-width: 800px;
}

.testimonial-controls {
  align-items: center;
  display: flex;
  gap: 0.5rem;
}

.testimonial-controls button {
  background: transparent;
  border: 0;
  color: var(--brand-primary);
  line-height: 1;
  padding: 0;
}

.testimonial-controls span {
  color: var(--brand-heading);
  font-family: var(--highlight-font-family);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.testimonial-bottom {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-top: 2.6rem;
  max-width: 760px;
}

.testimonial-stars {
  color: var(--brand-secondary);
  display: flex;
  gap: 0.28rem;
  font-size: 1.2rem;
}

.client-strip {
  background: #fff;
  padding: 6rem 0 !important;
}

.client-strip img {
  object-fit: contain;
  width: 100%;
}

.client-strip img:hover {
  filter: none;
  opacity: 1;
}

.contact-list {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.contact-list p {
  display: flex;
  gap: 0.8rem;
  margin: 0;
}

.contact-list i {
  color: var(--brand-primary);
  margin-top: 0.35rem;
}

.contact-form {
  background: #fff;
  box-shadow: var(--shadow);
  padding: 2rem;
}

.form-control {
  border: 1px solid var(--border-color);
  border-radius: 0;
  min-height: 54px;
}

.form-control:focus {
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 0.18rem rgba(42, 60, 183, 0.14);
}

.form-status {
  font-weight: 600;
  margin: 1rem 0 0;
}

.footer {
  background: var(--brand-dark);
  color: rgba(255, 255, 255, 0.76);
  padding-top: 7.5rem;
}

.footer-logo {
  display: block;
  margin-bottom: 1.45rem;
  max-width: 285px;
  width: 100%;
}

.footer-title {
  color: #fff;
  font-size: 1.777rem;
  letter-spacing: 0.08em;
  font-family: var(--highlight-font-family);
  font-weight: 600;
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
  padding-right: 14px;
}
.footer-title::after {
  content: "";
  background: var(--brand-secondary);
  height: 6px;
  position: absolute;
  right: 0;
  bottom: 6px;
  width: 6px;
}

.footer h2 {
  color: #fff;
  font-size: 2.35rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 2.35rem;
}

.footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer li {
  margin-bottom: 1.45rem;
}

.footer a {
  color: rgba(255, 255, 255, 0.76);
  font-family: var(--highlight-font-family);
  font-size: 1.1rem;
  line-height: 1.3;
  font-weight: 500;
}

.footer a:hover,
.footer a:focus {
  color: var(--brand-secondary);
}

.social-links {
  display: flex;
  gap: 0.9rem;
}

.social-links a {
  align-items: center;
  background: #10172a;
  border: 0;
  color: var(--brand-secondary);
  display: inline-flex;
  font-size: 1.05rem;
  height: 48px;
  justify-content: center;
  width: 48px;
}

.copyright-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 3rem;
  padding: 1.25rem 0;
}

.copyright-footer nav {
  display: flex;
  gap: 1rem;
  margin-top: 0.6rem;
}

.back-to-top {
  align-items: center;
  background: var(--brand-primary);
  border: 0;
  bottom: 1.2rem;
  color: #fff;
  display: inline-flex;
  height: 46px;
  justify-content: center;
  opacity: 0;
  position: fixed;
  right: 1.2rem;
  transform: translateY(16px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
  width: 46px;
  z-index: 1000;
}

.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.search-modal .modal-dialog {
  margin: 0;
  max-width: none;
  min-height: 100vh;
}

.search-modal .modal-content {
  background: rgba(0, 0, 0, 0.88);
  border: 14px solid var(--brand-primary);
  border-radius: 0;
  min-height: 100vh;
  padding: 0;
}

.search-modal .modal-header {
  border: 0;
  padding: 0;
  position: absolute;
  right: 1.4rem;
  top: 1.25rem;
  z-index: 2;
}

.search-modal .modal-title {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.search-modal .btn-close {
  background: none;
  height: 44px;
  opacity: 1;
  position: relative;
  width: 44px;
}

.search-modal .btn-close::before,
.search-modal .btn-close::after {
  background: #fff;
  content: "";
  height: 3px;
  left: 50%;
  position: absolute;
  top: 50%;
  width: 22px;
}

.search-modal .btn-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.search-modal .btn-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.search-modal .btn-close:focus {
  box-shadow: 0 0 0 0.18rem rgba(255, 255, 255, 0.25);
}

.search-modal .modal-body {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: calc(100vh - 28px);
  padding: 6rem;
}

.search-modal form {
  max-width: 640px;
  width: min(72vw, 640px);
}

.search-modal .input-group {
  align-items: center;
  border-bottom: 2px solid rgba(255, 255, 255, 0.78);
}

.search-modal .form-control {
  background: transparent;
  border: 0;
  box-shadow: none;
  color: #fff;
  font-family: "Open Sans", sans-serif;
  font-size: 3.4rem;
  font-weight: 400;
  line-height: 1.1;
  padding: 0 1rem 0.25rem 0;
}

.search-modal .form-control::placeholder {
  color: rgba(255, 255, 255, 0.76);
  opacity: 1;
}

.search-modal .btn-brand {
  background: transparent;
  border: 0;
  color: #fff;
  min-width: 56px;
  padding: 0 0 0.35rem;
}

.search-modal .btn-brand:hover,
.search-modal .btn-brand:focus {
  background: transparent;
  color: var(--brand-secondary);
}

.offcanvas {
  max-width: 380px;
}

.side-info-panel {
  --bs-offcanvas-width: min(100vw, 475px);
  background: #11182c;
  border: 0;
  box-shadow: -22px 0 70px rgba(7, 12, 25, 0.28);
  color: #fff;
  max-width: none;
}

.side-info-panel .offcanvas-body {
  overflow-y: auto;
  padding: 5.6rem 2.8rem 2rem;
}

.side-panel-close {
  align-items: center;
  background: var(--brand-primary);
  border: 0;
  color: #fff;
  display: inline-flex;
  font-size: 1.35rem;
  height: 44px;
  justify-content: center;
  position: absolute;
  right: 50px;
  top: 46px;
  width: 46px;
  z-index: 2;
}

.side-panel-close:hover,
.side-panel-close:focus {
  background: #182683;
  color: #fff;
}

.side-panel-logo {
  display: block;
  margin-bottom: 2rem;
  max-width: 382px;
  width: 100%;
}

.side-panel-intro {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.75;
  margin: 0 0 2rem;
}

.side-panel-map {
  display: block;
  margin: 0 0 2rem;
  max-width: 100%;
  opacity: 0.42;
  width: 360px;
}

.side-panel-section {
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  margin-bottom: 2.3rem;
  padding-bottom: 1.9rem;
}

.side-panel-section h2 {
  color: #fff;
  font-size: 1.75rem;
  margin-bottom: 1.45rem;
}

.side-panel-section h2::after {
  color: var(--brand-secondary);
  content: ".";
}

.side-contact-list {
  display: grid;
  gap: 1.3rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.side-contact-list li {
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  gap: 1rem;
  line-height: 1.7;
}

.side-contact-list i {
  color: var(--brand-secondary);
  flex: 0 0 16px;
  margin-top: 0.38rem;
}

.side-contact-list a {
  color: rgba(255, 255, 255, 0.9);
}

.side-contact-list a:hover,
.side-contact-list a:focus {
  color: var(--brand-secondary);
}

.side-hours dl {
  display: grid;
  gap: 1.25rem;
  margin: 0;
}

.side-hours dt {
  color: var(--brand-secondary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.34em;
  margin-bottom: 0.25rem;
  text-transform: uppercase;
}

.side-hours dd {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.side-panel-social {
  display: flex;
  gap: 0.65rem;
}

.side-panel-social a {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  display: inline-flex;
  height: 38px;
  justify-content: center;
  width: 38px;
}

.side-panel-social a:hover,
.side-panel-social a:focus {
  background: var(--brand-primary);
  border-color: var(--brand-primary);
  color: #fff;
}

.contact-page {
  background: #fff;
}

.page-banner {
  align-items: center;
  background: #f7f8fa url("../images/contact-banner.png") bottom center / cover
    no-repeat;
  display: flex;
  min-height: 466px;
}

.page-banner h1 {
  font-size: 3rem;
  margin: 0;
}

.breadcrumb-nav ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-end;
  list-style: none;
  margin: 0;
  padding: 0;
}

.breadcrumb-nav li,
.breadcrumb-nav a {
  color: var(--brand-primary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.breadcrumb-nav li + li::before {
  color: var(--brand-secondary);
  content: ".";
  margin-right: 0.75rem;
}

.contact-panel-section {
  padding: 7rem 0;
  overflow: hidden;
  position: relative;
}

.contact-panel-section > .container {
  position: relative;
  z-index: 1;
}

.contact-decor {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
  position: absolute;
  z-index: 0;
}

.contact-decor-top-left {
  background-image: url("../images/09-3.png");
  height: 530px;
  left: -125px;
  top: -110px;
  transform: rotate(-1deg);
  width: 589px;
}

.contact-decor-top-right {
  background-image: url("../images/10-3.png");
  height: 400px;
  right: -192px;
  top: 30px;
  width: 400px;
}

.contact-decor-bottom-left {
  animation: spin 34s linear infinite;
  background-image: url("../images/04-3.png");
  bottom: 5px;
  height: 320px;
  left: -118px;
  transform-origin: center;
  width: 320px;
}

.contact-page-form {
  background: var(--brand-soft);
  padding: 3rem;
}

.contact-page-form h2 {
  font-size: 3rem;
}

.contact-page-form .form-control,
.contact-page-form .form-select {
  background: #fff;
  border: 0;
  color: var(--brand-text);
  font-size: 0.92rem;
}

.contact-page-form textarea.form-control {
  min-height: 132px;
}

.bracket-kicker {
  padding-left: 0.8rem;
}

.bracket-kicker::before {
  display: block;
  left: 0;
}

.contact-info-sidebar {
  background: var(--brand-dark);
  padding: 1.4rem;
}

.contact-info-card {
  background: #0d1427;
  color: rgba(255, 255, 255, 0.64);
  padding: 1.75rem;
}

.contact-info-card + .contact-info-card {
  margin-top: 1.35rem;
}

.contact-info-card span {
  color: var(--brand-secondary);
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  margin-bottom: 0.45rem;
  text-transform: uppercase;
}

.contact-info-card h2 {
  color: #fff;
  font-size: 1.25rem;
}

.contact-info-card p {
  align-items: flex-start;
  display: flex;
  gap: 0.85rem;
  margin: 1rem 0 0;
}

.contact-info-card i {
  color: #fff;
  margin-top: 0.3rem;
}

.contact-footer {
  padding-top: 8.5rem;
}

.contact-footer .container {
  position: relative;
}

.footer-columns {
  column-gap: 3rem;
  columns: 1;
}

.footer-columns li,
.footer-post {
  break-inside: avoid;
}

.footer-columns a::before,
.contact-footer .footer li a::before {
  content: "›";
  display: inline-block;
  font-size: 1.55rem;
  line-height: 1;
  margin-right: 0.65rem;
  transform: translateY(0.08em);
}

.footer-post {
  display: grid;
  gap: 1.35rem;
  grid-template-columns: 95px minmax(0, 1fr);
  margin-bottom: 2.3rem;
}

.footer-post img {
  aspect-ratio: 1 / 0.86;
  object-fit: cover;
  width: 95px;
}

.footer-post time {
  color: var(--brand-secondary);
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.25rem;
  line-height: 1.3;
  margin-bottom: 0.7rem;
  text-transform: uppercase;
}

.footer-post a {
  color: #fff;
  display: block;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.65;
}

.footer-contact-card {
  background: var(--brand-primary);
  color: #fff;
  margin-top: -206px;
  padding: 50px 30px;
  position: relative;
}

.footer-contact-card::before {
  content: "";
  background: var(--brand-secondary);
  width: 5px;
  height: 25%;
  position: absolute;
  left: 0;
  top: 0;
}
.footer-contact-card::after {
  content: "";
  background: var(--brand-secondary);
  width: 80%;
  height: 5px;
  position: absolute;
  left: 0;
  top: 0;
}

.footer-contact-card img {
  display: block;
  margin: 0 auto 1.2rem;
  max-width: 210px;
  opacity: 1;
  width: 100%;
}

.footer-contact-card h2 {
  color: #fff;
  font-size: 1.8rem;
}

.footer-contact-card p {
  display: flex;
  gap: 0.85rem;
  margin-top: 1rem;
}

.footer-contact-card i {
  color: var(--brand-secondary);
  margin-top: 0.35rem;
}

.career-banner h1 {
  font-size: 2.75rem;
}

.archive-section {
  padding: 5.5rem 0 7rem;
}

.archive-post {
  background: #fff;
  box-shadow: 0 18px 46px rgba(18, 25, 45, 0.08);
  margin-bottom: 2.5rem;
}

.archive-post-image {
  display: block;
  overflow: hidden;
}

.archive-post-image img {
  aspect-ratio: 1.55 / 1;
  display: block;
  object-fit: cover;
  transition: transform 0.35s ease;
  width: 100%;
}

.archive-post:hover .archive-post-image img {
  transform: scale(1.035);
}

.archive-post-body {
  border-bottom: 4px solid var(--brand-secondary);
  padding: 1.35rem 1.35rem 1.5rem;
}

.post-meta {
  color: var(--brand-primary);
  display: flex;
  flex-wrap: wrap;
  font-size: 0.68rem;
  font-weight: 700;
  gap: 0.55rem;
  letter-spacing: 0.18em;
  margin-bottom: 0.45rem;
  text-transform: uppercase;
}

.post-meta span::before {
  color: var(--brand-secondary);
  content: "|";
  margin-right: 0.55rem;
}

.archive-post h2 {
  font-size: 2.25rem;
  margin-bottom: 0.7rem;
}

.archive-post h2 a {
  color: var(--brand-heading);
}

.archive-post h2 a:hover,
.archive-post h2 a:focus {
  color: var(--brand-primary);
}

.archive-post p:not(.post-meta) {
  font-size: 0.86rem;
  margin-bottom: 0.95rem;
}

.read-more-link {
  color: var(--brand-primary);
  display: inline-flex;
  font-size: 0.68rem;
  font-weight: 700;
  gap: 0.4rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.archive-sidebar {
  display: grid;
  gap: 2rem;
}

.sidebar-search {
  display: grid;
  grid-template-columns: 1fr auto;
}

.sidebar-search .form-control {
  border: 0;
  box-shadow: 0 14px 36px rgba(18, 25, 45, 0.06);
}

.sidebar-widget,
.sidebar-search {
  background: #fff;
  border-bottom: 3px solid var(--brand-secondary);
  box-shadow: 0 16px 40px rgba(18, 25, 45, 0.07);
  padding: 1.5rem;
}

.sidebar-widget h2 {
  color: var(--brand-heading);
  font-size: 1.2rem;
  margin-bottom: 1.1rem;
  position: relative;
}

.sidebar-widget h2::after {
  color: var(--brand-secondary);
  content: ".";
}

.link-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.link-list li {
  border-bottom: 1px solid var(--border-color);
}

.link-list li:last-child {
  border-bottom: 0;
}

.link-list a {
  color: var(--brand-text);
  display: block;
  font-size: 0.78rem;
  padding: 0.65rem 0;
}

.archive-list a,
.category-list a {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.comment-chip {
  background: #10182c;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.72rem;
  line-height: 1.5;
  padding: 0.65rem 0.85rem;
}

.comment-chip + .comment-chip {
  margin-top: 0.55rem;
}

.compact-search {
  display: grid;
  grid-template-columns: 1fr 40px;
  padding: 1rem;
}

.compact-search .form-control {
  border: 0;
  font-size: 0.76rem;
  min-height: 42px;
}

.compact-search button {
  background: transparent;
  border: 0;
  color: var(--brand-primary);
}

.author-widget p {
  font-size: 0.78rem;
}

.author-widget img {
  border-left: 4px solid var(--brand-primary);
  border-top: 4px solid var(--brand-primary);
  display: block;
  margin-top: 1rem;
  width: 100%;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.tag-list a {
  background: var(--brand-primary);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 0.28rem 0.45rem;
  text-transform: uppercase;
}

.tag-list a:hover,
.tag-list a:focus {
  background: #182683;
  color: #fff;
}

.latest-widget img {
  aspect-ratio: 1.45 / 1;
  display: block;
  margin-bottom: 0.9rem;
  object-fit: cover;
  width: 100%;
}

.latest-widget time {
  color: var(--brand-text);
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  margin-bottom: 0.25rem;
  text-transform: uppercase;
}

.latest-widget > a {
  color: var(--brand-heading);
  display: block;
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.35;
}

.news-archive-section {
  padding: 6rem 0 7rem;
}

.container {
  max-width: 1400px;
}

.news-archive-card {
  background: #fff;
  box-shadow: 0 18px 48px rgba(18, 25, 45, 0.08);
  height: 100%;
  transition:
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.news-archive-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.news-image-link {
  display: block;
  overflow: hidden;
}

.news-image-link img {
  aspect-ratio: 1.5 / 1;
  display: block;
  object-fit: cover;
  transition: transform 0.35s ease;
  width: 100%;
}

.news-archive-card:hover .news-image-link img {
  transform: scale(1.035);
}

.news-archive-body {
  padding: 1.9rem 1.6rem 1.65rem;
  position: relative;
}

.news-badge {
  background: var(--brand-primary);
  color: #fff;
  display: inline-block;
  font-size: 0.58rem;
  font-weight: 700;
  left: 1.6rem;
  letter-spacing: 0.26em;
  line-height: 1;
  padding: 0.55rem 0.75rem;
  position: absolute;
  text-transform: uppercase;
  top: -1.2rem;
}

.news-meta {
  color: var(--brand-text);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  margin-bottom: 0.55rem;
  text-transform: uppercase;
}

.news-archive-card h2 {
  font-size: 2rem;
  margin-bottom: 1.1rem;
}

.news-archive-card h2 a {
  color: var(--brand-heading);
}

.news-archive-card h2 a:hover,
.news-archive-card h2 a:focus {
  color: var(--brand-primary);
}

.news-pagination {
  display: flex;
  gap: 0.35rem;
  justify-content: center;
  margin-top: 3rem;
}

.news-pagination a {
  align-items: center;
  background: var(--brand-soft);
  color: var(--brand-heading);
  display: inline-flex;
  font-size: 0.85rem;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.news-pagination a.active,
.news-pagination a:hover,
.news-pagination a:focus {
  background: var(--brand-primary);
  color: #fff;
}

.service-detail-section {
  padding: 7rem 0 7.5rem;
}


.service-main-image {
  aspect-ratio: 1.5 / 1;
  display: block;
  margin-bottom: 1.4rem;
  object-fit: cover;
  width: 100%;
}

.service-detail-content h2 {
  font-size: 2.45rem;
  margin-bottom: 1rem;
}

.service-detail-content > p {
  font-size: 0.92rem;
  margin-bottom: 2rem;
}

.service-process-grid {
  margin-bottom: 3rem;
}

.service-process-card {
  background: var(--brand-soft);
  height: 100%;
  padding: 1.65rem;
}

.service-process-card h3 {
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  margin-bottom: 1.5rem;
}

.service-process-card i {
  color: var(--brand-secondary);
  font-size: 2rem;
  margin-bottom: 1.45rem;
  text-shadow: 1px 1px 0 var(--brand-heading);
}

.service-process-card p {
  font-size: 0.88rem;
  margin: 0;
}

.service-planning {
  margin-top: 0.5rem;
}

.service-planning img {
  aspect-ratio: 1.25 / 1;
  display: block;
  object-fit: cover;
  width: 100%;
}

.service-planning p {
  font-size: 0.92rem;
}

.service-planning ul {
  display: grid;
  gap: 0.65rem;
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
}

.service-planning li {
  color: var(--brand-text);
  font-size: 0.9rem;
  padding-left: 1.6rem;
  position: relative;
}

.service-planning li::before {
  color: var(--brand-secondary);
  content: "\f00c";
  font: var(--fa-font-solid);
  left: 0;
  position: absolute;
  top: 0.1rem;
}

.service-sidebar {
  display: grid;
  gap: 2rem;
}

.service-widget {
  background: #fff;
  border-bottom: 4px solid var(--brand-secondary);
  box-shadow: 0 18px 48px rgba(18, 25, 45, 0.08);
  padding: 2rem;
}

.service-widget h2,
.working-hours-card h2 {
  font-size: 1.65rem;
  margin-bottom: 1.4rem;
}

.service-widget h2::after,
.working-hours-card h2::after {
  color: var(--brand-secondary);
  content: ".";
}

.service-menu-widget nav {
  display: grid;
  gap: 1rem;
}

.service-menu-widget a {
  align-items: center;
  border: 1px solid var(--border-color);
  color: var(--brand-heading);
  display: flex;
  font-size: 0.9rem;
  justify-content: space-between;
  padding: 0.95rem 1rem;
}

.service-menu-widget a.active,
.service-menu-widget a:hover,
.service-menu-widget a:focus {
  background: var(--brand-primary);
  border-color: var(--brand-primary);
  color: #fff;
}

.working-hours-card {
  background: var(--brand-primary);
  border-bottom: 4px solid var(--brand-secondary);
  box-shadow: 0 18px 48px rgba(18, 25, 45, 0.08);
  color: #fff;
  padding: 2rem;
}

.working-hours-card h2 {
  color: #fff;
}

.working-hours-card dl {
  display: grid;
  gap: 1.3rem;
  margin: 0;
}

.working-hours-card dl > div {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
}

.working-hours-card dt,
.working-hours-card dd {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  margin: 0;
}

.service-question-card {
  background: var(--brand-dark);
  box-shadow: 0 18px 48px rgba(18, 25, 45, 0.08);
  color: #fff;
}

.service-question-card img {
  aspect-ratio: 1.6 / 1;
  display: block;
  object-fit: cover;
  width: 100%;
}

.service-question-card div {
  align-items: center;
  display: flex;
  gap: 1rem;
  padding: 1.4rem 1.6rem;
}

.service-question-card i {
  align-items: center;
  background: #fff;
  border-radius: 50%;
  color: var(--brand-primary);
  display: inline-flex;
  flex: 0 0 42px;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.service-question-card p {
  margin: 0;
}

.service-question-card strong {
  color: var(--brand-secondary);
}

.service-question-card a {
  color: #fff;
}

@media (max-width: 1199.98px) {
  .navbar-collapse {
    background: #fff;
    padding: 0.75rem 0 1rem;
  }

  .navbar-nav .nav-link {
    padding-left: 0;
    padding-right: 0;
  }

  .navbar-nav .nav-link::before,
  .navbar-nav .nav-link::after {
    display: none;
  }

  .header-actions {
    border-top: 1px solid var(--border-color);
    margin-top: 0.75rem;
  }

  .navbar-nav .nav-link,
  .icon-link-button {
    letter-spacing: 0.12em;
  }

  .footer-contact-card {
    margin-top: 0;
  }

  .footer-logo {
    max-width: 230px;
  }

  .footer h2 {
    margin-bottom: 1.5rem;
  }

  .footer a {
    font-size: 1.05rem;
  }

  .footer-post {
    grid-template-columns: 82px minmax(0, 1fr);
  }

  .footer-post img {
    width: 82px;
  }

  .footer-post time {
    font-size: 0.78rem;
    letter-spacing: 0.28rem;
  }

  .footer-post a {
    font-size: 1.05rem;
    letter-spacing: 0.04em;
    line-height: 1.45;
  }

  .archive-section {
    padding: 4.5rem 0;
  }

  .news-archive-section {
    padding: 4.5rem 0;
  }

  .service-detail-section {
    padding: 4.5rem 0;
  }

  .news-card-body {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .news-card-image span {
    left: 1.5rem;
  }

  .latest-posts-slider {
    --latest-posts-visible: 2;
  }

  .service-icon {
    top: 260px;
  }
}

@media (max-width: 991.98px) {
  .hero-content .col-lg-4,
  .hero-content .col-lg-8 {
    width: 100%;
  }

  .about-section .image-stack {
    margin: 0;
    max-width: 100%;
  }

  .about-section .primary-image {
    height: 520px;
  }

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

  .project-tile {
    height: 340px;
  }

  .service-icon {
    top: 220px;
  }
}

@media (max-width: 767.98px) {
  .site-header .navbar {
    min-height: 76px;
  }

  .site-header.is-scrolled + main {
    padding-top: 76px;
  }

  .hero-section {
    margin-top: 0;
  }

  .hero-section .carousel-item,
  .hero-section .carousel-item > .hero-bg {
    height: 640px;
    min-height: 640px;
  }

  .hero-content {
    padding: 4rem 0;
    text-align: center;
  }

  .hero-copy {
    margin: 0 auto;
    max-width: 100%;
  }

  .hero-copy h1,
  .hero-copy h2 {
    font-size: 3.8rem;
    line-height: 1.12;
  }

  .hero-section .eyebrow {
    font-size: 0.82rem;
    letter-spacing: 0.16em;
  }

  .section-padding {
    padding: 3.5rem 0;
  }

  .why-section {
    padding: 4.5rem 0;
  }

  .why-section .section-kicker {
    font-size: 0.82rem;
    letter-spacing: 0.18em;
  }

  .why-section h2 {
    font-size: 3.1rem;
  }

  .why-section .lead-text {
    font-size: 1rem;
    margin-top: 1.25rem;
  }

  .why-section .value-card {
    min-height: 320px;
  }

  .service-overview {
    padding: 4.5rem 0;
  }

  .service-overview .section-kicker {
    font-size: 0.82rem;
    letter-spacing: 0.18em;
  }

  .service-overview h2 {
    font-size: 3.1rem;
  }

  .service-overview .col-lg-5 > p {
    font-size: 1rem;
  }

  .service-overview .btn-brand {
    min-width: 180px;
  }

  .service-pattern {
    display: none;
  }

  .service-progress-list {
    max-width: 100%;
  }

  .mini-service {
    min-height: 360px;
  }

  .about-section {
    background: #eef0f3;
    padding: 4.5rem 0;
  }

  .mill-rotate-pattern {
    display: none;
  }

  .about-section .section-kicker {
    font-size: 0.82rem;
    letter-spacing: 0.18em;
  }

  .about-section h2 {
    font-size: 3.2rem;
  }

  .about-lead {
    font-size: 1rem;
  }

  .about-section .feature-box {
    min-height: auto;
    padding: 1.75rem;
  }

  .about-section .image-stack {
    padding-bottom: 118px;
  }

  .about-section .primary-image {
    height: 420px;
  }

  .about-section .experience-badge {
    gap: 1rem;
    min-height: 118px;
    padding: 1.4rem;
  }

  .about-section .experience-badge strong {
    font-size: 4rem;
  }

  .about-section .experience-badge span {
    font-size: 0.9rem;
    letter-spacing: 0.18em;
  }

  .services-section {
    background:
      url("../images/04-3.png") left -14rem top -5rem / 340px auto no-repeat,
      #fff;
    padding: 4.5rem 0;
  }

  .services-section .section-kicker {
    font-size: 0.82rem;
    letter-spacing: 0.18em;
  }

  .services-section h2 {
    font-size: 3.1rem;
  }

  .service-body {
    padding: 2.8rem 1.6rem 1.6rem;
  }

  .service-icon {
    height: 76px;
    right: 40px;
    top: 196px;
    width: 76px;
  }

  .service-icon img {
    max-height: 44px;
    max-width: 44px;
  }

  .service-body span,
  .service-body a {
    letter-spacing: 0.18em;
  }

  .stats-band {
    padding: 3.5rem 0;
  }

  .testimonials {
    background: #f3f5f8;
  }

  .testimonials .section-kicker {
    font-size: 0.82rem;
    letter-spacing: 0.18em;
  }

  .testimonials h2 {
    font-size: 3.1rem;
  }

  .testimonial-media {
    min-height: 360px;
  }

  .testimonial-play {
    left: 50%;
  }

  .testimonial-panel {
    min-height: auto;
    padding: 3.5rem 1.25rem;
  }

  .testimonial-people {
    gap: 1rem;
    margin-bottom: 2rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
  }

  .testimonial-person {
    flex-basis: 112px;
  }

  .testimonial-person img {
    height: 92px;
    width: 92px;
  }

  .testimonial-card {
    padding: 0;
  }

  .testimonial-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
  }

  .projects-section {
    padding-top: 4.5rem;
  }

  .projects-section .projects-heading {
    margin-bottom: 3rem;
  }

  .projects-section .section-kicker {
    font-size: 0.82rem;
    letter-spacing: 0.18em;
  }

  .projects-section h2 {
    font-size: 3.1rem;
  }

  .latest-posts-section {
    background:
      url("../images/09-3.png") left -18rem top -2rem / 560px auto no-repeat,
      #fff;
    padding: 4.5rem 0;
  }

  .latest-posts-section .latest-posts-heading {
    margin-bottom: 3rem;
  }

  .latest-posts-section .section-kicker {
    font-size: 0.82rem;
    letter-spacing: 0.18em;
  }

  .latest-posts-section h2 {
    font-size: 3.1rem;
  }

  .news-card-body {
    padding: 2.5rem 1.35rem 2rem;
  }

  .news-card-image span {
    font-size: 0.72rem;
    left: 1.35rem;
    letter-spacing: 0.24em;
  }

  .news-meta {
    font-size: 0.82rem;
    letter-spacing: 0.2em;
  }

  .latest-posts-section .news-card h3 {
    font-size: 1.75rem;
  }

  .latest-posts-section .news-card a {
    letter-spacing: 0.22em;
  }

  .latest-posts-slider {
    --latest-posts-gap: 1rem;
    --latest-posts-visible: 1;
  }

  .project-mosaic {
    grid-template-columns: 1fr;
  }

  .project-tile,
  .project-tile-wide {
    grid-column: span 1;
  }

  .project-tile {
    height: 320px;
  }

  .project-tile-content {
    bottom: 1rem;
    left: 1rem;
    padding: 1rem;
    width: calc(100% - 2rem);
  }

  .project-tile-title {
    font-size: 1.2rem;
    margin: 0.65rem 0 1rem;
  }

  .project-tile-kicker,
  .project-tile-link {
    font-size: 0.78rem;
    letter-spacing: 0.26em;
  }

  .contact-form {
    padding: 1.25rem;
  }

  .experience-badge {
    align-items: flex-start;
    bottom: 0.75rem;
    left: 0.75rem;
  }

  .page-banner {
    min-height: 230px;
    text-align: center;
  }

  .breadcrumb-nav ol {
    justify-content: center;
    margin-top: 1rem;
  }

  .contact-panel-section {
    padding: 3.5rem 0;
  }

  .contact-decor {
    display: none;
  }

  .search-modal .modal-content {
    border-width: 8px;
  }

  .search-modal .modal-header {
    right: 0.75rem;
    top: 0.65rem;
  }

  .search-modal .modal-body {
    min-height: calc(100vh - 16px);
    padding: 2rem;
  }

  .search-modal form {
    width: 100%;
  }

  .contact-info-sidebar {
    padding: 1rem;
  }

  .static-map {
    height: 420px;
  }

  .map-mini {
    right: 1rem;
    width: 190px;
  }

  .footer-columns {
    columns: 1;
  }

  .footer-logo {
    max-width: 220px;
  }

  .social-links a {
    height: 42px;
    width: 42px;
  }

  .footer-post {
    grid-template-columns: 76px minmax(0, 1fr);
  }

  .footer-post img {
    width: 76px;
  }

  .archive-section {
    padding: 3.5rem 0;
  }

  .archive-post-body,
  .sidebar-widget {
    padding: 1.2rem;
  }

  .post-meta {
    letter-spacing: 0.1em;
  }

  .sidebar-search {
    padding: 1rem;
  }

  .news-archive-section {
    padding: 3.5rem 0;
  }

  .news-archive-body {
    padding: 1.65rem 1.2rem 1.35rem;
  }

  .news-meta {
    letter-spacing: 0.16em;
  }

  .service-detail-section {
    padding: 3.5rem 0;
  }

  .service-widget,
  .working-hours-card {
    padding: 1.35rem;
  }

  .service-process-card {
    padding: 1.35rem;
  }

  .working-hours-card dl > div {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-decor-bottom-left {
    animation: none;
  }
}
