:root {
  --ink: #102033;
  --muted: #526171;
  --line: rgba(16, 32, 51, 0.14);
  --surface: rgba(255, 255, 255, 0.72);
  --surface-strong: rgba(255, 255, 255, 0.94);
  --logo-blue: #12a9d6;
  --logo-yellow: #fff200;
  --logo-navy: #2c2b91;
  --logo-outline: #1d1d1d;
  --logo-yellow-soft: #fff6a8;
  --logo-blue-soft: rgba(18, 169, 214, 0.08);
  --logo-navy-soft: rgba(44, 43, 145, 0.1);
  --accent: var(--logo-blue);
  --accent-dark: var(--logo-navy);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family:
    "Nunito Sans", "Avenir Next", Inter, ui-rounded, ui-sans-serif, system-ui,
    -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #ffffff;
}

body.is-page-loading {
  overflow: hidden;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: #ffffff;
  opacity: 1;
  visibility: visible;
  transition:
    opacity 260ms ease,
    visibility 260ms ease;
}

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

.page-loader-content {
  display: grid;
  justify-items: center;
  gap: 14px;
}

.page-loader-spinner {
  width: 48px;
  height: 48px;
  border: 3px solid rgba(44, 43, 145, 0.12);
  border-top-color: var(--logo-navy);
  border-radius: 999px;
  animation: pageLoaderSpin 1.05s cubic-bezier(0.58, 0.05, 0.42, 0.95) infinite;
}

.page-loader-text {
  color: var(--logo-navy);
  font-size: 0.92rem;
  font-weight: 650;
  letter-spacing: 0;
}

@media (prefers-color-scheme: dark) {
  .page-loader {
    background: #000000;
  }

  .page-loader-spinner {
    border-color: rgba(255, 255, 255, 0.18);
    border-top-color: var(--logo-blue);
  }

  .page-loader-text {
    color: #ffffff;
  }
}

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

a {
  color: inherit;
  text-decoration: none;
}

img[data-cms-image="true"] {
  max-width: 100%;
  object-fit: cover;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  padding: 0;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin: 0 auto;
  padding: 10px clamp(20px, 4vw, 64px);
  background: #ffffff;
  border: 0;
  border-radius: 0;
  box-shadow: 0 10px 28px rgba(16, 32, 51, 0.06);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  min-width: 128px;
}

geotest-navbar-logo {
  display: block;
  width: clamp(126px, 12.5vw, 160px);
}

.brand-logo {
  display: block;
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
}

.navbar-dot-icon .dot-blue,
.navbar-dot-icon .dot-yellow {
  stroke: #1d1d1d;
  stroke-width: 1.45;
}

.navbar-logo-text {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 800;
  letter-spacing: 0;
  paint-order: stroke fill;
  stroke: rgba(29, 29, 29, 0.82);
  stroke-width: 0.9px;
  stroke-linejoin: round;
}

.navbar-geotest-word {
  fill: var(--logo-navy);
  font-size: 40px;
}

.navbar-engineering-word {
  fill: var(--logo-blue);
  font-size: 32px;
}

.navbar-logo-line {
  fill: var(--logo-yellow);
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.4vw, 30px);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(4px, 1vw, 12px);
  padding: 0;
  margin: 0;
  list-style: none;
}

.nav-links a,
.dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 40px;
  padding: 0 12px;
  border: 0;
  border-radius: 6px;
  color: #0c2531;
  font: inherit;
  font-size: 0.96rem;
  font-weight: 650;
  letter-spacing: 0;
  background: transparent;
  cursor: pointer;
  transition:
    background-color 160ms ease,
    color 160ms ease;
}

.nav-links a:hover,
.dropdown-trigger:hover,
.nav-links a:focus-visible,
.dropdown-trigger:focus-visible {
  color: var(--logo-blue);
  background: transparent;
  outline: none;
}

.has-dropdown {
  position: relative;
}

.dropdown-trigger svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  transition: transform 160ms ease;
}

.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu,
.has-dropdown.is-open .dropdown-menu {
  display: grid;
}

.has-dropdown:hover .dropdown-trigger svg,
.has-dropdown:focus-within .dropdown-trigger svg,
.has-dropdown.is-open .dropdown-trigger svg {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  display: none;
  min-width: 315px;
  padding: 8px;
  margin: 0;
  list-style: none;
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(16, 32, 51, 0.18);
}

.dropdown-menu a {
  justify-content: flex-start;
  width: 100%;
  min-height: 42px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 560;
  white-space: normal;
}

.language-picker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 40px;
  padding: 0 8px 0 12px;
  color: #0c2531;
  font-size: 0.9rem;
  font-weight: 650;
  border: 1px solid rgba(18, 169, 214, 0.32);
  border-radius: 999px;
  background: var(--logo-blue-soft);
  transition:
    border-color 160ms ease,
    background-color 160ms ease,
    color 160ms ease;
}

.language-picker select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  min-height: 30px;
  padding: 0 10px;
  color: var(--ink);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 650;
  border: 0;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.86);
  cursor: pointer;
}

.language-picker-label {
  color: #536171;
  font-size: 0.78rem;
  font-weight: 680;
  line-height: 1;
  white-space: nowrap;
}

.language-picker select::-ms-expand {
  display: none;
}

.language-picker:hover,
.language-picker:focus-within {
  color: var(--logo-blue);
  border-color: var(--logo-blue);
  background: rgba(18, 169, 214, 0.16);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(16, 32, 51, 0.14);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.65);
  cursor: pointer;
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.nav-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
  border-radius: 999px;
  transform-origin: center;
  transition:
    transform 220ms cubic-bezier(0.2, 0.78, 0.22, 1),
    opacity 160ms ease,
    background-color 180ms ease;
}

.nav-toggle.is-active,
.nav-toggle[aria-expanded="true"] {
  border-color: rgba(44, 43, 145, 0.2);
  background: rgba(18, 169, 214, 0.08);
  box-shadow: 0 10px 28px rgba(18, 169, 214, 0.12);
}

.nav-toggle.is-active span,
.nav-toggle[aria-expanded="true"] span {
  background: var(--logo-navy);
}

.nav-toggle.is-active span:nth-child(1),
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-active span:nth-child(2),
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle.is-active span:nth-child(3),
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero-section {
  display: grid;
  place-items: start center;
  min-height: 53vh;
  padding: 108px clamp(18px, 4vw, 56px) 24px;
  overflow: hidden;
  background: #ffffff;
}

.hero-visual {
  display: grid;
  place-items: center;
  width: 100%;
  max-width: 1040px;
  margin-top: clamp(34px, 5vw, 64px);
  box-sizing: border-box;
}

.hero-tagline {
  max-width: 96vw;
  margin: 10px 0 0;
  color: #102033;
  font-size: clamp(1.35rem, 2.7vw, 2.25rem);
  font-weight: 420;
  line-height: 1.08;
  letter-spacing: 0;
  text-align: center;
  white-space: nowrap;
  opacity: 0;
  filter: blur(5px);
  transform: translateY(18px);
  animation: heroTaglineReveal 520ms cubic-bezier(0.2, 0.78, 0.22, 1) 2.52s both;
}

.hero-service-icons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 2.1vw, 24px);
  align-items: center;
  width: min(680px, 94vw);
  padding: 0;
  margin: 14px 0 0;
  list-style: none;
}

.service-icon-item {
  display: grid;
  place-items: center;
  min-height: 92px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  opacity: 0;
  perspective: 500px;
  --icon-start-x: 0;
  --icon-start-y: 18px;
  transform: translate(var(--icon-start-x), var(--icon-start-y)) scale(0.94);
  animation: iconDirectionalBounce 720ms cubic-bezier(0.2, 0.78, 0.22, 1) both;
  transition:
    filter 180ms ease,
    transform 180ms ease;
}

.service-icon-item:hover {
  filter: saturate(1.06) contrast(1.03);
  transform: translateY(-3px);
}

.service-icon-item:nth-child(1) {
  --icon-start-x: -54px;
  --icon-start-y: 0;
  animation-delay: 2.92s;
}

.service-icon-item:nth-child(2) {
  --icon-start-x: 0;
  --icon-start-y: -54px;
  animation-delay: 3.02s;
}

.service-icon-item:nth-child(3) {
  --icon-start-x: 0;
  --icon-start-y: 54px;
  animation-delay: 3.12s;
}

.service-icon-item:nth-child(4) {
  --icon-start-x: -54px;
  --icon-start-y: 0;
  animation-delay: 3.22s;
}

.service-icon {
  display: block;
  width: 82px;
  height: 82px;
  overflow: visible;
  filter:
    drop-shadow(0 16px 16px rgba(29, 29, 29, 0.18))
    drop-shadow(0 4px 0 rgba(255, 255, 255, 0.68));
  transform: rotateX(0.01deg);
  transition: transform 180ms ease;
}

.service-image-icon {
  width: 104px;
  height: 68px;
  border-radius: 12px;
  overflow: hidden;
  object-fit: cover;
  object-position: center;
  clip-path: inset(0 round 12px);
  transform: translateZ(0);
  -webkit-mask-image: -webkit-radial-gradient(#ffffff, #000000);
}

.service-icon-item:hover .service-icon {
  transform: rotateX(0.01deg) scale(1.045);
}

.what-we-do-section {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 760px;
  padding: clamp(84px, 12vw, 138px) clamp(20px, 5vw, 72px);
  overflow: hidden;
  color: #ffffff;
}

.what-we-do-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/images/what-we-do-soil.webp") center / cover no-repeat;
  transform: none;
  transform-origin: bottom center;
  will-change: transform, opacity, filter;
  z-index: 0;
}

.what-we-do-content {
  position: relative;
  z-index: 1;
  width: min(980px, calc(100vw - clamp(40px, 10vw, 144px)));
  margin: 0 auto;
  text-align: center;
}

.motion-ready .what-we-do-section::before {
  opacity: 0;
  filter: blur(5px);
  transform: translateY(26%) scale(1.04);
}

.motion-ready .what-we-do-section .what-we-do-content h2,
.motion-ready .what-we-do-section .what-we-do-copy {
  opacity: 0;
  transform: translateY(34px);
}

.motion-ready .what-we-do-section.is-visible::before {
  animation: whatImageRise 820ms cubic-bezier(0.18, 0.82, 0.24, 1) both;
}

.motion-ready .what-we-do-section.is-visible .what-we-do-content h2 {
  animation: whatTextRise 560ms cubic-bezier(0.2, 0.78, 0.22, 1) 560ms both;
}

.motion-ready .what-we-do-section.is-visible .what-we-do-copy {
  animation: whatTextRise 620ms cubic-bezier(0.2, 0.78, 0.22, 1) 720ms both;
}

.what-we-do-content h2 {
  margin: 0 0 20px;
  font-size: clamp(2.6rem, 6vw, 5.7rem);
  font-weight: 760;
  line-height: 0.9;
  letter-spacing: 0;
  text-shadow: 0 8px 34px rgba(0, 0, 0, 0.45);
}

.what-we-do-copy {
  display: grid;
  gap: 20px;
  width: min(890px, 100%);
  margin: 0 auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.what-we-do-copy p {
  margin: 0;
  font-size: clamp(1rem, 1.55vw, 1.22rem);
  font-weight: 430;
  line-height: 1.78;
  text-wrap: pretty;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

.recognition-section {
  display: grid;
  place-items: center;
  padding: clamp(72px, 8vw, 118px) clamp(20px, 5vw, 72px);
  background: #ffffff;
}

.recognition-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  align-items: stretch;
  width: min(1120px, 100%);
  min-height: 380px;
  border-radius: 12px;
  box-shadow:
    0 30px 80px rgba(16, 32, 51, 0.14),
    0 10px 24px rgba(44, 43, 145, 0.08);
}

.recognition-media {
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  background: var(--logo-yellow-soft);
  border-radius: 10px 0 0 10px;
}

.recognition-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  object-position: center;
  transform: scale(1.012);
}

.motion-ready .recognition-media img {
  opacity: 0;
  transform: translateY(28px) scale(1.06);
  filter: saturate(0.9) contrast(0.95);
}

.motion-ready .recognition-section.is-visible .recognition-media img {
  animation:
    recognitionImageReveal 900ms cubic-bezier(0.2, 0.86, 0.22, 1) forwards,
    recognitionImageDrift 8s ease-in-out 900ms infinite alternate;
}

@keyframes recognitionImageReveal {
  to {
    opacity: 1;
    filter: saturate(1) contrast(1);
    transform: translateY(0) scale(1.025);
  }
}

@keyframes recognitionImageDrift {
  from {
    transform: translate3d(-8px, 0, 0) scale(1.025);
  }

  to {
    transform: translate3d(8px, -6px, 0) scale(1.055);
  }
}

.recognition-copy {
  display: grid;
  align-content: center;
  padding: clamp(44px, 5vw, 72px) clamp(34px, 4.8vw, 68px);
  background: #eef7fb;
  border-radius: 0 10px 10px 0;
}

.recognition-copy h2 {
  margin: 0 0 8px;
  color: #050608;
  font-size: clamp(2rem, 3.6vw, 3rem);
  font-weight: 780;
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
}

.motion-ready .recognition-copy h2,
.motion-ready .recognition-copy p {
  opacity: 0;
  transform: translateY(18px);
  filter: blur(6px);
}

.motion-ready .recognition-section.is-visible .recognition-copy h2 {
  animation: recognitionTextReveal 720ms cubic-bezier(0.2, 0.86, 0.22, 1) 180ms forwards;
}

.motion-ready .recognition-section.is-visible .recognition-copy p {
  animation: recognitionTextReveal 760ms cubic-bezier(0.2, 0.86, 0.22, 1) 320ms forwards;
}

@keyframes recognitionTextReveal {
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

.recognition-copy p {
  max-width: 55ch;
  margin: 0;
  color: #11151b;
  font-size: clamp(1rem, 1.45vw, 1.16rem);
  font-weight: 420;
  line-height: 1.45;
  letter-spacing: 0.02em;
}

.services-overview-section {
  padding: clamp(64px, 7vw, 104px) clamp(20px, 5vw, 72px) 0;
  background: #ffffff;
  color: #050608;
}

.services-overview-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.services-overview-inner h2 {
  margin: 0 0 clamp(24px, 3.4vw, 42px);
  color: #050608;
  font-size: clamp(2rem, 3.6vw, 3rem);
  font-weight: 780;
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
}

.services-overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  column-gap: clamp(78px, 11vw, 170px);
  row-gap: clamp(34px, 4.3vw, 54px);
  width: min(1020px, 100%);
}

.service-overview-item {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  align-items: center;
  justify-items: start;
  gap: 26px;
}

.service-overview-link {
  border-radius: 8px;
  transition:
    background-color 160ms ease,
    transform 160ms ease;
}

.service-overview-link:hover,
.service-overview-link:focus-visible {
  background: var(--logo-blue-soft);
  outline: none;
  transform: translateY(-4px);
}

.motion-ready .service-overview-item {
  opacity: 0;
  transform: translateY(26px);
  filter: blur(5px);
}

.motion-ready .services-overview-section.is-visible .service-overview-item {
  animation: serviceCardReveal 680ms cubic-bezier(0.2, 0.86, 0.22, 1) forwards;
}

.motion-ready .services-overview-section.is-visible .service-overview-item:nth-child(2) {
  animation-delay: 90ms;
}

.motion-ready .services-overview-section.is-visible .service-overview-item:nth-child(3) {
  animation-delay: 180ms;
}

.motion-ready .services-overview-section.is-visible .service-overview-item:nth-child(4) {
  animation-delay: 270ms;
}

@keyframes serviceCardReveal {
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

.service-overview-icon {
  display: grid;
  place-items: center;
  justify-self: center;
  width: 72px;
  height: 72px;
  color: var(--logo-yellow);
  background: var(--logo-navy);
  border: 2px solid var(--logo-outline);
  border-radius: 50%;
  box-shadow: 0 12px 28px rgba(44, 43, 145, 0.18);
  transition:
    background-color 180ms ease,
    color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.service-overview-icon svg {
  display: block;
  width: 46px;
  height: 46px;
}

.service-overview-icon path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.75;
  vector-effect: non-scaling-stroke;
}

.service-overview-link:hover .service-overview-icon,
.service-overview-link:focus-visible .service-overview-icon {
  color: var(--logo-navy);
  background: var(--logo-yellow);
  transform: scale(1.04);
  box-shadow: 0 14px 32px rgba(255, 242, 0, 0.22);
}

.service-overview-item h3 {
  margin: 0;
  max-width: 25ch;
  color: #050608;
  font-size: clamp(1.08rem, 1.45vw, 1.34rem);
  font-weight: 440;
  line-height: 1.05;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.services-overview-media {
  width: min(1050px, 100%);
  margin: clamp(52px, 6vw, 74px) auto 0;
  overflow: hidden;
  border-radius: 10px 10px 0 0;
  background: var(--logo-yellow-soft);
}

.services-overview-media img {
  display: block;
  width: 100%;
  aspect-ratio: 1458 / 516;
  height: auto;
  object-fit: cover;
  object-position: center;
}

.motion-ready .services-overview-media img {
  opacity: 0;
  transform: translateY(64px) scale(1.02);
  filter: saturate(0.92) contrast(0.96);
}

.motion-ready .services-overview-section.is-visible .services-overview-media img {
  animation: servicesImageRise 860ms cubic-bezier(0.2, 0.86, 0.22, 1) 160ms forwards;
}

@keyframes servicesImageRise {
  to {
    opacity: 1;
    filter: saturate(1) contrast(1);
    transform: translateY(0) scale(1);
  }
}

.more-about-section {
  padding: clamp(76px, 8vw, 118px) clamp(20px, 5vw, 72px);
  background: #eef7fb;
  color: #050608;
}

.more-about-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.more-about-inner h2 {
  margin: 0 0 clamp(28px, 3.6vw, 46px);
  color: #050608;
  font-size: clamp(2.8rem, 5.8vw, 5.05rem);
  font-weight: 650;
  line-height: 0.88;
  letter-spacing: 0;
  text-transform: uppercase;
}

.more-about-layout {
  display: grid;
  grid-template-columns: minmax(330px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(42px, 6vw, 72px);
  align-items: center;
}

.more-about-list {
  display: grid;
  gap: 24px;
}

.more-about-item {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  border-radius: 10px;
  isolation: isolate;
  box-shadow: 0 10px 26px rgba(16, 32, 51, 0);
  transition:
    background-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms cubic-bezier(0.2, 0.78, 0.22, 1);
}

.more-about-item::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(18, 169, 214, 0.1), rgba(255, 242, 0, 0.12)),
    #ffffff;
  opacity: 0;
  transform: scaleX(0.72);
  transform-origin: left center;
  transition:
    opacity 220ms ease,
    transform 260ms cubic-bezier(0.2, 0.78, 0.22, 1);
}

.more-about-item:hover {
  box-shadow: 0 14px 34px rgba(16, 32, 51, 0.08);
  transform: translateY(-4px);
}

.more-about-item[open] {
  background: #f7fcff;
  box-shadow:
    0 18px 44px rgba(18, 169, 214, 0.14),
    0 6px 16px rgba(44, 43, 145, 0.08);
  transform: translateY(-4px);
}

.more-about-item[open]::before {
  opacity: 1;
  transform: scaleX(1);
}

.more-about-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 76px;
  padding: 0 22px;
  color: #24262b;
  font-size: clamp(1.12rem, 1.65vw, 1.45rem);
  font-weight: 650;
  line-height: 1.18;
  list-style: none;
  cursor: pointer;
  transition:
    color 180ms ease,
    padding-left 220ms cubic-bezier(0.2, 0.78, 0.22, 1);
}

.more-about-item[open] summary {
  color: var(--logo-navy);
  padding-left: 28px;
}

.more-about-item summary::-webkit-details-marker {
  display: none;
}

.more-about-item summary::after {
  content: "+";
  flex: 0 0 auto;
  color: #2c2b91;
  font-size: 1.2rem;
  font-weight: 650;
  transition:
    color 180ms ease,
    transform 220ms cubic-bezier(0.2, 0.78, 0.22, 1);
}

.more-about-item[open] summary::after {
  content: "-";
  color: var(--logo-blue);
  transform: rotate(180deg) scale(1.08);
}

.more-about-item p {
  margin: -8px 0 0;
  padding: 0 22px 22px;
  color: #3d424a;
  font-size: 0.98rem;
  font-weight: 420;
  line-height: 1.52;
}

.motion-ready .more-about-item {
  opacity: 0;
  transform: translateY(24px);
  filter: blur(5px);
}

.motion-ready .more-about-section.is-visible .more-about-item {
  animation: moreAboutCardReveal 660ms cubic-bezier(0.2, 0.86, 0.22, 1) forwards;
}

.motion-ready .more-about-section.is-visible .more-about-item:nth-child(2) {
  animation-delay: 80ms;
}

.motion-ready .more-about-section.is-visible .more-about-item:nth-child(3) {
  animation-delay: 160ms;
}

.motion-ready .more-about-section.is-visible .more-about-item:nth-child(4) {
  animation-delay: 240ms;
}

.motion-ready .more-about-section.is-visible .more-about-item:nth-child(5) {
  animation-delay: 320ms;
}

.more-about-item[open] p {
  animation: moreAboutDropdownReveal 320ms cubic-bezier(0.2, 0.78, 0.22, 1) both;
}

@keyframes moreAboutCardReveal {
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

@keyframes moreAboutDropdownReveal {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.more-about-media {
  margin: 0;
  overflow: hidden;
  border-radius: 10px;
  background: var(--logo-yellow-soft);
}

.more-about-media img {
  display: block;
  width: 100%;
  aspect-ratio: 790 / 528;
  height: auto;
  object-fit: cover;
  object-position: center;
}

.motion-ready .more-about-media img {
  opacity: 0;
  transform: translateY(42px) scale(1.04);
  filter: saturate(0.9) contrast(0.96);
}

.motion-ready .more-about-section.is-visible .more-about-media img {
  animation:
    moreAboutImageReveal 860ms cubic-bezier(0.2, 0.86, 0.22, 1) 130ms forwards,
    moreAboutImageDrift 9s ease-in-out 990ms infinite alternate;
}

@keyframes moreAboutImageReveal {
  to {
    opacity: 1;
    filter: saturate(1) contrast(1);
    transform: translateY(0) scale(1.015);
  }
}

@keyframes moreAboutImageDrift {
  from {
    transform: translate3d(-6px, 0, 0) scale(1.015);
  }

  to {
    transform: translate3d(6px, -5px, 0) scale(1.045);
  }
}

.about-page-main {
  padding-top: 86px;
  overflow: hidden;
  background: #ffffff;
}

.about-page-inner,
.about-mission-inner {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
}

.about-intro-section {
  padding: clamp(48px, 6vw, 76px) 0 clamp(54px, 5.8vw, 82px);
}

.about-logo-kicker {
  margin: 0 0 36px;
  color: rgba(44, 43, 145, 0.28);
  font-size: 0.76rem;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about-intro-section h1 {
  margin: 0 0 24px;
  color: #050608;
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  font-weight: 560;
  line-height: 1.02;
  letter-spacing: 0;
}

.about-intro-section p:not(.about-logo-kicker) {
  max-width: 1100px;
  margin: 0;
  color: #242c35;
  font-size: clamp(1.02rem, 1.35vw, 1.22rem);
  font-weight: 400;
  line-height: 1.58;
}

.about-mission-section {
  position: relative;
  min-height: clamp(620px, 58vw, 760px);
  padding: clamp(64px, 8vw, 92px) 0;
  color: #ffffff;
  background:
    radial-gradient(circle at 72% 24%, rgba(255, 242, 0, 0.18), transparent 26%),
    radial-gradient(circle at 70% 86%, rgba(18, 169, 214, 0.28), transparent 36%),
    linear-gradient(135deg, #102033 0%, #2c2b91 100%);
}

.about-mission-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 242, 0, 0.12), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 18%);
}

.about-mission-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.78fr);
  align-items: start;
  gap: clamp(44px, 7vw, 110px);
}

.about-mission-copy {
  display: grid;
  gap: clamp(54px, 7vw, 86px);
  max-width: 580px;
}

.about-statement h2 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: clamp(2rem, 3.7vw, 3.15rem);
  font-weight: 560;
  line-height: 1.04;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.about-statement p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  font-weight: 400;
  line-height: 1.58;
}

.about-structure-figure {
  position: relative;
  align-self: end;
  justify-self: end;
  width: min(520px, 100%);
  margin: -150px 0 -92px;
  animation: aboutStructureRise 900ms cubic-bezier(0.16, 0.88, 0.28, 1) 180ms both;
}

.about-structure-figure::before {
  content: "";
  position: absolute;
  inset: 8% 8% auto;
  height: 36%;
  z-index: -1;
  background: radial-gradient(circle, rgba(255, 242, 0, 0.22), transparent 62%);
  filter: blur(18px);
}

.about-structure-figure img {
  display: block;
  width: 100%;
  height: auto;
  mix-blend-mode: screen;
  opacity: 0.82;
}

@keyframes aboutStructureRise {
  0% {
    transform: translateY(160px);
  }

  100% {
    transform: translateY(0);
  }
}

.about-work-section {
  position: relative;
  padding: clamp(64px, 8vw, 104px) 0;
}

.about-work-section-dark {
  color: #ffffff;
  background:
    linear-gradient(120deg, rgba(255, 242, 0, 0.12) 0 18%, transparent 18% 100%),
    linear-gradient(135deg, #102033 0%, #2c2b91 58%, #0b84ad 100%);
  background-size: 180% 180%;
  animation: aboutDarkColorFlow 13s ease-in-out infinite alternate;
}

@keyframes aboutDarkColorFlow {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 100% 50%;
  }
}

.about-work-section-light {
  color: var(--ink);
  background:
    linear-gradient(120deg, rgba(18, 169, 214, 0.06) 0 22%, transparent 22% 100%),
    linear-gradient(135deg, #fbfeff 0%, #f1fbff 45%, #fffde9 100%);
  background-size: 180% 180%;
  animation: aboutLightColorFlow 12s ease-in-out infinite alternate;
}

@keyframes aboutLightColorFlow {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 100% 50%;
  }
}

.about-work-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.78fr);
  gap: clamp(44px, 7vw, 92px);
  align-items: center;
}

.about-work-copy {
  max-width: 650px;
}

.about-work-copy h2,
.about-partner-section h2 {
  margin: 0 0 clamp(24px, 3vw, 36px);
  font-size: clamp(2rem, 4vw, 3.45rem);
  font-weight: 560;
  line-height: 1.02;
  letter-spacing: 0;
  text-transform: uppercase;
}

.about-work-copy p {
  margin: 0 0 18px;
  font-size: clamp(1rem, 1.28vw, 1.16rem);
  font-weight: 400;
  line-height: 1.62;
}

.about-work-copy p:last-child {
  margin-bottom: 0;
}

.about-work-section-dark .about-work-copy p {
  color: rgba(255, 255, 255, 0.9);
}

.about-work-section-light .about-work-copy p {
  color: #263544;
}

.about-work-copy strong {
  font-weight: 680;
}

.about-work-media {
  margin: 0;
  justify-self: end;
  overflow: hidden;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: 0 24px 52px rgba(16, 32, 51, 0.2);
}

.about-work-media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.about-work-media-wide {
  width: min(520px, 100%);
}

.about-work-media-wide img {
  aspect-ratio: 628 / 419;
}

.about-work-media-portrait {
  width: min(360px, 100%);
}

.about-work-media-portrait img {
  aspect-ratio: 406 / 541;
}

.about-partner-section {
  padding: clamp(58px, 7vw, 88px) 0;
  color: #ffffff;
  background: #2c2b91;
}

.about-partner-inner {
  max-width: 1120px;
}

.about-partner-section h2 {
  max-width: 980px;
}

.about-partner-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: start;
}

.about-partner-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  font-weight: 400;
  line-height: 1.62;
}

.about-partner-action {
  display: grid;
  justify-items: start;
  gap: 24px;
}

.about-partner-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 8px;
  background: var(--logo-yellow);
  color: var(--logo-navy);
  font-size: 0.98rem;
  font-weight: 680;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
  transition:
    background-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms cubic-bezier(0.2, 0.78, 0.22, 1);
}

.about-partner-button:hover,
.about-partner-button:focus-visible {
  background: #fff78a;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
  transform: translateY(-2px);
}

.custom-project-section {
  padding: clamp(76px, 8vw, 116px) clamp(20px, 5vw, 72px);
  background: #ffffff;
  color: #050608;
}

.custom-project-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.custom-project-top {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(330px, 0.82fr);
  gap: clamp(48px, 7vw, 86px);
  align-items: start;
}

.custom-project-media {
  margin: 0;
  overflow: hidden;
  border-radius: 2px;
  background: var(--logo-blue-soft);
}

.custom-project-media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  object-position: center;
}

.motion-ready .custom-project-media img {
  opacity: 0;
  transform: translateX(76px) scale(1.03);
  filter: saturate(0.92) contrast(0.96);
}

.motion-ready .custom-project-top.is-visible .custom-project-media img {
  animation: customProjectImageFromRight 860ms cubic-bezier(0.2, 0.86, 0.22, 1) forwards;
}

@keyframes customProjectImageFromRight {
  to {
    opacity: 1;
    filter: saturate(1) contrast(1);
    transform: translateX(0) scale(1);
  }
}

.custom-project-copy {
  display: grid;
  align-content: start;
  justify-items: start;
  min-height: 100%;
  padding-top: 4px;
}

.motion-ready .custom-project-copy h2,
.motion-ready .custom-project-note,
.motion-ready .custom-project-button {
  opacity: 0;
  transform: translateY(24px);
  filter: blur(5px);
}

.motion-ready .custom-project-top.is-visible .custom-project-copy h2,
.motion-ready .custom-project-top.is-visible .custom-project-note,
.motion-ready .custom-project-top.is-visible .custom-project-button {
  animation: customProjectCardReveal 680ms cubic-bezier(0.2, 0.86, 0.22, 1) forwards;
}

.motion-ready .custom-project-top.is-visible .custom-project-note {
  animation-delay: 120ms;
}

.motion-ready .custom-project-top.is-visible .custom-project-button {
  animation-delay: 220ms;
}

@keyframes customProjectCardReveal {
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

.custom-project-copy h2,
.faq-layout h2 {
  margin: 0;
  color: #050608;
  font-size: clamp(2rem, 3.6vw, 3rem);
  font-weight: 780;
  line-height: 0.88;
  letter-spacing: 0;
  text-transform: uppercase;
}

#custom-project-title {
  max-width: 18ch;
  font-size: clamp(1.6rem, 2.55vw, 2.25rem);
  font-weight: 620;
  line-height: 1.02;
}

.custom-project-note {
  width: min(410px, 100%);
  margin-top: clamp(62px, 8vw, 92px);
  padding: clamp(28px, 3.2vw, 42px);
  background: #eef7fb;
  border-radius: 10px;
}

.custom-project-note p {
  margin: 0;
  color: #181c22;
  font-size: clamp(1rem, 1.32vw, 1.1rem);
  font-weight: 420;
  line-height: 1.34;
  letter-spacing: 0.01em;
}

.custom-project-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: clamp(52px, 7vw, 78px);
  padding: 0 28px;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 680;
  line-height: 1;
  background: var(--logo-navy);
  border-radius: 10px;
  transition:
    background-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.custom-project-button:hover,
.custom-project-button:focus-visible {
  color: var(--logo-navy);
  background: var(--logo-yellow);
  outline: none;
  transform: translateY(-2px);
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(22px, 3vw, 34px);
  align-items: start;
  margin-top: clamp(76px, 8vw, 112px);
}

.faq-list {
  display: grid;
  gap: 16px;
  width: 100%;
}

.motion-ready .faq-layout h2,
.motion-ready .faq-item {
  opacity: 0;
  transform: translateY(24px);
  filter: blur(5px);
}

.motion-ready .faq-layout.is-visible h2,
.motion-ready .faq-layout.is-visible .faq-item {
  animation: faqCardReveal 680ms cubic-bezier(0.2, 0.86, 0.22, 1) forwards;
}

.motion-ready .faq-layout.is-visible .faq-item:nth-child(2) {
  animation-delay: 90ms;
}

.motion-ready .faq-layout.is-visible .faq-item:nth-child(3) {
  animation-delay: 180ms;
}

.motion-ready .faq-layout.is-visible .faq-item:nth-child(4) {
  animation-delay: 270ms;
}

@keyframes faqCardReveal {
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

.faq-item {
  position: relative;
  overflow: hidden;
  background: #eef7fb;
  border-radius: 10px;
  isolation: isolate;
  transition:
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.faq-item[open] {
  background: #f6fbff;
  box-shadow: 0 14px 32px rgba(18, 169, 214, 0.1);
}

.faq-item::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0;
  background:
    radial-gradient(
      circle at 31px 27px,
      rgba(255, 255, 255, 0.88) 0 12%,
      rgba(238, 247, 251, 0.78) 26%,
      rgba(255, 242, 0, 0.12) 48%,
      rgba(255, 255, 255, 0) 72%
    );
  filter: blur(8px) saturate(1.02);
  transform: scale(0.12);
  transform-origin: 31px 27px;
}

.faq-item[open]::after {
  animation: faqLiquidBloom 520ms cubic-bezier(0.16, 0.88, 0.28, 1) both;
}

.faq-item summary {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 54px;
  padding: 0 18px;
  color: #25282d;
  font-size: clamp(1.05rem, 1.65vw, 1.42rem);
  font-weight: 430;
  line-height: 1.22;
  letter-spacing: 0;
  list-style: none;
  cursor: pointer;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::before {
  content: "";
  display: grid;
  place-items: center;
  align-self: center;
  justify-self: center;
  width: 24px;
  height: 24px;
  background-color: #25282d;
  background-image:
    linear-gradient(#ffffff, #ffffff),
    linear-gradient(#ffffff, #ffffff);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 12px 3px, 3px 12px;
  border-radius: 50%;
  transform: rotate(0deg);
  transition:
    background-color 180ms ease,
    transform 220ms cubic-bezier(0.2, 0.78, 0.22, 1);
}

.faq-item[open] summary::before {
  opacity: 0;
  background-image: none;
  transform: scale(0.72);
}

.faq-item[open] summary,
.faq-item[open] p {
  color: var(--ink);
}

.faq-item p {
  position: relative;
  z-index: 1;
  margin: -2px 0 0;
  padding: 0 18px 20px 52px;
  color: #3d424a;
  font-size: 0.98rem;
  font-weight: 410;
  line-height: 1.5;
}

@keyframes faqLiquidBloom {
  0% {
    opacity: 0;
    filter: blur(14px) saturate(0.92);
    transform: scale(0.08);
  }

  62% {
    opacity: 1;
    filter: blur(6px) saturate(1.18);
    transform: scale(1.08);
  }

  100% {
    opacity: 1;
    filter: blur(8px) saturate(1.02);
    transform: scale(1);
  }
}

.contact-section {
  padding: clamp(76px, 8vw, 118px) clamp(20px, 5vw, 72px);
  background:
    linear-gradient(135deg, rgba(16, 32, 51, 0.04), rgba(255, 242, 0, 0.12)),
    #ffffff;
  color: #102033;
}

.contact-page-main {
  padding-top: 88px;
  background: #ffffff;
}

.contact-page-section {
  min-height: calc(100vh - 88px);
  display: grid;
  align-items: center;
}

.service-detail-main {
  padding-top: 94px;
  color: #1f2328;
  background: #ffffff;
}

.service-detail-inner {
  width: min(1260px, calc(100% - clamp(40px, 12vw, 260px)));
  margin: 0 auto;
}

.service-detail-intro {
  padding: clamp(48px, 6vw, 72px) 0 clamp(46px, 5vw, 64px);
}

.service-detail-intro h1 {
  max-width: 1100px;
  margin: 0 0 18px;
  color: #050608;
  font-size: clamp(2.4rem, 4.6vw, 4.2rem);
  font-weight: 560;
  line-height: 0.9;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-detail-intro p,
.service-detail-panel p,
.service-detail-copy p {
  margin: 0;
  color: #25272c;
  font-size: clamp(1.04rem, 1.35vw, 1.28rem);
  font-weight: 420;
  line-height: 1.38;
  letter-spacing: 0.01em;
}

.service-detail-panel {
  padding: clamp(50px, 6vw, 72px) 0;
  background: #f7fbff;
}

.service-detail-panel .service-detail-inner {
  display: grid;
  gap: 22px;
}

.service-arrow-list {
  display: grid;
  gap: 13px;
  padding: 0;
  margin: 4px 0 0;
  list-style: none;
}

.service-arrow-list li {
  position: relative;
  padding-left: 28px;
  color: #25272c;
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  font-weight: 420;
  line-height: 1.3;
}

.service-arrow-list li::before {
  content: "";
  position: absolute;
  top: 0.42em;
  left: 3px;
  width: 9px;
  height: 9px;
  border-top: 3px solid #050608;
  border-right: 3px solid #050608;
  transform: rotate(45deg);
}

.service-detail-split {
  padding: clamp(62px, 7vw, 96px) 0 clamp(76px, 8vw, 116px);
}

.service-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(330px, 0.72fr);
  gap: clamp(48px, 8vw, 110px);
  align-items: center;
}

.service-detail-copy {
  display: grid;
  gap: 20px;
}

.service-detail-copy h2 {
  margin: 0;
  color: #050608;
  font-size: clamp(1.28rem, 1.8vw, 1.62rem);
  font-weight: 760;
  line-height: 0.98;
}

.service-detail-copy h1 {
  margin: 0 0 4px;
  color: #050608;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 560;
  line-height: 0.9;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.service-detail-copy .service-arrow-list + h2 {
  margin-top: 38px;
}

.service-detail-media {
  position: relative;
  margin: 0;
  justify-self: end;
  width: min(430px, 100%);
}

.service-detail-media::before {
  content: "";
  position: absolute;
  inset: 22% 14% 18% 22%;
  background: var(--logo-yellow-soft);
  border-radius: 14px;
  transform: translate(-12%, 4%);
  z-index: 0;
}

.service-detail-media img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 24px 42px rgba(16, 32, 51, 0.14));
}

.gtc-compact-section,
.manual-drilling-section {
  padding: clamp(58px, 7vw, 92px) 0;
  background: #f7fbff;
}

.gtc-compact-grid {
  display: grid;
  grid-template-columns: minmax(330px, 0.88fr) minmax(0, 0.9fr);
  gap: clamp(52px, 8vw, 118px);
  align-items: center;
}

.gtc-compact-media {
  margin: 0;
}

.gtc-compact-media img {
  display: block;
  width: min(520px, 100%);
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 24px 42px rgba(16, 32, 51, 0.08));
}

.gtc-compact-copy,
.manual-drilling-copy {
  display: grid;
  gap: 20px;
}

.gtc-compact-copy h2,
.manual-drilling-copy h2 {
  margin: 0;
  color: #050608;
  font-size: clamp(1.28rem, 1.8vw, 1.62rem);
  font-weight: 760;
  line-height: 0.98;
}

.gtc-compact-copy p,
.manual-drilling-copy p {
  margin: 0;
  color: #25272c;
  font-size: clamp(1.02rem, 1.28vw, 1.2rem);
  font-weight: 420;
  line-height: 1.42;
}

.soil-core-gallery,
.manual-gallery-section {
  padding: clamp(58px, 7vw, 88px) 0;
  background: #ffffff;
}

.soil-core-grid,
.manual-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 48px);
}

.soil-core-card,
.manual-gallery-card {
  margin: 0;
  padding: clamp(20px, 2.4vw, 32px);
  overflow: hidden;
  background: var(--logo-yellow-soft);
  border-radius: 10px;
}

.soil-core-card img,
.manual-gallery-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
}

.manual-drilling-section {
  margin-top: 0;
}

.manual-drilling-copy {
  max-width: 1040px;
}

.designing-detail-section {
  padding-top: clamp(54px, 7vw, 82px);
}

.designing-detail-section .service-detail-grid {
  grid-template-columns: minmax(0, 0.78fr) minmax(390px, 0.92fr);
}

.designing-detail-media {
  width: min(620px, 100%);
}

.designing-detail-media::before {
  inset: 8% 12% 22% 6%;
  border-radius: 12px;
  transform: translate(-8%, -12%);
}

.designing-detail-media img {
  border-radius: 8px;
}

.consulting-detail-section {
  padding-top: clamp(54px, 7vw, 82px);
}

.consulting-detail-section .service-detail-grid {
  grid-template-columns: minmax(0, 0.74fr) minmax(390px, 0.9fr);
}

.consulting-detail-media {
  width: min(620px, 100%);
}

.consulting-detail-media::before {
  inset: 2% 18% 18% 0;
  border-radius: 12px;
  transform: translate(-9%, -14%);
}

.consulting-detail-media img {
  border-radius: 8px;
}

.designing-choice-section {
  padding: 0 0 clamp(68px, 8vw, 110px);
  background: #ffffff;
}

.consulting-closing-section {
  padding: 0 0 clamp(68px, 8vw, 110px);
  background: #ffffff;
}

.consulting-closing-copy {
  max-width: 1180px;
}

.designing-choice-section h2 {
  margin: 0 0 20px;
  color: #050608;
  font-size: clamp(1.2rem, 1.8vw, 1.48rem);
  font-weight: 760;
  line-height: 0.98;
}

.contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: clamp(42px, 6vw, 76px);
  align-items: center;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.contact-copy {
  display: grid;
  align-content: start;
}

.contact-kicker {
  width: max-content;
  margin: 0 0 18px;
  padding: 8px 13px;
  color: var(--logo-navy);
  font-size: 0.82rem;
  font-weight: 760;
  line-height: 1;
  text-transform: uppercase;
  background: rgba(255, 242, 0, 0.34);
  border-radius: 999px;
}

.contact-copy h1,
.contact-copy h2 {
  max-width: 12.5ch;
  margin: 0;
  color: #102033;
  font-size: clamp(2.15rem, 4.4vw, 4rem);
  font-weight: 520;
  line-height: 1.02;
  letter-spacing: 0;
}

.contact-copy > p:not(.contact-kicker) {
  max-width: 55ch;
  margin: 24px 0 0;
  color: #3f4d59;
  font-size: clamp(1rem, 1.35vw, 1.14rem);
  font-weight: 420;
  line-height: 1.68;
}

.contact-details {
  display: grid;
  gap: 10px;
  max-width: 55ch;
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
}

.contact-details li {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 44px;
  padding: 10px 14px;
  color: #263544;
  font-size: 0.98rem;
  font-weight: 430;
  line-height: 1.35;
  background: rgba(238, 247, 251, 0.84);
  border: 1px solid rgba(18, 169, 214, 0.12);
  border-radius: 8px;
}

.contact-details li > span:first-child {
  color: var(--logo-navy);
  font-size: 0.78rem;
  font-weight: 560;
  text-transform: uppercase;
}

.contact-details a {
  color: var(--logo-navy);
  font-weight: 580;
  overflow-wrap: anywhere;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: clamp(28px, 4vw, 44px);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(16, 32, 51, 0.1);
  border-radius: 10px;
  box-shadow: 0 24px 70px rgba(16, 32, 51, 0.14);
  backdrop-filter: blur(14px);
}

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

.contact-form label {
  display: grid;
  gap: 8px;
  color: #102033;
  font-size: 0.9rem;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: #102033;
  font: inherit;
  font-size: 1rem;
  font-weight: 420;
  border: 1px solid rgba(16, 32, 51, 0.16);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.94);
  outline: none;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(18, 169, 214, 0.72);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(18, 169, 214, 0.12);
}

.contact-form button {
  min-height: 52px;
  margin-top: 4px;
  color: #ffffff;
  font: inherit;
  font-size: 1rem;
  font-weight: 760;
  border: 0;
  border-radius: 7px;
  background: var(--logo-navy);
  cursor: pointer;
  transition:
    background-color 160ms ease,
    transform 160ms ease,
    box-shadow 160ms ease;
}

.contact-form button:hover,
.contact-form button:focus-visible {
  background: var(--logo-blue);
  outline: none;
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(18, 169, 214, 0.22);
}

.projects-page-main {
  padding-top: 86px;
  background: #ffffff;
}

.projects-hero {
  padding: clamp(46px, 6vw, 72px) 22px clamp(34px, 4vw, 50px);
}

.projects-hero-inner {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
}

.projects-hero h1 {
  margin: 0 0 24px;
  color: #050608;
  font-size: clamp(3.4rem, 6vw, 5.2rem);
  font-weight: 830;
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
}

.projects-hero p {
  max-width: 1080px;
  margin: 0;
  color: #15191f;
  font-size: clamp(1.05rem, 1.45vw, 1.35rem);
  font-weight: 430;
  line-height: 1.46;
  letter-spacing: 0;
}

.project-filter-band {
  display: grid;
  place-items: center;
  min-height: 162px;
  padding: 34px 22px;
  background:
    linear-gradient(135deg, rgba(18, 169, 214, 0.08), rgba(255, 242, 0, 0.14)),
    #f7fbff;
}

.project-filter-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.project-filter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 154px;
  min-height: 52px;
  padding: 0 26px;
  color: var(--ink);
  font: inherit;
  font-size: 0.96rem;
  font-weight: 720;
  letter-spacing: 0;
  border: 1px solid rgba(18, 169, 214, 0.22);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(238, 247, 251, 0.92)),
    #eef7fb;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(16, 32, 51, 0.06);
  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.project-filter:hover,
.project-filter:focus-visible {
  outline: none;
  transform: translateY(-2px);
}

.project-filter:not(.is-active):hover,
.project-filter:not(.is-active):focus-visible {
  color: var(--logo-navy);
  border-color: rgba(255, 242, 0, 0.82);
  background:
    linear-gradient(135deg, rgba(255, 242, 0, 0.34), rgba(18, 169, 214, 0.12)),
    #ffffff;
  box-shadow: 0 16px 32px rgba(18, 169, 214, 0.1);
}

.project-filter.is-active {
  color: #ffffff;
  border-color: var(--logo-navy);
  background:
    linear-gradient(135deg, var(--logo-navy), #102033),
    var(--logo-navy);
  box-shadow: 0 16px 36px rgba(44, 43, 145, 0.18);
}

.project-list-section {
  padding: clamp(82px, 8vw, 112px) 22px clamp(70px, 8vw, 104px);
}

.project-list-inner {
  width: 100%;
  max-width: 1260px;
  margin: 0 auto;
}

.project-list-inner h2 {
  margin: 0 auto 52px;
  width: 100%;
  max-width: 930px;
  color: #050608;
  font-size: clamp(2rem, 3.2vw, 3rem);
  font-weight: 820;
  line-height: 1.04;
  letter-spacing: 0;
  text-transform: uppercase;
}

.project-card {
  display: grid;
  grid-template-columns: minmax(330px, 0.95fr) minmax(360px, 0.9fr);
  align-items: center;
  gap: clamp(36px, 5vw, 64px);
  padding: clamp(32px, 3.4vw, 46px);
  background:
    linear-gradient(135deg, rgba(18, 169, 214, 0.12), rgba(255, 242, 0, 0.18)),
    #f7fbff;
  border: 1px solid rgba(18, 169, 214, 0.18);
  border-radius: 14px;
  box-shadow: 0 24px 70px rgba(16, 32, 51, 0.08);
}

.project-card.is-hidden {
  display: none;
}

.project-copy-panel {
  min-height: 100%;
  padding: clamp(34px, 4vw, 52px);
  color: #12161b;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(238, 247, 251, 0.92)),
    #ffffff;
  border: 1px solid rgba(18, 169, 214, 0.12);
  border-radius: 14px;
  box-shadow: 0 18px 42px rgba(16, 32, 51, 0.06);
}

.project-copy-panel h3 {
  margin: 0 0 18px;
  color: #050608;
  font-size: clamp(1.75rem, 2.3vw, 2.25rem);
  font-weight: 810;
  line-height: 1.05;
  letter-spacing: 0;
}

.project-copy-panel p {
  margin: 0;
  color: #14181e;
  font-size: clamp(0.98rem, 1.12vw, 1.07rem);
  font-weight: 430;
  line-height: 1.42;
  letter-spacing: 0;
}

.project-year {
  margin-top: 30px !important;
}

.project-year strong {
  font-weight: 840;
}

.project-slider {
  position: relative;
  align-self: center;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(255, 242, 0, 0.45);
  border-radius: 14px;
  box-shadow: 0 18px 42px rgba(18, 169, 214, 0.12);
}

.project-slide-track {
  position: relative;
  aspect-ratio: 4 / 3;
  width: 100%;
}

.project-slide {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.02);
  transition:
    opacity 260ms ease,
    transform 420ms ease;
}

.project-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.project-slide-button {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  padding: 0;
  color: var(--logo-navy);
  border: 0;
  border-radius: 50%;
  background: rgba(255, 242, 0, 0.78);
  cursor: pointer;
  transform: translateY(-50%);
  transition:
    background-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.project-slide-button:hover,
.project-slide-button:focus-visible {
  outline: none;
  color: #ffffff;
  background: var(--logo-navy);
  transform: translateY(-50%) scale(1.06);
}

.project-slide-button svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.9;
}

.project-slide-prev {
  left: 18px;
}

.project-slide-next {
  right: 18px;
}

.project-empty-message {
  width: min(760px, 100%);
  margin: 0 auto;
  padding: 26px 28px;
  color: #14181e;
  font-size: 1.05rem;
  font-weight: 620;
  text-align: center;
  background: #f3f3f3;
  border-radius: 12px;
}

.site-footer {
  padding: 22px clamp(20px, 5vw, 72px) 18px;
  color: #102033;
  background: #ffffff;
  border-top: 1px solid rgba(16, 32, 51, 0.1);
}

.footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.footer-brand {
  display: inline-flex;
  flex: 0 0 auto;
  width: 138px;
}

.footer-brand geotest-navbar-logo {
  width: 138px;
}

.footer-contact {
  transition:
    color 160ms ease,
    background-color 160ms ease,
    transform 160ms ease;
}

.footer-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 18px;
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 700;
  background: var(--logo-navy);
  border-radius: 6px;
  white-space: nowrap;
}

.footer-contact:hover,
.footer-contact:focus-visible {
  color: #ffffff;
  background: var(--logo-blue);
  outline: none;
  transform: translateY(-1px);
}

.footer-copy {
  width: min(1120px, 100%);
  margin: 10px auto 0;
  color: rgba(16, 32, 51, 0.7);
  font-size: 0.82rem;
  font-weight: 420;
  text-align: center;
}

.cutaway-back {
  fill: url("#drillSoil");
}

.soil-glow {
  fill: url("#soilGlow");
  mix-blend-mode: screen;
}

.cutaway-front {
  fill: #8a6040;
}

.excavation-shadow {
  fill: rgba(29, 29, 29, 0.16);
}

.drill-steel,
.central-pipe {
  fill: url("#steelDrill");
  stroke: #1d1d1d;
  stroke-linejoin: round;
  stroke-width: 2.1;
}

.foundation-slab {
  fill: url("#slabSteel");
  stroke: #1d1d1d;
  stroke-linejoin: round;
  stroke-width: 2.1;
}

.central-pipe {
  fill: url("#anchorSteel");
}

.drill-highlight,
.foundation-highlight,
.central-pipe-core {
  fill: rgba(255, 255, 255, 0.28);
}

.drill-rib,
.ground-line-icon,
.slope-slip-one,
.slope-slip-two,
.slope-crack,
.soil-speck,
.anchor-top,
.anchor-bar,
.anchor-tie {
  fill: none;
  stroke: #1d1d1d;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.5;
}

.drill-rib {
  stroke: rgba(29, 29, 29, 0.78);
}

.ground-line-icon {
  stroke-width: 2.2;
}

.slope-ground {
  fill: url("#slopeSoftHard");
}

.slope-light {
  fill: url("#slopeLight");
  mix-blend-mode: screen;
}

.slope-slip-one,
.slope-slip-two {
  stroke-width: 3.2;
}

.slope-crack {
  stroke-width: 2.8;
}

.soil-speck {
  stroke: #ffffff;
  stroke-width: 3.2;
}

.foundation-soil {
  fill: url("#foundationSoil");
}

.foundation-pile {
  fill: none;
  stroke: #6d7478;
  stroke-linecap: square;
  stroke-width: 13.5;
}

.foundation-soil-line {
  fill: none;
  stroke: rgba(29, 29, 29, 0.12);
  stroke-width: 2;
}

.anchor-soil {
  fill: url("#anchorSoil");
}

.anchor-bar {
  stroke-width: 3.2;
}

.anchor-tie {
  stroke-width: 2.8;
}

geotest-logo-hero-reveal {
  display: block;
  width: min(340px, 42vw);
  aspect-ratio: 1040 / 430;
  contain: layout paint;
  transform: none;
}

.geotest-hero-reveal {
  position: relative;
  width: 100%;
  height: 100%;
  isolation: isolate;
  animation: finalLogoSettle 360ms cubic-bezier(0.2, 0.8, 0.25, 1.08) 2.42s both;
}

.geotest-hero-logo-svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.hero-dots-block {
  transform-box: view-box;
  transform-origin: 0 0;
  animation: heroDotsMoveLeft 560ms cubic-bezier(0.19, 0.82, 0.22, 1) 1.12s both;
}

.hero-logo-dot {
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
  filter: blur(5px);
  animation: heroDotPop 330ms cubic-bezier(0.18, 0.82, 0.22, 1.18) var(--delay) both;
}

.hero-logo-dot {
  stroke: #1d1d1d;
  stroke-width: 3;
}

.dot-blue {
  fill: var(--logo-navy);
}

.dot-yellow {
  fill: var(--logo-yellow);
}

.hero-wordmark-block {
  opacity: 1;
}

.hero-geotest-word,
.hero-engineering-word {
  opacity: 0;
  transform-box: fill-box;
  transform-origin: left center;
  filter: blur(5px);
}

.hero-geotest-word {
  animation: heroTextReveal 420ms cubic-bezier(0.2, 0.78, 0.2, 1) 1.72s both;
}

.hero-engineering-word {
  animation: heroTextReveal 430ms cubic-bezier(0.2, 0.78, 0.2, 1) 2.16s both;
}

.hero-logo-text {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 800;
  letter-spacing: 0;
  paint-order: stroke fill;
  stroke: #1d1d1d;
  stroke-width: 2.6px;
  stroke-linejoin: round;
}

.hero-geotest-word {
  fill: var(--logo-navy);
  font-size: 125px;
}

.geo-text {
  font-weight: 900;
}

.test-text {
  font-style: italic;
  font-weight: 760;
}

.hero-engineering-word {
  fill: var(--logo-blue);
  font-size: 104px;
}

.hero-orange-divider {
  fill: var(--logo-yellow);
  filter: none;
  transform-box: fill-box;
  transform-origin: left center;
  transform: scaleX(0);
  animation: heroLineDraw 360ms cubic-bezier(0.2, 0.76, 0.24, 1) 1.98s both;
}

@keyframes heroDotPop {
  0% {
    opacity: 0;
    filter: blur(5px);
    transform: scale(0);
  }

  72% {
    opacity: 1;
    filter: blur(0);
    transform: scale(1.12);
  }

  100% {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
  }
}

@keyframes heroDotsMoveLeft {
  0% {
    transform: translateX(300px);
  }

  100% {
    transform: translateX(0);
  }
}

@keyframes heroTextReveal {
  0% {
    opacity: 0;
    filter: blur(5px);
    transform: translateX(-18px) scale(0.985);
  }

  100% {
    opacity: 1;
    filter: blur(0);
    transform: translateX(0) scale(1);
  }
}

@keyframes heroLineDraw {
  to {
    transform: scaleX(1);
  }
}

@keyframes heroTaglineReveal {
  0% {
    opacity: 0;
    filter: blur(5px);
    transform: translateY(18px) scale(0.985);
  }

  72% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(-2px) scale(1.005);
  }

  100% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) scale(1);
  }
}

@keyframes finalLogoSettle {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.004);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes iconDirectionalBounce {
  0% {
    opacity: 0;
    transform: translate(var(--icon-start-x), var(--icon-start-y)) scale(0.94);
  }

  62% {
    opacity: 1;
    transform: translate(0, 0) scale(1.045);
  }

  82% {
    opacity: 1;
    transform: translate(0, 0) scale(0.985);
  }

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

@keyframes whatImageRise {
  0% {
    opacity: 0;
    filter: blur(5px);
    transform: translateY(26%) scale(1.04);
  }

  68% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(-1.4%) scale(1.01);
  }

  100% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) scale(1);
  }
}

@keyframes whatTextRise {
  0% {
    opacity: 0;
    filter: blur(4px);
    transform: translateY(34px);
  }

  100% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

@media (max-width: 920px) {
  .site-header {
    padding: 0;
  }

  .navbar {
    position: relative;
  }

  .nav-toggle {
    display: block;
  }

  .nav-panel {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: grid;
    align-items: stretch;
    gap: 12px;
    padding: 14px clamp(20px, 4vw, 64px) 18px;
    background: #ffffff;
    border: 0;
    border-top: 0;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 22px 40px rgba(16, 32, 51, 0.14);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-14px);
    visibility: hidden;
    transition:
      max-height 520ms cubic-bezier(0.16, 0.86, 0.22, 1),
      opacity 360ms ease,
      transform 460ms cubic-bezier(0.16, 0.86, 0.22, 1),
      visibility 0s linear 520ms;
  }

  .navbar.is-open .nav-panel {
    max-height: 560px;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
    transition-delay: 0s;
  }

  .nav-links {
    display: grid;
    gap: 4px;
  }

  .nav-links a,
  .dropdown-trigger {
    justify-content: space-between;
    width: 100%;
    min-height: 44px;
    padding: 0 10px;
  }

  .has-dropdown {
    position: static;
  }

  .dropdown-menu {
    position: static;
    display: grid;
    width: 100%;
    min-width: 0;
    max-height: 0;
    padding: 0;
    margin: 0;
    overflow: hidden;
    background: transparent;
    border: 0;
    border-radius: 8px;
    box-shadow: none;
    opacity: 0;
    transition:
      max-height 220ms cubic-bezier(0.2, 0.78, 0.22, 1),
      padding 180ms ease,
      opacity 160ms ease;
  }

  .has-dropdown:hover .dropdown-menu {
    max-height: 0;
    padding: 0;
    opacity: 0;
  }

  .has-dropdown.is-open .dropdown-menu,
  .has-dropdown:focus-within .dropdown-menu {
    max-height: 230px;
    padding: 6px 0 2px;
    opacity: 1;
  }

  .dropdown-menu a {
    min-height: 40px;
    padding: 0 16px;
    background: var(--logo-blue-soft);
    border-radius: 6px;
  }

  .language-picker {
    justify-content: space-between;
  }

  .recognition-card {
    grid-template-columns: 1fr;
    width: min(680px, 100%);
    min-height: 0;
    box-shadow:
      0 24px 58px rgba(16, 32, 51, 0.16),
      0 8px 20px rgba(44, 43, 145, 0.08);
  }

  .recognition-media {
    min-height: 260px;
    border-radius: 10px 10px 0 0;
  }

  .recognition-media img {
    min-height: 260px;
  }

  .recognition-copy {
    border-radius: 0 0 10px 10px;
  }

  .services-overview-grid {
    column-gap: 44px;
  }

  .more-about-layout {
    grid-template-columns: 1fr;
  }

  .more-about-media {
    order: -1;
  }

  .custom-project-top,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .custom-project-copy {
    justify-items: stretch;
    padding-top: 0;
  }

  .custom-project-note {
    width: 100%;
    margin-top: 28px;
  }

  .custom-project-button {
    justify-self: start;
    margin-top: 30px;
  }

  .faq-layout {
    margin-top: 64px;
  }

  .footer-main {
    display: grid;
    grid-template-columns: 1fr auto;
  }

  .contact-inner {
    grid-template-columns: 1fr;
  }

  .contact-copy h2 {
    max-width: 14ch;
  }

  .service-detail-inner {
    width: min(760px, calc(100% - 44px));
  }

  .service-detail-grid {
    grid-template-columns: 1fr;
  }

  .designing-detail-section .service-detail-grid {
    grid-template-columns: 1fr;
  }

  .consulting-detail-section .service-detail-grid {
    grid-template-columns: 1fr;
  }

  .service-detail-media {
    justify-self: center;
    order: -1;
    width: min(390px, 100%);
  }

  .gtc-compact-grid,
  .soil-core-grid,
  .manual-gallery-grid {
    grid-template-columns: 1fr;
  }

  .gtc-compact-media {
    order: -1;
  }

  .service-overview-item {
    grid-template-columns: 66px minmax(0, 1fr);
    gap: 20px;
  }

  .service-overview-icon {
    width: 62px;
    height: 62px;
  }

  .service-overview-icon svg {
    width: 43px;
    height: 43px;
  }

  .about-page-main {
    padding-top: 74px;
  }

  .about-page-inner,
  .about-mission-inner {
    width: min(760px, calc(100% - 44px));
  }

  .about-mission-section {
    min-height: auto;
    padding-bottom: 0;
  }

  .about-mission-inner {
    grid-template-columns: 1fr;
  }

  .about-mission-copy {
    max-width: 100%;
  }

  .about-structure-figure {
    justify-self: center;
    width: min(420px, 78vw);
    margin: -22px 0 -34px;
  }

  .about-work-grid,
  .about-partner-grid {
    grid-template-columns: 1fr;
  }

  .about-work-media {
    justify-self: start;
  }

  .projects-page-main {
    padding-top: 74px;
  }

  .projects-hero-inner,
  .project-list-inner {
    width: 100%;
    max-width: 760px;
  }

  .project-list-inner h2 {
    width: 100%;
    margin-bottom: 34px;
  }

  .project-card {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .project-slider {
    order: -1;
  }
}

@media (max-width: 760px) {
  .hero-section {
    min-height: calc(100svh - 96px);
    place-items: center;
    align-content: center;
    padding: 104px 20px 72px;
  }

  .hero-visual {
    justify-self: center;
    width: min(100%, 520px);
    margin: 0 auto;
    padding: 16px 16px 20px;
  }

  geotest-logo-hero-reveal {
    width: min(58vw, 300px);
    justify-self: center;
    transform: none;
  }

  .hero-tagline {
    margin-top: 8px;
    font-size: clamp(1.05rem, 4.8vw, 1.8rem);
  }

  .hero-service-icons {
    width: min(540px, 94vw);
    gap: 12px;
    margin-top: 10px;
  }

  .service-icon-item {
    min-height: 78px;
  }

  .service-icon {
    width: 68px;
    height: 68px;
  }

  .service-image-icon {
    width: 92px;
    height: 60px;
  }

  .recognition-section {
    padding: 56px 18px;
  }

  .recognition-copy {
    padding: 36px 26px 40px;
  }

  .services-overview-section {
    padding: 58px 22px 0;
  }

  .services-overview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 18px;
    row-gap: 22px;
    width: min(620px, 100%);
  }

  .services-overview-inner h2 {
    margin-bottom: 24px;
    font-size: clamp(2rem, 8vw, 3rem);
    line-height: 0.86;
    text-align: center;
  }

  .services-overview-media {
    width: calc(100% + 20px);
    margin-top: 42px;
    margin-left: -10px;
    margin-right: -10px;
  }

  .services-overview-media img {
    aspect-ratio: 16 / 7;
  }

  .more-about-section {
    padding: 58px 22px;
  }

  .more-about-inner h2 {
    margin-bottom: 30px;
    line-height: 0.84;
    text-align: center;
  }

  .more-about-list {
    gap: 18px;
  }

  .custom-project-section {
    padding: 58px 22px;
  }

  .custom-project-copy h2,
  .faq-layout h2 {
    font-size: clamp(2rem, 8vw, 3rem);
    line-height: 0.86;
    text-align: left;
  }

  .custom-project-note {
    padding: 28px;
  }

  .faq-item summary {
    font-size: clamp(1.02rem, 4.2vw, 1.28rem);
  }

  .site-footer {
    padding: 20px 22px 16px;
  }

  .contact-section {
    padding: 58px 22px;
  }

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

  .about-intro-section {
    padding: 46px 0 50px;
  }

  .about-logo-kicker {
    margin-bottom: 24px;
  }

  .about-intro-section h1 {
    font-size: clamp(2.35rem, 11vw, 3.5rem);
  }

  .about-mission-section {
    padding-top: 54px;
  }

  .about-statement h2 {
    font-size: clamp(1.75rem, 8vw, 2.45rem);
  }

  .about-work-section,
  .about-partner-section {
    padding: 56px 0;
  }

  .about-work-copy h2,
  .about-partner-section h2 {
    font-size: clamp(1.8rem, 9vw, 2.7rem);
  }

  .about-work-media-wide,
  .about-work-media-portrait {
    width: min(100%, 520px);
  }

  .projects-hero {
    padding: 46px 22px 34px;
  }

  .projects-hero h1 {
    font-size: clamp(3rem, 13vw, 4.6rem);
  }

  .project-filter-band {
    min-height: auto;
    padding: 28px 18px;
  }

  .project-filter-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: min(460px, 100%);
  }

  .project-filter {
    min-width: 0;
    min-height: 48px;
    padding: 0 16px;
    font-size: 0.88rem;
  }

  .project-list-section {
    padding: 58px 18px 64px;
  }

  .project-card {
    padding: 18px;
    border-radius: 12px;
  }

  .project-copy-panel {
    padding: 28px 24px;
  }
}

@media (max-width: 520px) {
  .hero-section {
    min-height: calc(100svh - 96px);
    place-items: center;
    align-content: center;
    padding-top: 112px;
    padding-right: 20px;
    padding-bottom: 72px;
    padding-left: 20px;
  }

  .hero-visual {
    justify-self: center;
    width: min(100%, 430px);
    margin: 0 auto;
    padding: 14px 14px 18px;
  }

  .brand {
    min-width: 176px;
  }

  .brand-logo {
    width: 100%;
    height: auto;
  }

  geotest-navbar-logo {
    width: 176px;
  }

  geotest-logo-hero-reveal {
    width: min(66vw, 260px);
    margin-inline: auto;
    transform: none;
  }

  .hero-tagline {
    margin: 28px 0 22px;
    max-width: 100%;
    font-size: clamp(1rem, 5vw, 1.45rem);
  }

  .hero-service-icons {
    width: min(340px, 100%);
    gap: 6px;
    margin-top: 0;
  }

  .service-icon-item {
    min-height: 70px;
  }

  .service-icon {
    width: 64px;
    height: 64px;
  }

  .service-image-icon {
    width: 74px;
    height: 52px;
  }

  .recognition-section {
    padding: 42px 16px;
  }

  .recognition-media,
  .recognition-media img {
    min-height: 230px;
  }

  .recognition-copy {
    padding: 30px 22px 34px;
  }

  .recognition-copy h2 {
    font-size: clamp(1.75rem, 9vw, 2.35rem);
    line-height: 0.9;
  }

  .recognition-copy p {
    font-size: 0.98rem;
    line-height: 1.5;
    letter-spacing: 0.01em;
  }

  .services-overview-section {
    padding: 48px 18px 0;
  }

  .services-overview-inner h2 {
    font-size: clamp(1.85rem, 9vw, 2.35rem);
    margin-bottom: 24px;
    line-height: 0.86;
  }

  .service-overview-item {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 12px;
    min-width: 0;
  }

  .service-overview-icon {
    width: 46px;
    height: 46px;
  }

  .service-overview-icon svg {
    width: 31px;
    height: 31px;
  }

  .service-overview-item h3 {
    font-size: clamp(0.78rem, 3.4vw, 1rem);
    font-weight: 440;
    line-height: 1.08;
  }

  .services-overview-media {
    width: calc(100% + 36px);
    margin-top: 36px;
    margin-left: -18px;
    margin-right: -18px;
    border-radius: 8px 8px 0 0;
  }

  .more-about-section {
    padding: 48px 18px;
  }

  .more-about-inner h2 {
    font-size: clamp(2.25rem, 11vw, 3.2rem);
    margin-bottom: 26px;
    line-height: 0.84;
  }

  .more-about-item summary {
    min-height: 68px;
    padding: 0 18px;
    font-size: 1.06rem;
  }

  .more-about-item p {
    padding: 0 18px 20px;
    font-size: 0.94rem;
  }

  .custom-project-section {
    padding: 48px 18px;
  }

  .custom-project-media {
    border-radius: 8px;
  }

  .custom-project-copy h2,
  .faq-layout h2 {
    font-size: clamp(1.9rem, 9vw, 2.45rem);
    line-height: 0.86;
  }

  .custom-project-note {
    margin-top: 22px;
    padding: 24px 22px;
  }

  .custom-project-button {
    width: 100%;
    margin-top: 24px;
  }

  .faq-layout {
    gap: 26px;
    margin-top: 52px;
  }

  .faq-list {
    gap: 12px;
  }

  .faq-item summary {
    min-height: 58px;
    padding: 12px 16px;
  }

  .faq-item p {
    padding: 0 16px 18px 50px;
    font-size: 0.94rem;
  }

  .footer-main {
    gap: 16px;
  }

  .footer-brand,
  .footer-brand geotest-navbar-logo {
    width: 128px;
  }

  .footer-contact {
    min-height: 36px;
    padding: 0 14px;
    font-size: 0.86rem;
  }

  .footer-copy {
    margin-top: 12px;
    font-size: 0.78rem;
  }

  .contact-section {
    padding: 48px 18px;
  }

  .contact-copy h1,
  .contact-copy h2 {
    max-width: 12.5ch;
    font-size: clamp(2rem, 8.4vw, 2.7rem);
    line-height: 1.02;
  }

  .contact-copy > p:not(.contact-kicker) {
    margin-top: 18px;
    font-size: 0.98rem;
    line-height: 1.56;
  }

  .contact-details li {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .contact-form {
    gap: 15px;
    padding: 24px 18px;
  }

  .service-detail-main {
    padding-top: 102px;
  }

  .service-detail-inner {
    width: min(100% - 36px, 620px);
  }

  .service-detail-intro {
    padding-top: 36px;
  }

  .service-detail-intro h1 {
    font-size: clamp(2rem, 10vw, 3rem);
    margin-bottom: 14px;
    line-height: 0.88;
    letter-spacing: 0.06em;
  }

  .service-detail-intro p,
  .service-detail-panel p,
  .service-detail-copy p {
    font-size: 1rem;
    line-height: 1.5;
  }

  .service-detail-panel {
    padding: 42px 0;
  }

  .service-detail-split {
    padding: 48px 0 64px;
  }

  .service-arrow-list li {
    font-size: 0.98rem;
  }

  .gtc-compact-section,
  .manual-drilling-section {
    padding: 42px 0;
  }

  .soil-core-gallery,
  .manual-gallery-section {
    padding: 42px 0;
  }

  .soil-core-card,
  .manual-gallery-card {
    padding: 16px;
  }

  .what-we-do-section {
    min-height: 720px;
    padding: 76px 18px;
  }

  .what-we-do-copy {
    padding: 0;
  }

  .about-page-inner,
  .about-mission-inner {
    width: calc(100% - 36px);
  }

  .about-intro-section h1 {
    font-size: clamp(2.2rem, 10vw, 3rem);
  }

  .about-intro-section p:not(.about-logo-kicker),
  .about-statement p {
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .about-mission-copy {
    gap: 44px;
  }

  .about-structure-figure {
    width: min(330px, 84vw);
  }

  .about-work-section,
  .about-partner-section {
    padding: 48px 0;
  }

  .about-work-copy p,
  .about-partner-grid p {
    font-size: 0.98rem;
    line-height: 1.56;
  }

  .about-partner-button {
    width: 100%;
  }

  .projects-hero {
    padding: 38px 18px 30px;
  }

  .projects-hero h1 {
    margin-bottom: 18px;
    font-size: clamp(2.45rem, 13vw, 3.4rem);
  }

  .projects-hero p {
    font-size: 1rem;
    line-height: 1.5;
  }

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

  .project-list-inner h2 {
    font-size: clamp(1.55rem, 8.2vw, 2.05rem);
    line-height: 1.08;
  }

  .project-copy-panel {
    padding: 24px 20px;
  }

  .project-copy-panel h3 {
    font-size: 1.6rem;
  }

  .project-copy-panel p {
    font-size: 0.94rem;
  }

  .project-slide-button {
    width: 32px;
    height: 32px;
  }

  .project-slide-prev {
    left: 10px;
  }

  .project-slide-next {
    right: 10px;
  }
}

/* Site-wide typography refinement: lighter, smaller, clearer text. */
.nav-links a,
.dropdown-trigger,
.language-picker,
.language-picker select,
.footer-contact,
.custom-project-button,
.contact-form button,
.project-filter {
  font-weight: 560;
}

.hero-tagline,
.recognition-copy h2,
.services-overview-inner h2,
.more-about-inner h2,
.custom-project-copy h2,
.faq-layout h2,
.service-detail-intro h1,
.service-detail-copy h1,
.service-detail-copy h2,
.designing-choice-section h2,
.projects-hero h1,
.project-list-inner h2 {
  font-weight: 560;
  line-height: 1.04;
}

.recognition-copy h2,
.services-overview-inner h2,
.more-about-inner h2 {
  font-size: clamp(2rem, 4.6vw, 4rem);
}

.custom-project-copy h2,
.faq-layout h2 {
  font-size: clamp(1.75rem, 3vw, 2.45rem);
}

#custom-project-title {
  font-size: clamp(1.35rem, 2.2vw, 1.9rem);
  font-weight: 500;
  line-height: 1.1;
}

.service-detail-intro h1,
.service-detail-copy h1 {
  font-size: clamp(2rem, 3.7vw, 3.35rem);
  font-weight: 520;
  letter-spacing: 0.08em;
}

.service-detail-copy h2,
.designing-choice-section h2 {
  font-size: clamp(1.55rem, 2.6vw, 2.55rem);
  font-weight: 540;
}

.projects-hero h1 {
  margin-bottom: 18px;
  font-size: clamp(2.3rem, 7vw, 4rem);
  font-weight: 560;
  line-height: 1.02;
}

.projects-hero p {
  max-width: 900px;
  font-size: clamp(0.98rem, 1.22vw, 1.14rem);
  font-weight: 400;
  line-height: 1.56;
}

.project-list-inner h2 {
  max-width: 900px;
  font-size: clamp(1.45rem, 3vw, 2.35rem);
  font-weight: 560;
  line-height: 1.12;
}

.project-copy-panel h3 {
  font-size: clamp(1.45rem, 1.85vw, 1.85rem);
  font-weight: 560;
}

.project-copy-panel p {
  font-size: clamp(0.92rem, 1vw, 1rem);
  font-weight: 400;
  line-height: 1.5;
}

.project-year strong {
  font-weight: 680;
}

.services-overview-item h3,
.more-about-item summary,
.faq-item summary,
.service-arrow-list li,
.project-empty-message {
  font-weight: 500;
}

.recognition-copy p,
.more-about-item p,
.custom-project-note p,
.faq-item p,
.contact-copy p,
.service-detail-intro p,
.service-detail-panel p,
.service-detail-copy p,
.project-copy-panel p {
  color: #2d3540;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
  }

  .geotest-hero-reveal,
  .hero-dots-block,
  .hero-logo-dot,
  .hero-geotest-word,
  .hero-engineering-word,
  .hero-orange-divider,
  .hero-tagline,
  .service-icon-item,
  .what-we-do-section::before,
  .what-we-do-content h2,
  .what-we-do-copy,
  .about-structure-figure,
  .about-work-section-dark,
  .about-work-section-light,
  .recognition-media img,
  .recognition-copy h2,
  .recognition-copy p,
  .service-overview-item,
  .services-overview-media img,
  .more-about-item,
  .more-about-media img,
  .custom-project-media img,
  .custom-project-copy h2,
  .custom-project-note,
  .custom-project-button,
  .faq-layout h2,
  .faq-item,
  .page-loader-spinner {
    animation: none !important;
  }

  .hero-dots-block {
    transform: translateX(0);
  }

  .hero-logo-dot,
  .hero-geotest-word,
  .hero-engineering-word,
  .hero-tagline {
    opacity: 1;
    filter: none;
    transform: none;
  }

  .hero-orange-divider {
    transform: scaleX(1);
  }

  .service-icon-item {
    opacity: 1;
    transform: none;
  }

  .motion-ready .what-we-do-section::before,
  .motion-ready .what-we-do-section .what-we-do-content h2,
  .motion-ready .what-we-do-section .what-we-do-copy,
  .motion-ready .recognition-media img,
  .motion-ready .recognition-copy h2,
  .motion-ready .recognition-copy p,
  .motion-ready .service-overview-item,
  .motion-ready .services-overview-media img,
  .motion-ready .more-about-item,
  .motion-ready .more-about-media img,
  .motion-ready .custom-project-media img,
  .motion-ready .custom-project-copy h2,
  .motion-ready .custom-project-note,
  .motion-ready .custom-project-button,
  .motion-ready .faq-layout h2,
  .motion-ready .faq-item {
    opacity: 1;
    filter: none;
  }

  .motion-ready .recognition-media img {
    transform: scale(1.012);
  }

  .motion-ready .recognition-copy h2,
  .motion-ready .recognition-copy p,
  .motion-ready .service-overview-item,
  .motion-ready .services-overview-media img,
  .motion-ready .more-about-item,
  .motion-ready .more-about-media img,
  .motion-ready .custom-project-media img,
  .motion-ready .custom-project-copy h2,
  .motion-ready .custom-project-note,
  .motion-ready .custom-project-button,
  .motion-ready .faq-layout h2,
  .motion-ready .faq-item {
    transform: none;
  }

  .about-structure-figure {
    opacity: 1;
    transform: none;
  }

}
