:root {
  --green-950: #0b2619;
  --green-900: #123c29;
  --green-800: #18563a;
  --green-700: #24734e;
  --green-500: #55a878;
  --green-100: #e9f3ed;
  --green-50: #f3f8f5;
  --lime: #d9f4a7;
  --cream: #f5f3ed;
  --paper: #ffffff;
  --ink: #122019;
  --muted: #667169;
  --line: rgba(18, 60, 41, .13);
  --shadow: 0 28px 90px rgba(11, 38, 25, .11);
  --container: 1220px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--cream);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button {
  font: inherit;
}

svg {
  display: block;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(18, 60, 41, .08);
  background: rgba(245, 243, 237, .9);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -.055em;
}

.brand-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 14px 5px 14px 5px;
  color: var(--lime);
  background: var(--green-900);
}

.brand-mark svg {
  width: 29px;
  height: 29px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14px;
  font-weight: 600;
}

.nav-links > a:not(.nav-call) {
  color: #425048;
  transition: color .2s ease;
}

.nav-links > a:not(.nav-call):hover {
  color: var(--green-800);
}

.nav-call {
  min-height: 45px;
  padding: 0 19px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  color: var(--paper);
  background: var(--green-900);
  transition: background .2s ease, transform .2s ease;
}

.nav-call:hover {
  transform: translateY(-1px);
  background: var(--green-800);
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
}

.menu-button span {
  width: 19px;
  height: 2px;
  display: block;
  margin: 5px auto;
  background: var(--green-950);
  transition: transform .2s ease;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 78px 0 96px;
  background:
    radial-gradient(circle at 84% 15%, rgba(85, 168, 120, .16), transparent 27%),
    linear-gradient(180deg, var(--cream), var(--green-50));
}

.hero::before {
  content: "";
  position: absolute;
  width: 430px;
  height: 430px;
  left: -250px;
  bottom: -250px;
  border: 1px solid rgba(36, 115, 78, .12);
  border-radius: 50%;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(440px, .97fr);
  gap: 82px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 22px;
  color: var(--green-700);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 34px;
  height: 1px;
  display: block;
  background: currentColor;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--green-950);
  font-weight: 700;
  letter-spacing: -.055em;
  line-height: 1.04;
}

h1 {
  max-width: 780px;
  font-size: clamp(52px, 6.3vw, 88px);
}

h1 em {
  color: var(--green-700);
  font-style: normal;
}

.hero-lead {
  max-width: 640px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 1.45vw, 19px);
}

.hero-actions {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 56px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-primary {
  color: var(--paper);
  background: var(--green-900);
  box-shadow: 0 15px 35px rgba(18, 60, 41, .2);
}

.button-primary:hover {
  background: var(--green-800);
}

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .55);
}

.hero-meta {
  margin-top: 46px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px 54px;
}

.hero-meta div {
  position: relative;
}

.hero-meta div + div::before {
  content: "";
  position: absolute;
  left: -27px;
  top: 4px;
  width: 1px;
  height: 41px;
  background: var(--line);
}

.hero-meta strong,
.hero-meta span {
  display: block;
}

.hero-meta strong {
  color: var(--green-950);
  font-size: 14px;
}

.hero-meta span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}

.hero-visual {
  position: relative;
  min-height: 620px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .86);
  border-radius: 32px;
  background: rgba(255, 255, 255, .45);
  box-shadow: var(--shadow);
}

.hero-image {
  min-height: 588px;
  border-radius: 23px;
  background:
    linear-gradient(180deg, transparent 50%, rgba(8, 29, 18, .4)),
    url("https://images.unsplash.com/photo-1558904541-efa843a96f01?auto=format&fit=crop&w=1600&q=88") center / cover no-repeat;
}

.hero-card {
  position: absolute;
  left: -38px;
  bottom: 54px;
  min-width: 280px;
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 13px;
  border: 1px solid rgba(18, 60, 41, .1);
  border-radius: 18px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 18px 48px rgba(11, 38, 25, .14);
  backdrop-filter: blur(14px);
}

.hero-card-icon {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: var(--green-800);
  background: var(--green-100);
}

.hero-card-icon svg {
  width: 25px;
  height: 25px;
}

.hero-card strong,
.hero-card span {
  display: block;
}

.hero-card strong {
  font-size: 14px;
}

.hero-card span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}

.trust-strip {
  border-top: 1px solid rgba(18, 60, 41, .08);
  border-bottom: 1px solid rgba(18, 60, 41, .08);
  background: var(--paper);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.trust-item {
  min-height: 108px;
  padding: 27px 32px;
  display: flex;
  align-items: center;
  gap: 20px;
  border-right: 1px solid var(--line);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item span {
  color: var(--green-500);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
}

.trust-item p {
  margin: 0;
  color: #38463e;
  font-size: 14px;
  font-weight: 600;
}

.section {
  padding: 118px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .48fr);
  gap: 80px;
  align-items: end;
  margin-bottom: 54px;
}

.section-label {
  display: block;
  margin-bottom: 16px;
  color: var(--green-700);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.section-heading h2 {
  max-width: 800px;
  font-size: clamp(42px, 5vw, 68px);
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.services-section {
  background: var(--paper);
}

.services-layout {
  display: grid;
  grid-template-columns: minmax(310px, .78fr) minmax(0, 1.22fr);
  gap: 92px;
  align-items: start;
}

.services-intro {
  position: sticky;
  top: 130px;
}

.services-intro h2 {
  max-width: 560px;
  font-size: clamp(42px, 4.8vw, 66px);
}

.services-intro p {
  max-width: 490px;
  margin: 24px 0 0;
  color: var(--muted);
}

.services-call {
  margin-top: 31px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--green-800);
  font-size: 14px;
  font-weight: 800;
}

.services-call svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .2s ease;
}

.services-call:hover svg {
  transform: translateX(4px);
}

.services-list {
  border-top: 1px solid var(--line);
}

.service-row {
  min-height: 148px;
  padding: 30px 0;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) 58px;
  gap: 22px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  transition: padding .24s ease, background .24s ease;
}

.service-row:hover {
  padding-inline: 18px;
  background: var(--green-50);
}

.service-number {
  color: var(--green-500);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .13em;
}

.service-row h3 {
  font-size: clamp(24px, 2.35vw, 34px);
}

.service-row p {
  max-width: 610px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.service-row-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--green-700);
  background: var(--paper);
}

.service-row-icon svg {
  width: 29px;
  height: 29px;
}

.projects-section {
  background: var(--cream);
}

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

.project {
  position: relative;
  aspect-ratio: 2.28 / 1;
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  background: #dce8df;
}

.project img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .58s cubic-bezier(.2, .8, .2, 1);
}

.project:hover img {
  transform: scale(1.025);
}

.process-section {
  color: var(--paper);
  background:
    radial-gradient(circle at 82% 16%, rgba(85, 168, 120, .16), transparent 25%),
    var(--green-950);
}

.process-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 94px;
  align-items: start;
}

.process-intro {
  position: sticky;
  top: 130px;
}

.eyebrow-light {
  color: var(--lime);
}

.process-intro h2 {
  max-width: 560px;
  color: var(--paper);
  font-size: clamp(42px, 5vw, 68px);
}

.process-intro p {
  max-width: 490px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, .58);
}

.process-intro > a {
  margin-top: 30px;
  display: inline-block;
  color: var(--lime);
  font-weight: 800;
}

.process-list {
  border-top: 1px solid rgba(255, 255, 255, .16);
}

.process-item {
  padding: 34px 0;
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, .16);
}

.process-item > span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 50%;
  color: var(--lime);
  font-size: 11px;
  font-weight: 800;
}

.process-item h3 {
  color: var(--paper);
  font-size: 27px;
}

.process-item p {
  max-width: 560px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, .57);
  font-size: 14px;
}

.area-section {
  background: var(--paper);
}

.map-card {
  position: relative;
  height: 600px;
  padding: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--green-50);
  box-shadow: var(--shadow);
}

.map-card iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 19px;
  filter: saturate(.78) contrast(1.03);
}

.map-radius {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(42vw, 410px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 2px solid rgba(36, 115, 78, .58);
  border-radius: 50%;
  background: rgba(85, 168, 120, .10);
  box-shadow:
    0 0 0 10px rgba(85, 168, 120, .045),
    inset 0 0 50px rgba(85, 168, 120, .08);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.map-radius::before {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  border: 4px solid var(--paper);
  border-radius: 50%;
  background: var(--green-800);
  box-shadow: 0 5px 16px rgba(11, 38, 25, .28);
}

.map-radius span {
  position: absolute;
  top: 20px;
  padding: 8px 13px;
  border-radius: 999px;
  color: var(--paper);
  background: var(--green-900);
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 10px 25px rgba(11, 38, 25, .18);
}

.map-badge {
  position: absolute;
  left: 34px;
  bottom: 34px;
  min-width: 250px;
  padding: 17px 19px;
  border: 1px solid rgba(18, 60, 41, .11);
  border-radius: 16px;
  background: rgba(255, 255, 255, .93);
  box-shadow: 0 16px 42px rgba(11, 38, 25, .14);
  backdrop-filter: blur(13px);
  pointer-events: none;
}

.map-badge strong,
.map-badge span {
  display: block;
}

.map-badge strong {
  color: var(--green-950);
  font-size: 14px;
}

.map-badge span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}

.contact-section {
  padding: 40px 0;
  background: var(--paper);
}

.contact-card {
  position: relative;
  min-height: 430px;
  padding: clamp(46px, 7vw, 84px);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  border-radius: 30px;
  color: var(--paper);
  background:
    radial-gradient(circle at 90% 10%, rgba(217, 244, 167, .18), transparent 27%),
    var(--green-800);
}

.contact-card::after {
  content: "";
  position: absolute;
  width: 460px;
  height: 460px;
  right: -180px;
  bottom: -230px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 50%;
}

.contact-card h2 {
  max-width: 760px;
  color: var(--paper);
  font-size: clamp(44px, 5.5vw, 76px);
}

.contact-card p {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, .66);
}

.contact-button {
  position: relative;
  z-index: 2;
  min-width: 246px;
  min-height: 64px;
  padding: 0 27px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-radius: 999px;
  color: var(--green-950);
  background: var(--lime);
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease;
}

.contact-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(8, 28, 17, .2);
}

.contact-button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-footer {
  padding: 38px 0 95px;
  background: var(--paper);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 38px;
  align-items: center;
  color: var(--muted);
  font-size: 13px;
}

.footer-brand {
  color: var(--green-950);
}

.mobile-call {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

::selection {
  color: var(--green-950);
  background: var(--lime);
}

@media (max-width: 1020px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .hero-visual {
    max-width: 760px;
  }

  .section-heading,
  .process-grid,
  .services-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .process-intro,
  .services-intro {
    position: static;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 26px, var(--container));
  }

  .nav {
    min-height: 68px;
  }

  .menu-button {
    display: block;
  }

  .nav-links {
    position: fixed;
    inset: 68px 0 auto;
    height: calc(100vh - 68px);
    padding: 28px 18px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: var(--cream);
    transform: translateX(100%);
    transition: transform .28s ease;
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-links a {
    padding: 14px 10px;
    font-size: 17px;
  }

  .nav-call {
    margin-top: 12px;
    justify-content: center;
  }

  .hero {
    padding: 56px 0 72px;
  }

  h1 {
    font-size: 47px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-meta {
    display: grid;
    gap: 16px;
  }

  .hero-meta div + div::before {
    display: none;
  }

  .hero-visual {
    min-height: 430px;
    padding: 10px;
    border-radius: 24px;
  }

  .hero-image {
    min-height: 410px;
    border-radius: 17px;
  }

  .hero-card {
    left: 22px;
    right: 22px;
    bottom: 22px;
    min-width: 0;
  }

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

  .trust-item {
    min-height: 86px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 86px 0;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .section-heading h2 {
    font-size: 42px;
  }

  .service-row {
    min-height: auto;
    padding: 27px 0;
    grid-template-columns: 46px minmax(0, 1fr) 50px;
    gap: 14px;
  }

  .service-row:hover {
    padding-inline: 0;
    background: transparent;
  }

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

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

  .project {
    aspect-ratio: 1.72 / 1;
  }

  .process-item {
    grid-template-columns: 56px 1fr;
  }

  .map-card {
    height: 470px;
    padding: 9px;
    border-radius: 22px;
  }

  .map-radius {
    width: min(68vw, 290px);
  }

  .map-radius span {
    top: 13px;
    padding: 6px 10px;
    font-size: 11px;
  }

  .map-badge {
    left: 20px;
    right: 20px;
    bottom: 20px;
    min-width: 0;
    padding: 14px 16px;
  }

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

  .contact-card {
    min-height: 490px;
    padding: 54px 26px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }

  .contact-card h2 {
    font-size: 46px;
  }

  .contact-button {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .mobile-call {
    position: fixed;
    z-index: 60;
    right: 14px;
    bottom: 14px;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--green-950);
    background: var(--lime);
    box-shadow: 0 15px 36px rgba(11, 38, 25, .25);
  }

  .mobile-call svg {
    width: 23px;
    height: 23px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
}

@media (max-width: 430px) {
  h1 {
    font-size: 41px;
  }

  .hero-visual {
    min-height: 370px;
  }

  .hero-image {
    min-height: 350px;
  }

  .hero-card {
    padding: 15px;
  }

  .section-heading h2 {
    font-size: 38px;
  }

  .project {
    aspect-ratio: 1.52 / 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
