:root {
  --ink: #132730;
  --muted: #5f6e72;
  --green: #008f46;
  --green-dark: #006c37;
  --lime: #72cf00;
  --cream: #fbf7ef;
  --paper: #fffdf8;
  --mint: #e9f4ee;
  --blue: #edf4f6;
  --sand: #fff1da;
  --line: #cbdad5;
  --white: #fff;
  --radius: 30px;
  --shadow: 0 20px 55px rgba(19, 39, 48, .08);
  --max: 1120px;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; }
button { font: inherit; }
.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }

.sr-only,
.skip-link:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  border-radius: 9px;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  background: rgba(251, 247, 239, .94);
  border-bottom: 1px solid rgba(203, 218, 213, .8);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand { flex: 0 0 auto; }
.brand img { width: 162px; height: auto; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 27px;
  margin-left: auto;
}

.main-nav a {
  font-size: .94rem;
  font-weight: 750;
  text-decoration: none;
}

.main-nav a:hover,
.main-nav a:focus-visible { color: var(--green); }

.nav-contact {
  padding: 9px 15px;
  color: var(--white) !important;
  background: var(--ink);
  border-radius: 999px;
}

.nav-contact:hover { background: var(--green-dark); }

.language-switcher {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #a5afab;
}

.lang-button {
  padding: 5px;
  color: var(--muted);
  background: none;
  border: 0;
  cursor: pointer;
  font-size: .78rem;
  font-weight: 850;
}

.lang-button.is-active { color: var(--green); }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  padding: 10px;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
  transition: transform 160ms ease, opacity 160ms ease;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 94px 0 104px;
  background:
    radial-gradient(circle at 86% 16%, rgba(114, 207, 0, .12), transparent 25rem),
    var(--cream);
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto -120px -230px auto;
  width: 510px;
  height: 510px;
  border: 46px solid rgba(0, 143, 70, .045);
  border-radius: 50%;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(360px, .75fr);
  align-items: center;
  gap: 64px;
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--green-dark);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.eyebrow span { color: var(--lime); margin: 0 5px; }

h1, h2, h3 {
  margin-top: 0;
  line-height: 1.12;
  letter-spacing: -.035em;
}

h1 {
  max-width: 740px;
  margin-bottom: 23px;
  font-size: clamp(2.85rem, 5.7vw, 5rem);
}

h2 { margin-bottom: 17px; font-size: clamp(2rem, 4vw, 3.25rem); }
h3 { margin-bottom: 13px; font-size: clamp(1.45rem, 2.4vw, 2rem); }

.hero-lead {
  max-width: 670px;
  margin: 0 0 31px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.24rem);
}

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

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 13px 21px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-weight: 780;
  text-decoration: none;
  transition: transform 160ms ease, background-color 160ms ease;
}

.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--white); background: var(--green); }
.button-primary:hover { background: var(--green-dark); }
.button-secondary { border-color: var(--line); background: rgba(255,255,255,.65); }

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 17px;
  margin: 31px 0 0;
  padding: 0;
  color: var(--muted);
  font-size: .9rem;
  list-style: none;
}

.trust-list li::before {
  content: "✓";
  margin-right: 7px;
  color: var(--green);
  font-weight: 900;
}

.hero-sketch {
  position: relative;
  padding: 24px;
  transform: rotate(1deg);
}

.hero-sketch svg { width: 100%; overflow: visible; }

.pencil {
  fill: none;
  stroke: #a9bbb5;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pencil.soft { stroke: #c2d0cb; stroke-width: 4; }
.pencil.green { stroke: var(--green); }
.pencil.pale { stroke: #d5dfdb; stroke-width: 3; }
.pixel { fill: var(--green); }
.p2 { fill: var(--lime); }
.p3 { fill: #13a64c; }
.p4 { fill: #b2c1bb; }

.sketch-note {
  position: absolute;
  right: 10px;
  bottom: 20px;
  padding: 8px 13px;
  color: var(--green-dark);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 3px 4px 0 rgba(0, 143, 70, .12);
  font-size: .85rem;
  font-weight: 800;
  transform: rotate(-3deg);
}

.section { padding: 96px 0; }
.services-section { background: var(--paper); }
.section-heading { max-width: 720px; margin-bottom: 48px; }
.section-heading > p:last-child { color: var(--muted); font-size: 1.06rem; }
.section-heading.compact { margin-bottom: 0; }

.service-stack { display: grid; gap: 28px; }

.service-panel {
  display: grid;
  grid-template-columns: 260px 1fr;
  align-items: center;
  gap: 50px;
  min-height: 260px;
  padding: 42px 55px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.service-panel:nth-child(2) { grid-template-columns: 1fr 260px; }
.panel-green { background: var(--mint); }
.panel-blue { background: var(--blue); }
.panel-sand { background: var(--sand); }
.service-drawing svg { width: 100%; overflow: visible; }
.sketch-pixel { fill: var(--green); }
.sketch-pixel.muted { fill: #adc0b8; }
.service-kicker { margin: 0 0 8px; color: var(--green-dark); font-size: .82rem; font-weight: 850; letter-spacing: .09em; text-transform: uppercase; }
.service-copy p:last-child { max-width: 680px; margin-bottom: 0; color: var(--muted); font-size: 1.03rem; }

.approach-section { background: var(--cream); }
.approach-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 90px; align-items: start; }
.steps { display: grid; gap: 13px; margin: 0; padding: 0; list-style: none; }
.steps li { display: grid; grid-template-columns: 50px 1fr; gap: 20px; padding: 22px 24px; background: var(--paper); border: 1px solid var(--line); border-radius: 17px; }
.steps li > span { color: var(--green); font-size: .83rem; font-weight: 900; }
.steps strong { display: block; margin-bottom: 3px; font-size: 1.05rem; }
.steps p { margin: 0; color: var(--muted); }

.data-section { padding-top: 0; background: var(--cream); }
.data-card { display: grid; grid-template-columns: auto 1fr; gap: 28px; align-items: start; padding: 42px 46px; background: var(--ink); border-radius: var(--radius); color: var(--white); }
.data-card .eyebrow { color: #88e29a; }
.data-card h2 { max-width: 760px; font-size: clamp(1.8rem, 3vw, 2.6rem); }
.data-card p:last-child { max-width: 850px; margin-bottom: 0; color: #c5d0d3; }
.data-icon { display: grid; width: 60px; height: 60px; place-items: center; background: rgba(114,207,0,.16); border-radius: 17px; }
.data-icon span { position: relative; width: 23px; height: 20px; border: 3px solid #88e29a; border-radius: 5px; }
.data-icon span::before { content: ""; position: absolute; top: -16px; left: 2px; width: 13px; height: 13px; border: 3px solid #88e29a; border-bottom: 0; border-radius: 10px 10px 0 0; }

.about-section { background: var(--paper); }
.about-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 90px; align-items: center; }
.about-sketch { position: relative; min-height: 300px; }
.about-sketch > span { position: absolute; z-index: 2; top: 94px; left: 50%; transform: translateX(-50%) rotate(-4deg); display: grid; width: 82px; height: 82px; place-items: center; color: var(--white); background: linear-gradient(145deg, var(--green), var(--lime)); border-radius: 22px; box-shadow: 6px 8px 0 #dce9e1; font-size: 1.2rem; font-weight: 900; }
.about-sketch svg { width: 100%; }
.about-copy > p:not(.eyebrow) { color: var(--muted); font-size: 1.06rem; }
.values { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 27px; }
.values span { padding: 8px 13px; color: var(--green-dark); background: var(--mint); border-radius: 999px; font-size: .85rem; font-weight: 780; }

.contact-section { background: var(--paper); padding-top: 22px; }
.contact-box { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: end; padding: 50px 54px; color: var(--white); background: var(--ink); border-radius: var(--radius); }
.contact-box h2 { margin-bottom: 12px; }
.contact-box > div:first-child > p:last-child { margin-bottom: 0; color: #c5d0d3; }
.availability { display: flex; align-items: center; margin: 0 0 19px; font-weight: 750; }
.availability b { font-weight: 750; }
.availability span { display: inline-block; width: 13px; height: 13px; margin-right: 8px; background: var(--lime); border-radius: 50%; }
.contact-links { display: grid; }
.contact-links a { display: block; padding: 17px 0; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.17); }
.contact-links a:hover strong { color: #8fe7a0; }
.contact-links span { display: block; margin-bottom: 4px; color: #9fb0b4; font-size: .75rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.contact-links strong { overflow-wrap: anywhere; font-size: 1.08rem; }

.site-footer { padding: 30px 0; background: var(--paper); border-top: 1px solid var(--line); }
.footer-inner { display: flex; align-items: center; gap: 27px; color: var(--muted); font-size: .84rem; }
.footer-brand img { width: 125px; height: auto; }
.footer-inner p { margin: 0; }
.footer-inner nav { display: flex; gap: 18px; margin-left: auto; }
.footer-inner nav a { text-underline-offset: 3px; }

.legal-main { min-height: 70vh; padding: 72px 0 96px; background: var(--paper); }
.legal-wrap { max-width: 840px; }
.legal-wrap > h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
.legal-intro { margin-bottom: 45px; color: var(--muted); font-size: 1.08rem; }
.legal-section { padding: 28px 0; border-top: 1px solid var(--line); }
.legal-section h2 { font-size: 1.55rem; }
.legal-section p, .legal-section li { color: var(--muted); }
.legal-section address { color: var(--muted); font-style: normal; }
.legal-back { display: inline-flex; margin-bottom: 30px; color: var(--green-dark); font-weight: 750; text-decoration: none; }
.legal-back:hover { text-decoration: underline; }
.legal-note { padding: 18px 20px; background: var(--mint); border-left: 4px solid var(--green); border-radius: 10px; }

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

@media (max-width: 900px) {
  .menu-toggle { display: block; }
  .main-nav { position: absolute; top: 82px; right: 20px; left: 20px; display: none; align-items: stretch; padding: 15px; background: var(--paper); border: 1px solid var(--line); border-radius: 15px; box-shadow: var(--shadow); }
  .main-nav.is-open { display: grid; }
  .main-nav a { padding: 10px; }
  .nav-contact { text-align: center; }
  .language-switcher { margin-left: 0; }
  .hero-grid { grid-template-columns: 1fr; gap: 34px; }
  .hero-copy { max-width: 760px; }
  .hero-sketch { width: min(100%, 520px); margin: 0 auto; }
  .service-panel, .service-panel:nth-child(2) { grid-template-columns: 210px 1fr; gap: 30px; padding: 36px; }
  .service-panel:nth-child(2) .service-copy { order: 2; }
  .approach-grid, .about-grid, .contact-box { grid-template-columns: 1fr; gap: 45px; }
  .about-sketch { width: min(100%, 420px); margin: 0 auto; }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 30px), var(--max)); }
  .header-inner { min-height: 72px; }
  .brand img { width: 140px; }
  .menu-toggle { margin-left: auto; }
  .main-nav { top: 72px; right: 15px; left: 15px; }
  .hero { padding: 61px 0 72px; }
  h1 { font-size: clamp(2.55rem, 13vw, 3.7rem); }
  .hero-actions { flex-direction: column; }
  .button { width: 100%; }
  .trust-list { align-items: flex-start; flex-direction: column; gap: 7px; }
  .hero-sketch { padding: 0; }
  .section { padding: 72px 0; }
  .service-panel, .service-panel:nth-child(2) { grid-template-columns: 1fr; gap: 15px; min-height: 0; padding: 29px 25px; }
  .service-panel .service-drawing { max-width: 220px; margin: 0 auto; }
  .service-panel:nth-child(2) .service-copy { order: initial; }
  .service-panel:nth-child(2) .service-drawing { order: -1; }
  .steps li { grid-template-columns: 40px 1fr; padding: 20px; }
  .data-section { padding-top: 0; }
  .data-card { grid-template-columns: 1fr; padding: 30px 25px; }
  .about-sketch { min-height: 250px; }
  .contact-section { padding-top: 0; }
  .contact-box { padding: 34px 25px; }
  .footer-inner { align-items: flex-start; flex-direction: column; gap: 12px; }
  .footer-inner nav { flex-direction: column; gap: 7px; margin-left: 0; }
}

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

@media print {
  .site-header, .hero-actions, .site-footer { display: none; }
  body { background: #fff; }
  .section, .hero { padding: 35px 0; }
  .service-panel, .contact-box, .data-card { break-inside: avoid; }
}
