:root {
  --green-950: #031c15;
  --green-900: #062b20;
  --green-800: #0b3b2c;
  --green-700: #15533b;
  --green-500: #4ba83f;
  --lime: #86dc52;
  --lime-soft: #c6f09a;
  --cream: #f4f4ec;
  --paper: #fafaf6;
  --white: #ffffff;
  --ink: #11251d;
  --muted: #64736c;
  --line: rgba(17, 37, 29, 0.14);
  --line-light: rgba(255, 255, 255, 0.14);
  --shadow: 0 24px 70px rgba(3, 28, 21, 0.16);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --container: 1200px;
  --header-height: 82px;
  --transition: 220ms ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input,
textarea,
select {
  font: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(3rem, 6.6vw, 6.2rem);
  font-weight: 560;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.25rem, 4.6vw, 4.4rem);
  font-weight: 560;
}

h3 {
  margin-bottom: 14px;
  font-size: 1.35rem;
  font-weight: 650;
}

em {
  color: var(--lime);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

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

.hero-copy,
.hero-visual,
.intro-grid > *,
.mapping-grid > *,
.section-heading > *,
.stats-intro > *,
.process-heading > *,
.projects-grid > *,
.team-grid > * {
  min-width: 0;
}

.section {
  padding: clamp(90px, 11vw, 150px) 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--green-950);
  background: var(--lime);
  border-radius: var(--radius-sm);
  font-weight: 700;
  transform: translateY(-150%);
  transition: transform var(--transition);
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 4px;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.ui-icon {
  width: 1.1rem;
  height: 1.1rem;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  color: var(--green-700);
  font-size: 0.73rem;
  font-weight: 750;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 34px;
  height: 2px;
  background: var(--lime);
}

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

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 13px 21px;
  border: 1px solid transparent;
  border-radius: 5px;
  font-size: 0.84rem;
  font-weight: 750;
  letter-spacing: 0.025em;
  line-height: 1.2;
  transition:
    background var(--transition),
    border-color var(--transition),
    color var(--transition),
    transform var(--transition);
}

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

.button-primary {
  color: var(--green-950);
  background: var(--lime);
}

.button-primary:hover {
  background: #9bea67;
}

.button-ghost {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.32);
}

.button-ghost:hover {
  border-color: var(--lime);
}

.button-small {
  min-height: 42px;
  padding: 10px 15px;
  font-size: 0.72rem;
}

.button-large {
  min-height: 60px;
  padding: 17px 26px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--green-800);
  border-bottom: 1px solid var(--green-500);
  padding-bottom: 4px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color var(--transition), gap var(--transition);
}

.text-link:hover {
  gap: 18px;
  color: var(--green-500);
}

.text-link-light {
  color: var(--white);
  border-color: var(--lime);
}

/* Header */
.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition:
    background var(--transition),
    box-shadow var(--transition),
    height var(--transition);
}

.site-header.is-scrolled {
  height: 70px;
  background: rgba(3, 28, 21, 0.94);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
}

.brand-mark {
  width: 42px;
  aspect-ratio: 1;
  flex: 0 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 0 9px rgba(134, 220, 82, 0.12));
}

.brand-copy {
  display: grid;
  line-height: 1.1;
}

.brand-copy strong {
  color: var(--white);
  font-size: 1.22rem;
  letter-spacing: -0.03em;
}

.brand-copy small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.58rem;
  font-weight: 650;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 29px);
}

.main-nav > a:not(.button) {
  position: relative;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.74rem;
  font-weight: 650;
  letter-spacing: 0.04em;
  transition: color var(--transition);
}

.main-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--lime);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition);
}

.main-nav > a:not(.button):hover,
.main-nav > a.is-active:not(.button) {
  color: var(--white);
}

.main-nav > a:not(.button):hover::after,
.main-nav > a.is-active:not(.button)::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 42px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: var(--white);
  background: transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  background: currentColor;
  transition: transform var(--transition), opacity var(--transition);
}

/* Hero */
.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 38%, rgba(134, 220, 82, 0.11), transparent 28%),
    linear-gradient(120deg, var(--green-950), var(--green-900) 58%, #0d3b29);
}

.hero::before {
  position: absolute;
  top: -170px;
  right: -210px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(134, 220, 82, 0.13);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgba(134, 220, 82, 0.035),
    0 0 0 140px rgba(134, 220, 82, 0.022);
  content: "";
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.17;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to right, black, transparent 70%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 760px;
  align-items: center;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  gap: clamp(40px, 7vw, 96px);
  padding-top: calc(var(--header-height) + 45px);
  padding-bottom: 70px;
}

.hero-copy {
  max-width: 700px;
}

.hero h1 {
  max-width: 740px;
}

.hero h1 em {
  display: block;
}

.hero-lead {
  max-width: 640px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1.05rem, 1.4vw, 1.22rem);
}

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

.hero-meta {
  display: flex;
  gap: 36px;
  margin-top: 47px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.hero-meta > div {
  display: flex;
  align-items: center;
  gap: 11px;
}

.meta-icon {
  display: grid;
  width: 37px;
  height: 37px;
  place-items: center;
  color: var(--lime);
  border: 1px solid rgba(134, 220, 82, 0.35);
  border-radius: 50%;
}

.meta-icon .ui-icon {
  width: 17px;
  height: 17px;
}

.hero-meta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.69rem;
  line-height: 1.45;
}

.hero-meta strong {
  display: block;
  color: var(--white);
  font-size: 0.76rem;
}

.hero-visual {
  position: relative;
  width: 100%;
  max-width: 560px;
  margin-left: auto;
}

.visual-frame {
  overflow: hidden;
  background: var(--cream);
  border: 1px solid rgba(134, 220, 82, 0.5);
  border-radius: 3px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.34);
  transform: perspective(1300px) rotateY(-4deg) rotateX(1deg);
}

.visual-topbar,
.visual-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--lime-soft);
  background: rgba(3, 28, 21, 0.98);
  font-size: 0.58rem;
  font-weight: 750;
  letter-spacing: 0.12em;
}

.visual-topbar {
  height: 42px;
  padding: 0 16px;
}

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

.signal i {
  width: 6px;
  height: 6px;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--lime);
}

.map-canvas {
  position: relative;
  height: clamp(340px, 37vw, 460px);
  overflow: hidden;
  background: #f4f1e7;
}

.map-canvas img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: contrast(1.05) saturate(0.9);
}

.map-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: rgba(6, 43, 32, 0.46);
  stroke-width: 1.2;
}

.map-pin {
  position: absolute;
  width: 13px;
  height: 13px;
  background: var(--lime);
  border: 3px solid var(--green-950);
  border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(134, 220, 82, 0.24);
}

.pin-one { top: 38%; left: 32%; }
.pin-two { right: 31%; bottom: 29%; }

.visual-footer {
  min-height: 64px;
  padding: 12px 16px;
}

.visual-footer > div {
  display: grid;
  gap: 2px;
}

.visual-footer > div:not(:last-child) {
  padding-right: 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
}

.visual-footer span {
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.48rem;
}

.floating-card {
  position: absolute;
  z-index: 4;
  padding: 13px 15px;
  color: var(--green-950);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(134, 220, 82, 0.5);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.floating-card-top {
  top: 14%;
  right: -18px;
  display: grid;
}

.floating-card-top span {
  color: var(--green-500);
  font-size: 0.58rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.floating-card-top strong {
  font-size: 0.76rem;
}

.floating-card-bottom {
  bottom: 15%;
  left: -28px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.floating-card-bottom p {
  margin: 0;
  color: var(--muted);
  font-size: 0.62rem;
  line-height: 1.4;
}

.floating-card-bottom strong {
  color: var(--ink);
}

.pulse-dot {
  width: 10px;
  height: 10px;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(134, 220, 82, 0.2);
}

.hero-index {
  position: absolute;
  right: 28px;
  bottom: 24px;
  color: rgba(255, 255, 255, 0.34);
  font-size: 0.63rem;
  letter-spacing: 0.16em;
}

/* Intro */
.intro-section {
  background: var(--paper);
}

.section.intro-section {
  padding-bottom: clamp(28px, 4vw, 52px);
}

.intro-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(50px, 9vw, 130px);
}

.intro-grid h2 {
  max-width: 530px;
}

.intro-content {
  padding-top: 45px;
}

.intro-content > p {
  color: var(--muted);
}

.intro-content .large-text {
  color: var(--ink);
  font-size: clamp(1.24rem, 2vw, 1.65rem);
  line-height: 1.45;
}

.feature-list {
  display: grid;
  margin-top: 40px;
  border-top: 1px solid var(--line);
}

.feature-list span {
  position: relative;
  padding: 15px 0 15px 25px;
  border-bottom: 1px solid var(--line);
  font-size: 0.85rem;
  font-weight: 700;
}

.feature-list span::before {
  position: absolute;
  top: 24px;
  left: 2px;
  width: 7px;
  height: 7px;
  background: var(--lime);
  border-radius: 50%;
  content: "";
}

/* Mapping */
.mapping-section {
  background: linear-gradient(var(--paper), var(--cream));
}

.section.mapping-section {
  padding-top: 0;
}

.mapping-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1fr;
  gap: clamp(55px, 9vw, 120px);
}

.mapping-card {
  position: relative;
  min-height: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 65% 38%, rgba(134, 220, 82, 0.2), transparent 25%),
    var(--green-900);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.mapping-card-ndvi > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.mapping-card-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3, 28, 21, 0.42), transparent 30%),
    linear-gradient(0deg, rgba(3, 28, 21, 0.8), transparent 32%);
}

.mapping-number {
  position: absolute;
  top: 24px;
  left: 27px;
  color: var(--lime);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
}

.mapping-badge {
  position: absolute;
  top: 22px;
  right: 22px;
  padding: 7px 10px;
  color: var(--green-950);
  background: var(--lime);
  border-radius: 999px;
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.mapping-label {
  position: absolute;
  right: 25px;
  bottom: 24px;
  left: 25px;
  padding-top: 17px;
  color: rgba(255, 255, 255, 0.55);
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  font-size: 0.58rem;
  letter-spacing: 0.13em;
}

.mapping-copy > p:not(.eyebrow) {
  color: var(--muted);
}

.check-list {
  display: grid;
  gap: 0;
  margin: 32px 0 35px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 12px 0 12px 30px;
  border-bottom: 1px solid var(--line);
  font-size: 0.87rem;
  font-weight: 650;
}

.check-list li::before {
  position: absolute;
  top: 17px;
  left: 2px;
  width: 11px;
  height: 6px;
  border-bottom: 2px solid var(--green-500);
  border-left: 2px solid var(--green-500);
  content: "";
  transform: rotate(-45deg);
}

/* Services */
.services-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--green-950);
}

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

.services-drone {
  position: absolute;
  z-index: 0;
  top: -90px;
  right: max(-95px, calc((100vw - var(--container)) / 2 - 190px));
  width: min(760px, 59vw);
  max-width: none;
  height: auto;
  filter:
    saturate(1.5)
    contrast(1.18)
    brightness(1.18)
    drop-shadow(0 0 22px rgba(134, 220, 82, 0.13));
  transform: rotate(-4deg);
  opacity: 0.48;
  pointer-events: none;
}

.section-heading {
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  gap: 70px;
  margin-bottom: 58px;
}

.section-heading h2 {
  max-width: 800px;
  margin-bottom: 0;
}

.section-heading > p {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.58);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
}

.service-card {
  display: flex;
  min-height: 340px;
  flex-direction: column;
  grid-column: span 2;
  padding: 28px;
  background: #08281f;
  transition: background var(--transition), transform var(--transition);
}

.service-card:nth-child(n + 4) {
  grid-column: span 3;
}

.service-card:hover {
  position: relative;
  z-index: 2;
  background: #0c3829;
  transform: translateY(-3px);
}

.service-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 75px;
  color: var(--lime);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
}

.service-top i {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid rgba(134, 220, 82, 0.25);
  border-radius: 50%;
  font-style: normal;
  transition:
    color var(--transition),
    background var(--transition),
    border-color var(--transition),
    transform var(--transition);
}

.service-top i .ui-icon {
  width: 14px;
  height: 14px;
}

.service-card:hover .service-top i {
  color: var(--green-950);
  background: var(--lime);
  border-color: var(--lime);
  transform: translate(2px, -2px);
}

.service-card h3 {
  max-width: 280px;
  color: var(--white);
}

.service-card p {
  color: rgba(255, 255, 255, 0.57);
  font-size: 0.87rem;
}

.service-card small {
  margin-top: auto;
  padding-top: 20px;
  color: var(--lime-soft);
  font-size: 0.51rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.services-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 32px;
  padding: 24px 0 0;
}

.services-note p {
  max-width: 700px;
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.87rem;
}

.services-note strong {
  color: var(--white);
}

/* Stats */
.stats-section {
  position: relative;
  overflow: hidden;
  background: var(--lime);
}

.stats-section::after {
  position: absolute;
  top: 0;
  right: -100px;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(3, 28, 21, 0.13);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(3, 28, 21, 0.03), 0 0 0 160px rgba(3, 28, 21, 0.02);
  content: "";
}

.stats-intro {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 80px;
  margin-bottom: 65px;
}

.stats-intro .eyebrow {
  grid-column: 1 / -1;
  color: var(--green-900);
}

.stats-intro .eyebrow > span {
  background: var(--green-900);
}

.stats-intro h2 {
  margin: 0;
}

.stats-intro > p:last-child {
  align-self: end;
  max-width: 500px;
  margin: 0;
  color: rgba(3, 28, 21, 0.7);
}

.stats-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(3, 28, 21, 0.22);
  border-left: 1px solid rgba(3, 28, 21, 0.22);
}

.stats-grid article {
  display: grid;
  min-height: 200px;
  align-content: center;
  padding: 28px;
  border-right: 1px solid rgba(3, 28, 21, 0.22);
  border-bottom: 1px solid rgba(3, 28, 21, 0.22);
}

.stats-grid strong {
  margin-bottom: 10px;
  color: var(--green-950);
  font-size: clamp(2.4rem, 4vw, 4.3rem);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 1;
}

.stats-grid sup {
  color: var(--green-700);
  font-size: 0.4em;
  vertical-align: super;
}

.stats-grid span {
  max-width: 250px;
  color: rgba(3, 28, 21, 0.72);
  font-size: 0.81rem;
  font-weight: 650;
}

/* Process */
.process-section {
  background: var(--paper);
}

.process-heading {
  display: grid;
  grid-template-columns: 1fr 0.65fr;
  gap: 15px 90px;
  margin-bottom: 65px;
}

.process-heading .eyebrow {
  grid-column: 1 / -1;
}

.process-heading h2 {
  margin-bottom: 0;
}

.process-heading > p:last-child {
  align-self: end;
  margin-bottom: 8px;
  color: var(--muted);
}

.process-list {
  display: grid;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.process-list li {
  display: grid;
  align-items: center;
  grid-template-columns: 80px 1fr;
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
  transition: padding var(--transition), background var(--transition);
}

.process-list li:hover {
  padding-right: 22px;
  padding-left: 22px;
  background: rgba(134, 220, 82, 0.08);
}

.process-list li > span {
  color: var(--green-500);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.12em;
}

.process-list li > div {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(180px, 0.45fr) 1fr;
  gap: 30px;
}

.process-list h3,
.process-list p {
  margin: 0;
}

.process-list h3 {
  font-size: 1.45rem;
}

.process-list p {
  color: var(--muted);
}

.deadline-note {
  display: flex;
  align-items: center;
  gap: 18px;
  width: fit-content;
  margin-top: 40px;
  padding: 16px 20px;
  background: var(--cream);
  border-left: 3px solid var(--lime);
}

.deadline-note > .ui-icon {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  color: var(--green-700);
}

.deadline-note p {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.deadline-note strong {
  color: var(--ink);
}

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

.projects-heading > p {
  color: var(--muted);
}

.projects-grid {
  display: grid;
  align-items: start;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 28px;
}

.project-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 16px 50px rgba(3, 28, 21, 0.07);
}

.project-card-large {
  margin-top: 45px;
}

.project-image {
  position: relative;
  display: grid;
  height: 390px;
  overflow: hidden;
  place-items: center;
  background:
    linear-gradient(rgba(6, 43, 32, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 43, 32, 0.025) 1px, transparent 1px),
    #f7f7f3;
  background-size: 32px 32px;
}

.project-card:not(.project-card-large) .project-image {
  height: 430px;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 700ms ease;
}

.project-card:hover .project-image img {
  transform: scale(1.035);
}

.project-area {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 8px 11px;
  color: var(--lime-soft);
  background: var(--green-950);
  border-radius: 3px;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.project-copy {
  padding: 30px;
}

.project-type {
  display: block;
  margin-bottom: 13px;
  color: var(--green-500);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.project-copy h3 {
  font-size: clamp(1.4rem, 2.3vw, 2rem);
}

.project-copy p {
  color: var(--muted);
  font-size: 0.9rem;
}

.project-copy ul {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.project-copy li {
  padding: 7px 10px;
  color: var(--green-800);
  background: rgba(134, 220, 82, 0.16);
  border-radius: 3px;
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.technical-note {
  max-width: 800px;
  margin: 35px 0 0 auto;
  color: var(--muted);
  font-size: 0.72rem;
  text-align: right;
}

/* About */
.about-section {
  color: var(--white);
  background: var(--green-900);
}

.about-heading {
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: clamp(36px, 7vw, 90px);
  margin-bottom: 58px;
}

.about-heading h2 {
  max-width: 830px;
  margin-bottom: 0;
}

.about-heading > p {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.62);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.profile-card {
  overflow: hidden;
  background: #08281f;
  border: 1px solid rgba(134, 220, 82, 0.18);
  border-radius: var(--radius-lg);
}

.profile-card .about-visual {
  min-height: 360px;
  border: 0;
  border-bottom: 1px solid rgba(134, 220, 82, 0.18);
  border-radius: 0;
}

.about-visual {
  position: relative;
  display: grid;
  min-height: 470px;
  overflow: hidden;
  align-content: center;
  justify-items: center;
  background:
    radial-gradient(circle at 50% 43%, rgba(134, 220, 82, 0.17), transparent 27%),
    var(--green-950);
  border: 1px solid rgba(134, 220, 82, 0.2);
  border-radius: var(--radius-lg);
}

.profile-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center 12%;
}

.profile-photo-miller {
  object-position: center 10%;
}

.about-photo-shade {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3, 28, 21, 0.52), transparent 30%),
    linear-gradient(0deg, rgba(3, 28, 21, 0.24), transparent 32%);
  pointer-events: none;
}

.about-coordinate {
  position: absolute;
  z-index: 2;
  top: 22px;
  left: 25px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.51rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-shadow: 0 2px 12px rgba(3, 28, 21, 0.75);
}

.about-copy {
  padding: clamp(28px, 4vw, 44px);
}

.about-copy h3 {
  margin-bottom: 10px;
  color: var(--white);
  font-size: clamp(1.75rem, 2.5vw, 2.35rem);
}

.about-role {
  margin-bottom: 35px;
  color: var(--lime);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.about-copy > p:not(.eyebrow):not(.about-role) {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 34px;
}

.about-tags span {
  padding: 8px 11px;
  color: var(--lime-soft);
  border: 1px solid rgba(134, 220, 82, 0.22);
  border-radius: 3px;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

/* CTA and footer */
.cta-section {
  position: relative;
  overflow: hidden;
  padding: clamp(100px, 13vw, 170px) 0;
  color: var(--white);
  background: var(--green-950);
}

.cta-section::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 590px;
  height: 590px;
  border: 1px solid rgba(134, 220, 82, 0.13);
  border-radius: 50%;
  box-shadow: 0 0 0 90px rgba(134, 220, 82, 0.025), 0 0 0 180px rgba(134, 220, 82, 0.015);
  content: "";
  transform: translate(-50%, -50%);
}

.cta-lines {
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: radial-gradient(circle at center, black, transparent 67%);
}

.cta-inner {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  text-align: center;
}

.cta-inner h2 {
  max-width: 850px;
}

.cta-inner > p:not(.eyebrow) {
  max-width: 650px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.62);
}

.cta-inner small {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.66rem;
  letter-spacing: 0.06em;
}

.site-footer {
  color: rgba(255, 255, 255, 0.6);
  background: #02120e;
}

.footer-top {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1fr auto;
  gap: 40px;
  padding-top: 55px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-top > p {
  max-width: 360px;
  margin: 0;
  font-size: 0.76rem;
}

.footer-phone {
  color: var(--white);
  font-size: 1.12rem;
  font-weight: 700;
}

.footer-phone:hover {
  color: var(--lime);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-top: 22px;
  padding-bottom: 24px;
  font-size: 0.62rem;
  letter-spacing: 0.04em;
}

.footer-bottom a:hover {
  color: var(--lime);
}

.back-to-top {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.back-to-top .ui-icon {
  width: 13px;
  height: 13px;
}

.whatsapp-float {
  position: fixed;
  z-index: 90;
  right: 22px;
  bottom: 22px;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: var(--green-950);
  background: var(--lime);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(3, 28, 21, 0.32);
  transition: transform var(--transition), background var(--transition);
}

.whatsapp-float:hover {
  background: #9bea67;
  transform: translateY(-4px) scale(1.03);
}

.whatsapp-float svg {
  width: 27px;
  fill: currentColor;
}

/* Reveal */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1080px) {
  .main-nav {
    gap: 17px;
  }

  .main-nav > a:not(.button) {
    font-size: 0.68rem;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(370px, 0.8fr);
    gap: 50px;
  }

  .floating-card-top { right: -4px; }
  .floating-card-bottom { left: -8px; }
}

@media (max-width: 900px) {
  :root { --header-height: 72px; }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    z-index: -1;
    top: 0;
    right: 0;
    display: grid;
    width: min(88vw, 420px);
    height: 100dvh;
    align-content: center;
    gap: 8px;
    padding: 90px 34px 34px;
    background: var(--green-950);
    box-shadow: -25px 0 60px rgba(0, 0, 0, 0.28);
    opacity: 0;
    pointer-events: none;
    transform: translateX(100%);
    transition: transform 300ms ease, opacity 300ms ease;
  }

  .main-nav::before {
    position: absolute;
    top: 0;
    right: 100%;
    width: 100vw;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    content: "";
  }

  .main-nav.is-open {
    z-index: 105;
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
  }

  .main-nav > a:not(.button) {
    padding: 13px 0;
    color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1rem;
  }

  .main-nav .button {
    margin-top: 18px;
  }

  .menu-toggle[aria-expanded="true"] {
    position: relative;
    z-index: 110;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

  .hero-inner {
    grid-template-columns: 1fr;
    padding-top: 150px;
    padding-bottom: 100px;
  }

  .hero-visual {
    max-width: 650px;
    margin: 10px auto 0;
  }

  .visual-frame {
    transform: none;
  }

  .intro-grid,
  .mapping-grid {
    grid-template-columns: 1fr;
  }

  .intro-content {
    padding-top: 0;
  }

  .mapping-card {
    width: min(100%, 600px);
    min-height: 0;
    justify-self: center;
  }

  .section-heading,
  .stats-intro,
  .process-heading,
  .about-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-drone {
    top: -85px;
    right: -105px;
    width: 640px;
    opacity: 0.38;
  }

  .service-card,
  .service-card:nth-child(n + 4) {
    grid-column: span 1;
  }

  .service-card:last-child {
    grid-column: 1 / -1;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .project-card-large {
    margin-top: 0;
  }

  .team-grid {
    max-width: 680px;
    grid-template-columns: 1fr;
    margin-inline: auto;
  }

  .profile-card .about-visual {
    min-height: 380px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .footer-phone {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(calc(100% - 30px), var(--container));
  }

  .section {
    padding: 82px 0;
  }

  h1 {
    font-size: clamp(2.55rem, 12vw, 3.6rem);
  }

  h2 {
    font-size: clamp(2.15rem, 11vw, 3.4rem);
  }

  .brand-copy strong {
    font-size: 1.07rem;
  }

  .brand-copy small {
    font-size: 0.5rem;
  }

  .brand-mark {
    width: 33px;
  }

  .eyebrow {
    gap: 9px;
    font-size: 0.61rem;
    letter-spacing: 0.12em;
  }

  .eyebrow > span {
    width: 25px;
    flex: 0 0 25px;
  }

  .hero-inner {
    padding-top: 125px;
  }

  .hero-actions {
    display: grid;
  }

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

  .map-canvas {
    height: 310px;
  }

  .visual-topbar {
    font-size: 0.48rem;
  }

  .visual-footer > div:nth-child(3) {
    display: none;
  }

  .floating-card-top {
    top: 11%;
    right: -6px;
  }

  .floating-card-bottom {
    bottom: 14%;
    left: -6px;
  }

  .mapping-card {
    width: 100%;
    min-height: 0;
  }

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

  .service-card,
  .service-card:last-child {
    grid-column: 1;
  }

  .service-card {
    min-height: 300px;
  }

  .services-drone {
    top: -70px;
    right: -70px;
    width: 500px;
    opacity: 0.32;
  }

  .service-top {
    margin-bottom: 52px;
  }

  .services-note {
    display: grid;
  }

  .stats-grid article {
    min-height: 165px;
  }

  .process-list li {
    grid-template-columns: 48px 1fr;
  }

  .process-list li > div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .process-list p {
    font-size: 0.82rem;
  }

  .deadline-note {
    align-items: flex-start;
  }

  .project-image,
  .project-card:not(.project-card-large) .project-image {
    height: 310px;
  }

  .project-copy {
    padding: 23px;
  }

  .technical-note {
    text-align: left;
  }

  .profile-card .about-visual {
    min-height: 310px;
  }

  .about-copy {
    padding: 26px;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-phone {
    grid-column: 1;
    grid-row: auto;
    justify-self: start;
  }

  .footer-bottom {
    display: grid;
    gap: 8px;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* Página de erro */
body.error-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  color: var(--white);
  background:
    radial-gradient(circle at 70% 30%, rgba(134, 220, 82, 0.12), transparent 28%),
    var(--green-950);
}

.error-content {
  width: min(calc(100% - 40px), 680px);
  text-align: center;
}

.error-code {
  display: block;
  margin-bottom: 12px;
  color: var(--lime);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(5rem, 20vw, 11rem);
  line-height: 0.9;
}

.error-content h1 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 6vw, 4rem);
}

.error-content p {
  max-width: 520px;
  margin: 0 auto 30px;
  color: rgba(255, 255, 255, 0.65);
}
