.section-white,
body {
  background: var(--white);
}
:root {
  --olive: #b4b99a;
  --olive-dark: #9da27f;
  --olive-light: #eef0e7;
  --navy: #222a33;
  --text: #33383d;
  --muted: #8b9094;
  --white: #ffffff;
  --soft: #f7f8f6;
  --border: #e8e9e3;
  --shadow: 0 8px 28px rgba(27, 32, 38, 0.08);
  --heading: "Montserrat", sans-serif;
  --body: "Roboto", sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--text);
  font-family: var(--body);
  line-height: 1.7;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
button,
input,
textarea {
  font: inherit;
}
.container {
  width: min(1140px, calc(100% - 40px));
  margin-inline: auto;
}
.section-light {
  background: #fbfbfa;
}
.section-soft {
  background: var(--soft);
}
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  background: rgba(255, 255, 255, 0.92);
}
.hero,
.menu-toggle,
.nav a {
  position: relative;
}
.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand,
.nav {
  align-items: center;
  font-family: var(--heading);
}
.brand {
  display: inline-flex;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.3px;
}
.brand-mark {
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--olive);
}
.nav {
  display: flex;
  gap: 30px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.7px;
}
.btn,
.eyebrow,
.person-placeholder span,
.portrait-placeholder span {
  font-weight: 800;
  font-family: var(--heading);
}
.nav a {
  color: #70757a;
}
.address-line strong,
.hero h1,
.nav a.active {
  color: var(--navy);
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  transform: scaleX(0);
  transform-origin: center;
  background: var(--olive);
  transition: transform 0.2s;
}
.nav a.active::after,
.nav a:hover::after {
  transform: scaleX(1);
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 8px;
  border: 0;
  background: 0 0;
  cursor: pointer;
  z-index: 1001;
}
.menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  margin: 5px auto;
  background: var(--navy);
  border-radius: 2px;
  transform-origin: center;
  transition:
    transform 0.3s,
    opacity 0.2s,
    width 0.3s;
}
.hero {
  min-height: 660px;
  padding-top: 76px;
  overflow: hidden;
}
.hero-angle {
  position: absolute;
  width: 48%;
  height: 100%;
  right: -7%;
  top: 0;
  background: #e9eae7;
  clip-path: polygon(26% 0, 100% 0, 100% 100%, 0 100%);
}
.hero-grid {
  min-height: 584px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  z-index: 1;
}
.eyebrow {
  margin: 0 0 9px;
  color: var(--olive-dark);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.btn,
.stat span {
  letter-spacing: 1px;
  text-transform: uppercase;
}
.hero h1 {
  margin: 0;
  max-width: 800px;
  font-family: var(--heading);
  line-height: 1.1;
}
.contact-item strong,
.hero h1 span {
  color: var(--olive-dark);
}
.hero-text {
  max-width: 520px;
  margin: 22px 0 30px;
  color: #777d82;
}
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 0;
  border-radius: 2px;
  cursor: pointer;
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    background 0.2s;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.journey-item:hover,
.service-card:hover {
  transform: translateY(-5px);
}
.btn-primary {
  color: #fff;
  background: var(--olive-dark);
}
.btn-light {
  color: var(--navy);
  background: #fff;
}
.hero-visual {
  position: relative;
  height: 500px;
  display: grid;
  place-items: center;
}
.visual-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  opacity: 0.85;
}
.hero-vector,
.person-card {
  position: relative;
}
.orb-one {
  width: 350px;
  height: 350px;
  background: #d8dacd;
  right: 60px;
  top: 55px;
}
.orb-two {
  width: 180px;
  height: 180px;
  background: #bfc3aa;
  right: 0;
  bottom: 55px;
}
.person-card {
  width: 290px;
  min-height: 385px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  background: linear-gradient(145deg, #f6f6f4, #d9dad5);
  box-shadow: 0 24px 50px rgba(34, 42, 51, 0.16);
  transform: rotate(1deg);
}
.split-grid,
.stat {
  align-items: center;
}
.about-visual,
.service-card,
.skill-card {
  box-shadow: var(--shadow);
}
.person-placeholder {
  position: absolute;
  inset: 15px 15px 70px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 40% 35%, #fff 0 8%, transparent 9%),
    linear-gradient(145deg, #c9cbbf, #8f9582);
}
.person-placeholder span {
  width: 118px;
  height: 118px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.55);
  color: var(--navy);
  font-size: 38px;
}
.person-caption {
  position: relative;
  background: #fff;
}
.address-line small,
.address-line strong,
.contact-item small,
.contact-item strong,
.details-grid span,
.details-grid strong,
.person-caption small,
.person-caption strong {
  display: block;
}
.person-caption strong {
  font-family: var(--heading);
}
.person-caption small {
  color: var(--muted);
}
.stats {
  padding: 22px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat {
  min-height: 68px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  border-right: 1px solid var(--border);
}
.stat:last-child {
  border-right: 0;
}
.stat strong {
  color: var(--olive-dark);
  font-family: var(--heading);
  line-height: 1.2;
}
.stat span {
  margin-top: 3px;
  color: #92969a;
}
.about,
.contact,
.insights,
.services {
  padding: 100px 0;
}
.split-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
}
.about-visual {
  min-height: 450px;
  display: grid;
  place-items: center;
  background: #eef0eb;
}
.portrait-placeholder {
  width: 72%;
  height: 86%;
  display: flex;
  align-items: center;
  justify-content: end;
  flex-direction: column;
  padding-bottom: 30px;
  color: #fff;
  background:
    radial-gradient(circle at 50% 28%, #fff 0 8%, transparent 8.5%),
    linear-gradient(150deg, #c4c8ba, #767d69);
}
.portrait-placeholder span {
  width: 125px;
  height: 125px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  color: var(--navy);
  font-size: 38px;
}
.portrait-placeholder small {
  margin-top: 14px;
  font-weight: 600;
}
.about-copy h2,
.section-heading h2 {
  margin: 0;
  color: var(--navy);
  font-family: var(--heading);
  line-height: 1.2;
  letter-spacing: -0.8px;
}
.about-copy > p {
  max-width: 650px;
  color: #7d8286;
}
.details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 17px 30px;
  margin-top: 25px;
}
.details-grid div {
  border-bottom: 1px solid var(--border);
  padding-bottom: 10px;
}
.details-grid span {
  color: var(--navy);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.details-grid strong {
  margin-top: 2px;
  color: var(--olive-dark);
}
.address-line {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
  background: var(--olive-light);
}
.address-line .icon,
.contact-icon {
  color: var(--olive-dark);
  font-weight: 800;
}
.address-line small {
  color: #878d90;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.skills {
  padding: 90px 0;
}
.section-heading {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 48px;
}
.section-heading > p:last-child {
  color: #888d91;
  margin: 9px auto 0;
}
.skills-grid,
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.project-grid,
.services-grid {
  grid-template-columns: repeat(4, 1fr);
}
.skill-card {
  text-align: center;
  background: #fff;
}
.circle-progress {
  margin: 0 auto 14px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(
    var(--olive-dark) 0 var(--progress, 90%),
    #e7e8e2 var(--progress, 90%) 100%
  );
  position: relative;
}
.circle-progress::before {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: 50%;
  background: #fff;
}
.circle-progress span {
  position: relative;
  z-index: 1;
  color: var(--navy);
  font-family: var(--heading);
  font-weight: 800;
}
.skill-card:first-child .circle-progress {
  --progress: 95%;
}
.skill-card:nth-child(2) .circle-progress {
  --progress: 92%;
}
.skill-card:nth-child(3) .circle-progress,
.skill-card:nth-child(5) .circle-progress {
  --progress: 90%;
}
.skill-card:nth-child(4) .circle-progress {
  --progress: 88%;
}
.skill-card:nth-child(6) .circle-progress {
  --progress: 87%;
}
.service-card h3,
.skill-card h3 {
  margin: 0;
  color: var(--navy);
  font-family: var(--heading);
}
.skill-card p {
  margin: 4px 0 0;
  color: #999da0;
}
.services-grid {
  display: grid;
  gap: 15px;
}
.service-card {
  text-align: center;
  background: #fff;
  border: 1px solid #ededeb;
  transition: transform 0.2s;
}
.cta,
.service-icon {
  background: var(--olive);
}
.service-icon {
  margin: 0 auto 13px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  font-family: var(--heading);
  font-weight: 800;
}
.journey-label,
.journey-number {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 2px;
}
.service-card p {
  margin: 8px 0 0;
  color: #999da0;
}
.cta {
  padding: 45px 0;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.cta .eyebrow {
  color: #fff;
  opacity: 0.8;
}
.cta h2 {
  margin: 0;
  color: #fff;
  font-family: var(--heading);
}
.cta p:last-child {
  max-width: 620px;
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.82);
}
.project-grid {
  display: grid;
  gap: 8px;
}
.project-card {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: end;
  background: #aeb39a;
}
.project-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.22),
    rgba(34, 42, 51, 0.52)
  );
}
.project-card > div {
  position: relative;
  z-index: 1;
  color: #fff;
}
.journey-content h3,
.projects-heading h2 {
  color: var(--navy);
  font-family: var(--heading);
}
.project-card span {
  opacity: 0.8;
  letter-spacing: 1px;
}
.project-card h3 {
  margin: 3px 0;
  font-family: var(--heading);
  line-height: 1.25;
}
.project-card p {
  margin: 0;
  opacity: 0.85;
}
.project-one {
  background: linear-gradient(135deg, #69745f, #c3c7b5);
}
.project-two {
  background: linear-gradient(135deg, #7b7968, #d1cdb6);
}
.project-three {
  background: linear-gradient(135deg, #4f6570, #c2c8c3);
}
.project-four {
  background: linear-gradient(135deg, #68756f, #bfc8b8);
}
.project-five {
  background: linear-gradient(135deg, #7a6d58, #d2c8b5);
}
.project-six {
  background: linear-gradient(135deg, #596c79, #b6c2c8);
}
.project-seven {
  background: linear-gradient(135deg, #6f725c, #c4c6a9);
}
.project-eight {
  background: linear-gradient(135deg, #4f6261, #b8c3bd);
}
.projects {
  padding: 110px 0 100px;
  background: #fff;
}
.projects-heading {
  max-width: 720px;
  margin-bottom: 60px;
}
.projects-heading h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.15;
  letter-spacing: -1.4px;
}
.projects-heading > p:last-child {
  max-width: 650px;
  margin: 16px auto 0;
  color: #7d8589;
  font-size: 17px;
  line-height: 1.8;
}
.performance-journey {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.journey-item {
  position: relative;
  min-height: 340px;
  padding: 35px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #f5f6f2;
  border: 1px solid #e5e7df;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.journey-item:hover {
  box-shadow: 0 18px 40px rgba(30, 38, 34, 0.09);
}
.journey-item-dark {
  background: #252c31;
  border-color: #252c31;
  color: #fff;
}
.bottom-label,
.journey-label,
.journey-number,
.visual-symbol {
  color: var(--olive-dark);
}
.journey-item-dark:hover {
  box-shadow: 0 20px 45px rgba(20, 25, 27, 0.2);
}
.journey-number {
  position: absolute;
  top: 27px;
  right: 30px;
  font-family: var(--heading);
  opacity: 0.8;
}
.journey-item-dark .journey-number {
  color: #fff;
  opacity: 0.5;
}
.journey-content {
  position: relative;
  z-index: 3;
  max-width: 430px;
}
.journey-label {
  display: inline-block;
  margin-bottom: 12px;
  font-family: var(--heading);
}
.journey-item-dark .journey-label {
  color: #c1c7a3;
}
.journey-content h3 {
  margin: 0 0 13px;
  font-size: clamp(24px, 2.4vw, 31px);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.7px;
}
.footer-business .footer-info a:hover,
.journey-item-dark .journey-content h3,
.section-heading-light h2 {
  color: #fff;
}
.journey-content p {
  max-width: 430px;
  margin: 0;
  color: #7d8589;
  font-size: 17px;
  line-height: 1.7;
}
.journey-item-dark .journey-content p {
  color: rgba(255, 255, 255, 0.72);
}
.journey-visual {
  position: absolute;
  right: -25px;
  bottom: -45px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  opacity: 0.9;
}
.journey-item-dark .journey-visual {
  background: radial-gradient(
    circle,
    rgba(174, 181, 143, 0.18) 0 22%,
    transparent 22.5%
  );
}
.visual-orbit {
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(174, 181, 143, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.orbit-one {
  width: 130px;
  height: 130px;
}
.orbit-two {
  width: 205px;
  height: 205px;
}
.visual-dot {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #b2b993;
  box-shadow: 0 0 0 7px rgba(174, 181, 143, 0.1);
}
.dot-one {
  top: 25px;
  left: 112px;
}
.dot-two {
  top: 120px;
  left: 26px;
}
.call-wave,
.visual-symbol {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.dot-three {
  right: 18px;
  bottom: 60px;
}
.visual-symbol {
  font-family: var(--heading);
  font-size: 42px;
  font-weight: 700;
}
.bottom-label,
.projects-cta {
  font-size: 16px;
  font-weight: 700;
  font-family: var(--heading);
}
.journey-visual-olive {
  background: rgba(174, 181, 143, 0.16);
}
.call-wave {
  border: 2px solid rgba(148, 154, 109, 0.4);
  border-radius: 50%;
}
.wave-one {
  width: 70px;
  height: 70px;
}
.wave-two {
  width: 125px;
  height: 125px;
}
.wave-three {
  width: 190px;
  height: 190px;
}
.journey-visual-chart,
.journey-visual-light {
  background: rgba(174, 181, 143, 0.08);
}
.network-line {
  position: absolute;
  height: 1px;
  background: rgba(148, 154, 109, 0.45);
  transform-origin: left center;
}
.line-one {
  width: 145px;
  top: 80px;
  left: 45px;
  transform: rotate(20deg);
}
.line-two {
  width: 150px;
  top: 135px;
  left: 50px;
  transform: rotate(-20deg);
}
.line-three {
  width: 110px;
  top: 120px;
  left: 100px;
  transform: rotate(90deg);
}
.network-node {
  position: absolute;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: #aeb58f;
  box-shadow: 0 0 0 8px rgba(174, 181, 143, 0.12);
}
.node-one {
  left: 35px;
  top: 72px;
}
.node-two {
  right: 40px;
  top: 102px;
}
.node-three {
  left: 75px;
  bottom: 45px;
}
.node-four {
  right: 65px;
  bottom: 58px;
}
.chart-line {
  position: absolute;
  left: 35px;
  right: 20px;
  top: 60px;
  height: 110px;
  border-bottom: 1px solid rgba(148, 154, 109, 0.25);
}
.chart-line::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 5px;
  width: 100%;
  height: 90px;
  border-top: 3px solid var(--olive-dark);
  clip-path: polygon(
    0 85%,
    18% 70%,
    35% 75%,
    50% 45%,
    65% 55%,
    80% 25%,
    100% 0,
    100% 8%,
    80% 33%,
    65% 63%,
    50% 53%,
    35% 83%,
    18% 78%,
    0 93%
  );
}
.chart-bars {
  position: absolute;
  left: 45px;
  right: 30px;
  bottom: 40px;
  height: 70px;
  display: flex;
  align-items: flex-end;
  gap: 10px;
}
.chart-bars i {
  display: block;
  flex: 1;
  background: rgba(174, 181, 143, 0.45);
}
.chart-bars i:first-child {
  height: 25%;
}
.chart-bars i:nth-child(2) {
  height: 42%;
}
.chart-bars i:nth-child(3) {
  height: 35%;
}
.chart-bars i:nth-child(4) {
  height: 68%;
}
.chart-bars i:nth-child(5) {
  height: 90%;
}
.projects-bottom {
  margin-top: 25px;
  min-height: 115px;
  display: grid;
  grid-template-columns: 180px 1px 1fr auto;
  align-items: center;
  gap: 30px;
  padding: 25px 30px;
  background: #eef0e8;
  border: 1px solid #e1e4d8;
}
.bottom-label {
  display: block;
  margin-bottom: 4px;
  letter-spacing: 1.5px;
}
.projects-bottom strong {
  color: var(--navy);
  font-family: var(--heading);
  font-size: 28px;
}
.bottom-divider {
  width: 1px;
  height: 45px;
  background: #d5d8ca;
}
.projects-bottom p {
  margin: 0;
  color: #737b7f;
  font-size: 17px;
  line-height: 1.6;
}
.projects-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 20px;
  background: var(--olive-dark);
  color: #fff;
  transition:
    background 0.2s,
    transform 0.2s;
}
.projects-cta span {
  font-size: 20px;
}
.projects-cta:hover {
  background: #7f855f;
  transform: translateY(-2px);
}
.trust {
  padding: 100px 0;
  background: var(--olive);
}
.section-heading-light .eyebrow {
  color: #fff;
  opacity: 0.75;
}
.section-heading-light > p:last-child {
  color: rgba(255, 255, 255, 0.82);
}
.trust-grid article {
  background: rgba(255, 255, 255, 0.92);
}
.trust-grid span {
  color: var(--olive-dark);
  font-family: var(--heading);
  font-weight: 800;
}
.trust-grid h3 {
  margin: 8px 0 4px;
  color: var(--navy);
  font-family: var(--heading);
}
.trust-grid p {
  margin: 0;
  color: #8b9091;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.blog-card {
  background: #fff;
  box-shadow: var(--shadow);
}
.blog-image {
  height: 200px;
}
.image-a {
  background: linear-gradient(135deg, #bec5b2, #526054);
}
.image-b {
  background: linear-gradient(135deg, #d1c6ad, #6d766c);
}
.image-c {
  background: linear-gradient(135deg, #bcc5c6, #5b6b72);
}
.blog-body {
  padding: 18px;
}
.blog-body > span {
  color: var(--olive-dark);
  font-family: var(--heading);
  font-weight: 800;
  letter-spacing: 1.2px;
}
.blog-body h3 {
  margin: 7px 0 5px;
  color: var(--navy);
  font-family: var(--heading);
  line-height: 1.35;
}
.blog-body p {
  margin: 0;
  color: #92979a;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  max-width: 960px;
  margin: auto;
}
.contact-form {
  padding: 28px;
  border: 1px solid var(--border);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-bottom: 12px;
  border: 1px solid #dfe1d8;
  outline: 0;
  color: var(--text);
  background: #fff;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--olive);
}
.contact-form textarea {
  resize: vertical;
}
.form-note {
  min-height: 18px;
  margin: 10px 0 0;
  color: var(--olive-dark);
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 16px;
  background: var(--soft);
}
.contact-icon {
  min-width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
}
.contact-item small {
  color: var(--navy);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer {
  background: #252c33;
  color: #fff;
  padding-top: 82px;
}
.footer-brand .brand-mark,
.footer-button {
  background: var(--olive-dark);
  font-size: 16px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.8fr 1fr 1.15fr;
  gap: 65px;
  padding-bottom: 70px;
}
.footer-brand {
  max-width: 310px;
}
.footer-brand .brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 25px;
  color: #fff;
}
.footer-brand .brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #fff;
  font-family: var(--heading);
  font-weight: 800;
}
.footer-brand .brand > span:last-child {
  color: #fff;
  font-family: var(--heading);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.4px;
}
.footer-brand > p {
  margin: 0 0 24px;
  color: #b9bec2;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
}
.footer-button {
  display: inline-flex;
  align-items: center;
  padding: 12px 19px;
  color: #fff;
  font-weight: 700;
  transition:
    background 0.25s,
    transform 0.25s;
}
.footer-button:hover {
  background: var(--olive);
  color: #fff;
  transform: translateY(-2px);
}
.footer-column h4 {
  margin: 0 0 28px;
  color: #fff;
  font-family: var(--heading);
  font-size: 21px;
  font-weight: 800;
}
.footer-column > a {
  display: flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  margin-bottom: 15px;
  color: #b9bec2;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  transition:
    color 0.2s,
    transform 0.2s;
}
.footer-column > a:hover {
  color: #fff;
  transform: translateX(4px);
}
.footer-business .footer-info a,
.footer-business .footer-info p {
  color: #c1c5c8;
  font-size: 16px;
  font-weight: 500;
  overflow-wrap: anywhere;
}
.footer-arrow {
  color: var(--olive);
  font-size: 25px;
  font-weight: 400;
  line-height: 14px;
}
.footer-business {
  max-width: 100%;
  min-width: 0;
}
.footer-business .footer-info {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.footer-business .footer-info-icon {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(174, 181, 143, 0.15);
  color: #fff;
  font-size: 18px;
}
.footer-business .footer-info p {
  min-width: 0;
  margin: 0;
  line-height: 1.65;
}
.footer-business .footer-info a {
  text-decoration: none;
  transition: color 0.2s;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 27px 0;
}
.footer-bottom p {
  margin: 0;
  text-align: center;
  color: #92999e;
  line-height: 1.6;
}
@media (max-width: 900px) {
  .performance-journey {
    grid-template-columns: 1fr;
  }
  .journey-item {
    min-height: 330px;
  }
  .projects-bottom {
    grid-template-columns: 150px 1px 1fr;
  }
  .projects-cta {
    grid-column: 1/-1;
    width: fit-content;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 50px 40px;
  }
  .footer-brand,
  .footer-business {
    max-width: 400px;
  }
}
@media (max-width: 640px) {
  .projects {
    padding: 75px 0 80px;
  }
  .projects-heading {
    margin-bottom: 38px;
  }
  .projects-heading h2 {
    font-size: 32px;
  }
  .journey-item {
    min-height: 390px;
    padding: 27px;
  }
  .footer-brand,
  .footer-business,
  .journey-content {
    max-width: 100%;
  }
  .journey-content h3 {
    max-width: 280px;
    font-size: 26px;
  }
  .journey-content p {
    max-width: 310px;
    font-size: 16px;
  }
  .journey-visual {
    width: 210px;
    height: 210px;
    right: -45px;
    bottom: -45px;
  }
  .projects-bottom {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    padding: 25px;
  }
  .bottom-divider {
    width: 100%;
    height: 1px;
  }
  .footer-bottom p,
  .projects-bottom p {
    font-size: 16px;
  }
  .projects-cta {
    width: 100%;
    justify-content: center;
  }
  .footer {
    padding-top: 60px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 42px;
    padding-bottom: 50px;
  }
  .footer-column h4 {
    margin-bottom: 20px;
    font-size: 20px;
  }
  .footer-column > a {
    margin-bottom: 13px;
  }
  .footer-info {
    margin-bottom: 18px;
  }
  .footer-socials {
    margin-top: 22px;
  }
  .footer-bottom {
    padding: 22px 0;
  }
}
@media (max-width: 900px) {
  .nav {
    gap: 17px;
  }
  .contact-grid,
  .hero-grid,
  .split-grid {
    grid-template-columns: 1fr;
  }
  .hero {
    min-height: auto;
    padding-bottom: 70px;
  }
  .hero-grid {
    padding-top: 70px;
  }
  .hero-copy {
    text-align: center;
  }
  .hero-text {
    margin-inline: auto;
  }
  .hero-visual {
    height: 390px;
  }
  .hero-angle {
    width: 100%;
    height: 45%;
    top: auto;
    bottom: 0;
    clip-path: polygon(25% 0, 100% 0, 100% 100%, 0 100%);
  }
  .about-visual {
    min-height: 390px;
  }
  .project-grid,
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  .nav.open,
  .nav.open a {
    opacity: 1;
    transform: translateY(0);
  }
  .container {
    width: min(100% - 28px, 1140px);
  }
  .site-header {
    position: fixed;
  }
  .menu-toggle {
    display: block;
  }
  .nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 76px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 20px 20px;
    background: #fff;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-15px);
    box-shadow: 0 12px 30px rgba(20, 25, 28, 0.1);
    transition:
      opacity 0.3s,
      transform 0.3s,
      visibility 0.3s;
  }
  .nav.open {
    visibility: visible;
    pointer-events: auto;
  }
  .nav a {
    padding: 14px 0;
    opacity: 0;
    transform: translateY(-8px);
    transition:
      opacity 0.25s,
      transform 0.25s;
  }
  .nav.open a:first-child {
    transition-delay: 50ms;
  }
  .nav.open a:nth-child(2) {
    transition-delay: 80ms;
  }
  .nav.open a:nth-child(3) {
    transition-delay: 0.11s;
  }
  .nav.open a:nth-child(4) {
    transition-delay: 0.14s;
  }
  .nav.open a:nth-child(5) {
    transition-delay: 0.17s;
  }
  .nav.open a:nth-child(6) {
    transition-delay: 0.2s;
  }
  .nav a::after {
    bottom: 5px;
  }
  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(7px) rotate(45deg);
  }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .blog-grid,
  .details-grid,
  .footer-grid,
  .form-row,
  .project-grid,
  .services-grid,
  .skills-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }
  .stat:nth-child(2) {
    border-right: 0;
  }
  .stat {
    border-bottom: 1px solid var(--border);
  }
  .stat:nth-child(3),
  .stat:nth-child(4) {
    border-bottom: 0;
  }
  .hero h1 {
    font-size: 39px;
  }
  .hero-visual {
    height: 350px;
  }
  .person-card {
    width: 240px;
    min-height: 315px;
  }
  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-grid {
    gap: 25px;
  }
  .about,
  .contact,
  .insights,
  .projects,
  .services,
  .skills,
  .trust {
    padding: 70px 0;
  }
}
.address-line small,
.address-line strong,
.blog-body > span,
.contact-icon,
.contact-item small,
.contact-item strong,
.details-grid span,
.details-grid strong,
.footer a:not(.brand),
.footer h4,
.footer p,
.footer-bottom p,
.form-note,
.person-caption small,
.person-caption strong,
.portrait-placeholder small,
.project-card p,
.project-card span,
.skill-card p,
.trust-grid p,
.trust-grid span,
body {
  font-size: 16px;
}
.blog-body h3,
.brand,
.circle-progress span,
.project-card h3,
.service-card h3,
.skill-card h3,
.trust-grid h3 {
  font-size: 18px;
}
.brand-mark,
.eyebrow,
.nav {
  font-size: 16px;
}
.brand-mark {
  width: 40px;
  height: 40px;
}
.nav {
  gap: 32px;
}
.nav a {
  padding: 28px 0;
}
.nav a::after {
  bottom: 17px;
  height: 3px;
}
.eyebrow {
  letter-spacing: 1.8px;
}
.btn,
.stat span {
  letter-spacing: 0.8px;
}
.hero h1 {
  font-size: clamp(46px, 5.2vw, 55px);
}
.hero-text {
  font-size: 18px;
  line-height: 1.75;
}
.btn {
  min-height: 52px;
  padding: 0 30px;
  font-size: 16px;
}
.person-caption {
  padding: 13px 15px;
}
.stat strong {
  font-size: 28px;
}
.stat span {
  font-size: 16px;
}
.about-copy > p,
.section-heading > p:last-child,
.service-icon {
  font-size: 17px;
}
.about-copy > p {
  line-height: 1.8;
}
.details-grid {
  gap: 20px 30px;
}
.address-line {
  padding: 17px;
}
.about-copy h2,
.section-heading h2 {
  font-size: clamp(32px, 3.5vw, 42px);
}
.skill-card {
  padding: 30px 18px 26px;
}
.circle-progress {
  width: 105px;
  height: 105px;
}
.service-card {
  min-height: 215px;
  padding: 28px 20px;
}
.service-icon {
  width: 54px;
  height: 54px;
}
.service-card p {
  font-size: 16px;
  line-height: 1.65;
}
.cta h2 {
  font-size: 30px;
}
.blog-body p,
.cta p:last-child {
  font-size: 16px;
  line-height: 1.7;
}
.project-card {
  min-height: 220px;
  padding: 20px;
}
.trust-grid article {
  padding: 30px;
}
.contact-form input,
.contact-form textarea {
  padding: 15px 16px;
  font-size: 16px;
}
@media (max-width: 640px) {
  .nav {
    gap: 5px;
  }
  .nav a {
    padding: 14px 0;
    font-size: 14px;
  }
  .nav a::after {
    bottom: 4px;
  }
  .hero h1 {
    font-size: clamp(40px, 11vw, 52px);
  }
  .hero-text {
    font-size: 17px;
  }
  .stat span {
    font-size: 12px;
  }
  .stat strong {
    font-size: 25px;
  }
  .about-copy h2,
  .section-heading h2 {
    font-size: 32px;
  }
  .address-line small,
  .address-line strong,
  .details-grid span,
  .details-grid strong {
    font-size: 16px;
  }
  .cta h2 {
    font-size: 27px;
  }
}
