@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600&family=Manrope:wght@500;600;700;800&display=swap');

:root {
  --ink: #172019;
  --forest: #123d2d;
  --forest-deep: #08291d;
  --moss: #2c6248;
  --lime: #cff57b;
  --lime-soft: #e7fac0;
  --paper: #f3f0e7;
  --paper-warm: #e9e3d4;
  --white: #fffdf7;
  --muted: #657069;
  --line: rgba(23, 32, 25, .16);
  --shadow: 0 28px 80px rgba(8, 41, 29, .14);
  --radius: 28px;
  --radius-lg: 42px;
  --container: min(1240px, calc(100vw - 56px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font: 400 16px/1.65 "DM Sans", system-ui, sans-serif;
  text-rendering: optimizeLegibility;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .22;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='110' height='110'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='3' stitchTiles='stitchTiles'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.11'/%3E%3C/svg%3E");
}
body.menu-open { overflow: hidden; }
::selection { background: var(--lime); color: var(--forest-deep); }
[hidden] { display: none !important; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
img { display: block; width: 100%; max-width: 100%; }
h1, h2, h3, h4, p, ul { margin-top: 0; }
h1, h2, h3, h4 {
  font-family: "Manrope", system-ui, sans-serif;
  line-height: 1.04;
  letter-spacing: -.052em;
}
h1 { font-size: clamp(3.7rem, 8.6vw, 9.3rem); }
h2 { font-size: clamp(2.55rem, 5.6vw, 5.6rem); }
h3 { font-size: clamp(1.38rem, 2.1vw, 2rem); }
p { color: var(--muted); }
strong { font-weight: 700; }

.skip-link {
  position: fixed;
  left: 18px;
  top: 12px;
  z-index: 1000;
  transform: translateY(-160%);
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--lime);
  color: var(--forest);
  font-weight: 700;
}
.skip-link:focus { transform: none; }
.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 3px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left;
  will-change: transform;
}
.container { width: var(--container); margin-inline: auto; }
.narrow { width: min(880px, 100%); margin-inline: auto; }
.section { padding: clamp(88px, 11vw, 160px) 0; }
.section--compact { padding: clamp(64px, 8vw, 110px) 0; }
.section--dark { background: var(--forest-deep); color: var(--white); }
.section--dark p { color: rgba(255,255,255,.66); }
.section--lime { background: var(--lime); }
.section--paper-dark { background: var(--paper-warm); }
.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(270px, .55fr);
  gap: 60px;
  align-items: end;
  margin-bottom: clamp(40px, 6vw, 74px);
}
.section-head h2 { margin: 0; max-width: 900px; }
.section-head p { margin: 0 0 5px; font-size: 1.08rem; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  color: var(--moss);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 30px; height: 1px; background: currentColor; }
.section--dark .eyebrow, .dark-card .eyebrow { color: var(--lime); }
.lede { max-width: 720px; font-size: clamp(1.08rem, 1.65vw, 1.35rem); }
.kicker { color: var(--moss); font-weight: 700; }
.pill-row { display: flex; flex-wrap: wrap; gap: 8px; }
.pill {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: .76rem;
  font-weight: 700;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  padding: 18px 0;
  transition: padding .35s ease, background .35s ease, border .35s ease, backdrop-filter .35s ease;
}
.site-header.scrolled {
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
  background: rgba(243,240,231,.9);
  backdrop-filter: blur(18px);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: 0 0 auto;
  font: 800 1.08rem "Manrope", sans-serif;
  letter-spacing: -.04em;
}
.brand-mark {
  position: relative;
  width: 38px;
  height: 38px;
  overflow: hidden;
  border-radius: 55% 45% 52% 48%;
  background: var(--forest);
  transform: rotate(-9deg);
}
.brand-mark::before {
  content: "";
  position: absolute;
  width: 17px;
  height: 26px;
  left: 10px;
  top: 4px;
  border: 2px solid var(--lime);
  border-left: 0;
  border-bottom: 0;
  border-radius: 0 100% 0 0;
  transform: rotate(32deg);
}
.brand-mark::after {
  content: "";
  position: absolute;
  left: 18px;
  top: 8px;
  width: 2px;
  height: 23px;
  background: var(--lime);
  transform: rotate(-26deg);
}
.nav-links { display: flex; align-items: center; gap: clamp(16px, 2.2vw, 34px); }
.nav-links a { position: relative; font-size: .9rem; font-weight: 650; }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 2px;
  background: var(--forest);
  transition: right .25s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { right: 0; }
.nav-actions { display: flex; align-items: center; gap: 9px; }
.lang-switch {
  display: flex;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
}
.lang-switch button {
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  font-size: .68rem;
  font-weight: 800;
}
.lang-switch button.active { background: var(--forest); color: var(--white); }
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}
.menu-toggle span { display: block; width: 18px; height: 1.5px; margin: 5px auto; background: currentColor; transition: .25s ease; }
.menu-toggle.open span:first-child { transform: translateY(3.2px) rotate(45deg); }
.menu-toggle.open span:last-child { transform: translateY(-3.2px) rotate(-45deg); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 54px;
  padding: 0 25px;
  border: 1px solid var(--forest);
  border-radius: 999px;
  background: var(--forest);
  color: var(--white);
  font-weight: 700;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
}
.btn::after { content: "↗"; }
.btn:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(8,41,29,.18); }
.btn--lime { border-color: var(--lime); background: var(--lime); color: var(--forest-deep); }
.btn--light { border-color: var(--white); background: var(--white); color: var(--forest-deep); }
.btn--ghost { background: transparent; color: var(--forest); }
.btn--small { min-height: 44px; padding-inline: 18px; font-size: .84rem; }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: .86rem;
  font-weight: 800;
}
.text-link::after { content: "→"; transition: transform .2s ease; }
.text-link:hover::after { transform: translateX(5px); }

.hero {
  min-height: 100svh;
  padding: 118px 0 26px;
}
.hero-shell {
  position: relative;
  min-height: calc(100svh - 144px);
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--forest-deep);
  color: var(--white);
  box-shadow: var(--shadow);
  isolation: isolate;
}
.hero-media { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.hero-media img {
  height: calc(100% + 100px);
  object-fit: cover;
  object-position: center;
  transform: translateY(calc(-50px + var(--parallax-y, 0px))) scale(1.02);
  will-change: transform;
}
.hero-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(5,27,18,.93) 0%, rgba(5,27,18,.72) 39%, rgba(5,27,18,.14) 74%), linear-gradient(0deg, rgba(5,27,18,.55), transparent 58%);
}
.hero-content {
  display: flex;
  min-height: calc(100svh - 144px);
  flex-direction: column;
  justify-content: flex-end;
  width: min(850px, 72%);
  padding: clamp(34px, 6vw, 82px);
}
.hero .eyebrow { color: var(--lime); }
.hero h1 { max-width: 870px; margin: 0 0 22px; }
.hero h1 em { color: var(--lime); font-style: normal; }
.hero p { max-width: 620px; margin-bottom: 30px; color: rgba(255,255,255,.76); font-size: clamp(1rem, 1.5vw, 1.24rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.hero-proof {
  position: absolute;
  right: 26px;
  bottom: 26px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  width: 230px;
  padding: 17px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 19px;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(14px);
}
.hero-proof strong { color: var(--lime); font: 700 1.35rem "Manrope", sans-serif; }
.hero-proof span { color: rgba(255,255,255,.72); font-size: .75rem; line-height: 1.35; }
.hero-index {
  position: absolute;
  top: 29px;
  right: 31px;
  color: rgba(255,255,255,.65);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 33px;
  display: flex;
  align-items: center;
  gap: 10px;
  transform: translateX(-50%);
  color: rgba(255,255,255,.7);
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.hero-scroll::before { content: ""; width: 34px; height: 1px; background: var(--lime); animation: pulseLine 1.5s ease-in-out infinite; }

.trust-strip { border-bottom: 1px solid var(--line); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item {
  min-height: 96px;
  padding: 23px;
  border-right: 1px solid var(--line);
}
.trust-item:last-child { border: 0; }
.trust-item strong { display: block; margin-bottom: 3px; font: 700 .87rem "Manrope", sans-serif; }
.trust-item span { color: var(--muted); font-size: .78rem; }

.marquee { overflow: hidden; border-block: 1px solid var(--line); }
.marquee-track { display: flex; width: max-content; animation: marquee 32s linear infinite; }
.marquee-item {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 20px 27px;
  color: var(--forest);
  font: 700 .76rem "Manrope", sans-serif;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.marquee-item::after { content: "✦"; color: var(--moss); }

.service-showcase { display: grid; gap: 18px; }
.service-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.28);
}
.service-feature:nth-child(even) .service-feature-media { order: 2; }
.service-feature-media { position: relative; min-height: 420px; overflow: hidden; }
.service-feature-media img {
  height: calc(100% + 90px);
  object-fit: cover;
  transform: translateY(calc(-45px + var(--parallax-y, 0px))) scale(1.04);
  will-change: transform;
}
.service-feature-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(34px, 5vw, 72px); }
.service-feature-number { margin-bottom: 70px; color: var(--moss); font: 800 .78rem "Manrope", sans-serif; letter-spacing: .15em; }
.service-feature h3 { margin-bottom: 18px; font-size: clamp(2rem, 3.9vw, 4rem); }
.service-feature p { max-width: 520px; }
.mini-list { display: flex; flex-wrap: wrap; gap: 7px; margin: 15px 0 26px; padding: 0; list-style: none; }
.mini-list li { padding: 7px 11px; border: 1px solid var(--line); border-radius: 999px; font-size: .74rem; font-weight: 700; color: var(--forest); }

.cycle-layout { display: grid; grid-template-columns: 1.12fr .88fr; gap: clamp(44px, 8vw, 110px); align-items: center; }
.cycle-image { position: relative; min-height: 670px; overflow: hidden; border-radius: var(--radius-lg); }
.cycle-image img { position: absolute; inset: -55px 0; height: calc(100% + 110px); object-fit: cover; transform: translateY(var(--parallax-y, 0px)); }
.cycle-badge {
  position: absolute;
  right: 22px;
  bottom: 22px;
  display: grid;
  place-items: center;
  width: 150px;
  aspect-ratio: 1;
  padding: 20px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--forest);
  text-align: center;
  font: 800 .68rem/1.4 "Manrope", sans-serif;
  letter-spacing: .08em;
  text-transform: uppercase;
  transform: rotate(8deg);
}
.cycle-steps { margin: 34px 0; padding: 0; list-style: none; }
.cycle-steps li { display: grid; grid-template-columns: 38px 1fr; gap: 15px; padding: 18px 0; border-bottom: 1px solid rgba(23,32,25,.18); }
.cycle-steps b { display: grid; place-items: center; width: 31px; height: 31px; border-radius: 50%; background: var(--forest); color: var(--lime); font-size: .72rem; }
.cycle-steps strong { display: block; font-family: "Manrope", sans-serif; }
.cycle-steps small { color: rgba(23,32,25,.62); }

.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(255,255,255,.16); }
.stat { min-height: 190px; padding: 38px 27px; border-right: 1px solid rgba(255,255,255,.16); }
.stat:last-child { border: 0; }
.stat strong { display: block; margin-bottom: 13px; color: var(--lime); font: 700 clamp(2.9rem, 5.5vw, 5.7rem)/.9 "Manrope", sans-serif; letter-spacing: -.075em; }
.stat span { color: rgba(255,255,255,.62); font-size: .82rem; }

.project-mosaic { display: grid; grid-template-columns: 1.1fr .9fr; grid-template-rows: repeat(2, 330px); gap: 16px; }
.project-card, .gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--forest);
  color: var(--white);
  isolation: isolate;
}
.project-card:first-child { grid-row: 1 / 3; }
.project-card img, .gallery-card img {
  height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.2,.8,.2,1);
}
.project-card::after, .gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(0deg, rgba(4,24,16,.92), transparent 68%);
}
.project-card:hover img, .gallery-card:hover img { transform: scale(1.06); }
.project-info { position: absolute; inset: auto 28px 26px; z-index: 2; }
.project-info span { color: var(--lime); font-size: .7rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.project-info h3 { margin: 8px 0 7px; }
.project-info p { max-width: 600px; margin: 0; color: rgba(255,255,255,.68); font-size: .83rem; }
.project-top-link { display: flex; justify-content: flex-end; margin-top: 28px; }

.process-list { counter-reset: process; }
.process-row {
  counter-increment: process;
  display: grid;
  grid-template-columns: 90px .8fr 1.1fr;
  gap: 36px;
  padding: 34px 0;
  border-top: 1px solid rgba(255,255,255,.16);
}
.process-row::before { content: "0" counter(process); color: var(--lime); font: 800 .75rem "Manrope", sans-serif; letter-spacing: .14em; }
.process-row h3, .process-row p { margin: 0; }
.process-row p { max-width: 600px; }

.testimonial-grid { display: grid; grid-template-columns: 1.3fr .7fr; gap: 18px; }
.testimonial-main { padding: clamp(40px, 6vw, 76px); border-radius: var(--radius-lg); background: var(--white); }
.quote-mark { display: block; color: var(--moss); font: 700 5rem/1 Georgia, serif; }
.testimonial-main blockquote { margin: 10px 0 32px; font: 600 clamp(1.6rem, 3.2vw, 3.05rem)/1.3 "Manrope", sans-serif; letter-spacing: -.045em; }
.testimonial-main cite { color: var(--muted); font-style: normal; }
.testimonial-side { display: flex; flex-direction: column; justify-content: space-between; padding: 38px; border-radius: var(--radius-lg); background: var(--forest); color: var(--white); }
.testimonial-side .rating { color: var(--lime); letter-spacing: .2em; }
.testimonial-side p { color: rgba(255,255,255,.7); }
.testimonial-side strong { font: 700 3.2rem "Manrope", sans-serif; letter-spacing: -.06em; }

.faq { max-width: 940px; margin-inline: auto; }
.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  width: 100%;
  padding: 26px 0;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
  font: 700 1.08rem "Manrope", sans-serif;
  letter-spacing: -.02em;
}
.faq-question::after {
  content: "+";
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--paper-warm);
  transition: transform .25s ease, background .25s ease;
}
.faq-question[aria-expanded="true"]::after { transform: rotate(45deg); background: var(--lime); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .42s cubic-bezier(.2,.8,.2,1); }
.faq-answer p { max-width: 760px; padding: 0 52px 26px 0; }

.cta-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(45px, 7vw, 88px);
  border-radius: var(--radius-lg);
  background: var(--lime);
}
.cta-panel::before, .cta-panel::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(18,61,45,.18);
  border-radius: 50%;
  pointer-events: none;
}
.cta-panel::before { width: 520px; height: 520px; right: -150px; top: -260px; }
.cta-panel::after { width: 330px; height: 330px; right: -60px; top: -170px; }
.cta-panel h2 { position: relative; max-width: 850px; margin-bottom: 25px; }
.cta-panel p { position: relative; max-width: 600px; color: rgba(23,32,25,.67); }
.cta-panel .btn { position: relative; margin-top: 8px; }

.page-hero { padding: 174px 0 88px; }
.page-hero-grid { display: grid; grid-template-columns: minmax(0,1fr) 360px; gap: 70px; align-items: end; }
.page-hero h1 { max-width: 1070px; margin: 8px 0 0; font-size: clamp(3.5rem, 7.8vw, 8rem); }
.page-hero h1 span { color: var(--moss); }
.page-hero p { margin: 0 0 9px; }
.page-rule { height: 1px; margin-top: 68px; background: var(--line); transform-origin: left; animation: lineIn 1.1s cubic-bezier(.2,.8,.2,1) both .2s; }
.page-collage { display: grid; grid-template-columns: 1.15fr .85fr; gap: 16px; height: 560px; margin-top: 58px; }
.page-collage figure { position: relative; overflow: hidden; margin: 0; border-radius: var(--radius); }
.page-collage figure:last-child { margin-top: 80px; }
.page-collage img { height: calc(100% + 80px); object-fit: cover; transform: translateY(calc(-40px + var(--parallax-y, 0px))); }

.anchor-nav { position: sticky; top: 64px; z-index: 20; border-block: 1px solid var(--line); background: rgba(243,240,231,.92); backdrop-filter: blur(14px); }
.anchor-nav-inner { display: flex; gap: 6px; overflow-x: auto; padding: 12px 0; scrollbar-width: none; }
.anchor-nav-inner::-webkit-scrollbar { display: none; }
.anchor-nav a { flex: 0 0 auto; padding: 9px 15px; border-radius: 999px; color: var(--muted); font-size: .77rem; font-weight: 700; }
.anchor-nav a:hover { background: var(--forest); color: var(--white); }

.detail-block {
  display: grid;
  grid-template-columns: 80px minmax(0,.8fr) minmax(0,1.2fr);
  gap: 34px;
  padding: clamp(70px, 10vw, 140px) 0;
  border-top: 1px solid var(--line);
}
.detail-block:first-child { border-top: 0; }
.detail-number { color: var(--moss); font: 800 .8rem "Manrope", sans-serif; letter-spacing: .14em; }
.detail-copy h2 { margin-bottom: 24px; font-size: clamp(2.35rem, 4.7vw, 4.8rem); }
.detail-copy p { max-width: 520px; }
.detail-media { position: relative; min-height: 620px; overflow: hidden; border-radius: var(--radius); }
.detail-media img { height: calc(100% + 90px); object-fit: cover; transform: translateY(calc(-45px + var(--parallax-y, 0px))); }
.detail-card {
  width: calc(100% - 42px);
  margin: -92px auto 0;
  position: relative;
  z-index: 2;
  padding: 30px;
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.check-list { margin: 22px 0 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding: 11px 0 11px 29px; border-bottom: 1px solid var(--line); color: var(--muted); }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--moss); font-weight: 800; }
.facts-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-top: 24px; }
.fact { padding: 15px; border-radius: 14px; background: var(--paper); }
.fact b { display: block; font: 800 .8rem "Manrope", sans-serif; }
.fact span { color: var(--muted); font-size: .72rem; }

.emergency-band { padding: 45px 0; background: var(--lime); }
.emergency-inner { display: grid; grid-template-columns: 1fr auto; gap: 35px; align-items: center; }
.emergency-inner h2 { margin: 0; font-size: clamp(2rem, 4vw, 4rem); }
.emergency-inner p { margin: 12px 0 0; color: rgba(23,32,25,.68); }

.standards-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
.standard-card { min-height: 280px; padding: 30px; border: 1px solid rgba(255,255,255,.15); border-radius: var(--radius); }
.standard-card span { display: block; margin-bottom: 78px; color: var(--lime); font: 800 .76rem "Manrope", sans-serif; }
.standard-card p { margin: 0; }

.filter-bar { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 35px; }
.filter-btn { padding: 10px 18px; border: 1px solid var(--line); border-radius: 999px; background: transparent; cursor: pointer; font-weight: 700; }
.filter-btn.active { border-color: var(--forest); background: var(--forest); color: var(--white); }
.gallery-grid { display: grid; grid-template-columns: repeat(12,1fr); gap: 16px; }
.gallery-card { grid-column: span 6; min-height: 500px; transition: opacity .3s ease, transform .3s ease; }
.gallery-card:nth-child(3n) { grid-column: span 7; min-height: 590px; }
.gallery-card:nth-child(3n + 1):not(:first-child) { grid-column: span 5; min-height: 590px; }
.gallery-card.hidden { display: none; }
.gallery-card .project-info { inset: auto 30px 28px; }
.gallery-card .tag {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 3;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255,255,255,.13);
  backdrop-filter: blur(10px);
  color: var(--white);
  font-size: .68rem;
}

.case-study { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(45px, 8vw, 100px); align-items: center; }
.case-study-media { position: relative; min-height: 690px; overflow: hidden; border-radius: var(--radius-lg); }
.case-study-media img { position: absolute; inset: -50px 0; height: calc(100% + 100px); object-fit: cover; transform: translateY(var(--parallax-y, 0px)); }
.case-study h2 { margin-bottom: 26px; }
.case-metrics { display: grid; grid-template-columns: repeat(2,1fr); gap: 9px; margin: 30px 0; }
.case-metric { padding: 18px; border: 1px solid rgba(255,255,255,.16); border-radius: 16px; }
.case-metric strong { display: block; color: var(--lime); font-family: "Manrope", sans-serif; }
.case-metric span { color: rgba(255,255,255,.62); font-size: .76rem; }

.story-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(45px, 8vw, 105px); align-items: center; }
.story-media { position: relative; min-height: 690px; overflow: hidden; border-radius: var(--radius-lg); }
.story-media img { position: absolute; inset: -50px 0; height: calc(100% + 100px); object-fit: cover; transform: translateY(var(--parallax-y,0)); }
.story-copy p { max-width: 630px; font-size: 1.05rem; }
.story-signature { margin-top: 34px; padding-top: 24px; border-top: 1px solid var(--line); font: 700 1.15rem "Manrope", sans-serif; }
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 13px; }
.value-card { min-height: 390px; padding: 34px; border: 1px solid var(--line); border-radius: var(--radius); }
.value-card .big-num { display: block; color: var(--moss); font: 700 3rem "Manrope", sans-serif; letter-spacing: -.06em; }
.value-card h3 { margin-top: 85px; }
.timeline { max-width: 980px; margin-inline: auto; }
.timeline-row { display: grid; grid-template-columns: 180px 1fr; gap: 35px; padding: 34px 0; border-top: 1px solid rgba(255,255,255,.16); }
.timeline-row time { color: var(--lime); font: 800 1.25rem "Manrope", sans-serif; }
.timeline-row h3 { margin-bottom: 10px; }
.team-feature { position: relative; min-height: 720px; overflow: hidden; border-radius: var(--radius-lg); color: var(--white); }
.team-feature img { position: absolute; inset: -45px 0; height: calc(100% + 90px); object-fit: cover; transform: translateY(var(--parallax-y,0)); }
.team-feature::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(4,25,16,.9), transparent 62%); }
.team-copy { position: absolute; left: clamp(28px,5vw,70px); right: 28px; bottom: clamp(28px,5vw,60px); z-index: 2; max-width: 650px; }
.team-copy h2 { margin-bottom: 15px; font-size: clamp(2.4rem,5vw,5rem); }
.team-copy p { color: rgba(255,255,255,.72); }

.contact-hero-card { position: relative; min-height: 570px; margin-top: 55px; overflow: hidden; border-radius: var(--radius-lg); color: var(--white); }
.contact-hero-card img { height: calc(100% + 90px); object-fit: cover; transform: translateY(calc(-45px + var(--parallax-y,0))); }
.contact-hero-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(4,25,16,.76), transparent 70%); }
.contact-hero-note { position: absolute; left: 34px; bottom: 32px; z-index: 2; max-width: 380px; }
.contact-hero-note p { margin: 0; color: rgba(255,255,255,.78); }
.contact-grid { display: grid; grid-template-columns: .76fr 1.24fr; gap: clamp(45px, 8vw, 110px); }
.contact-list { margin: 34px 0 0; padding: 0; list-style: none; }
.contact-list li { padding: 19px 0; border-bottom: 1px solid var(--line); }
.contact-list span { display: block; margin-bottom: 4px; color: var(--muted); font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.contact-list a, .contact-list address { font-style: normal; font-weight: 700; }
.contact-form { padding: clamp(29px,4vw,52px); border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow); }
.contact-form h2 { margin-bottom: 32px; font-size: clamp(2rem,4vw,3.6rem); }
.form-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field--full { grid-column: 1 / 3; }
.field label { font-size: .8rem; font-weight: 800; }
.field input, .field textarea, .field select {
  width: 100%;
  min-height: 54px;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 13px;
  outline: 0;
  background: var(--paper);
  color: var(--ink);
  transition: border .2s ease, box-shadow .2s ease;
}
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--moss); box-shadow: 0 0 0 4px rgba(44,98,72,.1); }
.check { grid-column: 1 / 3; display: flex; align-items: flex-start; gap: 10px; color: var(--muted); font-size: .78rem; }
.check input { margin-top: 5px; accent-color: var(--forest); }
.form-status { display: none; grid-column: 1 / 3; padding: 13px 15px; border-radius: 12px; background: var(--lime-soft); color: var(--forest); }
.form-status.show { display: block; }
.prep-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
.prep-card { padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); }
.prep-card b { display: grid; place-items: center; width: 34px; height: 34px; margin-bottom: 64px; border-radius: 50%; background: var(--forest); color: var(--lime); font-size: .75rem; }
.prep-card h3 { font-size: 1.25rem; }
.service-area { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.map-card { position: relative; min-height: 470px; overflow: hidden; border-radius: var(--radius-lg); background: var(--forest); }
.map-ring { position: absolute; border: 1px solid rgba(207,245,123,.42); border-radius: 50%; }
.map-ring:nth-child(1) { inset: 16%; }
.map-ring:nth-child(2) { inset: 28%; }
.map-ring:nth-child(3) { inset: 40%; background: var(--lime); }
.map-card::before, .map-card::after { content: ""; position: absolute; background: rgba(255,255,255,.1); }
.map-card::before { width: 120%; height: 1px; left: -10%; top: 50%; transform: rotate(-20deg); }
.map-card::after { width: 1px; height: 120%; left: 50%; top: -10%; transform: rotate(20deg); }
.map-label { position: absolute; inset: 50% auto auto 50%; z-index: 2; transform: translate(-50%,-50%); color: var(--forest); font: 800 .7rem "Manrope", sans-serif; }
.area-list { columns: 2; margin: 28px 0 0; padding: 0; list-style: none; color: rgba(255,255,255,.7); }
.area-list li { margin-bottom: 8px; }

.legal-shell { display: grid; grid-template-columns: 250px minmax(0, 830px); gap: 70px; align-items: start; }
.legal-nav { position: sticky; top: 120px; padding: 23px; border: 1px solid var(--line); border-radius: 20px; }
.legal-nav strong { display: block; margin-bottom: 12px; font-family: "Manrope", sans-serif; }
.legal-nav a { display: block; padding: 5px 0; color: var(--muted); font-size: .8rem; }
.legal-content h2 { margin: 58px 0 16px; font-size: clamp(1.8rem,3vw,2.7rem); }
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 { margin: 30px 0 10px; font-size: 1.18rem; letter-spacing: -.02em; }
.legal-content li, .legal-content p { color: var(--muted); }
.legal-content a { color: var(--moss); text-decoration: underline; }
.legal-meta { margin-bottom: 42px; padding: 19px 21px; border-left: 3px solid var(--lime); background: rgba(255,255,255,.45); }

.site-footer { padding: 80px 0 28px; background: var(--forest-deep); color: var(--white); }
.footer-top { display: grid; grid-template-columns: 1.35fr .55fr .55fr .8fr; gap: 50px; padding-bottom: 62px; }
.footer-brand p { max-width: 360px; color: rgba(255,255,255,.58); }
.site-footer .brand { margin-bottom: 19px; }
.site-footer .brand-mark { background: var(--lime); }
.site-footer .brand-mark::before { border-color: var(--forest); }
.site-footer .brand-mark::after { background: var(--forest); }
.footer-col h4 { margin-bottom: 20px; color: var(--lime); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; }
.footer-col a, .footer-col address { display: block; margin-bottom: 9px; color: rgba(255,255,255,.66); font-size: .86rem; font-style: normal; }
.footer-col a:hover { color: var(--lime); }
.footer-bottom { display: flex; justify-content: space-between; gap: 25px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.44); font-size: .73rem; }

.reveal, .reveal-left, .reveal-scale, .line-reveal { will-change: opacity, transform, clip-path; }
.reveal { opacity: 0; transform: translateY(38px); transition: opacity .85s ease, transform .9s cubic-bezier(.2,.8,.2,1); }
.reveal-left { opacity: 0; transform: translateX(-42px); transition: opacity .9s ease, transform .95s cubic-bezier(.2,.8,.2,1); }
.reveal-scale { opacity: 0; transform: scale(.94); transition: opacity .9s ease, transform 1.1s cubic-bezier(.2,.8,.2,1); }
.line-reveal { clip-path: inset(0 100% 0 0); transition: clip-path 1.2s cubic-bezier(.2,.8,.2,1); }
.reveal.is-visible, .reveal-left.is-visible, .reveal-scale.is-visible { opacity: 1; transform: none; }
.line-reveal.is-visible { clip-path: inset(0); }
.delay-1 { transition-delay: .09s; }
.delay-2 { transition-delay: .18s; }
.delay-3 { transition-delay: .27s; }

@keyframes marquee { to { transform: translateX(-50%); } }
@keyframes lineIn { from { transform: scaleX(0); } }
@keyframes pulseLine { 50% { transform: scaleX(.4); opacity: .4; } }

@media (max-width: 1040px) {
  :root { --container: min(100% - 36px, 900px); }
  .nav-links {
    position: fixed;
    inset: 74px 18px auto;
    display: flex;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: var(--white);
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-14px);
    transition: opacity .25s ease, transform .25s ease;
  }
  .nav-links.open { opacity: 1; pointer-events: auto; transform: none; }
  .nav-links a { padding: 8px 0; font-size: 1.06rem; }
  .menu-toggle { display: block; }
  .nav-actions .btn { display: none; }
  .hero-content { width: 80%; }
  .hero-proof { display: none; }
  .trust-grid, .stats-grid, .standards-grid, .prep-grid { grid-template-columns: repeat(2,1fr); }
  .trust-item:nth-child(2), .stat:nth-child(2), .standard-card:nth-child(2), .prep-card:nth-child(2) { border-right: 0; }
  .detail-block { grid-template-columns: 58px 1fr; }
  .detail-media-wrap { grid-column: 2; }
  .footer-top { grid-template-columns: 1.2fr .6fr .8fr; }
  .footer-brand { grid-column: 1 / 4; }
}

@media (max-width: 760px) {
  :root { --container: calc(100vw - 28px); --radius: 21px; --radius-lg: 27px; }
  body { font-size: 15px; }
  .section { padding: 80px 0; }
  .section-head, .page-hero-grid, .cycle-layout, .case-study, .story-grid, .contact-grid, .service-area { grid-template-columns: 1fr; gap: 30px; }
  .section-head { margin-bottom: 35px; }
  .site-header { padding: 11px 0; }
  .brand-mark { width: 33px; height: 33px; }
  .brand { font-size: 1rem; }
  .hero { min-height: 760px; padding: 82px 0 13px; }
  .hero-shell { min-height: 665px; }
  .hero-shell::before { background: linear-gradient(0deg, rgba(5,27,18,.96), rgba(5,27,18,.53) 75%, rgba(5,27,18,.12)); }
  .hero-media img { object-position: 58% center; }
  .hero-content { width: 100%; min-height: 665px; padding: 29px 22px; }
  .hero h1 { font-size: clamp(3.35rem, 16vw, 5rem); }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .hero-scroll, .hero-index { display: none; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-item { padding: 17px 14px; }
  .service-feature { grid-template-columns: 1fr; }
  .service-feature:nth-child(even) .service-feature-media { order: 0; }
  .service-feature-media { min-height: 360px; }
  .service-feature-copy { padding: 30px 24px; }
  .service-feature-number { margin-bottom: 30px; }
  .cycle-image, .story-media, .case-study-media { min-height: 480px; }
  .cycle-badge { width: 112px; font-size: .54rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat { min-height: 150px; padding: 28px 17px; }
  .project-mosaic { display: flex; flex-direction: column; }
  .project-card { min-height: 390px; }
  .project-card:not(:first-child) { min-height: 300px; }
  .process-row { grid-template-columns: 44px 1fr; gap: 13px; }
  .process-row p { grid-column: 2; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .page-hero { padding: 132px 0 58px; }
  .page-hero h1 { font-size: clamp(3.1rem, 14vw, 5rem); }
  .page-rule { margin-top: 42px; }
  .page-collage { height: 390px; margin-top: 40px; }
  .page-collage figure:last-child { margin-top: 45px; }
  .anchor-nav { top: 57px; }
  .detail-block { grid-template-columns: 38px 1fr; gap: 13px; padding: 74px 0; }
  .detail-media-wrap { grid-column: 1 / 3; padding-left: 51px; }
  .detail-media { min-height: 430px; }
  .detail-card { width: calc(100% - 24px); margin-top: -58px; padding: 22px; }
  .facts-row { grid-template-columns: 1fr; }
  .emergency-inner { grid-template-columns: 1fr; }
  .standards-grid, .values-grid, .prep-grid { grid-template-columns: 1fr; }
  .standard-card, .value-card { min-height: 290px; }
  .standard-card span, .value-card h3, .prep-card b { margin-bottom: 45px; margin-top: 0; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-card, .gallery-card:nth-child(3n), .gallery-card:nth-child(3n + 1):not(:first-child) { grid-column: auto; min-height: 430px; }
  .case-study-copy { order: -1; }
  .timeline-row { grid-template-columns: 90px 1fr; gap: 18px; }
  .team-feature { min-height: 570px; }
  .contact-hero-card { min-height: 430px; }
  .form-grid { grid-template-columns: 1fr; }
  .field--full, .check, .form-status { grid-column: auto; }
  .prep-grid { grid-template-columns: 1fr 1fr; }
  .prep-card { min-height: 220px; padding: 23px; }
  .legal-shell { grid-template-columns: 1fr; gap: 35px; }
  .legal-nav { position: static; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 34px; }
  .footer-brand { grid-column: 1 / 3; }
  .footer-contact { grid-column: 1 / 3; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 430px) {
  .lang-switch button { width: 29px; height: 29px; }
  .prep-grid { grid-template-columns: 1fr; }
  .timeline-row { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal, .reveal-left, .reveal-scale { opacity: 1; transform: none; }
  .line-reveal { clip-path: none; }
  [data-parallax] { transform: none !important; }
}


/* Readability and information-density refinement */
:root {
  --muted: #536158;
  --line-strong: rgba(23, 32, 25, .24);
}
body { font-size: 17px; line-height: 1.72; }
h1 { font-size: clamp(3.45rem, 7.6vw, 8.15rem); }
h2 { font-size: clamp(2.35rem, 4.8vw, 4.8rem); }
h3 { letter-spacing: -.035em; }
p { max-width: 72ch; }
.section { padding: clamp(76px, 8.5vw, 126px) 0; }
.section--compact { padding: clamp(58px, 6.8vw, 92px) 0; }
.section-head { grid-template-columns: minmax(0, 1.08fr) minmax(300px, .62fr); gap: clamp(34px, 5vw, 70px); margin-bottom: clamp(36px, 4.8vw, 58px); }
.section-head p { font-size: 1rem; line-height: 1.75; }
.lede { max-width: 66ch; font-size: clamp(1.05rem, 1.35vw, 1.24rem); line-height: 1.68; }
.page-hero { padding: 158px 0 74px; }
.page-hero h1 { font-size: clamp(3.35rem, 7vw, 7.1rem); }
.page-rule { margin-top: 52px; }
.eyebrow { margin-bottom: 18px; }
.service-feature { min-height: 460px; }
.service-feature-copy { padding: clamp(32px, 4.2vw, 58px); }
.service-feature-number { margin-bottom: 42px; }
.detail-block { padding: clamp(62px, 7.8vw, 108px) 0; }
.detail-media { min-height: 540px; }
.value-card { min-height: 330px; }
.value-card h3 { margin-top: 52px; }
.standard-card { min-height: 240px; }
.standard-card span { margin-bottom: 42px; }
.prep-card b { margin-bottom: 36px; }
.legal-content { font-size: .98rem; }
.legal-content p, .legal-content li { line-height: 1.78; }
.faq-question { line-height: 1.38; }
.project-info p { line-height: 1.5; }

.menu-toggle {
  position: relative;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.menu-toggle span {
  width: 19px;
  height: 1.5px;
  margin: 0 auto;
  transform-origin: center;
}
.menu-toggle.open span:first-child { transform: translateY(5.5px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(.25); }
.menu-toggle.open span:last-child { transform: translateY(-5.5px) rotate(-45deg); }

.info-section { position: relative; overflow: hidden; }
.info-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 90% 10%, rgba(207,245,123,.22), transparent 28%);
}
.info-grid { position: relative; display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.info-card {
  position: relative;
  min-height: 300px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,253,247,.58);
}
.info-card::after {
  content: "";
  position: absolute;
  right: -36px;
  bottom: -36px;
  width: 96px;
  height: 96px;
  border: 1px solid var(--line);
  border-radius: 50%;
}
.info-card-number { display: block; margin-bottom: 52px; color: var(--moss); font: 800 .72rem "Manrope", sans-serif; letter-spacing: .14em; }
.info-card h3 { margin-bottom: 14px; font-size: clamp(1.25rem, 1.7vw, 1.65rem); }
.info-card p { margin-bottom: 0; font-size: .9rem; line-height: 1.68; }
.info-card ul { margin: 16px 0 0; padding-left: 18px; color: var(--muted); font-size: .86rem; }
.info-card li { margin-bottom: 6px; }
.info-card--accent { background: var(--forest); color: var(--white); }
.info-card--accent p, .info-card--accent li { color: rgba(255,255,255,.68); }
.info-card--accent .info-card-number { color: var(--lime); }
.info-card--accent::after { border-color: rgba(255,255,255,.17); }

.dense-band { padding: 34px 0; border-block: 1px solid var(--line); background: rgba(255,255,255,.34); }
.dense-band-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.dense-band-item { padding: 8px 24px; border-right: 1px solid var(--line); }
.dense-band-item:last-child { border: 0; }
.dense-band-item strong { display: block; margin-bottom: 5px; font: 700 .88rem "Manrope", sans-serif; }
.dense-band-item span { display: block; color: var(--muted); font-size: .78rem; line-height: 1.5; }

.readable-table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: 0 18px 50px rgba(8,41,29,.07); }
.readable-table { width: 100%; min-width: 760px; border-collapse: collapse; }
.readable-table th, .readable-table td { padding: 20px 22px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.readable-table tr:last-child td { border-bottom: 0; }
.readable-table th { background: var(--forest); color: var(--white); font: 700 .76rem "Manrope", sans-serif; letter-spacing: .08em; text-transform: uppercase; }
.readable-table td:first-child { color: var(--forest); font-family: "Manrope", sans-serif; font-weight: 700; }
.readable-table td { color: var(--muted); font-size: .88rem; line-height: 1.58; }

.note-panel {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 34px;
  align-items: start;
  margin-top: 22px;
  padding: 28px;
  border-radius: 22px;
  background: var(--lime-soft);
}
.note-panel strong { font-family: "Manrope", sans-serif; color: var(--forest); }
.note-panel p { margin: 0; color: rgba(23,32,25,.7); font-size: .9rem; }

.content-columns { display: grid; grid-template-columns: repeat(2,1fr); gap: clamp(28px,5vw,70px); }
.content-columns h3 { margin-bottom: 16px; }
.content-columns p + p { margin-top: 18px; }
.definition-list { margin: 24px 0 0; }
.definition-row { display: grid; grid-template-columns: 150px 1fr; gap: 20px; padding: 16px 0; border-top: 1px solid var(--line); }
.definition-row dt { color: var(--forest); font-weight: 700; }
.definition-row dd { margin: 0; color: var(--muted); font-size: .9rem; }

@media (max-width: 1040px) {
  .info-grid { grid-template-columns: repeat(2,1fr); }
  .dense-band-grid { grid-template-columns: repeat(2,1fr); gap: 18px 0; }
  .dense-band-item:nth-child(2) { border-right: 0; }
}
@media (max-width: 760px) {
  body { font-size: 16px; }
  h1 { font-size: clamp(3rem, 14vw, 4.65rem); }
  h2 { font-size: clamp(2.1rem, 10vw, 3.5rem); }
  .page-hero h1 { font-size: clamp(3rem, 13vw, 4.6rem); }
  .section { padding: 70px 0; }
  .service-feature-number { margin-bottom: 24px; }
  .info-grid, .content-columns { grid-template-columns: 1fr; }
  .info-card { min-height: 0; }
  .info-card-number { margin-bottom: 34px; }
  .dense-band-grid { grid-template-columns: 1fr; gap: 0; }
  .dense-band-item, .dense-band-item:nth-child(2) { padding: 15px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .dense-band-item:last-child { border-bottom: 0; }
  .note-panel { grid-template-columns: 1fr; gap: 10px; }
  .definition-row { grid-template-columns: 1fr; gap: 4px; }
}


@media (max-width: 1040px) {
  .menu-toggle { display: flex; }
}

