@font-face {
  font-family: "Mexcellent";
  src: url("/assets/fonts/mexcellent-rg.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #f5f7fa;
  --text: #1e1e1e;
  --text-muted: rgba(30, 30, 30, 0.75);
  --brand: #1f5746;
  --brand-accent: #58bf1d;
  --border: rgba(30, 30, 30, 0.2);
  --container: 1280px;
  --section-gap: 150px;
  --header-height: 108px;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

body {
  margin: 0;
  font-family: "Outfit", sans-serif;
  color: var(--text);
  background: var(--bg);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 500;
}

p,
li,
label,
input,
textarea,
button {
  font-weight: 300;
}

strong,
b {
  font-weight: 700;
}

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

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

.container {
  width: min(var(--container), calc(100% - 160px));
  margin-inline: auto;
}

.section-gap {
  margin-top: var(--section-gap);
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  border-radius: 5px;
  font-size: 20px;
  font-weight: 300;
  line-height: 1;
  transition: 0.25s ease;
  white-space: nowrap;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--brand);
  color: #fff;
  padding: 0 18px;
}

.btn-primary:hover {
  background: #174438;
}

.btn-outline {
  border: 1px solid var(--brand);
  color: var(--brand);
  padding: 0 18px;
  background: transparent;
  cursor: pointer;
}

.btn-outline:hover {
  background: var(--brand);
  color: #fff;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  height: var(--header-height);
  transition: background-color 0.28s ease, box-shadow 0.28s ease;
}

.nav-wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.brand {
  width: 250px;
  height: 72px;
  position: relative;
  flex: 0 0 auto;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-color {
  position: absolute;
  inset: 0;
  display: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 61px;
  font-size: 20px;
  font-weight: 500;
  color: #fff;
}

.mobile-enquire-link {
  display: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  padding: 10px 8px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 999px;
  transition: transform 0.25s ease, opacity 0.25s ease, background-color 0.25s ease;
}

.nav-links a {
  transition: color 0.22s ease;
}

.nav-links a:hover {
  color: var(--brand-accent);
}

.nav-links a.active {
  color: #fff;
}

.site-header.scrolled {
  background: #fff;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.site-header.scrolled .brand-white {
  display: none;
}

.site-header.scrolled .brand-color {
  display: block;
}

.site-header.scrolled .nav-links {
  color: var(--text);
}

.site-header.scrolled .nav-links a.active,
.site-header.scrolled .nav-links a:hover {
  color: var(--brand-accent);
}

.site-header.mobile-nav-open {
  background: #fff;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.site-header.mobile-nav-open .brand-white {
  display: none;
}

.site-header.mobile-nav-open .brand-color {
  display: block;
}

.site-header.mobile-nav-open .nav-toggle span {
  background: var(--text);
}

.hero {
  position: relative;
  height: 820px;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform-origin: center;
  opacity: 0;
}

.hero-bg-2 {
  background-image: url('/assets/webp/hero_slide2.webp');
}

.hero-bg-3 {
  background-image: url('/assets/webp/hero_slide3.webp');
}

.hero-bg-1 {
  background-image: url('/assets/webp/hero_slide1.webp');
}

.hero-lines {
  position: absolute;
  inset: 0;
  background: url('/assets/webp/hero_lines.webp') center/cover no-repeat;
  opacity: 0.4;
  z-index: 2;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 3;
}

.hero-inner {
  position: relative;
  z-index: 4;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 32px;
  padding-top: 72px;
}

.hero h1 {
  width: min(923px, 100%);
  margin: 0;
  color: #fff;
  font-size: 86px;
  font-weight: 500;
  line-height: 1.16;
}

.hero p {
  margin: 0;
  color: #fff;
  font-size: 26px;
  font-weight: 300;
}

.hero-arrow {
  position: absolute;
  left: 50%;
  bottom: 54px;
  transform: translateX(-50%);
  width: 117px;
  height: 117px;
  border-radius: 999px;
  backdrop-filter: blur(6.8px);
  background: rgba(255, 255, 255, 0.25);
  display: grid;
  place-items: center;
  z-index: 5;
  animation: arrowFloat 2.4s ease-in-out infinite;
}

.hero-arrow img {
  width: 60px;
  height: 60px;
}

@keyframes arrowFloat {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(10px);
  }
}

.about .section-chip {
  height: 50px;
  border: 2px solid var(--brand-accent);
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0 24px;
  font-size: 20px;
  color: var(--brand-accent);
}

.about .section-chip img {
  width: 15px;
  height: 15px;
}

.about-grid {
  margin-top: 42px;
  display: grid;
  grid-template-columns: 1fr 570px;
  gap: 54px;
  align-items: start;
}

.about h2 {
  margin: 0;
  font-size: 40px;
  font-weight: 500;
  line-height: 1.2;
  text-transform: uppercase;
  max-width: 656px;
}

.about p {
  margin: 35px 0 0;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.75;
  max-width: 656px;
}

.about p strong {
  font-weight: 500;
}

.about-grid > img {
  width: 570px;
  height: 408px;
  object-fit: cover;
}

.about-visual {
  width: 570px;
  height: 408px;
  overflow: hidden;
}

.about-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  animation: aboutFloat 6s ease-in-out infinite;
}

@keyframes aboutFloat {
  0%,
  100% {
    transform: scale(1.02) translateY(0);
  }

  50% {
    transform: scale(1.05) translateY(-8px);
  }
}

.about-stats {
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  max-width: 656px;
}

.about-stats article {
  border-top: 1px solid #1e1e1e;
  padding-top: 22px;
  position: relative;
}

.about-stats article::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--brand-accent);
  transform: scaleX(0);
  transform-origin: center;
}

.about-stats article.in-view::before {
  animation: statLineIn 1.2s ease forwards;
}

@keyframes statLineIn {
  0% {
    transform: scaleX(0);
  }

  50% {
    transform: scaleX(1);
    transform-origin: left;
  }

  100% {
    transform: scaleX(1);
    transform-origin: right;
  }
}

.about-stats h3 {
  margin: 0;
  font-size: 56px;
  font-weight: 500;
  line-height: 1;
}

.about-stats span {
  margin-top: 18px;
  display: block;
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
}

.video {
  position: relative;
  height: 671px;
  overflow: hidden;
}

.video > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.video:hover .video-media {
  transform: scale(1.03);
}

.unmute {
  position: absolute;
  left: 50%;
  top: 188px;
  transform: translateX(-50%);
  width: 117px;
  height: 117px;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(6.8px);
  color: #fff;
  font-size: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  pointer-events: none;
}

.video:hover .unmute {
  opacity: 1;
  visibility: visible;
}

.services {
  display: grid;
  grid-template-columns: 1fr 657px;
  min-height: 996px;
}

.services-left {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 58px;
  background: #f5f7fb;
}

.services-left .grid-overlay {
  position: absolute;
  left: 0;
  top: 1px;
  width: 736px;
  height: 882px;
  object-fit: cover;
  z-index: 4;
}

.services-left .build-image-wrap {
  position: absolute;
  top: 23px;
  left: -50px;
  width: 836px;
  height: 836px;
}

.services-left .build-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(245, 247, 250, 0) 44.916%, #f5f7fa 91.507%);
  z-index: 3;
}

.services-left .build-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
}

.services-left h2 {
  margin: 0;
  font-size: 121px;
  font-weight: 500;
  color: rgba(31, 41, 55, 0.75);
  line-height: 0.95;
  position: relative;
  z-index: 5;
  text-transform: uppercase;
}

.services-left p {
  margin: 16px 0 0;
  font-size: 42px;
  color: #1e1e1e;
  letter-spacing: 0.01em;
  position: relative;
  z-index: 5;
  text-transform: uppercase;
}

.services-right {
  background: #eaf3ec;
  padding: 23px 34px 64px 30px;
  display: flex;
  flex-direction: column;
}

.services-right .logo-mark {
  width: 97px;
  height: 92px;
  object-fit: contain;
}

.services-right h3 {
  margin: 26px 0 0;
  max-width: 545px;
  font-size: 40px;
  font-weight: 500;
  line-height: 1.16;
  text-transform: uppercase;
}

.services-right ul {
  list-style: none;
  margin: 60px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.services-right li {
  border-bottom: 1px solid #1e1e1e;
  position: relative;
}

.services-right li::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--brand-accent);
  transition: transform 0.35s ease;
}

.services-right li a {
  height: 95px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 26px;
  color: var(--text);
  transition: color 0.3s ease;
}

.services-right li a img {
  width: 35px;
  height: 35px;
  transition: filter 0.3s ease;
}

.services-right li:hover::before {
  transform: scaleX(1);
}

.services-right li:hover a {
  color: var(--brand-accent);
}

.services-right li:hover a img {
  filter: brightness(0) saturate(100%) invert(65%) sepia(84%) saturate(514%) hue-rotate(45deg) brightness(96%) contrast(90%);
}

.services-right .btn,
.services-right .services-cta {
  margin-top: 56px;
  width: 164px;
}

.why h2,
.projects h2,
.blogs h2,
.quote h2 {
  margin: 0;
  font-size: 40px;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1.25;
}

.why h2 {
  text-align: center;
  width: min(677px, 100%);
  margin-inline: auto;
}

.why-grid {
  margin-top: 120px;
  display: grid;
  grid-template-columns: 338px 1px 338px 1px 338px;
  gap: 34px;
  justify-content: center;
  align-items: start;
}

.why article {
  display: flex;
  flex-direction: column;
  gap: 11px;
  align-items: center;
  width: 338px;
}

.why article .icon {
  width: 80px;
  height: 80px;
}

.why article h3 {
  margin: 0;
  font-size: 30px;
  font-weight: 500;
  text-align: center;
  line-height: 1.2;
}

.why article p {
  margin: 0;
  min-height: 84px;
  font-size: 22px;
  color: var(--text-muted);
  line-height: 1.3;
  text-align: center;
}

.why article > img:last-child,
.why article > img:first-child:not(.icon) {
  width: 320px;
  height: 250px;
  object-fit: cover;
}

.why article:first-child > img:last-child,
.why article:last-child > img:last-child {
  margin-top: 50px;
  height: 341px;
}

.why article:nth-child(3) > img:first-child:not(.icon) {
  height: 341px;
}

.why-divider {
  width: 1px;
  height: 683px;
  background: rgba(30, 30, 30, 0.2);
}

.marquee {
  margin-top: 150px;
  width: 100%;
  height: 100px;
  overflow: hidden;
  background: #1f5746;
}

.marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marqueeMove 20s linear infinite;
  height: 100%;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 30px;
  font-weight: 300;
  color: #fff;
  margin-right: 24px;
  white-space: nowrap;
}

.marquee-item img {
  width: 40px;
  height: 40px;
}

@keyframes marqueeMove {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.projects-head,
.blogs-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.projects-trigger {
  margin-top: 60px;
  position: relative;
  height: 2200px;
}

.projects-sticky {
  position: sticky;
  top: 130px;
  overflow: hidden;
}

.projects-track {
  display: flex;
  gap: 30px;
  padding-inline: 80px;
  width: max-content;
  will-change: transform;
}

.project-card {
  width: 515px;
}

.project-card > img {
  width: 515px;
  height: 568px;
  object-fit: cover;
}

.project-card h3 {
  margin: 22px 0 5px;
  font-size: 30px;
  font-weight: 300;
}

.project-card p {
  margin: 0;
  font-size: 18px;
  font-weight: 300;
  color: rgba(31, 41, 55, 0.75);
}

.sector {
  height: 700px;
  position: relative;
  overflow: hidden;
}

.sector-slide {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0.38)), var(--bg);
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.sector-slide.active {
  opacity: 1;
}

.sector-title {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  color: #1e1e1e;
  font-size: 120px;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
  mix-blend-mode: hard-light;
}

.sector-char {
  display: inline-block;
  opacity: 0;
  transform: translateY(28px);
  animation: sectorChar 0.55s ease forwards;
}

@keyframes sectorChar {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.testimonials {
  position: relative;
}

.testimonials .container {
  min-height: 526px;
  position: relative;
  text-align: center;
  overflow: hidden;
}

.testimonials h2 {
  margin: 0;
  font-size: 40px;
  font-weight: 500;
  text-transform: uppercase;
  padding-top: 46px;
}

.quote-mark {
  width: 70px;
  height: 70px;
  margin: 35px auto 0;
}

.watermark {
  position: absolute;
  left: 50%;
  top: 75px;
  transform: translateX(-50%);
  width: 429px;
  opacity: 0.05;
  pointer-events: none;
}

#testimonialContent {
  margin-top: 24px;
  position: relative;
  z-index: 1;
  min-height: 200px;
}

#testimonialContent blockquote {
  margin: 0 auto;
  width: min(1064px, 100%);
  font-size: 28px;
  line-height: 1.6;
}

#testimonialContent .name {
  margin-top: 20px;
  font-size: 28px;
  color: var(--brand);
  font-weight: 500;
}

#testimonialContent .location {
  margin-top: 6px;
  font-size: 22px;
  color: var(--text-muted);
}

.testimonial-item {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.testimonial-item.show {
  opacity: 1;
  transform: translateY(0);
}

.blogs {
  padding-bottom: 20px;
}

.blog-grid {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.blog-card {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.blog-card > img {
  width: 100%;
  height: 451px;
  object-fit: cover;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  color: var(--brand);
}

.blog-meta img {
  width: 30px;
  height: 30px;
}

.blog-card h3 {
  margin: 0;
  font-size: 26px;
  font-weight: 500;
  text-transform: uppercase;
  min-height: 90px;
  transition: color 0.3s ease;
}

.blog-card .line {
  height: 1px;
  background: #1e1e1e;
  margin-top: 25px;
  position: relative;
}

.blog-card .line::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--brand-accent);
  transform: scaleX(0);
  transform-origin: left;
}

.blog-card:hover h3,
.blog-card:hover .blog-meta {
  color: var(--brand-accent);
}

.blog-card:hover .line::before {
  animation: blogLineSweep 0.65s ease forwards;
}

@keyframes blogLineSweep {
  0% {
    transform: scaleX(0);
    transform-origin: left;
  }

  50% {
    transform: scaleX(1);
    transform-origin: left;
  }

  100% {
    transform: scaleX(1);
    transform-origin: right;
  }
}

.quote-grid {
  display: grid;
  grid-template-columns: 500px 1fr;
  gap: 124px;
  align-items: start;
}

.quote p {
  margin: 12px 0 0;
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.66;
}

.quote-grid > div img {
  width: 447px;
  margin-top: 68px;
}

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.quote-form label {
  display: flex;
  flex-direction: column;
  gap: 21px;
  font-size: 18px;
  font-weight: 500;
}

.quote-form input,
.quote-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #1e1e1e;
  outline: 0;
  background: transparent;
  font-size: 16px;
  font-family: inherit;
  color: var(--text);
  padding: 0 0 10px;
}

.quote-form textarea {
  min-height: 117px;
  resize: vertical;
}

.quote-submit {
  display: flex;
  width: 164px;
  height: 61px;
  padding: 6px 11px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  cursor: pointer;
}

.footer {
  background: #153c32;
  color: #fff;
  padding: 70px 0 30px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.footer-left {
  max-width: 638px;
}

.footer-left > img {
  width: 234px;
  height: 67px;
}

.footer-left > p {
  margin: 35px 0 40px;
  max-width: 638px;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.75);
}

.socials {
  display: flex;
  gap: 45px;
}

.socials img {
  width: 40px;
  height: 40px;
  filter: brightness(0) invert(1);
  transition: filter 0.25s ease;
}

.socials a:hover img {
  filter: brightness(0) saturate(100%) invert(62%) sepia(98%) saturate(360%) hue-rotate(53deg) brightness(96%) contrast(94%);
}

.footer-links {
  display: flex;
  gap: 80px;
}

.footer-links h3 {
  margin: 0 0 16px;
  font-size: 20px;
  font-weight: 500;
}

.footer-links a {
  display: block;
  font-size: 18px;
  line-height: 40px;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--brand-accent);
}

.footer-bottom {
  margin-top: 90px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
}

.footer-bottom span {
  text-decoration: underline;
}

@media (max-width: 1200px) {
  :root {
    --container: 1120px;
  }

  .container {
    width: calc(100% - 80px);
  }

  .nav-links {
    gap: 28px;
    font-size: 18px;
  }

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

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

  .services-left {
    min-height: 650px;
    padding-bottom: 60px;
  }

  .services-right {
    min-height: auto;
    padding: 40px;
  }

  .projects-trigger {
    height: 1800px;
  }

  .project-card,
  .project-card > img {
    width: 420px;
    height: 480px;
  }

  .project-card h3 {
    font-size: 32px;
  }

  .quote-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .quote-grid > div img {
    margin-top: 40px;
  }
}

@media (max-width: 900px) {
  :root {
    --section-gap: 110px;
  }

  .container {
    width: calc(100% - 40px);
  }

  .site-header {
    height: 86px;
  }

  .brand {
    width: 170px;
    height: 49px;
  }

  .nav-wrap {
    position: relative;
    gap: 20px;
  }

  .site-header .btn {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
    z-index: 2;
  }

  .site-header.scrolled .nav-toggle span {
    background: var(--text);
  }

  .site-header.mobile-nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .site-header.mobile-nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.mobile-nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 10px 18px 16px;
    border-radius: 14px;
    background: #fff;
    color: var(--text);
    box-shadow: 0 14px 42px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease;
  }

  .nav-links a {
    width: 100%;
    padding: 12px 0;
    border-bottom: 1px solid rgba(30, 30, 30, 0.14);
  }

  .nav-links a.active,
  .nav-links a:hover {
    color: var(--brand);
  }

  .inner-header .nav-links a.active {
    color: var(--brand);
  }

  .nav-links .mobile-enquire-link {
    display: inline-flex;
    margin-top: 12px;
    border: 0;
    border-radius: 5px;
    background: var(--brand);
    color: #fff;
    width: auto;
    padding: 12px 18px;
    font-size: 16px;
  }

  .nav-links .mobile-enquire-link.active,
  .inner-header .nav-links .mobile-enquire-link.active {
    color: #fff;
  }

  .site-header.mobile-nav-open .nav-links {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .services-left {
    display: none;
  }

  .hero {
    height: 680px;
  }

  .hero-inner {
    gap: 20px;
    padding-top: 46px;
  }

  .hero h1 {
    font-size: 42px;
    width: min(680px, 100%);
  }

  .hero p {
    font-size: 20px;
  }

  .hero-arrow {
    width: 84px;
    height: 84px;
    bottom: 30px;
  }

  .hero-arrow img {
    width: 42px;
    height: 42px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .about-grid > img,
  .about-visual {
    width: 100%;
    height: auto;
  }

  .about-image {
    height: auto;
  }

  .about h2,
  .why h2,
  .projects h2,
  .blogs h2,
  .quote h2 {
    font-size: 30px;
  }

  .about p {
    font-size: 18px;
    line-height: 1.6;
  }

  .about-stats {
    gap: 18px;
  }

  .about-stats h3 {
    font-size: 40px;
  }

  .video {
    height: 440px;
  }

  .unmute {
    width: 90px;
    height: 90px;
    top: 130px;
    font-size: 16px;
  }

  .why-grid,
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .why-divider {
    display: none;
  }

  .why article {
    width: 100%;
    align-items: flex-start;
    gap: 8px;
  }

  .why article .icon {
    order: 1;
    display: block;
    width: 64px;
    height: 64px;
  }

  .why article h3 {
    order: 2;
    font-size: 32px;
    text-align: left;
  }

  .why article p {
    order: 3;
    min-height: 0;
    font-size: 19px;
    text-align: left;
  }

  .why article > img:last-child,
  .why article > img:first-child:not(.icon) {
    order: 4;
    width: 100%;
    height: 260px;
    margin-top: 10px;
    object-fit: cover;
  }

  .why article:first-child > img:last-child,
  .why article:last-child > img:last-child,
  .why article:nth-child(3) > img:first-child:not(.icon) {
    margin-top: 10px;
    height: 260px;
  }

  .projects-head,
  .blogs-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .projects-trigger {
    height: auto;
  }

  .projects-sticky {
    position: static;
    overflow-x: auto;
    padding-bottom: 8px;
  }

  .projects-track {
    padding-inline: 20px;
    transform: none !important;
  }

  .project-card,
  .project-card > img {
    width: 320px;
    height: 390px;
  }

  .project-card h3 {
    font-size: 28px;
  }

  .project-card p {
    font-size: 18px;
  }

  .sector {
    height: 420px;
  }

  .sector-title {
    font-size: 60px;
  }

  .testimonials .container {
    min-height: 470px;
  }

  #testimonialContent blockquote {
    font-size: 21px;
    line-height: 1.5;
  }

  #testimonialContent .name {
    font-size: 24px;
  }

  #testimonialContent .location {
    font-size: 18px;
  }

  .quote-grid > div img {
    width: min(447px, 100%);
  }

  .footer {
    padding-top: 55px;
  }

  .footer-top {
    flex-direction: column;
  }

  .footer-links {
    width: 100%;
    justify-content: space-between;
    gap: 30px;
  }

  .footer-links a {
    line-height: 1.8;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
  }
}

@media (max-width: 640px) {
  :root {
    --section-gap: 90px;
  }

  .hero {
    height: 560px;
  }

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

  .hero p {
    font-size: 18px;
  }

  .btn {
    height: 45px;
    font-size: 17px;
  }

  .about .section-chip {
    font-size: 17px;
  }

  .about h2,
  .why h2,
  .projects h2,
  .blogs h2,
  .quote h2,
  .testimonials h2 {
    font-size: 26px;
  }

  .about p {
    font-size: 16px;
  }

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

  .services-left {
    min-height: 530px;
    padding-bottom: 80px;
  }

  .services-left .build-image-wrap {
    left: -26px;
    width: 540px;
    height: 540px;
  }

  .services-left h2 {
    font-size: 74px;
  }

  .services-left p {
    font-size: 28px;
  }

  .services-right {
    padding: 28px 20px 40px;
  }

  .services-right h3 {
    font-size: 30px;
  }

  .services-right li a {
    height: 72px;
    font-size: 20px;
  }

  .marquee-item {
    font-size: 26px;
    margin-right: 20px;
  }

  .sector {
    height: 320px;
  }

  .sector-title {
    font-size: 40px;
  }

  .blog-card > img {
    height: 340px;
  }

  .blog-card h3 {
    min-height: auto;
    font-size: 22px;
  }

  .watermark {
    width: 260px;
  }

  #testimonialContent blockquote {
    font-size: 18px;
  }

  #testimonialContent .name {
    font-size: 20px;
  }

  #testimonialContent .location {
    font-size: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* Inner Pages */
.inner-page {
  background: #f5f7fa;
}

.inner-header .nav-links a.active {
  color: var(--brand-accent);
}

.inner-hero {
  position: relative;
  height: 820px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.inner-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.about-hero::before {
  background-image: url('https://www.figma.com/api/mcp/asset/71209cdc-9a7c-4625-b567-b2a99d7d09f9');
}

.services-hero::before {
  background-image: url('https://www.figma.com/api/mcp/asset/2cbacc01-2c32-481d-be58-efc9a1e428b1');
}

.projects-hero::before {
  background-image: url('https://www.figma.com/api/mcp/asset/37c20efc-5e9a-4afa-9f84-47fbc917e1eb');
}

.blogs-hero::before {
  background-image: url('https://www.figma.com/api/mcp/asset/b5b1b192-003a-4b05-b6be-0321b0251c0b');
}

.contact-hero::before {
  background-image: url('https://www.figma.com/api/mcp/asset/f9544f1b-2b39-4435-80d8-99e284d59885');
}

.inner-hero.short {
  height: 648px;
}

.inner-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.72) 20%, rgba(0, 0, 0, 0.2) 100%);
  z-index: 2;
}

.inner-hero-overlay.dark {
  background: rgba(0, 0, 0, 0.6);
}

.inner-hero-lines {
  position: absolute;
  inset: 0;
  background: url('https://www.figma.com/api/mcp/asset/3a65cc6e-f1fa-400d-a2c0-5d5de4e2bc8e') center/cover no-repeat;
  opacity: 0.32;
  z-index: 3;
}

.inner-hero-content {
  position: relative;
  z-index: 5;
  text-align: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.inner-hero-content.align-left {
  align-items: flex-start;
  text-align: left;
}

.hero-watermark {
  margin: 0;
  font-size: clamp(80px, 13vw, 201px);
  line-height: 1;
  font-weight: 500;
  opacity: 0.2;
  text-transform: uppercase;
}

.inner-hero-content h1 {
  margin: 0;
  max-width: 900px;
  font-size: clamp(36px, 4vw, 56px);
  text-transform: uppercase;
  line-height: 1.2;
}

.inner-hero-content p {
  margin: 0;
  max-width: 900px;
  font-size: 26px;
}

.about-page-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.about-page-head h2 {
  margin: 0;
  max-width: 600px;
  font-size: 44px;
  text-transform: uppercase;
  line-height: 1.2;
}

.experience-pill {
  display: flex;
  gap: 14px;
  align-items: center;
}

.experience-pill .value {
  font-size: 62px;
  font-weight: 500;
  color: var(--brand-accent);
}

.experience-pill span:last-child {
  font-size: 14px;
  max-width: 80px;
  text-transform: uppercase;
}

.about-stats.compact {
  max-width: none;
}

.about-story-grid {
  margin-top: 70px;
  display: grid;
  grid-template-columns: 1fr 510px;
  gap: 70px;
}

.about-story-grid h3 {
  margin: 0;
  font-size: 34px;
  text-transform: uppercase;
}

.about-story-grid > div > p {
  margin: 20px 0 0;
  font-size: 20px;
  line-height: 1.7;
}

.vision-row {
  margin-top: 24px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.vision-row img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.vision-row h4 {
  margin: 0;
  font-size: 20px;
  text-transform: uppercase;
}

.vision-row p {
  margin: 6px 0 0;
  font-size: 16px;
  line-height: 1.7;
}

.about-image-stack {
  position: relative;
  height: 710px;
}

.about-image-stack img {
  width: 510px;
  height: 620px;
  object-fit: cover;
  position: absolute;
  right: 0;
  top: 0;
}

.about-image-stack img.front {
  width: 390px;
  height: 530px;
  border: 12px solid #f5f7fa;
  left: 0;
  right: auto;
  top: 235px;
}

.team {
  text-align: center;
}

.team h2,
.about-services h2,
.services-listing h2,
.blogs-page h2 {
  margin: 24px 0 0;
  font-size: 40px;
  text-transform: uppercase;
}

.team-card {
  margin: 75px auto 0;
  width: min(1030px, 100%);
  display: grid;
  grid-template-columns: 434px 1fr;
  gap: 80px;
  align-items: center;
  text-align: left;
}

.team-card img {
  width: 100%;
  height: 515px;
  object-fit: cover;
}

.team-card .role {
  margin: 0;
  font-size: 20px;
  color: var(--brand-accent);
  text-transform: uppercase;
  font-weight: 500;
}

.team-card h3 {
  margin: 12px 0 0;
  font-size: 36px;
}

.team-card p {
  margin: 18px 0 0;
  font-size: 20px;
  line-height: 1.7;
}

.team-controls,
.about-services-controls {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  gap: 24px;
}

.team-controls button,
.about-services-controls button,
.blog-pagination button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(30, 30, 30, 0.25);
  background: #fff;
  font-size: 28px;
  color: var(--brand);
  cursor: pointer;
}

.about-services {
  background: #eaf3ec;
  padding: 70px 0 100px;
}

.about-services h2 {
  margin: 0;
  text-align: center;
}

.about-services-track {
  position: relative;
  margin: 55px auto 0;
  height: 530px;
  width: min(1100px, 100%);
}

.about-service-card {
  position: absolute;
  inset: 0;
  width: 72%;
  height: 100%;
  margin: auto;
  overflow: hidden;
  transition: transform 0.45s ease, opacity 0.45s ease, filter 0.45s ease;
}

.about-service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-service-overlay {
  position: absolute;
  inset: 0;
  padding: 56px 44px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0));
  color: #fff;
}

.about-service-overlay p {
  margin: 0;
  font-size: 34px;
}

.about-service-overlay h3 {
  margin: 5px 0 0;
  font-size: 26px;
  text-transform: uppercase;
  max-width: 390px;
}

.about-service-card.is-active {
  transform: translateX(0) scale(1);
  z-index: 3;
  opacity: 1;
}

.about-service-card.is-prev {
  transform: translateX(-25%) scale(0.86);
  z-index: 2;
  opacity: 0.65;
  filter: saturate(0.8);
}

.about-service-card.is-next {
  transform: translateX(25%) scale(0.86);
  z-index: 2;
  opacity: 0.65;
  filter: saturate(0.8);
}

.services-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 580px) minmax(0, 656px);
  justify-content: space-between;
  gap: 44px;
  align-items: start;
}

.services-intro-media img {
  width: 100%;
  height: 454px;
  object-fit: cover;
}

.ongoing-card {
  margin-top: 20px;
  width: 100%;
  height: 112px;
  display: grid;
  grid-template-columns: 312px 1fr;
  background: #eaf3ec;
  overflow: hidden;
}

.ongoing-card > img {
  width: 312px;
  height: 112px;
  object-fit: cover;
}

.ongoing-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 12px 22px;
}

.ongoing-top {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ongoing-card strong {
  display: block;
  font-size: 42px;
  line-height: 1;
  font-weight: 600;
}

.ongoing-icon {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: #58bf1d;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ongoing-card span {
  display: block;
  margin-top: 4px;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.services-intro-content {
  display: flex;
  flex-direction: column;
  gap: 21px;
}

.services-intro-grid h2 {
  margin: 0;
  max-width: 627px;
  font-size: 34px;
  text-transform: uppercase;
  line-height: normal;
}

.services-intro-grid p {
  margin: 0;
  font-size: 20px;
  line-height: 1.75;
}

.services-listing {
  background: #eaf3ec;
  padding: 75px 0 100px;
}

.services-listing h2 {
  margin: 0 auto;
  max-width: 760px;
  text-align: center;
}

.services-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-item {
  display: grid;
  grid-template-columns: 1fr 443px;
  gap: 35px;
  align-items: center;
  background: transparent;
  padding: 45px 28px;
  transition: 0.32s ease;
}

.service-item h3 {
  margin: 0;
  font-size: 24px;
}

.service-item p {
  margin: 20px 0 0;
  font-size: 18px;
  line-height: 1.66;
}

.service-item img {
  width: 443px;
  height: 226px;
  object-fit: cover;
}

.service-item:hover {
  background: linear-gradient(90deg, #1f5746 0%, rgba(88, 191, 29, 0) 100%);
  box-shadow: 0 4px 12.6px rgba(0, 0, 0, 0.25);
}

.service-item:hover h3,
.service-item:hover p {
  color: #fff;
}

.projects-page .project-tabs {
  display: flex;
  gap: 50px;
  border-bottom: 1px solid rgba(30, 30, 30, 0.2);
}

.project-tabs button {
  border: 0;
  background: none;
  padding: 0 0 22px;
  text-transform: uppercase;
  font: 600 24px/1.2 "Outfit", sans-serif;
  cursor: pointer;
  color: #1e1e1e;
}

.project-tabs button.active {
  color: var(--brand);
  border-bottom: 3px solid var(--brand);
}

.projects-grid {
  margin-top: 74px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px 32px;
}

.project-page-card img {
  width: 100%;
  height: 509px;
  object-fit: cover;
}

.project-page-card h3 {
  margin: 24px 0 6px;
  font-size: 38px;
  font-weight: 300;
}

.project-page-card p {
  margin: 0;
  font-size: 24px;
  color: rgba(31, 41, 55, 0.75);
}

.project-page-card .line {
  height: 1px;
  background: rgba(30, 30, 30, 0.2);
  margin-top: 16px;
}

.project-page-card.reveal-enter {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.45s ease, transform 0.45s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.project-page-card.reveal-enter.reveal-in {
  opacity: 1;
  transform: translateY(0);
}

.projects-more-wrap {
  margin-top: 54px;
  display: flex;
  justify-content: center;
}

.projects-more-wrap .btn:disabled {
  opacity: 0.6;
  cursor: default;
}

.blogs-page h2 {
  text-align: center;
  margin: 0 auto;
  max-width: 500px;
}

.blog-grid.page {
  margin-top: 70px;
}

.blog-pagination {
  margin-top: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
}

.blog-pagination span {
  font-size: 26px;
}

.blog-card:hover .blog-meta img {
  filter: brightness(0) saturate(100%) invert(62%) sepia(98%) saturate(360%) hue-rotate(53deg) brightness(96%) contrast(94%);
}

.contact-page {
  padding-bottom: 40px;
}

.contact-form-wrap {
  position: relative;
  margin-top: -390px;
  z-index: 8;
}

.contact-form {
  background: #eaf3ec;
  width: min(1055px, 100%);
  margin: 0 auto;
  padding: 75px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-form label,
.contact-form input,
.contact-form textarea {
  font-family: "Outfit", sans-serif;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 21px;
  font-size: 18px;
  font-weight: 500;
}

.contact-form input,
.contact-form textarea {
  border: 0;
  border-bottom: 1px solid rgba(30, 30, 30, 0.4);
  outline: 0;
  background: transparent;
  font-size: 16px;
  padding: 0 0 10px;
}

.contact-form textarea {
  min-height: 117px;
  resize: vertical;
}

.contact-info-row {
  margin-top: 78px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-item .icon {
  width: 70px;
  height: 70px;
  flex-shrink: 0;
  aspect-ratio: 1 / 1;
}

.contact-item .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.contact-item p {
  margin: 0;
  font-size: 20px;
  line-height: 1.4;
}

.map-wrap iframe {
  width: 100%;
  height: 743px;
}

@media (max-width: 1200px) {
  .inner-hero {
    height: 720px;
  }

  .inner-hero.short {
    height: 560px;
  }

  .inner-hero-content p {
    font-size: 22px;
  }

  .about-story-grid,
  .services-intro-grid {
    grid-template-columns: 1fr;
  }

  .about-image-stack {
    height: 600px;
  }

  .about-image-stack img,
  .about-image-stack img.front {
    width: 70%;
    height: auto;
  }

  .team-card {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .services-listing {
    padding-inline: 0;
  }

  .service-item {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .service-item img {
    width: 100%;
    height: 280px;
  }

  .contact-form {
    padding: 48px;
  }
}

@media (max-width: 900px) {
  .inner-hero {
    height: 580px;
  }

  .inner-hero.short {
    height: 480px;
  }

  .hero-watermark {
    opacity: 0.16;
  }

  .inner-hero-content h1 {
    font-size: 34px;
  }

  .inner-hero-content p {
    font-size: 20px;
  }

  .about-page-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .about-page-head h2,
  .team h2,
  .about-services h2,
  .services-listing h2,
  .blogs-page h2 {
    font-size: 30px;
  }

  .about-image-stack {
    height: 460px;
  }

  .about-image-stack img,
  .about-image-stack img.front {
    width: 100%;
    border-width: 8px;
  }

  .about-image-stack img.front {
    display: none;
  }

  .about-services-track {
    height: 420px;
  }

  .about-service-card {
    width: 88%;
  }

  .about-service-card.is-prev {
    transform: translateX(-12%) scale(0.88);
  }

  .about-service-card.is-next {
    transform: translateX(12%) scale(0.88);
  }

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

  .project-page-card img {
    height: 360px;
  }

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

  .project-page-card p {
    font-size: 20px;
  }

  .contact-form-wrap {
    margin-top: -250px;
  }

  .contact-form {
    padding: 32px 22px;
  }

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

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

@media (max-width: 640px) {
  .inner-hero {
    height: 500px;
  }

  .inner-hero.short {
    height: 420px;
  }

  .hero-watermark {
    font-size: 72px;
  }

  .inner-hero-content h1 {
    font-size: 28px;
  }

  .inner-hero-content p {
    font-size: 17px;
  }

  .about-services-track {
    height: 350px;
  }

  .about-service-overlay {
    padding: 26px;
  }

  .about-service-overlay p {
    font-size: 26px;
  }

  .about-service-overlay h3 {
    font-size: 20px;
  }

  .team-card img {
    height: 390px;
  }

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

  .team-card p {
    font-size: 18px;
  }

  .services-intro-grid h2,
  .about-story-grid h3 {
    font-size: 28px;
  }

  .services-intro-grid p,
  .about-story-grid > div > p {
    font-size: 17px;
    line-height: 1.6;
  }

  .ongoing-card {
    height: auto;
    grid-template-columns: 1fr;
  }

  .ongoing-card > img {
    width: 100%;
    height: 120px;
  }

  .ongoing-copy {
    padding: 14px 18px 16px;
  }

  .ongoing-card strong {
    font-size: 34px;
  }

  .ongoing-card span {
    font-size: 15px;
  }

  .service-item {
    padding: 24px 18px;
  }

  .service-item h3 {
    font-size: 22px;
  }

  .service-item p {
    font-size: 16px;
  }

  .project-tabs {
    flex-wrap: wrap;
    gap: 20px;
  }

  .project-tabs button {
    font-size: 18px;
    padding-bottom: 12px;
  }

  .project-page-card img {
    height: 290px;
  }

  .project-page-card h3 {
    font-size: 26px;
  }

  .project-page-card p {
    font-size: 18px;
  }

  .blog-pagination span {
    font-size: 20px;
  }

  .contact-form-wrap {
    margin-top: -160px;
  }

  .contact-item p {
    font-size: 17px;
  }

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

/* 2026-03-11: About page exact Figma alignment + hero watermark fix */
.inner-hero-content {
  position: relative;
  min-height: 320px;
  padding-top: 160px;
  justify-content: center;
}

.inner-hero .hero-watermark {
  position: absolute;
  left: 50%;
  top: 209px;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 994px;
  height: 204px;
  margin: 0;
  z-index: 4;
  pointer-events: none;
  color: #fff;
  text-align: center;
  font-family: "Outfit", sans-serif;
  font-size: 201px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  opacity: 0.2;
  white-space: nowrap;
}

.services-hero .hero-watermark,
.projects-hero .hero-watermark {
  left: max(20px, calc((100% - min(var(--container), calc(100% - 160px))) / 2));
  transform: none;
  justify-content: flex-start;
  text-align: left;
}

.inner-hero-content h1,
.inner-hero-content > p,
.inner-hero-content .btn {
  position: relative;
  z-index: 1;
}

.btn-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  border-radius: 5px;
  padding: 0 22px;
  background: #fff;
  color: var(--brand);
  font-size: 20px;
}

.about-info-exact h2,
.about-membership h2,
.about-cta h2,
.about-services-exact h2,
.team-exact h2 {
  margin: 0;
  font-size: 40px;
  text-transform: uppercase;
  line-height: 1.2;
}

.about-info-top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.about-info-top h2 {
  max-width: 595px;
  font-size: 44px;
}

.about-exp {
  display: flex;
  width: 310px;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex: 0 0 auto;
}

.about-exp .circle {
  position: relative;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: #dce5df;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.about-exp .circle span {
  color: #5ebf1d;
  font-family: "Mexcellent", "Outfit", sans-serif;
  font-size: 104px;
  line-height: 0.9;
  font-weight: 300;
}

.about-exp p {
  margin: 0;
  width: 136px;
  color: #1e1e1e;
  font-size: 22px;
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: 0;
  text-transform: uppercase;
  flex: 0 0 auto;
}

.about-numbers {
  margin-top: 58px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 72px;
}

.about-numbers article h3 {
  margin: 0;
  font-size: 56px;
  font-weight: 300;
}

.about-numbers article .line {
  margin-top: 22px;
  height: 1px;
  background: rgba(30, 30, 30, 0.65);
}

.about-numbers article p {
  margin: 22px 0 0;
  font-size: 18px;
  text-transform: uppercase;
}

.about-info-body {
  margin-top: 144px;
  display: grid;
  grid-template-columns: 589px 1fr;
  gap: 100px;
}

.about-text-col h3 {
  margin: 0;
  font-size: 52px;
  line-height: 1.2;
  text-transform: uppercase;
}

.about-text-col > p {
  margin: 20px 0 0;
  font-size: 20px;
  line-height: 1.75;
}

.vm-item {
  margin-top: 30px;
  display: flex;
  gap: 26px;
  align-items: flex-start;
}

.vm-icon {
  display: flex;
  width: 90px;
  height: 90px;
  padding: 21px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 45px;
  background: #eaf3ec;
  flex: 0 0 auto;
}

.vm-icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.vm-item h4 {
  margin: 0;
  font-size: 20px;
  text-transform: uppercase;
}

.vm-item p {
  margin: 8px 0 0;
  font-size: 16px;
  line-height: 1.8;
}

.about-photos-col {
  position: relative;
  min-height: 768px;
}

.about-photos-col img.back {
  position: absolute;
  right: 0;
  top: 0;
  width: 515px;
  height: 619px;
  object-fit: cover;
}

.about-photos-col img.front {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 395px;
  height: 533px;
  object-fit: cover;
  border: 12px solid #f5f7fa;
}

.team-exact {
  text-align: center;
}

.team-exact .section-chip {
  display: flex;
  height: 50px;
  justify-content: center;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
  align-self: stretch;
  width: fit-content;
  margin: 0 auto;
  padding: 0 24px;
  border: 2px solid #58bf1d;
  border-radius: 50px;
  color: #58bf1d;
  font-size: 20px;
  font-weight: 300;
  line-height: normal;
}

.team-exact .section-chip .dot {
  width: 15px;
  height: 15px;
  min-width: 15px;
  min-height: 15px;
  max-width: 15px;
  max-height: 15px;
  flex: 0 0 15px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: #58bf1d;
}

.team-exact h2 {
  margin-top: 33px;
}

.team-exact-grid {
  margin-top: 75px;
  display: grid;
  grid-template-columns: 434px 590px;
  gap: 109px;
  justify-content: center;
  align-items: center;
  text-align: left;
}

.team-image-wrap img {
  width: 434px;
  height: 515px;
  object-fit: cover;
  box-shadow: 0 9px 20px rgba(0, 0, 0, 0.1), 0 37px 37px rgba(0, 0, 0, 0.09);
}

.team-arrow-row {
  margin-top: 26px;
  display: flex;
  justify-content: center;
  gap: 94px;
}

.team-arrow-row button {
  border: 0;
  background: none;
  color: #58bf1d;
  font-size: 52px;
  line-height: 1;
  cursor: pointer;
}

.team-copy-wrap .role {
  margin: 0;
  font-size: 20px;
  color: #58bf1d;
  text-transform: uppercase;
  font-weight: 500;
}

.team-copy-wrap h3 {
  margin: 13px 0 0;
  font-size: 50px;
  line-height: 1.2;
}

.team-copy-wrap p {
  margin: 23px 0 0;
  font-size: 20px;
  line-height: 1.75;
}

.team-linkedin {
  margin-top: 20px;
  display: inline-block;
}

.team-linkedin img {
  width: 50px;
  height: 50px;
  filter: brightness(0) saturate(100%) invert(10%) sepia(0%) saturate(0%) hue-rotate(139deg) brightness(97%) contrast(95%);
  transition: filter 0.25s ease;
}

.team-linkedin:hover img {
  filter: none;
}

.about-services-exact {
  background: #eaf3ec;
  padding: 39px 0 70px;
}

.about-services-exact h2 {
  margin: 0 auto;
  max-width: 716px;
  text-align: center;
}

.about-services-stage {
  position: relative;
  margin: 46px auto 0;
  width: min(1160px, 100%);
  height: 560px;
}

.about-services-stage .about-services-track {
  margin: 0;
  width: 100%;
  height: 100%;
}

.about-services-stage .about-service-card {
  width: 78%;
  height: 94%;
  top: 6%;
  bottom: 0;
  transition: transform 0.72s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.72s ease, filter 0.72s ease;
  will-change: transform, opacity, filter;
}

.about-services-stage .about-service-card.is-active {
  transform: translateX(0) scale(1);
  z-index: 6;
  opacity: 1;
  filter: saturate(1);
  pointer-events: auto;
}

.about-services-stage .about-service-card.is-prev {
  transform: translateX(-20%) scale(0.86);
  opacity: 0.66;
  z-index: 4;
  filter: saturate(0.8);
  pointer-events: none;
}

.about-services-stage .about-service-card.is-next {
  transform: translateX(20%) scale(0.86);
  opacity: 0.66;
  z-index: 4;
  filter: saturate(0.8);
  pointer-events: none;
}

.about-services-stage .about-service-card.is-hidden {
  transform: translateX(0) scale(0.8);
  opacity: 0;
  z-index: 1;
  pointer-events: none;
}

.about-services-stage .about-service-overlay {
  padding: 44px;
}

.about-services-stage .about-service-overlay p {
  font-size: 34px;
}

.about-services-stage .about-service-overlay h3 {
  font-size: 38px;
  line-height: 1.25;
  max-width: 380px;
}

.about-services-stage .service-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 77px;
  height: 77px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: #58bf1d;
  font-size: 52px;
  line-height: 1;
  cursor: pointer;
  z-index: 10;
  display: grid;
  place-items: center;
  padding-bottom: 8px;
}

.about-services-stage .service-nav.prev {
  left: 80px;
}

.about-services-stage .service-nav.next {
  right: 80px;
}

.about-membership .membership-grid {
  display: grid;
  grid-template-columns: 547px 607px;
  gap: 109px;
}

.about-membership p {
  margin: 22px 0 0;
  font-size: 20px;
  line-height: 1.7;
}

.about-membership ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.about-membership li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  font-size: 20px;
  line-height: 1.3;
}

.about-membership li img {
  width: 30px;
  height: 30px;
  aspect-ratio: 1 / 1;
  flex: 0 0 auto;
}

.about-cta .about-cta-box {
  position: relative;
  height: 506px;
  background: url('https://www.figma.com/api/mcp/asset/7dcfa342-510f-432c-9bf1-61a23fbd6202') center/cover no-repeat;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 26px;
}

.about-cta .about-cta-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(270deg, rgba(0, 0, 0, 0) 0%, #000 100%), rgba(0, 0, 0, 0.3);
}

.about-cta .about-cta-lines {
  position: absolute;
  inset: 0;
  background: url('https://www.figma.com/api/mcp/asset/e6ae538b-65c0-4630-b14d-d921147ec79c') center/cover no-repeat;
  opacity: 0.4;
}

.about-cta h2,
.about-cta .btn-light {
  position: relative;
  z-index: 1;
}

.about-cta h2 {
  max-width: 720px;
  font-size: 56px;
  text-align: center;
  color: #fff;
}

@media (max-width: 1200px) {
  .about-info-top,
  .about-info-body,
  .about-membership .membership-grid,
  .team-exact-grid {
    grid-template-columns: 1fr;
    display: grid;
    gap: 40px;
  }

  .about-info-top h2 {
    max-width: none;
  }

  .about-numbers {
    gap: 24px;
  }

  .about-photos-col {
    min-height: 620px;
  }

  .about-photos-col img.back,
  .about-photos-col img.front,
  .team-image-wrap img {
    width: 100%;
    height: auto;
    position: static;
  }

  .about-photos-col img.front {
    margin-top: 20px;
  }

  .about-services-stage {
    height: 480px;
  }

  .about-services-stage .service-nav.prev {
    left: 12px;
  }

  .about-services-stage .service-nav.next {
    right: 12px;
  }

  .about-cta h2 {
    font-size: 42px;
  }
}

@media (max-width: 900px) {
  .inner-hero .hero-watermark {
    font-size: 120px;
    width: min(740px, calc(100% - 24px));
    height: 138px;
    top: 160px;
    opacity: 0.2;
  }

  .services-hero .hero-watermark,
  .projects-hero .hero-watermark {
    left: 20px;
    transform: none;
    justify-content: flex-start;
    text-align: left;
  }

  .about-info-exact h2,
  .about-membership h2,
  .about-cta h2,
  .about-services-exact h2,
  .team-exact h2,
  .about-info-top h2 {
    font-size: 30px;
  }

  .about-text-col h3 {
    font-size: 42px;
  }

  .about-exp p,
  .about-text-col > p,
  .team-copy-wrap p,
  .about-membership p,
  .about-membership li {
    font-size: 18px;
  }

  .about-services-stage {
    height: 390px;
  }

  .about-services-stage .about-service-card {
    width: 90%;
  }

  .about-services-stage .about-service-card.is-prev {
    transform: translateX(-10%) scale(0.88);
  }

  .about-services-stage .about-service-card.is-next {
    transform: translateX(10%) scale(0.88);
  }

  .about-services-stage .about-service-overlay h3 {
    font-size: 28px;
  }

  .about-services-stage .service-nav {
    width: 56px;
    height: 56px;
    font-size: 38px;
  }

  .about-photos-col img.front {
    display: none;
  }

  .team-exact .section-chip {
    height: 50px;
    gap: 5px;
    padding: 0 22px;
    font-size: 20px;
  }
}

@media (max-width: 640px) {
  .inner-hero .hero-watermark {
    font-size: 70px;
    width: min(370px, calc(100% - 24px));
    height: 84px;
    top: 140px;
  }

  .services-hero .hero-watermark,
  .projects-hero .hero-watermark {
    left: 12px;
  }

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

  .about-exp .circle {
    width: 120px;
    height: 120px;
  }

  .about-exp .circle span {
    font-size: 84px;
  }

  .about-exp p {
    width: auto;
    font-size: 30px;
  }

  .about-text-col h3,
  .team-copy-wrap h3 {
    font-size: 30px;
  }

  .vm-item {
    gap: 14px;
  }

  .vm-icon {
    width: 62px;
    height: 62px;
    padding: 14px;
  }

  .vm-icon img {
    width: 34px;
    height: 34px;
  }

  .team-arrow-row {
    gap: 48px;
  }

  .about-services-stage {
    height: 320px;
  }

  .about-services-stage .about-service-overlay {
    padding: 20px;
  }

  .about-services-stage .about-service-overlay p {
    font-size: 24px;
  }

  .about-services-stage .about-service-overlay h3 {
    font-size: 18px;
    max-width: 240px;
  }

  .about-membership li {
    font-size: 16px;
  }

  .about-cta .about-cta-box {
    height: 360px;
  }

  .about-cta h2 {
    font-size: 28px;
  }

  .team-exact .section-chip {
    height: 50px;
    padding: 0 16px;
    font-size: 18px;
    gap: 5px;
  }
}
