:root {
  --green: #88b14b;
  --green2: #9ec161;
  --text: #111827;
  --muted: #4b5563;
  --bg: #ffffff;
  --bg-soft: #f6f8f7;
  --border: #e5e7eb;
  --shadow: 0 12px 30px rgba(17,24,39,.10);
  --radius: 18px;
  --max: 1120px;
  --focus: 0 0 0 4px rgba(136,177,75,.25);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Liberation Sans", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  text-rendering: geometricPrecision;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: none;
  box-shadow: var(--focus);
  border-radius: 10px;
}

/* Layout */
.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}
.grid {
  display: grid;
  gap: 1.2rem;
}
.two {
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .two { grid-template-columns: 1.12fr .88fr; gap: 2rem; align-items: center; }
  .two.reverse { grid-template-columns: .9fr 1.1fr; }
}

/* Header */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(229,231,235,.8);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .85rem 0;
  gap: 1rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: .75rem;
  min-width: 220px;
}
.brand img {
  width: 170px;
  height: auto;
}
.menu {
  display: flex;
  align-items: center;
  gap: .9rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.menu a {
  font-weight: 650;
  color: #111827;
  font-size: .95rem;
  opacity: .86;
  padding: .45rem .6rem;
  border-radius: 12px;
}
.menu a.active, .menu a:hover {
  opacity: 1;
  background: rgba(136,177,75,.12);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .85rem 1.05rem;
  border-radius: 14px;
  border: 1px solid rgba(17,24,39,.08);
  cursor: pointer;
  font-weight: 750;
  transition: transform .08s ease, box-shadow .18s ease, background .18s ease;
  user-select: none;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 10px 22px rgba(17,24,39,.10); }
.btn.primary {
  background: linear-gradient(135deg, var(--green), var(--green2));
  color: #0b1206;
  border: 0;
}
.btn.ghost {
  background: rgba(255,255,255,.9);
}
.btn.small {
  padding: .55rem .75rem;
  border-radius: 12px;
  font-size: .92rem;
}

/* Hero */
.hero {
  background: url("/assets/img/hero-bg.jpg") center/cover no-repeat;
  border-bottom: 1px solid rgba(229,231,235,.8);
}
.hero-inner {
  padding: 3rem 0 2.2rem;
}
@media (min-width: 900px) {
  .hero-inner { padding: 4.2rem 0 3.2rem; }
}
.kicker {
  display: inline-flex;
  gap: .55rem;
  align-items: center;
  padding: .45rem .7rem;
  border: 1px solid rgba(136,177,75,.25);
  background: rgba(255,255,255,.65);
  border-radius: 999px;
  font-weight: 750;
  color: #1f2937;
  font-size: .9rem;
}
h1 {
  font-size: clamp(2rem, 4vw, 3.05rem);
  line-height: 1.12;
  letter-spacing: -.02em;
  margin: .85rem 0 .8rem;
}
.lead {
  font-size: 1.12rem;
  color: var(--muted);
  margin: 0 0 1.3rem;
  max-width: 58ch;
}
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  align-items: center;
}
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-top: 1.25rem;
  color: #1f2937;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .55rem .75rem;
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(17,24,39,.08);
  font-weight: 650;
  font-size: .95rem;
}
.card {
  background: rgba(255,255,255,.85);
  border: 1px solid rgba(229,231,235,.9);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.card.pad { padding: 1.25rem; }
@media (min-width: 900px) {
  .card.pad { padding: 1.5rem; }
}
.portrait {
  position: relative;
  padding: 1.25rem;
}
.portrait img {
  border-radius: calc(var(--radius) + 10px);
  border: 1px solid rgba(229,231,235,.9);
  background: #fff;
}
.tag {
  position: absolute;
  left: 1.6rem;
  bottom: 1.6rem;
  display: inline-flex;
  gap: .5rem;
  align-items: center;
  padding: .55rem .75rem;
  border-radius: 999px;
  background: rgba(17,24,39,.82);
  color: #fff;
  font-weight: 750;
  font-size: .92rem;
}

/* Sections */
section { padding: 3rem 0; }
section.soft { background: var(--bg-soft); border-top: 1px solid rgba(229,231,235,.8); border-bottom: 1px solid rgba(229,231,235,.8); }
h2 {
  font-size: clamp(1.6rem, 2.2vw, 2.15rem);
  margin: 0 0 .65rem;
  letter-spacing: -.01em;
}
.muted { color: var(--muted); }
.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1.3rem;
}
@media (min-width: 860px) {
  .cards { grid-template-columns: repeat(3, 1fr); }
}
.service {
  padding: 1.2rem;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid rgba(229,231,235,.9);
  box-shadow: 0 10px 22px rgba(17,24,39,.06);
}
.icon {
  width: 44px; height: 44px;
  border-radius: 14px;
  display: grid; place-items: center;
  background: rgba(136,177,75,.16);
  border: 1px solid rgba(136,177,75,.25);
  margin-bottom: .75rem;
}
.service h3 {
  margin: 0 0 .35rem;
  font-size: 1.05rem;
  letter-spacing: -.01em;
}
.service p { margin: 0; color: var(--muted); }

/* Testimonials */
.quote {
  padding: 1.2rem;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid rgba(229,231,235,.9);
}
.quote p { margin: 0 0 .75rem; color: #111827; font-weight: 650; }
.quote span { color: var(--muted); font-weight: 600; }

/* Footer */
footer {
  padding: 2.2rem 0;
  background: #0b1206;
  color: rgba(255,255,255,.86);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 900px) {
  .footer-grid { grid-template-columns: 1.2fr .8fr .8fr; gap: 2rem; }
}
.footer-logo {
  width: 190px;
  filter: invert(1) brightness(1.2);
  opacity: .95;
  margin-bottom: .75rem;
}
footer a {
  opacity: .92;
}
footer a:hover { opacity: 1; }
.fine {
  font-size: .92rem;
  color: rgba(255,255,255,.72);
  margin-top: .85rem;
}

/* Content pages */
.page-hero {
  padding: 2.4rem 0 1.2rem;
  background: linear-gradient(180deg, rgba(136,177,75,.12), rgba(255,255,255,0));
  border-bottom: 1px solid rgba(229,231,235,.9);
}
.prose {
  max-width: 78ch;
}
.prose h2 { margin-top: 2rem; }
.prose h3 { margin-top: 1.35rem; }
.prose p { color: #111827; }
.prose ul { padding-left: 1.1rem; }
.prose li { margin: .4rem 0; color: #111827; }
.note {
  border-left: 4px solid rgba(136,177,75,.7);
  background: rgba(136,177,75,.08);
  padding: .85rem 1rem;
  border-radius: 14px;
  color: #111827;
}

/* Contact form */
form {
  display: grid;
  gap: .75rem;
  margin-top: 1rem;
}
label { font-weight: 700; }
input, textarea {
  width: 100%;
  padding: .85rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(229,231,235,.9);
  background: #fff;
  font: inherit;
}
textarea { min-height: 140px; resize: vertical; }
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: .75rem;
}
@media (min-width: 760px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}
.alert {
  padding: .85rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(229,231,235,.9);
  background: rgba(255,255,255,.8);
}
.alert.ok {
  border-color: rgba(136,177,75,.35);
  background: rgba(136,177,75,.12);
}
.alert.bad {
  border-color: rgba(220,38,38,.25);
  background: rgba(220,38,38,.06);
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1000;
  display: none;
}
.cookie-card {
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(229,231,235,.9);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 1rem;
}
.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-top: .8rem;
}
.cookie-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 1100;
  background: rgba(17,24,39,.55);
  padding: 1rem;
}
.cookie-modal .panel {
  width: min(720px, 100%);
  margin: 10vh auto 0;
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(229,231,235,.9);
  box-shadow: var(--shadow);
  padding: 1.1rem;
}
.toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .75rem .85rem;
  border: 1px solid rgba(229,231,235,.9);
  border-radius: 14px;
  background: #fff;
  margin-top: .6rem;
}
.switch {
  width: 48px;
  height: 28px;
  border-radius: 999px;
  background: rgba(17,24,39,.12);
  position: relative;
  border: 1px solid rgba(17,24,39,.10);
  cursor: pointer;
  flex: 0 0 auto;
}
.switch::after {
  content: "";
  position: absolute;
  top: 3px; left: 3px;
  width: 22px; height: 22px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 6px 14px rgba(17,24,39,.16);
  transition: transform .18s ease;
}
.switch.on {
  background: rgba(136,177,75,.55);
  border-color: rgba(136,177,75,.55);
}
.switch.on::after {
  transform: translateX(20px);
}

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


/* Contact form: optional CAPTCHA widget (Google reCAPTCHA) */
.turnstile{margin-top:14px;}
.turnstile .g-recaptcha{display:inline-block;}
