@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-500.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-600.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-700.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-800.ttf") format("truetype");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}

:root {
  --green: #279b32;
  --green-dark: #178526;
  --green-pale: #eaf5ea;
  --ink: #151515;
  --muted: #555b61;
  --line: #e9ece9;
  --surface: #ffffff;
  --soft: #f6f8f6;
  --container: 1276px;
  --shadow-soft: 0 12px 35px rgba(28, 56, 31, 0.055);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 86px; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: Inter, Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  transform: translateY(-150%);
  padding: 10px 15px;
  border-radius: 6px;
  color: #fff;
  background: var(--green-dark);
}

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

:focus-visible {
  outline: 3px solid rgba(39, 155, 50, 0.35);
  outline-offset: 4px;
}

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

.site-header {
  position: relative;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 87px;
  padding: 0 65px 0 56px;
  border-radius: 0 0 15px 15px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 9px 25px rgba(25, 54, 31, 0.08);
}

.brand { justify-self: start; }
.brand img { width: 212px; height: auto; }

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 60px;
  white-space: nowrap;
  transform: translateX(66px);
}

.desktop-nav a {
  position: relative;
  padding: 33px 0 31px;
  font-size: 16px;
  font-weight: 700;
  transition: color 180ms ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 22px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--green);
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible { color: var(--green-dark); }
.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after { transform: scaleX(1); }

.header-actions {
  display: flex;
  justify-self: end;
  align-items: center;
  gap: 24px;
}

.languages { display: flex; align-items: center; gap: 16px; transform: translateX(-8px); }
.languages a { transition: transform 180ms ease, opacity 180ms ease; }
.languages a:hover { transform: translateY(-1px); opacity: 0.82; }
.languages img { width: 27px; height: 18px; object-fit: cover; }

.menu-toggle,
.mobile-nav { display: none; }

.hero {
  position: relative;
  height: 494px;
  overflow: hidden;
  border-bottom: 1px solid #eceeec;
  background: #fff;
}

.hero-inner { position: relative; z-index: 2; height: 100%; }

.hero-copy {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-45%);
}

.hero h1 {
  max-width: 800px;
  margin: 0;
  font-size: 45px;
  font-weight: 800;
  line-height: 1.17;
  letter-spacing: -2.05px;
}

.hero h1 span { display: block; color: var(--green); }
.hero h1 .hero-title-dark { color: var(--ink); }
.hero h1 span:not(.hero-title-dark) { letter-spacing: -0.75px; }

.hero-copy > p {
  margin: 18px 0 35px;
  color: var(--muted);
  font-size: 18.5px;
  line-height: 1.6;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  height: 52px;
  padding: 0 27px;
  border: 1px solid var(--green);
  border-radius: 7px;
  font-size: 14px;
  font-weight: 700;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

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

.button-primary {
  width: 179px;
  color: #fff;
  background: linear-gradient(135deg, #299f35, #249630);
  box-shadow: 0 8px 16px rgba(39, 155, 50, 0.13);
}

.button-primary:hover { background: var(--green-dark); box-shadow: 0 10px 22px rgba(39, 155, 50, 0.2); transform: translateY(-1px); }

.button-secondary { width: 200px; color: var(--green-dark); background: rgba(255, 255, 255, 0.9); }
.button-secondary:hover { color: #fff; background: var(--green); transform: translateY(-1px); }

.hero-art {
  position: absolute;
  inset: 0 0 0 54.7%;
  overflow: hidden;
}

.triangle { position: absolute; display: block; }

.triangle-one {
  top: -42px;
  right: -5%;
  width: 58%;
  height: 240px;
  background: linear-gradient(145deg, rgba(224, 239, 224, 0.25), rgba(183, 216, 183, 0.62));
  clip-path: polygon(28% 0, 100% 0, 74% 100%);
}

.triangle-two {
  top: 194px;
  right: -11%;
  width: 88%;
  height: 315px;
  background: linear-gradient(145deg, rgba(246, 250, 246, 0.5), rgba(206, 226, 206, 0.68));
  clip-path: polygon(30% 0, 100% 0, 62% 100%);
}

.triangle-three {
  bottom: -90px;
  left: 0;
  width: 62%;
  height: 355px;
  background: linear-gradient(145deg, rgba(242, 248, 242, 0.55), rgba(210, 230, 210, 0.76));
  clip-path: polygon(32% 0, 100% 100%, 0 100%);
}

.triangle-four {
  right: -3%;
  bottom: -105px;
  width: 47%;
  height: 385px;
  background: linear-gradient(150deg, rgba(222, 237, 222, 0.6), rgba(167, 205, 166, 0.63));
  clip-path: polygon(52% 0, 100% 100%, 0 100%);
}

.dot-grid {
  position: absolute;
  top: 66px;
  left: 15.2%;
  width: 86px;
  height: 110px;
  opacity: 0.33;
  background-image: radial-gradient(circle, var(--green) 1.1px, transparent 1.25px);
  background-size: 12px 12px;
}

.hero-object {
  position: absolute;
  top: 70px;
  right: auto;
  left: 42%;
  z-index: 2;
  width: 400px;
  height: auto;
  aspect-ratio: 1080 / 768;
  max-width: none;
  mix-blend-mode: multiply;
  pointer-events: none;
  transform: translateX(-50%);
  user-select: none;
}

.scroll-indicator {
  position: absolute;
  bottom: 23px;
  left: 50%;
  z-index: 5;
  display: grid;
  width: 35px;
  height: 28px;
  place-items: center;
  color: var(--green);
  transform: translateX(-50%);
}

.scroll-indicator svg {
  width: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  transition: transform 180ms ease;
}

.scroll-indicator:hover svg { transform: translateY(3px); }

.services { padding: 50px 0 29px; }
.eyebrow {
  margin: 0 0 8px;
  color: var(--green);
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.12px;
  text-transform: uppercase;
}

.services h2,
.section-heading h2,
.ordo-copy h2,
.contact-copy h2 {
  margin: 0;
  font-size: 31px;
  line-height: 1.15;
  letter-spacing: -0.7px;
}

.section-lead,
.section-heading > p:last-child {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 36px;
  margin-top: 16px;
}

.service-card {
  display: flex;
  min-height: 255px;
  flex-direction: column;
  padding: 29px 29px 26px;
  border: 1px solid #f0f2f0;
  border-radius: 13px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-card:hover { transform: translateY(-2px); box-shadow: 0 15px 38px rgba(28, 56, 31, 0.085); }

.icon-disc {
  display: grid;
  width: 64px;
  height: 64px;
  margin-bottom: 17px;
  border-radius: 50%;
  place-items: center;
  color: var(--green);
  background: linear-gradient(145deg, #eaf5ea, #dceedd);
}

.icon-disc svg {
  width: 35px;
  height: 35px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.icon-solid svg > :first-child { fill: var(--green); stroke: var(--green); }
.icon-solid svg > :last-child { stroke: #fff; stroke-width: 2; }

.service-card h3 { margin: 0 0 8px; font-size: 16px; line-height: 1.25; }
.service-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.48; }
.service-card > a { margin-top: auto; color: var(--green); font-size: 13px; font-weight: 700; }
.service-card > a span { display: inline-block; margin-left: 7px; font-size: 18px; font-weight: 400; transition: transform 180ms ease; }
.service-card > a:hover span { transform: translateX(4px); }

.section-pad { padding: 100px 0; }
.section-heading { max-width: 680px; margin-bottom: 42px; }

.numbers {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: #16251a;
}

.numbers::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.5;
  background: radial-gradient(circle at 85% 30%, rgba(49, 165, 60, 0.4), transparent 35%), linear-gradient(120deg, transparent 55%, rgba(255, 255, 255, 0.03) 55%);
}

.numbers .container { position: relative; }
.section-heading-light .eyebrow { color: #78d47f; }
.number-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.number-grid article { padding: 26px 28px; border-left: 1px solid rgba(255, 255, 255, 0.18); }
.number-grid strong { display: block; min-height: 55px; color: #83dc8a; font-size: 55px; font-variant-numeric: tabular-nums; line-height: 1; letter-spacing: -2px; }
.number-grid span { display: block; margin-top: 16px; color: rgba(255, 255, 255, 0.8); font-size: 14px; line-height: 1.5; }

.portfolio { background: #f7faf7; }
.portfolio-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 22px; }
.portfolio-grid article { min-height: 485px; overflow: hidden; padding: 30px; border: 1px solid var(--line); border-radius: 14px; background: #fff; box-shadow: 0 10px 28px rgba(20, 45, 24, 0.04); transition: transform 220ms ease, box-shadow 220ms ease; }
.portfolio-grid article:nth-child(1), .portfolio-grid article:nth-child(2) { grid-column: span 3; }
.portfolio-grid article:nth-child(n+3) { grid-column: span 2; }
.portfolio-grid article:nth-child(n+3) { min-height: 465px; }
.project-media {
  position: relative;
  height: 225px;
  overflow: hidden;
  margin: -30px -30px 25px;
  background: #eaf2ea;
}
.portfolio-grid article:nth-child(n+3) .project-media { height: 205px; }
.project-media::after,
.reference-media::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(145deg, rgba(19, 58, 24, 0.03), rgba(39, 155, 50, 0.16));
  mix-blend-mode: multiply;
}
.project-media img,
.reference-media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.72) contrast(0.96); transition: transform 450ms ease, filter 450ms ease; }
.portfolio-grid article:hover { transform: translateY(-3px); box-shadow: 0 16px 38px rgba(20, 45, 24, 0.09); }
.portfolio-grid article:hover .project-media img,
.reference-track article:hover .reference-media img { transform: scale(1.035); filter: saturate(0.9) contrast(1); }
.portfolio-index { display: block; color: var(--green); font-size: 13px; font-weight: 800; }
.portfolio-grid h3 { margin: 13px 0 12px; font-size: 21px; }
.portfolio-grid p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.65; }

.reference-header { display: block; }
.reference-carousel { position: relative; padding-inline: 64px; }
.reference-viewport { overflow: hidden; padding: 2px; border-radius: 16px; }
.reference-track { display: flex; gap: 22px; padding-bottom: 25px; transform: translateX(0); will-change: transform; }
.reference-track article { min-width: 0; min-height: 440px; overflow: hidden; flex: 0 0 calc((100% - 44px) / 3); padding: 0 27px 28px; border: 1px solid var(--line); border-radius: 14px; background: linear-gradient(145deg, #fff 50%, #f4faf4); transition: transform 220ms ease, box-shadow 220ms ease; }
.reference-track article:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(20, 45, 24, 0.08); }
.reference-media { position: relative; height: 205px; overflow: hidden; margin: 0 -27px 24px; background: #eaf2ea; }
.reference-track article > span { color: var(--green); font-size: 12px; font-weight: 800; }
.reference-track h3 { margin: 13px 0; font-size: 20px; }
.reference-track p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.6; }
.reference-arrow { position: absolute; top: calc(50% - 13px); z-index: 3; display: grid; width: 46px; height: 46px; padding: 0; border: 1px solid #dce5dc; border-radius: 50%; place-items: center; color: var(--green-dark); background: rgba(255, 255, 255, 0.96); box-shadow: 0 9px 24px rgba(20, 45, 24, 0.1); cursor: pointer; transform: translateY(-50%); transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease; }
.reference-arrow:hover { border-color: var(--green); color: #fff; background: var(--green); transform: translateY(-50%) scale(1.04); }
.reference-prev { left: 0; }
.reference-next { right: 0; }
.reference-arrow span { width: 10px; height: 10px; border-top: 2px solid currentColor; border-right: 2px solid currentColor; }
.reference-prev span { margin-left: 4px; transform: rotate(-135deg); }
.reference-next span { margin-right: 4px; transform: rotate(45deg); }

.ordo { overflow: hidden; background: #f6faf6; }
.ordo-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 100px; }
.ordo-visual { position: relative; display: grid; min-height: 400px; border-radius: 22px; place-items: center; background: #e8f3e8; }
.ordo-visual::before, .ordo-visual::after, .ordo-visual span { position: absolute; content: ""; background: rgba(39, 155, 50, 0.08); clip-path: polygon(50% 0, 100% 100%, 0 100%); }
.ordo-visual::before { top: -30px; left: -40px; width: 310px; height: 300px; transform: rotate(15deg); }
.ordo-visual::after { right: -60px; bottom: -80px; width: 360px; height: 340px; transform: rotate(-20deg); }
.ordo-visual span { right: 20px; top: 20px; width: 180px; height: 180px; }
.ordo-static { position: relative; z-index: 2; display: block; width: min(68%, 285px); height: auto; object-fit: contain; }
.ordo-copy h2 { margin-bottom: 24px; font-size: 42px; }
.ordo-copy h2 sup { color: var(--green); font-size: 17px; }
.ordo-copy > p:not(.eyebrow) { color: var(--muted); font-size: 15px; line-height: 1.75; }
.text-link { display: inline-flex; gap: 10px; margin-top: 13px; color: var(--green-dark); font-weight: 800; }
.text-link span { transition: transform 180ms ease; }
.text-link:hover span { transform: translate(3px, -3px); }

.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; align-items: center; gap: 95px; }
.contact-copy h2 { max-width: 560px; margin-bottom: 18px; font-size: 42px; }
.contact-copy > p:not(.eyebrow) { max-width: 540px; color: var(--muted); font-size: 16px; line-height: 1.7; }
.contact dl { margin: 40px 0 0; }
.contact dl div { display: grid; grid-template-columns: 120px 1fr; padding: 13px 0; border-bottom: 1px solid var(--line); }
.contact dt { color: #7c817d; font-size: 13px; font-weight: 700; }
.contact dd { margin: 0; font-size: 14px; line-height: 1.5; }
.contact dd a:hover { color: var(--green-dark); }
.map-card { position: relative; overflow: hidden; min-height: 430px; border-radius: 20px; background: #eef5ee; box-shadow: 0 20px 50px rgba(26, 52, 28, 0.1); }
.map-card img { width: 100%; height: 430px; object-fit: cover; filter: saturate(0.65) contrast(0.95); transition: transform 350ms ease, filter 350ms ease; }
.map-card span { position: absolute; right: 18px; bottom: 18px; padding: 14px 18px; border-radius: 8px; color: #fff; background: var(--green-dark); font-size: 13px; font-weight: 700; }
.map-card b { margin-left: 10px; }
.map-card:hover img { transform: scale(1.02); filter: saturate(0.85); }

.site-footer { padding: 55px 0 24px; color: rgba(255, 255, 255, 0.78); background: #122016; }
.footer-main { display: grid; grid-template-columns: 1fr 1.5fr auto; align-items: center; gap: 40px; padding-bottom: 42px; }
.footer-brand img { width: 185px; filter: brightness(0) invert(1); opacity: 0.9; }
.footer-main p { margin: 0; font-size: 14px; line-height: 1.6; }
.footer-main > a:last-child { color: #83dc8a; font-weight: 700; }
.footer-meta { display: flex; justify-content: space-between; gap: 30px; padding-top: 23px; border-top: 1px solid rgba(255, 255, 255, 0.12); font-size: 11px; }
.footer-ai-note { margin-top: 12px; color: rgba(255, 255, 255, 0.42); font-size: 10px; line-height: 1.5; letter-spacing: 0.01em; text-align: right; }

@media (max-width: 1280px) {
  :root { --container: 1100px; }
  .site-header { padding-inline: 40px; }
  .desktop-nav { gap: 38px; transform: none; }
  .languages { transform: none; }
  .hero h1 { max-width: 650px; font-size: 42px; }
  .hero-object { right: auto; left: 52%; }
  .service-grid { gap: 22px; }
}

@media (max-width: 1100px) {
  html { scroll-padding-top: 76px; }
  .site-header { grid-template-columns: 1fr auto; height: 76px; padding-inline: 28px; border-radius: 0 0 12px 12px; }
  .brand img { width: 190px; }
  .desktop-nav { display: none; }
  .menu-toggle { display: grid; width: 38px; height: 38px; padding: 8px; border: 0; place-content: center; gap: 5px; background: transparent; cursor: pointer; }
  .menu-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); transition: transform 180ms ease, opacity 180ms ease; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .mobile-nav { position: fixed; inset: 76px 0 auto; display: flex; max-height: 0; overflow: hidden; flex-direction: column; padding: 0 28px; background: #fff; box-shadow: 0 18px 30px rgba(22, 37, 24, 0.1); opacity: 0; pointer-events: none; transition: max-height 250ms ease, padding 250ms ease, opacity 180ms ease; }
  .mobile-nav.is-open { max-height: 430px; padding-top: 16px; padding-bottom: 24px; opacity: 1; pointer-events: auto; }
  .mobile-nav a { padding: 13px 0; border-bottom: 1px solid var(--line); font-weight: 700; }
  .hero { height: auto; min-height: 700px; }
  .hero-inner { min-height: 700px; }
  .hero-copy { top: 90px; right: 0; left: 0; transform: none; }
  .hero-art { inset: 310px 0 0 42%; }
  .hero h1 { max-width: 650px; font-size: 44px; }
  .hero-object { top: 62px; right: auto; left: 52%; width: 370px; }
  .dot-grid { top: 35px; }
  .scroll-indicator { bottom: 18px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .number-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid article, .portfolio-grid article:nth-child(n) { grid-column: span 3; }
  .portfolio-grid article, .portfolio-grid article:nth-child(n+3) { min-height: 455px; }
  .project-media, .portfolio-grid article:nth-child(n+3) .project-media { height: 200px; }
  .reference-track article { flex-basis: calc((100% - 22px) / 2); }
  .ordo-grid, .contact-grid { grid-template-columns: 1fr; gap: 55px; }
  .ordo-visual { order: 2; }
  .map-card { min-height: 380px; }
  .map-card img { height: 380px; }
}

@media (max-width: 650px) {
  .container { width: min(100% - 36px, var(--container)); }
  .site-header { padding-inline: 18px; }
  .brand img { width: 165px; }
  .languages { gap: 9px; }
  .languages img { width: 24px; height: 16px; }
  .header-actions { gap: 9px; }
  .hero { min-height: 795px; }
  .hero-inner { min-height: 795px; }
  .hero-copy { top: 67px; }
  .hero h1 { max-width: 100%; font-size: clamp(35px, 10.4vw, 41px); line-height: 1.08; letter-spacing: -1.2px; }
  .hero-copy > p { margin-top: 20px; font-size: 16px; line-height: 1.55; }
  .desktop-break { display: none; }
  .hero-actions { flex-direction: column; gap: 13px; }
  .button, .button-primary, .button-secondary { width: 100%; }
  .hero-art { inset: 465px -80px 0 8%; }
  .hero-object { top: 90px; right: auto; left: 50%; width: 300px; }
  .dot-grid { left: 15%; }
  .scroll-indicator { display: none; }
  .services { padding-top: 48px; }
  .services h2, .section-heading h2 { font-size: 29px; }
  .service-grid { grid-template-columns: 1fr; gap: 15px; }
  .service-card { min-height: 235px; }
  .section-pad { padding: 72px 0; }
  .number-grid { grid-template-columns: 1fr; gap: 10px; }
  .number-grid article { padding: 20px; }
  .number-grid strong { min-height: 47px; font-size: 47px; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-grid article, .portfolio-grid article:nth-child(n) { grid-column: auto; min-height: 435px; }
  .project-media, .portfolio-grid article:nth-child(n+3) .project-media { height: 200px; }
  .reference-carousel { padding-inline: 48px; }
  .reference-track { gap: 16px; }
  .reference-track article { min-height: 425px; flex-basis: 100%; }
  .reference-media { height: 185px; }
  .reference-arrow { width: 38px; height: 38px; }
  .ordo-visual { min-height: 300px; }
  .ordo-static { width: min(72%, 230px); }
  .ordo-copy h2, .contact-copy h2 { font-size: 35px; }
  .contact dl div { grid-template-columns: 90px 1fr; }
  .map-card, .map-card img { min-height: 300px; height: 300px; }
  .footer-main { grid-template-columns: 1fr; gap: 22px; }
  .footer-meta { flex-direction: column; gap: 10px; }
  .footer-ai-note { text-align: left; }
}

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

/* ORDO Documentator integration ------------------------------------------------ */
.documentator-content { overflow: hidden; }
.documentator-content .ordo-doc-actionbuttons { position: relative; z-index: 20; }

.documentator-content .title-container {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, #fff 0 58%, #f7faf7 58%);
}
.documentator-content .title-container::before,
.documentator-content .title-container::after {
  position: absolute;
  content: "";
  background: rgba(39, 155, 50, 0.08);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}
.documentator-content .title-container::before { top: -130px; right: -60px; width: 460px; height: 440px; transform: rotate(180deg); }
.documentator-content .title-container::after { right: 18%; bottom: -230px; width: 520px; height: 500px; transform: rotate(8deg); }
.documentator-content .title-arrow-container { position: relative; width: min(var(--container), calc(100% - 48px)); min-height: 620px; margin-inline: auto; }
.documentator-content .title { display: grid; min-height: 620px; grid-template-columns: 1.15fr 0.85fr; align-items: center; gap: 70px; }
.documentator-content .title-text { position: relative; z-index: 3; max-width: 760px; }
.documentator-content .title-text h2 { margin: 0; font-size: clamp(40px, 4.1vw, 64px); line-height: 1.05; letter-spacing: -2.6px; }
.documentator-content .title-text h2 + h2 { margin-top: 12px; color: var(--green); }
.documentator-content .title > div:last-child { position: relative; z-index: 2; display: grid; place-items: center; }
.documentator-content .title video { width: min(42vw, 475px); height: auto; max-height: 470px; object-fit: contain; mix-blend-mode: multiply; }
.documentator-content .arrow-container { position: absolute; z-index: 5; bottom: 25px; left: 50%; display: grid; width: 40px; height: 34px; place-items: center; transform: translateX(-50%); cursor: pointer; }
.documentator-content .arrow { width: 14px; height: 14px; border-right: 2px solid var(--green); border-bottom: 2px solid var(--green); transform: rotate(45deg); }

.documentator-content .main-container { width: 100%; padding: 104px 0; }
.documentator-content .main-container:nth-of-type(even) { background: var(--soft); }
.documentator-content .main-container > .Heading-title,
.documentator-content .main-container > .Heading-titles-container,
.documentator-content .main-container > .bg-white { width: min(var(--container), calc(100% - 48px)); margin-inline: auto; }
.documentator-content .Heading-title { margin-bottom: 42px; }
.documentator-content .Heading-title h1,
.documentator-content .Heading-title .h1 { margin: 0; font-size: clamp(38px, 4vw, 54px); line-height: 1.08; letter-spacing: -2px; }
.documentator-content .Heading-title h1::before,
.documentator-content .Heading-title .h1::before { display: block; margin-bottom: 12px; color: var(--green); font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; content: "AHASWARE"; }
.documentator-content .bg-white { background: transparent; }

.numberslist { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); border-radius: 20px; background: #fff; box-shadow: var(--shadow-soft); }
.numbercontainer { min-height: 225px; padding: 34px; border-right: 1px solid var(--line); }
.numbercontainer:last-child { border-right: 0; }
.numbercontainer_number { margin: 0 0 20px; color: var(--green); font-size: clamp(42px, 4vw, 64px); font-weight: 800; letter-spacing: -2px; }
.numbercontainer_text h2 { margin: 0; font-size: 19px; }
.numbercontainer_lowertext { color: var(--muted); font-size: 13px; line-height: 1.55; }

.documentator-content .swiper-container { position: relative; overflow: hidden; border: 1px solid var(--line); border-radius: 20px; background: #fff; box-shadow: var(--shadow-soft); }
.documentator-content .swiper { width: 100%; padding: 34px 34px 70px; }
.documentator-content .swiper-slide { display: grid; min-height: 420px; grid-template-columns: minmax(260px, .8fr) 1.2fr; align-items: center; gap: 48px; }
.swiper-picture-container { grid-row: 1 / span 2; }
.swiper-picture-shadow { overflow: hidden; border-radius: 16px; background: #eef4ee; box-shadow: 0 18px 45px rgba(21, 48, 24, .10); }
.swiper-picture { width: 100%; height: 330px; object-fit: cover; }
.swiper-text { align-self: end; }
.swiper-text h2 { margin: 0; font-size: clamp(28px, 3vw, 42px); letter-spacing: -1.5px; }
.swiper-slide > p { align-self: start; max-height: 245px; overflow: auto; padding-right: 14px; color: var(--muted); line-height: 1.75; }
.swiper-button-prev, .swiper-button-next { color: var(--green); }
.swiper-pagination-bullet-active { background: var(--green); }

.awordo-inner-container { padding: 0; }
.awordo-card { overflow: hidden; border: 1px solid var(--line); border-radius: 22px; background: #132015; color: #fff; box-shadow: 0 24px 60px rgba(18, 38, 20, .14); }
.awordo-content { display: grid; grid-template-columns: .7fr 1.3fr; align-items: center; gap: 56px; padding: 54px; }
.awordo-content-header { display: contents; }
.awordo-image-container { grid-row: 1 / span 2; }
.awordo-logo { width: 100%; max-height: 340px; object-fit: contain; mix-blend-mode: screen; }
.awordo-header-text-container { display: flex; align-items: center; justify-content: space-between; }
.awordo-header { margin: 0; font-size: clamp(36px, 4vw, 54px); }
.awordo-ext-link-icon { width: 24px; filter: brightness(0) invert(1); }
.awordo-text { margin: 0; color: #c3cec5; line-height: 1.8; }
.awordo-text a { color: #72d77b; font-weight: 700; }

.contacts-container { display: grid; grid-template-columns: 1fr 1fr auto; align-items: stretch; gap: 28px; }
.table-container, .map { overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: #fff; box-shadow: var(--shadow-soft); }
.tab { width: 100%; height: 100%; border-collapse: collapse; }
.tab td { padding: 18px 22px; border-bottom: 1px solid var(--line); vertical-align: top; }
.tab td:first-child { width: 32%; color: var(--green-dark); font-weight: 700; }
.tab p { margin: 3px 0; }
.map-img { width: 100%; height: 100%; min-height: 360px; object-fit: cover; }
.map-icons-container { display: flex; flex-direction: column; justify-content: center; gap: 14px; }
.map-icon-inner-container a { display: grid; width: 58px; height: 58px; place-items: center; border: 1px solid var(--line); border-radius: 14px; background: #fff; box-shadow: var(--shadow-soft); transition: transform 180ms ease; }
.map-icon-inner-container a:hover { transform: translateY(-3px); }
.map-icon { width: 32px; height: 32px; object-fit: contain; }
.mobile-content { display: none; }

@media (max-width: 1100px) {
  .documentator-content .title { grid-template-columns: 1fr 1fr; }
  .numberslist { grid-template-columns: repeat(2, 1fr); }
  .numbercontainer:nth-child(2) { border-right: 0; }
  .numbercontainer:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .contacts-container { grid-template-columns: 1fr 1fr; }
  .map-icons-container { grid-column: 1 / -1; flex-direction: row; }
}
@media (max-width: 720px) {
  .documentator-content .title-container,
  .documentator-content .title-arrow-container,
  .documentator-content .title { min-height: 720px; }
  .documentator-content .title { grid-template-columns: 1fr; align-content: center; gap: 30px; padding: 70px 0; }
  .documentator-content .title-text h2 { font-size: clamp(34px, 10vw, 48px); }
  .documentator-content .title video { width: min(80vw, 340px); max-height: 300px; }
  .documentator-content .main-container { padding: 76px 0; }
  .numberslist { grid-template-columns: 1fr; }
  .numbercontainer { min-height: 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .numbercontainer:last-child { border-bottom: 0; }
  .documentator-content .swiper { padding: 20px 20px 65px; }
  .documentator-content .swiper-slide { min-height: 0; grid-template-columns: 1fr; gap: 22px; }
  .swiper-picture-container { grid-row: auto; }
  .swiper-picture { height: 230px; }
  .swiper-slide > p { max-height: 320px; }
  .awordo-content { grid-template-columns: 1fr; gap: 28px; padding: 28px; }
  .awordo-content-header { display: flex; }
  .awordo-image-container { grid-row: auto; }
  .contacts-container { grid-template-columns: 1fr; }
  .map-icons-container { grid-column: auto; }
  .desktop-content { display: none; }
  .mobile-content { display: block; }
}

/* Documentator normalizes h1/h2/h3 to div.h1/div.h2/div.h3. */
.documentator-content .h1,
.documentator-content .h2,
.documentator-content .h3 { display: block; font-weight: 700; }

.documentator-content .hero .h1 {
  max-width: 800px;
  margin: 0;
  font-size: 45px;
  font-weight: 800;
  line-height: 1.17;
  letter-spacing: -2.05px;
}
.documentator-content .hero .h1 span { display: block; color: var(--green); }
.documentator-content .hero .h1 .hero-title-dark { color: var(--ink); }
.documentator-content .hero .h1 span:not(.hero-title-dark) { letter-spacing: -0.75px; }

.documentator-content .services .h2,
.documentator-content .section-heading .h2,
.documentator-content .ordo-copy .h2,
.documentator-content .contact-copy .h2 {
  margin: 0;
  font-size: 31px;
  line-height: 1.15;
  letter-spacing: -0.7px;
}
.documentator-content .service-card .h3 { margin: 0 0 8px; font-size: 16px; line-height: 1.25; }
.documentator-content .portfolio-grid .h3 { margin: 13px 0 12px; font-size: 21px; }
.documentator-content .reference-track .h3 { margin: 13px 0; font-size: 20px; }
.documentator-content .ordo-copy .h2 { margin-bottom: 24px; font-size: 42px; }
.documentator-content .ordo-copy .h2 sup { color: var(--green); font-size: 17px; }
.documentator-content .contact-copy .h2 { max-width: 560px; margin-bottom: 18px; font-size: 42px; }

.icon-arrow-right::before { content: "\2192"; }
.icon-arrow-left::before { content: "\2190"; }
.icon-arrow-external::before { content: "\2197"; }

@media (max-width: 1280px) {
  .documentator-content .hero .h1 { max-width: 650px; font-size: 42px; }
}
@media (max-width: 1100px) {
  .documentator-content .hero .h1 { max-width: 650px; font-size: 44px; }
}
@media (max-width: 650px) {
  .documentator-content .hero .h1 { max-width: 100%; font-size: clamp(35px, 10.4vw, 41px); line-height: 1.08; letter-spacing: -1.2px; }
  .documentator-content .services .h2,
  .documentator-content .section-heading .h2 { font-size: 29px; }
  .documentator-content .ordo-copy .h2,
  .documentator-content .contact-copy .h2 { font-size: 35px; }
}
